-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Open
Labels
enhancementNew feature or requestNew feature or request
Description
The current CreateEditImage
API does not support passing multiple input images for image edits. And openai was supported.
I found a #1008 try to solve this, but it's a breaking change, because this, so we don't merge to master?
Is there a plan to provide corresponding support for this? If not, I can submit a related PR to support it. And the request will be like this
type ImageEditRequest struct {
Image io.Reader `json:"image,omitempty"`
Images []io.Reader `json:"image,omitempty"`
Mask io.Reader `json:"mask,omitempty"`
Prompt string `json:"prompt,omitempty"`
Model string `json:"model,omitempty"`
N int `json:"n,omitempty"`
Size string `json:"size,omitempty"`
ResponseFormat string `json:"response_format,omitempty"`
Quality string `json:"quality,omitempty"`
User string `json:"user,omitempty"`
}
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request