-
Notifications
You must be signed in to change notification settings - Fork 0
/
schema.json
64 lines (64 loc) · 1.77 KB
/
schema.json
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
{
"$schema": "http://json-schema.org/draft-04/hyper-schema#",
"type": "object",
"properties": {
"readme": {
"type": "string",
"title": "Diffusers Image Outpaint",
"author": "fffiloni, OzzyGT",
"code": "https://huggingface.co/spaces/fffiloni/diffusers-image-outpaint/tree/main",
"jupyter": "https://github.com/camenduru/diffusers-image-outpaint-jupyter",
"api": "https://github.com/camenduru/tost-api-examples/blob/main/v1/outpaint.ipynb",
"tags": [
"Image to Image"
],
"widget": "readme"
},
"upload": {
"type": "string",
"widget": "upload",
"upload_url": "https://litterbox.catbox.moe/resources/internals/api.php",
"property": "input_image"
},
"input_image": {
"type": "string",
"description": "Input Image URL",
"widget": "textarea"
},
"width": {
"type": "integer",
"description": "Width"
},
"height": {
"type": "integer",
"description": "Height"
},
"num_inference_steps": {
"type": "integer",
"description": "Inference Steps"
},
"prompt_input": {
"type": "string",
"description": "Prompt",
"widget": "textarea"
},
"overlap_width": {
"type": "integer",
"description": "Overlap Width"
},
"example": {
"type": "string",
"image1": "https://fakeimg.pl/800x628/282828/eae0d0/?text=input#.png",
"image2": "https://files.catbox.moe/jmwknt.jpg",
"image3": "https://fakeimg.pl/800x628/282828/eae0d0/?text=output#.png",
"image4": "https://files.catbox.moe/oqij2v.png",
"widget": "example"
}
},
"buttons": [
{
"id": "enter",
"label": "🥪 Enter"
}
]
}