@genfeedai/workflows 0.1.1 → 0.2.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/dist/index.d.mts CHANGED
@@ -125,6 +125,12 @@ interface Flux2KleinParams {
125
125
  steps?: number;
126
126
  }
127
127
  declare function buildFlux2KleinPrompt(params: Flux2KleinParams): ComfyUIPrompt;
128
+ interface ZImageTurboLoraParams extends ZImageTurboParams {
129
+ loraPath: string;
130
+ loraStrength?: number;
131
+ upscaleModel?: string;
132
+ }
133
+ declare function buildZImageTurboLoraPrompt(params: ZImageTurboLoraParams): ComfyUIPrompt;
128
134
 
129
135
  /**
130
136
  * Workflow Registry for @genfeedai/workflows
@@ -189,4 +195,4 @@ declare function getWorkflowsByCategory(category: WorkflowMetadata['category']):
189
195
  */
190
196
  declare function searchWorkflowsByTag(tag: string): WorkflowMetadata[];
191
197
 
192
- export { ComfyUIClient, type ComfyUIClientOptions, ComfyUITemplateRunner, type Flux2DevParams, type Flux2KleinParams, type Flux2PulidLoraParams, type Flux2PulidParams, type Flux2PulidUpscaleParams, type FluxDevParams, type PulidFluxParams, WORKFLOW_REGISTRY, type WorkflowJson, type WorkflowMetadata, type ZImageTurboParams, buildFlux2DevPrompt, buildFlux2DevPulidLoraPrompt, buildFlux2DevPulidPrompt, buildFlux2DevPulidUpscalePrompt, buildFlux2KleinPrompt, buildFluxDevPrompt, buildPulidFluxPrompt, buildZImageTurboPrompt, getAllWorkflows, getWorkflow, getWorkflowIds, getWorkflowJson, getWorkflowMetadata, getWorkflowsByCategory, searchWorkflowsByTag };
198
+ export { ComfyUIClient, type ComfyUIClientOptions, ComfyUITemplateRunner, type Flux2DevParams, type Flux2KleinParams, type Flux2PulidLoraParams, type Flux2PulidParams, type Flux2PulidUpscaleParams, type FluxDevParams, type PulidFluxParams, WORKFLOW_REGISTRY, type WorkflowJson, type WorkflowMetadata, type ZImageTurboLoraParams, type ZImageTurboParams, buildFlux2DevPrompt, buildFlux2DevPulidLoraPrompt, buildFlux2DevPulidPrompt, buildFlux2DevPulidUpscalePrompt, buildFlux2KleinPrompt, buildFluxDevPrompt, buildPulidFluxPrompt, buildZImageTurboLoraPrompt, buildZImageTurboPrompt, getAllWorkflows, getWorkflow, getWorkflowIds, getWorkflowJson, getWorkflowMetadata, getWorkflowsByCategory, searchWorkflowsByTag };
package/dist/index.d.ts CHANGED
@@ -125,6 +125,12 @@ interface Flux2KleinParams {
125
125
  steps?: number;
126
126
  }
127
127
  declare function buildFlux2KleinPrompt(params: Flux2KleinParams): ComfyUIPrompt;
128
+ interface ZImageTurboLoraParams extends ZImageTurboParams {
129
+ loraPath: string;
130
+ loraStrength?: number;
131
+ upscaleModel?: string;
132
+ }
133
+ declare function buildZImageTurboLoraPrompt(params: ZImageTurboLoraParams): ComfyUIPrompt;
128
134
 
129
135
  /**
130
136
  * Workflow Registry for @genfeedai/workflows
@@ -189,4 +195,4 @@ declare function getWorkflowsByCategory(category: WorkflowMetadata['category']):
189
195
  */
190
196
  declare function searchWorkflowsByTag(tag: string): WorkflowMetadata[];
191
197
 
192
- export { ComfyUIClient, type ComfyUIClientOptions, ComfyUITemplateRunner, type Flux2DevParams, type Flux2KleinParams, type Flux2PulidLoraParams, type Flux2PulidParams, type Flux2PulidUpscaleParams, type FluxDevParams, type PulidFluxParams, WORKFLOW_REGISTRY, type WorkflowJson, type WorkflowMetadata, type ZImageTurboParams, buildFlux2DevPrompt, buildFlux2DevPulidLoraPrompt, buildFlux2DevPulidPrompt, buildFlux2DevPulidUpscalePrompt, buildFlux2KleinPrompt, buildFluxDevPrompt, buildPulidFluxPrompt, buildZImageTurboPrompt, getAllWorkflows, getWorkflow, getWorkflowIds, getWorkflowJson, getWorkflowMetadata, getWorkflowsByCategory, searchWorkflowsByTag };
198
+ export { ComfyUIClient, type ComfyUIClientOptions, ComfyUITemplateRunner, type Flux2DevParams, type Flux2KleinParams, type Flux2PulidLoraParams, type Flux2PulidParams, type Flux2PulidUpscaleParams, type FluxDevParams, type PulidFluxParams, WORKFLOW_REGISTRY, type WorkflowJson, type WorkflowMetadata, type ZImageTurboLoraParams, type ZImageTurboParams, buildFlux2DevPrompt, buildFlux2DevPulidLoraPrompt, buildFlux2DevPulidPrompt, buildFlux2DevPulidUpscalePrompt, buildFlux2KleinPrompt, buildFluxDevPrompt, buildPulidFluxPrompt, buildZImageTurboLoraPrompt, buildZImageTurboPrompt, getAllWorkflows, getWorkflow, getWorkflowIds, getWorkflowJson, getWorkflowMetadata, getWorkflowsByCategory, searchWorkflowsByTag };
package/dist/index.js CHANGED
@@ -40,6 +40,7 @@ __export(index_exports, {
40
40
  buildFlux2KleinPrompt: () => buildFlux2KleinPrompt,
41
41
  buildFluxDevPrompt: () => buildFluxDevPrompt,
42
42
  buildPulidFluxPrompt: () => buildPulidFluxPrompt,
43
+ buildZImageTurboLoraPrompt: () => buildZImageTurboLoraPrompt,
43
44
  buildZImageTurboPrompt: () => buildZImageTurboPrompt,
44
45
  getAllWorkflows: () => getAllWorkflows,
45
46
  getWorkflow: () => getWorkflow,
@@ -1015,6 +1016,114 @@ function buildFlux2KleinPrompt(params) {
1015
1016
  }
1016
1017
  };
1017
1018
  }
