preppergpt 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +93 -0
- package/bin/preppergpt.js +8 -0
- package/compose/preppergpt.yaml +232 -0
- package/docs/hardware.md +15 -0
- package/docs/model-sources.md +12 -0
- package/docs/preppergpt-local-parity-map.md +16 -0
- package/docs/publishing.md +24 -0
- package/installer/cli.mjs +225 -0
- package/installer/install.sh +18 -0
- package/installer/lib/detect.mjs +128 -0
- package/installer/lib/paths.mjs +26 -0
- package/installer/lib/planner.mjs +175 -0
- package/installer/lib/render.mjs +76 -0
- package/installer/lib/util.mjs +84 -0
- package/package.json +48 -0
- package/profiles/models.json +277 -0
- package/services/comfyui/flux-kontext-edit-openwebui-nodes.json +46 -0
- package/services/comfyui/flux-kontext-edit-openwebui-workflow.json +245 -0
- package/services/comfyui/flux-kontext-mask-edit-openwebui-nodes.json +51 -0
- package/services/comfyui/flux-kontext-mask-edit-openwebui-workflow.json +322 -0
- package/services/comfyui/flux2-klein-9b-openwebui-nodes.json +58 -0
- package/services/comfyui/flux2-klein-9b-openwebui-workflow.json +141 -0
- package/services/comfyui/image-invert-edit-openwebui-nodes.json +23 -0
- package/services/comfyui/image-invert-edit-openwebui-workflow.json +52 -0
- package/services/deep-research/Dockerfile +7 -0
- package/services/deep-research/app.py +1913 -0
- package/services/local-agent/Dockerfile +17 -0
- package/services/local-agent/app.py +2311 -0
- package/services/local-scheduler/Dockerfile +8 -0
- package/services/local-scheduler/app.py +15774 -0
- package/services/local-vision/Dockerfile +11 -0
- package/services/local-vision/app.py +888 -0
- package/services/searxng/settings.yml +16 -0
- package/themes/preppergpt/custom.css +15 -0
- package/themes/preppergpt/static/favicon.svg +5 -0
- package/themes/preppergpt/static/logo.svg +6 -0
|
@@ -0,0 +1,277 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": 1,
|
|
3
|
+
"profiles": {
|
|
4
|
+
"intelligence": {
|
|
5
|
+
"label": "Max intelligence",
|
|
6
|
+
"defaultModel": "glm52-q4-local",
|
|
7
|
+
"roles": {
|
|
8
|
+
"chat": ["glm52-q4-local", "qwen3.6-35b-a3b:slopcode-cpu-64k", "qwen2.5-coder:14b", "llama3.1:8b"],
|
|
9
|
+
"reasoning": ["glm52-q4-local", "qwen3.6-35b-a3b:slopcode-cpu-64k", "qwen2.5-coder:14b"],
|
|
10
|
+
"fast": ["gemma4:12b-256k-gpu", "llama3.1:8b"],
|
|
11
|
+
"coding": ["qwen3.6-35b-a3b:slopcode-cpu-64k", "qwen2.5-coder:14b"],
|
|
12
|
+
"research": ["deep-research-glm52"],
|
|
13
|
+
"agent": ["local-agent-glm52"],
|
|
14
|
+
"vision": ["local-vision-gemma4-12b", "local-vision-moondream2"],
|
|
15
|
+
"image": ["flux-2-klein-9b-fp8"],
|
|
16
|
+
"stt": ["whisper-large-v3"]
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
"balanced": {
|
|
20
|
+
"label": "Middle ground",
|
|
21
|
+
"defaultModel": "local-chatgpt-auto",
|
|
22
|
+
"roles": {
|
|
23
|
+
"chat": ["local-chatgpt-auto", "gemma4:12b-256k-gpu", "glm52-q4-local", "llama3.1:8b"],
|
|
24
|
+
"reasoning": ["glm52-q4-local", "qwen3.6-35b-a3b:slopcode-cpu-64k", "qwen2.5-coder:14b"],
|
|
25
|
+
"fast": ["gemma4:12b-256k-gpu", "llama3.1:8b"],
|
|
26
|
+
"coding": ["qwen3.6-35b-a3b:slopcode-cpu-64k", "qwen2.5-coder:14b"],
|
|
27
|
+
"research": ["deep-research-glm52"],
|
|
28
|
+
"agent": ["local-agent-glm52"],
|
|
29
|
+
"vision": ["local-vision-gemma4-12b", "local-vision-moondream2"],
|
|
30
|
+
"image": ["flux-2-klein-9b-fp8"],
|
|
31
|
+
"stt": ["whisper-large-v3"]
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
"speed": {
|
|
35
|
+
"label": "Max speed",
|
|
36
|
+
"defaultModel": "local-chatgpt-auto",
|
|
37
|
+
"roles": {
|
|
38
|
+
"chat": ["local-chatgpt-auto", "gemma4:12b-256k-gpu", "llama3.1:8b"],
|
|
39
|
+
"reasoning": ["qwen2.5-coder:14b", "glm52-q4-local"],
|
|
40
|
+
"fast": ["gemma4:12b-256k-gpu", "llama3.1:8b"],
|
|
41
|
+
"coding": ["qwen2.5-coder:14b", "qwen3.6-35b-a3b:slopcode-cpu-64k"],
|
|
42
|
+
"research": ["deep-research-glm52"],
|
|
43
|
+
"agent": ["local-agent-glm52"],
|
|
44
|
+
"vision": ["local-vision-moondream2", "local-vision-gemma4-12b"],
|
|
45
|
+
"image": ["flux-2-klein-9b-fp8"],
|
|
46
|
+
"stt": ["whisper-large-v3"]
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
},
|
|
50
|
+
"models": [
|
|
51
|
+
{
|
|
52
|
+
"id": "local-chatgpt-auto",
|
|
53
|
+
"name": "PrepperGPT Auto",
|
|
54
|
+
"roles": ["chat"],
|
|
55
|
+
"backend": "preppergpt-router",
|
|
56
|
+
"contextTokens": 65536,
|
|
57
|
+
"qualityScore": 88,
|
|
58
|
+
"speedScore": 85,
|
|
59
|
+
"tpsEstimate": "25-90 completion tokens/sec when the fast lane is warm",
|
|
60
|
+
"requires": {
|
|
61
|
+
"minRamGb": 16,
|
|
62
|
+
"diskGb": 20
|
|
63
|
+
},
|
|
64
|
+
"source": {
|
|
65
|
+
"type": "virtual",
|
|
66
|
+
"description": "Virtual OpenAI-compatible route exposed by the local-agent sidecar."
|
|
67
|
+
}
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
"id": "glm52-q4-local",
|
|
71
|
+
"name": "GLM 5.2 Q4 Local",
|
|
72
|
+
"roles": ["chat", "reasoning"],
|
|
73
|
+
"backend": "llama.cpp",
|
|
74
|
+
"contextTokens": 65536,
|
|
75
|
+
"qualityScore": 100,
|
|
76
|
+
"speedScore": 25,
|
|
77
|
+
"tpsEstimate": "0.4-3 completion tokens/sec on large CPU/NVMe builds; benchmark locally",
|
|
78
|
+
"requires": {
|
|
79
|
+
"minRamGb": 96,
|
|
80
|
+
"diskGb": 520,
|
|
81
|
+
"nvme": true
|
|
82
|
+
},
|
|
83
|
+
"source": {
|
|
84
|
+
"type": "external",
|
|
85
|
+
"description": "Run a GLM 5.2 Q4 OpenAI-compatible llama.cpp server at http://127.0.0.1:11441/v1 with weights on NVMe."
|
|
86
|
+
}
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"id": "qwen3.6-35b-a3b:slopcode-cpu-64k",
|
|
90
|
+
"name": "Slopcode Qwen Coding 64k",
|
|
91
|
+
"roles": ["chat", "coding", "reasoning"],
|
|
92
|
+
"backend": "llama.cpp",
|
|
93
|
+
"contextTokens": 65536,
|
|
94
|
+
"qualityScore": 92,
|
|
95
|
+
"speedScore": 45,
|
|
96
|
+
"tpsEstimate": "2-12 completion tokens/sec depending on quantization and offload",
|
|
97
|
+
"requires": {
|
|
98
|
+
"minRamGb": 48,
|
|
99
|
+
"diskGb": 90
|
|
100
|
+
},
|
|
101
|
+
"source": {
|
|
102
|
+
"type": "external",
|
|
103
|
+
"description": "Run an OpenAI-compatible Slopcode/Qwen endpoint at http://127.0.0.1:11438/v1."
|
|
104
|
+
}
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
"id": "gemma4:12b-256k-gpu",
|
|
108
|
+
"name": "Gemma Fast Local",
|
|
109
|
+
"roles": ["chat", "fast"],
|
|
110
|
+
"backend": "ollama",
|
|
111
|
+
"contextTokens": 262144,
|
|
112
|
+
"qualityScore": 78,
|
|
113
|
+
"speedScore": 96,
|
|
114
|
+
"tpsEstimate": "35-90 completion tokens/sec on a modern 16-24 GB NVIDIA GPU",
|
|
115
|
+
"requires": {
|
|
116
|
+
"minRamGb": 24,
|
|
117
|
+
"minVramGb": 11,
|
|
118
|
+
"diskGb": 20
|
|
119
|
+
},
|
|
120
|
+
"source": {
|
|
121
|
+
"type": "ollama",
|
|
122
|
+
"model": "gemma4:12b",
|
|
123
|
+
"description": "Pulled or provided through the local Ollama server."
|
|
124
|
+
}
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
"id": "qwen2.5-coder:14b",
|
|
128
|
+
"name": "Qwen Coder Fast Fallback",
|
|
129
|
+
"roles": ["chat", "coding", "reasoning"],
|
|
130
|
+
"backend": "ollama",
|
|
131
|
+
"contextTokens": 32768,
|
|
132
|
+
"qualityScore": 76,
|
|
133
|
+
"speedScore": 75,
|
|
134
|
+
"tpsEstimate": "12-45 completion tokens/sec depending on GPU and quantization",
|
|
135
|
+
"requires": {
|
|
136
|
+
"minRamGb": 24,
|
|
137
|
+
"minVramGb": 10,
|
|
138
|
+
"diskGb": 16
|
|
139
|
+
},
|
|
140
|
+
"source": {
|
|
141
|
+
"type": "ollama",
|
|
142
|
+
"model": "qwen2.5-coder:14b",
|
|
143
|
+
"description": "Ollama coding fallback."
|
|
144
|
+
}
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
"id": "llama3.1:8b",
|
|
148
|
+
"name": "Small CPU/GPU Fallback",
|
|
149
|
+
"roles": ["chat", "fast"],
|
|
150
|
+
"backend": "ollama",
|
|
151
|
+
"contextTokens": 8192,
|
|
152
|
+
"qualityScore": 58,
|
|
153
|
+
"speedScore": 85,
|
|
154
|
+
"tpsEstimate": "15-80 completion tokens/sec depending on GPU; usable CPU fallback",
|
|
155
|
+
"requires": {
|
|
156
|
+
"minRamGb": 16,
|
|
157
|
+
"diskGb": 8
|
|
158
|
+
},
|
|
159
|
+
"source": {
|
|
160
|
+
"type": "ollama",
|
|
161
|
+
"model": "llama3.1:8b",
|
|
162
|
+
"description": "Small Ollama fallback for broad hardware reach."
|
|
163
|
+
}
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
"id": "deep-research-glm52",
|
|
167
|
+
"name": "Deep Research",
|
|
168
|
+
"roles": ["research"],
|
|
169
|
+
"backend": "preppergpt-sidecar",
|
|
170
|
+
"contextTokens": 65536,
|
|
171
|
+
"qualityScore": 88,
|
|
172
|
+
"speedScore": 40,
|
|
173
|
+
"tpsEstimate": "research latency depends on search/fetch count and synthesis model",
|
|
174
|
+
"requires": {
|
|
175
|
+
"minRamGb": 16,
|
|
176
|
+
"diskGb": 4
|
|
177
|
+
},
|
|
178
|
+
"source": {
|
|
179
|
+
"type": "virtual",
|
|
180
|
+
"description": "Sidecar route that uses search, Tika, local documents, and the selected reasoning model."
|
|
181
|
+
}
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
"id": "local-agent-glm52",
|
|
185
|
+
"name": "Local Agent",
|
|
186
|
+
"roles": ["agent"],
|
|
187
|
+
"backend": "preppergpt-sidecar",
|
|
188
|
+
"contextTokens": 65536,
|
|
189
|
+
"qualityScore": 84,
|
|
190
|
+
"speedScore": 45,
|
|
191
|
+
"tpsEstimate": "tool latency depends on browser, shell, search, and selected synthesis model",
|
|
192
|
+
"requires": {
|
|
193
|
+
"minRamGb": 16,
|
|
194
|
+
"diskGb": 4
|
|
195
|
+
},
|
|
196
|
+
"source": {
|
|
197
|
+
"type": "virtual",
|
|
198
|
+
"description": "Approval-gated local tool, browser, desktop, and auto-router sidecar."
|
|
199
|
+
}
|
|
200
|
+
},
|
|
201
|
+
{
|
|
202
|
+
"id": "local-vision-gemma4-12b",
|
|
203
|
+
"name": "Local Vision Gemma",
|
|
204
|
+
"roles": ["vision"],
|
|
205
|
+
"backend": "preppergpt-sidecar",
|
|
206
|
+
"contextTokens": 8192,
|
|
207
|
+
"qualityScore": 78,
|
|
208
|
+
"speedScore": 65,
|
|
209
|
+
"tpsEstimate": "image latency depends on Ollama vision route and image size",
|
|
210
|
+
"requires": {
|
|
211
|
+
"minRamGb": 24,
|
|
212
|
+
"minVramGb": 11,
|
|
213
|
+
"diskGb": 20
|
|
214
|
+
},
|
|
215
|
+
"source": {
|
|
216
|
+
"type": "virtual",
|
|
217
|
+
"description": "Local vision sidecar proxying the Gemma Ollama vision route."
|
|
218
|
+
}
|
|
219
|
+
},
|
|
220
|
+
{
|
|
221
|
+
"id": "local-vision-moondream2",
|
|
222
|
+
"name": "Local Vision Moondream2",
|
|
223
|
+
"roles": ["vision"],
|
|
224
|
+
"backend": "preppergpt-sidecar",
|
|
225
|
+
"contextTokens": 4096,
|
|
226
|
+
"qualityScore": 62,
|
|
227
|
+
"speedScore": 80,
|
|
228
|
+
"tpsEstimate": "usually fast after model load; CPU fallback is acceptable for OCR-style tasks",
|
|
229
|
+
"requires": {
|
|
230
|
+
"minRamGb": 16,
|
|
231
|
+
"diskGb": 8
|
|
232
|
+
},
|
|
233
|
+
"source": {
|
|
234
|
+
"type": "huggingface",
|
|
235
|
+
"model": "vikhyatk/moondream2",
|
|
236
|
+
"description": "Downloaded by Transformers on first use."
|
|
237
|
+
}
|
|
238
|
+
},
|
|
239
|
+
{
|
|
240
|
+
"id": "flux-2-klein-9b-fp8",
|
|
241
|
+
"name": "Flux Image Generation",
|
|
242
|
+
"roles": ["image"],
|
|
243
|
+
"backend": "comfyui",
|
|
244
|
+
"contextTokens": 0,
|
|
245
|
+
"qualityScore": 82,
|
|
246
|
+
"speedScore": 35,
|
|
247
|
+
"tpsEstimate": "image generation, not token generation; expect tens of seconds per image",
|
|
248
|
+
"requires": {
|
|
249
|
+
"minRamGb": 32,
|
|
250
|
+
"minVramGb": 16,
|
|
251
|
+
"diskGb": 60
|
|
252
|
+
},
|
|
253
|
+
"source": {
|
|
254
|
+
"type": "manual",
|
|
255
|
+
"description": "Place Flux model, text encoder, and VAE files in the configured ComfyUI models directory."
|
|
256
|
+
}
|
|
257
|
+
},
|
|
258
|
+
{
|
|
259
|
+
"id": "whisper-large-v3",
|
|
260
|
+
"name": "Whisper Large v3 STT",
|
|
261
|
+
"roles": ["stt"],
|
|
262
|
+
"backend": "openwebui-faster-whisper",
|
|
263
|
+
"contextTokens": 0,
|
|
264
|
+
"qualityScore": 82,
|
|
265
|
+
"speedScore": 65,
|
|
266
|
+
"tpsEstimate": "audio transcription speed depends on CPU/GPU and clip length",
|
|
267
|
+
"requires": {
|
|
268
|
+
"minRamGb": 16,
|
|
269
|
+
"diskGb": 4
|
|
270
|
+
},
|
|
271
|
+
"source": {
|
|
272
|
+
"type": "openwebui",
|
|
273
|
+
"description": "OpenWebUI faster-whisper local STT model."
|
|
274
|
+
}
|
|
275
|
+
}
|
|
276
|
+
]
|
|
277
|
+
}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"type": "model",
|
|
4
|
+
"node_ids": [
|
|
5
|
+
"12"
|
|
6
|
+
],
|
|
7
|
+
"key": "unet_name"
|
|
8
|
+
},
|
|
9
|
+
{
|
|
10
|
+
"type": "prompt",
|
|
11
|
+
"node_ids": [
|
|
12
|
+
"6"
|
|
13
|
+
],
|
|
14
|
+
"key": "text"
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"type": "image",
|
|
18
|
+
"node_ids": [
|
|
19
|
+
"41"
|
|
20
|
+
],
|
|
21
|
+
"key": "image"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"type": "width",
|
|
25
|
+
"node_ids": [
|
|
26
|
+
"27",
|
|
27
|
+
"30"
|
|
28
|
+
],
|
|
29
|
+
"key": "width"
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"type": "height",
|
|
33
|
+
"node_ids": [
|
|
34
|
+
"27",
|
|
35
|
+
"30"
|
|
36
|
+
],
|
|
37
|
+
"key": "height"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"type": "n",
|
|
41
|
+
"node_ids": [
|
|
42
|
+
"27"
|
|
43
|
+
],
|
|
44
|
+
"key": "batch_size"
|
|
45
|
+
}
|
|
46
|
+
]
|
|
@@ -0,0 +1,245 @@
|
|
|
1
|
+
{
|
|
2
|
+
"6": {
|
|
3
|
+
"inputs": {
|
|
4
|
+
"text": "Prompt",
|
|
5
|
+
"clip": [
|
|
6
|
+
"11",
|
|
7
|
+
0
|
|
8
|
+
]
|
|
9
|
+
},
|
|
10
|
+
"class_type": "CLIPTextEncode",
|
|
11
|
+
"_meta": {
|
|
12
|
+
"title": "Positive edit prompt"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"8": {
|
|
16
|
+
"inputs": {
|
|
17
|
+
"samples": [
|
|
18
|
+
"13",
|
|
19
|
+
0
|
|
20
|
+
],
|
|
21
|
+
"vae": [
|
|
22
|
+
"10",
|
|
23
|
+
0
|
|
24
|
+
]
|
|
25
|
+
},
|
|
26
|
+
"class_type": "VAEDecode",
|
|
27
|
+
"_meta": {
|
|
28
|
+
"title": "VAE decode"
|
|
29
|
+
}
|
|
30
|
+
},
|
|
31
|
+
"9": {
|
|
32
|
+
"inputs": {
|
|
33
|
+
"filename_prefix": "OpenWebUI/flux-kontext-edit",
|
|
34
|
+
"images": [
|
|
35
|
+
"8",
|
|
36
|
+
0
|
|
37
|
+
]
|
|
38
|
+
},
|
|
39
|
+
"class_type": "SaveImage",
|
|
40
|
+
"_meta": {
|
|
41
|
+
"title": "Save edited image"
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
"10": {
|
|
45
|
+
"inputs": {
|
|
46
|
+
"vae_name": "ae.safetensors"
|
|
47
|
+
},
|
|
48
|
+
"class_type": "VAELoader",
|
|
49
|
+
"_meta": {
|
|
50
|
+
"title": "Load Flux VAE"
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
"11": {
|
|
54
|
+
"inputs": {
|
|
55
|
+
"clip_name1": "t5xxl_fp8_e4m3fn_scaled.safetensors",
|
|
56
|
+
"clip_name2": "clip_l.safetensors",
|
|
57
|
+
"type": "flux",
|
|
58
|
+
"device": "cpu"
|
|
59
|
+
},
|
|
60
|
+
"class_type": "DualCLIPLoader",
|
|
61
|
+
"_meta": {
|
|
62
|
+
"title": "Load Flux text encoders"
|
|
63
|
+
}
|
|
64
|
+
},
|
|
65
|
+
"12": {
|
|
66
|
+
"inputs": {
|
|
67
|
+
"unet_name": "flux1-dev-kontext_fp8_scaled.safetensors",
|
|
68
|
+
"weight_dtype": "default"
|
|
69
|
+
},
|
|
70
|
+
"class_type": "UNETLoader",
|
|
71
|
+
"_meta": {
|
|
72
|
+
"title": "Load Flux Kontext model"
|
|
73
|
+
}
|
|
74
|
+
},
|
|
75
|
+
"13": {
|
|
76
|
+
"inputs": {
|
|
77
|
+
"noise": [
|
|
78
|
+
"25",
|
|
79
|
+
0
|
|
80
|
+
],
|
|
81
|
+
"guider": [
|
|
82
|
+
"22",
|
|
83
|
+
0
|
|
84
|
+
],
|
|
85
|
+
"sampler": [
|
|
86
|
+
"16",
|
|
87
|
+
0
|
|
88
|
+
],
|
|
89
|
+
"sigmas": [
|
|
90
|
+
"17",
|
|
91
|
+
0
|
|
92
|
+
],
|
|
93
|
+
"latent_image": [
|
|
94
|
+
"27",
|
|
95
|
+
0
|
|
96
|
+
]
|
|
97
|
+
},
|
|
98
|
+
"class_type": "SamplerCustomAdvanced",
|
|
99
|
+
"_meta": {
|
|
100
|
+
"title": "Kontext sampler"
|
|
101
|
+
}
|
|
102
|
+
},
|
|
103
|
+
"16": {
|
|
104
|
+
"inputs": {
|
|
105
|
+
"sampler_name": "euler"
|
|
106
|
+
},
|
|
107
|
+
"class_type": "KSamplerSelect",
|
|
108
|
+
"_meta": {
|
|
109
|
+
"title": "Sampler select"
|
|
110
|
+
}
|
|
111
|
+
},
|
|
112
|
+
"17": {
|
|
113
|
+
"inputs": {
|
|
114
|
+
"scheduler": "simple",
|
|
115
|
+
"steps": 12,
|
|
116
|
+
"denoise": 1.0,
|
|
117
|
+
"model": [
|
|
118
|
+
"30",
|
|
119
|
+
0
|
|
120
|
+
]
|
|
121
|
+
},
|
|
122
|
+
"class_type": "BasicScheduler",
|
|
123
|
+
"_meta": {
|
|
124
|
+
"title": "Scheduler"
|
|
125
|
+
}
|
|
126
|
+
},
|
|
127
|
+
"22": {
|
|
128
|
+
"inputs": {
|
|
129
|
+
"model": [
|
|
130
|
+
"30",
|
|
131
|
+
0
|
|
132
|
+
],
|
|
133
|
+
"conditioning": [
|
|
134
|
+
"42",
|
|
135
|
+
0
|
|
136
|
+
]
|
|
137
|
+
},
|
|
138
|
+
"class_type": "BasicGuider",
|
|
139
|
+
"_meta": {
|
|
140
|
+
"title": "Guided edit"
|
|
141
|
+
}
|
|
142
|
+
},
|
|
143
|
+
"25": {
|
|
144
|
+
"inputs": {
|
|
145
|
+
"noise_seed": 0
|
|
146
|
+
},
|
|
147
|
+
"class_type": "RandomNoise",
|
|
148
|
+
"_meta": {
|
|
149
|
+
"title": "Seed"
|
|
150
|
+
}
|
|
151
|
+
},
|
|
152
|
+
"26": {
|
|
153
|
+
"inputs": {
|
|
154
|
+
"guidance": 2.5,
|
|
155
|
+
"conditioning": [
|
|
156
|
+
"6",
|
|
157
|
+
0
|
|
158
|
+
]
|
|
159
|
+
},
|
|
160
|
+
"class_type": "FluxGuidance",
|
|
161
|
+
"_meta": {
|
|
162
|
+
"title": "Flux guidance"
|
|
163
|
+
}
|
|
164
|
+
},
|
|
165
|
+
"27": {
|
|
166
|
+
"inputs": {
|
|
167
|
+
"width": 512,
|
|
168
|
+
"height": 512,
|
|
169
|
+
"batch_size": 1
|
|
170
|
+
},
|
|
171
|
+
"class_type": "EmptySD3LatentImage",
|
|
172
|
+
"_meta": {
|
|
173
|
+
"title": "Edit latent"
|
|
174
|
+
}
|
|
175
|
+
},
|
|
176
|
+
"30": {
|
|
177
|
+
"inputs": {
|
|
178
|
+
"max_shift": 1.15,
|
|
179
|
+
"base_shift": 0.5,
|
|
180
|
+
"width": 512,
|
|
181
|
+
"height": 512,
|
|
182
|
+
"model": [
|
|
183
|
+
"12",
|
|
184
|
+
0
|
|
185
|
+
]
|
|
186
|
+
},
|
|
187
|
+
"class_type": "ModelSamplingFlux",
|
|
188
|
+
"_meta": {
|
|
189
|
+
"title": "Flux sampling"
|
|
190
|
+
}
|
|
191
|
+
},
|
|
192
|
+
"39": {
|
|
193
|
+
"inputs": {
|
|
194
|
+
"pixels": [
|
|
195
|
+
"40",
|
|
196
|
+
0
|
|
197
|
+
],
|
|
198
|
+
"vae": [
|
|
199
|
+
"10",
|
|
200
|
+
0
|
|
201
|
+
]
|
|
202
|
+
},
|
|
203
|
+
"class_type": "VAEEncode",
|
|
204
|
+
"_meta": {
|
|
205
|
+
"title": "Encode reference image"
|
|
206
|
+
}
|
|
207
|
+
},
|
|
208
|
+
"40": {
|
|
209
|
+
"inputs": {
|
|
210
|
+
"image": [
|
|
211
|
+
"41",
|
|
212
|
+
0
|
|
213
|
+
]
|
|
214
|
+
},
|
|
215
|
+
"class_type": "FluxKontextImageScale",
|
|
216
|
+
"_meta": {
|
|
217
|
+
"title": "Scale reference image"
|
|
218
|
+
}
|
|
219
|
+
},
|
|
220
|
+
"41": {
|
|
221
|
+
"inputs": {
|
|
222
|
+
"image": "example.png"
|
|
223
|
+
},
|
|
224
|
+
"class_type": "LoadImage",
|
|
225
|
+
"_meta": {
|
|
226
|
+
"title": "Load uploaded image"
|
|
227
|
+
}
|
|
228
|
+
},
|
|
229
|
+
"42": {
|
|
230
|
+
"inputs": {
|
|
231
|
+
"conditioning": [
|
|
232
|
+
"26",
|
|
233
|
+
0
|
|
234
|
+
],
|
|
235
|
+
"latent": [
|
|
236
|
+
"39",
|
|
237
|
+
0
|
|
238
|
+
]
|
|
239
|
+
},
|
|
240
|
+
"class_type": "ReferenceLatent",
|
|
241
|
+
"_meta": {
|
|
242
|
+
"title": "Attach reference latent"
|
|
243
|
+
}
|
|
244
|
+
}
|
|
245
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"type": "model",
|
|
4
|
+
"node_ids": [
|
|
5
|
+
"12"
|
|
6
|
+
],
|
|
7
|
+
"key": "unet_name"
|
|
8
|
+
},
|
|
9
|
+
{
|
|
10
|
+
"type": "prompt",
|
|
11
|
+
"node_ids": [
|
|
12
|
+
"6"
|
|
13
|
+
],
|
|
14
|
+
"key": "text"
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"type": "image",
|
|
18
|
+
"node_ids": [
|
|
19
|
+
"41",
|
|
20
|
+
"43"
|
|
21
|
+
],
|
|
22
|
+
"key": "image"
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"type": "width",
|
|
26
|
+
"node_ids": [
|
|
27
|
+
"27",
|
|
28
|
+
"30",
|
|
29
|
+
"44",
|
|
30
|
+
"45"
|
|
31
|
+
],
|
|
32
|
+
"key": "width"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"type": "height",
|
|
36
|
+
"node_ids": [
|
|
37
|
+
"27",
|
|
38
|
+
"30",
|
|
39
|
+
"44",
|
|
40
|
+
"45"
|
|
41
|
+
],
|
|
42
|
+
"key": "height"
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"type": "n",
|
|
46
|
+
"node_ids": [
|
|
47
|
+
"27"
|
|
48
|
+
],
|
|
49
|
+
"key": "batch_size"
|
|
50
|
+
}
|
|
51
|
+
]
|