damian0815 / compel

A prompting enhancement library for transformers-type text embedding systems
MIT License
519 stars 47 forks source link

Question: Do I still need to set negative_prompt to pipe() or I should just combine them to prompts with "-"? #100

Open tclzcja opened 1 month ago

tclzcja commented 1 month ago

Hi there, thanks for the great work. Just a quick question, should I do:

pipe(prompt_embeds=prompt_embeds, negative_prompt=negative_prompt, ...)

or just

pipe(prompt_embeds=prompt_embeds, ...)

while all negative prompts should be marked with "-" and merged into prompts string while compel_proc(prompt + negative_prompt)?

Thank you!