cahnged 1024-1024 to 512-512

This commit is contained in:
Paillat
2023-02-08 10:18:37 +01:00
parent 1ce55fb23b
commit f18e339c34

View File

@@ -11,6 +11,6 @@ async def generate(prompt, path, mode, openai_key):
img = await openai.Image.acreate( img = await openai.Image.acreate(
prompt=prompt, prompt=prompt,
n=1, n=1,
size="1024x1024", size="512x512",
) )
return img return img