1019
+ function buildZImageTurboLoraPrompt(params) {
1020
+ const {
1021
+ prompt,
1022
+ loraPath,
1023
+ seed = Math.floor(Math.random() * 2 ** 32),
1024
+ width = 832,
1025
+ height = 1216,
1026
+ steps = 8,
1027
+ loraStrength = 0.8,
1028
+ upscaleModel = "4x-UltraSharp.pth"
1029
+ } = params;
1030
+ return {
1031
+ "1": {
1032
+ class_type: "UNETLoader",
1033
+ inputs: {
1034
+ unet_name: "z_image_turbo_bf16.safetensors",
1035
+ weight_dtype: "default"
1036
+ }
1037
+ },
1038
+ "2": {
1039
+ class_type: "CLIPLoader",
1040
+ inputs: {
1041
+ clip_name: "qwen_3_4b.safetensors",
1042
+ type: "lumina2"
1043
+ }
1044
+ },
1045
+ "3": {
1046
+ class_type: "LoraLoader",
1047
+ inputs: {
1048
+ model: ["1", 0],
1049
+ clip: ["2", 0],
1050
+ lora_name: loraPath,
1051
+ strength_model: loraStrength,
1052
+ strength_clip: loraStrength
1053
+ }
1054
+ },
1055
+ "4": {
1056
+ class_type: "CLIPTextEncode",
1057
+ inputs: {
1058
+ text: prompt,
1059
+ clip: ["3", 1]
1060
+ }
1061
+ },
1062
+ "5": {
1063
+ class_type: "CLIPTextEncode",
1064
+ inputs: {
1065
+ text: "",
1066
+ clip: ["3", 1]
1067
+ }
1068
+ },
1069
+ "6": {
1070
+ class_type: "EmptyLatentImage",
1071
+ inputs: {
1072
+ width,
1073
+ height,
1074
+ batch_size: 1
1075
+ }
1076
+ },
1077
+ "7": {
1078
+ class_type: "KSampler",
1079
+ inputs: {
1080
+ model: ["3", 0],
1081
+ positive: ["4", 0],
1082
+ negative: ["5", 0],
1083
+ latent_image: ["6", 0],
1084
+ seed,
1085
+ steps,
1086
+ cfg: 1,
1087
+ sampler_name: "euler_ancestral",
1088
+ scheduler: "normal",
1089
+ denoise: 1
1090
+ }
1091
+ },
1092
+ "8": {
1093
+ class_type: "VAELoader",
1094
+ inputs: {
1095
+ vae_name: "ae.safetensors"
1096
+ }
1097
+ },
1098
+ "9": {
1099
+ class_type: "VAEDecode",
1100
+ inputs: {
1101
+ samples: ["7", 0],
1102
+ vae: ["8", 0]
1103
+ }
1104
+ },
1105
+ "10": {
1106
+ class_type: "UpscaleModelLoader",
1107
+ inputs: {
1108
+ model_name: upscaleModel
1109
+ }
1110
+ },
1111
+ "11": {
1112
+ class_type: "ImageUpscaleWithModel",
1113
+ inputs: {
1114
+ upscale_model: ["10", 0],
1115
+ image: ["9", 0]
1116
+ }
1117
+ },
1118
+ "12": {
1119
+ class_type: "SaveImage",
1120
+ inputs: {
1121
+ images: ["11", 0],
1122
+ filename_prefix: "genfeed-z-turbo-lora"
1123
+ }
1124
+ }
1125
+ };
1126
+ }
1018
1127
 
1019
1128
  // src/index.ts
1020
1129
  var fs = __toESM(require("fs"));
@@ -1140,6 +1249,7 @@ function searchWorkflowsByTag(tag) {
1140
1249
  buildFlux2KleinPrompt,
1141
1250
  buildFluxDevPrompt,
1142
1251
  buildPulidFluxPrompt,
1252
+ buildZImageTurboLoraPrompt,
1143
1253
  buildZImageTurboPrompt,
1144
1254
  getAllWorkflows,
1145
1255
  getWorkflow,
package/dist/index.mjs CHANGED
@@ -962,6 +962,114 @@ function buildFlux2KleinPrompt(params) {
962
962
  }
963
963
  };
964
964
  }
965
+ function buildZImageTurboLoraPrompt(params) {
966
+ const {
967
+ prompt,
968
+ loraPath,
969
+ seed = Math.floor(Math.random() * 2 ** 32),
970
+ width = 832,
971
+ height = 1216,
972
+ steps = 8,
973
+ loraStrength = 0.8,
974
+ upscaleModel = "4x-UltraSharp.pth"
975
+ } = params;
976
+ return {
977
+ "1": {
978
+ class_type: "UNETLoader",
979
+ inputs: {
980
+ unet_name: "z_image_turbo_bf16.safetensors",
981
+ weight_dtype: "default"
982
+ }
983
+ },
984
+ "2": {
985
+ class_type: "CLIPLoader",
986
+ inputs: {
987
+ clip_name: "qwen_3_4b.safetensors",
988
+ type: "lumina2"
989
+ }
990
+ },
991
+ "3": {
992
+ class_type: "LoraLoader",
993
+ inputs: {
994
+ model: ["1", 0],
995
+ clip: ["2", 0],
996
+ lora_name: loraPath,
997
+ strength_model: loraStrength,
998
+ strength_clip: loraStrength
999
+ }
1000
+ },
1001
+ "4": {
1002
+ class_type: "CLIPTextEncode",
1003
+ inputs: {
1004
+ text: prompt,
1005
+ clip: ["3", 1]
1006
+ }
1007
+ },
1008
+ "5": {
1009
+ class_type: "CLIPTextEncode",
1010
+ inputs: {
1011
+ text: "",
1012
+ clip: ["3", 1]
1013
+ }
1014
+ },
1015
+ "6": {
1016
+ class_type: "EmptyLatentImage",
1017
+ inputs: {
1018
+ width,
1019
+ height,
1020
+ batch_size: 1
1021
+ }
1022
+ },
1023
+ "7": {
1024
+ class_type: "KSampler",
1025
+ inputs: {
1026
+ model: ["3", 0],
1027
+ positive: ["4", 0],
1028
+ negative: ["5", 0],
1029
+ latent_image: ["6", 0],
1030
+ seed,
1031
+ steps,
1032
+ cfg: 1,
1033
+ sampler_name: "euler_ancestral",
1034
+ scheduler: "normal",
1035
+ denoise: 1
1036
+ }
1037
+ },
1038
+ "8": {
1039
+ class_type: "VAELoader",
1040
+ inputs: {
1041
+ vae_name: "ae.safetensors"
1042
+ }
1043
+ },
1044
+ "9": {
1045
+ class_type: "VAEDecode",
1046
+ inputs: {
1047
+ samples: ["7", 0],
1048
+ vae: ["8", 0]
1049
+ }
1050
+ },
1051
+ "10": {
1052
+ class_type: "UpscaleModelLoader",
1053
+ inputs: {
1054
+ model_name: upscaleModel
1055
+ }
1056
+ },
1057
+ "11": {
1058
+ class_type: "ImageUpscaleWithModel",
1059
+ inputs: {
1060
+ upscale_model: ["10", 0],
1061
+ image: ["9", 0]
1062
+ }
1063
+ },
1064
+ "12": {
1065
+ class_type: "SaveImage",
1066
+ inputs: {
1067
+ images: ["11", 0],
1068
+ filename_prefix: "genfeed-z-turbo-lora"
1069
+ }
1070
+ }
1071
+ };
1072
+ }
965
1073
 
