1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
| ### 生成图片:OpenAI(DALL)
| POST {{baseUrl}}/ai/image/draw
| Content-Type: application/json
| Authorization: {{token}}
|
| {
| "platform": "OpenAI",
| "prompt": "可爱的小喵星人",
| "model": "dall-e-3",
| "height": "1024",
| "width": "1024",
| "options": {
| "style": "vivid"
| }
| }
|
| ### 生成图片:StableDiffusion
| POST {{baseUrl}}/ai/image/draw
| Content-Type: application/json
| Authorization: {{token}}
|
| {
| "platform": "StableDiffusion",
| "prompt": "中国长城",
| "model": "stable-diffusion-v1-6",
| "height": "1024",
| "width": "1024",
| "style": "vivid"
| }
|
| ### 生成图片:生成图片(Midjourney)
| POST {{baseUrl}}/ai/image/midjourney/imagine
| Content-Type: application/json
| Authorization: {{token}}
|
| {
| "prompt": "中国旗袍",
| "model": "midjourney",
| "width": "1",
| "height": "1",
| "version": "6.0"
| }
|
|