forked from irgolic/stable-diffusion-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
openapi.yml
528 lines (528 loc) · 15.1 KB
/
openapi.yml
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
components:
schemas:
AuthToken:
properties:
access_token:
title: Access Token
type: string
token_type:
title: Token Type
type: string
required:
- access_token
- token_type
title: AuthToken
type: object
Body_login_access_token_token_post:
properties:
client_id:
title: Client Id
type: string
client_secret:
title: Client Secret
type: string
grant_type:
pattern: password
title: Grant Type
type: string
password:
title: Password
type: string
scope:
default: ''
title: Scope
type: string
username:
title: Username
type: string
required:
- username
- password
title: Body_login_access_token_token_post
type: object
Body_post_blob_blob_post:
properties:
blob_data:
format: binary
title: Blob Data
type: string
required:
- blob_data
title: Body_post_blob_blob_post
type: object
CancelledEvent:
properties:
event_type:
enum:
- cancelled
title: Event Type
type: string
reason:
title: Reason
type: string
task_id:
title: Task Id
type: string
required:
- event_type
- task_id
- reason
title: CancelledEvent
type: object
FinishedEvent:
properties:
event_type:
enum:
- finished
title: Event Type
type: string
image:
$ref: '#/components/schemas/GeneratedImage'
task_id:
title: Task Id
type: string
required:
- event_type
- task_id
- image
title: FinishedEvent
type: object
GeneratedImage:
properties:
blob_id:
title: Blob Id
type: string
parameters_used:
anyOf:
- $ref: '#/components/schemas/Txt2ImgParams'
- $ref: '#/components/schemas/Img2ImgParams'
title: Parameters Used
required:
- blob_id
- parameters_used
title: GeneratedImage
type: object
HTTPValidationError:
properties:
detail:
items:
$ref: '#/components/schemas/ValidationError'
title: Detail
type: array
title: HTTPValidationError
type: object
Img2ImgParams:
properties:
guidance:
default: 7.5
description: 'Higher guidance encourages generation closely linked to `prompt`,
usually at the expense of lower image quality. Try using more steps to
improve image quality when using high guidance. Guidance is disabled by
setting `guidance` to `1`. `guidance` is defined as `w` of equation 2.
of [ImagenPaper](https://arxiv.org/pdf/2205.11487.pdf). See also: [Classifier-Free
Diffusion Guidance](https://arxiv.org/abs/2207.12598).'
minimum: 1.0
title: Guidance
type: number
initial_image:
description: 'The image to use as input for image generation. The image
must have a width and height divisible by 8. '
title: Initial Image
type: string
model_id:
default: CompVis/stable-diffusion-v1-4
description: The model to use for image generation, e.g. 'CompVis/stable-diffusion-v1-4'.
title: Model Id
type: string
model_provider:
default: huggingface
description: The model provider to look up `model_id`. Currently only 'huggingface'
is supported.
enum:
- huggingface
title: Model Provider
type: string
negative_prompt:
description: The prompt to dissuade image generation. Ignored when not using
guidance (i.e., if `guidance` is `1`).
title: Negative Prompt
type: string
prompt:
description: The prompt to guide image generation.
title: Prompt
type: string
safety_filter:
default: true
description: Ensure that you abide by the conditions of the Stable Diffusion
license and do not expose unfiltered results in services or applications
open to the public. For more information, please see https://github.com/huggingface/diffusers/pull/254
title: Safety Filter
type: boolean
scheduler:
default: plms
description: The scheduler to use for image generation. Currently only 'plms',
'ddim', and 'k-lms', are supported.
enum:
- plms
- ddim
- k-lms
title: Scheduler
type: string
steps:
default: 20
description: The number of denoising steps. More denoising steps usually
lead to a higher quality image at the expense of slower inference.
title: Steps
type: integer
strength:
default: 0.8
description: Conceptually, indicates how much to transform the image. The
image will be used as a starting point, adding more noise to it the larger
the `strength`. The number of denoising steps depends on the amount of
noise initially added. When `strength` is 1, it becomes pure noise, and
the denoising process will run for the full number of iterations specified
in `steps`. A value of 1, therefore, works like Txt2Img, essentially ignoring
the reference image.
maximum: 1.0
minimum: 0.0
title: Strength
type: number
task_type:
default: img2img
enum:
- img2img
title: Task Type
type: string
required:
- prompt
- initial_image
title: Img2ImgParams
type: object
PendingEvent:
properties:
event_type:
enum:
- pending
title: Event Type
type: string
task_id:
title: Task Id
type: string
required:
- event_type
- task_id
title: PendingEvent
type: object
StartedEvent:
properties:
event_type:
enum:
- started
title: Event Type
type: string
task_id:
title: Task Id
type: string
required:
- event_type
- task_id
title: StartedEvent
type: object
Txt2ImgParams:
properties:
guidance:
default: 7.5
description: 'Higher guidance encourages generation closely linked to `prompt`,
usually at the expense of lower image quality. Try using more steps to
improve image quality when using high guidance. Guidance is disabled by
setting `guidance` to `1`. `guidance` is defined as `w` of equation 2.
of [ImagenPaper](https://arxiv.org/pdf/2205.11487.pdf). See also: [Classifier-Free
Diffusion Guidance](https://arxiv.org/abs/2207.12598).'
minimum: 1.0
title: Guidance
type: number
height:
default: 512
description: The pixel height of the generated image.
title: Height
type: integer
model_id:
default: CompVis/stable-diffusion-v1-4
description: The model to use for image generation, e.g. 'CompVis/stable-diffusion-v1-4'.
title: Model Id
type: string
model_provider:
default: huggingface
description: The model provider to look up `model_id`. Currently only 'huggingface'
is supported.
enum:
- huggingface
title: Model Provider
type: string
negative_prompt:
description: The prompt to dissuade image generation. Ignored when not using
guidance (i.e., if `guidance` is `1`).
title: Negative Prompt
type: string
prompt:
description: The prompt to guide image generation.
title: Prompt
type: string
safety_filter:
default: true
description: Ensure that you abide by the conditions of the Stable Diffusion
license and do not expose unfiltered results in services or applications
open to the public. For more information, please see https://github.com/huggingface/diffusers/pull/254
title: Safety Filter
type: boolean
scheduler:
default: plms
description: The scheduler to use for image generation. Currently only 'plms',
'ddim', and 'k-lms', are supported.
enum:
- plms
- ddim
- k-lms
title: Scheduler
type: string
steps:
default: 20
description: The number of denoising steps. More denoising steps usually
lead to a higher quality image at the expense of slower inference.
title: Steps
type: integer
task_type:
default: txt2img
enum:
- txt2img
title: Task Type
type: string
width:
default: 512
description: The pixel width of the generated image.
title: Width
type: integer
required:
- prompt
title: Txt2ImgParams
type: object
UserBase:
properties:
username:
title: Username
type: string
required:
- username
title: UserBase
type: object
ValidationError:
properties:
loc:
items:
anyOf:
- type: string
- type: integer
title: Location
type: array
msg:
title: Message
type: string
type:
title: Error Type
type: string
required:
- loc
- msg
- type
title: ValidationError
type: object
securitySchemes:
OAuth2PasswordBearer:
flows:
password:
scopes: {}
tokenUrl: token
type: oauth2
info:
title: Stable Diffusion Server
version: 0.1.0
openapi: 3.0.2
paths:
/blob:
post:
operationId: post_blob_blob_post
requestBody:
content:
multipart/form-data:
schema:
$ref: '#/components/schemas/Body_post_blob_blob_post'
required: true
responses:
'200':
content:
application/json:
schema:
title: Response Post Blob Blob Post
type: string
description: Successful Response
'422':
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
description: Validation Error
security:
- OAuth2PasswordBearer: []
summary: Post Blob
/blob/{blob_id}:
get:
operationId: get_blob_blob__blob_id__get
parameters:
- in: path
name: blob_id
required: true
schema:
title: Blob Id
type: string
responses:
'200':
content:
application/json:
schema: {}
image/png: {}
description: Successful Response
'404':
description: Blob not found
'422':
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
description: Validation Error
security:
- OAuth2PasswordBearer: []
summary: Get Blob
/task:
post:
operationId: create_task_task_post
requestBody:
content:
application/json:
schema:
anyOf:
- $ref: '#/components/schemas/Txt2ImgParams'
- $ref: '#/components/schemas/Img2ImgParams'
title: Parameters
required: true
responses:
'200':
content:
application/json:
schema:
title: Response Create Task Task Post
type: string
description: Successful Response
'422':
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
description: Validation Error
security:
- OAuth2PasswordBearer: []
summary: Create Task
/task/{task_id}:
get:
operationId: poll_task_status_task__task_id__get
parameters:
- in: path
name: task_id
required: true
schema:
title: Task Id
type: string
responses:
'200':
content:
application/json:
schema:
anyOf:
- $ref: '#/components/schemas/PendingEvent'
- $ref: '#/components/schemas/StartedEvent'
- $ref: '#/components/schemas/CancelledEvent'
- $ref: '#/components/schemas/FinishedEvent'
title: Response Poll Task Status Task Task Id Get
description: Successful Response
'422':
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
description: Validation Error
security:
- OAuth2PasswordBearer: []
summary: Poll Task Status
/token:
post:
operationId: login_access_token_token_post
requestBody:
content:
application/x-www-form-urlencoded:
schema:
$ref: '#/components/schemas/Body_login_access_token_token_post'
required: true
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/AuthToken'
description: Successful Response
'422':
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
description: Validation Error
summary: Login Access Token
/token/all:
post:
operationId: public_access_token_token_all_post
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/AuthToken'
description: Successful Response
summary: Public Access Token
/user/{username}:
post:
operationId: signup_user__username__post
parameters:
- in: path
name: username
required: true
schema:
title: Username
type: string
- in: query
name: password
required: true
schema:
title: Password
type: string
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/UserBase'
description: Successful Response
'422':
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
description: Validation Error
summary: Signup