966
1074
  // src/index.ts
967
1075
  import * as fs from "node:fs";
@@ -1086,6 +1194,7 @@ export {
1086
1194
  buildFlux2KleinPrompt,
1087
1195
  buildFluxDevPrompt,
1088
1196
  buildPulidFluxPrompt,
1197
+ buildZImageTurboLoraPrompt,
1089
1198
  buildZImageTurboPrompt,
1090
1199
  getAllWorkflows,
1091
1200
  getWorkflow,
@@ -71,6 +71,18 @@
71
71
  "defaultModel": "nano-banana-pro",
72
72
  "inputTypes": ["text"],
73
73
  "outputTypes": ["video", "image"]
74
+ },
75
+ {
76
+ "slug": "lora-dataset-generator",
77
+ "title": "LoRA Dataset Generator",
78
+ "description": "Generate 20 varied training images from 3 reference identity photos across frontal, three-quarter, side profile, and variety shots",
79
+ "category": "image-generation",
80
+ "tags": ["lora", "dataset", "training", "portrait", "identity"],
81
+ "tier": "free",
82
+ "icon": "📷",
83
+ "defaultModel": "nano-banana-pro",
84
+ "inputTypes": ["image", "text"],
85
+ "outputTypes": ["image"]
74
86
  }
75
87
  ]
76
88
  }
