jbdamask / wkid-smaaht

Because every team needs a townie! Enjoy ChatGPT in your Slack workspace
Apache License 2.0
22 stars 0 forks source link

Switch image generation to DALL E 3 #47

Open jbdamask opened 10 months ago

jbdamask commented 10 months ago

https://platform.openai.com/docs/guides/images/usage?context=node `from openai import OpenAI client = OpenAI()

response = client.images.generate( model="dall-e-3", prompt="a white siamese cat", size="1024x1024", quality="standard", n=1, )

image_url = response.data[0].url`