Skip to content

Commit

Permalink
Add FIXME comment.
Browse files Browse the repository at this point in the history
  • Loading branch information
Sachaa-Thanasius committed Nov 7, 2023
1 parent 7dbda8b commit d1a57e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exts/ai_generation/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ async def create_image(client: openai.AsyncOpenAI, prompt: str, size: tuple[int,
prompt=prompt,
n=1,
response_format="url",
size=f"{size[0]}x{size[1]}",
size=f"{size[0]}x{size[1]}", # type: ignore # FIXME: Find a way to pass in a literal.
)

url = image_response.data[0].url
Expand Down

0 comments on commit d1a57e3

Please sign in to comment.