We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a09cb0c commit c9615e0Copy full SHA for c9615e0
image.go
@@ -68,7 +68,7 @@ type ImageResponseDataInner struct {
68
// CreateImage - API call to create an image. This is the main endpoint of the DALL-E API.
69
func (c *Client) CreateImage(ctx context.Context, request ImageRequest) (response ImageResponse, err error) {
70
urlSuffix := "/images/generations"
71
- req, err := c.newRequest(ctx, http.MethodPost, c.fullURL(urlSuffix), withBody(request))
+ req, err := c.newRequest(ctx, http.MethodPost, c.fullURL(urlSuffix, request.Model), withBody(request))
72
if err != nil {
73
return
74
}
0 commit comments