testing negative prompts for draw

This commit is contained in:
phixxy 2023-07-18 22:31:38 -07:00
parent faec8d38fc
commit 5abb216081

View file

@ -1098,7 +1098,7 @@ async def draw(ctx):
prompt = prompt + " masterpiece, studio quality"
else:
prompt = prompt + ", masterpiece, studio quality"
negative_prompt = ""
negative_prompt = "easynegative verybadimagenegative_v1.3"
payload = {"prompt": prompt,"steps": 25, "negative_prompt": negative_prompt,"batch_size": amount}
try:
async with aiohttp.ClientSession() as session: