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
"description": "The text prompt describing the content, style, or composition of the image to be generated."
33
+
},
34
+
"image": {
35
+
"type": "string",
36
+
"description": "The image to be edited. Enter the Base64 encoding of the picture or an accessible URL. Image URL: Make sure that the image URL is accessible. Base64-encoded content: The format must be in lowercase."
37
+
},
38
+
"negative_prompt": {
39
+
"type": "string",
40
+
"maxLength": 500,
41
+
"description": "The description of elements to avoid in the generated image."
42
+
},
43
+
"watermark": {
44
+
"type": "boolean",
45
+
"default": false,
46
+
"description": "Add an invisible watermark to the generated images."
47
+
}
48
+
},
49
+
"required": [
50
+
"model",
51
+
"prompt",
52
+
"image"
53
+
],
54
+
"title": "alibaba/qwen-image-edit"
55
+
}
56
+
}
57
+
}
58
+
},
59
+
"responses": {
60
+
"200": {
61
+
"description": "A list of available models.",
62
+
"content": {
63
+
"application/json": {
64
+
"schema": {
65
+
"type": "array",
66
+
"items": {
67
+
"type": "object",
68
+
"properties": {
69
+
"id": {
70
+
"type": "string",
71
+
"description": "Unique identifier of the model.",
72
+
"example": "o3-mini"
73
+
},
74
+
"type": {
75
+
"type": "string",
76
+
"description": "Model interaction type.",
77
+
"example": "chat-completion"
78
+
},
79
+
"info": {
80
+
"type": "object",
81
+
"description": "Metadata describing the model.",
82
+
"properties": {
83
+
"name": {
84
+
"type": "string",
85
+
"description": "Human-readable model name.",
86
+
"example": "o3 mini"
87
+
},
88
+
"developer": {
89
+
"type": "string",
90
+
"description": "Organization or company that developed the model.",
91
+
"example": "Open AI"
92
+
},
93
+
"description": {
94
+
"type": "string",
95
+
"description": "Short description of the model and its primary capabilities.",
96
+
"example": "OpenAI o3-mini excels in reasoning tasks with advanced features like deliberative alignment and extensive context support."
97
+
},
98
+
"contextLength": {
99
+
"type": "integer",
100
+
"description": "Maximum supported context window size in tokens.",
101
+
"example": 200000
102
+
},
103
+
"maxTokens": {
104
+
"type": "integer",
105
+
"description": "Maximum number of tokens that can be generated in a single response.",
106
+
"example": 100000
107
+
},
108
+
"url": {
109
+
"type": "string",
110
+
"format": "uri",
111
+
"description": "Public model landing page on AIML API website.",
0 commit comments