From 06d20024d89f6fc28e924ac63b23e0fdc4e16fda Mon Sep 17 00:00:00 2001 From: Abhi <85984486+AbhiTheModder@users.noreply.github.com> Date: Sat, 20 Jan 2024 03:01:05 +0530 Subject: [PATCH] Update aiutils.py --- modules/aiutils.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/modules/aiutils.py b/modules/aiutils.py index d8a64b6..cc9b8ff 100644 --- a/modules/aiutils.py +++ b/modules/aiutils.py @@ -36,14 +36,15 @@ async def vdxl(c: Client, message: Message): return data = { - "model": "sdxl-turbo", + "model": "juggernaut-xl-V5", "prompt": prompt, "negative_prompt": "", "image_count": 1, "token": vca_api_key, "width": 1024, "height": 768, - "enhance": False + "enhance": True, + "watermark": False } # Send the request to generate images response = requests.post(f"{api_url}/generate-xl", json=data, verify=False)