-
Notifications
You must be signed in to change notification settings - Fork 1
/
mode_config.json
88 lines (85 loc) · 2.06 KB
/
mode_config.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
[
{
"name": "SDXLtxt2img",
"title": "SDXL txt2img",
"showT2I": true,
"show": true,
"configurable": true,
"default": {"type":"txt2img", "cfgScale":2.0, "steps":6, "sdSize":1024},
"fields": {
"workflow": "sdxl_txt2img",
"positive": "$positive",
"negative": "$negative",
"batch_size": "$batchSize",
"width": "$width",
"height": "$height",
"steps": "$steps",
"cfg": "$cfg",
"loraStrength": 0.0
}
},
{
"name": "SDXLInpaint",
"title": "SDXL Inpainting",
"showT2I": false,
"show": true,
"configurable": true,
"default": {"type":"inpaint", "inpaintPartial":1, "denoise":1.0, "cfgScale":2, "steps":6, "baseImage":"background", "sdSize":1024},
"fields": {
"workflow": "sdxl_inpaint",
"paint": "$mask",
"background": "$background",
"positive": "$positive",
"negative": "$negative",
"batch_size": "$batchSize",
"size": "$size",
"steps": "$steps",
"cfg": "$cfg",
"denoise": "$denoise",
"maskBlur": 0
}
},
{
"name": "SDXLInpaintSketch",
"title": "SDXL Inpainting with Sketch",
"showT2I": false,
"show": true,
"configurable": true,
"default": {"type":"inpaint", "inpaintPartial":1, "denoise":0.65, "cfgScale":2, "steps":6, "baseImage":"sketch", "sdSize":1024},
"fields": {
"workflow": "sdxl_inpaint",
"paint": "$mask",
"background": "$background",
"positive": "$positive",
"negative": "$negative",
"batch_size": "$batchSize",
"size": "$size",
"steps": "$steps",
"cfg": "$cfg",
"denoise": "$denoise",
"maskBlur": 0
}
},
{
"name": "SDXLImg2imgPose",
"title": "SDXL DensePose img2img",
"showT2I": false,
"show": true,
"configurable": true,
"default": {"type":"img2img", "denoise":1.0, "cfgScale":2, "steps":6, "baseImage":"background", "sdSize":1024},
"fields": {
"workflow": "sdxl_img2img_controlnet",
"background": "$background",
"positive": "$positive",
"negative": "$negative",
"batch_size": "$batchSize",
"size": "$size",
"steps": "$steps",
"cfg": "$cfg",
"denoise": 1,
"cnStrength":0.9,
"cnStart":0,
"cnEnd":1
}
}
]