You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Has anyone tried using the dall-e-3 model for image generation or any other model for that?
If so, which client or approach did you use to make it work?
I wasn’t able to find any information in the docs, so I experimented with using the deployments endpoint directly: POST/v2/inference/deployments/${deploymentId}/images/generations, where deploymentId is the ID of my dall-e-3 deployment
body:
{
"prompt": "Create me a futuristic image of a city with flying cars",
"size": "1024x1024",
"quality": "standard",
"n": 1,
"response_format": "url"
}
This is actually working for me, but I’m curious whether someone have a different approach or there's a client that we could use, which is not documented yet.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
Has anyone tried using the
dall-e-3model for image generation or any other model for that?If so, which client or approach did you use to make it work?
I wasn’t able to find any information in the docs, so I experimented with using the deployments endpoint directly:
POST/v2/inference/deployments/${deploymentId}/images/generations, wheredeploymentIdis the ID of my dall-e-3 deploymentbody:
This is actually working for me, but I’m curious whether someone have a different approach or there's a client that we could use, which is not documented yet.
Thanks
All reactions