| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756 |
- {
- "306": {
- "class_type": "SaveImage",
- "inputs": {
- "images": [
- "314",
- 0
- ],
- "filename_prefix": [
- "942",
- 0
- ]
- }
- },
- "423": {
- "class_type": "SaveImage",
- "inputs": {
- "images": [
- "433",
- 0
- ],
- "filename_prefix": [
- "914",
- 0
- ]
- }
- },
- "433": {
- "class_type": "VAEDecode",
- "inputs": {
- "samples": [
- "429",
- 0
- ],
- "vae": [
- "428",
- 0
- ]
- }
- },
- "453": {
- "class_type": "SaveImage",
- "inputs": {
- "images": [
- "463",
- 0
- ],
- "filename_prefix": [
- "919",
- 0
- ]
- }
- },
- "463": {
- "class_type": "VAEDecode",
- "inputs": {
- "samples": [
- "459",
- 0
- ],
- "vae": [
- "458",
- 0
- ]
- }
- },
- "464": {
- "class_type": "SaveImage",
- "inputs": {
- "images": [
- "473",
- 0
- ],
- "filename_prefix": [
- "921",
- 0
- ]
- }
- },
- "472": {
- "class_type": "SetNode",
- "inputs": {}
- },
- "191": {
- "class_type": "SetNode",
- "inputs": {}
- },
- "192": {
- "class_type": "SetNode",
- "inputs": {}
- },
- "308": {
- "class_type": "SaveImage",
- "inputs": {
- "images": [
- "316",
- 0
- ],
- "filename_prefix": [
- "942",
- 0
- ]
- }
- },
- "578": {
- "class_type": "Label (rgthree)",
- "inputs": {}
- },
- "575": {
- "class_type": "Label (rgthree)",
- "inputs": {}
- },
- "581": {
- "class_type": "Label (rgthree)",
- "inputs": {}
- },
- "332": {
- "class_type": "Label (rgthree)",
- "inputs": {}
- },
- "602": {
- "class_type": "SaveImage",
- "inputs": {
- "images": [
- "611",
- 0
- ],
- "filename_prefix": [
- "915",
- 0
- ]
- }
- },
- "635": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "640": {
- "class_type": "VAEDecode",
- "inputs": {
- "samples": [
- "637",
- 0
- ],
- "vae": [
- "636",
- 0
- ]
- }
- },
- "650": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "651": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "655": {
- "class_type": "VAEDecode",
- "inputs": {
- "samples": [
- "652",
- 0
- ],
- "vae": [
- "651",
- 0
- ]
- }
- },
- "660": {
- "class_type": "SaveImage",
- "inputs": {
- "images": [
- "655",
- 0
- ],
- "filename_prefix": [
- "918",
- 0
- ]
- }
- },
- "610": {
- "class_type": "SetNode",
- "inputs": {}
- },
- "305": {
- "class_type": "SaveImage",
- "inputs": {
- "images": [
- "318",
- 0
- ],
- "filename_prefix": [
- "942",
- 0
- ]
- }
- },
- "307": {
- "class_type": "SaveImage",
- "inputs": {
- "images": [
- "315",
- 0
- ],
- "filename_prefix": [
- "942",
- 0
- ]
- }
- },
- "321": {
- "class_type": "Label (rgthree)",
- "inputs": {}
- },
- "686": {
- "class_type": "SaveImage",
- "inputs": {
- "images": [
- "690",
- 0
- ],
- "filename_prefix": [
- "923",
- 0
- ]
- }
- },
- "699": {
- "class_type": "SaveImage",
- "inputs": {
- "images": [
- "703",
- 0
- ],
- "filename_prefix": [
- "924",
- 0
- ]
- }
- },
- "727": {
- "class_type": "SaveImage",
- "inputs": {
- "images": [
- "731",
- 0
- ],
- "filename_prefix": [
- "925",
- 0
- ]
- }
- },
- "729": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "731": {
- "class_type": "VAEDecode",
- "inputs": {
- "samples": [
- "738",
- 0
- ],
- "vae": [
- "730",
- 0
- ]
- }
- },
- "756": {
- "class_type": "SaveImage",
- "inputs": {
- "images": [
- "760",
- 0
- ],
- "filename_prefix": [
- "922",
- 0
- ]
- }
- },
- "366": {
- "class_type": "SetNode",
- "inputs": {}
- },
- "876": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "877": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "316": {
- "class_type": "ExpressionEditor",
- "inputs": {
- "rotate_pitch": 0,
- "rotate_yaw": 12,
- "rotate_roll": 0,
- "blink": 0,
- "eyebrow": 0,
- "wink": 0,
- "pupil_x": -15,
- "pupil_y": 0,
- "aaa": 97,
- "eee": -2.9000000000000004,
- "woo": 0,
- "smile": -0.26,
- "src_ratio": 1,
- "sample_ratio": 1,
- "crop_factor": 1.5,
- "src_image": [
- "319",
- 0
- ]
- }
- },
- "645": {
- "class_type": "SaveImage",
- "inputs": {
- "images": [
- "640",
- 0
- ],
- "filename_prefix": [
- "917",
- 0
- ]
- }
- },
- "200": {
- "class_type": "EmptySD3LatentImage",
- "inputs": {
- "width": 2048,
- "height": 1024,
- "batch_size": 1
- }
- },
- "207": {
- "class_type": "VAEDecode",
- "inputs": {
- "samples": [
- "199",
- 0
- ],
- "vae": [
- "202",
- 0
- ]
- }
- },
- "605": {
- "class_type": "EmptySD3LatentImage",
- "inputs": {
- "width": 1024,
- "height": 1024,
- "batch_size": 1
- }
- },
- "426": {
- "class_type": "EmptySD3LatentImage",
- "inputs": {
- "width": 1024,
- "height": 1024,
- "batch_size": 1
- }
- },
- "611": {
- "class_type": "VAEDecode",
- "inputs": {
- "samples": [
- "608",
- 0
- ],
- "vae": [
- "607",
- 0
- ]
- }
- },
- "634": {
- "class_type": "EmptySD3LatentImage",
- "inputs": {
- "width": 1024,
- "height": 1024,
- "batch_size": 1
- }
- },
- "639": {
- "class_type": "SetNode",
- "inputs": {}
- },
- "538": {
- "class_type": "EmptySD3LatentImage",
- "inputs": {
- "width": 1280,
- "height": 720,
- "batch_size": 1
- }
- },
- "654": {
- "class_type": "SetNode",
- "inputs": {}
- },
- "456": {
- "class_type": "EmptySD3LatentImage",
- "inputs": {
- "width": 1024,
- "height": 1024,
- "batch_size": 1
- }
- },
- "459": {
- "class_type": "KSampler",
- "inputs": {
- "model": [
- "457",
- 0
- ],
- "seed": 1034973049061637,
- "steps": [
- "867",
- 0
- ],
- "cfg": [
- "866",
- 0
- ],
- "sampler_name": "fixed",
- "scheduler": 4,
- "positive": [
- "1367",
- 0
- ],
- "negative": [
- "1366",
- 0
- ],
- "latent_image": [
- "456",
- 0
- ],
- "denoise": 1
- }
- },
- "275": {
- "class_type": "SetNode",
- "inputs": {}
- },
- "470": {
- "class_type": "KSampler",
- "inputs": {
- "model": [
- "468",
- 0
- ],
- "seed": 1034973049061638,
- "steps": [
- "871",
- 0
- ],
- "cfg": [
- "870",
- 0
- ],
- "sampler_name": "fixed",
- "scheduler": 4,
- "positive": [
- "1372",
- 0
- ],
- "negative": [
- "1373",
- 0
- ],
- "latent_image": [
- "467",
- 0
- ],
- "denoise": 1
- }
- },
- "473": {
- "class_type": "VAEDecode",
- "inputs": {
- "samples": [
- "470",
- 0
- ],
- "vae": [
- "469",
- 0
- ]
- }
- },
- "467": {
- "class_type": "EmptySD3LatentImage",
- "inputs": {
- "width": 1024,
- "height": 1024,
- "batch_size": 1
- }
- },
- "767": {
- "class_type": "EmptySD3LatentImage",
- "inputs": {
- "width": 1024,
- "height": 1024,
- "batch_size": 1
- }
- },
- "760": {
- "class_type": "VAEDecode",
- "inputs": {
- "samples": [
- "768",
- 0
- ],
- "vae": [
- "759",
- 0
- ]
- }
- },
- "697": {
- "class_type": "EmptySD3LatentImage",
- "inputs": {
- "width": 1024,
- "height": 1024,
- "batch_size": 1
- }
- },
- "690": {
- "class_type": "VAEDecode",
- "inputs": {
- "samples": [
- "698",
- 0
- ],
- "vae": [
- "689",
- 0
- ]
- }
- },
- "698": {
- "class_type": "KSampler",
- "inputs": {
- "model": [
- "688",
- 0
- ],
- "seed": 1034973049061638,
- "steps": [
- "874",
- 0
- ],
- "cfg": [
- "875",
- 0
- ],
- "sampler_name": "fixed",
- "scheduler": 4,
- "positive": [
- "1376",
- 0
- ],
- "negative": [
- "1377",
- 0
- ],
- "latent_image": [
- "697",
- 0
- ],
- "denoise": 1
- }
- },
- "942": {
- "class_type": "JoinStringMulti",
- "inputs": {
- "inputcount": 2,
- "string_1": [
- "671",
- 0
- ],
- "string_2": [
- "671",
- 0
- ],
- "delimiter": "/",
- "return_list": false
- }
- },
- "981": {
- "class_type": "Label (rgthree)",
- "inputs": {}
- },
- "998": {
- "class_type": "JoinStringMulti",
- "inputs": {
- "inputcount": 2,
- "string_1": [
- "999",
- 0
- ],
- "string_2": [
- "999",
- 0
- ],
- "delimiter": "/",
- "return_list": false
- }
- },
- "737": {
- "class_type": "EmptySD3LatentImage",
- "inputs": {
- "width": 1024,
- "height": 1024,
- "batch_size": 1
- }
- },
- "709": {
- "class_type": "EmptySD3LatentImage",
- "inputs": {
- "width": 1024,
- "height": 1024,
- "batch_size": 1
- }
- },
- "710": {
- "class_type": "KSampler",
- "inputs": {
- "model": [
- "701",
- 0
- ],
- "seed": 1034973049061638,
- "steps": [
- "876",
- 0
- ],
- "cfg": [
- "877",
- 0
- ],
- "sampler_name": "fixed",
- "scheduler": 4,
- "positive": [
- "1380",
- 0
- ],
- "negative": [
- "1379",
- 0
- ],
- "latent_image": [
- "709",
- 0
- ],
- "denoise": 1
- }
- },
- "703": {
- "class_type": "VAEDecode",
- "inputs": {
- "samples": [
- "710",
- 0
- ],
- "vae": [
- "702",
- 0
- ]
- }
- },
- "468": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "206": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "591": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "593": {
- "class_type": "JoinStringMulti",
- "inputs": {
- "inputcount": 2,
- "string_1": [
- "592",
- 0
- ],
- "string_2": [
- "594",
- 0
- ],
- "delimiter": " ",
- "return_list": false
- }
- },
- "594": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "854": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "855": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "315": {
- "class_type": "ExpressionEditor",
- "inputs": {
- "rotate_pitch": -12,
- "rotate_yaw": -5.6000000000000005,
- "rotate_roll": 0,
- "blink": 5,
- "eyebrow": 15,
- "wink": 20,
- "pupil_x": 0,
- "pupil_y": 0,
- "aaa": 0,
- "eee": 10.700000000000001,
- "woo": 0,
- "smile": -0.18,
- "src_ratio": 1,
- "sample_ratio": 1,
- "crop_factor": 1.5,
- "src_image": [
- "319",
- 0
- ]
- }
- },
- "318": {
- "class_type": "ExpressionEditor",
- "inputs": {
- "rotate_pitch": 0,
- "rotate_yaw": 10,
- "rotate_roll": 0,
- "blink": -14,
- "eyebrow": -10,
- "wink": 20,
- "pupil_x": 0,
- "pupil_y": 0,
- "aaa": 0,
- "eee": 0,
- "woo": 0,
- "smile": -0.24,
- "src_ratio": 0.4100000000000001,
- "sample_ratio": 1,
- "crop_factor": 1.5,
- "src_image": [
- "319",
- 0
- ]
- }
- },
- "314": {
- "class_type": "ExpressionEditor",
- "inputs": {
- "rotate_pitch": -8,
- "rotate_yaw": -9,
- "rotate_roll": 0,
- "blink": 5,
- "eyebrow": 0,
- "wink": 20,
- "pupil_x": 11.5,
- "pupil_y": 7.9,
- "aaa": 18.0001220703125,
- "eee": 10.700000000000001,
- "woo": 0,
- "smile": 1.3,
- "src_ratio": 1,
- "sample_ratio": 1,
- "crop_factor": 1.5,
- "src_image": [
- "319",
- 0
- ]
- }
- },
- "738": {
- "class_type": "KSampler",
- "inputs": {
- "model": [
- "729",
- 0
- ],
- "seed": 1034973049061639,
- "steps": [
- "878",
- 0
- ],
- "cfg": [
- "879",
- 0
- ],
- "sampler_name": "fixed",
- "scheduler": 4,
- "positive": [
- "1381",
- 0
- ],
- "negative": [
- "1382",
- 0
- ],
- "latent_image": [
- "737",
- 0
- ],
- "denoise": 1
- }
- },
- "608": {
- "class_type": "KSampler",
- "inputs": {
- "model": [
- "606",
- 0
- ],
- "seed": 1034973049061637,
- "steps": [
- "858",
- 0
- ],
- "cfg": [
- "859",
- 0
- ],
- "sampler_name": "fixed",
- "scheduler": 4,
- "positive": [
- "1357",
- 0
- ],
- "negative": [
- "1359",
- 0
- ],
- "latent_image": [
- "605",
- 0
- ],
- "denoise": 1
- }
- },
- "516": {
- "class_type": "SetNode",
- "inputs": {}
- },
- "194": {
- "class_type": "SetNode",
- "inputs": {}
- },
- "589": {
- "class_type": "SetNode",
- "inputs": {}
- },
- "845": {
- "class_type": "SetNode",
- "inputs": {}
- },
- "851": {
- "class_type": "SetNode",
- "inputs": {}
- },
- "983": {
- "class_type": "Label (rgthree)",
- "inputs": {}
- },
- "989": {
- "class_type": "Label (rgthree)",
- "inputs": {}
- },
- "923": {
- "class_type": "JoinStringMulti",
- "inputs": {
- "inputcount": 2,
- "string_1": [
- "695",
- 0
- ],
- "string_2": [
- "695",
- 0
- ],
- "delimiter": "/",
- "return_list": false
- }
- },
- "367": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "213": {
- "class_type": "LoadImage",
- "inputs": {
- "image": "RunComfy_examples_1384_1.png"
- }
- },
- "999": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "323": {
- "class_type": "Label (rgthree)",
- "inputs": {}
- },
- "1040": {
- "class_type": "Label (rgthree)",
- "inputs": {}
- },
- "582": {
- "class_type": "Label (rgthree)",
- "inputs": {}
- },
- "369": {
- "class_type": "VAEDecode",
- "inputs": {
- "samples": [
- "376",
- 0
- ],
- "vae": [
- "372",
- 0
- ]
- }
- },
- "595": {
- "class_type": "StringConstantMultiline",
- "inputs": {
- "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. ",
- "strip_newlines": true
- }
- },
- "429": {
- "class_type": "KSampler",
- "inputs": {
- "model": [
- "427",
- 0
- ],
- "seed": 1034973049061638,
- "steps": [
- "856",
- 0
- ],
- "cfg": [
- "857",
- 0
- ],
- "sampler_name": "fixed",
- "scheduler": 4,
- "positive": [
- "1353",
- 0
- ],
- "negative": [
- "1354",
- 0
- ],
- "latent_image": [
- "426",
- 0
- ],
- "denoise": 1
- }
- },
- "370": {
- "class_type": "EmptySD3LatentImage",
- "inputs": {
- "width": 1024,
- "height": 1024,
- "batch_size": 1
- }
- },
- "432": {
- "class_type": "SetNode",
- "inputs": {}
- },
- "487": {
- "class_type": "SaveImage",
- "inputs": {
- "images": [
- "486",
- 0
- ],
- "filename_prefix": [
- "942",
- 0
- ]
- }
- },
- "1117": {
- "class_type": "SaveImage",
- "inputs": {
- "images": [
- "1122",
- 0
- ],
- "filename_prefix": [
- "1128",
- 0
- ]
- }
- },
- "1122": {
- "class_type": "VAEDecode",
- "inputs": {
- "samples": [
- "1127",
- 0
- ],
- "vae": [
- "1120",
- 0
- ]
- }
- },
- "1125": {
- "class_type": "EmptySD3LatentImage",
- "inputs": {
- "width": 1024,
- "height": 1024,
- "batch_size": 1
- }
- },
- "372": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "913": {
- "class_type": "JoinStringMulti",
- "inputs": {
- "inputcount": 2,
- "string_1": [
- "591",
- 0
- ],
- "string_2": [
- "591",
- 0
- ],
- "delimiter": "/",
- "return_list": false
- }
- },
- "616": {
- "class_type": "StringConstantMultiline",
- "inputs": {
- "string": "Create an over the shoulder view. Back of the characters head looking away from the camera. In front of a white background.",
- "strip_newlines": true
- }
- },
- "469": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "190": {
- "class_type": "SetNode",
- "inputs": {}
- },
- "768": {
- "class_type": "KSampler",
- "inputs": {
- "model": [
- "758",
- 0
- ],
- "seed": 1034973049061639,
- "steps": [
- "872",
- 0
- ],
- "cfg": [
- "873",
- 0
- ],
- "sampler_name": "fixed",
- "scheduler": 4,
- "positive": [
- "1374",
- 0
- ],
- "negative": [
- "1375",
- 0
- ],
- "latent_image": [
- "767",
- 0
- ],
- "denoise": 1
- }
- },
- "730": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "636": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "1248": {
- "class_type": "SaveImage",
- "inputs": {
- "images": [
- "1250",
- 0
- ],
- "filename_prefix": [
- "1256",
- 0
- ]
- }
- },
- "1250": {
- "class_type": "VAEDecode",
- "inputs": {
- "samples": [
- "1253",
- 0
- ],
- "vae": [
- "1260",
- 0
- ]
- }
- },
- "1252": {
- "class_type": "EmptySD3LatentImage",
- "inputs": {
- "width": 1024,
- "height": 1024,
- "batch_size": 1
- }
- },
- "1262": {
- "class_type": "SetNode",
- "inputs": {}
- },
- "202": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "513": {
- "class_type": "JoinStringMulti",
- "inputs": {
- "inputcount": 2,
- "string_1": [
- "514",
- 0
- ],
- "string_2": [
- "517",
- 0
- ],
- "delimiter": " ",
- "return_list": false
- }
- },
- "374": {
- "class_type": "FluxKontextImageScale",
- "inputs": {
- "image": [
- "373",
- 0
- ]
- }
- },
- "1114": {
- "class_type": "CFGNorm",
- "inputs": {
- "model": [
- "1115",
- 0
- ],
- "strength": 1
- }
- },
- "1115": {
- "class_type": "ModelSamplingAuraFlow",
- "inputs": {
- "model": [
- "546",
- 0
- ],
- "shift": 3
- }
- },
- "1200": {
- "class_type": "FluxKontextImageScale",
- "inputs": {
- "image": [
- "203",
- 0
- ]
- }
- },
- "517": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "590": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "846": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "853": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "911": {
- "class_type": "JoinStringMulti",
- "inputs": {
- "inputcount": 2,
- "string_1": [
- "590",
- 0
- ],
- "string_2": [
- "590",
- 0
- ],
- "delimiter": "/",
- "return_list": false
- }
- },
- "203": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "428": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "427": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "430": {
- "class_type": "FluxKontextImageScale",
- "inputs": {
- "image": [
- "425",
- 0
- ]
- }
- },
- "596": {
- "class_type": "JoinStringMulti",
- "inputs": {
- "inputcount": 2,
- "string_1": [
- "595",
- 0
- ],
- "string_2": [
- "597",
- 0
- ],
- "delimiter": " ",
- "return_list": false
- }
- },
- "597": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "662": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "856": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "857": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "914": {
- "class_type": "JoinStringMulti",
- "inputs": {
- "inputcount": 2,
- "string_1": [
- "662",
- 0
- ],
- "string_2": [
- "662",
- 0
- ],
- "delimiter": "/",
- "return_list": false
- }
- },
- "425": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "607": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "606": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "609": {
- "class_type": "FluxKontextImageScale",
- "inputs": {
- "image": [
- "604",
- 0
- ]
- }
- },
- "613": {
- "class_type": "JoinStringMulti",
- "inputs": {
- "inputcount": 2,
- "string_1": [
- "616",
- 0
- ],
- "string_2": [
- "614",
- 0
- ],
- "delimiter": " ",
- "return_list": false
- }
- },
- "614": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "663": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "858": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "859": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "915": {
- "class_type": "JoinStringMulti",
- "inputs": {
- "inputcount": 2,
- "string_1": [
- "663",
- 0
- ],
- "string_2": [
- "663",
- 0
- ],
- "delimiter": "/",
- "return_list": false
- }
- },
- "604": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "1260": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "1249": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "1258": {
- "class_type": "FluxKontextImageScale",
- "inputs": {
- "image": [
- "1259",
- 0
- ]
- }
- },
- "1257": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "1254": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "1251": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "1256": {
- "class_type": "JoinStringMulti",
- "inputs": {
- "inputcount": 2,
- "string_1": [
- "1257",
- 0
- ],
- "string_2": [
- "1257",
- 0
- ],
- "delimiter": "/",
- "return_list": false
- }
- },
- "1259": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "638": {
- "class_type": "FluxKontextImageScale",
- "inputs": {
- "image": [
- "633",
- 0
- ]
- }
- },
- "642": {
- "class_type": "JoinStringMulti",
- "inputs": {
- "inputcount": 2,
- "string_1": [
- "646",
- 0
- ],
- "string_2": [
- "643",
- 0
- ],
- "delimiter": " ",
- "return_list": false
- }
- },
- "643": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "665": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "862": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "863": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "917": {
- "class_type": "JoinStringMulti",
- "inputs": {
- "inputcount": 2,
- "string_1": [
- "665",
- 0
- ],
- "string_2": [
- "665",
- 0
- ],
- "delimiter": "/",
- "return_list": false
- }
- },
- "633": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "658": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "666": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "864": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "865": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "918": {
- "class_type": "JoinStringMulti",
- "inputs": {
- "inputcount": 2,
- "string_1": [
- "666",
- 0
- ],
- "string_2": [
- "666",
- 0
- ],
- "delimiter": "/",
- "return_list": false
- }
- },
- "1207": {
- "class_type": "FluxKontextImageScale",
- "inputs": {
- "image": [
- "1030",
- 0
- ]
- }
- },
- "1048": {
- "class_type": "Label (rgthree)",
- "inputs": {}
- },
- "458": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "457": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "460": {
- "class_type": "FluxKontextImageScale",
- "inputs": {
- "image": [
- "455",
- 0
- ]
- }
- },
- "669": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "867": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "866": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "455": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "1118": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "1120": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "1119": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "1121": {
- "class_type": "FluxKontextImageScale",
- "inputs": {
- "image": [
- "1130",
- 0
- ]
- }
- },
- "1226": {
- "class_type": "FluxKontextImageScale",
- "inputs": {
- "image": [
- "1131",
- 0
- ]
- }
- },
- "1129": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "1123": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "1124": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "1128": {
- "class_type": "JoinStringMulti",
- "inputs": {
- "inputcount": 2,
- "string_1": [
- "1129",
- 0
- ],
- "string_2": [
- "1129",
- 0
- ],
- "delimiter": "/",
- "return_list": false
- }
- },
- "1131": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "667": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "870": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "871": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "921": {
- "class_type": "JoinStringMulti",
- "inputs": {
- "inputcount": 2,
- "string_1": [
- "667",
- 0
- ],
- "string_2": [
- "667",
- 0
- ],
- "delimiter": "/",
- "return_list": false
- }
- },
- "759": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "758": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "1265": {
- "class_type": "FluxKontextImageScale",
- "inputs": {
- "image": [
- "761",
- 0
- ]
- }
- },
- "1214": {
- "class_type": "FluxKontextImageScale",
- "inputs": {
- "image": [
- "769",
- 0
- ]
- }
- },
- "763": {
- "class_type": "FluxKontextImageScale",
- "inputs": {
- "image": [
- "762",
- 0
- ]
- }
- },
- "873": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "872": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "922": {
- "class_type": "JoinStringMulti",
- "inputs": {
- "inputcount": 2,
- "string_1": [
- "765",
- 0
- ],
- "string_2": [
- "765",
- 0
- ],
- "delimiter": "/",
- "return_list": false
- }
- },
- "765": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "1280": {
- "class_type": "SetNode",
- "inputs": {}
- },
- "319": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "1277": {
- "class_type": "SetNode",
- "inputs": {}
- },
- "1271": {
- "class_type": "SetNode",
- "inputs": {}
- },
- "943": {
- "class_type": "PrimitiveInt",
- "inputs": {
- "value": 2048
- }
- },
- "1273": {
- "class_type": "SetNode",
- "inputs": {}
- },
- "1267": {
- "class_type": "SetNode",
- "inputs": {}
- },
- "1174": {
- "class_type": "UpscaleModelLoader",
- "inputs": {
- "model_name": "4x-UltraSharp.pth"
- }
- },
- "1268": {
- "class_type": "SetNode",
- "inputs": {}
- },
- "1195": {
- "class_type": "ModelPatchLoader",
- "inputs": {
- "name": "uso-flux1-projector-v1.safetensors"
- }
- },
- "1269": {
- "class_type": "SetNode",
- "inputs": {}
- },
- "1270": {
- "class_type": "SetNode",
- "inputs": {}
- },
- "657": {
- "class_type": "JoinStringMulti",
- "inputs": {
- "inputcount": 2,
- "string_1": [
- "661",
- 0
- ],
- "string_2": [
- "658",
- 0
- ],
- "delimiter": " ",
- "return_list": false
- }
- },
- "360": {
- "class_type": "VAELoader",
- "inputs": {
- "vae_name": "qwen_image_vae.safetensors"
- }
- },
- "946": {
- "class_type": "DownloadAndLoadFlorence2Model",
- "inputs": {
- "model": "gokaygokay/Florence-2-Flux-Large",
- "precision": "fp16",
- "attention": "sdpa",
- "lora": false
- }
- },
- "819": {
- "class_type": "CheckpointLoaderSimple",
- "inputs": {
- "ckpt_name": "flux/flux1-dev-fp8.safetensors"
- }
- },
- "1196": {
- "class_type": "CLIPVisionLoader",
- "inputs": {
- "clip_name": "sigclip_vision_patch14_384.safetensors"
- }
- },
- "579": {
- "class_type": "Label (rgthree)",
- "inputs": {}
- },
- "1284": {
- "class_type": "Label (rgthree)",
- "inputs": {}
- },
- "1289": {
- "class_type": "Label (rgthree)",
- "inputs": {}
- },
- "1041": {
- "class_type": "Label (rgthree)",
- "inputs": {}
- },
- "1287": {
- "class_type": "Label (rgthree)",
- "inputs": {}
- },
- "1288": {
- "class_type": "MarkdownNote",
- "inputs": {}
- },
- "1290": {
- "class_type": "Label (rgthree)",
- "inputs": {}
- },
- "1291": {
- "class_type": "MarkdownNote",
- "inputs": {}
- },
- "1292": {
- "class_type": "Label (rgthree)",
- "inputs": {}
- },
- "1293": {
- "class_type": "MarkdownNote",
- "inputs": {}
- },
- "486": {
- "class_type": "ExpressionEditor",
- "inputs": {
- "rotate_pitch": -14,
- "rotate_yaw": -12.1,
- "rotate_roll": 0,
- "blink": -3.5,
- "eyebrow": 0,
- "wink": 0,
- "pupil_x": 0.1,
- "pupil_y": 0,
- "aaa": 0,
- "eee": 0,
- "woo": 0,
- "smile": -0.3,
- "src_ratio": 1,
- "sample_ratio": 1,
- "crop_factor": 1.5,
- "src_image": [
- "319",
- 0
- ]
- }
- },
- "1055": {
- "class_type": "Label (rgthree)",
- "inputs": {}
- },
- "1046": {
- "class_type": "Label (rgthree)",
- "inputs": {}
- },
- "652": {
- "class_type": "KSampler",
- "inputs": {
- "model": [
- "650",
- 0
- ],
- "seed": 1034973049061634,
- "steps": [
- "864",
- 0
- ],
- "cfg": [
- "865",
- 0
- ],
- "sampler_name": "fixed",
- "scheduler": 4,
- "positive": [
- "1365",
- 0
- ],
- "negative": [
- "1364",
- 0
- ],
- "latent_image": [
- "538",
- 0
- ],
- "denoise": 1
- }
- },
- "208": {
- "class_type": "SaveImage",
- "inputs": {
- "images": [
- "207",
- 0
- ],
- "filename_prefix": [
- "911",
- 0
- ]
- }
- },
- "1298": {
- "class_type": "SaveImage",
- "inputs": {
- "images": [
- "1299",
- 0
- ],
- "filename_prefix": [
- "1312",
- 0
- ]
- }
- },
- "1299": {
- "class_type": "VAEDecode",
- "inputs": {
- "samples": [
- "1302",
- 0
- ],
- "vae": [
- "1305",
- 0
- ]
- }
- },
- "1300": {
- "class_type": "EmptySD3LatentImage",
- "inputs": {
- "width": 1024,
- "height": 1024,
- "batch_size": 1
- }
- },
- "1302": {
- "class_type": "KSampler",
- "inputs": {
- "model": [
- "1306",
- 0
- ],
- "seed": 1034973049061637,
- "steps": [
- "1310",
- 0
- ],
- "cfg": [
- "1311",
- 0
- ],
- "sampler_name": "fixed",
- "scheduler": 4,
- "positive": [
- "1370",
- 0
- ],
- "negative": [
- "1371",
- 0
- ],
- "latent_image": [
- "1300",
- 0
- ],
- "denoise": 1
- }
- },
- "1304": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "1305": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "1306": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "1307": {
- "class_type": "FluxKontextImageScale",
- "inputs": {
- "image": [
- "1313",
- 0
- ]
- }
- },
- "1308": {
- "class_type": "FluxKontextImageScale",
- "inputs": {
- "image": [
- "1314",
- 0
- ]
- }
- },
- "1309": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "1310": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "1311": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "1312": {
- "class_type": "JoinStringMulti",
- "inputs": {
- "inputcount": 2,
- "string_1": [
- "1309",
- 0
- ],
- "string_2": [
- "1309",
- 0
- ],
- "delimiter": "/",
- "return_list": false
- }
- },
- "1313": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "1156": {
- "class_type": "LoraLoaderModelOnly",
- "inputs": {
- "model": [
- "819",
- 0
- ],
- "lora_name": "uso-flux1-dit-lora-v1.safetensors",
- "strength_model": 0.9
- }
- },
- "1295": {
- "class_type": "MarkdownNote",
- "inputs": {}
- },
- "1294": {
- "class_type": "Label (rgthree)",
- "inputs": {}
- },
- "1321": {
- "class_type": "Label (rgthree)",
- "inputs": {}
- },
- "1320": {
- "class_type": "MarkdownNote",
- "inputs": {}
- },
- "320": {
- "class_type": "Label (rgthree)",
- "inputs": {}
- },
- "997": {
- "class_type": "SaveImage",
- "inputs": {
- "images": [
- "213",
- 0
- ],
- "filename_prefix": [
- "998",
- 0
- ]
- }
- },
- "462": {
- "class_type": "SetNode",
- "inputs": {}
- },
- "1126": {
- "class_type": "SetNode",
- "inputs": {}
- },
- "1301": {
- "class_type": "SetNode",
- "inputs": {}
- },
- "671": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "764": {
- "class_type": "SetNode",
- "inputs": {}
- },
- "694": {
- "class_type": "SetNode",
- "inputs": {}
- },
- "707": {
- "class_type": "SetNode",
- "inputs": {}
- },
- "735": {
- "class_type": "SetNode",
- "inputs": {}
- },
- "1296": {
- "class_type": "Label (rgthree)",
- "inputs": {}
- },
- "1297": {
- "class_type": "Label (rgthree)",
- "inputs": {}
- },
- "592": {
- "class_type": "StringConstantMultiline",
- "inputs": {
- "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. ",
- "strip_newlines": true
- }
- },
- "199": {
- "class_type": "KSampler",
- "inputs": {
- "model": [
- "206",
- 0
- ],
- "seed": 1034973049061647,
- "steps": [
- "846",
- 0
- ],
- "cfg": [
- "853",
- 0
- ],
- "sampler_name": "fixed",
- "scheduler": 20,
- "positive": [
- "1356",
- 0
- ],
- "negative": [
- "1355",
- 0
- ],
- "latent_image": [
- "200",
- 0
- ],
- "denoise": 2.5
- }
- },
- "1253": {
- "class_type": "KSampler",
- "inputs": {
- "model": [
- "1249",
- 0
- ],
- "seed": 1034973049061637,
- "steps": [
- "1254",
- 0
- ],
- "cfg": [
- "1251",
- 0
- ],
- "sampler_name": "fixed",
- "scheduler": 4,
- "positive": [
- "1360",
- 0
- ],
- "negative": [
- "1361",
- 0
- ],
- "latent_image": [
- "1252",
- 0
- ],
- "denoise": 1
- }
- },
- "637": {
- "class_type": "KSampler",
- "inputs": {
- "model": [
- "635",
- 0
- ],
- "seed": 1034973049061639,
- "steps": [
- "862",
- 0
- ],
- "cfg": [
- "863",
- 0
- ],
- "sampler_name": "fixed",
- "scheduler": 4,
- "positive": [
- "1362",
- 0
- ],
- "negative": [
- "1363",
- 0
- ],
- "latent_image": [
- "634",
- 0
- ],
- "denoise": 1
- }
- },
- "515": {
- "class_type": "StringConstantMultiline",
- "inputs": {
- "string": "Create an image of this exact character in this style. ",
- "strip_newlines": true
- }
- },
- "373": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "368": {
- "class_type": "SaveImage",
- "inputs": {
- "images": [
- "369",
- 0
- ],
- "filename_prefix": [
- "913",
- 0
- ]
- }
- },
- "1202": {
- "class_type": "TextEncodeQwenImageEditPlus",
- "inputs": {
- "clip": [
- "424",
- 0
- ],
- "prompt": [
- "596",
- 0
- ],
- "vae": [
- "428",
- 0
- ],
- "image1": [
- "430",
- 0
- ],
- "image2": ""
- }
- },
- "1201": {
- "class_type": "TextEncodeQwenImageEditPlus",
- "inputs": {
- "clip": [
- "371",
- 0
- ],
- "prompt": [
- "592",
- 0
- ],
- "vae": [
- "372",
- 0
- ],
- "image1": [
- "374",
- 0
- ],
- "image2": ""
- }
- },
- "376": {
- "class_type": "KSampler",
- "inputs": {
- "model": [
- "367",
- 0
- ],
- "seed": 1034973049061636,
- "steps": [
- "854",
- 0
- ],
- "cfg": [
- "855",
- 0
- ],
- "sampler_name": "fixed",
- "scheduler": 20,
- "positive": [
- "1351",
- 0
- ],
- "negative": [
- "1352",
- 0
- ],
- "latent_image": [
- "370",
- 0
- ],
- "denoise": 1
- }
- },
- "1199": {
- "class_type": "TextEncodeQwenImageEditPlus",
- "inputs": {
- "clip": [
- "193",
- 0
- ],
- "prompt": [
- "513",
- 0
- ],
- "vae": [
- "202",
- 0
- ],
- "image1": [
- "1200",
- 0
- ],
- "image2": ""
- }
- },
- "193": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "1356": {
- "class_type": "FluxKontextMultiReferenceLatentMethod",
- "inputs": {
- "conditioning": [
- "1199",
- 0
- ],
- "reference_latents_method": "index_timestep_zero"
- }
- },
- "1355": {
- "class_type": "ConditioningZeroOut",
- "inputs": {
- "conditioning": [
- "1199",
- 0
- ]
- }
- },
- "371": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "424": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "1351": {
- "class_type": "FluxKontextMultiReferenceLatentMethod",
- "inputs": {
- "conditioning": [
- "1201",
- 0
- ],
- "reference_latents_method": "index_timestep_zero"
- }
- },
- "1352": {
- "class_type": "ConditioningZeroOut",
- "inputs": {
- "conditioning": [
- "1201",
- 0
- ]
- }
- },
- "1353": {
- "class_type": "FluxKontextMultiReferenceLatentMethod",
- "inputs": {
- "conditioning": [
- "1202",
- 0
- ],
- "reference_latents_method": "index_timestep_zero"
- }
- },
- "1354": {
- "class_type": "ConditioningZeroOut",
- "inputs": {
- "conditioning": [
- "1202",
- 0
- ]
- }
- },
- "1203": {
- "class_type": "TextEncodeQwenImageEditPlus",
- "inputs": {
- "clip": [
- "603",
- 0
- ],
- "prompt": [
- "613",
- 0
- ],
- "vae": [
- "607",
- 0
- ],
- "image1": [
- "609",
- 0
- ],
- "image2": ""
- }
- },
- "1357": {
- "class_type": "FluxKontextMultiReferenceLatentMethod",
- "inputs": {
- "conditioning": [
- "1203",
- 0
- ],
- "reference_latents_method": "index_timestep_zero"
- }
- },
- "1359": {
- "class_type": "ConditioningZeroOut",
- "inputs": {
- "conditioning": [
- "1203",
- 0
- ]
- }
- },
- "603": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "1261": {
- "class_type": "TextEncodeQwenImageEditPlus",
- "inputs": {
- "clip": [
- "1255",
- 0
- ],
- "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. ",
- "vae": [
- "1260",
- 0
- ],
- "image1": [
- "1258",
- 0
- ]
- }
- },
- "1255": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "1360": {
- "class_type": "FluxKontextMultiReferenceLatentMethod",
- "inputs": {
- "conditioning": [
- "1261",
- 0
- ],
- "reference_latents_method": "index_timestep_zero"
- }
- },
- "1361": {
- "class_type": "ConditioningZeroOut",
- "inputs": {
- "conditioning": [
- "1261",
- 0
- ]
- }
- },
- "1205": {
- "class_type": "TextEncodeQwenImageEditPlus",
- "inputs": {
- "clip": [
- "632",
- 0
- ],
- "prompt": [
- "646",
- 0
- ],
- "vae": [
- "636",
- 0
- ],
- "image1": [
- "638",
- 0
- ],
- "image2": ""
- }
- },
- "632": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "1363": {
- "class_type": "ConditioningZeroOut",
- "inputs": {
- "conditioning": [
- "1205",
- 0
- ]
- }
- },
- "1362": {
- "class_type": "FluxKontextMultiReferenceLatentMethod",
- "inputs": {
- "conditioning": [
- "1205",
- 0
- ],
- "reference_latents_method": "index_timestep_zero"
- }
- },
- "647": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "1364": {
- "class_type": "ConditioningZeroOut",
- "inputs": {
- "conditioning": [
- "1206",
- 0
- ]
- }
- },
- "1030": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "1206": {
- "class_type": "TextEncodeQwenImageEditPlus",
- "inputs": {
- "clip": [
- "647",
- 0
- ],
- "prompt": [
- "657",
- 0
- ],
- "vae": [
- "651",
- 0
- ],
- "image1": [
- "653",
- 0
- ],
- "image2": [
- "1207",
- 0
- ],
- "image3": ""
- }
- },
- "1365": {
- "class_type": "FluxKontextMultiReferenceLatentMethod",
- "inputs": {
- "conditioning": [
- "1206",
- 0
- ],
- "reference_latents_method": "index_timestep_zero"
- }
- },
- "648": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "653": {
- "class_type": "FluxKontextImageScale",
- "inputs": {
- "image": [
- "648",
- 0
- ]
- }
- },
- "1208": {
- "class_type": "TextEncodeQwenImageEditPlus",
- "inputs": {
- "clip": [
- "454",
- 0
- ],
- "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. ",
- "vae": [
- "458",
- 0
- ],
- "image1": [
- "460",
- 0
- ]
- }
- },
- "454": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "1366": {
- "class_type": "ConditioningZeroOut",
- "inputs": {
- "conditioning": [
- "1208",
- 0
- ]
- }
- },
- "1367": {
- "class_type": "FluxKontextMultiReferenceLatentMethod",
- "inputs": {
- "conditioning": [
- "1208",
- 0
- ],
- "reference_latents_method": "index_timestep_zero"
- }
- },
- "1130": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "1369": {
- "class_type": "FluxKontextMultiReferenceLatentMethod",
- "inputs": {
- "conditioning": [
- "1225",
- 0
- ],
- "reference_latents_method": "index_timestep_zero"
- }
- },
- "1368": {
- "class_type": "ConditioningZeroOut",
- "inputs": {
- "conditioning": [
- "1225",
- 0
- ]
- }
- },
- "1314": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "1370": {
- "class_type": "FluxKontextMultiReferenceLatentMethod",
- "inputs": {
- "conditioning": [
- "1303",
- 0
- ],
- "reference_latents_method": "index_timestep_zero"
- }
- },
- "1303": {
- "class_type": "TextEncodeQwenImageEditPlus",
- "inputs": {
- "clip": [
- "1304",
- 0
- ],
- "prompt": "Place this person in a subway train, she is holding a brown bag. Keep the characters clothes and style exactly the same.",
- "vae": [
- "1305",
- 0
- ],
- "image1": [
- "1307",
- 0
- ],
- "image2": [
- "1308",
- 0
- ]
- }
- },
- "1371": {
- "class_type": "ConditioningZeroOut",
- "inputs": {
- "conditioning": [
- "1303",
- 0
- ]
- }
- },
- "511": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "1373": {
- "class_type": "ConditioningZeroOut",
- "inputs": {
- "conditioning": [
- "1210",
- 0
- ]
- }
- },
- "465": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "769": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "762": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "761": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "1374": {
- "class_type": "FluxKontextMultiReferenceLatentMethod",
- "inputs": {
- "conditioning": [
- "1213",
- 0
- ],
- "reference_latents_method": "index_timestep_zero"
- }
- },
- "1375": {
- "class_type": "ConditioningZeroOut",
- "inputs": {
- "conditioning": [
- "1213",
- 0
- ]
- }
- },
- "757": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "1225": {
- "class_type": "TextEncodeQwenImageEditPlus",
- "inputs": {
- "clip": [
- "1118",
- 0
- ],
- "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.",
- "vae": [
- "1120",
- 0
- ],
- "image1": [
- "1121",
- 0
- ],
- "image2": [
- "1226",
- 0
- ]
- }
- },
- "1213": {
- "class_type": "TextEncodeQwenImageEditPlus",
- "inputs": {
- "clip": [
- "757",
- 0
- ],
- "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.",
- "vae": [
- "759",
- 0
- ],
- "image1": [
- "1265",
- 0
- ],
- "image2": [
- "763",
- 0
- ]
- }
- },
- "1377": {
- "class_type": "ConditioningZeroOut",
- "inputs": {
- "conditioning": [
- "1215",
- 0
- ]
- }
- },
- "1376": {
- "class_type": "FluxKontextMultiReferenceLatentMethod",
- "inputs": {
- "conditioning": [
- "1215",
- 0
- ],
- "reference_latents_method": "index_timestep_zero"
- }
- },
- "1215": {
- "class_type": "TextEncodeQwenImageEditPlus",
- "inputs": {
- "clip": [
- "687",
- 0
- ],
- "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.",
- "vae": [
- "689",
- 0
- ],
- "image2": [
- "1216",
- 0
- ],
- "image3": [
- "1217",
- 0
- ]
- }
- },
- "687": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "689": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "688": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "1216": {
- "class_type": "FluxKontextImageScale",
- "inputs": {
- "image": [
- "692",
- 0
- ]
- }
- },
- "695": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "874": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "1217": {
- "class_type": "FluxKontextImageScale",
- "inputs": {
- "image": [
- "1018",
- 0
- ]
- }
- },
- "875": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "1018": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "692": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "1380": {
- "class_type": "FluxKontextMultiReferenceLatentMethod",
- "inputs": {
- "conditioning": [
- "1218",
- 0
- ],
- "reference_latents_method": "index_timestep_zero"
- }
- },
- "1218": {
- "class_type": "TextEncodeQwenImageEditPlus",
- "inputs": {
- "clip": [
- "700",
- 0
- ],
- "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.",
- "vae": [
- "702",
- 0
- ],
- "image1": [
- "706",
- 0
- ],
- "image2": [
- "1219",
- 0
- ]
- }
- },
- "1379": {
- "class_type": "ConditioningZeroOut",
- "inputs": {
- "conditioning": [
- "1218",
- 0
- ]
- }
- },
- "700": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "702": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "701": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "705": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "1020": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "706": {
- "class_type": "FluxKontextImageScale",
- "inputs": {
- "image": [
- "705",
- 0
- ]
- }
- },
- "1219": {
- "class_type": "FluxKontextImageScale",
- "inputs": {
- "image": [
- "1020",
- 0
- ]
- }
- },
- "708": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "924": {
- "class_type": "JoinStringMulti",
- "inputs": {
- "inputcount": 2,
- "string_1": [
- "708",
- 0
- ],
- "string_2": [
- "708",
- 0
- ],
- "delimiter": "/",
- "return_list": false
- }
- },
- "736": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "878": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "879": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "925": {
- "class_type": "JoinStringMulti",
- "inputs": {
- "inputcount": 2,
- "string_1": [
- "736",
- 0
- ],
- "string_2": [
- "736",
- 0
- ],
- "delimiter": "/",
- "return_list": false
- }
- },
- "1220": {
- "class_type": "TextEncodeQwenImageEditPlus",
- "inputs": {
- "clip": [
- "728",
- 0
- ],
- "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. ",
- "vae": [
- "730",
- 0
- ],
- "image1": [
- "734",
- 0
- ],
- "image2": [
- "1221",
- 0
- ]
- }
- },
- "728": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "1210": {
- "class_type": "TextEncodeQwenImageEditPlus",
- "inputs": {
- "clip": [
- "465",
- 0
- ],
- "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.",
- "vae": [
- "469",
- 0
- ],
- "image1": [
- "471",
- 0
- ],
- "image2": [
- "1391",
- 0
- ]
- }
- },
- "1372": {
- "class_type": "FluxKontextMultiReferenceLatentMethod",
- "inputs": {
- "conditioning": [
- "1210",
- 0
- ],
- "reference_latents_method": "index_timestep_zero"
- }
- },
- "1032": {
- "class_type": "Label (rgthree)",
- "inputs": {}
- },
- "1127": {
- "class_type": "KSampler",
- "inputs": {
- "model": [
- "1119",
- 0
- ],
- "seed": 1034973049061637,
- "steps": [
- "1123",
- 0
- ],
- "cfg": [
- "1124",
- 0
- ],
- "sampler_name": "fixed",
- "scheduler": 4,
- "positive": [
- "1369",
- 0
- ],
- "negative": [
- "1368",
- 0
- ],
- "latent_image": [
- "1125",
- 0
- ],
- "denoise": 1
- }
- },
- "471": {
- "class_type": "FluxKontextImageScale",
- "inputs": {
- "image": [
- "511",
- 0
- ]
- }
- },
- "466": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "1391": {
- "class_type": "FluxKontextImageScale",
- "inputs": {
- "image": [
- "466",
- 0
- ]
- }
- },
- "333": {
- "class_type": "Label (rgthree)",
- "inputs": {}
- },
- "1382": {
- "class_type": "ConditioningZeroOut",
- "inputs": {
- "conditioning": [
- "1220",
- 0
- ]
- }
- },
- "1381": {
- "class_type": "FluxKontextMultiReferenceLatentMethod",
- "inputs": {
- "conditioning": [
- "1220",
- 0
- ],
- "reference_latents_method": "index_timestep_zero"
- }
- },
- "732": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "734": {
- "class_type": "FluxKontextImageScale",
- "inputs": {
- "image": [
- "732",
- 0
- ]
- }
- },
- "733": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "1221": {
- "class_type": "FluxKontextImageScale",
- "inputs": {
- "image": [
- "733",
- 0
- ]
- }
- },
- "576": {
- "class_type": "Label (rgthree)",
- "inputs": {}
- },
- "1397": {
- "class_type": "ImageScaleToMaxDimension",
- "inputs": {
- "image": [
- "1398",
- 0
- ],
- "upscale_method": "lanczos",
- "largest_size": 512
- }
- },
- "1398": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "1399": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "1400": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "1401": {
- "class_type": "VAEEncode",
- "inputs": {
- "pixels": [
- "1409",
- 0
- ],
- "vae": [
- "1418",
- 0
- ]
- }
- },
- "1402": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "1403": {
- "class_type": "JoinStrings",
- "inputs": {
- "string1": [
- "1404",
- 0
- ],
- "string2": [
- "1413",
- 2
- ],
- "delimiter": ", "
- }
- },
- "1404": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "1405": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "1406": {
- "class_type": "CLIPTextEncode",
- "inputs": {
- "text": [
- "1407",
- 0
- ],
- "clip": [
- "1420",
- 0
- ]
- }
- },
- "1407": {
- "class_type": "JoinStringMulti",
- "inputs": {
- "inputcount": 3,
- "string_1": [
- "1405",
- 0
- ],
- "string_2": [
- "1428",
- 0
- ],
- "delimiter": ",",
- "return_list": false
- }
- },
- "1408": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "1414": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "1415": {
- "class_type": "fc61533f-1a80-4eed-8e66-73efca366e9d",
- "inputs": {}
- },
- "1416": {
- "class_type": "ConditioningZeroOut",
- "inputs": {
- "conditioning": [
- "1406",
- 0
- ]
- }
- },
- "1417": {
- "class_type": "VAEEncode",
- "inputs": {
- "pixels": [
- "1397",
- 0
- ],
- "vae": [
- "1418",
- 0
- ]
- }
- },
- "1418": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "1419": {
- "class_type": "d5792eaf-f243-43ae-9d4f-f37355b8d408",
- "inputs": {}
- },
- "1420": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "1421": {
- "class_type": "VAEDecode",
- "inputs": {
- "samples": [
- "1424",
- 0
- ],
- "vae": [
- "1402",
- 0
- ]
- }
- },
- "1422": {
- "class_type": "PreviewImage",
- "inputs": {
- "images": [
- "1439",
- 0
- ]
- }
- },
- "1425": {
- "class_type": "SaveImage",
- "inputs": {
- "images": "RunComfy_examples_1384_22",
- "filename_prefix": [
- "1435",
- 0
- ]
- }
- },
- "1426": {
- "class_type": "Label (rgthree)",
- "inputs": {}
- },
- "1432": {
- "class_type": "Label (rgthree)",
- "inputs": {}
- },
- "1434": {
- "class_type": "Label (rgthree)",
- "inputs": {}
- },
- "1319": {
- "class_type": "UltralyticsDetectorProvider",
- "inputs": {
- "model_name": "bbox/face_yolov8m.pt"
- }
- },
- "1413": {
- "class_type": "Florence2Run",
- "inputs": {
- "image": [
- "1396",
- 0
- ],
- "florence2_model": [
- "1436",
- 0
- ],
- "text_input": "",
- "task": "more_detailed_caption",
- "fill_mask": true,
- "keep_model_loaded": false,
- "max_new_tokens": 1024,
- "num_beams": 3,
- "do_sample": true,
- "output_mask_select": "",
- "seed": 1
- }
- },
- "1436": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "1047": {
- "class_type": "Label (rgthree)",
- "inputs": {}
- },
- "1439": {
- "class_type": "easy cleanGpuUsed",
- "inputs": {
- "anything": [
- "1412",
- 0
- ]
- }
- },
- "850": {
- "class_type": "PrimitiveFloat",
- "inputs": {
- "value": 1
- }
- },
- "844": {
- "class_type": "PrimitiveInt",
- "inputs": {
- "value": 4
- }
- },
- "1428": {
- "class_type": "PrimitiveStringMultiline",
- "inputs": {
- "value": ""
- }
- },
- "1410": {
- "class_type": "ImageUpscaleWithModel",
- "inputs": {
- "upscale_model": [
- "1411",
- 0
- ],
- "image": [
- "1396",
- 0
- ]
- }
- },
- "1409": {
- "class_type": "ImageResizeKJv2",
- "inputs": {
- "image": [
- "1410",
- 0
- ],
- "width": [
- "1408",
- 0
- ],
- "height": [
- "1408",
- 0
- ],
- "upscale_method": 512,
- "keep_proportion": 512,
- "pad_color": "lanczos",
- "crop_position": "stretch",
- "divisible_by": "0, 0, 0",
- "mask": "center",
- "device": 2
- }
- },
- "1411": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "1424": {
- "class_type": "KSamplerAdvanced",
- "inputs": {
- "model": [
- "1419",
- 0
- ],
- "add_noise": "enable",
- "noise_seed": 751745487044989,
- "steps": "fixed",
- "cfg": 20,
- "sampler_name": 1,
- "scheduler": "euler",
- "positive": [
- "1415",
- 0
- ],
- "negative": [
- "1416",
- 0
- ],
- "latent_image": [
- "1401",
- 0
- ],
- "start_at_step": "simple",
- "end_at_step": 17,
- "return_with_leftover_noise": 10000
- }
- },
- "1440": {
- "class_type": "SaveImageTextDataSetToFolder",
- "inputs": {
- "images": [
- "1421",
- 0
- ],
- "texts": [
- "1403",
- 0
- ],
- "folder_name": [
- "1442",
- 0
- ],
- "filename_prefix": [
- "1435",
- 0
- ]
- }
- },
- "1322": {
- "class_type": "Label (rgthree)",
- "inputs": {}
- },
- "362": {
- "class_type": "CLIPLoader",
- "inputs": {
- "clip_name": "qwen_2.5_vl_7b_fp8_scaled.safetensors",
- "type": "qwen_image",
- "device": "cpu"
- }
- },
- "547": {
- "class_type": "LoraLoaderModelOnly",
- "inputs": {
- "model": [
- "1114",
- 0
- ],
- "lora_name": "Qwen-Image-Edit-2511-Lightning-4steps-V1.0-bf16.safetensors",
- "strength_model": 1
- }
- },
- "546": {
- "class_type": "LoaderGGUF",
- "inputs": {
- "gguf_name": "gguf/qwen-image-edit-2511-Q5_1.gguf"
- }
- },
- "514": {
- "class_type": "StringConstantMultiline",
- "inputs": {
- "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, ",
- "strip_newlines": true
- }
- },
- "661": {
- "class_type": "StringConstantMultiline",
- "inputs": {
- "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. ",
- "strip_newlines": true
- }
- },
- "646": {
- "class_type": "StringConstantMultiline",
- "inputs": {
- "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. ",
- "strip_newlines": true
- }
- },
- "1396": {
- "class_type": "ImpactImageBatchToImageList",
- "inputs": {
- "image": [
- "1412",
- 0
- ]
- }
- },
- "1412": {
- "class_type": "VHS_LoadImagesPath",
- "inputs": {
- "directory": [
- "1395",
- 0
- ],
- "image_load_cap": null,
- "skip_first_images": null,
- "select_every_nth": null,
- "meta_batch": null
- }
- },
- "588": {
- "class_type": "PrimitiveStringMultiline",
- "inputs": {
- "value": "RunComfyCharacterPad"
- }
- },
- "1427": {
- "class_type": "Label (rgthree)",
- "inputs": {}
- },
- "1423": {
- "class_type": "ShowText|pysssss",
- "inputs": {
- "text": [
- "1403",
- 0
- ]
- }
- },
- "1442": {
- "class_type": "JoinStrings",
- "inputs": {
- "string1": [
- "1435",
- 0
- ],
- "string2": [
- "1441",
- 0
- ],
- "delimiter": "_"
- }
- },
- "1441": {
- "class_type": "PrimitiveString",
- "inputs": {
- "value": "dataset"
- }
- },
- "1435": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "1395": {
- "class_type": "JoinStringMulti",
- "inputs": {
- "inputcount": 2,
- "string_1": [
- "1394",
- 0
- ],
- "string_2": [
- "1393",
- 0
- ],
- "delimiter": "/",
- "return_list": false
- }
- },
- "1393": {
- "class_type": "GetNode",
- "inputs": {}
- },
- "1394": {
- "class_type": "PrimitiveStringMultiline",
- "inputs": {
- "value": "output"
- }
- },
- "919": {
- "class_type": "JoinStringMulti",
- "inputs": {
- "inputcount": 2,
- "string_1": [
- "669",
- 0
- ],
- "string_2": [
- "669",
- 0
- ],
- "delimiter": "/",
- "return_list": false
- }
- },
- "1430": {
- "class_type": "Image Comparer (rgthree)",
- "inputs": {
- "image_a": [
- "1396",
- 0
- ],
- "image_b": [
- "1421",
- 0
- ]
- }
- },
- "1016": {
- "class_type": "Fast Groups Muter (rgthree)",
- "inputs": {}
- }
- }
|