compiled_api_1384.json 61 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756
  1. {
  2. "306": {
  3. "class_type": "SaveImage",
  4. "inputs": {
  5. "images": [
  6. "314",
  7. 0
  8. ],
  9. "filename_prefix": [
  10. "942",
  11. 0
  12. ]
  13. }
  14. },
  15. "423": {
  16. "class_type": "SaveImage",
  17. "inputs": {
  18. "images": [
  19. "433",
  20. 0
  21. ],
  22. "filename_prefix": [
  23. "914",
  24. 0
  25. ]
  26. }
  27. },
  28. "433": {
  29. "class_type": "VAEDecode",
  30. "inputs": {
  31. "samples": [
  32. "429",
  33. 0
  34. ],
  35. "vae": [
  36. "428",
  37. 0
  38. ]
  39. }
  40. },
  41. "453": {
  42. "class_type": "SaveImage",
  43. "inputs": {
  44. "images": [
  45. "463",
  46. 0
  47. ],
  48. "filename_prefix": [
  49. "919",
  50. 0
  51. ]
  52. }
  53. },
  54. "463": {
  55. "class_type": "VAEDecode",
  56. "inputs": {
  57. "samples": [
  58. "459",
  59. 0
  60. ],
  61. "vae": [
  62. "458",
  63. 0
  64. ]
  65. }
  66. },
  67. "464": {
  68. "class_type": "SaveImage",
  69. "inputs": {
  70. "images": [
  71. "473",
  72. 0
  73. ],
  74. "filename_prefix": [
  75. "921",
  76. 0
  77. ]
  78. }
  79. },
  80. "472": {
  81. "class_type": "SetNode",
  82. "inputs": {}
  83. },
  84. "191": {
  85. "class_type": "SetNode",
  86. "inputs": {}
  87. },
  88. "192": {
  89. "class_type": "SetNode",
  90. "inputs": {}
  91. },
  92. "308": {
  93. "class_type": "SaveImage",
  94. "inputs": {
  95. "images": [
  96. "316",
  97. 0
  98. ],
  99. "filename_prefix": [
  100. "942",
  101. 0
  102. ]
  103. }
  104. },
  105. "578": {
  106. "class_type": "Label (rgthree)",
  107. "inputs": {}
  108. },
  109. "575": {
  110. "class_type": "Label (rgthree)",
  111. "inputs": {}
  112. },
  113. "581": {
  114. "class_type": "Label (rgthree)",
  115. "inputs": {}
  116. },
  117. "332": {
  118. "class_type": "Label (rgthree)",
  119. "inputs": {}
  120. },
  121. "602": {
  122. "class_type": "SaveImage",
  123. "inputs": {
  124. "images": [
  125. "611",
  126. 0
  127. ],
  128. "filename_prefix": [
  129. "915",
  130. 0
  131. ]
  132. }
  133. },
  134. "635": {
  135. "class_type": "GetNode",
  136. "inputs": {}
  137. },
  138. "640": {
  139. "class_type": "VAEDecode",
  140. "inputs": {
  141. "samples": [
  142. "637",
  143. 0
  144. ],
  145. "vae": [
  146. "636",
  147. 0
  148. ]
  149. }
  150. },
  151. "650": {
  152. "class_type": "GetNode",
  153. "inputs": {}
  154. },
  155. "651": {
  156. "class_type": "GetNode",
  157. "inputs": {}
  158. },
  159. "655": {
  160. "class_type": "VAEDecode",
  161. "inputs": {
  162. "samples": [
  163. "652",
  164. 0
  165. ],
  166. "vae": [
  167. "651",
  168. 0
  169. ]
  170. }
  171. },
  172. "660": {
  173. "class_type": "SaveImage",
  174. "inputs": {
  175. "images": [
  176. "655",
  177. 0
  178. ],
  179. "filename_prefix": [
  180. "918",
  181. 0
  182. ]
  183. }
  184. },
  185. "610": {
  186. "class_type": "SetNode",
  187. "inputs": {}
  188. },
  189. "305": {
  190. "class_type": "SaveImage",
  191. "inputs": {
  192. "images": [
  193. "318",
  194. 0
  195. ],
  196. "filename_prefix": [
  197. "942",
  198. 0
  199. ]
  200. }
  201. },
  202. "307": {
  203. "class_type": "SaveImage",
  204. "inputs": {
  205. "images": [
  206. "315",
  207. 0
  208. ],
  209. "filename_prefix": [
  210. "942",
  211. 0
  212. ]
  213. }
  214. },
  215. "321": {
  216. "class_type": "Label (rgthree)",
  217. "inputs": {}
  218. },
  219. "686": {
  220. "class_type": "SaveImage",
  221. "inputs": {
  222. "images": [
  223. "690",
  224. 0
  225. ],
  226. "filename_prefix": [
  227. "923",
  228. 0
  229. ]
  230. }
  231. },
  232. "699": {
  233. "class_type": "SaveImage",
  234. "inputs": {
  235. "images": [
  236. "703",
  237. 0
  238. ],
  239. "filename_prefix": [
  240. "924",
  241. 0
  242. ]
  243. }
  244. },
  245. "727": {
  246. "class_type": "SaveImage",
  247. "inputs": {
  248. "images": [
  249. "731",
  250. 0
  251. ],
  252. "filename_prefix": [
  253. "925",
  254. 0
  255. ]
  256. }
  257. },
  258. "729": {
  259. "class_type": "GetNode",
  260. "inputs": {}
  261. },
  262. "731": {
  263. "class_type": "VAEDecode",
  264. "inputs": {
  265. "samples": [
  266. "738",
  267. 0
  268. ],
  269. "vae": [
  270. "730",
  271. 0
  272. ]
  273. }
  274. },
  275. "756": {
  276. "class_type": "SaveImage",
  277. "inputs": {
  278. "images": [
  279. "760",
  280. 0
  281. ],
  282. "filename_prefix": [
  283. "922",
  284. 0
  285. ]
  286. }
  287. },
  288. "366": {
  289. "class_type": "SetNode",
  290. "inputs": {}
  291. },
  292. "876": {
  293. "class_type": "GetNode",
  294. "inputs": {}
  295. },
  296. "877": {
  297. "class_type": "GetNode",
  298. "inputs": {}
  299. },
  300. "316": {
  301. "class_type": "ExpressionEditor",
  302. "inputs": {
  303. "rotate_pitch": 0,
  304. "rotate_yaw": 12,
  305. "rotate_roll": 0,
  306. "blink": 0,
  307. "eyebrow": 0,
  308. "wink": 0,
  309. "pupil_x": -15,
  310. "pupil_y": 0,
  311. "aaa": 97,
  312. "eee": -2.9000000000000004,
  313. "woo": 0,
  314. "smile": -0.26,
  315. "src_ratio": 1,
  316. "sample_ratio": 1,
  317. "crop_factor": 1.5,
  318. "src_image": [
  319. "319",
  320. 0
  321. ]
  322. }
  323. },
  324. "645": {
  325. "class_type": "SaveImage",
  326. "inputs": {
  327. "images": [
  328. "640",
  329. 0
  330. ],
  331. "filename_prefix": [
  332. "917",
  333. 0
  334. ]
  335. }
  336. },
  337. "200": {
  338. "class_type": "EmptySD3LatentImage",
  339. "inputs": {
  340. "width": 2048,
  341. "height": 1024,
  342. "batch_size": 1
  343. }
  344. },
  345. "207": {
  346. "class_type": "VAEDecode",
  347. "inputs": {
  348. "samples": [
  349. "199",
  350. 0
  351. ],
  352. "vae": [
  353. "202",
  354. 0
  355. ]
  356. }
  357. },
  358. "605": {
  359. "class_type": "EmptySD3LatentImage",
  360. "inputs": {
  361. "width": 1024,
  362. "height": 1024,
  363. "batch_size": 1
  364. }
  365. },
  366. "426": {
  367. "class_type": "EmptySD3LatentImage",
  368. "inputs": {
  369. "width": 1024,
  370. "height": 1024,
  371. "batch_size": 1
  372. }
  373. },
  374. "611": {
  375. "class_type": "VAEDecode",
  376. "inputs": {
  377. "samples": [
  378. "608",
  379. 0
  380. ],
  381. "vae": [
  382. "607",
  383. 0
  384. ]
  385. }
  386. },
  387. "634": {
  388. "class_type": "EmptySD3LatentImage",
  389. "inputs": {
  390. "width": 1024,
  391. "height": 1024,
  392. "batch_size": 1
  393. }
  394. },
  395. "639": {
  396. "class_type": "SetNode",
  397. "inputs": {}
  398. },
  399. "538": {
  400. "class_type": "EmptySD3LatentImage",
  401. "inputs": {
  402. "width": 1280,
  403. "height": 720,
  404. "batch_size": 1
  405. }
  406. },
  407. "654": {
  408. "class_type": "SetNode",
  409. "inputs": {}
  410. },
  411. "456": {
  412. "class_type": "EmptySD3LatentImage",
  413. "inputs": {
  414. "width": 1024,
  415. "height": 1024,
  416. "batch_size": 1
  417. }
  418. },
  419. "459": {
  420. "class_type": "KSampler",
  421. "inputs": {
  422. "model": [
  423. "457",
  424. 0
  425. ],
  426. "seed": 1034973049061637,
  427. "steps": [
  428. "867",
  429. 0
  430. ],
  431. "cfg": [
  432. "866",
  433. 0
  434. ],
  435. "sampler_name": "fixed",
  436. "scheduler": 4,
  437. "positive": [
  438. "1367",
  439. 0
  440. ],
  441. "negative": [
  442. "1366",
  443. 0
  444. ],
  445. "latent_image": [
  446. "456",
  447. 0
  448. ],
  449. "denoise": 1
  450. }
  451. },
  452. "275": {
  453. "class_type": "SetNode",
  454. "inputs": {}
  455. },
  456. "470": {
  457. "class_type": "KSampler",
  458. "inputs": {
  459. "model": [
  460. "468",
  461. 0
  462. ],
  463. "seed": 1034973049061638,
  464. "steps": [
  465. "871",
  466. 0
  467. ],
  468. "cfg": [
  469. "870",
  470. 0
  471. ],
  472. "sampler_name": "fixed",
  473. "scheduler": 4,
  474. "positive": [
  475. "1372",
  476. 0
  477. ],
  478. "negative": [
  479. "1373",
  480. 0
  481. ],
  482. "latent_image": [
  483. "467",
  484. 0
  485. ],
  486. "denoise": 1
  487. }
  488. },
  489. "473": {
  490. "class_type": "VAEDecode",
  491. "inputs": {
  492. "samples": [
  493. "470",
  494. 0
  495. ],
  496. "vae": [
  497. "469",
  498. 0
  499. ]
  500. }
  501. },
  502. "467": {
  503. "class_type": "EmptySD3LatentImage",
  504. "inputs": {
  505. "width": 1024,
  506. "height": 1024,
  507. "batch_size": 1
  508. }
  509. },
  510. "767": {
  511. "class_type": "EmptySD3LatentImage",
  512. "inputs": {
  513. "width": 1024,
  514. "height": 1024,
  515. "batch_size": 1
  516. }
  517. },
  518. "760": {
  519. "class_type": "VAEDecode",
  520. "inputs": {
  521. "samples": [
  522. "768",
  523. 0
  524. ],
  525. "vae": [
  526. "759",
  527. 0
  528. ]
  529. }
  530. },
  531. "697": {
  532. "class_type": "EmptySD3LatentImage",
  533. "inputs": {
  534. "width": 1024,
  535. "height": 1024,
  536. "batch_size": 1
  537. }
  538. },
  539. "690": {
  540. "class_type": "VAEDecode",
  541. "inputs": {
  542. "samples": [
  543. "698",
  544. 0
  545. ],
  546. "vae": [
  547. "689",
  548. 0
  549. ]
  550. }
  551. },
  552. "698": {
  553. "class_type": "KSampler",
  554. "inputs": {
  555. "model": [
  556. "688",
  557. 0
  558. ],
  559. "seed": 1034973049061638,
  560. "steps": [
  561. "874",
  562. 0
  563. ],
  564. "cfg": [
  565. "875",
  566. 0
  567. ],
  568. "sampler_name": "fixed",
  569. "scheduler": 4,
  570. "positive": [
  571. "1376",
  572. 0
  573. ],
  574. "negative": [
  575. "1377",
  576. 0
  577. ],
  578. "latent_image": [
  579. "697",
  580. 0
  581. ],
  582. "denoise": 1
  583. }
  584. },
  585. "942": {
  586. "class_type": "JoinStringMulti",
  587. "inputs": {
  588. "inputcount": 2,
  589. "string_1": [
  590. "671",
  591. 0
  592. ],
  593. "string_2": [
  594. "671",
  595. 0
  596. ],
  597. "delimiter": "/",
  598. "return_list": false
  599. }
  600. },
  601. "981": {
  602. "class_type": "Label (rgthree)",
  603. "inputs": {}
  604. },
  605. "998": {
  606. "class_type": "JoinStringMulti",
  607. "inputs": {
  608. "inputcount": 2,
  609. "string_1": [
  610. "999",
  611. 0
  612. ],
  613. "string_2": [
  614. "999",
  615. 0
  616. ],
  617. "delimiter": "/",
  618. "return_list": false
  619. }
  620. },
  621. "737": {
  622. "class_type": "EmptySD3LatentImage",
  623. "inputs": {
  624. "width": 1024,
  625. "height": 1024,
  626. "batch_size": 1
  627. }
  628. },
  629. "709": {
  630. "class_type": "EmptySD3LatentImage",
  631. "inputs": {
  632. "width": 1024,
  633. "height": 1024,
  634. "batch_size": 1
  635. }
  636. },
  637. "710": {
  638. "class_type": "KSampler",
  639. "inputs": {
  640. "model": [
  641. "701",
  642. 0
  643. ],
  644. "seed": 1034973049061638,
  645. "steps": [
  646. "876",
  647. 0
  648. ],
  649. "cfg": [
  650. "877",
  651. 0
  652. ],
  653. "sampler_name": "fixed",
  654. "scheduler": 4,
  655. "positive": [
  656. "1380",
  657. 0
  658. ],
  659. "negative": [
  660. "1379",
  661. 0
  662. ],
  663. "latent_image": [
  664. "709",
  665. 0
  666. ],
  667. "denoise": 1
  668. }
  669. },
  670. "703": {
  671. "class_type": "VAEDecode",
  672. "inputs": {
  673. "samples": [
  674. "710",
  675. 0
  676. ],
  677. "vae": [
  678. "702",
  679. 0
  680. ]
  681. }
  682. },
  683. "468": {
  684. "class_type": "GetNode",
  685. "inputs": {}
  686. },
  687. "206": {
  688. "class_type": "GetNode",
  689. "inputs": {}
  690. },
  691. "591": {
  692. "class_type": "GetNode",
  693. "inputs": {}
  694. },
  695. "593": {
  696. "class_type": "JoinStringMulti",
  697. "inputs": {
  698. "inputcount": 2,
  699. "string_1": [
  700. "592",
  701. 0
  702. ],
  703. "string_2": [
  704. "594",
  705. 0
  706. ],
  707. "delimiter": " ",
  708. "return_list": false
  709. }
  710. },
  711. "594": {
  712. "class_type": "GetNode",
  713. "inputs": {}
  714. },
  715. "854": {
  716. "class_type": "GetNode",
  717. "inputs": {}
  718. },
  719. "855": {
  720. "class_type": "GetNode",
  721. "inputs": {}
  722. },
  723. "315": {
  724. "class_type": "ExpressionEditor",
  725. "inputs": {
  726. "rotate_pitch": -12,
  727. "rotate_yaw": -5.6000000000000005,
  728. "rotate_roll": 0,
  729. "blink": 5,
  730. "eyebrow": 15,
  731. "wink": 20,
  732. "pupil_x": 0,
  733. "pupil_y": 0,
  734. "aaa": 0,
  735. "eee": 10.700000000000001,
  736. "woo": 0,
  737. "smile": -0.18,
  738. "src_ratio": 1,
  739. "sample_ratio": 1,
  740. "crop_factor": 1.5,
  741. "src_image": [
  742. "319",
  743. 0
  744. ]
  745. }
  746. },
  747. "318": {
  748. "class_type": "ExpressionEditor",
  749. "inputs": {
  750. "rotate_pitch": 0,
  751. "rotate_yaw": 10,
  752. "rotate_roll": 0,
  753. "blink": -14,
  754. "eyebrow": -10,
  755. "wink": 20,
  756. "pupil_x": 0,
  757. "pupil_y": 0,
  758. "aaa": 0,
  759. "eee": 0,
  760. "woo": 0,
  761. "smile": -0.24,
  762. "src_ratio": 0.4100000000000001,
  763. "sample_ratio": 1,
  764. "crop_factor": 1.5,
  765. "src_image": [
  766. "319",
  767. 0
  768. ]
  769. }
  770. },
  771. "314": {
  772. "class_type": "ExpressionEditor",
  773. "inputs": {
  774. "rotate_pitch": -8,
  775. "rotate_yaw": -9,
  776. "rotate_roll": 0,
  777. "blink": 5,
  778. "eyebrow": 0,
  779. "wink": 20,
  780. "pupil_x": 11.5,
  781. "pupil_y": 7.9,
  782. "aaa": 18.0001220703125,
  783. "eee": 10.700000000000001,
  784. "woo": 0,
  785. "smile": 1.3,
  786. "src_ratio": 1,
  787. "sample_ratio": 1,
  788. "crop_factor": 1.5,
  789. "src_image": [
  790. "319",
  791. 0
  792. ]
  793. }
  794. },
  795. "738": {
  796. "class_type": "KSampler",
  797. "inputs": {
  798. "model": [
  799. "729",
  800. 0
  801. ],
  802. "seed": 1034973049061639,
  803. "steps": [
  804. "878",
  805. 0
  806. ],
  807. "cfg": [
  808. "879",
  809. 0
  810. ],
  811. "sampler_name": "fixed",
  812. "scheduler": 4,
  813. "positive": [
  814. "1381",
  815. 0
  816. ],
  817. "negative": [
  818. "1382",
  819. 0
  820. ],
  821. "latent_image": [
  822. "737",
  823. 0
  824. ],
  825. "denoise": 1
  826. }
  827. },
  828. "608": {
  829. "class_type": "KSampler",
  830. "inputs": {
  831. "model": [
  832. "606",
  833. 0
  834. ],
  835. "seed": 1034973049061637,
  836. "steps": [
  837. "858",
  838. 0
  839. ],
  840. "cfg": [
  841. "859",
  842. 0
  843. ],
  844. "sampler_name": "fixed",
  845. "scheduler": 4,
  846. "positive": [
  847. "1357",
  848. 0
  849. ],
  850. "negative": [
  851. "1359",
  852. 0
  853. ],
  854. "latent_image": [
  855. "605",
  856. 0
  857. ],
  858. "denoise": 1
  859. }
  860. },
  861. "516": {
  862. "class_type": "SetNode",
  863. "inputs": {}
  864. },
  865. "194": {
  866. "class_type": "SetNode",
  867. "inputs": {}
  868. },
  869. "589": {
  870. "class_type": "SetNode",
  871. "inputs": {}
  872. },
  873. "845": {
  874. "class_type": "SetNode",
  875. "inputs": {}
  876. },
  877. "851": {
  878. "class_type": "SetNode",
  879. "inputs": {}
  880. },
  881. "983": {
  882. "class_type": "Label (rgthree)",
  883. "inputs": {}
  884. },
  885. "989": {
  886. "class_type": "Label (rgthree)",
  887. "inputs": {}
  888. },
  889. "923": {
  890. "class_type": "JoinStringMulti",
  891. "inputs": {
  892. "inputcount": 2,
  893. "string_1": [
  894. "695",
  895. 0
  896. ],
  897. "string_2": [
  898. "695",
  899. 0
  900. ],
  901. "delimiter": "/",
  902. "return_list": false
  903. }
  904. },
  905. "367": {
  906. "class_type": "GetNode",
  907. "inputs": {}
  908. },
  909. "213": {
  910. "class_type": "LoadImage",
  911. "inputs": {
  912. "image": "RunComfy_examples_1384_1.png"
  913. }
  914. },
  915. "999": {
  916. "class_type": "GetNode",
  917. "inputs": {}
  918. },
  919. "323": {
  920. "class_type": "Label (rgthree)",
  921. "inputs": {}
  922. },
  923. "1040": {
  924. "class_type": "Label (rgthree)",
  925. "inputs": {}
  926. },
  927. "582": {
  928. "class_type": "Label (rgthree)",
  929. "inputs": {}
  930. },
  931. "369": {
  932. "class_type": "VAEDecode",
  933. "inputs": {
  934. "samples": [
  935. "376",
  936. 0
  937. ],
  938. "vae": [
  939. "372",
  940. 0
  941. ]
  942. }
  943. },
  944. "595": {
  945. "class_type": "StringConstantMultiline",
  946. "inputs": {
  947. "string": "Create a side view of the head showing the characters profile. Keep the proportions, clothes and facial features exactly the same. In front of a white background. Close up of the head. ",
  948. "strip_newlines": true
  949. }
  950. },
  951. "429": {
  952. "class_type": "KSampler",
  953. "inputs": {
  954. "model": [
  955. "427",
  956. 0
  957. ],
  958. "seed": 1034973049061638,
  959. "steps": [
  960. "856",
  961. 0
  962. ],
  963. "cfg": [
  964. "857",
  965. 0
  966. ],
  967. "sampler_name": "fixed",
  968. "scheduler": 4,
  969. "positive": [
  970. "1353",
  971. 0
  972. ],
  973. "negative": [
  974. "1354",
  975. 0
  976. ],
  977. "latent_image": [
  978. "426",
  979. 0
  980. ],
  981. "denoise": 1
  982. }
  983. },
  984. "370": {
  985. "class_type": "EmptySD3LatentImage",
  986. "inputs": {
  987. "width": 1024,
  988. "height": 1024,
  989. "batch_size": 1
  990. }
  991. },
  992. "432": {
  993. "class_type": "SetNode",
  994. "inputs": {}
  995. },
  996. "487": {
  997. "class_type": "SaveImage",
  998. "inputs": {
  999. "images": [
  1000. "486",
  1001. 0
  1002. ],
  1003. "filename_prefix": [
  1004. "942",
  1005. 0
  1006. ]
  1007. }
  1008. },
  1009. "1117": {
  1010. "class_type": "SaveImage",
  1011. "inputs": {
  1012. "images": [
  1013. "1122",
  1014. 0
  1015. ],
  1016. "filename_prefix": [
  1017. "1128",
  1018. 0
  1019. ]
  1020. }
  1021. },
  1022. "1122": {
  1023. "class_type": "VAEDecode",
  1024. "inputs": {
  1025. "samples": [
  1026. "1127",
  1027. 0
  1028. ],
  1029. "vae": [
  1030. "1120",
  1031. 0
  1032. ]
  1033. }
  1034. },
  1035. "1125": {
  1036. "class_type": "EmptySD3LatentImage",
  1037. "inputs": {
  1038. "width": 1024,
  1039. "height": 1024,
  1040. "batch_size": 1
  1041. }
  1042. },
  1043. "372": {
  1044. "class_type": "GetNode",
  1045. "inputs": {}
  1046. },
  1047. "913": {
  1048. "class_type": "JoinStringMulti",
  1049. "inputs": {
  1050. "inputcount": 2,
  1051. "string_1": [
  1052. "591",
  1053. 0
  1054. ],
  1055. "string_2": [
  1056. "591",
  1057. 0
  1058. ],
  1059. "delimiter": "/",
  1060. "return_list": false
  1061. }
  1062. },
  1063. "616": {
  1064. "class_type": "StringConstantMultiline",
  1065. "inputs": {
  1066. "string": "Create an over the shoulder view. Back of the characters head looking away from the camera. In front of a white background.",
  1067. "strip_newlines": true
  1068. }
  1069. },
  1070. "469": {
  1071. "class_type": "GetNode",
  1072. "inputs": {}
  1073. },
  1074. "190": {
  1075. "class_type": "SetNode",
  1076. "inputs": {}
  1077. },
  1078. "768": {
  1079. "class_type": "KSampler",
  1080. "inputs": {
  1081. "model": [
  1082. "758",
  1083. 0
  1084. ],
  1085. "seed": 1034973049061639,
  1086. "steps": [
  1087. "872",
  1088. 0
  1089. ],
  1090. "cfg": [
  1091. "873",
  1092. 0
  1093. ],
  1094. "sampler_name": "fixed",
  1095. "scheduler": 4,
  1096. "positive": [
  1097. "1374",
  1098. 0
  1099. ],
  1100. "negative": [
  1101. "1375",
  1102. 0
  1103. ],
  1104. "latent_image": [
  1105. "767",
  1106. 0
  1107. ],
  1108. "denoise": 1
  1109. }
  1110. },
  1111. "730": {
  1112. "class_type": "GetNode",
  1113. "inputs": {}
  1114. },
  1115. "636": {
  1116. "class_type": "GetNode",
  1117. "inputs": {}
  1118. },
  1119. "1248": {
  1120. "class_type": "SaveImage",
  1121. "inputs": {
  1122. "images": [
  1123. "1250",
  1124. 0
  1125. ],
  1126. "filename_prefix": [
  1127. "1256",
  1128. 0
  1129. ]
  1130. }
  1131. },
  1132. "1250": {
  1133. "class_type": "VAEDecode",
  1134. "inputs": {
  1135. "samples": [
  1136. "1253",
  1137. 0
  1138. ],
  1139. "vae": [
  1140. "1260",
  1141. 0
  1142. ]
  1143. }
  1144. },
  1145. "1252": {
  1146. "class_type": "EmptySD3LatentImage",
  1147. "inputs": {
  1148. "width": 1024,
  1149. "height": 1024,
  1150. "batch_size": 1
  1151. }
  1152. },
  1153. "1262": {
  1154. "class_type": "SetNode",
  1155. "inputs": {}
  1156. },
  1157. "202": {
  1158. "class_type": "GetNode",
  1159. "inputs": {}
  1160. },
  1161. "513": {
  1162. "class_type": "JoinStringMulti",
  1163. "inputs": {
  1164. "inputcount": 2,
  1165. "string_1": [
  1166. "514",
  1167. 0
  1168. ],
  1169. "string_2": [
  1170. "517",
  1171. 0
  1172. ],
  1173. "delimiter": " ",
  1174. "return_list": false
  1175. }
  1176. },
  1177. "374": {
  1178. "class_type": "FluxKontextImageScale",
  1179. "inputs": {
  1180. "image": [
  1181. "373",
  1182. 0
  1183. ]
  1184. }
  1185. },
  1186. "1114": {
  1187. "class_type": "CFGNorm",
  1188. "inputs": {
  1189. "model": [
  1190. "1115",
  1191. 0
  1192. ],
  1193. "strength": 1
  1194. }
  1195. },
  1196. "1115": {
  1197. "class_type": "ModelSamplingAuraFlow",
  1198. "inputs": {
  1199. "model": [
  1200. "546",
  1201. 0
  1202. ],
  1203. "shift": 3
  1204. }
  1205. },
  1206. "1200": {
  1207. "class_type": "FluxKontextImageScale",
  1208. "inputs": {
  1209. "image": [
  1210. "203",
  1211. 0
  1212. ]
  1213. }
  1214. },
  1215. "517": {
  1216. "class_type": "GetNode",
  1217. "inputs": {}
  1218. },
  1219. "590": {
  1220. "class_type": "GetNode",
  1221. "inputs": {}
  1222. },
  1223. "846": {
  1224. "class_type": "GetNode",
  1225. "inputs": {}
  1226. },
  1227. "853": {
  1228. "class_type": "GetNode",
  1229. "inputs": {}
  1230. },
  1231. "911": {
  1232. "class_type": "JoinStringMulti",
  1233. "inputs": {
  1234. "inputcount": 2,
  1235. "string_1": [
  1236. "590",
  1237. 0
  1238. ],
  1239. "string_2": [
  1240. "590",
  1241. 0
  1242. ],
  1243. "delimiter": "/",
  1244. "return_list": false
  1245. }
  1246. },
  1247. "203": {
  1248. "class_type": "GetNode",
  1249. "inputs": {}
  1250. },
  1251. "428": {
  1252. "class_type": "GetNode",
  1253. "inputs": {}
  1254. },
  1255. "427": {
  1256. "class_type": "GetNode",
  1257. "inputs": {}
  1258. },
  1259. "430": {
  1260. "class_type": "FluxKontextImageScale",
  1261. "inputs": {
  1262. "image": [
  1263. "425",
  1264. 0
  1265. ]
  1266. }
  1267. },
  1268. "596": {
  1269. "class_type": "JoinStringMulti",
  1270. "inputs": {
  1271. "inputcount": 2,
  1272. "string_1": [
  1273. "595",
  1274. 0
  1275. ],
  1276. "string_2": [
  1277. "597",
  1278. 0
  1279. ],
  1280. "delimiter": " ",
  1281. "return_list": false
  1282. }
  1283. },
  1284. "597": {
  1285. "class_type": "GetNode",
  1286. "inputs": {}
  1287. },
  1288. "662": {
  1289. "class_type": "GetNode",
  1290. "inputs": {}
  1291. },
  1292. "856": {
  1293. "class_type": "GetNode",
  1294. "inputs": {}
  1295. },
  1296. "857": {
  1297. "class_type": "GetNode",
  1298. "inputs": {}
  1299. },
  1300. "914": {
  1301. "class_type": "JoinStringMulti",
  1302. "inputs": {
  1303. "inputcount": 2,
  1304. "string_1": [
  1305. "662",
  1306. 0
  1307. ],
  1308. "string_2": [
  1309. "662",
  1310. 0
  1311. ],
  1312. "delimiter": "/",
  1313. "return_list": false
  1314. }
  1315. },
  1316. "425": {
  1317. "class_type": "GetNode",
  1318. "inputs": {}
  1319. },
  1320. "607": {
  1321. "class_type": "GetNode",
  1322. "inputs": {}
  1323. },
  1324. "606": {
  1325. "class_type": "GetNode",
  1326. "inputs": {}
  1327. },
  1328. "609": {
  1329. "class_type": "FluxKontextImageScale",
  1330. "inputs": {
  1331. "image": [
  1332. "604",
  1333. 0
  1334. ]
  1335. }
  1336. },
  1337. "613": {
  1338. "class_type": "JoinStringMulti",
  1339. "inputs": {
  1340. "inputcount": 2,
  1341. "string_1": [
  1342. "616",
  1343. 0
  1344. ],
  1345. "string_2": [
  1346. "614",
  1347. 0
  1348. ],
  1349. "delimiter": " ",
  1350. "return_list": false
  1351. }
  1352. },
  1353. "614": {
  1354. "class_type": "GetNode",
  1355. "inputs": {}
  1356. },
  1357. "663": {
  1358. "class_type": "GetNode",
  1359. "inputs": {}
  1360. },
  1361. "858": {
  1362. "class_type": "GetNode",
  1363. "inputs": {}
  1364. },
  1365. "859": {
  1366. "class_type": "GetNode",
  1367. "inputs": {}
  1368. },
  1369. "915": {
  1370. "class_type": "JoinStringMulti",
  1371. "inputs": {
  1372. "inputcount": 2,
  1373. "string_1": [
  1374. "663",
  1375. 0
  1376. ],
  1377. "string_2": [
  1378. "663",
  1379. 0
  1380. ],
  1381. "delimiter": "/",
  1382. "return_list": false
  1383. }
  1384. },
  1385. "604": {
  1386. "class_type": "GetNode",
  1387. "inputs": {}
  1388. },
  1389. "1260": {
  1390. "class_type": "GetNode",
  1391. "inputs": {}
  1392. },
  1393. "1249": {
  1394. "class_type": "GetNode",
  1395. "inputs": {}
  1396. },
  1397. "1258": {
  1398. "class_type": "FluxKontextImageScale",
  1399. "inputs": {
  1400. "image": [
  1401. "1259",
  1402. 0
  1403. ]
  1404. }
  1405. },
  1406. "1257": {
  1407. "class_type": "GetNode",
  1408. "inputs": {}
  1409. },
  1410. "1254": {
  1411. "class_type": "GetNode",
  1412. "inputs": {}
  1413. },
  1414. "1251": {
  1415. "class_type": "GetNode",
  1416. "inputs": {}
  1417. },
  1418. "1256": {
  1419. "class_type": "JoinStringMulti",
  1420. "inputs": {
  1421. "inputcount": 2,
  1422. "string_1": [
  1423. "1257",
  1424. 0
  1425. ],
  1426. "string_2": [
  1427. "1257",
  1428. 0
  1429. ],
  1430. "delimiter": "/",
  1431. "return_list": false
  1432. }
  1433. },
  1434. "1259": {
  1435. "class_type": "GetNode",
  1436. "inputs": {}
  1437. },
  1438. "638": {
  1439. "class_type": "FluxKontextImageScale",
  1440. "inputs": {
  1441. "image": [
  1442. "633",
  1443. 0
  1444. ]
  1445. }
  1446. },
  1447. "642": {
  1448. "class_type": "JoinStringMulti",
  1449. "inputs": {
  1450. "inputcount": 2,
  1451. "string_1": [
  1452. "646",
  1453. 0
  1454. ],
  1455. "string_2": [
  1456. "643",
  1457. 0
  1458. ],
  1459. "delimiter": " ",
  1460. "return_list": false
  1461. }
  1462. },
  1463. "643": {
  1464. "class_type": "GetNode",
  1465. "inputs": {}
  1466. },
  1467. "665": {
  1468. "class_type": "GetNode",
  1469. "inputs": {}
  1470. },
  1471. "862": {
  1472. "class_type": "GetNode",
  1473. "inputs": {}
  1474. },
  1475. "863": {
  1476. "class_type": "GetNode",
  1477. "inputs": {}
  1478. },
  1479. "917": {
  1480. "class_type": "JoinStringMulti",
  1481. "inputs": {
  1482. "inputcount": 2,
  1483. "string_1": [
  1484. "665",
  1485. 0
  1486. ],
  1487. "string_2": [
  1488. "665",
  1489. 0
  1490. ],
  1491. "delimiter": "/",
  1492. "return_list": false
  1493. }
  1494. },
  1495. "633": {
  1496. "class_type": "GetNode",
  1497. "inputs": {}
  1498. },
  1499. "658": {
  1500. "class_type": "GetNode",
  1501. "inputs": {}
  1502. },
  1503. "666": {
  1504. "class_type": "GetNode",
  1505. "inputs": {}
  1506. },
  1507. "864": {
  1508. "class_type": "GetNode",
  1509. "inputs": {}
  1510. },
  1511. "865": {
  1512. "class_type": "GetNode",
  1513. "inputs": {}
  1514. },
  1515. "918": {
  1516. "class_type": "JoinStringMulti",
  1517. "inputs": {
  1518. "inputcount": 2,
  1519. "string_1": [
  1520. "666",
  1521. 0
  1522. ],
  1523. "string_2": [
  1524. "666",
  1525. 0
  1526. ],
  1527. "delimiter": "/",
  1528. "return_list": false
  1529. }
  1530. },
  1531. "1207": {
  1532. "class_type": "FluxKontextImageScale",
  1533. "inputs": {
  1534. "image": [
  1535. "1030",
  1536. 0
  1537. ]
  1538. }
  1539. },
  1540. "1048": {
  1541. "class_type": "Label (rgthree)",
  1542. "inputs": {}
  1543. },
  1544. "458": {
  1545. "class_type": "GetNode",
  1546. "inputs": {}
  1547. },
  1548. "457": {
  1549. "class_type": "GetNode",
  1550. "inputs": {}
  1551. },
  1552. "460": {
  1553. "class_type": "FluxKontextImageScale",
  1554. "inputs": {
  1555. "image": [
  1556. "455",
  1557. 0
  1558. ]
  1559. }
  1560. },
  1561. "669": {
  1562. "class_type": "GetNode",
  1563. "inputs": {}
  1564. },
  1565. "867": {
  1566. "class_type": "GetNode",
  1567. "inputs": {}
  1568. },
  1569. "866": {
  1570. "class_type": "GetNode",
  1571. "inputs": {}
  1572. },
  1573. "455": {
  1574. "class_type": "GetNode",
  1575. "inputs": {}
  1576. },
  1577. "1118": {
  1578. "class_type": "GetNode",
  1579. "inputs": {}
  1580. },
  1581. "1120": {
  1582. "class_type": "GetNode",
  1583. "inputs": {}
  1584. },
  1585. "1119": {
  1586. "class_type": "GetNode",
  1587. "inputs": {}
  1588. },
  1589. "1121": {
  1590. "class_type": "FluxKontextImageScale",
  1591. "inputs": {
  1592. "image": [
  1593. "1130",
  1594. 0
  1595. ]
  1596. }
  1597. },
  1598. "1226": {
  1599. "class_type": "FluxKontextImageScale",
  1600. "inputs": {
  1601. "image": [
  1602. "1131",
  1603. 0
  1604. ]
  1605. }
  1606. },
  1607. "1129": {
  1608. "class_type": "GetNode",
  1609. "inputs": {}
  1610. },
  1611. "1123": {
  1612. "class_type": "GetNode",
  1613. "inputs": {}
  1614. },
  1615. "1124": {
  1616. "class_type": "GetNode",
  1617. "inputs": {}
  1618. },
  1619. "1128": {
  1620. "class_type": "JoinStringMulti",
  1621. "inputs": {
  1622. "inputcount": 2,
  1623. "string_1": [
  1624. "1129",
  1625. 0
  1626. ],
  1627. "string_2": [
  1628. "1129",
  1629. 0
  1630. ],
  1631. "delimiter": "/",
  1632. "return_list": false
  1633. }
  1634. },
  1635. "1131": {
  1636. "class_type": "GetNode",
  1637. "inputs": {}
  1638. },
  1639. "667": {
  1640. "class_type": "GetNode",
  1641. "inputs": {}
  1642. },
  1643. "870": {
  1644. "class_type": "GetNode",
  1645. "inputs": {}
  1646. },
  1647. "871": {
  1648. "class_type": "GetNode",
  1649. "inputs": {}
  1650. },
  1651. "921": {
  1652. "class_type": "JoinStringMulti",
  1653. "inputs": {
  1654. "inputcount": 2,
  1655. "string_1": [
  1656. "667",
  1657. 0
  1658. ],
  1659. "string_2": [
  1660. "667",
  1661. 0
  1662. ],
  1663. "delimiter": "/",
  1664. "return_list": false
  1665. }
  1666. },
  1667. "759": {
  1668. "class_type": "GetNode",
  1669. "inputs": {}
  1670. },
  1671. "758": {
  1672. "class_type": "GetNode",
  1673. "inputs": {}
  1674. },
  1675. "1265": {
  1676. "class_type": "FluxKontextImageScale",
  1677. "inputs": {
  1678. "image": [
  1679. "761",
  1680. 0
  1681. ]
  1682. }
  1683. },
  1684. "1214": {
  1685. "class_type": "FluxKontextImageScale",
  1686. "inputs": {
  1687. "image": [
  1688. "769",
  1689. 0
  1690. ]
  1691. }
  1692. },
  1693. "763": {
  1694. "class_type": "FluxKontextImageScale",
  1695. "inputs": {
  1696. "image": [
  1697. "762",
  1698. 0
  1699. ]
  1700. }
  1701. },
  1702. "873": {
  1703. "class_type": "GetNode",
  1704. "inputs": {}
  1705. },
  1706. "872": {
  1707. "class_type": "GetNode",
  1708. "inputs": {}
  1709. },
  1710. "922": {
  1711. "class_type": "JoinStringMulti",
  1712. "inputs": {
  1713. "inputcount": 2,
  1714. "string_1": [
  1715. "765",
  1716. 0
  1717. ],
  1718. "string_2": [
  1719. "765",
  1720. 0
  1721. ],
  1722. "delimiter": "/",
  1723. "return_list": false
  1724. }
  1725. },
  1726. "765": {
  1727. "class_type": "GetNode",
  1728. "inputs": {}
  1729. },
  1730. "1280": {
  1731. "class_type": "SetNode",
  1732. "inputs": {}
  1733. },
  1734. "319": {
  1735. "class_type": "GetNode",
  1736. "inputs": {}
  1737. },
  1738. "1277": {
  1739. "class_type": "SetNode",
  1740. "inputs": {}
  1741. },
  1742. "1271": {
  1743. "class_type": "SetNode",
  1744. "inputs": {}
  1745. },
  1746. "943": {
  1747. "class_type": "PrimitiveInt",
  1748. "inputs": {
  1749. "value": 2048
  1750. }
  1751. },
  1752. "1273": {
  1753. "class_type": "SetNode",
  1754. "inputs": {}
  1755. },
  1756. "1267": {
  1757. "class_type": "SetNode",
  1758. "inputs": {}
  1759. },
  1760. "1174": {
  1761. "class_type": "UpscaleModelLoader",
  1762. "inputs": {
  1763. "model_name": "4x-UltraSharp.pth"
  1764. }
  1765. },
  1766. "1268": {
  1767. "class_type": "SetNode",
  1768. "inputs": {}
  1769. },
  1770. "1195": {
  1771. "class_type": "ModelPatchLoader",
  1772. "inputs": {
  1773. "name": "uso-flux1-projector-v1.safetensors"
  1774. }
  1775. },
  1776. "1269": {
  1777. "class_type": "SetNode",
  1778. "inputs": {}
  1779. },
  1780. "1270": {
  1781. "class_type": "SetNode",
  1782. "inputs": {}
  1783. },
  1784. "657": {
  1785. "class_type": "JoinStringMulti",
  1786. "inputs": {
  1787. "inputcount": 2,
  1788. "string_1": [
  1789. "661",
  1790. 0
  1791. ],
  1792. "string_2": [
  1793. "658",
  1794. 0
  1795. ],
  1796. "delimiter": " ",
  1797. "return_list": false
  1798. }
  1799. },
  1800. "360": {
  1801. "class_type": "VAELoader",
  1802. "inputs": {
  1803. "vae_name": "qwen_image_vae.safetensors"
  1804. }
  1805. },
  1806. "946": {
  1807. "class_type": "DownloadAndLoadFlorence2Model",
  1808. "inputs": {
  1809. "model": "gokaygokay/Florence-2-Flux-Large",
  1810. "precision": "fp16",
  1811. "attention": "sdpa",
  1812. "lora": false
  1813. }
  1814. },
  1815. "819": {
  1816. "class_type": "CheckpointLoaderSimple",
  1817. "inputs": {
  1818. "ckpt_name": "flux/flux1-dev-fp8.safetensors"
  1819. }
  1820. },
  1821. "1196": {
  1822. "class_type": "CLIPVisionLoader",
  1823. "inputs": {
  1824. "clip_name": "sigclip_vision_patch14_384.safetensors"
  1825. }
  1826. },
  1827. "579": {
  1828. "class_type": "Label (rgthree)",
  1829. "inputs": {}
  1830. },
  1831. "1284": {
  1832. "class_type": "Label (rgthree)",
  1833. "inputs": {}
  1834. },
  1835. "1289": {
  1836. "class_type": "Label (rgthree)",
  1837. "inputs": {}
  1838. },
  1839. "1041": {
  1840. "class_type": "Label (rgthree)",
  1841. "inputs": {}
  1842. },
  1843. "1287": {
  1844. "class_type": "Label (rgthree)",
  1845. "inputs": {}
  1846. },
  1847. "1288": {
  1848. "class_type": "MarkdownNote",
  1849. "inputs": {}
  1850. },
  1851. "1290": {
  1852. "class_type": "Label (rgthree)",
  1853. "inputs": {}
  1854. },
  1855. "1291": {
  1856. "class_type": "MarkdownNote",
  1857. "inputs": {}
  1858. },
  1859. "1292": {
  1860. "class_type": "Label (rgthree)",
  1861. "inputs": {}
  1862. },
  1863. "1293": {
  1864. "class_type": "MarkdownNote",
  1865. "inputs": {}
  1866. },
  1867. "486": {
  1868. "class_type": "ExpressionEditor",
  1869. "inputs": {
  1870. "rotate_pitch": -14,
  1871. "rotate_yaw": -12.1,
  1872. "rotate_roll": 0,
  1873. "blink": -3.5,
  1874. "eyebrow": 0,
  1875. "wink": 0,
  1876. "pupil_x": 0.1,
  1877. "pupil_y": 0,
  1878. "aaa": 0,
  1879. "eee": 0,
  1880. "woo": 0,
  1881. "smile": -0.3,
  1882. "src_ratio": 1,
  1883. "sample_ratio": 1,
  1884. "crop_factor": 1.5,
  1885. "src_image": [
  1886. "319",
  1887. 0
  1888. ]
  1889. }
  1890. },
  1891. "1055": {
  1892. "class_type": "Label (rgthree)",
  1893. "inputs": {}
  1894. },
  1895. "1046": {
  1896. "class_type": "Label (rgthree)",
  1897. "inputs": {}
  1898. },
  1899. "652": {
  1900. "class_type": "KSampler",
  1901. "inputs": {
  1902. "model": [
  1903. "650",
  1904. 0
  1905. ],
  1906. "seed": 1034973049061634,
  1907. "steps": [
  1908. "864",
  1909. 0
  1910. ],
  1911. "cfg": [
  1912. "865",
  1913. 0
  1914. ],
  1915. "sampler_name": "fixed",
  1916. "scheduler": 4,
  1917. "positive": [
  1918. "1365",
  1919. 0
  1920. ],
  1921. "negative": [
  1922. "1364",
  1923. 0
  1924. ],
  1925. "latent_image": [
  1926. "538",
  1927. 0
  1928. ],
  1929. "denoise": 1
  1930. }
  1931. },
  1932. "208": {
  1933. "class_type": "SaveImage",
  1934. "inputs": {
  1935. "images": [
  1936. "207",
  1937. 0
  1938. ],
  1939. "filename_prefix": [
  1940. "911",
  1941. 0
  1942. ]
  1943. }
  1944. },
  1945. "1298": {
  1946. "class_type": "SaveImage",
  1947. "inputs": {
  1948. "images": [
  1949. "1299",
  1950. 0
  1951. ],
  1952. "filename_prefix": [
  1953. "1312",
  1954. 0
  1955. ]
  1956. }
  1957. },
  1958. "1299": {
  1959. "class_type": "VAEDecode",
  1960. "inputs": {
  1961. "samples": [
  1962. "1302",
  1963. 0
  1964. ],
  1965. "vae": [
  1966. "1305",
  1967. 0
  1968. ]
  1969. }
  1970. },
  1971. "1300": {
  1972. "class_type": "EmptySD3LatentImage",
  1973. "inputs": {
  1974. "width": 1024,
  1975. "height": 1024,
  1976. "batch_size": 1
  1977. }
  1978. },
  1979. "1302": {
  1980. "class_type": "KSampler",
  1981. "inputs": {
  1982. "model": [
  1983. "1306",
  1984. 0
  1985. ],
  1986. "seed": 1034973049061637,
  1987. "steps": [
  1988. "1310",
  1989. 0
  1990. ],
  1991. "cfg": [
  1992. "1311",
  1993. 0
  1994. ],
  1995. "sampler_name": "fixed",
  1996. "scheduler": 4,
  1997. "positive": [
  1998. "1370",
  1999. 0
  2000. ],
  2001. "negative": [
  2002. "1371",
  2003. 0
  2004. ],
  2005. "latent_image": [
  2006. "1300",
  2007. 0
  2008. ],
  2009. "denoise": 1
  2010. }
  2011. },
  2012. "1304": {
  2013. "class_type": "GetNode",
  2014. "inputs": {}
  2015. },
  2016. "1305": {
  2017. "class_type": "GetNode",
  2018. "inputs": {}
  2019. },
  2020. "1306": {
  2021. "class_type": "GetNode",
  2022. "inputs": {}
  2023. },
  2024. "1307": {
  2025. "class_type": "FluxKontextImageScale",
  2026. "inputs": {
  2027. "image": [
  2028. "1313",
  2029. 0
  2030. ]
  2031. }
  2032. },
  2033. "1308": {
  2034. "class_type": "FluxKontextImageScale",
  2035. "inputs": {
  2036. "image": [
  2037. "1314",
  2038. 0
  2039. ]
  2040. }
  2041. },
  2042. "1309": {
  2043. "class_type": "GetNode",
  2044. "inputs": {}
  2045. },
  2046. "1310": {
  2047. "class_type": "GetNode",
  2048. "inputs": {}
  2049. },
  2050. "1311": {
  2051. "class_type": "GetNode",
  2052. "inputs": {}
  2053. },
  2054. "1312": {
  2055. "class_type": "JoinStringMulti",
  2056. "inputs": {
  2057. "inputcount": 2,
  2058. "string_1": [
  2059. "1309",
  2060. 0
  2061. ],
  2062. "string_2": [
  2063. "1309",
  2064. 0
  2065. ],
  2066. "delimiter": "/",
  2067. "return_list": false
  2068. }
  2069. },
  2070. "1313": {
  2071. "class_type": "GetNode",
  2072. "inputs": {}
  2073. },
  2074. "1156": {
  2075. "class_type": "LoraLoaderModelOnly",
  2076. "inputs": {
  2077. "model": [
  2078. "819",
  2079. 0
  2080. ],
  2081. "lora_name": "uso-flux1-dit-lora-v1.safetensors",
  2082. "strength_model": 0.9
  2083. }
  2084. },
  2085. "1295": {
  2086. "class_type": "MarkdownNote",
  2087. "inputs": {}
  2088. },
  2089. "1294": {
  2090. "class_type": "Label (rgthree)",
  2091. "inputs": {}
  2092. },
  2093. "1321": {
  2094. "class_type": "Label (rgthree)",
  2095. "inputs": {}
  2096. },
  2097. "1320": {
  2098. "class_type": "MarkdownNote",
  2099. "inputs": {}
  2100. },
  2101. "320": {
  2102. "class_type": "Label (rgthree)",
  2103. "inputs": {}
  2104. },
  2105. "997": {
  2106. "class_type": "SaveImage",
  2107. "inputs": {
  2108. "images": [
  2109. "213",
  2110. 0
  2111. ],
  2112. "filename_prefix": [
  2113. "998",
  2114. 0
  2115. ]
  2116. }
  2117. },
  2118. "462": {
  2119. "class_type": "SetNode",
  2120. "inputs": {}
  2121. },
  2122. "1126": {
  2123. "class_type": "SetNode",
  2124. "inputs": {}
  2125. },
  2126. "1301": {
  2127. "class_type": "SetNode",
  2128. "inputs": {}
  2129. },
  2130. "671": {
  2131. "class_type": "GetNode",
  2132. "inputs": {}
  2133. },
  2134. "764": {
  2135. "class_type": "SetNode",
  2136. "inputs": {}
  2137. },
  2138. "694": {
  2139. "class_type": "SetNode",
  2140. "inputs": {}
  2141. },
  2142. "707": {
  2143. "class_type": "SetNode",
  2144. "inputs": {}
  2145. },
  2146. "735": {
  2147. "class_type": "SetNode",
  2148. "inputs": {}
  2149. },
  2150. "1296": {
  2151. "class_type": "Label (rgthree)",
  2152. "inputs": {}
  2153. },
  2154. "1297": {
  2155. "class_type": "Label (rgthree)",
  2156. "inputs": {}
  2157. },
  2158. "592": {
  2159. "class_type": "StringConstantMultiline",
  2160. "inputs": {
  2161. "string": "create a candid close up of the characters face with a neutral expression and neutral lighting. Frontal view looking into the camera. The character is in front of a white background. Keep the proportions and facial features exactly the same. ",
  2162. "strip_newlines": true
  2163. }
  2164. },
  2165. "199": {
  2166. "class_type": "KSampler",
  2167. "inputs": {
  2168. "model": [
  2169. "206",
  2170. 0
  2171. ],
  2172. "seed": 1034973049061647,
  2173. "steps": [
  2174. "846",
  2175. 0
  2176. ],
  2177. "cfg": [
  2178. "853",
  2179. 0
  2180. ],
  2181. "sampler_name": "fixed",
  2182. "scheduler": 20,
  2183. "positive": [
  2184. "1356",
  2185. 0
  2186. ],
  2187. "negative": [
  2188. "1355",
  2189. 0
  2190. ],
  2191. "latent_image": [
  2192. "200",
  2193. 0
  2194. ],
  2195. "denoise": 2.5
  2196. }
  2197. },
  2198. "1253": {
  2199. "class_type": "KSampler",
  2200. "inputs": {
  2201. "model": [
  2202. "1249",
  2203. 0
  2204. ],
  2205. "seed": 1034973049061637,
  2206. "steps": [
  2207. "1254",
  2208. 0
  2209. ],
  2210. "cfg": [
  2211. "1251",
  2212. 0
  2213. ],
  2214. "sampler_name": "fixed",
  2215. "scheduler": 4,
  2216. "positive": [
  2217. "1360",
  2218. 0
  2219. ],
  2220. "negative": [
  2221. "1361",
  2222. 0
  2223. ],
  2224. "latent_image": [
  2225. "1252",
  2226. 0
  2227. ],
  2228. "denoise": 1
  2229. }
  2230. },
  2231. "637": {
  2232. "class_type": "KSampler",
  2233. "inputs": {
  2234. "model": [
  2235. "635",
  2236. 0
  2237. ],
  2238. "seed": 1034973049061639,
  2239. "steps": [
  2240. "862",
  2241. 0
  2242. ],
  2243. "cfg": [
  2244. "863",
  2245. 0
  2246. ],
  2247. "sampler_name": "fixed",
  2248. "scheduler": 4,
  2249. "positive": [
  2250. "1362",
  2251. 0
  2252. ],
  2253. "negative": [
  2254. "1363",
  2255. 0
  2256. ],
  2257. "latent_image": [
  2258. "634",
  2259. 0
  2260. ],
  2261. "denoise": 1
  2262. }
  2263. },
  2264. "515": {
  2265. "class_type": "StringConstantMultiline",
  2266. "inputs": {
  2267. "string": "Create an image of this exact character in this style. ",
  2268. "strip_newlines": true
  2269. }
  2270. },
  2271. "373": {
  2272. "class_type": "GetNode",
  2273. "inputs": {}
  2274. },
  2275. "368": {
  2276. "class_type": "SaveImage",
  2277. "inputs": {
  2278. "images": [
  2279. "369",
  2280. 0
  2281. ],
  2282. "filename_prefix": [
  2283. "913",
  2284. 0
  2285. ]
  2286. }
  2287. },
  2288. "1202": {
  2289. "class_type": "TextEncodeQwenImageEditPlus",
  2290. "inputs": {
  2291. "clip": [
  2292. "424",
  2293. 0
  2294. ],
  2295. "prompt": [
  2296. "596",
  2297. 0
  2298. ],
  2299. "vae": [
  2300. "428",
  2301. 0
  2302. ],
  2303. "image1": [
  2304. "430",
  2305. 0
  2306. ],
  2307. "image2": ""
  2308. }
  2309. },
  2310. "1201": {
  2311. "class_type": "TextEncodeQwenImageEditPlus",
  2312. "inputs": {
  2313. "clip": [
  2314. "371",
  2315. 0
  2316. ],
  2317. "prompt": [
  2318. "592",
  2319. 0
  2320. ],
  2321. "vae": [
  2322. "372",
  2323. 0
  2324. ],
  2325. "image1": [
  2326. "374",
  2327. 0
  2328. ],
  2329. "image2": ""
  2330. }
  2331. },
  2332. "376": {
  2333. "class_type": "KSampler",
  2334. "inputs": {
  2335. "model": [
  2336. "367",
  2337. 0
  2338. ],
  2339. "seed": 1034973049061636,
  2340. "steps": [
  2341. "854",
  2342. 0
  2343. ],
  2344. "cfg": [
  2345. "855",
  2346. 0
  2347. ],
  2348. "sampler_name": "fixed",
  2349. "scheduler": 20,
  2350. "positive": [
  2351. "1351",
  2352. 0
  2353. ],
  2354. "negative": [
  2355. "1352",
  2356. 0
  2357. ],
  2358. "latent_image": [
  2359. "370",
  2360. 0
  2361. ],
  2362. "denoise": 1
  2363. }
  2364. },
  2365. "1199": {
  2366. "class_type": "TextEncodeQwenImageEditPlus",
  2367. "inputs": {
  2368. "clip": [
  2369. "193",
  2370. 0
  2371. ],
  2372. "prompt": [
  2373. "513",
  2374. 0
  2375. ],
  2376. "vae": [
  2377. "202",
  2378. 0
  2379. ],
  2380. "image1": [
  2381. "1200",
  2382. 0
  2383. ],
  2384. "image2": ""
  2385. }
  2386. },
  2387. "193": {
  2388. "class_type": "GetNode",
  2389. "inputs": {}
  2390. },
  2391. "1356": {
  2392. "class_type": "FluxKontextMultiReferenceLatentMethod",
  2393. "inputs": {
  2394. "conditioning": [
  2395. "1199",
  2396. 0
  2397. ],
  2398. "reference_latents_method": "index_timestep_zero"
  2399. }
  2400. },
  2401. "1355": {
  2402. "class_type": "ConditioningZeroOut",
  2403. "inputs": {
  2404. "conditioning": [
  2405. "1199",
  2406. 0
  2407. ]
  2408. }
  2409. },
  2410. "371": {
  2411. "class_type": "GetNode",
  2412. "inputs": {}
  2413. },
  2414. "424": {
  2415. "class_type": "GetNode",
  2416. "inputs": {}
  2417. },
  2418. "1351": {
  2419. "class_type": "FluxKontextMultiReferenceLatentMethod",
  2420. "inputs": {
  2421. "conditioning": [
  2422. "1201",
  2423. 0
  2424. ],
  2425. "reference_latents_method": "index_timestep_zero"
  2426. }
  2427. },
  2428. "1352": {
  2429. "class_type": "ConditioningZeroOut",
  2430. "inputs": {
  2431. "conditioning": [
  2432. "1201",
  2433. 0
  2434. ]
  2435. }
  2436. },
  2437. "1353": {
  2438. "class_type": "FluxKontextMultiReferenceLatentMethod",
  2439. "inputs": {
  2440. "conditioning": [
  2441. "1202",
  2442. 0
  2443. ],
  2444. "reference_latents_method": "index_timestep_zero"
  2445. }
  2446. },
  2447. "1354": {
  2448. "class_type": "ConditioningZeroOut",
  2449. "inputs": {
  2450. "conditioning": [
  2451. "1202",
  2452. 0
  2453. ]
  2454. }
  2455. },
  2456. "1203": {
  2457. "class_type": "TextEncodeQwenImageEditPlus",
  2458. "inputs": {
  2459. "clip": [
  2460. "603",
  2461. 0
  2462. ],
  2463. "prompt": [
  2464. "613",
  2465. 0
  2466. ],
  2467. "vae": [
  2468. "607",
  2469. 0
  2470. ],
  2471. "image1": [
  2472. "609",
  2473. 0
  2474. ],
  2475. "image2": ""
  2476. }
  2477. },
  2478. "1357": {
  2479. "class_type": "FluxKontextMultiReferenceLatentMethod",
  2480. "inputs": {
  2481. "conditioning": [
  2482. "1203",
  2483. 0
  2484. ],
  2485. "reference_latents_method": "index_timestep_zero"
  2486. }
  2487. },
  2488. "1359": {
  2489. "class_type": "ConditioningZeroOut",
  2490. "inputs": {
  2491. "conditioning": [
  2492. "1203",
  2493. 0
  2494. ]
  2495. }
  2496. },
  2497. "603": {
  2498. "class_type": "GetNode",
  2499. "inputs": {}
  2500. },
  2501. "1261": {
  2502. "class_type": "TextEncodeQwenImageEditPlus",
  2503. "inputs": {
  2504. "clip": [
  2505. "1255",
  2506. 0
  2507. ],
  2508. "prompt": "Using the style of the image, put this character in a tropical rainforest during sunset holding a tropical cocktail in their hand. The sunlight illuminates the smiling face. The character is happy. Keep the facial features exactly the same. ",
  2509. "vae": [
  2510. "1260",
  2511. 0
  2512. ],
  2513. "image1": [
  2514. "1258",
  2515. 0
  2516. ]
  2517. }
  2518. },
  2519. "1255": {
  2520. "class_type": "GetNode",
  2521. "inputs": {}
  2522. },
  2523. "1360": {
  2524. "class_type": "FluxKontextMultiReferenceLatentMethod",
  2525. "inputs": {
  2526. "conditioning": [
  2527. "1261",
  2528. 0
  2529. ],
  2530. "reference_latents_method": "index_timestep_zero"
  2531. }
  2532. },
  2533. "1361": {
  2534. "class_type": "ConditioningZeroOut",
  2535. "inputs": {
  2536. "conditioning": [
  2537. "1261",
  2538. 0
  2539. ]
  2540. }
  2541. },
  2542. "1205": {
  2543. "class_type": "TextEncodeQwenImageEditPlus",
  2544. "inputs": {
  2545. "clip": [
  2546. "632",
  2547. 0
  2548. ],
  2549. "prompt": [
  2550. "646",
  2551. 0
  2552. ],
  2553. "vae": [
  2554. "636",
  2555. 0
  2556. ],
  2557. "image1": [
  2558. "638",
  2559. 0
  2560. ],
  2561. "image2": ""
  2562. }
  2563. },
  2564. "632": {
  2565. "class_type": "GetNode",
  2566. "inputs": {}
  2567. },
  2568. "1363": {
  2569. "class_type": "ConditioningZeroOut",
  2570. "inputs": {
  2571. "conditioning": [
  2572. "1205",
  2573. 0
  2574. ]
  2575. }
  2576. },
  2577. "1362": {
  2578. "class_type": "FluxKontextMultiReferenceLatentMethod",
  2579. "inputs": {
  2580. "conditioning": [
  2581. "1205",
  2582. 0
  2583. ],
  2584. "reference_latents_method": "index_timestep_zero"
  2585. }
  2586. },
  2587. "647": {
  2588. "class_type": "GetNode",
  2589. "inputs": {}
  2590. },
  2591. "1364": {
  2592. "class_type": "ConditioningZeroOut",
  2593. "inputs": {
  2594. "conditioning": [
  2595. "1206",
  2596. 0
  2597. ]
  2598. }
  2599. },
  2600. "1030": {
  2601. "class_type": "GetNode",
  2602. "inputs": {}
  2603. },
  2604. "1206": {
  2605. "class_type": "TextEncodeQwenImageEditPlus",
  2606. "inputs": {
  2607. "clip": [
  2608. "647",
  2609. 0
  2610. ],
  2611. "prompt": [
  2612. "657",
  2613. 0
  2614. ],
  2615. "vae": [
  2616. "651",
  2617. 0
  2618. ],
  2619. "image1": [
  2620. "653",
  2621. 0
  2622. ],
  2623. "image2": [
  2624. "1207",
  2625. 0
  2626. ],
  2627. "image3": ""
  2628. }
  2629. },
  2630. "1365": {
  2631. "class_type": "FluxKontextMultiReferenceLatentMethod",
  2632. "inputs": {
  2633. "conditioning": [
  2634. "1206",
  2635. 0
  2636. ],
  2637. "reference_latents_method": "index_timestep_zero"
  2638. }
  2639. },
  2640. "648": {
  2641. "class_type": "GetNode",
  2642. "inputs": {}
  2643. },
  2644. "653": {
  2645. "class_type": "FluxKontextImageScale",
  2646. "inputs": {
  2647. "image": [
  2648. "648",
  2649. 0
  2650. ]
  2651. }
  2652. },
  2653. "1208": {
  2654. "class_type": "TextEncodeQwenImageEditPlus",
  2655. "inputs": {
  2656. "clip": [
  2657. "454",
  2658. 0
  2659. ],
  2660. "prompt": "Using the style of the image, make this character sit in a park on a sunny day. The character is looking up into the sky, low angle shot. Keep the proportions and facial features exactly the same. ",
  2661. "vae": [
  2662. "458",
  2663. 0
  2664. ],
  2665. "image1": [
  2666. "460",
  2667. 0
  2668. ]
  2669. }
  2670. },
  2671. "454": {
  2672. "class_type": "GetNode",
  2673. "inputs": {}
  2674. },
  2675. "1366": {
  2676. "class_type": "ConditioningZeroOut",
  2677. "inputs": {
  2678. "conditioning": [
  2679. "1208",
  2680. 0
  2681. ]
  2682. }
  2683. },
  2684. "1367": {
  2685. "class_type": "FluxKontextMultiReferenceLatentMethod",
  2686. "inputs": {
  2687. "conditioning": [
  2688. "1208",
  2689. 0
  2690. ],
  2691. "reference_latents_method": "index_timestep_zero"
  2692. }
  2693. },
  2694. "1130": {
  2695. "class_type": "GetNode",
  2696. "inputs": {}
  2697. },
  2698. "1369": {
  2699. "class_type": "FluxKontextMultiReferenceLatentMethod",
  2700. "inputs": {
  2701. "conditioning": [
  2702. "1225",
  2703. 0
  2704. ],
  2705. "reference_latents_method": "index_timestep_zero"
  2706. }
  2707. },
  2708. "1368": {
  2709. "class_type": "ConditioningZeroOut",
  2710. "inputs": {
  2711. "conditioning": [
  2712. "1225",
  2713. 0
  2714. ]
  2715. }
  2716. },
  2717. "1314": {
  2718. "class_type": "GetNode",
  2719. "inputs": {}
  2720. },
  2721. "1370": {
  2722. "class_type": "FluxKontextMultiReferenceLatentMethod",
  2723. "inputs": {
  2724. "conditioning": [
  2725. "1303",
  2726. 0
  2727. ],
  2728. "reference_latents_method": "index_timestep_zero"
  2729. }
  2730. },
  2731. "1303": {
  2732. "class_type": "TextEncodeQwenImageEditPlus",
  2733. "inputs": {
  2734. "clip": [
  2735. "1304",
  2736. 0
  2737. ],
  2738. "prompt": "Place this person in a subway train, she is holding a brown bag. Keep the characters clothes and style exactly the same.",
  2739. "vae": [
  2740. "1305",
  2741. 0
  2742. ],
  2743. "image1": [
  2744. "1307",
  2745. 0
  2746. ],
  2747. "image2": [
  2748. "1308",
  2749. 0
  2750. ]
  2751. }
  2752. },
  2753. "1371": {
  2754. "class_type": "ConditioningZeroOut",
  2755. "inputs": {
  2756. "conditioning": [
  2757. "1303",
  2758. 0
  2759. ]
  2760. }
  2761. },
  2762. "511": {
  2763. "class_type": "GetNode",
  2764. "inputs": {}
  2765. },
  2766. "1373": {
  2767. "class_type": "ConditioningZeroOut",
  2768. "inputs": {
  2769. "conditioning": [
  2770. "1210",
  2771. 0
  2772. ]
  2773. }
  2774. },
  2775. "465": {
  2776. "class_type": "GetNode",
  2777. "inputs": {}
  2778. },
  2779. "769": {
  2780. "class_type": "GetNode",
  2781. "inputs": {}
  2782. },
  2783. "762": {
  2784. "class_type": "GetNode",
  2785. "inputs": {}
  2786. },
  2787. "761": {
  2788. "class_type": "GetNode",
  2789. "inputs": {}
  2790. },
  2791. "1374": {
  2792. "class_type": "FluxKontextMultiReferenceLatentMethod",
  2793. "inputs": {
  2794. "conditioning": [
  2795. "1213",
  2796. 0
  2797. ],
  2798. "reference_latents_method": "index_timestep_zero"
  2799. }
  2800. },
  2801. "1375": {
  2802. "class_type": "ConditioningZeroOut",
  2803. "inputs": {
  2804. "conditioning": [
  2805. "1213",
  2806. 0
  2807. ]
  2808. }
  2809. },
  2810. "757": {
  2811. "class_type": "GetNode",
  2812. "inputs": {}
  2813. },
  2814. "1225": {
  2815. "class_type": "TextEncodeQwenImageEditPlus",
  2816. "inputs": {
  2817. "clip": [
  2818. "1118",
  2819. 0
  2820. ],
  2821. "prompt": "Place this figure in a cozy caf\u00e9. Keep the proportions and facial features exactly the same. Sitting at a table holding a cup of cofee. Keep the characters clothes and style exactly the same.",
  2822. "vae": [
  2823. "1120",
  2824. 0
  2825. ],
  2826. "image1": [
  2827. "1121",
  2828. 0
  2829. ],
  2830. "image2": [
  2831. "1226",
  2832. 0
  2833. ]
  2834. }
  2835. },
  2836. "1213": {
  2837. "class_type": "TextEncodeQwenImageEditPlus",
  2838. "inputs": {
  2839. "clip": [
  2840. "757",
  2841. 0
  2842. ],
  2843. "prompt": "Make the character lay on the ground in a relaxed model pose. White background. Keep the clothes and style exactly the same. A wide shot showing the full body.",
  2844. "vae": [
  2845. "759",
  2846. 0
  2847. ],
  2848. "image1": [
  2849. "1265",
  2850. 0
  2851. ],
  2852. "image2": [
  2853. "763",
  2854. 0
  2855. ]
  2856. }
  2857. },
  2858. "1377": {
  2859. "class_type": "ConditioningZeroOut",
  2860. "inputs": {
  2861. "conditioning": [
  2862. "1215",
  2863. 0
  2864. ]
  2865. }
  2866. },
  2867. "1376": {
  2868. "class_type": "FluxKontextMultiReferenceLatentMethod",
  2869. "inputs": {
  2870. "conditioning": [
  2871. "1215",
  2872. 0
  2873. ],
  2874. "reference_latents_method": "index_timestep_zero"
  2875. }
  2876. },
  2877. "1215": {
  2878. "class_type": "TextEncodeQwenImageEditPlus",
  2879. "inputs": {
  2880. "clip": [
  2881. "687",
  2882. 0
  2883. ],
  2884. "prompt": "Put the character in a neutral t-pose. A full body side view looking at a profile view of the character standing with arms outstretched. In front of a white background.",
  2885. "vae": [
  2886. "689",
  2887. 0
  2888. ],
  2889. "image2": [
  2890. "1216",
  2891. 0
  2892. ],
  2893. "image3": [
  2894. "1217",
  2895. 0
  2896. ]
  2897. }
  2898. },
  2899. "687": {
  2900. "class_type": "GetNode",
  2901. "inputs": {}
  2902. },
  2903. "689": {
  2904. "class_type": "GetNode",
  2905. "inputs": {}
  2906. },
  2907. "688": {
  2908. "class_type": "GetNode",
  2909. "inputs": {}
  2910. },
  2911. "1216": {
  2912. "class_type": "FluxKontextImageScale",
  2913. "inputs": {
  2914. "image": [
  2915. "692",
  2916. 0
  2917. ]
  2918. }
  2919. },
  2920. "695": {
  2921. "class_type": "GetNode",
  2922. "inputs": {}
  2923. },
  2924. "874": {
  2925. "class_type": "GetNode",
  2926. "inputs": {}
  2927. },
  2928. "1217": {
  2929. "class_type": "FluxKontextImageScale",
  2930. "inputs": {
  2931. "image": [
  2932. "1018",
  2933. 0
  2934. ]
  2935. }
  2936. },
  2937. "875": {
  2938. "class_type": "GetNode",
  2939. "inputs": {}
  2940. },
  2941. "1018": {
  2942. "class_type": "GetNode",
  2943. "inputs": {}
  2944. },
  2945. "692": {
  2946. "class_type": "GetNode",
  2947. "inputs": {}
  2948. },
  2949. "1380": {
  2950. "class_type": "FluxKontextMultiReferenceLatentMethod",
  2951. "inputs": {
  2952. "conditioning": [
  2953. "1218",
  2954. 0
  2955. ],
  2956. "reference_latents_method": "index_timestep_zero"
  2957. }
  2958. },
  2959. "1218": {
  2960. "class_type": "TextEncodeQwenImageEditPlus",
  2961. "inputs": {
  2962. "clip": [
  2963. "700",
  2964. 0
  2965. ],
  2966. "prompt": "Put the character in a neutral t-pose. A full body back view of the character standing with arms outstretched. In front of a white background.",
  2967. "vae": [
  2968. "702",
  2969. 0
  2970. ],
  2971. "image1": [
  2972. "706",
  2973. 0
  2974. ],
  2975. "image2": [
  2976. "1219",
  2977. 0
  2978. ]
  2979. }
  2980. },
  2981. "1379": {
  2982. "class_type": "ConditioningZeroOut",
  2983. "inputs": {
  2984. "conditioning": [
  2985. "1218",
  2986. 0
  2987. ]
  2988. }
  2989. },
  2990. "700": {
  2991. "class_type": "GetNode",
  2992. "inputs": {}
  2993. },
  2994. "702": {
  2995. "class_type": "GetNode",
  2996. "inputs": {}
  2997. },
  2998. "701": {
  2999. "class_type": "GetNode",
  3000. "inputs": {}
  3001. },
  3002. "705": {
  3003. "class_type": "GetNode",
  3004. "inputs": {}
  3005. },
  3006. "1020": {
  3007. "class_type": "GetNode",
  3008. "inputs": {}
  3009. },
  3010. "706": {
  3011. "class_type": "FluxKontextImageScale",
  3012. "inputs": {
  3013. "image": [
  3014. "705",
  3015. 0
  3016. ]
  3017. }
  3018. },
  3019. "1219": {
  3020. "class_type": "FluxKontextImageScale",
  3021. "inputs": {
  3022. "image": [
  3023. "1020",
  3024. 0
  3025. ]
  3026. }
  3027. },
  3028. "708": {
  3029. "class_type": "GetNode",
  3030. "inputs": {}
  3031. },
  3032. "924": {
  3033. "class_type": "JoinStringMulti",
  3034. "inputs": {
  3035. "inputcount": 2,
  3036. "string_1": [
  3037. "708",
  3038. 0
  3039. ],
  3040. "string_2": [
  3041. "708",
  3042. 0
  3043. ],
  3044. "delimiter": "/",
  3045. "return_list": false
  3046. }
  3047. },
  3048. "736": {
  3049. "class_type": "GetNode",
  3050. "inputs": {}
  3051. },
  3052. "878": {
  3053. "class_type": "GetNode",
  3054. "inputs": {}
  3055. },
  3056. "879": {
  3057. "class_type": "GetNode",
  3058. "inputs": {}
  3059. },
  3060. "925": {
  3061. "class_type": "JoinStringMulti",
  3062. "inputs": {
  3063. "inputcount": 2,
  3064. "string_1": [
  3065. "736",
  3066. 0
  3067. ],
  3068. "string_2": [
  3069. "736",
  3070. 0
  3071. ],
  3072. "delimiter": "/",
  3073. "return_list": false
  3074. }
  3075. },
  3076. "1220": {
  3077. "class_type": "TextEncodeQwenImageEditPlus",
  3078. "inputs": {
  3079. "clip": [
  3080. "728",
  3081. 0
  3082. ],
  3083. "prompt": "Put the character in a full-body side view walking in a cinematic landscape with soft lighting. Keep the proportions and style exactly the same. ",
  3084. "vae": [
  3085. "730",
  3086. 0
  3087. ],
  3088. "image1": [
  3089. "734",
  3090. 0
  3091. ],
  3092. "image2": [
  3093. "1221",
  3094. 0
  3095. ]
  3096. }
  3097. },
  3098. "728": {
  3099. "class_type": "GetNode",
  3100. "inputs": {}
  3101. },
  3102. "1210": {
  3103. "class_type": "TextEncodeQwenImageEditPlus",
  3104. "inputs": {
  3105. "clip": [
  3106. "465",
  3107. 0
  3108. ],
  3109. "prompt": "Put the character in a neutral t-pose. A full body wide shot of the character standing with arms outstretched. In front of a white background.",
  3110. "vae": [
  3111. "469",
  3112. 0
  3113. ],
  3114. "image1": [
  3115. "471",
  3116. 0
  3117. ],
  3118. "image2": [
  3119. "1391",
  3120. 0
  3121. ]
  3122. }
  3123. },
  3124. "1372": {
  3125. "class_type": "FluxKontextMultiReferenceLatentMethod",
  3126. "inputs": {
  3127. "conditioning": [
  3128. "1210",
  3129. 0
  3130. ],
  3131. "reference_latents_method": "index_timestep_zero"
  3132. }
  3133. },
  3134. "1032": {
  3135. "class_type": "Label (rgthree)",
  3136. "inputs": {}
  3137. },
  3138. "1127": {
  3139. "class_type": "KSampler",
  3140. "inputs": {
  3141. "model": [
  3142. "1119",
  3143. 0
  3144. ],
  3145. "seed": 1034973049061637,
  3146. "steps": [
  3147. "1123",
  3148. 0
  3149. ],
  3150. "cfg": [
  3151. "1124",
  3152. 0
  3153. ],
  3154. "sampler_name": "fixed",
  3155. "scheduler": 4,
  3156. "positive": [
  3157. "1369",
  3158. 0
  3159. ],
  3160. "negative": [
  3161. "1368",
  3162. 0
  3163. ],
  3164. "latent_image": [
  3165. "1125",
  3166. 0
  3167. ],
  3168. "denoise": 1
  3169. }
  3170. },
  3171. "471": {
  3172. "class_type": "FluxKontextImageScale",
  3173. "inputs": {
  3174. "image": [
  3175. "511",
  3176. 0
  3177. ]
  3178. }
  3179. },
  3180. "466": {
  3181. "class_type": "GetNode",
  3182. "inputs": {}
  3183. },
  3184. "1391": {
  3185. "class_type": "FluxKontextImageScale",
  3186. "inputs": {
  3187. "image": [
  3188. "466",
  3189. 0
  3190. ]
  3191. }
  3192. },
  3193. "333": {
  3194. "class_type": "Label (rgthree)",
  3195. "inputs": {}
  3196. },
  3197. "1382": {
  3198. "class_type": "ConditioningZeroOut",
  3199. "inputs": {
  3200. "conditioning": [
  3201. "1220",
  3202. 0
  3203. ]
  3204. }
  3205. },
  3206. "1381": {
  3207. "class_type": "FluxKontextMultiReferenceLatentMethod",
  3208. "inputs": {
  3209. "conditioning": [
  3210. "1220",
  3211. 0
  3212. ],
  3213. "reference_latents_method": "index_timestep_zero"
  3214. }
  3215. },
  3216. "732": {
  3217. "class_type": "GetNode",
  3218. "inputs": {}
  3219. },
  3220. "734": {
  3221. "class_type": "FluxKontextImageScale",
  3222. "inputs": {
  3223. "image": [
  3224. "732",
  3225. 0
  3226. ]
  3227. }
  3228. },
  3229. "733": {
  3230. "class_type": "GetNode",
  3231. "inputs": {}
  3232. },
  3233. "1221": {
  3234. "class_type": "FluxKontextImageScale",
  3235. "inputs": {
  3236. "image": [
  3237. "733",
  3238. 0
  3239. ]
  3240. }
  3241. },
  3242. "576": {
  3243. "class_type": "Label (rgthree)",
  3244. "inputs": {}
  3245. },
  3246. "1397": {
  3247. "class_type": "ImageScaleToMaxDimension",
  3248. "inputs": {
  3249. "image": [
  3250. "1398",
  3251. 0
  3252. ],
  3253. "upscale_method": "lanczos",
  3254. "largest_size": 512
  3255. }
  3256. },
  3257. "1398": {
  3258. "class_type": "GetNode",
  3259. "inputs": {}
  3260. },
  3261. "1399": {
  3262. "class_type": "GetNode",
  3263. "inputs": {}
  3264. },
  3265. "1400": {
  3266. "class_type": "GetNode",
  3267. "inputs": {}
  3268. },
  3269. "1401": {
  3270. "class_type": "VAEEncode",
  3271. "inputs": {
  3272. "pixels": [
  3273. "1409",
  3274. 0
  3275. ],
  3276. "vae": [
  3277. "1418",
  3278. 0
  3279. ]
  3280. }
  3281. },
  3282. "1402": {
  3283. "class_type": "GetNode",
  3284. "inputs": {}
  3285. },
  3286. "1403": {
  3287. "class_type": "JoinStrings",
  3288. "inputs": {
  3289. "string1": [
  3290. "1404",
  3291. 0
  3292. ],
  3293. "string2": [
  3294. "1413",
  3295. 2
  3296. ],
  3297. "delimiter": ", "
  3298. }
  3299. },
  3300. "1404": {
  3301. "class_type": "GetNode",
  3302. "inputs": {}
  3303. },
  3304. "1405": {
  3305. "class_type": "GetNode",
  3306. "inputs": {}
  3307. },
  3308. "1406": {
  3309. "class_type": "CLIPTextEncode",
  3310. "inputs": {
  3311. "text": [
  3312. "1407",
  3313. 0
  3314. ],
  3315. "clip": [
  3316. "1420",
  3317. 0
  3318. ]
  3319. }
  3320. },
  3321. "1407": {
  3322. "class_type": "JoinStringMulti",
  3323. "inputs": {
  3324. "inputcount": 3,
  3325. "string_1": [
  3326. "1405",
  3327. 0
  3328. ],
  3329. "string_2": [
  3330. "1428",
  3331. 0
  3332. ],
  3333. "delimiter": ",",
  3334. "return_list": false
  3335. }
  3336. },
  3337. "1408": {
  3338. "class_type": "GetNode",
  3339. "inputs": {}
  3340. },
  3341. "1414": {
  3342. "class_type": "GetNode",
  3343. "inputs": {}
  3344. },
  3345. "1415": {
  3346. "class_type": "fc61533f-1a80-4eed-8e66-73efca366e9d",
  3347. "inputs": {}
  3348. },
  3349. "1416": {
  3350. "class_type": "ConditioningZeroOut",
  3351. "inputs": {
  3352. "conditioning": [
  3353. "1406",
  3354. 0
  3355. ]
  3356. }
  3357. },
  3358. "1417": {
  3359. "class_type": "VAEEncode",
  3360. "inputs": {
  3361. "pixels": [
  3362. "1397",
  3363. 0
  3364. ],
  3365. "vae": [
  3366. "1418",
  3367. 0
  3368. ]
  3369. }
  3370. },
  3371. "1418": {
  3372. "class_type": "GetNode",
  3373. "inputs": {}
  3374. },
  3375. "1419": {
  3376. "class_type": "d5792eaf-f243-43ae-9d4f-f37355b8d408",
  3377. "inputs": {}
  3378. },
  3379. "1420": {
  3380. "class_type": "GetNode",
  3381. "inputs": {}
  3382. },
  3383. "1421": {
  3384. "class_type": "VAEDecode",
  3385. "inputs": {
  3386. "samples": [
  3387. "1424",
  3388. 0
  3389. ],
  3390. "vae": [
  3391. "1402",
  3392. 0
  3393. ]
  3394. }
  3395. },
  3396. "1422": {
  3397. "class_type": "PreviewImage",
  3398. "inputs": {
  3399. "images": [
  3400. "1439",
  3401. 0
  3402. ]
  3403. }
  3404. },
  3405. "1425": {
  3406. "class_type": "SaveImage",
  3407. "inputs": {
  3408. "images": "RunComfy_examples_1384_22",
  3409. "filename_prefix": [
  3410. "1435",
  3411. 0
  3412. ]
  3413. }
  3414. },
  3415. "1426": {
  3416. "class_type": "Label (rgthree)",
  3417. "inputs": {}
  3418. },
  3419. "1432": {
  3420. "class_type": "Label (rgthree)",
  3421. "inputs": {}
  3422. },
  3423. "1434": {
  3424. "class_type": "Label (rgthree)",
  3425. "inputs": {}
  3426. },
  3427. "1319": {
  3428. "class_type": "UltralyticsDetectorProvider",
  3429. "inputs": {
  3430. "model_name": "bbox/face_yolov8m.pt"
  3431. }
  3432. },
  3433. "1413": {
  3434. "class_type": "Florence2Run",
  3435. "inputs": {
  3436. "image": [
  3437. "1396",
  3438. 0
  3439. ],
  3440. "florence2_model": [
  3441. "1436",
  3442. 0
  3443. ],
  3444. "text_input": "",
  3445. "task": "more_detailed_caption",
  3446. "fill_mask": true,
  3447. "keep_model_loaded": false,
  3448. "max_new_tokens": 1024,
  3449. "num_beams": 3,
  3450. "do_sample": true,
  3451. "output_mask_select": "",
  3452. "seed": 1
  3453. }
  3454. },
  3455. "1436": {
  3456. "class_type": "GetNode",
  3457. "inputs": {}
  3458. },
  3459. "1047": {
  3460. "class_type": "Label (rgthree)",
  3461. "inputs": {}
  3462. },
  3463. "1439": {
  3464. "class_type": "easy cleanGpuUsed",
  3465. "inputs": {
  3466. "anything": [
  3467. "1412",
  3468. 0
  3469. ]
  3470. }
  3471. },
  3472. "850": {
  3473. "class_type": "PrimitiveFloat",
  3474. "inputs": {
  3475. "value": 1
  3476. }
  3477. },
  3478. "844": {
  3479. "class_type": "PrimitiveInt",
  3480. "inputs": {
  3481. "value": 4
  3482. }
  3483. },
  3484. "1428": {
  3485. "class_type": "PrimitiveStringMultiline",
  3486. "inputs": {
  3487. "value": ""
  3488. }
  3489. },
  3490. "1410": {
  3491. "class_type": "ImageUpscaleWithModel",
  3492. "inputs": {
  3493. "upscale_model": [
  3494. "1411",
  3495. 0
  3496. ],
  3497. "image": [
  3498. "1396",
  3499. 0
  3500. ]
  3501. }
  3502. },
  3503. "1409": {
  3504. "class_type": "ImageResizeKJv2",
  3505. "inputs": {
  3506. "image": [
  3507. "1410",
  3508. 0
  3509. ],
  3510. "width": [
  3511. "1408",
  3512. 0
  3513. ],
  3514. "height": [
  3515. "1408",
  3516. 0
  3517. ],
  3518. "upscale_method": 512,
  3519. "keep_proportion": 512,
  3520. "pad_color": "lanczos",
  3521. "crop_position": "stretch",
  3522. "divisible_by": "0, 0, 0",
  3523. "mask": "center",
  3524. "device": 2
  3525. }
  3526. },
  3527. "1411": {
  3528. "class_type": "GetNode",
  3529. "inputs": {}
  3530. },
  3531. "1424": {
  3532. "class_type": "KSamplerAdvanced",
  3533. "inputs": {
  3534. "model": [
  3535. "1419",
  3536. 0
  3537. ],
  3538. "add_noise": "enable",
  3539. "noise_seed": 751745487044989,
  3540. "steps": "fixed",
  3541. "cfg": 20,
  3542. "sampler_name": 1,
  3543. "scheduler": "euler",
  3544. "positive": [
  3545. "1415",
  3546. 0
  3547. ],
  3548. "negative": [
  3549. "1416",
  3550. 0
  3551. ],
  3552. "latent_image": [
  3553. "1401",
  3554. 0
  3555. ],
  3556. "start_at_step": "simple",
  3557. "end_at_step": 17,
  3558. "return_with_leftover_noise": 10000
  3559. }
  3560. },
  3561. "1440": {
  3562. "class_type": "SaveImageTextDataSetToFolder",
  3563. "inputs": {
  3564. "images": [
  3565. "1421",
  3566. 0
  3567. ],
  3568. "texts": [
  3569. "1403",
  3570. 0
  3571. ],
  3572. "folder_name": [
  3573. "1442",
  3574. 0
  3575. ],
  3576. "filename_prefix": [
  3577. "1435",
  3578. 0
  3579. ]
  3580. }
  3581. },
  3582. "1322": {
  3583. "class_type": "Label (rgthree)",
  3584. "inputs": {}
  3585. },
  3586. "362": {
  3587. "class_type": "CLIPLoader",
  3588. "inputs": {
  3589. "clip_name": "qwen_2.5_vl_7b_fp8_scaled.safetensors",
  3590. "type": "qwen_image",
  3591. "device": "cpu"
  3592. }
  3593. },
  3594. "547": {
  3595. "class_type": "LoraLoaderModelOnly",
  3596. "inputs": {
  3597. "model": [
  3598. "1114",
  3599. 0
  3600. ],
  3601. "lora_name": "Qwen-Image-Edit-2511-Lightning-4steps-V1.0-bf16.safetensors",
  3602. "strength_model": 1
  3603. }
  3604. },
  3605. "546": {
  3606. "class_type": "LoaderGGUF",
  3607. "inputs": {
  3608. "gguf_name": "gguf/qwen-image-edit-2511-Q5_1.gguf"
  3609. }
  3610. },
  3611. "514": {
  3612. "class_type": "StringConstantMultiline",
  3613. "inputs": {
  3614. "string": "create a full body turnaround sheet of this exact character, four full-body poses on pure white background: front view, left profile, back view, \u2014 evenly spaced in a clean horizontal row, consistent lighting and style, no background noise, no shadows, same proportions and detailing across all views, ",
  3615. "strip_newlines": true
  3616. }
  3617. },
  3618. "661": {
  3619. "class_type": "StringConstantMultiline",
  3620. "inputs": {
  3621. "string": "A wide shot of the character sitting on a rock at the beach. Keep the characters clothes and style exactly the same. Keep the proportions and facial features exactly the same. ",
  3622. "strip_newlines": true
  3623. }
  3624. },
  3625. "646": {
  3626. "class_type": "StringConstantMultiline",
  3627. "inputs": {
  3628. "string": "Put the character in a dark spooky castle at night and change the pose. The characters face is illuminated by dim candlelight, the character is scared. The strong moonlight creates a strong backlight creating a dramatic look. ",
  3629. "strip_newlines": true
  3630. }
  3631. },
  3632. "1396": {
  3633. "class_type": "ImpactImageBatchToImageList",
  3634. "inputs": {
  3635. "image": [
  3636. "1412",
  3637. 0
  3638. ]
  3639. }
  3640. },
  3641. "1412": {
  3642. "class_type": "VHS_LoadImagesPath",
  3643. "inputs": {
  3644. "directory": [
  3645. "1395",
  3646. 0
  3647. ],
  3648. "image_load_cap": null,
  3649. "skip_first_images": null,
  3650. "select_every_nth": null,
  3651. "meta_batch": null
  3652. }
  3653. },
  3654. "588": {
  3655. "class_type": "PrimitiveStringMultiline",
  3656. "inputs": {
  3657. "value": "RunComfyCharacterPad"
  3658. }
  3659. },
  3660. "1427": {
  3661. "class_type": "Label (rgthree)",
  3662. "inputs": {}
  3663. },
  3664. "1423": {
  3665. "class_type": "ShowText|pysssss",
  3666. "inputs": {
  3667. "text": [
  3668. "1403",
  3669. 0
  3670. ]
  3671. }
  3672. },
  3673. "1442": {
  3674. "class_type": "JoinStrings",
  3675. "inputs": {
  3676. "string1": [
  3677. "1435",
  3678. 0
  3679. ],
  3680. "string2": [
  3681. "1441",
  3682. 0
  3683. ],
  3684. "delimiter": "_"
  3685. }
  3686. },
  3687. "1441": {
  3688. "class_type": "PrimitiveString",
  3689. "inputs": {
  3690. "value": "dataset"
  3691. }
  3692. },
  3693. "1435": {
  3694. "class_type": "GetNode",
  3695. "inputs": {}
  3696. },
  3697. "1395": {
  3698. "class_type": "JoinStringMulti",
  3699. "inputs": {
  3700. "inputcount": 2,
  3701. "string_1": [
  3702. "1394",
  3703. 0
  3704. ],
  3705. "string_2": [
  3706. "1393",
  3707. 0
  3708. ],
  3709. "delimiter": "/",
  3710. "return_list": false
  3711. }
  3712. },
  3713. "1393": {
  3714. "class_type": "GetNode",
  3715. "inputs": {}
  3716. },
  3717. "1394": {
  3718. "class_type": "PrimitiveStringMultiline",
  3719. "inputs": {
  3720. "value": "output"
  3721. }
  3722. },
  3723. "919": {
  3724. "class_type": "JoinStringMulti",
  3725. "inputs": {
  3726. "inputcount": 2,
  3727. "string_1": [
  3728. "669",
  3729. 0
  3730. ],
  3731. "string_2": [
  3732. "669",
  3733. 0
  3734. ],
  3735. "delimiter": "/",
  3736. "return_list": false
  3737. }
  3738. },
  3739. "1430": {
  3740. "class_type": "Image Comparer (rgthree)",
  3741. "inputs": {
  3742. "image_a": [
  3743. "1396",
  3744. 0
  3745. ],
  3746. "image_b": [
  3747. "1421",
  3748. 0
  3749. ]
  3750. }
  3751. },
  3752. "1016": {
  3753. "class_type": "Fast Groups Muter (rgthree)",
  3754. "inputs": {}
  3755. }
  3756. }