package/package.json CHANGED
@@ -1,11 +1,12 @@
1
1
  {
2
2
  "name": "@genfeedai/workflows",
3
- "version": "0.1.1",
3
+ "version": "0.2.0",
4
+ "sideEffects": false,
4
5
  "license": "AGPL-3.0",
5
6
  "repository": {
6
7
  "type": "git",
7
- "url": "git+https://github.com/genfeedai/core.git",
8
- "directory": "packages/workflows"
8
+ "url": "git+https://github.com/genfeedai/packages.git",
9
+ "directory": "workflows"
9
10
  },
10
11
  "publishConfig": {
11
12
  "access": "public",
@@ -16,13 +17,13 @@
16
17
  "exports": {
17
18
  ".": {
18
19
  "types": "./dist/index.d.ts",
19
- "import": "./dist/index.js",
20
- "require": "./dist/index.cjs"
20
+ "import": "./dist/index.mjs",
21
+ "require": "./dist/index.js"
21
22
  },
22
23
  "./comfyui": {
23
24
  "types": "./dist/comfyui/index.d.ts",
24
- "import": "./dist/comfyui/index.js",
25
- "require": "./dist/comfyui/index.cjs"
25
+ "import": "./dist/comfyui/index.mjs",
26
+ "require": "./dist/comfyui/index.js"
26
27
  },
27
28
  "./workflows/*": "./workflows/*"
28
29
  },
@@ -37,7 +38,8 @@
37
38
  "prepublishOnly": "bun run build"
38
39
  },
39
40
  "devDependencies": {
40
- "@genfeedai/types": "^0.1.1",
41
+ "@genfeedai/types": "^0.2.0",
42
+ "@types/node": "^25.2.3",
41
43
  "tsup": "8.4.0",
42
44
  "typescript": "5.9.3"
43
45
  }
@@ -0,0 +1,754 @@
1
+ {
2
+ "version": 1,
3
+ "name": "LoRA Dataset Generator",
4
+ "description": "Generate 20 varied training images from 3 reference identity photos across 4 angle groups: frontal, three-quarter, side profile, and variety shots",
5
+ "edgeStyle": "smoothstep",
6
+ "createdAt": "2025-01-19T00:00:00.000Z",
7
+ "updatedAt": "2025-01-19T00:00:00.000Z",
8
+ "nodes": [
9
+ {
10
+ "id": "imageInput-1",
11
+ "type": "imageInput",
12
+ "position": { "x": 50, "y": 50 },
13
+ "data": {
14
+ "label": "Reference Photo 1",
15
+ "status": "idle",
16
+ "image": null,
17
+ "filename": null,
18
+ "dimensions": null,
19
+ "source": "upload"
20
+ }
21
+ },
22
+ {
23
+ "id": "imageInput-2",
24
+ "type": "imageInput",
25
+ "position": { "x": 50, "y": 200 },
26
+ "data": {
27
+ "label": "Reference Photo 2",
28
+ "status": "idle",
29
+ "image": null,
30
+ "filename": null,
31
+ "dimensions": null,
32
+ "source": "upload"
33
+ }
34
+ },
35
+ {
36
+ "id": "imageInput-3",
37
+ "type": "imageInput",
38
+ "position": { "x": 50, "y": 350 },
39
+ "data": {
40
+ "label": "Reference Photo 3",
41
+ "status": "idle",
42
+ "image": null,
43
+ "filename": null,
44
+ "dimensions": null,
45
+ "source": "upload"
46
+ }
47
+ },
48
+
49
+ {
50
+ "id": "prompt-1",
51
+ "type": "prompt",
52
+ "position": { "x": 50, "y": 550 },
53
+ "data": {
54
+ "label": "Frontal 1",
55
+ "status": "idle",
56
+ "prompt": "close-up portrait from shoulders up, neutral expression, soft natural window light, direct eye contact, natural skin texture with visible pores",
57
+ "variables": {}
58
+ }
59
+ },
60
+ {
61
+ "id": "prompt-2",
62
+ "type": "prompt",
63
+ "position": { "x": 50, "y": 700 },
64
+ "data": {
65
+ "label": "Frontal 2",
66
+ "status": "idle",
67
+ "prompt": "three-quarter view turned slightly right, warm natural smile, golden hour outdoor light, head and shoulders, natural skin texture",
68
+ "variables": {}
69
+ }
70
+ },
71
+ {
72
+ "id": "prompt-3",
73
+ "type": "prompt",
74
+ "position": { "x": 50, "y": 850 },
75
+ "data": {
76
+ "label": "Frontal 3",
77
+ "status": "idle",
78
+ "prompt": "side profile facing left, dramatic rim lighting, defined jawline, dark moody background, natural skin imperfections visible",
79
+ "variables": {}
80
+ }
81
+ },
82
+ {
83
+ "id": "prompt-4",
84
+ "type": "prompt",
85
+ "position": { "x": 50, "y": 1000 },
86
+ "data": {
87
+ "label": "Frontal 4",
88
+ "status": "idle",
89
+ "prompt": "sitting at outdoor cafe, laughing naturally, bright daylight, casual outfit, candid feel, authentic human skin texture",
90
+ "variables": {}
91
+ }
92
+ },
93
+ {
94
+ "id": "prompt-5",
95
+ "type": "prompt",
96
+ "position": { "x": 50, "y": 1150 },
97
+ "data": {
98
+ "label": "Frontal 5",
99
+ "status": "idle",
100
+ "prompt": "studio headshot, serious confident expression, soft even lighting, grey background, sharp focus on facial features",
101
+ "variables": {}
102
+ }
103
+ },
104
+
105
+ {
106
+ "id": "prompt-6",
107
+ "type": "prompt",
108
+ "position": { "x": 50, "y": 1450 },
109
+ "data": {
110
+ "label": "3/4 View 1",
111
+ "status": "idle",
112
+ "prompt": "three-quarter view turned left, relaxed neutral face, soft diffused light, clean background",
113
+ "variables": {}
114
+ }
115
+ },
116
+ {
117
+ "id": "prompt-7",
118
+ "type": "prompt",
119
+ "position": { "x": 50, "y": 1600 },
120
+ "data": {
121
+ "label": "3/4 View 2",
122
+ "status": "idle",
123
+ "prompt": "three-quarter angle right, confident smirk, dramatic side light, dark background",
124
+ "variables": {}
125
+ }
126
+ },
127
+ {
128
+ "id": "prompt-8",
129
+ "type": "prompt",
130
+ "position": { "x": 50, "y": 1750 },
131
+ "data": {
132
+ "label": "3/4 View 3",
133
+ "status": "idle",
134
+ "prompt": "three-quarter view, gentle smile, golden hour warm glow, shallow depth of field",
135
+ "variables": {}
136
+ }
137
+ },
138
+ {
139
+ "id": "prompt-9",
140
+ "type": "prompt",
141
+ "position": { "x": 50, "y": 1900 },
142
+ "data": {
143
+ "label": "3/4 View 4",
144
+ "status": "idle",
145
+ "prompt": "three-quarter angle left, serious expression, moody atmosphere, low key lighting",
146
+ "variables": {}
147
+ }
148
+ },
149
+ {
150
+ "id": "prompt-10",
151
+ "type": "prompt",
152
+ "position": { "x": 50, "y": 2050 },
153
+ "data": {
154
+ "label": "3/4 View 5",
155
+ "status": "idle",
156
+ "prompt": "three-quarter view right, head tilted slightly, bright overcast light, outdoor setting",
157
+ "variables": {}
158
+ }
159
+ },
160
+
161
+ {
162
+ "id": "prompt-11",
163
+ "type": "prompt",
164
+ "position": { "x": 50, "y": 2350 },
165
+ "data": {
166
+ "label": "Profile 1",
167
+ "status": "idle",
168
+ "prompt": "side profile facing right, backlit golden hour, hair catching light, silhouette edges",
169
+ "variables": {}
170
+ }
171
+ },
172
+ {
173
+ "id": "prompt-12",
174
+ "type": "prompt",
175
+ "position": { "x": 50, "y": 2500 },
176
+ "data": {
177
+ "label": "Profile 2",
178
+ "status": "idle",
179
+ "prompt": "side profile left, studio key light from front, neutral expression, grey background",
180
+ "variables": {}
181
+ }
182
+ },
183
+ {
184
+ "id": "prompt-13",
185
+ "type": "prompt",
186
+ "position": { "x": 50, "y": 2650 },
187
+ "data": {
188
+ "label": "Profile 3",
189
+ "status": "idle",
190
+ "prompt": "head tilted down looking up through lashes, soft overhead light, intimate close-up",
191
+ "variables": {}
192
+ }
193
+ },
194
+ {
195
+ "id": "prompt-14",
196
+ "type": "prompt",
197
+ "position": { "x": 50, "y": 2800 },
198
+ "data": {
199
+ "label": "Profile 4",
200
+ "status": "idle",
201
+ "prompt": "chin raised looking slightly upward, confident, low angle, dramatic light",
202
+ "variables": {}
203
+ }
204
+ },
205
+ {
206
+ "id": "prompt-15",
207
+ "type": "prompt",
208
+ "position": { "x": 50, "y": 2950 },
209
+ "data": {
210
+ "label": "Profile 5",
211
+ "status": "idle",
212
+ "prompt": "side profile right, natural outdoor light, relaxed expression, blurred background",
213
+ "variables": {}
214
+ }
215
+ },
216
+
217
+ {
218
+ "id": "prompt-16",
219
+ "type": "prompt",
220
+ "position": { "x": 50, "y": 3250 },
221
+ "data": {
222
+ "label": "Variety 1",
223
+ "status": "idle",
224
+ "prompt": "full body standing pose, casual streetwear, urban setting, bright daylight",
225
+ "variables": {}
226
+ }
227
+ },
228
+ {
229
+ "id": "prompt-17",
230
+ "type": "prompt",
231
+ "position": { "x": 50, "y": 3400 },
232
+ "data": {
233
+ "label": "Variety 2",
234
+ "status": "idle",
235
+ "prompt": "sitting on stool, formal outfit, studio lighting, clean white background",
236
+ "variables": {}
237
+ }
238
+ },
239
+ {
240
+ "id": "prompt-18",
241
+ "type": "prompt",
242
+ "position": { "x": 50, "y": 3550 },
243
+ "data": {
244
+ "label": "Variety 3",
245
+ "status": "idle",
246
+ "prompt": "leaning against wall, casual, golden hour, warm tones, natural skin",
247
+ "variables": {}
248
+ }
249
+ },
250
+ {
251
+ "id": "prompt-19",
252
+ "type": "prompt",
253
+ "position": { "x": 50, "y": 3700 },
254
+ "data": {
255
+ "label": "Variety 4",
256
+ "status": "idle",
257
+ "prompt": "close-up beauty shot, minimal makeup, ring light, visible skin pores and texture",
258
+ "variables": {}
259
+ }
260
+ },
261
+ {
262
+ "id": "prompt-20",
263
+ "type": "prompt",
264
+ "position": { "x": 50, "y": 3850 },
265
+ "data": {
266
+ "label": "Variety 5",
267
+ "status": "idle",
268
+ "prompt": "outdoor portrait, wind in hair, overcast sky, soft even lighting, waist up",
269
+ "variables": {}
270
+ }
271
+ },
272
+
273
+ {
274
+ "id": "imageGen-1",
275
+ "type": "imageGen",
276
+ "position": { "x": 450, "y": 550 },
277
+ "data": {
278
+ "label": "Frontal Gen 1",
279
+ "status": "idle",
280
+ "inputImages": [],
281
+ "inputPrompt": null,
282
+ "outputImage": null,
283
+ "outputImages": [],
284
+ "model": "nano-banana-pro",
285
+ "aspectRatio": "4:5",
286
+ "resolution": "2K",
287
+ "outputFormat": "png",
288
+ "jobId": null
289
+ }
290
+ },
291
+ {
292
+ "id": "imageGen-2",
293
+ "type": "imageGen",
294
+ "position": { "x": 450, "y": 700 },
295
+ "data": {
296
+ "label": "Frontal Gen 2",
297
+ "status": "idle",
298
+ "inputImages": [],
299
+ "inputPrompt": null,
300
+ "outputImage": null,
301
+ "outputImages": [],
302
+ "model": "nano-banana-pro",
303
+ "aspectRatio": "4:5",
304
+ "resolution": "2K",
305
+ "outputFormat": "png",
306
+ "jobId": null
307
+ }
308
+ },
309
+ {
310
+ "id": "imageGen-3",
311
+ "type": "imageGen",
312
+ "position": { "x": 450, "y": 850 },
313
+ "data": {
314
+ "label": "Frontal Gen 3",
315
+ "status": "idle",
316
+ "inputImages": [],
317
+ "inputPrompt": null,
318
+ "outputImage": null,
319
+ "outputImages": [],
320
+ "model": "nano-banana-pro",
321
+ "aspectRatio": "4:5",
322
+ "resolution": "2K",
323
+ "outputFormat": "png",
324
+ "jobId": null
325
+ }
326
+ },
327
+ {
328
+ "id": "imageGen-4",
329
+ "type": "imageGen",
330
+ "position": { "x": 450, "y": 1000 },
331
+ "data": {
332
+ "label": "Frontal Gen 4",
333
+ "status": "idle",
334
+ "inputImages": [],
335
+ "inputPrompt": null,
336
+ "outputImage": null,
337
+ "outputImages": [],
338
+ "model": "nano-banana-pro",
339
+ "aspectRatio": "4:5",
340
+ "resolution": "2K",
341
+ "outputFormat": "png",
342
+ "jobId": null
343
+ }
344
+ },
345
+ {
346
+ "id": "imageGen-5",
347
+ "type": "imageGen",
348
+ "position": { "x": 450, "y": 1150 },
349
+ "data": {
350
+ "label": "Frontal Gen 5",
351
+ "status": "idle",
352
+ "inputImages": [],
353
+ "inputPrompt": null,
354
+ "outputImage": null,
355
+ "outputImages": [],
356
+ "model": "nano-banana-pro",
357
+ "aspectRatio": "4:5",
358
+ "resolution": "2K",
359
+ "outputFormat": "png",
360
+ "jobId": null
361
+ }
362
+ },
363
+
364
+ {
365
+ "id": "imageGen-6",
366
+ "type": "imageGen",
367
+ "position": { "x": 450, "y": 1450 },
368
+ "data": {
369
+ "label": "3/4 Gen 1",
370
+ "status": "idle",
371
+ "inputImages": [],
372
+ "inputPrompt": null,
373
+ "outputImage": null,
374
+ "outputImages": [],
375
+ "model": "nano-banana-pro",
376
+ "aspectRatio": "4:5",
377
+ "resolution": "2K",
378
+ "outputFormat": "png",
379
+ "jobId": null
380
+ }
381
+ },
382
+ {
383
+ "id": "imageGen-7",
384
+ "type": "imageGen",
385
+ "position": { "x": 450, "y": 1600 },
386
+ "data": {
387
+ "label": "3/4 Gen 2",
388
+ "status": "idle",
389
+ "inputImages": [],
390
+ "inputPrompt": null,
391
+ "outputImage": null,
392
+ "outputImages": [],
393
+ "model": "nano-banana-pro",
394
+ "aspectRatio": "4:5",
395
+ "resolution": "2K",
396
+ "outputFormat": "png",
397
+ "jobId": null
398
+ }
399
+ },
400
+ {
401
+ "id": "imageGen-8",
402
+ "type": "imageGen",
403
+ "position": { "x": 450, "y": 1750 },
404
+ "data": {
405
+ "label": "3/4 Gen 3",
406
+ "status": "idle",
407
+ "inputImages": [],
408
+ "inputPrompt": null,
409
+ "outputImage": null,
410
+ "outputImages": [],
411
+ "model": "nano-banana-pro",
412
+ "aspectRatio": "4:5",
413
+ "resolution": "2K",
414
+ "outputFormat": "png",
415
+ "jobId": null
416
+ }
417
+ },
418
+ {
419
+ "id": "imageGen-9",
420
+ "type": "imageGen",
421
+ "position": { "x": 450, "y": 1900 },
422
+ "data": {
423
+ "label": "3/4 Gen 4",
424
+ "status": "idle",
425
+ "inputImages": [],
426
+ "inputPrompt": null,
427
+ "outputImage": null,
428
+ "outputImages": [],
429
+ "model": "nano-banana-pro",
430
+ "aspectRatio": "4:5",
431
+ "resolution": "2K",
432
+ "outputFormat": "png",
433
+ "jobId": null
434
+ }
435
+ },
436
+ {
437
+ "id": "imageGen-10",
438
+ "type": "imageGen",
439
+ "position": { "x": 450, "y": 2050 },
440
+ "data": {
441
+ "label": "3/4 Gen 5",
442
+ "status": "idle",
443
+ "inputImages": [],
444
+ "inputPrompt": null,
445
+ "outputImage": null,
446
+ "outputImages": [],
447
+ "model": "nano-banana-pro",
448
+ "aspectRatio": "4:5",
449
+ "resolution": "2K",
450
+ "outputFormat": "png",
451
+ "jobId": null
452
+ }
453
+ },
454
+
455
+ {
456
+ "id": "imageGen-11",
457
+ "type": "imageGen",
458
+ "position": { "x": 450, "y": 2350 },
459
+ "data": {
460
+ "label": "Profile Gen 1",
461
+ "status": "idle",
462
+ "inputImages": [],
463
+ "inputPrompt": null,
464
+ "outputImage": null,
465
+ "outputImages": [],
466
+ "model": "nano-banana-pro",
467
+ "aspectRatio": "4:5",
468
+ "resolution": "2K",
469
+ "outputFormat": "png",
470
+ "jobId": null
471
+ }
472
+ },
473
+ {
474
+ "id": "imageGen-12",
475
+ "type": "imageGen",
476
+ "position": { "x": 450, "y": 2500 },
477
+ "data": {
478
+ "label": "Profile Gen 2",
479
+ "status": "idle",
480
+ "inputImages": [],
481
+ "inputPrompt": null,
482
+ "outputImage": null,
483
+ "outputImages": [],
484
+ "model": "nano-banana-pro",
485
+ "aspectRatio": "4:5",
486
+ "resolution": "2K",
487
+ "outputFormat": "png",
488
+ "jobId": null
489
+ }
490
+ },
491
+ {
492
+ "id": "imageGen-13",
493
+ "type": "imageGen",
494
+ "position": { "x": 450, "y": 2650 },
495
+ "data": {
496
+ "label": "Profile Gen 3",
497
+ "status": "idle",
498
+ "inputImages": [],
499
+ "inputPrompt": null,
500
+ "outputImage": null,
501
+ "outputImages": [],
502
+ "model": "nano-banana-pro",
503
+ "aspectRatio": "4:5",
504
+ "resolution": "2K",
505
+ "outputFormat": "png",
506
+ "jobId": null
507
+ }
508
+ },
509
+ {
510
+ "id": "imageGen-14",
511
+ "type": "imageGen",
512
+ "position": { "x": 450, "y": 2800 },
513
+ "data": {
514
+ "label": "Profile Gen 4",
515
+ "status": "idle",
516
+ "inputImages": [],
517
+ "inputPrompt": null,
518
+ "outputImage": null,
519
+ "outputImages": [],
520
+ "model": "nano-banana-pro",
521
+ "aspectRatio": "4:5",
522
+ "resolution": "2K",
523
+ "outputFormat": "png",
524
+ "jobId": null
525
+ }
526
+ },
527
+ {
528
+ "id": "imageGen-15",
529
+ "type": "imageGen",
530
+ "position": { "x": 450, "y": 2950 },
531
+ "data": {
532
+ "label": "Profile Gen 5",
533
+ "status": "idle",
534
+ "inputImages": [],
535
+ "inputPrompt": null,
536
+ "outputImage": null,
537
+ "outputImages": [],
538
+ "model": "nano-banana-pro",
539
+ "aspectRatio": "4:5",
540
+ "resolution": "2K",
541
+ "outputFormat": "png",
542
+ "jobId": null
543
+ }
544
+ },
545
+
546
+ {
547
+ "id": "imageGen-16",
548
+ "type": "imageGen",
549
+ "position": { "x": 450, "y": 3250 },
550
+ "data": {
551
+ "label": "Variety Gen 1",
552
+ "status": "idle",
553
+ "inputImages": [],
554
+ "inputPrompt": null,
555
+ "outputImage": null,
556
+ "outputImages": [],
557
+ "model": "nano-banana-pro",
558
+ "aspectRatio": "4:5",
559
+ "resolution": "2K",
560
+ "outputFormat": "png",
561
+ "jobId": null
562
+ }
563
+ },
564
+ {
565
+ "id": "imageGen-17",
566
+ "type": "imageGen",
567
+ "position": { "x": 450, "y": 3400 },
568
+ "data": {
569
+ "label": "Variety Gen 2",
570
+ "status": "idle",
571
+ "inputImages": [],
572
+ "inputPrompt": null,
573
+ "outputImage": null,
574
+ "outputImages": [],
575
+ "model": "nano-banana-pro",
576
+ "aspectRatio": "4:5",
577
+ "resolution": "2K",
578
+ "outputFormat": "png",
579
+ "jobId": null
580
+ }
581
+ },
582
+ {
583
+ "id": "imageGen-18",
584
+ "type": "imageGen",
585
+ "position": { "x": 450, "y": 3550 },
586
+ "data": {
587
+ "label": "Variety Gen 3",
588
+ "status": "idle",
589
+ "inputImages": [],
590
+ "inputPrompt": null,
591
+ "outputImage": null,
592
+ "outputImages": [],
593
+ "model": "nano-banana-pro",
594
+ "aspectRatio": "4:5",
595
+ "resolution": "2K",
596
+ "outputFormat": "png",
597
+ "jobId": null
598
+ }
599
+ },
600
+ {
601
+ "id": "imageGen-19",
602
+ "type": "imageGen",
603
+ "position": { "x": 450, "y": 3700 },
604
+ "data": {
605
+ "label": "Variety Gen 4",
606
+ "status": "idle",
607
+ "inputImages": [],
608
+ "inputPrompt": null,
609
+ "outputImage": null,
610
+ "outputImages": [],
611
+ "model": "nano-banana-pro",
612
+ "aspectRatio": "4:5",
613
+ "resolution": "2K",
614
+ "outputFormat": "png",
615
+ "jobId": null
616
+ }
617
+ },
618
+ {
619
+ "id": "imageGen-20",
620
+ "type": "imageGen",
621
+ "position": { "x": 450, "y": 3850 },
622
+ "data": {
623
+ "label": "Variety Gen 5",
624
+ "status": "idle",
625
+ "inputImages": [],
626
+ "inputPrompt": null,
627
+ "outputImage": null,
628
+ "outputImages": [],
629
+ "model": "nano-banana-pro",
630
+ "aspectRatio": "4:5",
631
+ "resolution": "2K",
632
+ "outputFormat": "png",
633
+ "jobId": null
634
+ }
635
+ },
636
+
637
+ {
638
+ "id": "outputGallery-1",
639
+ "type": "outputGallery",
640
+ "position": { "x": 850, "y": 2000 },
641
+ "data": {
642
+ "label": "Output Gallery",
643
+ "status": "idle",
644
+ "images": []
645
+ }
646
+ }
647
+ ],
648
+ "edges": [
649
+ { "id": "e1", "source": "imageInput-1", "target": "imageGen-1", "sourceHandle": "image", "targetHandle": "images" },
650
+ { "id": "e2", "source": "imageInput-1", "target": "imageGen-2", "sourceHandle": "image", "targetHandle": "images" },
651
+ { "id": "e3", "source": "imageInput-1", "target": "imageGen-3", "sourceHandle": "image", "targetHandle": "images" },
652
+ { "id": "e4", "source": "imageInput-1", "target": "imageGen-4", "sourceHandle": "image", "targetHandle": "images" },
653
+ { "id": "e5", "source": "imageInput-1", "target": "imageGen-5", "sourceHandle": "image", "targetHandle": "images" },
654
+ { "id": "e6", "source": "imageInput-1", "target": "imageGen-6", "sourceHandle": "image", "targetHandle": "images" },
655
+ { "id": "e7", "source": "imageInput-1", "target": "imageGen-7", "sourceHandle": "image", "targetHandle": "images" },
656
+ { "id": "e8", "source": "imageInput-1", "target": "imageGen-8", "sourceHandle": "image", "targetHandle": "images" },
657
+ { "id": "e9", "source": "imageInput-1", "target": "imageGen-9", "sourceHandle": "image", "targetHandle": "images" },
658
+ { "id": "e10", "source": "imageInput-1", "target": "imageGen-10", "sourceHandle": "image", "targetHandle": "images" },
659
+ { "id": "e11", "source": "imageInput-1", "target": "imageGen-11", "sourceHandle": "image", "targetHandle": "images" },
660
+ { "id": "e12", "source": "imageInput-1", "target": "imageGen-12", "sourceHandle": "image", "targetHandle": "images" },
661
+ { "id": "e13", "source": "imageInput-1", "target": "imageGen-13", "sourceHandle": "image", "targetHandle": "images" },
662
+ { "id": "e14", "source": "imageInput-1", "target": "imageGen-14", "sourceHandle": "image", "targetHandle": "images" },
663
+ { "id": "e15", "source": "imageInput-1", "target": "imageGen-15", "sourceHandle": "image", "targetHandle": "images" },
664
+ { "id": "e16", "source": "imageInput-1", "target": "imageGen-16", "sourceHandle": "image", "targetHandle": "images" },
665
+ { "id": "e17", "source": "imageInput-1", "target": "imageGen-17", "sourceHandle": "image", "targetHandle": "images" },
666
+ { "id": "e18", "source": "imageInput-1", "target": "imageGen-18", "sourceHandle": "image", "targetHandle": "images" },
667
+ { "id": "e19", "source": "imageInput-1", "target": "imageGen-19", "sourceHandle": "image", "targetHandle": "images" },
668
+ { "id": "e20", "source": "imageInput-1", "target": "imageGen-20", "sourceHandle": "image", "targetHandle": "images" },
669
+
670
+ { "id": "e21", "source": "imageInput-2", "target": "imageGen-1", "sourceHandle": "image", "targetHandle": "images" },
671
+ { "id": "e22", "source": "imageInput-2", "target": "imageGen-2", "sourceHandle": "image", "targetHandle": "images" },
672
+ { "id": "e23", "source": "imageInput-2", "target": "imageGen-3", "sourceHandle": "image", "targetHandle": "images" },
673
+ { "id": "e24", "source": "imageInput-2", "target": "imageGen-4", "sourceHandle": "image", "targetHandle": "images" },
674
+ { "id": "e25", "source": "imageInput-2", "target": "imageGen-5", "sourceHandle": "image", "targetHandle": "images" },
675
+ { "id": "e26", "source": "imageInput-2", "target": "imageGen-6", "sourceHandle": "image", "targetHandle": "images" },
676
+ { "id": "e27", "source": "imageInput-2", "target": "imageGen-7", "sourceHandle": "image", "targetHandle": "images" },
677
+ { "id": "e28", "source": "imageInput-2", "target": "imageGen-8", "sourceHandle": "image", "targetHandle": "images" },
678
+ { "id": "e29", "source": "imageInput-2", "target": "imageGen-9", "sourceHandle": "image", "targetHandle": "images" },
679
+ { "id": "e30", "source": "imageInput-2", "target": "imageGen-10", "sourceHandle": "image", "targetHandle": "images" },
680
+ { "id": "e31", "source": "imageInput-2", "target": "imageGen-11", "sourceHandle": "image", "targetHandle": "images" },
681
+ { "id": "e32", "source": "imageInput-2", "target": "imageGen-12", "sourceHandle": "image", "targetHandle": "images" },
682
+ { "id": "e33", "source": "imageInput-2", "target": "imageGen-13", "sourceHandle": "image", "targetHandle": "images" },
683
+ { "id": "e34", "source": "imageInput-2", "target": "imageGen-14", "sourceHandle": "image", "targetHandle": "images" },
684
+ { "id": "e35", "source": "imageInput-2", "target": "imageGen-15", "sourceHandle": "image", "targetHandle": "images" },
685
+ { "id": "e36", "source": "imageInput-2", "target": "imageGen-16", "sourceHandle": "image", "targetHandle": "images" },
686
+ { "id": "e37", "source": "imageInput-2", "target": "imageGen-17", "sourceHandle": "image", "targetHandle": "images" },
687
+ { "id": "e38", "source": "imageInput-2", "target": "imageGen-18", "sourceHandle": "image", "targetHandle": "images" },
688
+ { "id": "e39", "source": "imageInput-2", "target": "imageGen-19", "sourceHandle": "image", "targetHandle": "images" },
689
+ { "id": "e40", "source": "imageInput-2", "target": "imageGen-20", "sourceHandle": "image", "targetHandle": "images" },
690
+
691
+ { "id": "e41", "source": "imageInput-3", "target": "imageGen-1", "sourceHandle": "image", "targetHandle": "images" },
692
+ { "id": "e42", "source": "imageInput-3", "target": "imageGen-2", "sourceHandle": "image", "targetHandle": "images" },
693
+ { "id": "e43", "source": "imageInput-3", "target": "imageGen-3", "sourceHandle": "image", "targetHandle": "images" },
694
+ { "id": "e44", "source": "imageInput-3", "target": "imageGen-4", "sourceHandle": "image", "targetHandle": "images" },
695
+ { "id": "e45", "source": "imageInput-3", "target": "imageGen-5", "sourceHandle": "image", "targetHandle": "images" },
696
+ { "id": "e46", "source": "imageInput-3", "target": "imageGen-6", "sourceHandle": "image", "targetHandle": "images" },
697
+ { "id": "e47", "source": "imageInput-3", "target": "imageGen-7", "sourceHandle": "image", "targetHandle": "images" },
698
+ { "id": "e48", "source": "imageInput-3", "target": "imageGen-8", "sourceHandle": "image", "targetHandle": "images" },
699
+ { "id": "e49", "source": "imageInput-3", "target": "imageGen-9", "sourceHandle": "image", "targetHandle": "images" },
700
+ { "id": "e50", "source": "imageInput-3", "target": "imageGen-10", "sourceHandle": "image", "targetHandle": "images" },
701
+ { "id": "e51", "source": "imageInput-3", "target": "imageGen-11", "sourceHandle": "image", "targetHandle": "images" },
702
+ { "id": "e52", "source": "imageInput-3", "target": "imageGen-12", "sourceHandle": "image", "targetHandle": "images" },
703
+ { "id": "e53", "source": "imageInput-3", "target": "imageGen-13", "sourceHandle": "image", "targetHandle": "images" },
704
+ { "id": "e54", "source": "imageInput-3", "target": "imageGen-14", "sourceHandle": "image", "targetHandle": "images" },
705
+ { "id": "e55", "source": "imageInput-3", "target": "imageGen-15", "sourceHandle": "image", "targetHandle": "images" },
706
+ { "id": "e56", "source": "imageInput-3", "target": "imageGen-16", "sourceHandle": "image", "targetHandle": "images" },
707
+ { "id": "e57", "source": "imageInput-3", "target": "imageGen-17", "sourceHandle": "image", "targetHandle": "images" },
708
+ { "id": "e58", "source": "imageInput-3", "target": "imageGen-18", "sourceHandle": "image", "targetHandle": "images" },
709
+ { "id": "e59", "source": "imageInput-3", "target": "imageGen-19", "sourceHandle": "image", "targetHandle": "images" },
710
+ { "id": "e60", "source": "imageInput-3", "target": "imageGen-20", "sourceHandle": "image", "targetHandle": "images" },
711
+
712
+ { "id": "e61", "source": "prompt-1", "target": "imageGen-1", "sourceHandle": "text", "targetHandle": "prompt" },
713
+ { "id": "e62", "source": "prompt-2", "target": "imageGen-2", "sourceHandle": "text", "targetHandle": "prompt" },
714
+ { "id": "e63", "source": "prompt-3", "target": "imageGen-3", "sourceHandle": "text", "targetHandle": "prompt" },
715
+ { "id": "e64", "source": "prompt-4", "target": "imageGen-4", "sourceHandle": "text", "targetHandle": "prompt" },
716
+ { "id": "e65", "source": "prompt-5", "target": "imageGen-5", "sourceHandle": "text", "targetHandle": "prompt" },
717
+ { "id": "e66", "source": "prompt-6", "target": "imageGen-6", "sourceHandle": "text", "targetHandle": "prompt" },
718
+ { "id": "e67", "source": "prompt-7", "target": "imageGen-7", "sourceHandle": "text", "targetHandle": "prompt" },
719
+ { "id": "e68", "source": "prompt-8", "target": "imageGen-8", "sourceHandle": "text", "targetHandle": "prompt" },
720
+ { "id": "e69", "source": "prompt-9", "target": "imageGen-9", "sourceHandle": "text", "targetHandle": "prompt" },
721
+ { "id": "e70", "source": "prompt-10", "target": "imageGen-10", "sourceHandle": "text", "targetHandle": "prompt" },
722
+ { "id": "e71", "source": "prompt-11", "target": "imageGen-11", "sourceHandle": "text", "targetHandle": "prompt" },
723
+ { "id": "e72", "source": "prompt-12", "target": "imageGen-12", "sourceHandle": "text", "targetHandle": "prompt" },
724
+ { "id": "e73", "source": "prompt-13", "target": "imageGen-13", "sourceHandle": "text", "targetHandle": "prompt" },
725
+ { "id": "e74", "source": "prompt-14", "target": "imageGen-14", "sourceHandle": "text", "targetHandle": "prompt" },
726
+ { "id": "e75", "source": "prompt-15", "target": "imageGen-15", "sourceHandle": "text", "targetHandle": "prompt" },
727
+ { "id": "e76", "source": "prompt-16", "target": "imageGen-16", "sourceHandle": "text", "targetHandle": "prompt" },
728
+ { "id": "e77", "source": "prompt-17", "target": "imageGen-17", "sourceHandle": "text", "targetHandle": "prompt" },
729
+ { "id": "e78", "source": "prompt-18", "target": "imageGen-18", "sourceHandle": "text", "targetHandle": "prompt" },
730
+ { "id": "e79", "source": "prompt-19", "target": "imageGen-19", "sourceHandle": "text", "targetHandle": "prompt" },
731
+ { "id": "e80", "source": "prompt-20", "target": "imageGen-20", "sourceHandle": "text", "targetHandle": "prompt" },
732
+
733
+ { "id": "e81", "source": "imageGen-1", "target": "outputGallery-1", "sourceHandle": "image", "targetHandle": "image" },
734
+ { "id": "e82", "source": "imageGen-2", "target": "outputGallery-1", "sourceHandle": "image", "targetHandle": "image" },
735
+ { "id": "e83", "source": "imageGen-3", "target": "outputGallery-1", "sourceHandle": "image", "targetHandle": "image" },
736
+ { "id": "e84", "source": "imageGen-4", "target": "outputGallery-1", "sourceHandle": "image", "targetHandle": "image" },
737
+ { "id": "e85", "source": "imageGen-5", "target": "outputGallery-1", "sourceHandle": "image", "targetHandle": "image" },
738
+ { "id": "e86", "source": "imageGen-6", "target": "outputGallery-1", "sourceHandle": "image", "targetHandle": "image" },
739
+ { "id": "e87", "source": "imageGen-7", "target": "outputGallery-1", "sourceHandle": "image", "targetHandle": "image" },
740
+ { "id": "e88", "source": "imageGen-8", "target": "outputGallery-1", "sourceHandle": "image", "targetHandle": "image" },
741
+ { "id": "e89", "source": "imageGen-9", "target": "outputGallery-1", "sourceHandle": "image", "targetHandle": "image" },
742
+ { "id": "e90", "source": "imageGen-10", "target": "outputGallery-1", "sourceHandle": "image", "targetHandle": "image" },
743
+ { "id": "e91", "source": "imageGen-11", "target": "outputGallery-1", "sourceHandle": "image", "targetHandle": "image" },
744
+ { "id": "e92", "source": "imageGen-12", "target": "outputGallery-1", "sourceHandle": "image", "targetHandle": "image" },
745
+ { "id": "e93", "source": "imageGen-13", "target": "outputGallery-1", "sourceHandle": "image", "targetHandle": "image" },
746
+ { "id": "e94", "source": "imageGen-14", "target": "outputGallery-1", "sourceHandle": "image", "targetHandle": "image" },
747
+ { "id": "e95", "source": "imageGen-15", "target": "outputGallery-1", "sourceHandle": "image", "targetHandle": "image" },
748
+ { "id": "e96", "source": "imageGen-16", "target": "outputGallery-1", "sourceHandle": "image", "targetHandle": "image" },
749
+ { "id": "e97", "source": "imageGen-17", "target": "outputGallery-1", "sourceHandle": "image", "targetHandle": "image" },
750
+ { "id": "e98", "source": "imageGen-18", "target": "outputGallery-1", "sourceHandle": "image", "targetHandle": "image" },
751
+ { "id": "e99", "source": "imageGen-19", "target": "outputGallery-1", "sourceHandle": "image", "targetHandle": "image" },
752
+ { "id": "e100", "source": "imageGen-20", "target": "outputGallery-1", "sourceHandle": "image", "targetHandle": "image" }
753
+ ]
754
+ }