backup_tool_table.json 363 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387
  1. [
  2. {
  3. "id": "135 编辑器",
  4. "name": "135 编辑器",
  5. "version": "tao_dev_1",
  6. "introduction": "通过模板 ID 搜索功能(如160122、160116)快速调用预设医疗科普排版模板,替换文字和图片后一键导出",
  7. "tutorial": "",
  8. "input": "",
  9. "output": "",
  10. "updated_time": 1776667149,
  11. "status": "未接入"
  12. },
  13. {
  14. "id": "360AI批量抠图",
  15. "name": "360AI批量抠图",
  16. "version": "tao_dev_1",
  17. "introduction": "上传多张产品图后批量自动抠成白底图,适合电商场景快速产出标准化白底产品图",
  18. "tutorial": "",
  19. "input": "",
  20. "output": "",
  21. "updated_time": 1776667149,
  22. "status": "未接入"
  23. },
  24. {
  25. "id": "720yun 平台",
  26. "name": "720yun 平台",
  27. "version": "tao_dev_1",
  28. "introduction": "将全景图上传至 720yun 平台,自动适配为可在线交互浏览的 360 度全景展示",
  29. "tutorial": "",
  30. "input": "",
  31. "output": "",
  32. "updated_time": 1776667149,
  33. "status": "未接入"
  34. },
  35. {
  36. "id": "AdFlow(节点式视频广告平台)",
  37. "name": "AdFlow(节点式视频广告平台)",
  38. "version": "tao_dev_1",
  39. "introduction": "上传产品照片 → 视频节点(生成产品展示视频)→ 配音节点(AI 配音生成)→ 动态图形节点(添加动态文字/图形)→ 最终编辑节点(合成输出),全部在一个画布上以节点连接方式完成",
  40. "tutorial": "",
  41. "input": "",
  42. "output": "",
  43. "updated_time": 1776667149,
  44. "status": "未接入"
  45. },
  46. {
  47. "id": "Adobe After Effects",
  48. "name": "Adobe After Effects",
  49. "version": "tao_dev_1",
  50. "introduction": "创建 Image Scribble Animation(图像涂鸦动画),通过路径动画使手绘线条在真实图像上逐帧显现,配合纸张纹理动画和电影级照明效果",
  51. "tutorial": "",
  52. "input": "",
  53. "output": "",
  54. "updated_time": 1776667149,
  55. "status": "未接入"
  56. },
  57. {
  58. "id": "Adobe Illustrator + Randomus Scripts",
  59. "name": "Adobe Illustrator + Randomus Scripts",
  60. "version": "tao_dev_1",
  61. "introduction": "使用Illustrator的网格工具配合Randomus脚本自动生成正方形/矩形Bento Grid布局,支持画板设置和格子内容填充",
  62. "tutorial": "",
  63. "input": "",
  64. "output": "",
  65. "updated_time": 1776667149,
  66. "status": "未接入"
  67. },
  68. {
  69. "id": "Adobe Illustrator(矩形网格工具)",
  70. "name": "Adobe Illustrator(矩形网格工具)",
  71. "version": "tao_dev_1",
  72. "introduction": "使用矩形网格工具绘制参考线,批量置入图片并通过对齐工具自动排列到网格区域",
  73. "tutorial": "",
  74. "input": "",
  75. "output": "",
  76. "updated_time": 1776667149,
  77. "status": "未接入"
  78. },
  79. {
  80. "id": "AdvancedLivePortrait WebUI",
  81. "name": "AdvancedLivePortrait WebUI",
  82. "version": "tao_dev_1",
  83. "introduction": "启动WebUI → 上传人物图像 → 选择表情控制模式(滑块手动调整或参考视频驱动)→ 调整眼睛开合度、嘴巴张开度、眉毛角度等参数 → 实时预览并输出;支持所见即所得的实时表情同步",
  84. "tutorial": "",
  85. "input": "",
  86. "output": "",
  87. "updated_time": 1776666487,
  88. "status": "未接入"
  89. },
  90. {
  91. "id": "Adventure AI Relight",
  92. "name": "Adventure AI Relight",
  93. "version": "tao_dev_1",
  94. "introduction": "专用Relight工具,可完全改变图像的灯光方向、颜色,甚至将白天变成夜晚",
  95. "tutorial": "",
  96. "input": "",
  97. "output": "",
  98. "updated_time": 1776667149,
  99. "status": "未接入"
  100. },
  101. {
  102. "id": "AE模板",
  103. "name": "AE模板",
  104. "version": "tao_dev_1",
  105. "introduction": "下载AE模板,导入素材图片/视频,选择宫格数量(4/9/16/25/36/49/64/81宫),调整转场过渡效果,导出成品",
  106. "tutorial": "",
  107. "input": "",
  108. "output": "",
  109. "updated_time": 1776666846,
  110. "status": "未接入"
  111. },
  112. {
  113. "id": "After Effects + Saber 插件",
  114. "name": "After Effects + Saber 插件",
  115. "version": "tao_dev_1",
  116. "introduction": "使用 AE 的 Saber 插件生成霓虹光效和流光线条动态背景,配合赛博朋克风格调色,输出静帧或动态背景素材",
  117. "tutorial": "",
  118. "input": "",
  119. "output": "",
  120. "updated_time": 1776667149,
  121. "status": "未接入"
  122. },
  123. {
  124. "id": "AI Carousel Builder(如 Gamma/Canva AI)",
  125. "name": "AI Carousel Builder(如 Gamma/Canva AI)",
  126. "version": "tao_dev_1",
  127. "introduction": "输入主题+语气提示词,AI扫描模板库匹配最佳布局,自动生成每张幻灯片的标题、内容和视觉设计,一键导出",
  128. "tutorial": "",
  129. "input": "",
  130. "output": "",
  131. "updated_time": 1776667149,
  132. "status": "未接入"
  133. },
  134. {
  135. "id": "AI(DeepSeek/ChatGPT)+ 剪映",
  136. "name": "AI(DeepSeek/ChatGPT)+ 剪映",
  137. "version": "tao_dev_1",
  138. "introduction": "使用 AI 整理和格式化原始数据,再导入剪映的数据图表功能,一键生成动态排行榜动画和数据图表动画,支持导出视频",
  139. "tutorial": "",
  140. "input": "",
  141. "output": "",
  142. "updated_time": 1776667149,
  143. "status": "未接入"
  144. },
  145. {
  146. "id": "AIGC 通用工具(Liblib AI / Stable Diffusion)",
  147. "name": "AIGC 通用工具(Liblib AI / Stable Diffusion)",
  148. "version": "tao_dev_1",
  149. "introduction": "通过宇宙星空主题提示词(星尘、星云、银河、大气层光晕)生成宇宙级星空美学画面",
  150. "tutorial": "",
  151. "input": "",
  152. "output": "",
  153. "updated_time": 1776667149,
  154. "status": "未接入"
  155. },
  156. {
  157. "id": "AIMAGIC 视频工厂",
  158. "name": "AIMAGIC 视频工厂",
  159. "version": "tao_dev_1",
  160. "introduction": "自动生成脚本-分镜-视频全流程,一键完成从主题到成片",
  161. "tutorial": "",
  162. "input": "",
  163. "output": "",
  164. "updated_time": 1776666846,
  165. "status": "未接入"
  166. },
  167. {
  168. "id": "AI一句话P图",
  169. "name": "AI一句话P图",
  170. "version": "tao_dev_1",
  171. "introduction": "上传美甲图和手部图,输入提示词套版('将图1美甲按从左到右精准贴合在手指上'),生成高清穿戴效果图",
  172. "tutorial": "",
  173. "input": "",
  174. "output": "",
  175. "updated_time": 1776667149,
  176. "status": "未接入"
  177. },
  178. {
  179. "id": "AI 信息可视化工具(如 Napkin.ai、Gamma)",
  180. "name": "AI 信息可视化工具(如 Napkin.ai、Gamma)",
  181. "version": "tao_dev_1",
  182. "introduction": "输入文字描述或数据,自动选择合适的图表类型并生成可视化图表,支持多种图表风格",
  183. "tutorial": "",
  184. "input": "",
  185. "output": "",
  186. "updated_time": 1776666846,
  187. "status": "未接入"
  188. },
  189. {
  190. "id": "AI信息图生成工具(如Canva AI、美图设计室AI等)",
  191. "name": "AI信息图生成工具(如Canva AI、美图设计室AI等)",
  192. "version": "tao_dev_1",
  193. "introduction": "输入结构化文本内容和层级标记,AI自动应用版式模板,生成具有层级关系的信息图",
  194. "tutorial": "",
  195. "input": "",
  196. "output": "",
  197. "updated_time": 1776667149,
  198. "status": "未接入"
  199. },
  200. {
  201. "id": "AI 图像局部重绘工具",
  202. "name": "AI 图像局部重绘工具",
  203. "version": "tao_dev_1",
  204. "introduction": "对服饰区域进行局部重绘,保持角色其他部分不变",
  205. "tutorial": "",
  206. "input": "",
  207. "output": "",
  208. "updated_time": 1776666846,
  209. "status": "未接入"
  210. },
  211. {
  212. "id": "AI 图像生成(Prompt 工程)",
  213. "name": "AI 图像生成(Prompt 工程)",
  214. "version": "tao_dev_1",
  215. "introduction": "在提示词中加入 'low-key lighting'、'dark background'、'high contrast'、'chiaroscuro'、'dramatic lighting' 等关键词,配合具体的亮色描述如 'vibrant red'、'glowing orange light'",
  216. "tutorial": "",
  217. "input": "",
  218. "output": "",
  219. "updated_time": 1776667149,
  220. "status": "未接入"
  221. },
  222. {
  223. "id": "AI大模型(Gemini/ChatGPT)辅助分镜逻辑构建",
  224. "name": "AI大模型(Gemini/ChatGPT)辅助分镜逻辑构建",
  225. "version": "tao_dev_1",
  226. "introduction": "使用Gemini构建信息分镜逻辑,将复杂信息拆解为多个独立模块,规划各模块在画面中的位置和连接关系",
  227. "tutorial": "",
  228. "input": "",
  229. "output": "",
  230. "updated_time": 1776667149,
  231. "status": "未接入"
  232. },
  233. {
  234. "id": "AI大模型构图推荐(ChatGPT/Gemini)",
  235. "name": "AI大模型构图推荐(ChatGPT/Gemini)",
  236. "version": "tao_dev_1",
  237. "introduction": "向AI描述图片数量和内容主次,AI根据视觉设计原则推荐最适合的构图模式,并给出具体的图片放置建议(哪张放C位/哪张放四角)",
  238. "tutorial": "",
  239. "input": "",
  240. "output": "",
  241. "updated_time": 1776667149,
  242. "status": "未接入"
  243. },
  244. {
  245. "id": "AI宠物写真工具(如小云雀/Linkfox)",
  246. "name": "AI宠物写真工具(如小云雀/Linkfox)",
  247. "version": "tao_dev_1",
  248. "introduction": "内置职业主题选项(管家/医生/画家/甜品师等),用户选择主题后AI自动生成完整职业写真,10秒出图",
  249. "tutorial": "",
  250. "input": "",
  251. "output": "",
  252. "updated_time": 1776667149,
  253. "status": "未接入"
  254. },
  255. {
  256. "id": "AI工具+信息可视化网站",
  257. "name": "AI工具+信息可视化网站",
  258. "version": "tao_dev_1",
  259. "introduction": "借用AI工具和专业信息可视化网站,输入结构化数据后自动生成图表,10分钟内产出可视化海报,适合设计小白",
  260. "tutorial": "",
  261. "input": "",
  262. "output": "",
  263. "updated_time": 1776667149,
  264. "status": "未接入"
  265. },
  266. {
  267. "id": "AI 建模工具(批量)",
  268. "name": "AI 建模工具(批量)",
  269. "version": "tao_dev_1",
  270. "introduction": "AI 生成多个模型→减面优化→UV 展开→烘焙贴图到一张 4096 图→拆分资产→引擎展示,提升游戏性能",
  271. "tutorial": "",
  272. "input": "",
  273. "output": "",
  274. "updated_time": 1776666846,
  275. "status": "未接入"
  276. },
  277. {
  278. "id": "AI提示词配色控制(Midjourney/Flux)",
  279. "name": "AI提示词配色控制(Midjourney/Flux)",
  280. "version": "tao_dev_1",
  281. "introduction": "在提示词中指定配色主题(如'pastel pink palette'/'monochrome black and white'),AI生成的多格子画面自动遵循指定配色方案",
  282. "tutorial": "",
  283. "input": "",
  284. "output": "",
  285. "updated_time": 1776667149,
  286. "status": "未接入"
  287. },
  288. {
  289. "id": "AI 海报生成工具(如 Canva AI、Seedream)",
  290. "name": "AI 海报生成工具(如 Canva AI、Seedream)",
  291. "version": "tao_dev_1",
  292. "introduction": "通过提示词描述信息层级结构(如 'large title at top, subtitle below, icon bullet list in middle section'),AI 直接生成符合层级布局的海报",
  293. "tutorial": "",
  294. "input": "",
  295. "output": "",
  296. "updated_time": 1776667149,
  297. "status": "未接入"
  298. },
  299. {
  300. "id": "AI 海报设计工作流(反推公式)",
  301. "name": "AI 海报设计工作流(反推公式)",
  302. "version": "tao_dev_1",
  303. "introduction": "使用「反推公式 + 指令框架 + 文字设计参数」的结构化工作流,通过 AI 生图工具快速生成专业级海报",
  304. "tutorial": "",
  305. "input": "",
  306. "output": "",
  307. "updated_time": 1776667149,
  308. "status": "未接入"
  309. },
  310. {
  311. "id": "AI 生成工具(ComfyUI/Wan2.2)",
  312. "name": "AI 生成工具(ComfyUI/Wan2.2)",
  313. "version": "tao_dev_1",
  314. "introduction": "通过主题提示词序列驱动多帧画面生成,利用风格 LoRA 保持跨帧视觉一致性,配合 Wan2.2 Animate 实现帧间动态过渡",
  315. "tutorial": "",
  316. "input": "",
  317. "output": "",
  318. "updated_time": 1776667149,
  319. "status": "未接入"
  320. },
  321. {
  322. "id": "AI矢量图生成模型",
  323. "name": "AI矢量图生成模型",
  324. "version": "tao_dev_1",
  325. "introduction": "结合大语言模型的代码生成能力和图形设计知识,将自然语言描述转换为SVG代码,生成符合设计规范的矢量图形元素",
  326. "tutorial": "",
  327. "input": "",
  328. "output": "",
  329. "updated_time": 1776666846,
  330. "status": "未接入"
  331. },
  332. {
  333. "id": "AI视频合成工具",
  334. "name": "AI视频合成工具",
  335. "version": "tao_dev_1",
  336. "introduction": "自由更换视频背景,但存在光线映射、人物动作等局限性",
  337. "tutorial": "",
  338. "input": "",
  339. "output": "",
  340. "updated_time": 1776667149,
  341. "status": "未接入"
  342. },
  343. {
  344. "id": "AI 视频生成",
  345. "name": "AI 视频生成",
  346. "version": "tao_dev_1",
  347. "introduction": "使用 'golden stars rising'、'glitter particles'、'magic sparkles'、'dark background' 等关键词生成",
  348. "tutorial": "",
  349. "input": "",
  350. "output": "",
  351. "updated_time": 1776667149,
  352. "status": "未接入"
  353. },
  354. {
  355. "id": "AI 长图生成工具(如醒图、秀米 AI 版)",
  356. "name": "AI 长图生成工具(如醒图、秀米 AI 版)",
  357. "version": "tao_dev_1",
  358. "introduction": "输入文案内容和版面模板,AI 自动完成图文混排,支持图层分级二次编辑,5分钟内生成完整长图",
  359. "tutorial": "",
  360. "input": "",
  361. "output": "",
  362. "updated_time": 1776666846,
  363. "status": "未接入"
  364. },
  365. {
  366. "id": "Arcads AI",
  367. "name": "Arcads AI",
  368. "version": "tao_dev_1",
  369. "introduction": "编写广告脚本 → 选择 AI 演员 → 调整声音和情感 → 添加开箱镜头 → 在视频中展示产品,输出类似真实 TikTok 的 AI UGC 广告",
  370. "tutorial": "",
  371. "input": "",
  372. "output": "",
  373. "updated_time": 1776667149,
  374. "status": "未接入"
  375. },
  376. {
  377. "id": "Arrow 1.1工具",
  378. "name": "Arrow 1.1工具",
  379. "version": "tao_dev_1",
  380. "introduction": "基于提示词通过代码生成构建SVG矢量图,而非从像素近似。采用更接近设计师工作方式的生成逻辑,输出具有更好结构和细节美学的矢量图形,支持箭头等标注元素的精确生成",
  381. "tutorial": "",
  382. "input": "",
  383. "output": "",
  384. "updated_time": 1776666846,
  385. "status": "未接入"
  386. },
  387. {
  388. "id": "Banana2 + Coze 工作流",
  389. "name": "Banana2 + Coze 工作流",
  390. "version": "tao_dev_1",
  391. "introduction": "在 Coze 平台搭建工作流:视频输入节点→Banana2 视频理解/关键帧提取→LLM 文案提炼节点→图片生成节点→图文组合输出,实现抖音视频一键转小红书图文",
  392. "tutorial": "",
  393. "input": "",
  394. "output": "",
  395. "updated_time": 1776667149,
  396. "status": "未接入"
  397. },
  398. {
  399. "id": "beamerposter(学术海报场景)",
  400. "name": "beamerposter(学术海报场景)",
  401. "version": "tao_dev_1",
  402. "introduction": "使用 QR+logo macro 将二维码和 Logo 自动放置在底部专用区块,字体缩放自动处理",
  403. "tutorial": "",
  404. "input": "",
  405. "output": "",
  406. "updated_time": 1776667149,
  407. "status": "未接入"
  408. },
  409. {
  410. "id": "bili_015工具流",
  411. "name": "bili_015工具流",
  412. "version": "tao_dev_1",
  413. "introduction": "AI一键将白底图转换为办公室/草地/室内等场景效果图",
  414. "tutorial": "",
  415. "input": "",
  416. "output": "",
  417. "updated_time": 1776667149,
  418. "status": "未接入"
  419. },
  420. {
  421. "id": "bili/case_002_tool",
  422. "name": "bili/case_002_tool",
  423. "version": "tao_dev_1",
  424. "introduction": "根据表格数据和图片素材批量生成知识卡片",
  425. "tutorial": "",
  426. "input": "",
  427. "output": "",
  428. "updated_time": 1776667149,
  429. "status": "未接入"
  430. },
  431. {
  432. "id": "bili/case_007工具",
  433. "name": "bili/case_007工具",
  434. "version": "tao_dev_1",
  435. "introduction": "输入Markdown格式长文,自动分页生成多张3:4图片,自动生成页码序号,自定义背景、文字样式和排版风格",
  436. "tutorial": "",
  437. "input": "",
  438. "output": "",
  439. "updated_time": 1776666846,
  440. "status": "未接入"
  441. },
  442. {
  443. "id": "Blender Cycles",
  444. "name": "Blender Cycles",
  445. "version": "tao_dev_1",
  446. "introduction": "使用玻璃/水材质的transmission shader + caustics设置,配合高采样数渲染真实焦散效果",
  447. "tutorial": "",
  448. "input": "",
  449. "output": "",
  450. "updated_time": 1776667149,
  451. "status": "未接入"
  452. },
  453. {
  454. "id": "Blender Eevee/Cycles",
  455. "name": "Blender Eevee/Cycles",
  456. "version": "tao_dev_1",
  457. "introduction": "通过梯度纹理+发射着色器+透明度混合节点组合,在Eevee中实现风格化体积光;Cycles中使用体积散射材质+聚光灯实现物理级体积光渲染",
  458. "tutorial": "",
  459. "input": "",
  460. "output": "",
  461. "updated_time": 1776667149,
  462. "status": "未接入"
  463. },
  464. {
  465. "id": "BudgetPixel Camera Angles 功能",
  466. "name": "BudgetPixel Camera Angles 功能",
  467. "version": "tao_dev_1",
  468. "introduction": "上传单张人物图像,使用 Camera Angles 功能自动生成 multiple perspectives,保持角色一致性,无需重建整个场景",
  469. "tutorial": "",
  470. "input": "",
  471. "output": "",
  472. "updated_time": 1776667149,
  473. "status": "未接入"
  474. },
  475. {
  476. "id": "Canva",
  477. "name": "Canva",
  478. "version": "tao_dev_1",
  479. "introduction": "画布内多图层管理,支持拖拽调整图片位置与顺序",
  480. "tutorial": "",
  481. "input": "",
  482. "output": "",
  483. "updated_time": 1776667149,
  484. "status": "未接入"
  485. },
  486. {
  487. "id": "Canva AI(Bulk Create + Sheets)",
  488. "name": "Canva AI(Bulk Create + Sheets)",
  489. "version": "tao_dev_1",
  490. "introduction": "通过 Canva Sheets 数据连接,将多张图片批量填充到模板中的 Image Placeholder 和 Background Placeholder,一键生成多区域拼贴版式",
  491. "tutorial": "",
  492. "input": "",
  493. "output": "",
  494. "updated_time": 1776667149,
  495. "status": "未接入"
  496. },
  497. {
  498. "id": "Canva AI(Elements + Text)",
  499. "name": "Canva AI(Elements + Text)",
  500. "version": "tao_dev_1",
  501. "introduction": "在 Elements 面板搜索并添加定位图标、勾选框等图标,配合 Text Box 组合为标签组件,通过 Bulk Create 数据连接批量为每个区域填充不同标签内容",
  502. "tutorial": "",
  503. "input": "",
  504. "output": "",
  505. "updated_time": 1776667149,
  506. "status": "未接入"
  507. },
  508. {
  509. "id": "Canva AI(Sheets AI fill)",
  510. "name": "Canva AI(Sheets AI fill)",
  511. "version": "tao_dev_1",
  512. "introduction": "在 Canva Sheets 中选中空白单元格,使用 AI fill 功能根据已有数据上下文自动生成补全内容,填充后直接连接到 Bulk Create 模板进行批量渲染",
  513. "tutorial": "",
  514. "input": "",
  515. "output": "",
  516. "updated_time": 1776667149,
  517. "status": "未接入"
  518. },
  519. {
  520. "id": "Canva AI(图标+文字模板)",
  521. "name": "Canva AI(图标+文字模板)",
  522. "version": "tao_dev_1",
  523. "introduction": "使用预设的标签条模板(定位图标+文字框、勾选框+任务描述),通过数据连接批量替换每个标签的文字内容",
  524. "tutorial": "",
  525. "input": "",
  526. "output": "",
  527. "updated_time": 1776667149,
  528. "status": "未接入"
  529. },
  530. {
  531. "id": "Canva AI 排版",
  532. "name": "Canva AI 排版",
  533. "version": "tao_dev_1",
  534. "introduction": "使用 Canva 的智能布局功能,自动将多张照片按网格、卡片式、错位式等排版方式排布在同一版面内",
  535. "tutorial": "",
  536. "input": "",
  537. "output": "",
  538. "updated_time": 1776667149,
  539. "status": "未接入"
  540. },
  541. {
  542. "id": "Canva AI(模板 + 文字层级)",
  543. "name": "Canva AI(模板 + 文字层级)",
  544. "version": "tao_dev_1",
  545. "introduction": "使用 Canva 预设模板的分区结构,通过调整文字大小、色块背景、图标 bullet 实现信息层级分区,支持 STEP 步骤结构、编号列表、条列式等多种层级表达方式",
  546. "tutorial": "",
  547. "input": "",
  548. "output": "",
  549. "updated_time": 1776667149,
  550. "status": "未接入"
  551. },
  552. {
  553. "id": "Canva AI设计系统",
  554. "name": "Canva AI设计系统",
  555. "version": "tao_dev_1",
  556. "introduction": "通过模板预设字号层级(主标题/副标题/说明文字),AI自动应用到批量生成的内容中,保持视觉层次一致性",
  557. "tutorial": "",
  558. "input": "",
  559. "output": "",
  560. "updated_time": 1776667149,
  561. "status": "未接入"
  562. },
  563. {
  564. "id": "Canva Background Remover",
  565. "name": "Canva Background Remover",
  566. "version": "tao_dev_1",
  567. "introduction": "在Canva中选中图片后一键触发AI背景去除,结合Canva Sheets可批量处理多张产品图,输出适用于社交媒体的干净主体图",
  568. "tutorial": "",
  569. "input": "",
  570. "output": "",
  571. "updated_time": 1776667149,
  572. "status": "未接入"
  573. },
  574. {
  575. "id": "Canva Bulk Create",
  576. "name": "Canva Bulk Create",
  577. "version": "tao_dev_1",
  578. "introduction": "设置设计模板后连接Canva Sheets或Google Sheets数据源,自动生成独特的文本和图片变体,支持批量导出",
  579. "tutorial": "",
  580. "input": "",
  581. "output": "",
  582. "updated_time": 1776667149,
  583. "status": "未接入"
  584. },
  585. {
  586. "id": "Canva Elements库",
  587. "name": "Canva Elements库",
  588. "version": "tao_dev_1",
  589. "introduction": "从元素库中选择预设气泡形状,拖拽定位后添加文字,支持阴影和轮廓增加深度感(case_youtube_002)",
  590. "tutorial": "",
  591. "input": "",
  592. "output": "",
  593. "updated_time": 1776667149,
  594. "status": "未接入"
  595. },
  596. {
  597. "id": "Canva信息图表模板系统",
  598. "name": "Canva信息图表模板系统",
  599. "version": "tao_dev_1",
  600. "introduction": "使用Canva的信息图表模板,选择时间轴、流程图、数据图表等预设模块,通过拖拽方式组合成多格子信息可视化排版",
  601. "tutorial": "",
  602. "input": "",
  603. "output": "",
  604. "updated_time": 1776667149,
  605. "status": "未接入"
  606. },
  607. {
  608. "id": "Canva / 可画",
  609. "name": "Canva / 可画",
  610. "version": "tao_dev_1",
  611. "introduction": "使用模板库选择科普卡片版式,首图写标题配插画,内页参考AI排版,添加装饰素材(图标/贴纸/边框),手机预览检查,导出图片;支持自动调整设计尺寸",
  612. "tutorial": "",
  613. "input": "",
  614. "output": "",
  615. "updated_time": 1776667149,
  616. "status": "未接入"
  617. },
  618. {
  619. "id": "Canva 品牌套件",
  620. "name": "Canva 品牌套件",
  621. "version": "tao_dev_1",
  622. "introduction": "在 Canva 中设置品牌颜色、字体、Logo,所有海报模板自动应用品牌规范,批量生成时风格统一",
  623. "tutorial": "",
  624. "input": "",
  625. "output": "",
  626. "updated_time": 1776667149,
  627. "status": "未接入"
  628. },
  629. {
  630. "id": "Canva品牌配色系统",
  631. "name": "Canva品牌配色系统",
  632. "version": "tao_dev_1",
  633. "introduction": "使用Canva的品牌套件功能预设配色方案,一键将所有格子的颜色切换为指定主题色,支持粉色系/黑白系/蓝色系/黄色系等多种预设",
  634. "tutorial": "",
  635. "input": "",
  636. "output": "",
  637. "updated_time": 1776667149,
  638. "status": "未接入"
  639. },
  640. {
  641. "id": "Canva 批量创建功能",
  642. "name": "Canva 批量创建功能",
  643. "version": "tao_dev_1",
  644. "introduction": "在 Canva 中创建卡片模板并定义数据占位符,通过上传 CSV 数据表触发批量创建,自动将每行数据填充到对应模板字段并导出",
  645. "tutorial": "",
  646. "input": "",
  647. "output": "",
  648. "updated_time": 1776667149,
  649. "status": "未接入"
  650. },
  651. {
  652. "id": "Canva拖拽式框架系统",
  653. "name": "Canva拖拽式框架系统",
  654. "version": "tao_dev_1",
  655. "introduction": "使用Canva的Frame功能将任意形状转换为可编辑照片槽位,通过拖拽方式将图片放入格子,支持自定义框架形状和布局间距",
  656. "tutorial": "",
  657. "input": "",
  658. "output": "",
  659. "updated_time": 1776667149,
  660. "status": "未接入"
  661. },
  662. {
  663. "id": "Canva拖拽式照片槽位系统",
  664. "name": "Canva拖拽式照片槽位系统",
  665. "version": "tao_dev_1",
  666. "introduction": "通过Canva的editable photo slots(可编辑照片槽位)将图片拖入格子框架,自动适配格子尺寸,支持自定义形状框架(剪影、面部、动物轮廓等)内填充多张照片",
  667. "tutorial": "",
  668. "input": "",
  669. "output": "",
  670. "updated_time": 1776667149,
  671. "status": "未接入"
  672. },
  673. {
  674. "id": "Canva故事排版模板",
  675. "name": "Canva故事排版模板",
  676. "version": "tao_dev_1",
  677. "introduction": "使用Canva预设故事书页面模板,上方插画+下方文字说明区,支持动画场景添加,导出数字友好格式(case_youtube_006,case_youtube_007)",
  678. "tutorial": "",
  679. "input": "",
  680. "output": "",
  681. "updated_time": 1776667149,
  682. "status": "未接入"
  683. },
  684. {
  685. "id": "Canva文字效果面板",
  686. "name": "Canva文字效果面板",
  687. "version": "tao_dev_1",
  688. "introduction": "在Canva中为文本添加Outline(轮廓/描边)效果,调整描边颜色和粗细,支持单层描边(case_bili_008,case_youtube_003)",
  689. "tutorial": "",
  690. "input": "",
  691. "output": "",
  692. "updated_time": 1776667149,
  693. "status": "未接入"
  694. },
  695. {
  696. "id": "Canva 模板 + AI 内容填充",
  697. "name": "Canva 模板 + AI 内容填充",
  698. "version": "tao_dev_1",
  699. "introduction": "选择适配的 Canva 模板,通过 AI 自动替换文字和图片内容,批量生成多板块版式(参考 case_youtube_003)",
  700. "tutorial": "",
  701. "input": "",
  702. "output": "",
  703. "updated_time": 1776667149,
  704. "status": "未接入"
  705. },
  706. {
  707. "id": "Canva 模板引擎",
  708. "name": "Canva 模板引擎",
  709. "version": "tao_dev_1",
  710. "introduction": "在 Canva 中使用人物信息卡片模板,为每个人物区域绑定姓名/职位文字框,支持批量替换内容",
  711. "tutorial": "",
  712. "input": "",
  713. "output": "",
  714. "updated_time": 1776667149,
  715. "status": "未接入"
  716. },
  717. {
  718. "id": "Canva 模板系统",
  719. "name": "Canva 模板系统",
  720. "version": "tao_dev_1",
  721. "introduction": "在 Canva 中创建信息卡片主模板,通过模板复制与批量替换机制实现系列卡片的快速复用",
  722. "tutorial": "",
  723. "input": "",
  724. "output": "",
  725. "updated_time": 1776667149,
  726. "status": "未接入"
  727. },
  728. {
  729. "id": "Canva背景移除+图层重排",
  730. "name": "Canva背景移除+图层重排",
  731. "version": "tao_dev_1",
  732. "introduction": "在Canva中切割照片主体,将文字图层置于主体图层之下,实现文字被主体遮挡的深度效果(case_youtube_002)",
  733. "tutorial": "",
  734. "input": "",
  735. "output": "",
  736. "updated_time": 1776667149,
  737. "status": "未接入"
  738. },
  739. {
  740. "id": "CapCut",
  741. "name": "CapCut",
  742. "version": "tao_dev_1",
  743. "introduction": "进行唇形同步和动画后期编辑",
  744. "tutorial": "",
  745. "input": "",
  746. "output": "",
  747. "updated_time": 1776666846,
  748. "status": "未接入"
  749. },
  750. {
  751. "id": "CapCut(剪映)",
  752. "name": "CapCut(剪映)",
  753. "version": "tao_dev_1",
  754. "introduction": "导入多张职业猫咪图像 → 使用拼图/画布功能设置网格布局 → 添加职业标签文字 → 导出为适合社交媒体的尺寸(1:1 或 4:3)",
  755. "tutorial": "",
  756. "input": "",
  757. "output": "",
  758. "updated_time": 1776667149,
  759. "status": "未接入"
  760. },
  761. {
  762. "id": "CapCut字幕动画功能",
  763. "name": "CapCut字幕动画功能",
  764. "version": "tao_dev_1",
  765. "introduction": "在CapCut中动画化字幕,支持平滑简约风格,通过高亮显示特定单词提升视觉吸引力(case_youtube_012)",
  766. "tutorial": "",
  767. "input": "",
  768. "output": "",
  769. "updated_time": 1776667149,
  770. "status": "未接入"
  771. },
  772. {
  773. "id": "CapCut文字描边功能",
  774. "name": "CapCut文字描边功能",
  775. "version": "tao_dev_1",
  776. "introduction": "在CapCut中为文字添加轮廓描边,支持描边颜色与背景匹配,结合发光效果创建电影感标题(case_youtube_010)",
  777. "tutorial": "",
  778. "input": "",
  779. "output": "",
  780. "updated_time": 1776667149,
  781. "status": "未接入"
  782. },
  783. {
  784. "id": "CapCut文字效果",
  785. "name": "CapCut文字效果",
  786. "version": "tao_dev_1",
  787. "introduction": "结合描边+发光创建电影感阴影标题效果(case_youtube_010)",
  788. "tutorial": "",
  789. "input": "",
  790. "output": "",
  791. "updated_time": 1776667149,
  792. "status": "未接入"
  793. },
  794. {
  795. "id": "CapCut模板",
  796. "name": "CapCut模板",
  797. "version": "tao_dev_1",
  798. "introduction": "用户上传猫咪照片后,CapCut模板(如ID: 2484878275)自动将猫咪合成到预制服装动画中,添加动态效果(如飘动披风),一键导出视频",
  799. "tutorial": "",
  800. "input": "",
  801. "output": "",
  802. "updated_time": 1776667149,
  803. "status": "未接入"
  804. },
  805. {
  806. "id": "ChatGPT",
  807. "name": "ChatGPT",
  808. "version": "tao_dev_1",
  809. "introduction": "使用单一主提示词生成完整故事(脚本+角色设计+逐场景提示词),应用中景规则保持面部一致性",
  810. "tutorial": "",
  811. "input": "",
  812. "output": "",
  813. "updated_time": 1776667149,
  814. "status": "未接入"
  815. },
  816. {
  817. "id": "ChatGPT 4o",
  818. "name": "ChatGPT 4o",
  819. "version": "tao_dev_1",
  820. "introduction": "使用与 Midjourney 相同的 character sheet 提示词结构,通过 GPT-4o 的图像生成能力直接输出多角度分割图",
  821. "tutorial": "",
  822. "input": "",
  823. "output": "",
  824. "updated_time": 1776667149,
  825. "status": "未接入"
  826. },
  827. {
  828. "id": "ChatGPT 4o / Gemini",
  829. "name": "ChatGPT 4o / Gemini",
  830. "version": "tao_dev_1",
  831. "introduction": "在图像生成提示词中直接描述气泡内容和位置(如'中文对话配大号黑体气泡'),由多模态模型直接渲染文字到画面中",
  832. "tutorial": "",
  833. "input": "",
  834. "output": "",
  835. "updated_time": 1776667149,
  836. "status": "未接入"
  837. },
  838. {
  839. "id": "ChatGPT 4o(GPT-4o图像生成)",
  840. "name": "ChatGPT 4o(GPT-4o图像生成)",
  841. "version": "tao_dev_1",
  842. "introduction": "上传生活照 → 系统自动转换为Q版萌妹风格 → 生成9宫格表情包,包含多种常用情绪;支持自定义情绪文本,高清画质适配微信",
  843. "tutorial": "",
  844. "input": "",
  845. "output": "",
  846. "updated_time": 1776666487,
  847. "status": "未接入"
  848. },
  849. {
  850. "id": "ChatGPT 4o / Nano Banana Pro(提示词工程)",
  851. "name": "ChatGPT 4o / Nano Banana Pro(提示词工程)",
  852. "version": "tao_dev_1",
  853. "introduction": "使用结构化提示词描述镜头参数(close-up shot、neutral and softly lit、100mm f/2.8 macro)、手部动作(hand holding、about to plug in、gently lifts her hand)、物品细节和背景处理",
  854. "tutorial": "",
  855. "input": "",
  856. "output": "",
  857. "updated_time": 1776667149,
  858. "status": "未接入"
  859. },
  860. {
  861. "id": "ChatGPT + Canva组合流程",
  862. "name": "ChatGPT + Canva组合流程",
  863. "version": "tao_dev_1",
  864. "introduction": "ChatGPT生成故事文案→Canva设计精美页面→为KDP/Etsy格式化故事书(case_youtube_007)",
  865. "tutorial": "",
  866. "input": "",
  867. "output": "",
  868. "updated_time": 1776667149,
  869. "status": "未接入"
  870. },
  871. {
  872. "id": "ChatGPT / Claude",
  873. "name": "ChatGPT / Claude",
  874. "version": "tao_dev_1",
  875. "introduction": "通过 system prompt 约束输出格式与风格,批量生成系列卡片所需的标题、副标题、标签文案",
  876. "tutorial": "",
  877. "input": "",
  878. "output": "",
  879. "updated_time": 1776667149,
  880. "status": "未接入"
  881. },
  882. {
  883. "id": "ChatGPT/Claude/Grok+GPT-4o",
  884. "name": "ChatGPT/Claude/Grok+GPT-4o",
  885. "version": "tao_dev_1",
  886. "introduction": "先用LLM生成四格漫画英文标题,再用AI根据标题套用提示词模板生成具体的图像提示词,最后输入GPT-4o画图",
  887. "tutorial": "",
  888. "input": "",
  889. "output": "",
  890. "updated_time": 1776667149,
  891. "status": "未接入"
  892. },
  893. {
  894. "id": "ChatGPT / DeepSeek",
  895. "name": "ChatGPT / DeepSeek",
  896. "version": "tao_dev_1",
  897. "introduction": "输入拟人化动物主题和故事结构模板,自动生成完整故事脚本和分场景视觉提示词",
  898. "tutorial": "",
  899. "input": "",
  900. "output": "",
  901. "updated_time": 1776666846,
  902. "status": "未接入"
  903. },
  904. {
  905. "id": "ChatGPT + Google Whisk AI + Hailuo AI",
  906. "name": "ChatGPT + Google Whisk AI + Hailuo AI",
  907. "version": "tao_dev_1",
  908. "introduction": "ChatGPT 生成故事和场景提示词 → Whisk 生成各场景图像 → Hailuo 转视频",
  909. "tutorial": "",
  910. "input": "",
  911. "output": "",
  912. "updated_time": 1776666846,
  913. "status": "未接入"
  914. },
  915. {
  916. "id": "ChatGPT / GPT-4",
  917. "name": "ChatGPT / GPT-4",
  918. "version": "tao_dev_1",
  919. "introduction": "输入食物名称列表 + 谐音梗规则 prompt,批量生成谐音文案;支持中英文混搭双关",
  920. "tutorial": "",
  921. "input": "",
  922. "output": "",
  923. "updated_time": 1776667149,
  924. "status": "未接入"
  925. },
  926. {
  927. "id": "ChatGPT / LLM API",
  928. "name": "ChatGPT / LLM API",
  929. "version": "tao_dev_1",
  930. "introduction": "将数据表格中的已有内容作为上下文输入,批量生成缺失的文案、标签、描述字段,导出后填入设计模板",
  931. "tutorial": "",
  932. "input": "",
  933. "output": "",
  934. "updated_time": 1776667149,
  935. "status": "未接入"
  936. },
  937. {
  938. "id": "ChatGPT + OpenArt AI",
  939. "name": "ChatGPT + OpenArt AI",
  940. "version": "tao_dev_1",
  941. "introduction": "使用 ChatGPT 编写包含多个角色的短故事,为每个场景生成 OpenArt AI 图像提示词,包含角色位置/动作、面部表情/情绪、一致背景、灯光/mood、重要道具",
  942. "tutorial": "",
  943. "input": "",
  944. "output": "",
  945. "updated_time": 1776666846,
  946. "status": "未接入"
  947. },
  948. {
  949. "id": "ChatGPT代码解释器",
  950. "name": "ChatGPT代码解释器",
  951. "version": "tao_dev_1",
  952. "introduction": "通过提示词指定'square fixed cover fit'(正方形固定封面适配)模式,AI自动计算每张图片的裁剪区域和填充方式,保持每个像素完整",
  953. "tutorial": "",
  954. "input": "",
  955. "output": "",
  956. "updated_time": 1776667149,
  957. "status": "未接入"
  958. },
  959. {
  960. "id": "ChatGPT代码解释器(Code Interpreter)",
  961. "name": "ChatGPT代码解释器(Code Interpreter)",
  962. "version": "tao_dev_1",
  963. "introduction": "通过自然语言提示词指定网格类型(2x2/masonry/bento),由AI自动计算格子坐标、间距、圆角参数,精确排列图像到可自定义网格,输出可直接下载的拼贴图",
  964. "tutorial": "",
  965. "input": "",
  966. "output": "",
  967. "updated_time": 1776667149,
  968. "status": "未接入"
  969. },
  970. {
  971. "id": "ChatGPT代码解释器图像切割",
  972. "name": "ChatGPT代码解释器图像切割",
  973. "version": "tao_dev_1",
  974. "introduction": "通过代码解释器提示词指定切割方式(2x2网格/4张纵向条状),AI自动计算切割坐标并输出多张格子图片,提供直接下载链接",
  975. "tutorial": "",
  976. "input": "",
  977. "output": "",
  978. "updated_time": 1776667149,
  979. "status": "未接入"
  980. },
  981. {
  982. "id": "ChatGPT代码解释器批量生成",
  983. "name": "ChatGPT代码解释器批量生成",
  984. "version": "tao_dev_1",
  985. "introduction": "通过代码解释器一次性生成多格子画面,在提示词中统一指定风格参数(色调/光照/画风),确保所有格子遵循相同的视觉规则",
  986. "tutorial": "",
  987. "input": "",
  988. "output": "",
  989. "updated_time": 1776667149,
  990. "status": "未接入"
  991. },
  992. {
  993. "id": "ChatGPT + 布局描述",
  994. "name": "ChatGPT + 布局描述",
  995. "version": "tao_dev_1",
  996. "introduction": "通过 ChatGPT 生成布局方案描述,再结合 Midjourney/Flux 生成对应构图的海报底图",
  997. "tutorial": "",
  998. "input": "",
  999. "output": "",
  1000. "updated_time": 1776667149,
  1001. "status": "未接入"
  1002. },
  1003. {
  1004. "id": "ChatGPT / 自定义 Chatbot",
  1005. "name": "ChatGPT / 自定义 Chatbot",
  1006. "version": "tao_dev_1",
  1007. "introduction": "使用特定提示词(如 'Transforms this photo into a 360° panoramic image... equirectangular viewing')并指定 2:1 或 3000x1500 分辨率生成球面全景图",
  1008. "tutorial": "",
  1009. "input": "",
  1010. "output": "",
  1011. "updated_time": 1776667149,
  1012. "status": "未接入"
  1013. },
  1014. {
  1015. "id": "ChatGPT + 设计规范生成",
  1016. "name": "ChatGPT + 设计规范生成",
  1017. "version": "tao_dev_1",
  1018. "introduction": "通过 ChatGPT 生成活动视觉规范文档(色值、字体规格、元素使用规则),作为后续生成的约束条件",
  1019. "tutorial": "",
  1020. "input": "",
  1021. "output": "",
  1022. "updated_time": 1776667149,
  1023. "status": "未接入"
  1024. },
  1025. {
  1026. "id": "ChatGPT/豆包+Flux/Midjourney",
  1027. "name": "ChatGPT/豆包+Flux/Midjourney",
  1028. "version": "tao_dev_1",
  1029. "introduction": "使用万能提示词公式:'把这张3D模型截图转换为顶级建筑景观摄影师拍摄的实景照片',填充光影效果(golden hour、夕阳侧光)、相机参数(Hasselblad X2D 100C, 38mm, f/5.6, ISO200)、材质细节描述",
  1030. "tutorial": "",
  1031. "input": "",
  1032. "output": "",
  1033. "updated_time": 1776667149,
  1034. "status": "未接入"
  1035. },
  1036. {
  1037. "id": "ChatGPT / 豆包(文本大模型)",
  1038. "name": "ChatGPT / 豆包(文本大模型)",
  1039. "version": "tao_dev_1",
  1040. "introduction": "上传参考截图,使用 Color Grade GPT 或自定义提示词让模型按照 'color grade: [GradeName] – shadows, midtones, highlights, skin tones, saturation, contrast, atmosphere, lighting, texture, tone curve' 格式输出 LUT 风格提示词片段",
  1041. "tutorial": "",
  1042. "input": "",
  1043. "output": "",
  1044. "updated_time": 1776667149,
  1045. "status": "未接入"
  1046. },
  1047. {
  1048. "id": "ChatGPT/豆包等大语言模型",
  1049. "name": "ChatGPT/豆包等大语言模型",
  1050. "version": "tao_dev_1",
  1051. "introduction": "使用「内搭+中层+外套」三层结构化提问法生成完整穿搭提示词,或套用【颜色+材质+款式】+【精致场景】+【拍摄效果】+【画质】公式模板",
  1052. "tutorial": "",
  1053. "input": "",
  1054. "output": "",
  1055. "updated_time": 1776667149,
  1056. "status": "未接入"
  1057. },
  1058. {
  1059. "id": "Cinema 4D + Redshift",
  1060. "name": "Cinema 4D + Redshift",
  1061. "version": "tao_dev_1",
  1062. "introduction": "启用Redshift的Caustic Photon Map,在材质中开启transmission(透射)和dispersion(色散),调整IOR(折射率)控制光线弯曲程度,渲染时间约8分钟(4070ti super)",
  1063. "tutorial": "",
  1064. "input": "",
  1065. "output": "",
  1066. "updated_time": 1776667149,
  1067. "status": "未接入"
  1068. },
  1069. {
  1070. "id": "Claude3.7 + SVG-Edit",
  1071. "name": "Claude3.7 + SVG-Edit",
  1072. "version": "tao_dev_1",
  1073. "introduction": "Claude3.7 Sonnet 直接生成 SVG 源代码,配合 SVG-Edit 在线工具可视化微调,减少图形调整时间",
  1074. "tutorial": "",
  1075. "input": "",
  1076. "output": "",
  1077. "updated_time": 1776667149,
  1078. "status": "未接入"
  1079. },
  1080. {
  1081. "id": "Claude (claude.ai)",
  1082. "name": "Claude (claude.ai)",
  1083. "version": "tao_dev_1",
  1084. "introduction": "创建 CLAUDE.md 品牌规则文件 + references 参考图文件夹 + skill 文件定义布局约束,Claude 从模板构建 HTML 信息图并自动遵循品牌规范",
  1085. "tutorial": "",
  1086. "input": "",
  1087. "output": "",
  1088. "updated_time": 1776667149,
  1089. "status": "未接入"
  1090. },
  1091. {
  1092. "id": "Claude(claude-skill: architecture-diagram-generator / fireworks-tech-graph)",
  1093. "name": "Claude(claude-skill: architecture-diagram-generator / fireworks-tech-graph)",
  1094. "version": "tao_dev_1",
  1095. "introduction": "安装对应 Claude Skill,用一句话描述系统组件和连接关系,AI 自动生成可直接运行的 SVG/HTML 文件或 Draw.io XML",
  1096. "tutorial": "",
  1097. "input": "",
  1098. "output": "",
  1099. "updated_time": 1776667149,
  1100. "status": "未接入"
  1101. },
  1102. {
  1103. "id": "Claude + CSS 变量系统",
  1104. "name": "Claude + CSS 变量系统",
  1105. "version": "tao_dev_1",
  1106. "introduction": "在 HTML 版式代码中定义 CSS 变量色彩系统(--primary-color, --accent-color),所有色块和背景统一引用,确保色彩一致性(参考 case_x_001 的品牌规则文件)",
  1107. "tutorial": "",
  1108. "input": "",
  1109. "output": "",
  1110. "updated_time": 1776667149,
  1111. "status": "未接入"
  1112. },
  1113. {
  1114. "id": "Claude / DeepSeek 多轮对话 + SVG/XML 代码更新",
  1115. "name": "Claude / DeepSeek 多轮对话 + SVG/XML 代码更新",
  1116. "version": "tao_dev_1",
  1117. "introduction": "在同一对话中持续追加修改提示词,AI 基于上下文输出更新后的完整代码;可通过增加提示词约束调整背景色、边距、分层颜色等细节",
  1118. "tutorial": "",
  1119. "input": "",
  1120. "output": "",
  1121. "updated_time": 1776667149,
  1122. "status": "未接入"
  1123. },
  1124. {
  1125. "id": "Claude Design",
  1126. "name": "Claude Design",
  1127. "version": "tao_dev_1",
  1128. "introduction": "通过自然语言描述海报需求,AI 自动生成包含多视觉元素的排版设计方案,支持迭代调整",
  1129. "tutorial": "",
  1130. "input": "",
  1131. "output": "",
  1132. "updated_time": 1776667149,
  1133. "status": "未接入"
  1134. },
  1135. {
  1136. "id": "Claude Design(迭代设计模式)",
  1137. "name": "Claude Design(迭代设计模式)",
  1138. "version": "tao_dev_1",
  1139. "introduction": "通过自然语言描述构图需求,AI 自动生成符合视觉平衡原则的排版方案,支持多轮迭代优化",
  1140. "tutorial": "",
  1141. "input": "",
  1142. "output": "",
  1143. "updated_time": 1776667149,
  1144. "status": "未接入"
  1145. },
  1146. {
  1147. "id": "Claude / GPT-4 等 LLM",
  1148. "name": "Claude / GPT-4 等 LLM",
  1149. "version": "tao_dev_1",
  1150. "introduction": "通过结构化提示词指令,将长文本拆解为 JSON 格式的板块结构,包含 title、key_points、illustration_prompt 字段",
  1151. "tutorial": "",
  1152. "input": "",
  1153. "output": "",
  1154. "updated_time": 1776667149,
  1155. "status": "未接入"
  1156. },
  1157. {
  1158. "id": "Claude + HTML/CSS 代码生成",
  1159. "name": "Claude + HTML/CSS 代码生成",
  1160. "version": "tao_dev_1",
  1161. "introduction": "通过 LLM 根据品牌规则和内容结构自动生成 HTML 版式代码,配合 Puppeteer 截图导出 PNG(参考 case_x_001 的 9 步工作流)",
  1162. "tutorial": "",
  1163. "input": "",
  1164. "output": "",
  1165. "updated_time": 1776667149,
  1166. "status": "未接入"
  1167. },
  1168. {
  1169. "id": "Claude + HTML模板工作流",
  1170. "name": "Claude + HTML模板工作流",
  1171. "version": "tao_dev_1",
  1172. "introduction": "在CLAUDE.md品牌规则文件中定义字号层级规范,Claude自动按规则构建HTML排版,QA Agent检查视觉层次是否达标(15+设计检查项)",
  1173. "tutorial": "",
  1174. "input": "",
  1175. "output": "",
  1176. "updated_time": 1776667149,
  1177. "status": "未接入"
  1178. },
  1179. {
  1180. "id": "Claude/LLM",
  1181. "name": "Claude/LLM",
  1182. "version": "tao_dev_1",
  1183. "introduction": "接收主题输入,根据品牌规则文件(CLAUDE.md)和布局约束技能文件,自动生成 HTML 格式的信息图版面代码",
  1184. "tutorial": "",
  1185. "input": "",
  1186. "output": "",
  1187. "updated_time": 1776667149,
  1188. "status": "未接入"
  1189. },
  1190. {
  1191. "id": "Claude/LLM + 版面生成",
  1192. "name": "Claude/LLM + 版面生成",
  1193. "version": "tao_dev_1",
  1194. "introduction": "通过 LLM 理解多图内容关系,根据排版规则(主次有别、建立规律等)自动生成 HTML/CSS 版面代码,实现多图智能排布",
  1195. "tutorial": "",
  1196. "input": "",
  1197. "output": "",
  1198. "updated_time": 1776667149,
  1199. "status": "未接入"
  1200. },
  1201. {
  1202. "id": "Claude.md 品牌规则 + 技能文件",
  1203. "name": "Claude.md 品牌规则 + 技能文件",
  1204. "version": "tao_dev_1",
  1205. "introduction": "在 CLAUDE.md 中定义内容拆解规则和板块模板,通过技能文件约束输出格式(参考 case_x_001 的品牌规则文件方法)",
  1206. "tutorial": "",
  1207. "input": "",
  1208. "output": "",
  1209. "updated_time": 1776667149,
  1210. "status": "未接入"
  1211. },
  1212. {
  1213. "id": "Claude + Puppeteer 工作流",
  1214. "name": "Claude + Puppeteer 工作流",
  1215. "version": "tao_dev_1",
  1216. "introduction": "Claude 根据品牌规则文件(CLAUDE.md)从模板构建HTML,QA Agent自动评分并迭代优化至95/100,Puppeteer导出PNG,全流程自动化",
  1217. "tutorial": "",
  1218. "input": "",
  1219. "output": "",
  1220. "updated_time": 1776667149,
  1221. "status": "未接入"
  1222. },
  1223. {
  1224. "id": "Claude Skill: architecture-diagram-generator",
  1225. "name": "Claude Skill: architecture-diagram-generator",
  1226. "version": "tao_dev_1",
  1227. "introduction": "输出独立 HTML 文件,内含纯 SVG,无 JS,可直接在浏览器运行",
  1228. "tutorial": "",
  1229. "input": "",
  1230. "output": "",
  1231. "updated_time": 1776667149,
  1232. "status": "未接入"
  1233. },
  1234. {
  1235. "id": "Claude Skill: fireworks-tech-graph",
  1236. "name": "Claude Skill: fireworks-tech-graph",
  1237. "version": "tao_dev_1",
  1238. "introduction": "支持 8 种技术图类型自动识别(RAG、Mem0、Agentic Search、Multi-Agent、Tool Call 等),智能分配语义形状和颜色编码(蓝色主流程、橙色控制流、绿色读写),支持 5 种视觉风格(玻璃态、Neon 等)",
  1239. "tutorial": "",
  1240. "input": "",
  1241. "output": "",
  1242. "updated_time": 1776667149,
  1243. "status": "未接入"
  1244. },
  1245. {
  1246. "id": "Claude Skill: markdown-viewer/skills",
  1247. "name": "Claude Skill: markdown-viewer/skills",
  1248. "version": "tao_dev_1",
  1249. "introduction": "从 100+ 图例和 6000+ 矢量图标库中自动匹配,支持架构图、流程图、工作流图、状态图、部署图、类图、用例图、信息图等多种类型",
  1250. "tutorial": "",
  1251. "input": "",
  1252. "output": "",
  1253. "updated_time": 1776667149,
  1254. "status": "未接入"
  1255. },
  1256. {
  1257. "id": "Claude 多模态理解 + Draw.io XML 生成",
  1258. "name": "Claude 多模态理解 + Draw.io XML 生成",
  1259. "version": "tao_dev_1",
  1260. "introduction": "将图片输入 Claude,提示其识别结构并输出 Draw.io XML 代码,再导入工具渲染",
  1261. "tutorial": "",
  1262. "input": "",
  1263. "output": "",
  1264. "updated_time": 1776667149,
  1265. "status": "未接入"
  1266. },
  1267. {
  1268. "id": "Clip_Studio_Paint",
  1269. "name": "Clip_Studio_Paint",
  1270. "version": "tao_dev_1",
  1271. "introduction": "渐变映射(Gradient Map)+ 色彩平衡(Color Balance)+ 叠加层(Overlay layer)+ 二值化(Binarization)组合工作流",
  1272. "tutorial": "",
  1273. "input": "",
  1274. "output": "",
  1275. "updated_time": 1776667149,
  1276. "status": "未接入"
  1277. },
  1278. {
  1279. "id": "ComfyUI + AI表情控制节点",
  1280. "name": "ComfyUI + AI表情控制节点",
  1281. "version": "tao_dev_1",
  1282. "introduction": "使用ComfyUI工作流中的AI表情控制节点,一键精准调整面部表情,适合AI绘画零基础用户",
  1283. "tutorial": "",
  1284. "input": "",
  1285. "output": "",
  1286. "updated_time": 1776667149,
  1287. "status": "未接入"
  1288. },
  1289. {
  1290. "id": "ComfyUI + AnimateDiff",
  1291. "name": "ComfyUI + AnimateDiff",
  1292. "version": "tao_dev_1",
  1293. "introduction": "AnimateDiff自定义节点 + ControlNet(保持建筑结构一致性)+ KSampler + 视频合成节点,实现室内漫游动画生成",
  1294. "tutorial": "",
  1295. "input": "",
  1296. "output": "",
  1297. "updated_time": 1776667149,
  1298. "status": "未接入"
  1299. },
  1300. {
  1301. "id": "ComfyUI + BiRefNet/RMBG节点",
  1302. "name": "ComfyUI + BiRefNet/RMBG节点",
  1303. "version": "tao_dev_1",
  1304. "introduction": "BiRefNet 或 RMBG-1.4 模型节点 + 图像输入 + Alpha通道输出工作流,支持毛发级精细抠图",
  1305. "tutorial": "",
  1306. "input": "",
  1307. "output": "",
  1308. "updated_time": 1776667149,
  1309. "status": "未接入"
  1310. },
  1311. {
  1312. "id": "ComfyUI(BiRefNet/RMBG节点)",
  1313. "name": "ComfyUI(BiRefNet/RMBG节点)",
  1314. "version": "tao_dev_1",
  1315. "introduction": "加载BiRefNet或RMBG-1.4背景去除模型节点,输入猫咪图片,自动输出带Alpha通道的透明底主体图,可批量处理",
  1316. "tutorial": "",
  1317. "input": "",
  1318. "output": "",
  1319. "updated_time": 1776667149,
  1320. "status": "未接入"
  1321. },
  1322. {
  1323. "id": "ComfyUI/Blender",
  1324. "name": "ComfyUI/Blender",
  1325. "version": "tao_dev_1",
  1326. "introduction": "使用PBR材质的Roughness=0(镜面)+ Normal Map(水波纹理)实现真实水面反射;HDRI环境贴图提供反射内容",
  1327. "tutorial": "",
  1328. "input": "",
  1329. "output": "",
  1330. "updated_time": 1776667149,
  1331. "status": "未接入"
  1332. },
  1333. {
  1334. "id": "ComfyUI + CatVTON",
  1335. "name": "ComfyUI + CatVTON",
  1336. "version": "tao_dev_1",
  1337. "introduction": "安装 CatVTON 插件(中山大学开源项目)→ 输入猫咪原图 + 职业服装参考图 → 扩散模型推理换装 → 输出换装结果;支持 T恤、套装、裙子等多种服装类型,显卡要求低",
  1338. "tutorial": "",
  1339. "input": "",
  1340. "output": "",
  1341. "updated_time": 1776667149,
  1342. "status": "未接入"
  1343. },
  1344. {
  1345. "id": "ComfyUI ControlNet Depth",
  1346. "name": "ComfyUI ControlNet Depth",
  1347. "version": "tao_dev_1",
  1348. "introduction": "使用 Depth 预处理器提取场景深度图,约束抽象元素在三维空间中的透视关系与体积感",
  1349. "tutorial": "",
  1350. "input": "",
  1351. "output": "",
  1352. "updated_time": 1776667149,
  1353. "status": "未接入"
  1354. },
  1355. {
  1356. "id": "ComfyUI + ControlNet Depth/Canny",
  1357. "name": "ComfyUI + ControlNet Depth/Canny",
  1358. "version": "tao_dev_1",
  1359. "introduction": "以深度图或线稿约束门洞弧形结构,结合新中式专项LoRA生成精准造型",
  1360. "tutorial": "",
  1361. "input": "",
  1362. "output": "",
  1363. "updated_time": 1776667149,
  1364. "status": "未接入"
  1365. },
  1366. {
  1367. "id": "ComfyUI + dwpose/OpenPose 多人检测",
  1368. "name": "ComfyUI + dwpose/OpenPose 多人检测",
  1369. "version": "tao_dev_1",
  1370. "introduction": "使用 dwpose 估计器或 OpenPose 多人模式,从参考图中同时检测多个主体的骨骼关键点,生成多人骨架图后输入 ControlNet 进行约束生成",
  1371. "tutorial": "",
  1372. "input": "",
  1373. "output": "",
  1374. "updated_time": 1776667149,
  1375. "status": "未接入"
  1376. },
  1377. {
  1378. "id": "ComfyUI + Flux",
  1379. "name": "ComfyUI + Flux",
  1380. "version": "tao_dev_1",
  1381. "introduction": "利用Flux模型强大的生成能力 + 遮罩节点精准框选手部区域 + inpaint重绘,可重绘任何崩坏部位",
  1382. "tutorial": "",
  1383. "input": "",
  1384. "output": "",
  1385. "updated_time": 1776667149,
  1386. "status": "未接入"
  1387. },
  1388. {
  1389. "id": "ComfyUI/Flux",
  1390. "name": "ComfyUI/Flux",
  1391. "version": "tao_dev_1",
  1392. "introduction": "使用光影类LoRA模型(如volumetric light LoRA)+ 精准提示词工程,在KSampler中配合高CFG值强化光束效果;或使用ComfyUI的光照控制节点叠加体积光后处理",
  1393. "tutorial": "",
  1394. "input": "",
  1395. "output": "",
  1396. "updated_time": 1776667149,
  1397. "status": "未接入"
  1398. },
  1399. {
  1400. "id": "ComfyUI FLUX-Klein",
  1401. "name": "ComfyUI FLUX-Klein",
  1402. "version": "tao_dev_1",
  1403. "introduction": "分镜流中通过统一的场景ControlNet参考图约束各格背景结构,配合局部修复节点修正场景崩坏区域",
  1404. "tutorial": "",
  1405. "input": "",
  1406. "output": "",
  1407. "updated_time": 1776667149,
  1408. "status": "未接入"
  1409. },
  1410. {
  1411. "id": "ComfyUI(Flux 模型 + 插画 LoRA)",
  1412. "name": "ComfyUI(Flux 模型 + 插画 LoRA)",
  1413. "version": "tao_dev_1",
  1414. "introduction": "Flux 模型 + Flux 2D 插画 LoRA + Flux Redux 风格迁移节点 + depth_anything 深度控制,实现照片到漫画风格的完整自动化转换",
  1415. "tutorial": "",
  1416. "input": "",
  1417. "output": "",
  1418. "updated_time": 1776667149,
  1419. "status": "未接入"
  1420. },
  1421. {
  1422. "id": "ComfyUI + HDRI",
  1423. "name": "ComfyUI + HDRI",
  1424. "version": "tao_dev_1",
  1425. "introduction": "使用Polyhaven HDRIs节点设置环境光照,配合室内人工光源节点实现混合光照效果",
  1426. "tutorial": "",
  1427. "input": "",
  1428. "output": "",
  1429. "updated_time": 1776667149,
  1430. "status": "未接入"
  1431. },
  1432. {
  1433. "id": "ComfyUI + ImageBatch/GridLayout节点",
  1434. "name": "ComfyUI + ImageBatch/GridLayout节点",
  1435. "version": "tao_dev_1",
  1436. "introduction": "ImageBatch 节点将多张图像合并为批次 + Grid Layout 自定义节点按行列数自动排版 + SaveImage 输出",
  1437. "tutorial": "",
  1438. "input": "",
  1439. "output": "",
  1440. "updated_time": 1776667149,
  1441. "status": "未接入"
  1442. },
  1443. {
  1444. "id": "ComfyUI inpaint + ControlNet",
  1445. "name": "ComfyUI inpaint + ControlNet",
  1446. "version": "tao_dev_1",
  1447. "introduction": "使用 inpaint crop 节点精准蒙版头部区域,配合 ControlNet Depth/Canny 约束颈肩结构,通过 KSampler 在头部区域生成星云/粒子/太极等抽象元素,denoise 强度控制边缘融合自然度",
  1448. "tutorial": "",
  1449. "input": "",
  1450. "output": "",
  1451. "updated_time": 1776667149,
  1452. "status": "未接入"
  1453. },
  1454. {
  1455. "id": "ComfyUI-Inpaint-CropAndStitch节点",
  1456. "name": "ComfyUI-Inpaint-CropAndStitch节点",
  1457. "version": "tao_dev_1",
  1458. "introduction": "inpaint crop节点裁切手部区域单独重绘后再拼回原图,大尺寸图片无损重绘不爆显存",
  1459. "tutorial": "",
  1460. "input": "",
  1461. "output": "",
  1462. "updated_time": 1776667149,
  1463. "status": "未接入"
  1464. },
  1465. {
  1466. "id": "ComfyUI inpaint crop 节点",
  1467. "name": "ComfyUI inpaint crop 节点",
  1468. "version": "tao_dev_1",
  1469. "introduction": "inpaint crop 节点(lquesada/ComfyUI-Inpaint-CropAndStitch)实现大尺寸图片无损局部重绘,保留区域不经过 K 采样器,避免显存溢出",
  1470. "tutorial": "",
  1471. "input": "",
  1472. "output": "",
  1473. "updated_time": 1776667149,
  1474. "status": "未接入"
  1475. },
  1476. {
  1477. "id": "ComfyUI inpainting",
  1478. "name": "ComfyUI inpainting",
  1479. "version": "tao_dev_1",
  1480. "introduction": "将喜庆背景模板中的人物区域设为重绘区域,以用户照片为参考进行局部重绘,实现人物面孔的精准嵌入",
  1481. "tutorial": "",
  1482. "input": "",
  1483. "output": "",
  1484. "updated_time": 1776667149,
  1485. "status": "未接入"
  1486. },
  1487. {
  1488. "id": "ComfyUI + Inpaint + IP-Adapter",
  1489. "name": "ComfyUI + Inpaint + IP-Adapter",
  1490. "version": "tao_dev_1",
  1491. "introduction": "以宠物图为底图,对服装区域进行 Inpaint 重绘,同时用 IP-Adapter 注入服装款式参考图,实现精准换装",
  1492. "tutorial": "",
  1493. "input": "",
  1494. "output": "",
  1495. "updated_time": 1776667149,
  1496. "status": "未接入"
  1497. },
  1498. {
  1499. "id": "ComfyUI InstantID",
  1500. "name": "ComfyUI InstantID",
  1501. "version": "tao_dev_1",
  1502. "introduction": "cubiq/ComfyUI_InstantID 插件实现人像写真中的人物身份特征锁定",
  1503. "tutorial": "",
  1504. "input": "",
  1505. "output": "",
  1506. "updated_time": 1776667149,
  1507. "status": "未接入"
  1508. },
  1509. {
  1510. "id": "ComfyUI + IP-Adapter",
  1511. "name": "ComfyUI + IP-Adapter",
  1512. "version": "tao_dev_1",
  1513. "introduction": "IP-Adapter 节点以人像参考图约束轮廓,配合 inpaint 蒙版将景观元素渲染在人物轮廓区域内,KSampler 控制融合强度",
  1514. "tutorial": "",
  1515. "input": "",
  1516. "output": "",
  1517. "updated_time": 1776667149,
  1518. "status": "未接入"
  1519. },
  1520. {
  1521. "id": "ComfyUI IP-Adapter + ControlNet 组合",
  1522. "name": "ComfyUI IP-Adapter + ControlNet 组合",
  1523. "version": "tao_dev_1",
  1524. "introduction": "IP-Adapter 提取参考图手势特征 + ControlNet OpenPose 锁定骨架角度 + KSampler 生成目标产品手持图",
  1525. "tutorial": "",
  1526. "input": "",
  1527. "output": "",
  1528. "updated_time": 1776667149,
  1529. "status": "未接入"
  1530. },
  1531. {
  1532. "id": "ComfyUI + IP-Adapter + LoRA",
  1533. "name": "ComfyUI + IP-Adapter + LoRA",
  1534. "version": "tao_dev_1",
  1535. "introduction": "IP-Adapter 锁定宠物外观特征 + 角色服饰 LoRA(如影视角色服装 LoRA)+ ControlNet 控制姿态,三者组合生成拟人化角色扮演图",
  1536. "tutorial": "",
  1537. "input": "",
  1538. "output": "",
  1539. "updated_time": 1776667149,
  1540. "status": "未接入"
  1541. },
  1542. {
  1543. "id": "ComfyUI + IPAdapter Plus",
  1544. "name": "ComfyUI + IPAdapter Plus",
  1545. "version": "tao_dev_1",
  1546. "introduction": "以包含藤编吊灯、原木茶几等自然材质的参考图作为风格输入,通过 IPAdapter 将材质特征迁移到目标空间",
  1547. "tutorial": "",
  1548. "input": "",
  1549. "output": "",
  1550. "updated_time": 1776667149,
  1551. "status": "未接入"
  1552. },
  1553. {
  1554. "id": "ComfyUI + IP-Adapter + 多视图输入",
  1555. "name": "ComfyUI + IP-Adapter + 多视图输入",
  1556. "version": "tao_dev_1",
  1557. "introduction": "预先生成角色正/侧/背面多视图,通过 IP-Adapter 节点将多视图作为参考输入,在生成新姿态时约束角色外观一致性",
  1558. "tutorial": "",
  1559. "input": "",
  1560. "output": "",
  1561. "updated_time": 1776667149,
  1562. "status": "未接入"
  1563. },
  1564. {
  1565. "id": "ComfyUI + LoRA",
  1566. "name": "ComfyUI + LoRA",
  1567. "version": "tao_dev_1",
  1568. "introduction": "加载中国传统纹样专项 LoRA 模型,在 KSampler 工作流中注入吉祥符号风格权重",
  1569. "tutorial": "",
  1570. "input": "",
  1571. "output": "",
  1572. "updated_time": 1776667149,
  1573. "status": "未接入"
  1574. },
  1575. {
  1576. "id": "ComfyUI(ltxv-13b 模型)",
  1577. "name": "ComfyUI(ltxv-13b 模型)",
  1578. "version": "tao_dev_1",
  1579. "introduction": "生成与真实素材匹配的 AI 人群/场景图像或视频帧序列,作为合成素材输入",
  1580. "tutorial": "",
  1581. "input": "",
  1582. "output": "",
  1583. "updated_time": 1776667149,
  1584. "status": "未接入"
  1585. },
  1586. {
  1587. "id": "comfyui_midi3d",
  1588. "name": "comfyui_midi3d",
  1589. "version": "tao_dev_1",
  1590. "introduction": "使用 MIDI-3D 节点(github: VAST-AI-Research/MIDI-3D)从单图重建三维场景,结合 Qwen 多视角 LoRA,实现任意角度自由控制,配合遮罩合并节点完成多视角输出",
  1591. "tutorial": "",
  1592. "input": "",
  1593. "output": "",
  1594. "updated_time": 1776667149,
  1595. "status": "未接入"
  1596. },
  1597. {
  1598. "id": "ComfyUI + Next Scene LoRA",
  1599. "name": "ComfyUI + Next Scene LoRA",
  1600. "version": "tao_dev_1",
  1601. "introduction": "使用 Qwen Image Edit 模型和 Next Scene LoRA 保持角色 likeness 跨镜头一致,掌握 360 度场景布局系统实现精确相机定位",
  1602. "tutorial": "",
  1603. "input": "",
  1604. "output": "",
  1605. "updated_time": 1776666846,
  1606. "status": "未接入"
  1607. },
  1608. {
  1609. "id": "comfyui_qwen_multiangle",
  1610. "name": "comfyui_qwen_multiangle",
  1611. "version": "tao_dev_1",
  1612. "introduction": "安装 ComfyUI-qwenmultiangle 节点 + 加载 fal/Qwen-Image-Edit-2511-Multiple-Angles-LoRA 模型,通过 Azimuth(方位角)+ Elevation(仰角)+ Distance(距离)三参数提示公式控制视角,支持生成96种不同相机角度",
  1613. "tutorial": "",
  1614. "input": "",
  1615. "output": "",
  1616. "updated_time": 1776667149,
  1617. "status": "未接入"
  1618. },
  1619. {
  1620. "id": "comfyui_runninghub",
  1621. "name": "comfyui_runninghub",
  1622. "version": "tao_dev_1",
  1623. "introduction": "在 RunningHub 平台运行专用工作流,同一场景一次性生成16个不同镜头,支持普通版和PLUS版,无废图",
  1624. "tutorial": "",
  1625. "input": "",
  1626. "output": "",
  1627. "updated_time": 1776667149,
  1628. "status": "未接入"
  1629. },
  1630. {
  1631. "id": "ComfyUI + SAM 模型 + ControlNet",
  1632. "name": "ComfyUI + SAM 模型 + ControlNet",
  1633. "version": "tao_dev_1",
  1634. "introduction": "使用 SAM 模型对多人场景进行部位分割,提高各主体骨骼识别精度,再通过 ControlNet 双人/多人姿态迁移工作流生成目标画面",
  1635. "tutorial": "",
  1636. "input": "",
  1637. "output": "",
  1638. "updated_time": 1776667149,
  1639. "status": "未接入"
  1640. },
  1641. {
  1642. "id": "ComfyUI + SDXL/Flux",
  1643. "name": "ComfyUI + SDXL/Flux",
  1644. "version": "tao_dev_1",
  1645. "introduction": "CLIPTextEncode 正向提示词注入暖色调关键词库 + 反向提示词排除冷色调(cold white, harsh lighting, industrial)+ KSampler 参数调优",
  1646. "tutorial": "",
  1647. "input": "",
  1648. "output": "",
  1649. "updated_time": 1776667149,
  1650. "status": "未接入"
  1651. },
  1652. {
  1653. "id": "ComfyUI / SDXL文字渲染节点",
  1654. "name": "ComfyUI / SDXL文字渲染节点",
  1655. "version": "tao_dev_1",
  1656. "introduction": "通过文生图提示词描述气泡形状与位置,结合图像内文字渲染节点将气泡与文字一体化生成到画面中",
  1657. "tutorial": "",
  1658. "input": "",
  1659. "output": "",
  1660. "updated_time": 1776667149,
  1661. "status": "未接入"
  1662. },
  1663. {
  1664. "id": "ComfyUI/Seedream",
  1665. "name": "ComfyUI/Seedream",
  1666. "version": "tao_dev_1",
  1667. "introduction": "使用 'soft golden highlights'、'cool blue shadows'、'atmospheric fog'、'high dynamic range' 组合实现黄金时刻的冷暖对比效果",
  1668. "tutorial": "",
  1669. "input": "",
  1670. "output": "",
  1671. "updated_time": 1776667149,
  1672. "status": "未接入"
  1673. },
  1674. {
  1675. "id": "ComfyUI + WAN 2.2 Animate V2 + Continue Motion",
  1676. "name": "ComfyUI + WAN 2.2 Animate V2 + Continue Motion",
  1677. "version": "tao_dev_1",
  1678. "introduction": "使用 Continue Motion 节点循环延长视频片段,配合 SeC 视频掩码保持多人物主体稳定",
  1679. "tutorial": "",
  1680. "input": "",
  1681. "output": "",
  1682. "updated_time": 1776667149,
  1683. "status": "未接入"
  1684. },
  1685. {
  1686. "id": "ComfyUI + WanScail 多人 3D 姿态对齐",
  1687. "name": "ComfyUI + WanScail 多人 3D 姿态对齐",
  1688. "version": "tao_dev_1",
  1689. "introduction": "使用 WanScail 的多人 3D 姿态参考能力(KJ 节点),将多个主体的 3D 姿态信息对齐到同一空间坐标系,再驱动图像生成",
  1690. "tutorial": "",
  1691. "input": "",
  1692. "output": "",
  1693. "updated_time": 1776667149,
  1694. "status": "未接入"
  1695. },
  1696. {
  1697. "id": "ComfyUI + Z-Image-Turbo",
  1698. "name": "ComfyUI + Z-Image-Turbo",
  1699. "version": "tao_dev_1",
  1700. "introduction": "Z-Image-Turbo工作流针对瞳孔、睫毛、皮肤毛孔进行像素级细化,注入高频纹理细节",
  1701. "tutorial": "",
  1702. "input": "",
  1703. "output": "",
  1704. "updated_time": 1776667149,
  1705. "status": "未接入"
  1706. },
  1707. {
  1708. "id": "ComfyUI 万物修复工作流",
  1709. "name": "ComfyUI 万物修复工作流",
  1710. "version": "tao_dev_1",
  1711. "introduction": "两种修复路径:① 手部区域 Mask + Inpaint 重绘;② ControlNet 手部骨架约束重绘,覆盖不同严重程度的手部畸形",
  1712. "tutorial": "",
  1713. "input": "",
  1714. "output": "",
  1715. "updated_time": 1776667149,
  1716. "status": "未接入"
  1717. },
  1718. {
  1719. "id": "ComfyUI主体分割+图层合成节点",
  1720. "name": "ComfyUI主体分割+图层合成节点",
  1721. "version": "tao_dev_1",
  1722. "introduction": "使用SAM/BiRefNet等分割模型提取主体蒙版,将文字图层插入主体层与背景层之间,自动实现前后遮挡合成",
  1723. "tutorial": "",
  1724. "input": "",
  1725. "output": "",
  1726. "updated_time": 1776667149,
  1727. "status": "未接入"
  1728. },
  1729. {
  1730. "id": "ComfyUI后处理",
  1731. "name": "ComfyUI后处理",
  1732. "version": "tao_dev_1",
  1733. "introduction": "使用Lens Flare节点或后期合成节点叠加光晕效果;Bloom节点控制高光溢出强度",
  1734. "tutorial": "",
  1735. "input": "",
  1736. "output": "",
  1737. "updated_time": 1776667149,
  1738. "status": "未接入"
  1739. },
  1740. {
  1741. "id": "ComfyUI 后处理节点",
  1742. "name": "ComfyUI 后处理节点",
  1743. "version": "tao_dev_1",
  1744. "introduction": "在 ComfyUI 工作流中添加 Glitch 后处理节点,对生成图像自动施加 RGB 错位、噪点叠加等故障效果",
  1745. "tutorial": "",
  1746. "input": "",
  1747. "output": "",
  1748. "updated_time": 1776667149,
  1749. "status": "未接入"
  1750. },
  1751. {
  1752. "id": "ComfyUI(后处理节点)",
  1753. "name": "ComfyUI(后处理节点)",
  1754. "version": "tao_dev_1",
  1755. "introduction": "在生成后通过图像变换节点应用桶形畸变滤镜,或在提示词中结合 ControlNet 深度图约束实现透视夸张效果",
  1756. "tutorial": "",
  1757. "input": "",
  1758. "output": "",
  1759. "updated_time": 1776667149,
  1760. "status": "未接入"
  1761. },
  1762. {
  1763. "id": "ComfyUI + 后期节点",
  1764. "name": "ComfyUI + 后期节点",
  1765. "version": "tao_dev_1",
  1766. "introduction": "在生成图像后使用后期处理节点添加体积光效果,或在提示词中描述体积光特征引导模型生成",
  1767. "tutorial": "",
  1768. "input": "",
  1769. "output": "",
  1770. "updated_time": 1776667149,
  1771. "status": "未接入"
  1772. },
  1773. {
  1774. "id": "ComfyUI 唇形同步节点",
  1775. "name": "ComfyUI 唇形同步节点",
  1776. "version": "tao_dev_1",
  1777. "introduction": "在 ComfyUI 工作流中集成唇形同步节点,与角色生成流程无缝衔接,实现端到端的有声角色视频生成",
  1778. "tutorial": "",
  1779. "input": "",
  1780. "output": "",
  1781. "updated_time": 1776667149,
  1782. "status": "未接入"
  1783. },
  1784. {
  1785. "id": "ComfyUI图生图",
  1786. "name": "ComfyUI图生图",
  1787. "version": "tao_dev_1",
  1788. "introduction": "使用ControlNet(Depth/Canny预处理器)保持3D截图的空间结构,配合KSampler(denoise 0.6-0.8)注入真实光影效果;IP-Adapter引导整体风格",
  1789. "tutorial": "",
  1790. "input": "",
  1791. "output": "",
  1792. "updated_time": 1776667149,
  1793. "status": "未接入"
  1794. },
  1795. {
  1796. "id": "ComfyUI 多图编辑工作流",
  1797. "name": "ComfyUI 多图编辑工作流",
  1798. "version": "tao_dev_1",
  1799. "introduction": "多图编辑+多场景融合工作流,实现人物与环境的关联展示",
  1800. "tutorial": "",
  1801. "input": "",
  1802. "output": "",
  1803. "updated_time": 1776666846,
  1804. "status": "未接入"
  1805. },
  1806. {
  1807. "id": "ComfyUI 工作流",
  1808. "name": "ComfyUI 工作流",
  1809. "version": "tao_dev_1",
  1810. "introduction": "使用 Flux 或 SDXL 模型配合 ControlNet Canny 节点,基于线条参考图生成发光流光线条背景",
  1811. "tutorial": "",
  1812. "input": "",
  1813. "output": "",
  1814. "updated_time": 1776667149,
  1815. "status": "未接入"
  1816. },
  1817. {
  1818. "id": "ComfyUI 批处理工作流",
  1819. "name": "ComfyUI 批处理工作流",
  1820. "version": "tao_dev_1",
  1821. "introduction": "使用 ComfyUI 的批处理节点,输入多张人物照片,统一应用相同的风格化参数和排版模板,批量输出系列海报",
  1822. "tutorial": "",
  1823. "input": "",
  1824. "output": "",
  1825. "updated_time": 1776667149,
  1826. "status": "未接入"
  1827. },
  1828. {
  1829. "id": "ComfyUI批量排版节点",
  1830. "name": "ComfyUI批量排版节点",
  1831. "version": "tao_dev_1",
  1832. "introduction": "通过批量图像生成节点+文字渲染节点组合,自动将插画与文字合成为统一格式的多页图文",
  1833. "tutorial": "",
  1834. "input": "",
  1835. "output": "",
  1836. "updated_time": 1776667149,
  1837. "status": "未接入"
  1838. },
  1839. {
  1840. "id": "ComfyUI文字渲染节点",
  1841. "name": "ComfyUI文字渲染节点",
  1842. "version": "tao_dev_1",
  1843. "introduction": "通过节点参数配置描边宽度、颜色、位置(内描边/外描边/居中),支持多重描边叠加实现层次感",
  1844. "tutorial": "",
  1845. "input": "",
  1846. "output": "",
  1847. "updated_time": 1776667149,
  1848. "status": "未接入"
  1849. },
  1850. {
  1851. "id": "ComfyUI + 新中式专项LoRA",
  1852. "name": "ComfyUI + 新中式专项LoRA",
  1853. "version": "tao_dev_1",
  1854. "introduction": "加载新中式/宋式美学专项训练的LoRA模型,结合CLIPTextEncode输入风格关键词(如'宋式美学七分留白+三分天然'的提示词体系)",
  1855. "tutorial": "",
  1856. "input": "",
  1857. "output": "",
  1858. "updated_time": 1776667149,
  1859. "status": "未接入"
  1860. },
  1861. {
  1862. "id": "ComfyUI(星流Agent)",
  1863. "name": "ComfyUI(星流Agent)",
  1864. "version": "tao_dev_1",
  1865. "introduction": "使用 Cinema4D + Redshift quality 渲染参数,配合 matte and plush-like texture、subtle shading、soft diffused lighting、no hard shadows 节点组合实现哑光毛绒质感",
  1866. "tutorial": "",
  1867. "input": "",
  1868. "output": "",
  1869. "updated_time": 1776667149,
  1870. "status": "未接入"
  1871. },
  1872. {
  1873. "id": "ComfyUI + 自定义排版节点",
  1874. "name": "ComfyUI + 自定义排版节点",
  1875. "version": "tao_dev_1",
  1876. "introduction": "通过自定义节点接收结构化文本输入,结合预设的排版规则(字号比例、颜色方案、间距参数),自动生成分层排版的图像",
  1877. "tutorial": "",
  1878. "input": "",
  1879. "output": "",
  1880. "updated_time": 1776667149,
  1881. "status": "未接入"
  1882. },
  1883. {
  1884. "id": "ComfyUI + 色彩控制节点",
  1885. "name": "ComfyUI + 色彩控制节点",
  1886. "version": "tao_dev_1",
  1887. "introduction": "通过Color Palette节点约束生成图像的主色调分布,结合新中式风格LoRA输出配色效果图",
  1888. "tutorial": "",
  1889. "input": "",
  1890. "output": "",
  1891. "updated_time": 1776667149,
  1892. "status": "未接入"
  1893. },
  1894. {
  1895. "id": "ComfyUI 色调匹配节点",
  1896. "name": "ComfyUI 色调匹配节点",
  1897. "version": "tao_dev_1",
  1898. "introduction": "通过 Color Match 或 Gamma/Curves 调整节点统一合成元素与背景的色调,实现深蓝红色调的全局一致性",
  1899. "tutorial": "",
  1900. "input": "",
  1901. "output": "",
  1902. "updated_time": 1776667149,
  1903. "status": "未接入"
  1904. },
  1905. {
  1906. "id": "Composable LoRA(SD 插件)",
  1907. "name": "Composable LoRA(SD 插件)",
  1908. "version": "tao_dev_1",
  1909. "introduction": "配合 Latent Couple 使用,使每个分区可独立加载对应角色的 LoRA 模型,实现多角色特征隔离",
  1910. "tutorial": "",
  1911. "input": "",
  1912. "output": "",
  1913. "updated_time": 1776667149,
  1914. "status": "未接入"
  1915. },
  1916. {
  1917. "id": "ControlNet Hand Refiner(ComfyUI/SD WebUI)",
  1918. "name": "ControlNet Hand Refiner(ComfyUI/SD WebUI)",
  1919. "version": "tao_dev_1",
  1920. "introduction": "专用手部修复 ControlNet 模型,通过手部关键点检测约束重绘区域,精准修复手指数量和关节结构",
  1921. "tutorial": "",
  1922. "input": "",
  1923. "output": "",
  1924. "updated_time": 1776667149,
  1925. "status": "未接入"
  1926. },
  1927. {
  1928. "id": "controlnet的openpose",
  1929. "name": "controlnet的openpose",
  1930. "version": "tao_dev_1",
  1931. "introduction": "借助openpose实现任意构图、透视关系以及防止崩坏",
  1932. "tutorial": "",
  1933. "input": "",
  1934. "output": "",
  1935. "updated_time": 1776667149,
  1936. "status": "未接入"
  1937. },
  1938. {
  1939. "id": "Coze官方抠图插件",
  1940. "name": "Coze官方抠图插件",
  1941. "version": "tao_dev_1",
  1942. "introduction": "在Coze工作流中调用官方抠图节点,输入食材图片URL,自动保留主体并输出透明背景.png,可在循环体中批量处理多张食材图",
  1943. "tutorial": "",
  1944. "input": "",
  1945. "output": "",
  1946. "updated_time": 1776667149,
  1947. "status": "未接入"
  1948. },
  1949. {
  1950. "id": "Coze工作流",
  1951. "name": "Coze工作流",
  1952. "version": "tao_dev_1",
  1953. "introduction": "输入食材名称→AI自动生成养生文案→智能拆解封面/内页/步骤图结构→自动抠图→画板排版→直接导出笔记",
  1954. "tutorial": "",
  1955. "input": "",
  1956. "output": "",
  1957. "updated_time": 1776666846,
  1958. "status": "未接入"
  1959. },
  1960. {
  1961. "id": "Coze工作流+DeepSeek",
  1962. "name": "Coze工作流+DeepSeek",
  1963. "version": "tao_dev_1",
  1964. "introduction": "用户输入关键词→DeepSeek大模型节点生成图像提示词→循环体节点将每个提示词传给图像生成节点",
  1965. "tutorial": "",
  1966. "input": "",
  1967. "output": "",
  1968. "updated_time": 1776667149,
  1969. "status": "未接入"
  1970. },
  1971. {
  1972. "id": "Coze工作流+图像生成节点",
  1973. "name": "Coze工作流+图像生成节点",
  1974. "version": "tao_dev_1",
  1975. "introduction": "循环体节点逐格生成后由工作流自动拼合为九宫格输出",
  1976. "tutorial": "",
  1977. "input": "",
  1978. "output": "",
  1979. "updated_time": 1776667149,
  1980. "status": "未接入"
  1981. },
  1982. {
  1983. "id": "Coze工作流-画板节点",
  1984. "name": "Coze工作流-画板节点",
  1985. "version": "tao_dev_1",
  1986. "introduction": "在Coze工作流中配置画板节点,自定义排版规则,将AI生成的食材图片、文字说明、功效信息按模板自动组合排版",
  1987. "tutorial": "",
  1988. "input": "",
  1989. "output": "",
  1990. "updated_time": 1776667149,
  1991. "status": "未接入"
  1992. },
  1993. {
  1994. "id": "Coze工作流-豆包1.5 Pro节点",
  1995. "name": "Coze工作流-豆包1.5 Pro节点",
  1996. "version": "tao_dev_1",
  1997. "introduction": "在Coze工作流中配置豆包1.5 Pro 32k模型节点,按小红书风格排版融入Emoji,根据食材功效信息自动生成完整图文文案",
  1998. "tutorial": "",
  1999. "input": "",
  2000. "output": "",
  2001. "updated_time": 1776667149,
  2002. "status": "未接入"
  2003. },
  2004. {
  2005. "id": "Coze 扣子工作流",
  2006. "name": "Coze 扣子工作流",
  2007. "version": "tao_dev_1",
  2008. "introduction": "可视化拖拽节点配置宫格数量(9/16/25)+ 图片输入列表 + 自动排版输出节点,零代码一键生成规整分镜",
  2009. "tutorial": "",
  2010. "input": "",
  2011. "output": "",
  2012. "updated_time": 1776667149,
  2013. "status": "未接入"
  2014. },
  2015. {
  2016. "id": "Coze 智能体工作流",
  2017. "name": "Coze 智能体工作流",
  2018. "version": "tao_dev_1",
  2019. "introduction": "搭建包含提示词生成节点 + 图像生成节点 + 视频生成节点的完整工作流,一键触发批量生成宫崎骏治愈系/超现实风格动画",
  2020. "tutorial": "",
  2021. "input": "",
  2022. "output": "",
  2023. "updated_time": 1776667149,
  2024. "status": "未接入"
  2025. },
  2026. {
  2027. "id": "D5 Render",
  2028. "name": "D5 Render",
  2029. "version": "tao_dev_1",
  2030. "introduction": "D5渲染器长进深室内空间自然光营造技法,3分钟设置自然光从远处窗口射入的光照效果",
  2031. "tutorial": "",
  2032. "input": "",
  2033. "output": "",
  2034. "updated_time": 1776667149,
  2035. "status": "未接入"
  2036. },
  2037. {
  2038. "id": "D5渲染器",
  2039. "name": "D5渲染器",
  2040. "version": "tao_dev_1",
  2041. "introduction": "导入SketchUp模型,设置HDRI环境贴图,调整太阳角度和强度,添加区域光,调整材质反射和粗糙度,实现真实室外光影效果",
  2042. "tutorial": "",
  2043. "input": "",
  2044. "output": "",
  2045. "updated_time": 1776667149,
  2046. "status": "未接入"
  2047. },
  2048. {
  2049. "id": "Davemane42 Custom Node(ComfyUI 可视化分区插件)",
  2050. "name": "Davemane42 Custom Node(ComfyUI 可视化分区插件)",
  2051. "version": "tao_dev_1",
  2052. "introduction": "提供可视化的分区界面,用户可直接拖拽划定各角色的画面区域,并为每个区域配置独立参数",
  2053. "tutorial": "",
  2054. "input": "",
  2055. "output": "",
  2056. "updated_time": 1776667149,
  2057. "status": "未接入"
  2058. },
  2059. {
  2060. "id": "DaVinci Resolve",
  2061. "name": "DaVinci Resolve",
  2062. "version": "tao_dev_1",
  2063. "introduction": "进行后期处理,应用 3 个核心 VFX 技巧实现 AI 与真实镜头的无缝混合",
  2064. "tutorial": "",
  2065. "input": "",
  2066. "output": "",
  2067. "updated_time": 1776666846,
  2068. "status": "未接入"
  2069. },
  2070. {
  2071. "id": "DaVinci Resolve Fusion",
  2072. "name": "DaVinci Resolve Fusion",
  2073. "version": "tao_dev_1",
  2074. "introduction": "在 Fusion 模块中绘制和动画化自定义涂鸦线条,创建 animated scribble overlays(动画涂鸦叠加),无需第三方插件",
  2075. "tutorial": "",
  2076. "input": "",
  2077. "output": "",
  2078. "updated_time": 1776667149,
  2079. "status": "未接入"
  2080. },
  2081. {
  2082. "id": "DeepSeek / ChatGPT",
  2083. "name": "DeepSeek / ChatGPT",
  2084. "version": "tao_dev_1",
  2085. "introduction": "将 PDF 或图片中的数据以文本形式描述给 AI,AI 解析数据结构并生成对应图表代码或可视化方案",
  2086. "tutorial": "",
  2087. "input": "",
  2088. "output": "",
  2089. "updated_time": 1776667149,
  2090. "status": "未接入"
  2091. },
  2092. {
  2093. "id": "DeepSeek / ChatGPT / Claude AI",
  2094. "name": "DeepSeek / ChatGPT / Claude AI",
  2095. "version": "tao_dev_1",
  2096. "introduction": "通过自然语言 Prompt 描述数据和图表需求,AI 自动生成 HTML+Chart.js 或 Python matplotlib/echarts 代码,渲染为可视化图表;支持柱状图、折线图、饼图等多种类型",
  2097. "tutorial": "",
  2098. "input": "",
  2099. "output": "",
  2100. "updated_time": 1776667149,
  2101. "status": "未接入"
  2102. },
  2103. {
  2104. "id": "DeepSeek + Draw.io 工作流",
  2105. "name": "DeepSeek + Draw.io 工作流",
  2106. "version": "tao_dev_1",
  2107. "introduction": "DeepSeek 生成 Draw.io XML → 导入 Draw.io → 导出 SVG/PDF 矢量格式,直接插入论文不模糊",
  2108. "tutorial": "",
  2109. "input": "",
  2110. "output": "",
  2111. "updated_time": 1776667149,
  2112. "status": "未接入"
  2113. },
  2114. {
  2115. "id": "DeepSeek + SVG 立体图形代码生成",
  2116. "name": "DeepSeek + SVG 立体图形代码生成",
  2117. "version": "tao_dev_1",
  2118. "introduction": "提示 DeepSeek 生成包含立体堆叠效果的 SVG 代码,指定层级数量、颜色方案和各层标注文字",
  2119. "tutorial": "",
  2120. "input": "",
  2121. "output": "",
  2122. "updated_time": 1776667149,
  2123. "status": "未接入"
  2124. },
  2125. {
  2126. "id": "DeepSeek-V3.1",
  2127. "name": "DeepSeek-V3.1",
  2128. "version": "tao_dev_1",
  2129. "introduction": "在Coze工作流中调用DeepSeek-V3.1根据标题生成食物列表及功效说明,作为后续文案生成的结构化输入",
  2130. "tutorial": "",
  2131. "input": "",
  2132. "output": "",
  2133. "updated_time": 1776667149,
  2134. "status": "未接入"
  2135. },
  2136. {
  2137. "id": "depth library 插件 + 900款手部动作模型(SD WebUI)",
  2138. "name": "depth library 插件 + 900款手部动作模型(SD WebUI)",
  2139. "version": "tao_dev_1",
  2140. "introduction": "安装 depth library 插件,从 900 款手部动作模型库中选取目标手势骨架,作为 ControlNet 输入约束修复结果",
  2141. "tutorial": "",
  2142. "input": "",
  2143. "output": "",
  2144. "updated_time": 1776667149,
  2145. "status": "未接入"
  2146. },
  2147. {
  2148. "id": "DiT360 AI",
  2149. "name": "DiT360 AI",
  2150. "version": "tao_dev_1",
  2151. "introduction": "专用 360 度全景生成模型,通过文本描述直接输出具有无缝环绕边缘的等距矩形全景图,可在 HuggingFace Spaces 在线使用",
  2152. "tutorial": "",
  2153. "input": "",
  2154. "output": "",
  2155. "updated_time": 1776667149,
  2156. "status": "未接入"
  2157. },
  2158. {
  2159. "id": "DiT360 / ChatGPT",
  2160. "name": "DiT360 / ChatGPT",
  2161. "version": "tao_dev_1",
  2162. "introduction": "指定 2:1 或 3000x1500 等宽幅分辨率参数确保全景图的宽幅格式",
  2163. "tutorial": "",
  2164. "input": "",
  2165. "output": "",
  2166. "updated_time": 1776667149,
  2167. "status": "未接入"
  2168. },
  2169. {
  2170. "id": "DreamFaceApp",
  2171. "name": "DreamFaceApp",
  2172. "version": "tao_dev_1",
  2173. "introduction": "对静态图像进行面部动画处理,实现唇形同步",
  2174. "tutorial": "",
  2175. "input": "",
  2176. "output": "",
  2177. "updated_time": 1776666846,
  2178. "status": "未接入"
  2179. },
  2180. {
  2181. "id": "Dreamina-Seedance-2.0",
  2182. "name": "Dreamina-Seedance-2.0",
  2183. "version": "tao_dev_1",
  2184. "introduction": "通过 expanded the view 技术扩展视野,生成更大、电影级的环境视频",
  2185. "tutorial": "",
  2186. "input": "",
  2187. "output": "",
  2188. "updated_time": 1776667149,
  2189. "status": "未接入"
  2190. },
  2191. {
  2192. "id": "Dzine.ai",
  2193. "name": "Dzine.ai",
  2194. "version": "tao_dev_1",
  2195. "introduction": "通过包含多机位描述的单提示词生成 3×3 网格画面,角色外观在所有帧中保持一致",
  2196. "tutorial": "",
  2197. "input": "",
  2198. "output": "",
  2199. "updated_time": 1776666846,
  2200. "status": "未接入"
  2201. },
  2202. {
  2203. "id": "Dzine AI / Playground.com",
  2204. "name": "Dzine AI / Playground.com",
  2205. "version": "tao_dev_1",
  2206. "introduction": "上传宠物照片后通过角色扮演模板一键生成,适合非技术用户快速产出",
  2207. "tutorial": "",
  2208. "input": "",
  2209. "output": "",
  2210. "updated_time": 1776667149,
  2211. "status": "未接入"
  2212. },
  2213. {
  2214. "id": "Edimakor",
  2215. "name": "Edimakor",
  2216. "version": "tao_dev_1",
  2217. "introduction": "内建口型同步功能,上传角色图片和音频后自动生成对口型动画",
  2218. "tutorial": "",
  2219. "input": "",
  2220. "output": "",
  2221. "updated_time": 1776667149,
  2222. "status": "未接入"
  2223. },
  2224. {
  2225. "id": "Edimakor AI",
  2226. "name": "Edimakor AI",
  2227. "version": "tao_dev_1",
  2228. "introduction": "感官细节描述(温暖灯光、蒸汽、散落的香草)+ 低角度猫眼视角 + 电影构图",
  2229. "tutorial": "",
  2230. "input": "",
  2231. "output": "",
  2232. "updated_time": 1776666846,
  2233. "status": "未接入"
  2234. },
  2235. {
  2236. "id": "ElevenLabs",
  2237. "name": "ElevenLabs",
  2238. "version": "tao_dev_1",
  2239. "introduction": "生成逼真语音,与 AI 图像结合制作说话 UGC 风格视频",
  2240. "tutorial": "",
  2241. "input": "",
  2242. "output": "",
  2243. "updated_time": 1776666846,
  2244. "status": "未接入"
  2245. },
  2246. {
  2247. "id": "ElevenLabs Sound Effects / Adobe Firefly Audio",
  2248. "name": "ElevenLabs Sound Effects / Adobe Firefly Audio",
  2249. "version": "tao_dev_1",
  2250. "introduction": "输入场景描述文本(如室内会议掌声、户外音乐节人群欢呼),自动生成对应的环境音效音频文件",
  2251. "tutorial": "",
  2252. "input": "",
  2253. "output": "",
  2254. "updated_time": 1776667149,
  2255. "status": "未接入"
  2256. },
  2257. {
  2258. "id": "Enscape",
  2259. "name": "Enscape",
  2260. "version": "tao_dev_1",
  2261. "introduction": "在 SketchUp 中使用 Enscape 渲染器设置全景相机,渲染输出单张或多张全景图,支持多全景图合成",
  2262. "tutorial": "",
  2263. "input": "",
  2264. "output": "",
  2265. "updated_time": 1776667149,
  2266. "status": "未接入"
  2267. },
  2268. {
  2269. "id": "Excel 邮件合并",
  2270. "name": "Excel 邮件合并",
  2271. "version": "tao_dev_1",
  2272. "introduction": "以 Excel 数据表为数据源,通过邮件合并功能将资产编号、名称、规格等字段批量填充到卡片模板,支持批量打印导出",
  2273. "tutorial": "",
  2274. "input": "",
  2275. "output": "",
  2276. "updated_time": 1776667149,
  2277. "status": "未接入"
  2278. },
  2279. {
  2280. "id": "FacePoke(本地离线版)",
  2281. "name": "FacePoke(本地离线版)",
  2282. "version": "tao_dev_1",
  2283. "introduction": "导入人物图片 → 用鼠标拖动面部关键点(眼角、嘴角、眉毛等)→ 实时预览表情变化 → 保存结果;所见即所得,N卡显存6G以上可运行",
  2284. "tutorial": "",
  2285. "input": "",
  2286. "output": "",
  2287. "updated_time": 1776666487,
  2288. "status": "未接入"
  2289. },
  2290. {
  2291. "id": "FashionModelAI",
  2292. "name": "FashionModelAI",
  2293. "version": "tao_dev_1",
  2294. "introduction": "基于Replit Agent 4构建的专用工具,上传flat lay服装图片后自动生成模特上身效果",
  2295. "tutorial": "",
  2296. "input": "",
  2297. "output": "",
  2298. "updated_time": 1776667149,
  2299. "status": "未接入"
  2300. },
  2301. {
  2302. "id": "Figma",
  2303. "name": "Figma",
  2304. "version": "tao_dev_1",
  2305. "introduction": "使用网格布局工具设置3x3宫格,导入图片素材到每个格子,调整间距和边距,导出成品图片",
  2306. "tutorial": "",
  2307. "input": "",
  2308. "output": "",
  2309. "updated_time": 1776666846,
  2310. "status": "未接入"
  2311. },
  2312. {
  2313. "id": "Figma Auto Layout",
  2314. "name": "Figma Auto Layout",
  2315. "version": "tao_dev_1",
  2316. "introduction": "使用 Auto Layout 构建响应式卡片元素,设置 max width 约束,将图标、标题、配图区封装为 Components,统一存放于 Components 页面供全局复用",
  2317. "tutorial": "",
  2318. "input": "",
  2319. "output": "",
  2320. "updated_time": 1776667149,
  2321. "status": "未接入"
  2322. },
  2323. {
  2324. "id": "Figma Grids功能",
  2325. "name": "Figma Grids功能",
  2326. "version": "tao_dev_1",
  2327. "introduction": "使用Figma Config 2025新发布的Grids功能逐步构建Bento Box布局,支持响应式设计和精确的行列控制",
  2328. "tutorial": "",
  2329. "input": "",
  2330. "output": "",
  2331. "updated_time": 1776667149,
  2332. "status": "未接入"
  2333. },
  2334. {
  2335. "id": "Figma Grids网格系统",
  2336. "name": "Figma Grids网格系统",
  2337. "version": "tao_dev_1",
  2338. "introduction": "使用Figma的Grids功能设置列数、行数、间距参数,自动生成精确的网格框架,支持响应式设计和组件对齐",
  2339. "tutorial": "",
  2340. "input": "",
  2341. "output": "",
  2342. "updated_time": 1776667149,
  2343. "status": "未接入"
  2344. },
  2345. {
  2346. "id": "Figma MCP + Cursor AI",
  2347. "name": "Figma MCP + Cursor AI",
  2348. "version": "tao_dev_1",
  2349. "introduction": "通过 Figma MCP 协议将 Figma 设计系统连接到 Cursor AI,AI 读取 Figma Variable 与 Design Token 后自动生成或更新对应代码组件,实现设计到代码的自动化 handoff",
  2350. "tutorial": "",
  2351. "input": "",
  2352. "output": "",
  2353. "updated_time": 1776667149,
  2354. "status": "未接入"
  2355. },
  2356. {
  2357. "id": "Figma ProdFill插件",
  2358. "name": "Figma ProdFill插件",
  2359. "version": "tao_dev_1",
  2360. "introduction": "在Figma中安装ProdFill插件,配合表格批量导入数据,自动填充图片和文字到模板对应图层",
  2361. "tutorial": "",
  2362. "input": "",
  2363. "output": "",
  2364. "updated_time": 1776667149,
  2365. "status": "未接入"
  2366. },
  2367. {
  2368. "id": "Figma 组件系统",
  2369. "name": "Figma 组件系统",
  2370. "version": "tao_dev_1",
  2371. "introduction": "在 Figma 中为每个人物创建独立组件,组件内含头像框+姓名文字层+职位文字层,批量复用并替换内容",
  2372. "tutorial": "",
  2373. "input": "",
  2374. "output": "",
  2375. "updated_time": 1776667149,
  2376. "status": "未接入"
  2377. },
  2378. {
  2379. "id": "Figma 自动布局",
  2380. "name": "Figma 自动布局",
  2381. "version": "tao_dev_1",
  2382. "introduction": "使用 Figma Auto Layout 功能,设定人物卡片间距和排列规则,自动适配不同人数的布局需求",
  2383. "tutorial": "",
  2384. "input": "",
  2385. "output": "",
  2386. "updated_time": 1776667149,
  2387. "status": "未接入"
  2388. },
  2389. {
  2390. "id": "FineBI / 镝数图表",
  2391. "name": "FineBI / 镝数图表",
  2392. "version": "tao_dev_1",
  2393. "introduction": "在平台内设置全局配色主题,所有图表自动继承同一色系(如生长色系渐变、同色系配色),保证指标颜色一致性",
  2394. "tutorial": "",
  2395. "input": "",
  2396. "output": "",
  2397. "updated_time": 1776667149,
  2398. "status": "未接入"
  2399. },
  2400. {
  2401. "id": "FLORA AI",
  2402. "name": "FLORA AI",
  2403. "version": "tao_dev_1",
  2404. "introduction": "系统化工作流,输入服装单品图(上衣、下装)+ 模特参考 + 环境参考,自动合成完整时尚营销素材",
  2405. "tutorial": "",
  2406. "input": "",
  2407. "output": "",
  2408. "updated_time": 1776667149,
  2409. "status": "未接入"
  2410. },
  2411. {
  2412. "id": "Flux2 Klein",
  2413. "name": "Flux2 Klein",
  2414. "version": "tao_dev_1",
  2415. "introduction": "输入单张参考图,通过 Klein 工作流自动生成人物多视角图像,支持正面、反面、侧面、半侧面等角度转换",
  2416. "tutorial": "",
  2417. "input": "",
  2418. "output": "",
  2419. "updated_time": 1776667149,
  2420. "status": "未接入"
  2421. },
  2422. {
  2423. "id": "Flux / ComfyUI",
  2424. "name": "Flux / ComfyUI",
  2425. "version": "tao_dev_1",
  2426. "introduction": "提示词指定微距镜头参数(100mm f/2.8 macro / 14mm超广角)+ 构图描述(画面仅显示部分面部、另一侧超出取景范围)+ KSampler工作流",
  2427. "tutorial": "",
  2428. "input": "",
  2429. "output": "",
  2430. "updated_time": 1776667149,
  2431. "status": "未接入"
  2432. },
  2433. {
  2434. "id": "Flux / ComfyUI / Grok Imagine",
  2435. "name": "Flux / ComfyUI / Grok Imagine",
  2436. "version": "tao_dev_1",
  2437. "introduction": "提示词关键词:极端广角镜头 / 鱼眼透视 / fisheye distortion / 低角度仰拍 / 从产品底部向上拍摄 / F1.2大光圈浅景深 / 14mm超广角",
  2438. "tutorial": "",
  2439. "input": "",
  2440. "output": "",
  2441. "updated_time": 1776667149,
  2442. "status": "未接入"
  2443. },
  2444. {
  2445. "id": "Flux + ControlNet",
  2446. "name": "Flux + ControlNet",
  2447. "version": "tao_dev_1",
  2448. "introduction": "使用 ControlNet 的 OpenPose 或 Canny 节点锁定人物姿态和面部结构,通过 Flux 模型生成赛博朋克风格化版本",
  2449. "tutorial": "",
  2450. "input": "",
  2451. "output": "",
  2452. "updated_time": 1776667149,
  2453. "status": "未接入"
  2454. },
  2455. {
  2456. "id": "flux_generate",
  2457. "name": "Flux-多模态生图编辑API",
  2458. "version": "1.0.0",
  2459. "introduction": "已支持的最新版本: 1.0.0\n\n已支持的最新版本: 2.0\n\n已支持的最新版本: 2\n\n已支持的最新版本: 2\n\n已支持的最新版本: 1.0.0\n\n已支持的最新版本: 1.0.0\n\n已支持的最新版本: 1.0.0\n\n已支持的最新版本: 1.0.0\n\n已支持的最新版本: 1.0.0\n\n已支持的最新版本: 1.0\n\n已支持的最新版本: 1.0.0\n\n已支持的最新版本: 1.0.0\n\n已支持的最新版本: 1.0.0\n\n已支持的最新版本: 1.0\n\n已支持的最新版本: 2\n\n已支持的最新版本: FLUX.2\n\n已支持的最新版本: 2 max\n\n已支持的最新版本: 1.0.0\n\n已支持的最新版本: 1.0.0\n\n已支持的最新版本: 1.0.0\n\n已支持的最新版本: 1.0.0\n\n已支持的最新版本: 1.0.0\n\n基于 APIyi 中转站实现的高级 Flux 图像生成与编辑(图生图/局部重绘)调用。如果只传 prompt 则触发纯文生图;如果传入 image_url (最好配合 flux-kontext-max 模型) 则触发高级图像编辑。一次性返回生成好的图片URL(临时URL,10分钟有效)。\n\n[融合补充描述]:\n基于 Flux 模型的图像生成工具\n\n[融合补充描述]:\n提交 Flux 模型生成任务的工具\n\n[融合补充描述]:\n高质量生成模型\n\n[融合补充描述]:\n开源 AI 图像生成模型,细节控制能力强。\n\n[融合补充描述]:\n与 Midjourney 配合实现一致性控制的工作流组件\n\n[融合补充描述]:\nBlack Forest Labs 推出的 AI 图像生成模型,提供官方 API 用于生成图像。\n\n[融合补充描述]:\nBlack Forest Labs 开发的旗舰级图像生成与编辑模型,支持实时网络搜索与高精度提示词遵循\n\n[融合补充描述]:\n提供多种变体(max/pro/flex/klein/dev)的 AI 图像生成模型家族\n\n[融合补充描述]:\nFlux 系列基础检查点模型\n\n[融合补充描述]:\n用于增强手部细节的 LoRA 微调模型\n\n[融合补充描述]:\n高级图像编辑模型,擅长材质与光影处理\n\n[融合补充描述]:\nAI 图像生成与增强工具\n\n[融合补充描述]:\nAI 图像编辑模型,在 LMArena 评测中表现优异\n\n[融合补充描述]:\n参考图像特征提取与融合模块,用于保持服装一致性\n\n[融合补充描述]:\n配合 ComfyUI 使用的 LoRA 模型\n\n[融合补充描述]:\n控制一致性插件\n\n[融合补充描述]:\n配合 Flux 使用的图像参考适配器\n\n[融合补充描述]:\n支持换装编辑\n\n[融合补充描述]:\n适合性价比和批量生产的 AI 图像生成模型\n\n[融合补充描述]:\n提示词准确性高、写实、支持开放权重及部分本地部署的 AI 图像生成器\n\n[融合补充描述]:\nAI 图像生成模型,擅长 photorealism 和提示词准确性\n\n[融合补充描述]:\n支持 Flux 模型的 AI 生成平台或模型本身",
  2460. "tutorial": "\n\n通过 toolhub_call 调用,传入 prompt、image_urls 等参数\n\n提交多条件控制任务\n\n配合 ComfyUI 使用\n\n竞品对比提及,具有细节控制和开源优势。\n\n结构化提示词管理,配合 Midjourney 生成分镜\n\n通过官方 API 端点(/api-reference/models/generate-an-image-with-flux-2-max)调用生成图像。\n\n通过 API 接入、在线 Playground 体验或本地部署(部分变体)\n\n根据场景需求选择不同变体进行图像生成或本地部署\n\n作为生成图像的基础底模\n\n加载至基础模型以提升手部生成质量\n\n作为 flux_generate 工具的 model 参数调用\n\n文本到图像生成\n\n图像编辑与生成\n\n调节权重 (默认 3,差距大改 2) 控制参考服装权重\n\n本地部署方案组件\n\n结合 ControlNet+IP-Adapter 控制一致性\n\n权重默认 3,服装结构差距大时改为 2\n\n用于换装编辑任务\n\n用于需要性价比或批量生产的场景\n\n文本生成图像,支持本地部署部分版本\n\n文本生成图像\n\n提供 Flux 模型的生成服务或作为替代平台",
  2461. "input": {
  2462. "type": "object",
  2463. "required": [
  2464. "prompt"
  2465. ],
  2466. "properties": {
  2467. "seed": {
  2468. "type": "integer",
  2469. "description": "随机种子。固定种子可以保证在相同提示词下重现相同构图结果。"
  2470. },
  2471. "model": {
  2472. "enum": [
  2473. "flux-2-flex",
  2474. "flux-2-klein-4b",
  2475. "flux-2-klein-9b",
  2476. "flux-2-max",
  2477. "flux-2-pro",
  2478. "flux-dev",
  2479. "flux-kontext-max",
  2480. "flux-kontext-pro"
  2481. ],
  2482. "type": "string",
  2483. "default": "flux-kontext-pro",
  2484. "description": "模型选型。支持 flux-2-flex, flux-2-klein-4b, flux-2-klein-9b, flux-2-max, flux-2-pro, flux-dev, flux-kontext-max, flux-kontext-pro"
  2485. },
  2486. "prompt": {
  2487. "type": "string",
  2488. "description": "正向提示词。描述图像的视觉内容,越丰富效果越好。"
  2489. },
  2490. "mask_url": {
  2491. "type": "string",
  2492. "description": "(选填)蒙版原图外链。必须配合 image_url 使用,白色为需要编辑区域,黑色为保护区域。"
  2493. },
  2494. "image_url": {
  2495. "type": "string",
  2496. "description": "参考图网络外链。若传入此项,则引擎切换至图生图(编辑)模式。强烈建议模型选 flux-kontext-max。"
  2497. },
  2498. "aspect_ratio": {
  2499. "type": "string",
  2500. "default": "16:9",
  2501. "description": "图像宽高比。支持从 3:7 (竖版) 到 7:3 (横版) 的连续宽高比范围,如'1:1'(默认), '16:9', '9:16', '3:2', '2:3'。"
  2502. },
  2503. "output_format": {
  2504. "enum": [
  2505. "jpeg",
  2506. "png"
  2507. ],
  2508. "type": "string",
  2509. "default": "png",
  2510. "description": "输出格式,如'jpeg'或'png'"
  2511. },
  2512. "safety_tolerance": {
  2513. "type": "integer",
  2514. "default": 2,
  2515. "description": "内容安全级别控制,0=最严格,6=最宽松,默认位2"
  2516. },
  2517. "prompt_upsampling": {
  2518. "type": "boolean",
  2519. "default": false,
  2520. "description": "是否开启提示词增强。设为true时,AI会自动丰富简短的提示词,改善生图细节。"
  2521. }
  2522. }
  2523. },
  2524. "output": {
  2525. "type": "object",
  2526. "properties": {
  2527. "images": {
  2528. "type": "array",
  2529. "items": {
  2530. "type": "string"
  2531. },
  2532. "description": "成功生成的图片URL数组(链接10分钟有效,需使用外部工具抓取下载)"
  2533. },
  2534. "status": {
  2535. "type": "string",
  2536. "description": "结果态"
  2537. }
  2538. }
  2539. },
  2540. "updated_time": 1775810027,
  2541. "status": "已接入"
  2542. },
  2543. {
  2544. "id": "flux_generate / nano_banana",
  2545. "name": "flux_generate / nano_banana",
  2546. "version": "tao_dev_1",
  2547. "introduction": "提示词核心指令:Keep the product geometry, lighting, and perspective identical across all versions. Only change surface color and finish. Each variation should appear as a real manufactured product, not a digital recolor.",
  2548. "tutorial": "",
  2549. "input": "",
  2550. "output": "",
  2551. "updated_time": 1776667149,
  2552. "status": "未接入"
  2553. },
  2554. {
  2555. "id": "flux_generate + 提示词光影描述",
  2556. "name": "flux_generate + 提示词光影描述",
  2557. "version": "tao_dev_1",
  2558. "introduction": "在提示词中精确描述光源位置、光照类型(体积光/环境光/边缘光),引导模型生成光影自洽的合成画面",
  2559. "tutorial": "",
  2560. "input": "",
  2561. "output": "",
  2562. "updated_time": 1776667149,
  2563. "status": "未接入"
  2564. },
  2565. {
  2566. "id": "Flux + IP-Adapter",
  2567. "name": "Flux + IP-Adapter",
  2568. "version": "tao_dev_1",
  2569. "introduction": "以用户照片为 IP-Adapter 参考图输入,结合喜庆背景提示词,生成人物面孔嵌入喜庆场景的融合图像",
  2570. "tutorial": "",
  2571. "input": "",
  2572. "output": "",
  2573. "updated_time": 1776667149,
  2574. "status": "未接入"
  2575. },
  2576. {
  2577. "id": "Flux Klein 真实人像细节LoRA",
  2578. "name": "Flux Klein 真实人像细节LoRA",
  2579. "version": "tao_dev_1",
  2580. "introduction": "加载Flux Klein真实人像细节LoRA模型,给生成图像添加真实皮肤细节,特写图有清晰可见的皮肤纹理,工作流可在runninghub获取",
  2581. "tutorial": "",
  2582. "input": "",
  2583. "output": "",
  2584. "updated_time": 1776667149,
  2585. "status": "未接入"
  2586. },
  2587. {
  2588. "id": "Flux / nano_banana",
  2589. "name": "Flux / nano_banana",
  2590. "version": "tao_dev_1",
  2591. "introduction": "利用 Flux 模型对中文语义的理解能力,直接输入中文吉祥符号名称作为生成引导词,结合红金配色参数控制",
  2592. "tutorial": "",
  2593. "input": "",
  2594. "output": "",
  2595. "updated_time": 1776667149,
  2596. "status": "未接入"
  2597. },
  2598. {
  2599. "id": "Flux/Nano Banana",
  2600. "name": "Flux/Nano Banana",
  2601. "version": "tao_dev_1",
  2602. "introduction": "使用 'high-contrast cinematic lighting from the side'、'warm spotlight halo'、'strong natural sunlight through window blinds casting striped shadows' 等具体描述实现精准布光效果",
  2603. "tutorial": "",
  2604. "input": "",
  2605. "output": "",
  2606. "updated_time": 1776667149,
  2607. "status": "未接入"
  2608. },
  2609. {
  2610. "id": "Flux/Seedance",
  2611. "name": "Flux/Seedance",
  2612. "version": "tao_dev_1",
  2613. "introduction": "使用 'cool blue shadows'、'soft golden highlights'、'volumetric lighting'、'high dynamic range' 组合实现冷暖对比的未来城市场景",
  2614. "tutorial": "",
  2615. "input": "",
  2616. "output": "",
  2617. "updated_time": 1776667149,
  2618. "status": "未接入"
  2619. },
  2620. {
  2621. "id": "Flux/Seedream",
  2622. "name": "Flux/Seedream",
  2623. "version": "tao_dev_1",
  2624. "introduction": "使用 'glowing reflections on glass towers'、'wet pavement reflections'、'specular highlights reflecting off wet pavement' 实现城市场景的反射效果",
  2625. "tutorial": "",
  2626. "input": "",
  2627. "output": "",
  2628. "updated_time": 1776667149,
  2629. "status": "未接入"
  2630. },
  2631. {
  2632. "id": "Flux图像编辑",
  2633. "name": "Flux图像编辑",
  2634. "version": "tao_dev_1",
  2635. "introduction": "在已有室内效果图基础上,通过局部重绘精准替换门洞造型(圆形→拱形→海棠角)",
  2636. "tutorial": "",
  2637. "input": "",
  2638. "output": "",
  2639. "updated_time": 1776667149,
  2640. "status": "未接入"
  2641. },
  2642. {
  2643. "id": "Flux文生图",
  2644. "name": "Flux文生图",
  2645. "version": "tao_dev_1",
  2646. "introduction": "通过详细描述(荷花山水国画/梅花枝条/竹叶图案/水墨小品/拓片装框)生成特定题材的中式装饰画",
  2647. "tutorial": "",
  2648. "input": "",
  2649. "output": "",
  2650. "updated_time": 1776667149,
  2651. "status": "未接入"
  2652. },
  2653. {
  2654. "id": "Flux高分辨率生成",
  2655. "name": "Flux高分辨率生成",
  2656. "version": "tao_dev_1",
  2657. "introduction": "利用Flux模型的高细节生成能力,在原生高分辨率下呈现藤编编织纹理和木纹肌理",
  2658. "tutorial": "",
  2659. "input": "",
  2660. "output": "",
  2661. "updated_time": 1776667149,
  2662. "status": "未接入"
  2663. },
  2664. {
  2665. "id": "Gemini",
  2666. "name": "Gemini",
  2667. "version": "tao_dev_1",
  2668. "introduction": "输入结构化框架描述,快速生成技术路线图的文字骨架,再导入 Draw.io 精修布局",
  2669. "tutorial": "",
  2670. "input": "",
  2671. "output": "",
  2672. "updated_time": 1776667149,
  2673. "status": "未接入"
  2674. },
  2675. {
  2676. "id": "Gemini 3.0 Pro",
  2677. "name": "Gemini 3.0 Pro",
  2678. "version": "tao_dev_1",
  2679. "introduction": "输入主题方向 → 深度拆解爆款逻辑 → 自动生成一分钟短视频脚本 → 规划九张分镜的详细内容(镜头语言、画面效果、关键对白)",
  2680. "tutorial": "",
  2681. "input": "",
  2682. "output": "",
  2683. "updated_time": 1776667149,
  2684. "status": "未接入"
  2685. },
  2686. {
  2687. "id": "Gemini AI",
  2688. "name": "Gemini AI",
  2689. "version": "tao_dev_1",
  2690. "introduction": "在提示词中指定'ultra-realistic 360-degree panoramic photo (equirectangular projection, 2:1 aspect ratio)'、'as if captured by a professional 360 camera'、'horizontal seamless continuity, left and right edges perfectly aligned'",
  2691. "tutorial": "",
  2692. "input": "",
  2693. "output": "",
  2694. "updated_time": 1776667149,
  2695. "status": "未接入"
  2696. },
  2697. {
  2698. "id": "Gemini AI / ChatGPT 4o",
  2699. "name": "Gemini AI / ChatGPT 4o",
  2700. "version": "tao_dev_1",
  2701. "introduction": "在提示词中明确指定'one-point perspective'、'deep corridor perspective enhancing immersion'、'symmetrical framing that emphasizes interior spatial depth'等透视关键词,配合视平线和消失点描述",
  2702. "tutorial": "",
  2703. "input": "",
  2704. "output": "",
  2705. "updated_time": 1776667149,
  2706. "status": "未接入"
  2707. },
  2708. {
  2709. "id": "Gemini Canvas",
  2710. "name": "Gemini Canvas",
  2711. "version": "tao_dev_1",
  2712. "introduction": "利用 Gemini Canvas 功能构建交互式网页图表,支持动态数据展示和悬停效果,无需编写代码",
  2713. "tutorial": "",
  2714. "input": "",
  2715. "output": "",
  2716. "updated_time": 1776667149,
  2717. "status": "未接入"
  2718. },
  2719. {
  2720. "id": "Gemini / ChatGPT",
  2721. "name": "Gemini / ChatGPT",
  2722. "version": "tao_dev_1",
  2723. "introduction": "输入故事主题,通过结构化提示词要求LLM输出N格分镜描述列表,每格包含场景动作/景别/镜头角度等要素,作为后续图像生成的prompt序列",
  2724. "tutorial": "",
  2725. "input": "",
  2726. "output": "",
  2727. "updated_time": 1776667149,
  2728. "status": "未接入"
  2729. },
  2730. {
  2731. "id": "Gemini Nano Banana Pro",
  2732. "name": "Gemini Nano Banana Pro",
  2733. "version": "tao_dev_1",
  2734. "introduction": "提示词:natural skin texture + soft diffused studio lighting + natural freckles across nose and cheeks + editorial skincare photography style",
  2735. "tutorial": "",
  2736. "input": "",
  2737. "output": "",
  2738. "updated_time": 1776667149,
  2739. "status": "未接入"
  2740. },
  2741. {
  2742. "id": "Gemini + NotebookLM",
  2743. "name": "Gemini + NotebookLM",
  2744. "version": "tao_dev_1",
  2745. "introduction": "NotebookLM 读取多种数据来源(文档、链接、YouTube 频道),Gemini 3 将数据转换为地图型、漫画型等多种风格的信息图",
  2746. "tutorial": "",
  2747. "input": "",
  2748. "output": "",
  2749. "updated_time": 1776667149,
  2750. "status": "未接入"
  2751. },
  2752. {
  2753. "id": "Gemini Thinking Mode",
  2754. "name": "Gemini Thinking Mode",
  2755. "version": "tao_dev_1",
  2756. "introduction": "使用结构化提示词(ar比例+camera位置+character pose+angle视角+mood氛围+light光线+effects特效+camera镜头+composition构图)生成复杂互动场景",
  2757. "tutorial": "",
  2758. "input": "",
  2759. "output": "",
  2760. "updated_time": 1776666846,
  2761. "status": "未接入"
  2762. },
  2763. {
  2764. "id": "Gemini + 即梦Seedance 2.0工作流",
  2765. "name": "Gemini + 即梦Seedance 2.0工作流",
  2766. "version": "tao_dev_1",
  2767. "introduction": "使用Gemini构建分镜逻辑和视觉统一规则,通过9宫格/25宫格实现多画面视觉统一,配合即梦Seedance 2.0的单帧镜头混合实现电影感成片",
  2768. "tutorial": "",
  2769. "input": "",
  2770. "output": "",
  2771. "updated_time": 1776667149,
  2772. "status": "未接入"
  2773. },
  2774. {
  2775. "id": "Google Flow",
  2776. "name": "Google Flow",
  2777. "version": "tao_dev_1",
  2778. "introduction": "通过电影灯光提示词参数控制体积光方向和强度,结合色温设置(如2500-3000K琥珀色)生成特定氛围的光束",
  2779. "tutorial": "",
  2780. "input": "",
  2781. "output": "",
  2782. "updated_time": 1776667149,
  2783. "status": "未接入"
  2784. },
  2785. {
  2786. "id": "Google Gemini(Nano Banana 2)",
  2787. "name": "Google Gemini(Nano Banana 2)",
  2788. "version": "tao_dev_1",
  2789. "introduction": "设置随机化参数(视线方向、嘴部表情类型、腮红)→ AI自动生成多张表情各异的照片;支持grin/smirk/open/smile等多种嘴部表情组合",
  2790. "tutorial": "",
  2791. "input": "",
  2792. "output": "",
  2793. "updated_time": 1776666487,
  2794. "status": "未接入"
  2795. },
  2796. {
  2797. "id": "Google Nano Banana Pro",
  2798. "name": "Google Nano Banana Pro",
  2799. "version": "tao_dev_1",
  2800. "introduction": "使用 'soft bloom'、'lens flare'、'faint glow'、'shallow depth of field' 实现动漫风格的光学效果",
  2801. "tutorial": "",
  2802. "input": "",
  2803. "output": "",
  2804. "updated_time": 1776667149,
  2805. "status": "未接入"
  2806. },
  2807. {
  2808. "id": "Google Spatial Media Metadata Injector",
  2809. "name": "Google Spatial Media Metadata Injector",
  2810. "version": "tao_dev_1",
  2811. "introduction": "为全景视频注入 XMP 空间媒体元数据,使播放器识别为交互式 360 度体验(GitHub 开源工具)",
  2812. "tutorial": "",
  2813. "input": "",
  2814. "output": "",
  2815. "updated_time": 1776667149,
  2816. "status": "未接入"
  2817. },
  2818. {
  2819. "id": "Google VEO 3",
  2820. "name": "Google VEO 3",
  2821. "version": "tao_dev_1",
  2822. "introduction": "在 prompt 中分时段描述镜头运动(如 [0s-3s] camera begins at horse level, racing beside the rider),VEO 3 按描述生成对应镜头运动",
  2823. "tutorial": "",
  2824. "input": "",
  2825. "output": "",
  2826. "updated_time": 1776667149,
  2827. "status": "未接入"
  2828. },
  2829. {
  2830. "id": "Google VEO 3.1 / Flow",
  2831. "name": "Google VEO 3.1 / Flow",
  2832. "version": "tao_dev_1",
  2833. "introduction": "使用 Ingredients-to-Video 功能合并多个图像创建超现实的生长环境,实现空间突破感的动态视频版本",
  2834. "tutorial": "",
  2835. "input": "",
  2836. "output": "",
  2837. "updated_time": 1776667149,
  2838. "status": "未接入"
  2839. },
  2840. {
  2841. "id": "Google VEO 3 / Kling",
  2842. "name": "Google VEO 3 / Kling",
  2843. "version": "tao_dev_1",
  2844. "introduction": "将静态超现实图像动画化,使沙丘变形、镜面倒影等超现实元素产生动态流动效果",
  2845. "tutorial": "",
  2846. "input": "",
  2847. "output": "",
  2848. "updated_time": 1776667149,
  2849. "status": "未接入"
  2850. },
  2851. {
  2852. "id": "Google Veo 3 / Veo 3.1",
  2853. "name": "Google Veo 3 / Veo 3.1",
  2854. "version": "tao_dev_1",
  2855. "introduction": "支持图像到视频的镜头运动控制,可指定视差、起止帧和相机系统参数",
  2856. "tutorial": "",
  2857. "input": "",
  2858. "output": "",
  2859. "updated_time": 1776667149,
  2860. "status": "未接入"
  2861. },
  2862. {
  2863. "id": "Google Whisk AI",
  2864. "name": "Google Whisk AI",
  2865. "version": "tao_dev_1",
  2866. "introduction": "基于文本描述快速生成拟人化动物角色图像",
  2867. "tutorial": "",
  2868. "input": "",
  2869. "output": "",
  2870. "updated_time": 1776666846,
  2871. "status": "未接入"
  2872. },
  2873. {
  2874. "id": "GPT-4o",
  2875. "name": "GPT-4o",
  2876. "version": "tao_dev_1",
  2877. "introduction": "使用提示词'画面比例3:2,创建全身角色正视图、侧视图和背视图'一次生成三视图",
  2878. "tutorial": "",
  2879. "input": "",
  2880. "output": "",
  2881. "updated_time": 1776667149,
  2882. "status": "未接入"
  2883. },
  2884. {
  2885. "id": "GPT-4o / Claude(图像编辑模式)",
  2886. "name": "GPT-4o / Claude(图像编辑模式)",
  2887. "version": "tao_dev_1",
  2888. "introduction": "通过自然语言指令描述需要修改的文字内容,AI 在保持整体风格的前提下完成图像内文字编辑",
  2889. "tutorial": "",
  2890. "input": "",
  2891. "output": "",
  2892. "updated_time": 1776667149,
  2893. "status": "未接入"
  2894. },
  2895. {
  2896. "id": "GPT-4o / DeepSeek",
  2897. "name": "GPT-4o / DeepSeek",
  2898. "version": "tao_dev_1",
  2899. "introduction": "先用LLM生成结构化情绪提示词列表(每种情绪对应一条独立prompt),再批量提交给图像生成模型",
  2900. "tutorial": "",
  2901. "input": "",
  2902. "output": "",
  2903. "updated_time": 1776667149,
  2904. "status": "未接入"
  2905. },
  2906. {
  2907. "id": "GPT-4o / 即梦AI",
  2908. "name": "GPT-4o / 即梦AI",
  2909. "version": "tao_dev_1",
  2910. "introduction": "在提示词中明确描述'毛茸茸质感'、'绒毛细腻'、'光影逼真'触发模型原生材质渲染",
  2911. "tutorial": "",
  2912. "input": "",
  2913. "output": "",
  2914. "updated_time": 1776667149,
  2915. "status": "未接入"
  2916. },
  2917. {
  2918. "id": "GPT-4o图像生成",
  2919. "name": "GPT-4o图像生成",
  2920. "version": "tao_dev_1",
  2921. "introduction": "上传九宫格参考图+宠物原图,提示词指定'整整齐齐无留白排列',一次性输出完整九宫格",
  2922. "tutorial": "",
  2923. "input": "",
  2924. "output": "",
  2925. "updated_time": 1776667149,
  2926. "status": "未接入"
  2927. },
  2928. {
  2929. "id": "gpt-image-2",
  2930. "name": "gpt-image-2",
  2931. "version": "tao_dev_1",
  2932. "introduction": "输入文字描述,gpt-image-2 自动生成带文字的完整表情包图像,中文准确无错字",
  2933. "tutorial": "",
  2934. "input": "",
  2935. "output": "",
  2936. "updated_time": 1776667149,
  2937. "status": "未接入"
  2938. },
  2939. {
  2940. "id": "Grok",
  2941. "name": "Grok",
  2942. "version": "tao_dev_1",
  2943. "introduction": "通过 grokimagine 接口直接生成图像,同时支持提示词优化",
  2944. "tutorial": "",
  2945. "input": "",
  2946. "output": "",
  2947. "updated_time": 1776667149,
  2948. "status": "未接入"
  2949. },
  2950. {
  2951. "id": "Grok AI图像编辑",
  2952. "name": "Grok AI图像编辑",
  2953. "version": "tao_dev_1",
  2954. "introduction": "在X应用中附加照片后,点击画笔图标进入编辑画面,在Grok指令输入栏输入自然语言编辑指令,AI自动应用相应的编辑效果",
  2955. "tutorial": "",
  2956. "input": "",
  2957. "output": "",
  2958. "updated_time": 1776666846,
  2959. "status": "未接入"
  2960. },
  2961. {
  2962. "id": "Grok / Gemini",
  2963. "name": "Grok / Gemini",
  2964. "version": "tao_dev_1",
  2965. "introduction": "直接在对话式提示词中描述目标视角,如 'Generate an image from a worm's eye perspective looking up at...',模型原生理解摄影术语",
  2966. "tutorial": "",
  2967. "input": "",
  2968. "output": "",
  2969. "updated_time": 1776667149,
  2970. "status": "未接入"
  2971. },
  2972. {
  2973. "id": "Grok Imagine / flux_generate",
  2974. "name": "Grok Imagine / flux_generate",
  2975. "version": "tao_dev_1",
  2976. "introduction": "通过精细提示词直接描述「人物头部被宇宙星云/粒子爆炸替代」的超现实场景,一步生成完整合成画面",
  2977. "tutorial": "",
  2978. "input": "",
  2979. "output": "",
  2980. "updated_time": 1776667149,
  2981. "status": "未接入"
  2982. },
  2983. {
  2984. "id": "Grok Imagine / Gemini / Flux",
  2985. "name": "Grok Imagine / Gemini / Flux",
  2986. "version": "tao_dev_1",
  2987. "introduction": "提示词精细化描述:slightly parted about 4 millimeters(微张4毫米)/ tongue out / eyes looking at viewer / quiet focused gaze / 6种情绪细节提示词模板",
  2988. "tutorial": "",
  2989. "input": "",
  2990. "output": "",
  2991. "updated_time": 1776667149,
  2992. "status": "未接入"
  2993. },
  2994. {
  2995. "id": "Grok Imagine Pro",
  2996. "name": "Grok Imagine Pro",
  2997. "version": "tao_dev_1",
  2998. "introduction": "使用 [人物描述]+'wearing'[配饰/服装]+[姿态]+[背景]+[风格参数] 结构生成穿戴场景",
  2999. "tutorial": "",
  3000. "input": "",
  3001. "output": "",
  3002. "updated_time": 1776666846,
  3003. "status": "未接入"
  3004. },
  3005. {
  3006. "id": "Grok / Rendar AI / Dzine AI",
  3007. "name": "Grok / Rendar AI / Dzine AI",
  3008. "version": "tao_dev_1",
  3009. "introduction": "提示词聚焦微距运动相机风格,如 'ant cam POV, first person view from ground level, macro lens, hyper-realistic',强调超写实微距视觉效果和沉浸式叙事",
  3010. "tutorial": "",
  3011. "input": "",
  3012. "output": "",
  3013. "updated_time": 1776667149,
  3014. "status": "未接入"
  3015. },
  3016. {
  3017. "id": "Grok(xAI)",
  3018. "name": "Grok(xAI)",
  3019. "version": "tao_dev_1",
  3020. "introduction": "Grok Imagine 将静态图像转为流畅的说话动画并自动唇同步,适用于3D卡通动物角色",
  3021. "tutorial": "",
  3022. "input": "",
  3023. "output": "",
  3024. "updated_time": 1776667149,
  3025. "status": "未接入"
  3026. },
  3027. {
  3028. "id": "Hailuo AI",
  3029. "name": "Hailuo AI",
  3030. "version": "tao_dev_1",
  3031. "introduction": "图像转视频,支持动作和摄像机移动,免费积分可用,适合批量生产",
  3032. "tutorial": "",
  3033. "input": "",
  3034. "output": "",
  3035. "updated_time": 1776667149,
  3036. "status": "未接入"
  3037. },
  3038. {
  3039. "id": "Hedra",
  3040. "name": "Hedra",
  3041. "version": "tao_dev_1",
  3042. "introduction": "输入静态人物图像 + 音频文件 + 提示词 → Hedra自动将静态图像转化为带有自然表情和口型变化的视频;专门将静态图像的表情和口型自然动画化",
  3043. "tutorial": "",
  3044. "input": "",
  3045. "output": "",
  3046. "updated_time": 1776666487,
  3047. "status": "未接入"
  3048. },
  3049. {
  3050. "id": "Higgsfield AI Canvas",
  3051. "name": "Higgsfield AI Canvas",
  3052. "version": "tao_dev_1",
  3053. "introduction": "内置 Product Placement 功能,几乎单击一次即可在现有图像中添加或替换道具",
  3054. "tutorial": "",
  3055. "input": "",
  3056. "output": "",
  3057. "updated_time": 1776666846,
  3058. "status": "未接入"
  3059. },
  3060. {
  3061. "id": "Higgsfield Cinema Studio",
  3062. "name": "Higgsfield Cinema Studio",
  3063. "version": "tao_dev_1",
  3064. "introduction": "将单帧图像转化为具有电影级运镜和场景动态的视频片段,适合冬季穿搭的动态展示",
  3065. "tutorial": "",
  3066. "input": "",
  3067. "output": "",
  3068. "updated_time": 1776667149,
  3069. "status": "未接入"
  3070. },
  3071. {
  3072. "id": "Higgsfield Cinema Studio / Kling",
  3073. "name": "Higgsfield Cinema Studio / Kling",
  3074. "version": "tao_dev_1",
  3075. "introduction": "将静态冬季场景图转化为带有动态飘雪、呼吸雾气等动态元素的电影感冬季视频场景",
  3076. "tutorial": "",
  3077. "input": "",
  3078. "output": "",
  3079. "updated_time": 1776667149,
  3080. "status": "未接入"
  3081. },
  3082. {
  3083. "id": "higgsfield_shots",
  3084. "name": "higgsfield_shots",
  3085. "version": "tao_dev_1",
  3086. "introduction": "上传单张图像到 Higgsfield AI 平台的 SHOTS 功能,自动生成9种不同构图角度,底层驱动模型为 Nano Banana Pro",
  3087. "tutorial": "",
  3088. "input": "",
  3089. "output": "",
  3090. "updated_time": 1776667149,
  3091. "status": "未接入"
  3092. },
  3093. {
  3094. "id": "ICEdit(基于 FLUX Fill)",
  3095. "name": "ICEdit(基于 FLUX Fill)",
  3096. "version": "tao_dev_1",
  3097. "introduction": "通过文字描述定向编辑图片中的人物与场景互动效果,效率秒杀传统工具",
  3098. "tutorial": "",
  3099. "input": "",
  3100. "output": "",
  3101. "updated_time": 1776666487,
  3102. "status": "未接入"
  3103. },
  3104. {
  3105. "id": "ideogram.ai",
  3106. "name": "ideogram.ai",
  3107. "version": "tao_dev_1",
  3108. "introduction": "使用ideogram.ai工具生成更稳定的多宫格图片,解决GPT生成9/16宫格数量不稳定的问题",
  3109. "tutorial": "",
  3110. "input": "",
  3111. "output": "",
  3112. "updated_time": 1776666846,
  3113. "status": "未接入"
  3114. },
  3115. {
  3116. "id": "Ideogram + Speel (UGC Builder) + ElevenLabs",
  3117. "name": "Ideogram + Speel (UGC Builder) + ElevenLabs",
  3118. "version": "tao_dev_1",
  3119. "introduction": "Ideogram 生成一致 AI 头像 → Speel 创建带新服装/背景/产品的广告变体 → ElevenLabs 生成逼真语音 → 添加背景音频增强真实感",
  3120. "tutorial": "",
  3121. "input": "",
  3122. "output": "",
  3123. "updated_time": 1776667149,
  3124. "status": "未接入"
  3125. },
  3126. {
  3127. "id": "image_stitcher",
  3128. "name": "图片拼接工具",
  3129. "version": "1.0.0",
  3130. "introduction": "已支持的最新版本: 1.0.0\n\n将多张图片按指定方向(水平/垂直/网格)拼接成一张大图。支持间距设置、背景色填充和统一缩放模式。输入支持网络 URL 链接和 Base64,输出直接返回一张拼接成功的干净云端长效外链(URL)。\n\n[融合补充描述]:\nComfyUI 自定义节点包,提供图像拼接等功能",
  3131. "tutorial": "\n\n使用 Image Concatenate Multi 实现多图拼合",
  3132. "input": {
  3133. "type": "object",
  3134. "reason": "图片拼接工具输入参数定义",
  3135. "required": [
  3136. "images"
  3137. ],
  3138. "properties": {
  3139. "images": {
  3140. "type": "array",
  3141. "items": {
  3142. "type": "string"
  3143. },
  3144. "minItems": 2,
  3145. "description": "图片数据源列表,强烈推荐传递 http:// 或 https:// 网络链接!兼容 Base64 编码,至少 2 张"
  3146. },
  3147. "columns": {
  3148. "type": "integer",
  3149. "default": 2,
  3150. "minimum": 1,
  3151. "description": "grid 模式下每行的列数"
  3152. },
  3153. "spacing": {
  3154. "type": "integer",
  3155. "default": 0,
  3156. "minimum": 0,
  3157. "description": "图片间距(像素)"
  3158. },
  3159. "direction": {
  3160. "enum": [
  3161. "horizontal",
  3162. "vertical",
  3163. "grid"
  3164. ],
  3165. "type": "string",
  3166. "default": "horizontal",
  3167. "description": "拼接方向:horizontal=水平,vertical=垂直,grid=网格"
  3168. },
  3169. "resize_mode": {
  3170. "enum": [
  3171. "none",
  3172. "fit_width",
  3173. "fit_height"
  3174. ],
  3175. "type": "string",
  3176. "default": "none",
  3177. "description": "缩放模式:none=不缩放,fit_width=统一宽度,fit_height=统一高度"
  3178. },
  3179. "background_color": {
  3180. "type": "string",
  3181. "default": "#FFFFFF",
  3182. "description": "间距填充背景色,十六进制颜色值"
  3183. }
  3184. }
  3185. },
  3186. "output": {
  3187. "type": "object",
  3188. "reason": "图片拼接工具输出结果定义",
  3189. "required": [
  3190. "image",
  3191. "width",
  3192. "height"
  3193. ],
  3194. "properties": {
  3195. "url": {
  3196. "type": "string",
  3197. "description": "拼接成功的持久化外链"
  3198. },
  3199. "width": {
  3200. "type": "integer",
  3201. "description": "结果图宽度(像素)"
  3202. },
  3203. "height": {
  3204. "type": "integer",
  3205. "description": "结果图高度(像素)"
  3206. }
  3207. }
  3208. },
  3209. "updated_time": 1775810027,
  3210. "status": "已接入"
  3211. },
  3212. {
  3213. "id": "InDesign/Illustrator网格系统",
  3214. "name": "InDesign/Illustrator网格系统",
  3215. "version": "tao_dev_1",
  3216. "introduction": "在专业排版软件中设置版心、分栏、基线网格参数,生成符合印刷规范的网格系统,适合画册、杂志、企业内刊排版",
  3217. "tutorial": "",
  3218. "input": "",
  3219. "output": "",
  3220. "updated_time": 1776667149,
  3221. "status": "未接入"
  3222. },
  3223. {
  3224. "id": "Infography (infography.in)",
  3225. "name": "Infography (infography.in)",
  3226. "version": "tao_dev_1",
  3227. "introduction": "粘贴文本/丢链接/传PDF,设置比例,生成多张精美信息图表,支持从模板中选择风格",
  3228. "tutorial": "",
  3229. "input": "",
  3230. "output": "",
  3231. "updated_time": 1776667149,
  3232. "status": "未接入"
  3233. },
  3234. {
  3235. "id": "InShot",
  3236. "name": "InShot",
  3237. "version": "tao_dev_1",
  3238. "introduction": "手机端视频/图片编辑工具,配合 Canva 完成最终的轮播图编辑和导出",
  3239. "tutorial": "",
  3240. "input": "",
  3241. "output": "",
  3242. "updated_time": 1776667149,
  3243. "status": "未接入"
  3244. },
  3245. {
  3246. "id": "Instagram Edits",
  3247. "name": "Instagram Edits",
  3248. "version": "tao_dev_1",
  3249. "introduction": "内置 auto-captions(自动字幕)+ text overlays(文字覆盖)功能,免费无水印",
  3250. "tutorial": "",
  3251. "input": "",
  3252. "output": "",
  3253. "updated_time": 1776667149,
  3254. "status": "未接入"
  3255. },
  3256. {
  3257. "id": "iPhone快捷指令九宫格拼图",
  3258. "name": "iPhone快捷指令九宫格拼图",
  3259. "version": "tao_dev_1",
  3260. "introduction": "通过iPhone相册的快捷指令功能,选择照片后一键生成九宫格/竖向长拼图/水平全景拼图,支持设置图片像素宽度和格子间距(无缝拼接设为0)",
  3261. "tutorial": "",
  3262. "input": "",
  3263. "output": "",
  3264. "updated_time": 1776667149,
  3265. "status": "未接入"
  3266. },
  3267. {
  3268. "id": "iSlide插件图片矩阵功能",
  3269. "name": "iSlide插件图片矩阵功能",
  3270. "version": "tao_dev_1",
  3271. "introduction": "使用iSlide插件的图片矩阵功能,设置行列数和间距参数,自动生成整齐的图片格子布局并填充图片素材",
  3272. "tutorial": "",
  3273. "input": "",
  3274. "output": "",
  3275. "updated_time": 1776667149,
  3276. "status": "未接入"
  3277. },
  3278. {
  3279. "id": "J1-MENG(Seed-dream 4.5 模型)",
  3280. "name": "J1-MENG(Seed-dream 4.5 模型)",
  3281. "version": "tao_dev_1",
  3282. "introduction": "上传实景照片 → 输入扁平插画风格提示词 → AI 自动转换为扁平插画风,配色可自由调整,适合品牌设计和海报",
  3283. "tutorial": "",
  3284. "input": "",
  3285. "output": "",
  3286. "updated_time": 1776667149,
  3287. "status": "未接入"
  3288. },
  3289. {
  3290. "id": "ji_meng_add_task",
  3291. "name": "即梦-创建任务",
  3292. "version": "1.0.0",
  3293. "introduction": "已支持的最新版本: 4.0\n\n已支持的最新版本: 4.0\n\n已支持的最新版本: 1.0.0\n\n已支持的最新版本: 1.0.0\n\n已支持的最新版本: 4.5\n\n已支持的最新版本: 5.0\n\n已支持的最新版本: 1.0.0\n\n已支持的最新版本: 1.0.0\n\n已支持的最新版本: 1.0.0\n\n已支持的最新版本: 1.0.0\n\n[🔴 暂时不可用/停机维护] 提交异步任务到上游(本地服务转发 JI_MENG_API_BASE,POST /add_task)。需配置 tools/local/ji_meng/.env。\n\n[融合补充描述]:\n字节旗下 AI 工具,视频生成强且国内访问方便\n\n[融合补充描述]:\n字节跳动推出的 AI 创作平台\n\n[融合补充描述]:\n动态效果生成 AI 工具\n\n[融合补充描述]:\nAI 生成式换装代表工具\n\n[融合补充描述]:\n适合文化主题可视化的 AI 生成模型\n\n[融合补充描述]:\n一句话生成,平铺图直接转模特图\n\n[融合补充描述]:\nAI 生成式换装代表工具,一键生成效果自然\n\n[融合补充描述]:\n第三方 AI 工具集成平台,提供多种模型访问\n\n[融合补充描述]:\n涵盖海报设计、电影质感、UI 设计等场景\n\n[融合补充描述]:\nAI 局部精准改图工具,实现局部色彩强调与自然融合",
  3294. "tutorial": "\n\n视频娱乐,国内用户使用\n\n提供文生图、图生图等多种 AI 创作功能\n\n将静态图像导入生成动态视频\n\n一键生成虚拟试衣图像\n\n生成信息可视化分析图\n\n快速出图,平铺图转模特图\n\n一键生成虚拟试衣图像\n\n作为 Seedream 等模型的替代访问平台\n\n多场景图像生成\n\n上传图片,选择需要调整的区域,输入调整指令",
  3295. "input": {
  3296. "type": "object",
  3297. "required": [
  3298. "task_type",
  3299. "prompt"
  3300. ],
  3301. "properties": {
  3302. "prompt": {
  3303. "type": "string",
  3304. "description": "任务描述 / 提示词"
  3305. },
  3306. "image_url": {
  3307. "type": "string",
  3308. "description": "可选,图生类任务时的参考图 URL"
  3309. },
  3310. "task_type": {
  3311. "enum": [
  3312. "image",
  3313. "video"
  3314. ],
  3315. "type": "string",
  3316. "description": "任务类型:图生/文生图或视频"
  3317. }
  3318. }
  3319. },
  3320. "output": {
  3321. "type": "object",
  3322. "properties": {
  3323. "status": {
  3324. "type": "string"
  3325. },
  3326. "task_id": {
  3327. "type": "string",
  3328. "description": "任务 ID,用于 ji_meng_query_task"
  3329. }
  3330. }
  3331. },
  3332. "updated_time": 1775810027,
  3333. "status": "已接入"
  3334. },
  3335. {
  3336. "id": "ji_meng_query_task",
  3337. "name": "即梦-查询任务",
  3338. "version": "1.0.0",
  3339. "introduction": "[🔴 暂时不可用/停机维护] 按 task_id 查询任务状态与结果(本地服务转发上游,POST /query_task)。",
  3340. "tutorial": "",
  3341. "input": {
  3342. "type": "object",
  3343. "required": [
  3344. "task_id"
  3345. ],
  3346. "properties": {
  3347. "task_id": {
  3348. "type": "string",
  3349. "description": "ji_meng_add_task 返回的任务 ID"
  3350. }
  3351. }
  3352. },
  3353. "output": {
  3354. "type": "object",
  3355. "properties": {
  3356. "images": {
  3357. "type": "array",
  3358. "items": {
  3359. "type": "string"
  3360. }
  3361. },
  3362. "status": {
  3363. "type": "string"
  3364. },
  3365. "message": {
  3366. "type": "string"
  3367. },
  3368. "task_id": {
  3369. "type": "string"
  3370. }
  3371. }
  3372. },
  3373. "updated_time": 1775810027,
  3374. "status": "已接入"
  3375. },
  3376. {
  3377. "id": "jimeng 图片4.0",
  3378. "name": "jimeng 图片4.0",
  3379. "version": "tao_dev_1",
  3380. "introduction": "通过精细提示词描述服装款式(印花连体衣、丝绒连体衣等)+ 宠物姿态 + 保持猫咪主体样貌不变,直接生成穿着效果图",
  3381. "tutorial": "",
  3382. "input": "",
  3383. "output": "",
  3384. "updated_time": 1776667149,
  3385. "status": "未接入"
  3386. },
  3387. {
  3388. "id": "Katalist AI",
  3389. "name": "Katalist AI",
  3390. "version": "tao_dev_1",
  3391. "introduction": "通过结构化文本提示词构建 POV 故事场景,平台自动解析视角意图并生成对应构图",
  3392. "tutorial": "",
  3393. "input": "",
  3394. "output": "",
  3395. "updated_time": 1776667149,
  3396. "status": "未接入"
  3397. },
  3398. {
  3399. "id": "Kimi AI",
  3400. "name": "Kimi AI",
  3401. "version": "tao_dev_1",
  3402. "introduction": "输入主题关键词或结构化 prompt,批量输出金句、知识点、单词释义等卡片文案素材,支持指定数量与格式",
  3403. "tutorial": "",
  3404. "input": "",
  3405. "output": "",
  3406. "updated_time": 1776667149,
  3407. "status": "未接入"
  3408. },
  3409. {
  3410. "id": "Klein 模型 + ComfyUI 工作流",
  3411. "name": "Klein 模型 + ComfyUI 工作流",
  3412. "version": "tao_dev_1",
  3413. "introduction": "上传人物图片+服装图片,使用 Klein 模型进行虚拟试衣,一键生成换装效果",
  3414. "tutorial": "",
  3415. "input": "",
  3416. "output": "",
  3417. "updated_time": 1776666846,
  3418. "status": "未接入"
  3419. },
  3420. {
  3421. "id": "Kling 2.6",
  3422. "name": "Kling 2.6",
  3423. "version": "tao_dev_1",
  3424. "introduction": "使用Start and End Frames功能设置动画边界,防止AI幻觉;支持空房间到带家具空间的转换、灯光氛围切换、相机移动控制",
  3425. "tutorial": "",
  3426. "input": "",
  3427. "output": "",
  3428. "updated_time": 1776667149,
  3429. "status": "未接入"
  3430. },
  3431. {
  3432. "id": "Kling 2.6 Audio",
  3433. "name": "Kling 2.6 Audio",
  3434. "version": "tao_dev_1",
  3435. "introduction": "将静态冬季穿搭图转化为带有同步语音和自然运动的短视频,支持音频驱动的画面动态生成",
  3436. "tutorial": "",
  3437. "input": "",
  3438. "output": "",
  3439. "updated_time": 1776667149,
  3440. "status": "未接入"
  3441. },
  3442. {
  3443. "id": "Kling 3.0",
  3444. "name": "Kling 3.0",
  3445. "version": "tao_dev_1",
  3446. "introduction": "多主体一致性控制、人物微表情控制,生成人物与场景互动的 AI 视频",
  3447. "tutorial": "",
  3448. "input": "",
  3449. "output": "",
  3450. "updated_time": 1776666487,
  3451. "status": "未接入"
  3452. },
  3453. {
  3454. "id": "Kling 3.0 + Nano Banana 2",
  3455. "name": "Kling 3.0 + Nano Banana 2",
  3456. "version": "tao_dev_1",
  3457. "introduction": "先创建静态产品图,再生成爆炸图信息图,添加运动提示让部件分离",
  3458. "tutorial": "",
  3459. "input": "",
  3460. "output": "",
  3461. "updated_time": 1776667149,
  3462. "status": "未接入"
  3463. },
  3464. {
  3465. "id": "Kling 3.0(可灵)",
  3466. "name": "Kling 3.0(可灵)",
  3467. "version": "tao_dev_1",
  3468. "introduction": "上传静态图像,通过 Kling 3.0 的图像到 3D 模型生成功能,将平面图像转换为具有三维立体感的动态海报",
  3469. "tutorial": "",
  3470. "input": "",
  3471. "output": "",
  3472. "updated_time": 1776667149,
  3473. "status": "未接入"
  3474. },
  3475. {
  3476. "id": "kling_ai",
  3477. "name": "kling_ai",
  3478. "version": "tao_dev_1",
  3479. "introduction": "可灵3.0多镜头提示词支持时间片段精确划分,同一视频内切分多个景别段落,支持首帧参考图保持主体一致性",
  3480. "tutorial": "",
  3481. "input": "",
  3482. "output": "",
  3483. "updated_time": 1776667149,
  3484. "status": "未接入"
  3485. },
  3486. {
  3487. "id": "Kling Motion Control 3.0",
  3488. "name": "Kling Motion Control 3.0",
  3489. "version": "tao_dev_1",
  3490. "introduction": "Motion Control 技术实现精确的全身运动控制,包括面部一致性、运动准确性",
  3491. "tutorial": "",
  3492. "input": "",
  3493. "output": "",
  3494. "updated_time": 1776666487,
  3495. "status": "未接入"
  3496. },
  3497. {
  3498. "id": "Kling / 可灵",
  3499. "name": "Kling / 可灵",
  3500. "version": "tao_dev_1",
  3501. "introduction": "图生视频时在提示词中加入镜头运动描述,实现电影感镜头控制",
  3502. "tutorial": "",
  3503. "input": "",
  3504. "output": "",
  3505. "updated_time": 1776667149,
  3506. "status": "未接入"
  3507. },
  3508. {
  3509. "id": "kontext结合redux",
  3510. "name": "kontext结合redux",
  3511. "version": "tao_dev_1",
  3512. "introduction": "将人像背景进行指定位置融合,支持姿势随意修改",
  3513. "tutorial": "",
  3514. "input": "",
  3515. "output": "",
  3516. "updated_time": 1776667149,
  3517. "status": "未接入"
  3518. },
  3519. {
  3520. "id": "Latent Couple(ComfyUI/SD 插件)",
  3521. "name": "Latent Couple(ComfyUI/SD 插件)",
  3522. "version": "tao_dev_1",
  3523. "introduction": "将潜空间划分为多个矩形区域,每个区域独立绑定正向提示词,实现分区独立生成后融合输出",
  3524. "tutorial": "",
  3525. "input": "",
  3526. "output": "",
  3527. "updated_time": 1776667149,
  3528. "status": "未接入"
  3529. },
  3530. {
  3531. "id": "launch_comfy_env",
  3532. "name": "Launch ComfyUI Environment",
  3533. "version": "1.0.0",
  3534. "introduction": "启动 RunComfy 云端机器并等待就绪。返回 server_id 用于后续 ComfyUI 工作流执行。需配合 runcomfy_workflow_builder 使用。",
  3535. "tutorial": "",
  3536. "input": {
  3537. "type": "object",
  3538. "properties": {
  3539. "duration": {
  3540. "type": "integer",
  3541. "default": 3600,
  3542. "description": "预估运行时长(秒)"
  3543. },
  3544. "version_id": {
  3545. "type": "string",
  3546. "default": "90f77137-ba75-400d-870f-204c614ae8a3",
  3547. "description": "RunComfy workflow version ID"
  3548. },
  3549. "server_type": {
  3550. "enum": [
  3551. "medium",
  3552. "large",
  3553. "extra-large",
  3554. "2x-large",
  3555. "2xl-turbo"
  3556. ],
  3557. "type": "string",
  3558. "default": "medium",
  3559. "description": "机器规格"
  3560. }
  3561. }
  3562. },
  3563. "output": {
  3564. "type": "object",
  3565. "required": [
  3566. "server_id",
  3567. "comfy_url",
  3568. "status",
  3569. "usage_instruction"
  3570. ],
  3571. "properties": {
  3572. "status": {
  3573. "type": "string",
  3574. "description": "机器状态"
  3575. },
  3576. "comfy_url": {
  3577. "type": "string",
  3578. "description": "ComfyUI 访问地址"
  3579. },
  3580. "server_id": {
  3581. "type": "string",
  3582. "description": "机器唯一标识,用于后续操作"
  3583. },
  3584. "usage_instruction": {
  3585. "type": "string",
  3586. "description": "使用说明"
  3587. }
  3588. }
  3589. },
  3590. "updated_time": 1775810027,
  3591. "status": "未接入"
  3592. },
  3593. {
  3594. "id": "liblibai_controlnet",
  3595. "name": "LibLib AI 综合生成工具",
  3596. "version": "1.0.0",
  3597. "introduction": "已支持的最新版本: 1.0.0\n\n已支持的最新版本: 3\n\n已支持的最新版本: 1.0.0\n\n已支持的最新版本: 1.0.0\n\n已支持的最新版本: 1.0.0\n\n已支持的最新版本: 1.0.0\n\n已支持的最新版本: 1.0.0\n\n已支持的最新版本: 最新版\n\n已支持的最新版本: 1.0.0\n\n已支持的最新版本: 1.0.0\n\n已支持的最新版本: 1.0.0\n\n已支持的最新版本: 1.0.0\n\n已支持的最新版本: V6.0\n\n已支持的最新版本: 1.0.0\n\n已支持的最新版本: 1.0.0\n\n已支持的最新版本: 1.0.0\n\n已支持的最新版本: 1.0.0\n\n已支持的最新版本: 1.0.0\n\n已支持的最新版本: V3\n\n已支持的最新版本: V3\n\n已支持的最新版本: 1.0.0\n\n已支持的最新版本: 2509\n\n已支持的最新版本: 1.0.0\n\n已支持的最新版本: V0.5\n\n已支持的最新版本: 1.0.0\n\n已支持的最新版本: 1.0.0\n\n已支持的最新版本: 1.0.0\n\n已支持的最新版本: 1.0.0\n\n已支持的最新版本: 1.0.0\n\n已支持的最新版本: 1.0.0\n\n已支持的最新版本: 1.0.0\n\n已支持的最新版本: 1.0.0\n\n已支持的最新版本: 1.0.0\n\n已支持的最新版本: 1.0.0\n\n已支持的最新版本: 1.0.0\n\n已支持的最新版本: 1.0.0\n\n已支持的最新版本: 1.0.0\n\n已支持的最新版本: 1.0.0\n\n已支持的最新版本: 1.0.0\n\n已支持的最新版本: 1.0.0\n\n已支持的最新版本: 1.0.0\n\n已支持的最新版本: 1.0.0\n\n已支持的最新版本: 1.0.0\n\n已支持的最新版本: 1.0.0\n\n已支持的最新版本: 1.0.0\n\n已支持的最新版本: 1.0.0\n\n已支持的最新版本: 1.0.0\n\n已支持的最新版本: 1.0.0\n\n已支持的最新版本: 1.0.0\n\n已支持的最新版本: 1.0.0\n\n已支持的最新版本: 1.0.0\n\n基于 LibLib AI 开放 API 的万能生成引擎。支持【多路并发控制】:允许在一次请求中同时投喂多个 ControlNet(如同时传入 OpenPose + Canny + Depth),AI 会在同一张图上严格遵守所有控制条件!支持模块:canny(边缘), softedge(软边缘), lineart(线稿), openpose(姿态), depth(深度图), inpaint(蒙版重绘), instantid(换脸)。\n\n[融合补充描述]:\n在线模型平台,ControlNet 功能仅支持单 Canny\n\n[融合补充描述]:\nLiblibAI 提供的 ControlNet 控制工具\n\n[融合补充描述]:\nLibLib AI 提供的 ControlNet 工具(仅支持单 Canny)\n\n[融合补充描述]:\n在线 AI 图像生成平台,支持 ControlNet\n\n[融合补充描述]:\n整合多种控制条件于单一模型,支持 3D 空间感知\n\n[融合补充描述]:\n基于 IP-Adapter 的图像提示融合节点\n\n[融合补充描述]:\n基于 Fooocus 技术的局部重绘节点\n\n[融合补充描述]:\n开源人脸分析库\n\n[融合补充描述]:\n基于 SAM 的局部重绘扩展\n\n[融合补充描述]:\n自动检测并重绘图像细节的插件\n\n[融合补充描述]:\n人脸修复专用 LoRA 模型\n\n[融合补充描述]:\n图像局部修复工具,用于修正生成结果中的畸形区域\n\n[融合补充描述]:\n用于 360 度场景布局生成的 LoRA 模型\n\n[融合补充描述]:\n用于场景转换或分镜控制的 LoRA 模型\n\n[融合补充描述]:\n姿态估计模型/工具,在小红书搜索中被识别为高价值工具关键词\n\n[融合补充描述]:\nStable Diffusion 插件,用于通过边缘、姿势等条件控制生成图像\n\n[融合补充描述]:\n基于 Web 的 Stable Diffusion 模型操作界面\n\n[融合补充描述]:\n高精度姿态估计模型,用于生成骨骼控制图\n\n[融合补充描述]:\n角色一致性保持插件,常配合 ComfyUI 使用\n\n[融合补充描述]:\nStable Diffusion XL 大模型,用于高质量图像生成\n\n[融合补充描述]:\nAlibaba PAI 推出的 ControlNet variant,支持 3.1GB 模型\n\n[融合补充描述]:\n基于快速草图和文本提示生成图像的在线工具\n\n[融合补充描述]:\n风格 + 构图混合节点\n\n[融合补充描述]:\nAI 绘画生态基础模型\n\n[融合补充描述]:\n开源文生图模型,支持本地部署和多种插件扩展\n\n[融合补充描述]:\nComfyUI 原生节点,用于处理局部重绘的条件控制\n\n[融合补充描述]:\n接收草图和提示词生成最终图像的 AI 模型或平台\n\n[融合补充描述]:\n人物风格 LoRA 模型\n\n[融合补充描述]:\n建筑场景 LoRA 模型\n\n[融合补充描述]:\n支持 10+ 角度组合的 LoRA 模型\n\n[融合补充描述]:\nControlNet 及其预处理器之一\n\n[融合补充描述]:\n用于生成深度图的自定义节点模型\n\n[融合补充描述]:\n深度估计模型,用于 3D 空间感知\n\n[融合补充描述]:\nComfyUI 中实现 ControlNet 核心功能的自定义节点\n\n[融合补充描述]:\n为 ComfyUI ControlNet 提供图像预处理功能的节点包\n\n[融合补充描述]:\n人体姿势估计工具,常作为 ControlNet 的预处理器使用\n\n[融合补充描述]:\n基于 IP-Adapter 的人脸身份保持插件\n\n[融合补充描述]:\n人脸 ID 保持工具,替代或配合 IPAdapter\n\n[融合补充描述]:\n基础大模型,人像细节表现强\n\n[融合补充描述]:\n服装专用 LoRA 模型\n\n[融合补充描述]:\n阿里开源的试衣专用 LoRA 模型\n\n[融合补充描述]:\n支持 SDXL 的基础大模型\n\n[融合补充描述]:\n用于控制图像生成结构的条件预测模型\n\n[融合补充描述]:\nComfyUI 辅助节点包,提供多种预处理器和控制网支持\n\n[融合补充描述]:\n身份保持与换脸模型,用于脸部修复\n\n[融合补充描述]:\n免训练角色固化,固定面部特征\n\n[融合补充描述]:\n精确控制人物姿态\n\n[融合补充描述]:\n实现多角度一致性生成\n\n[融合补充描述]:\n实现服装展示与构图控制\n\n[融合补充描述]:\n可定制性最强的开源 AI 生图模型,支持本地部署和微调\n\n[融合补充描述]:\n提供高级 ControlNet 功能的自定义节点包",
  3598. "tutorial": "\n\n使用在线 ControlNet 功能,限制为单模型\n\n单 ControlNet Canny 控制\n\n单 ControlNet Canny 控制,无法满足复杂叠加需求\n\n通过 liblibai_controlnet 调用,需 API 访问权限\n\n配合 Depth Anything V3 和 Z-Image Turbo 使用\n\n融合多张参考图风格或内容到生成图中\n\n对接缝区域进行局部重绘消除接缝\n\n人脸检测和特征提取\n\n局部 inpainting\n\n面部和手部细节修复\n\n配合 ADetailer 进行面部细节增强\n\n对生成结果中的手部畸形区域进行局部重绘修复\n\n输入角色图与位置描述生成多机位场景布局\n\n配合 Qwen Image Edit 进行分镜控制\n\n作为搜索关键词识别包含工具使用教程的帖子\n\n配合 SD 使用,输入条件图控制生成结果\n\n通过扩展插件页面安装 ControlNet 扩展\n\n生成黑底彩色骨骼图用于姿态控制\n\n面部交换,角色一致性保持\n\n作为基础大模型进行室内外设计生成\n\n权重推荐 0.65-0.8\n\n上传草图和文本提示生成精细图像\n\n加载 IPAdapter 模型进行风格迁移\n\nAI 生图\n\n通过提示词生成图像,配合插件实现精确控制\n\n连接原图与蒙版进行重绘 conditioning\n\n结合色块草图和优化提示词生成精准控制的商业海报\n\n配合 SD 模型进行风格微调\n\n配合 SD 模型进行场景微调\n\n加载 LoRA 模型生成 10+ 角度组合的图像\n\n风格控制\n\n提取图像深度信息用于 ControlNet\n\n整合于 ControlNet Union 或多控制条件工作流\n\n在 ComfyUI Manager 中安装,连接于 CLIP 和 KSampler 之间\n\n安装后使用 AIO Aux Preprocessor 节点处理输入图片\n\n提取人物姿势骨架图用于控制生成\n\n换装过程中保持人脸一致性\n\n配合换装保持面部特征\n\n作为 SD 主模型 checkpoint 加载\n\n增强服装纹理和拟合效果\n\n优化虚拟试衣的服装贴合度\n\n作为 SDXL 架构的主模型 checkpoint\n\n加载 control_sd15_inpaint_depth_hand_fp16.safetensors 等模型进行手部结构控制修复\n\n安装后提供 MeshGraphormer Hand Refiner 等节点用于手部深度图生成与修复\n\n可选模块,用于生成后的脸部修复或换脸\n\n免训练固定角色面部,作为 LoRA 的替代方案\n\n输入姿态图控制生成人物动作\n\n输入深度或法线贴图控制几何结构\n\n平铺服装图作为 style_image,模特姿态图作为 composition_image\n\n本地部署或 API 调用,支持自定义配置\n\n实现更复杂的控制网功能",
  3599. "input": {
  3600. "type": "object",
  3601. "required": [
  3602. "mode",
  3603. "prompt"
  3604. ],
  3605. "properties": {
  3606. "mode": {
  3607. "type": "string",
  3608. "description": "单路模式(可选值:text2img, img2img, canny, softedge, lineart, openpose, depth, inpaint, instantid)。如果你想跑多路并发,这个字段可以无视或默认。"
  3609. },
  3610. "image": {
  3611. "type": "string",
  3612. "description": "单路模式的主参考图(支持 URL/Base64)。"
  3613. },
  3614. "steps": {
  3615. "type": "integer",
  3616. "default": 20,
  3617. "description": "采样步数"
  3618. },
  3619. "width": {
  3620. "type": "integer",
  3621. "default": 512,
  3622. "description": "输出宽度"
  3623. },
  3624. "height": {
  3625. "type": "integer",
  3626. "default": 512,
  3627. "description": "输出高度"
  3628. },
  3629. "prompt": {
  3630. "type": "string",
  3631. "description": "正向提示词"
  3632. },
  3633. "cfg_scale": {
  3634. "type": "number",
  3635. "default": 7.0,
  3636. "description": "CFG Scale 提示词引导系数"
  3637. },
  3638. "img_count": {
  3639. "type": "integer",
  3640. "default": 1,
  3641. "description": "生成图片数量"
  3642. },
  3643. "mask_image": {
  3644. "type": "string",
  3645. "description": "蒙版图片来源 (黑白蒙版),仅用于 mode 为 inpaint 时传入"
  3646. },
  3647. "pose_image": {
  3648. "type": "string",
  3649. "description": "人物姿态参考图来源,仅用于 mode 为 instantid 换脸时传入,指定目标面部朝向或动作"
  3650. },
  3651. "control_nets": {
  3652. "type": "array",
  3653. "items": {
  3654. "type": "object",
  3655. "required": [
  3656. "mode",
  3657. "image"
  3658. ],
  3659. "properties": {
  3660. "mode": {
  3661. "type": "string",
  3662. "description": "控制类型: canny, softedge, lineart, openpose, depth"
  3663. },
  3664. "image": {
  3665. "type": "string",
  3666. "description": "对应的参考图 URL/Base64"
  3667. },
  3668. "weight": {
  3669. "type": "number",
  3670. "default": 1.0,
  3671. "description": "控制权重,默认 1.0"
  3672. }
  3673. }
  3674. },
  3675. "description": "【核心魔法】多路控制模型组!在此可同时叠加传入多个控制网参数字典(覆盖外层 mode/image)"
  3676. },
  3677. "negative_prompt": {
  3678. "type": "string",
  3679. "default": "lowres, bad anatomy, text, error",
  3680. "description": "反向提示词"
  3681. }
  3682. }
  3683. },
  3684. "output": {
  3685. "type": "object",
  3686. "properties": {
  3687. "images": {
  3688. "type": "array",
  3689. "items": {
  3690. "type": "string"
  3691. },
  3692. "description": "生成的图片 URL 列表"
  3693. },
  3694. "status": {
  3695. "type": "string",
  3696. "description": "任务状态(success/failed/timeout)"
  3697. },
  3698. "task_id": {
  3699. "type": "string",
  3700. "description": "任务 ID"
  3701. }
  3702. }
  3703. },
  3704. "updated_time": 1775810027,
  3705. "status": "已接入"
  3706. },
  3707. {
  3708. "id": "liblibai_model_detail",
  3709. "name": "LibLib AI 模型详情",
  3710. "version": "1.0.0",
  3711. "introduction": "通过检索返回的 uuid 和 version_uuid 读取指定大模型的完整上下文。常用来了解它的详细触发词、生成特点或特定参数推荐。",
  3712. "tutorial": "",
  3713. "input": {
  3714. "type": "object",
  3715. "required": [
  3716. "uuid",
  3717. "version_uuid"
  3718. ],
  3719. "properties": {
  3720. "uuid": {
  3721. "type": "string",
  3722. "description": "核心模型 ID (uuid)"
  3723. },
  3724. "version_uuid": {
  3725. "type": "string",
  3726. "description": "模型版本 ID (version_uuid 或 versionUuid)"
  3727. }
  3728. }
  3729. },
  3730. "output": {
  3731. "type": "object"
  3732. },
  3733. "updated_time": 1775810027,
  3734. "status": "已接入"
  3735. },
  3736. {
  3737. "id": "liblibai_model_search",
  3738. "name": "LibLib AI 模型搜索",
  3739. "version": "1.0.0",
  3740. "introduction": "通过关键词搜索 LibLib AI 上的最新或特定风格的大模型(比如国风、二次元、写实等)。成功返回会包括一列推荐模型实体,必须从中提取关键的 versionUuid 以获取后续生图能力。",
  3741. "tutorial": "",
  3742. "input": {
  3743. "type": "object",
  3744. "required": [
  3745. "keyword"
  3746. ],
  3747. "properties": {
  3748. "keyword": {
  3749. "type": "string",
  3750. "description": "搜索关键词(如 二次元, XL, 写实)"
  3751. }
  3752. }
  3753. },
  3754. "output": {
  3755. "type": "object"
  3756. },
  3757. "updated_time": 1775810027,
  3758. "status": "已接入"
  3759. },
  3760. {
  3761. "id": "liblibai_uuid_matching_rules",
  3762. "name": "LibLib AI UUID 匹配规则指南",
  3763. "version": "1.0.0",
  3764. "introduction": "读取 Liblib AI 模型 UUID 匹配规则和工作流底模使用大全。在生图参数涉及到 templateUuid,或者在组合 checkpoint 和 ControlNet 且不确定对应的 baseType 和匹配值时,调用此工具来阅读核心指南!以防止你的生图因为参数错误而崩溃。",
  3765. "tutorial": "",
  3766. "input": {
  3767. "type": "object",
  3768. "required": [],
  3769. "properties": {}
  3770. },
  3771. "output": {
  3772. "type": "object"
  3773. },
  3774. "updated_time": 1775810027,
  3775. "status": "已接入"
  3776. },
  3777. {
  3778. "id": "liblib_image_uploader",
  3779. "name": "LibLib Image Uploader",
  3780. "version": "1.0.0",
  3781. "introduction": "已支持的最新版本: 1.0.0\n\n专为将本地图片数据转为持久化云端 URL 构建的老实工具。无论你是给它纯 Base64、带有 data:image 头部的 Base64 都会原封不动传给 Liblib 对象存储,并返回生成的临时网络跨端直连图片 URL(http...),完美解决大模型生图过程中因为超大 Base64 字符撑爆思考上下文的异常限制!只接收 Base64 字符串参数,不要传图片路径。\n\n[融合补充描述]:\n用于将本地图片上传到 OSS 获取 CDN URL 的辅助工具。",
  3782. "tutorial": "\n\n传入 local_path,返回 cdn_url。",
  3783. "input": {
  3784. "type": "object",
  3785. "required": [
  3786. "image_base64"
  3787. ],
  3788. "properties": {
  3789. "filename": {
  3790. "type": "string",
  3791. "default": "image.png",
  3792. "description": "Optional filename for extension detection"
  3793. },
  3794. "image_base64": {
  3795. "type": "string",
  3796. "description": "Base64 encoded image data (e.g., data:image/png;base64,iVBORw0...)"
  3797. }
  3798. }
  3799. },
  3800. "output": {
  3801. "type": "object",
  3802. "properties": {
  3803. "url": {
  3804. "type": "string",
  3805. "description": "生成的公共网络临时或永久直连 URL,可原样喂给其它支持 HTTP 图生图组件应用!"
  3806. },
  3807. "status": {
  3808. "type": "string"
  3809. }
  3810. }
  3811. },
  3812. "updated_time": 1775810027,
  3813. "status": "已接入"
  3814. },
  3815. {
  3816. "id": "Lightroom",
  3817. "name": "Lightroom",
  3818. "version": "tao_dev_1",
  3819. "introduction": "使用 HSL/Color 面板将非焦点区域的饱和度降至 -100,保留目标色彩区域的饱和度",
  3820. "tutorial": "",
  3821. "input": "",
  3822. "output": "",
  3823. "updated_time": 1776667149,
  3824. "status": "未接入"
  3825. },
  3826. {
  3827. "id": "Lightroom Classic / Lightroom Mobile",
  3828. "name": "Lightroom Classic / Lightroom Mobile",
  3829. "version": "tao_dev_1",
  3830. "introduction": "Profile 选择 + HSL 饱和度分通道调整(如蓝色-62、紫色-66)+ Split Toning(高光色相50/阴影色相213)+ Camera Calibration(蓝色色相-100)+ Tone Curve 实现蓝紫色调统一",
  3831. "tutorial": "",
  3832. "input": "",
  3833. "output": "",
  3834. "updated_time": 1776667149,
  3835. "status": "未接入"
  3836. },
  3837. {
  3838. "id": "Lightroom/Photoshop",
  3839. "name": "Lightroom/Photoshop",
  3840. "version": "tao_dev_1",
  3841. "introduction": "使用 HSL 面板或色彩范围选择工具,降低非焦点区域的饱和度,保留焦点区域的饱和度;或使用径向滤镜/渐变滤镜局部调整饱和度",
  3842. "tutorial": "",
  3843. "input": "",
  3844. "output": "",
  3845. "updated_time": 1776667149,
  3846. "status": "未接入"
  3847. },
  3848. {
  3849. "id": "Lightroom 调色",
  3850. "name": "Lightroom 调色",
  3851. "version": "tao_dev_1",
  3852. "introduction": "压暗整体画面建立暗调基础,强化霓虹灯色彩饱和度,使用分离色调添加青橙对比,局部调整突出高饱和亮色",
  3853. "tutorial": "",
  3854. "input": "",
  3855. "output": "",
  3856. "updated_time": 1776667149,
  3857. "status": "未接入"
  3858. },
  3859. {
  3860. "id": "Linkfox AI(linkfox.com)",
  3861. "name": "Linkfox AI(linkfox.com)",
  3862. "version": "tao_dev_1",
  3863. "introduction": "专为宠物服装商拍设计的 AI 换装平台,上传白色狗台基础图后选择服装款式,10秒内生成真狗上身效果图",
  3864. "tutorial": "",
  3865. "input": "",
  3866. "output": "",
  3867. "updated_time": 1776667149,
  3868. "status": "未接入"
  3869. },
  3870. {
  3871. "id": "LivePortrait(ComfyUI节点/WebUI/整合包)",
  3872. "name": "LivePortrait(ComfyUI节点/WebUI/整合包)",
  3873. "version": "tao_dev_1",
  3874. "introduction": "加载LivePortrait模型 → 输入源人物图像 + 表情参考图/视频帧 → 节点执行表情迁移 → 输出带目标表情的图像;支持图片模拟视频表情、高效唇形合成、数字人视频驱动",
  3875. "tutorial": "",
  3876. "input": "",
  3877. "output": "",
  3878. "updated_time": 1776666487,
  3879. "status": "未接入"
  3880. },
  3881. {
  3882. "id": "LivePortrait V2",
  3883. "name": "LivePortrait V2",
  3884. "version": "tao_dev_1",
  3885. "introduction": "LivePortrait V2 一键包支持人物和动物表情修改,让图片开口说话唱歌",
  3886. "tutorial": "",
  3887. "input": "",
  3888. "output": "",
  3889. "updated_time": 1776667149,
  3890. "status": "未接入"
  3891. },
  3892. {
  3893. "id": "Lovart.ai",
  3894. "name": "Lovart.ai",
  3895. "version": "tao_dev_1",
  3896. "introduction": "提供 Veo 3.1 + Midjourney V7 的集成工具链,简化超现实电影级场景的多工具协作流程",
  3897. "tutorial": "",
  3898. "input": "",
  3899. "output": "",
  3900. "updated_time": 1776667149,
  3901. "status": "未接入"
  3902. },
  3903. {
  3904. "id": "Lovart AI",
  3905. "name": "Lovart AI",
  3906. "version": "tao_dev_1",
  3907. "introduction": "输入品牌风格要求和素材图片,AI 自动生成包含人物主图、品牌套件、文字标题的完整海报布局,支持文本编辑、元素替换等后期微调",
  3908. "tutorial": "",
  3909. "input": "",
  3910. "output": "",
  3911. "updated_time": 1776667149,
  3912. "status": "未接入"
  3913. },
  3914. {
  3915. "id": "Lovart AI(文本编辑功能)",
  3916. "name": "Lovart AI(文本编辑功能)",
  3917. "version": "tao_dev_1",
  3918. "introduction": "在 AI 生成图像内直接点选文字区域,输入新文案,AI 自动匹配原有字体风格和视觉效果完成替换",
  3919. "tutorial": "",
  3920. "input": "",
  3921. "output": "",
  3922. "updated_time": 1776667149,
  3923. "status": "未接入"
  3924. },
  3925. {
  3926. "id": "LTX-2.3 换装术(RunningHub)",
  3927. "name": "LTX-2.3 换装术(RunningHub)",
  3928. "version": "tao_dev_1",
  3929. "introduction": "在 RunningHub 平台调用 LTX-2.3 换装术工作流 → 上传猫咪照片 → 输入英文提示词描述目标服装 → 3分钟内生成换装结果",
  3930. "tutorial": "",
  3931. "input": "",
  3932. "output": "",
  3933. "updated_time": 1776667149,
  3934. "status": "未接入"
  3935. },
  3936. {
  3937. "id": "Lucid Dreamer",
  3938. "name": "Lucid Dreamer",
  3939. "version": "tao_dev_1",
  3940. "introduction": "开源算法,输入单张图片,结合深度图估计和高斯飞溅(Gaussian Splatting)技术生成全景3D场景模型,支持云端免费体验",
  3941. "tutorial": "",
  3942. "input": "",
  3943. "output": "",
  3944. "updated_time": 1776667149,
  3945. "status": "未接入"
  3946. },
  3947. {
  3948. "id": "LUMA Bolt Cam",
  3949. "name": "LUMA Bolt Cam",
  3950. "version": "tao_dev_1",
  3951. "introduction": "使用 bolt cam 模式生成具有手持摄影感的动态视频,通过 'natural dynamic motion'、'carefree and confident' 等描述词触发真实抓拍质感",
  3952. "tutorial": "",
  3953. "input": "",
  3954. "output": "",
  3955. "updated_time": 1776667149,
  3956. "status": "未接入"
  3957. },
  3958. {
  3959. "id": "Marble World AI",
  3960. "name": "Marble World AI",
  3961. "version": "tao_dev_1",
  3962. "introduction": "专门支持360度全景室内图生成的AI平台,配合Gemini提示词生成适配VR展示的全景图",
  3963. "tutorial": "",
  3964. "input": "",
  3965. "output": "",
  3966. "updated_time": 1776667149,
  3967. "status": "未接入"
  3968. },
  3969. {
  3970. "id": "Maya + AdvancedSkeleton5",
  3971. "name": "Maya + AdvancedSkeleton5",
  3972. "version": "tao_dev_1",
  3973. "introduction": "Maya软件+AdvancedSkeleton5插件进行拟人化动物表情绑定,支持丰富的面部表情控制",
  3974. "tutorial": "",
  3975. "input": "",
  3976. "output": "",
  3977. "updated_time": 1776667149,
  3978. "status": "未接入"
  3979. },
  3980. {
  3981. "id": "MD2Card (md2card.com)",
  3982. "name": "MD2Card (md2card.com)",
  3983. "version": "tao_dev_1",
  3984. "introduction": "粘贴 Markdown 文本后自动在右侧同步渲染,支持长图文/自动拆分/横线拆分三种模式,可调整卡片宽高,选择主题配色,一键下载 PNG/SVG",
  3985. "tutorial": "",
  3986. "input": "",
  3987. "output": "",
  3988. "updated_time": 1776667149,
  3989. "status": "未接入"
  3990. },
  3991. {
  3992. "id": "MediBang Paint + Procreate",
  3993. "name": "MediBang Paint + Procreate",
  3994. "version": "tao_dev_1",
  3995. "introduction": "在MediBang Paint中创建漫画格子模板并导出,导入Procreate后在每格中放入不同猫咪场景合成图",
  3996. "tutorial": "",
  3997. "input": "",
  3998. "output": "",
  3999. "updated_time": 1776667149,
  4000. "status": "未接入"
  4001. },
  4002. {
  4003. "id": "MemoleCard",
  4004. "name": "MemoleCard",
  4005. "version": "tao_dev_1",
  4006. "introduction": "将文章/知识点粘贴进去,自动生成设计精美、逻辑清晰的知识卡片,支持9宫格形式,3分钟搞定一套",
  4007. "tutorial": "",
  4008. "input": "",
  4009. "output": "",
  4010. "updated_time": 1776666846,
  4011. "status": "未接入"
  4012. },
  4013. {
  4014. "id": "Meshy AI-4",
  4015. "name": "Meshy AI-4",
  4016. "version": "tao_dev_1",
  4017. "introduction": "Meshy AI-4工具导入动物角色模型,自动生成四足角色3D行走动画",
  4018. "tutorial": "",
  4019. "input": "",
  4020. "output": "",
  4021. "updated_time": 1776667149,
  4022. "status": "未接入"
  4023. },
  4024. {
  4025. "id": "Midjourney / AI 生成器",
  4026. "name": "Midjourney / AI 生成器",
  4027. "version": "tao_dev_1",
  4028. "introduction": "在提示词中指定色调关键词(如 Blue Hour、Nordic Noir、Cyberpunk 霓虹紫红青、Very light purple)直接在生成阶段控制色彩倾向",
  4029. "tutorial": "",
  4030. "input": "",
  4031. "output": "",
  4032. "updated_time": 1776667149,
  4033. "status": "未接入"
  4034. },
  4035. {
  4036. "id": "Midjourney Editor",
  4037. "name": "Midjourney Editor",
  4038. "version": "tao_dev_1",
  4039. "introduction": "使用 'Add objects & reflections to water' 专项功能,在已有图像的水面区域精准添加像素级倒影;配合 'Add water around objects' 为主体添加水面环境",
  4040. "tutorial": "",
  4041. "input": "",
  4042. "output": "",
  4043. "updated_time": 1776667149,
  4044. "status": "未接入"
  4045. },
  4046. {
  4047. "id": "Midjourney / Flux",
  4048. "name": "Midjourney / Flux",
  4049. "version": "tao_dev_1",
  4050. "introduction": "在提示词中注入色彩控制关键词:cinnabar red(朱砂红)、golden hour lighting、warm cinematic tones、deep contrast、rich gold reflections,配合 --style 参数控制整体色调",
  4051. "tutorial": "",
  4052. "input": "",
  4053. "output": "",
  4054. "updated_time": 1776667149,
  4055. "status": "未接入"
  4056. },
  4057. {
  4058. "id": "Midjourney / flux_generate",
  4059. "name": "Midjourney / flux_generate",
  4060. "version": "tao_dev_1",
  4061. "introduction": "提示词中指定构图公式关键词(centered composition、triangular arrangement、foreground blur、rule of thirds、diagonal composition、circular crop)+ 饰品材质描述(metal luster、diamond sparkle、gemstone detail)+ macro lens 参数",
  4062. "tutorial": "",
  4063. "input": "",
  4064. "output": "",
  4065. "updated_time": 1776667149,
  4066. "status": "未接入"
  4067. },
  4068. {
  4069. "id": "Midjourney / Flux / Seedream",
  4070. "name": "Midjourney / Flux / Seedream",
  4071. "version": "tao_dev_1",
  4072. "introduction": "在提示词中明确指定'3x3 photo grid matrix'、'contact sheet'、'9 different facial expressions'等结构关键词 + 负面提示词排除合并体和扭曲网格 → 生成九宫格表情集",
  4073. "tutorial": "",
  4074. "input": "",
  4075. "output": "",
  4076. "updated_time": 1776666487,
  4077. "status": "未接入"
  4078. },
  4079. {
  4080. "id": "Midjourney / Flux / Seedream / Google Gemini",
  4081. "name": "Midjourney / Flux / Seedream / Google Gemini",
  4082. "version": "tao_dev_1",
  4083. "introduction": "输入抽象情绪描述(如'人类过度思考的图形表现')→ AI将其转化为具象视觉;配合灯光、环境、肢体语言描述增强情绪感染力",
  4084. "tutorial": "",
  4085. "input": "",
  4086. "output": "",
  4087. "updated_time": 1776666487,
  4088. "status": "未接入"
  4089. },
  4090. {
  4091. "id": "Midjourney / Gemini Nano Banana",
  4092. "name": "Midjourney / Gemini Nano Banana",
  4093. "version": "tao_dev_1",
  4094. "introduction": "在提示词中使用 perfect vanishing perspective、receding toward、depth of field、foreground occlusion 等透视控制词汇",
  4095. "tutorial": "",
  4096. "input": "",
  4097. "output": "",
  4098. "updated_time": 1776667149,
  4099. "status": "未接入"
  4100. },
  4101. {
  4102. "id": "midjourney_get_image_urls",
  4103. "name": "Midjourney-获取结果图链接",
  4104. "version": "1.0.0",
  4105. "introduction": "[🔴 暂时不可用/本地重构中] 根据 job_id 获取 4 张图 URL(转发 MIDJOURNEY_API_BASE/get_image_urls)。",
  4106. "tutorial": "",
  4107. "input": {
  4108. "type": "object",
  4109. "required": [
  4110. "job_id"
  4111. ],
  4112. "properties": {
  4113. "job_id": {
  4114. "type": "string",
  4115. "description": "任务 ID"
  4116. }
  4117. }
  4118. },
  4119. "output": {
  4120. "type": "object",
  4121. "properties": {
  4122. "image_urls": {
  4123. "type": "array",
  4124. "items": {
  4125. "type": "string"
  4126. },
  4127. "description": "四张图片链接(字段名以实际服务为准)"
  4128. }
  4129. },
  4130. "description": "上游返回 JSON 或 URL 数组,常见字段 image_urls / urls"
  4131. },
  4132. "updated_time": 1775810027,
  4133. "status": "已接入"
  4134. },
  4135. {
  4136. "id": "Midjourney + img2img",
  4137. "name": "Midjourney + img2img",
  4138. "version": "tao_dev_1",
  4139. "introduction": "以宠物照片为垫图,通过服装描述提示词引导生成换装效果,适合快速预览",
  4140. "tutorial": "",
  4141. "input": "",
  4142. "output": "",
  4143. "updated_time": 1776667149,
  4144. "status": "未接入"
  4145. },
  4146. {
  4147. "id": "Midjourney / Nano Banana Pro / GPT Image",
  4148. "name": "Midjourney / Nano Banana Pro / GPT Image",
  4149. "version": "tao_dev_1",
  4150. "introduction": "在提示词中精确描述表情细节(如:双眼眼圈泛红、两颗晶莹泪珠沿双颊滑落、俏皮单眨眼wink、斗鸡眼舌头伸出、楚楚可怜眼眶含泪),驱动模型生成对应情绪肖像",
  4151. "tutorial": "",
  4152. "input": "",
  4153. "output": "",
  4154. "updated_time": 1776667149,
  4155. "status": "未接入"
  4156. },
  4157. {
  4158. "id": "Midjourney / Nano Banana Pro / GPT Image / Flux / Stable Diffusion",
  4159. "name": "Midjourney / Nano Banana Pro / GPT Image / Flux / Stable Diffusion",
  4160. "version": "tao_dev_1",
  4161. "introduction": "提示词中指定景别词(close-up、extreme close-up、medium shot、bust portrait、胸部以上、面部特写)+ 镜头焦段(85mm、50mm、100mm)+ 构图描述(三分法、对角线结构、视觉重心集中于耳部与面颊区域)",
  4162. "tutorial": "",
  4163. "input": "",
  4164. "output": "",
  4165. "updated_time": 1776667149,
  4166. "status": "未接入"
  4167. },
  4168. {
  4169. "id": "Midjourney Niji",
  4170. "name": "Midjourney Niji",
  4171. "version": "tao_dev_1",
  4172. "introduction": "使用'character sheet, multiple poses and expressions, N characters per page'参数配合--seed固定随机种子,生成风格统一的多姿势角色表",
  4173. "tutorial": "",
  4174. "input": "",
  4175. "output": "",
  4176. "updated_time": 1776667149,
  4177. "status": "未接入"
  4178. },
  4179. {
  4180. "id": "Midjourney / niji模型",
  4181. "name": "Midjourney / niji模型",
  4182. "version": "tao_dev_1",
  4183. "introduction": "在prompt中加入'fluffy'、'furry'、'wool felt'、'plush toy texture'、'Pixar fur rendering'等质感关键词",
  4184. "tutorial": "",
  4185. "input": "",
  4186. "output": "",
  4187. "updated_time": 1776667149,
  4188. "status": "未接入"
  4189. },
  4190. {
  4191. "id": "Midjourney + Photoshop",
  4192. "name": "Midjourney + Photoshop",
  4193. "version": "tao_dev_1",
  4194. "introduction": "先用Midjourney生成场景图,拍摄时模拟AI场景的光效,在Photoshop里抠图合成",
  4195. "tutorial": "",
  4196. "input": "",
  4197. "output": "",
  4198. "updated_time": 1776667149,
  4199. "status": "未接入"
  4200. },
  4201. {
  4202. "id": "Midjourney Prompt 框架",
  4203. "name": "Midjourney Prompt 框架",
  4204. "version": "tao_dev_1",
  4205. "introduction": "按照「主体描述 + 风格关键词 + 灯光设置 + 构图参数 + 质量标签 + --ar --v --q」的结构化模板组织 Prompt,精准控制输出",
  4206. "tutorial": "",
  4207. "input": "",
  4208. "output": "",
  4209. "updated_time": 1776667149,
  4210. "status": "未接入"
  4211. },
  4212. {
  4213. "id": "midjourney_query_job_status",
  4214. "name": "Midjourney-查询任务状态",
  4215. "version": "1.0.0",
  4216. "introduction": "[🔴 暂时不可用/本地重构中] 查询指定任务状态(转发 MIDJOURNEY_API_BASE/query_job_status)。",
  4217. "tutorial": "",
  4218. "input": {
  4219. "type": "object",
  4220. "required": [
  4221. "cookie",
  4222. "job_id"
  4223. ],
  4224. "properties": {
  4225. "cookie": {
  4226. "type": "string",
  4227. "description": "Midjourney 会话 cookie"
  4228. },
  4229. "job_id": {
  4230. "type": "string",
  4231. "description": "submit_job 返回的任务 ID"
  4232. }
  4233. }
  4234. },
  4235. "output": {
  4236. "type": "object",
  4237. "properties": {},
  4238. "description": "上游状态 JSON,如 status / job_status 等"
  4239. },
  4240. "updated_time": 1775810027,
  4241. "status": "已接入"
  4242. },
  4243. {
  4244. "id": "Midjourney(--seed 固定 + 变量替换)",
  4245. "name": "Midjourney(--seed 固定 + 变量替换)",
  4246. "version": "tao_dev_1",
  4247. "introduction": "固定 seed 值保持整体风格一致,仅修改人物描述或场景元素关键词,批量生成系列海报",
  4248. "tutorial": "",
  4249. "input": "",
  4250. "output": "",
  4251. "updated_time": 1776667149,
  4252. "status": "未接入"
  4253. },
  4254. {
  4255. "id": "Midjourney --sref 参数 + 色彩提示词",
  4256. "name": "Midjourney --sref 参数 + 色彩提示词",
  4257. "version": "tao_dev_1",
  4258. "introduction": "通过 --sref 风格参考图或在提示词中指定 HEX 色值约束插画色调(如 deep teal #1a6b6b, blue-green palette)",
  4259. "tutorial": "",
  4260. "input": "",
  4261. "output": "",
  4262. "updated_time": 1776667149,
  4263. "status": "未接入"
  4264. },
  4265. {
  4266. "id": "Midjourney/Stable Diffusion",
  4267. "name": "Midjourney/Stable Diffusion",
  4268. "version": "tao_dev_1",
  4269. "introduction": "通过 Prompt 注入 neon light trails、glowing circuit lines、particle scatter、volumetric light shafts、dark background 等关键词,直接生成科技感背景图",
  4270. "tutorial": "",
  4271. "input": "",
  4272. "output": "",
  4273. "updated_time": 1776667149,
  4274. "status": "未接入"
  4275. },
  4276. {
  4277. "id": "Midjourney --style 参数",
  4278. "name": "Midjourney --style 参数",
  4279. "version": "tao_dev_1",
  4280. "introduction": "使用统一的风格种子(--sref)确保系列海报视觉风格一致",
  4281. "tutorial": "",
  4282. "input": "",
  4283. "output": "",
  4284. "updated_time": 1776667149,
  4285. "status": "未接入"
  4286. },
  4287. {
  4288. "id": "midjourney_submit_job",
  4289. "name": "Midjourney-提交生图任务",
  4290. "version": "1.0.0",
  4291. "introduction": "已支持的最新版本: v8\n\n已支持的最新版本: V7\n\n已支持的最新版本: 1.0.0\n\n已支持的最新版本: 1.0.0\n\n已支持的最新版本: 1.0.0\n\n[🔴 暂时不可用/本地重构中] 提交 Midjourney 生图任务(转发至 MIDJOURNEY_API_BASE/submit_job)。需配置 tools/local/midjourney/.env。mode 为 relaxed 或 fast。\n\n[融合补充描述]:\nAI 图像生成工具,通过提示词控制生成图像的色调风格\n\n[融合补充描述]:\n风格参考系统,支持--sref 风格参考和--sw 风格权重\n\n[融合补充描述]:\nMidjourney 提供的风格调优功能,用于定制和保持图像生成风格\n\n[融合补充描述]:\n艺术风格成熟度与社区生态领先的 AI 生图平台\n\n[融合补充描述]:\n艺术性和创意输出最佳的 AI 生图平台,生成速度快且细节相干性高",
  4292. "tutorial": "\n\n在 Discord 中输入提示词,添加色调相关描述\n\n使用--sref 和--sw 参数\n\n在 Midjourney 生成过程中应用特定风格参考\n\n艺术创作首选\n\n通过 Discord 或 Web 端输入提示词生成图像",
  4293. "input": {
  4294. "type": "object",
  4295. "required": [
  4296. "cookie",
  4297. "prompt",
  4298. "user_id",
  4299. "mode"
  4300. ],
  4301. "properties": {
  4302. "mode": {
  4303. "enum": [
  4304. "relaxed",
  4305. "fast"
  4306. ],
  4307. "type": "string",
  4308. "description": "队列模式:relaxed 或 fast"
  4309. },
  4310. "cookie": {
  4311. "type": "string",
  4312. "description": "Midjourney 会话 cookie"
  4313. },
  4314. "prompt": {
  4315. "type": "string",
  4316. "description": "提示词"
  4317. },
  4318. "user_id": {
  4319. "type": "string",
  4320. "description": "用户 ID"
  4321. }
  4322. }
  4323. },
  4324. "output": {
  4325. "type": "object",
  4326. "properties": {},
  4327. "description": "上游返回 JSON,通常含 job_id 或 id"
  4328. },
  4329. "updated_time": 1775810027,
  4330. "status": "已接入"
  4331. },
  4332. {
  4333. "id": "Midjourney + Topaz Photo AI",
  4334. "name": "Midjourney + Topaz Photo AI",
  4335. "version": "tao_dev_1",
  4336. "introduction": "在MidJourney生成场景,用Topaz Photo AI放大,分析光照后在工作室重现光效,最后在Photoshop合成",
  4337. "tutorial": "",
  4338. "input": "",
  4339. "output": "",
  4340. "updated_time": 1776667149,
  4341. "status": "未接入"
  4342. },
  4343. {
  4344. "id": "Midjourney v6.0",
  4345. "name": "Midjourney v6.0",
  4346. "version": "tao_dev_1",
  4347. "introduction": "在 prompt 中直接描述超现实变形逻辑(如 'dunes rise into impossible geometric walls, then collapse into herds of running horses made of dust'),利用模型的语义理解能力生成物理违和场景",
  4348. "tutorial": "",
  4349. "input": "",
  4350. "output": "",
  4351. "updated_time": 1776667149,
  4352. "status": "未接入"
  4353. },
  4354. {
  4355. "id": "Midjourney V7 / ChatGPT 4o",
  4356. "name": "Midjourney V7 / ChatGPT 4o",
  4357. "version": "tao_dev_1",
  4358. "introduction": "在提示词中嵌入具体相机型号(Canon EOS R5、Leica M10-R)、镜头参数(50mm f/1.8、70mm portrait)、快门速度(1/1000s)、光圈(f/2.0)、ISO 等参数,配合 'candid shot'、'dynamic motion'、'natural light' 等摄影术语",
  4359. "tutorial": "",
  4360. "input": "",
  4361. "output": "",
  4362. "updated_time": 1776667149,
  4363. "status": "未接入"
  4364. },
  4365. {
  4366. "id": "Midjourney V7 OREF",
  4367. "name": "Midjourney V7 OREF",
  4368. "version": "tao_dev_1",
  4369. "introduction": "通过 Omni-Reference 功能同时引用角色图和道具图,生成角色持道具的互动画面",
  4370. "tutorial": "",
  4371. "input": "",
  4372. "output": "",
  4373. "updated_time": 1776666487,
  4374. "status": "未接入"
  4375. },
  4376. {
  4377. "id": "Midjourney v7/v8",
  4378. "name": "Midjourney v7/v8",
  4379. "version": "tao_dev_1",
  4380. "introduction": "使用 'perfect water mirror surface'、'millimetre of still water'、'reflection pixel-perfect'、'infinite depth illusion' 等关键词实现像素级水面反射;配合 '--stylize 100' 参数强化效果",
  4381. "tutorial": "",
  4382. "input": "",
  4383. "output": "",
  4384. "updated_time": 1776667149,
  4385. "status": "未接入"
  4386. },
  4387. {
  4388. "id": "Midjourney(图生图/垫图模式)",
  4389. "name": "Midjourney(图生图/垫图模式)",
  4390. "version": "tao_dev_1",
  4391. "introduction": "上传人物参考图作为垫图(--cref 或 image prompt),追加赛博朋克风格关键词(neon colors、holographic material、glowing cybernetic implant),生成风格化人物形象",
  4392. "tutorial": "",
  4393. "input": "",
  4394. "output": "",
  4395. "updated_time": 1776667149,
  4396. "status": "未接入"
  4397. },
  4398. {
  4399. "id": "Midjourney局部重绘",
  4400. "name": "Midjourney局部重绘",
  4401. "version": "tao_dev_1",
  4402. "introduction": "先生成整体四格构图,再对各格进行局部重绘调整情节细节,保持人物一致性",
  4403. "tutorial": "",
  4404. "input": "",
  4405. "output": "",
  4406. "updated_time": 1776667149,
  4407. "status": "未接入"
  4408. },
  4409. {
  4410. "id": "Midjourney + 提示词工程",
  4411. "name": "Midjourney + 提示词工程",
  4412. "version": "tao_dev_1",
  4413. "introduction": "在提示词中指定顶部标题区的层级结构和内容,生成含层级分明标题的海报底图",
  4414. "tutorial": "",
  4415. "input": "",
  4416. "output": "",
  4417. "updated_time": 1776667149,
  4418. "status": "未接入"
  4419. },
  4420. {
  4421. "id": "Midjourney 文生图",
  4422. "name": "Midjourney 文生图",
  4423. "version": "tao_dev_1",
  4424. "introduction": "在 prompt 中使用 'perfect water mirror surface, millimetre of still water, reflection pixel-perfect, infinite depth illusion' 等关键词组合,直接生成含水面倒影的嵌套镜像构图",
  4425. "tutorial": "",
  4426. "input": "",
  4427. "output": "",
  4428. "updated_time": 1776667149,
  4429. "status": "未接入"
  4430. },
  4431. {
  4432. "id": "Midjourney(构图控制 Prompt)",
  4433. "name": "Midjourney(构图控制 Prompt)",
  4434. "version": "tao_dev_1",
  4435. "introduction": "通过 Prompt 中的构图关键词(centered composition、rule of thirds、golden ratio placement)控制 AI 生成图像的构图方式",
  4436. "tutorial": "",
  4437. "input": "",
  4438. "output": "",
  4439. "updated_time": 1776667149,
  4440. "status": "未接入"
  4441. },
  4442. {
  4443. "id": "Morpholio Trace(Studio Text)",
  4444. "name": "Morpholio Trace(Studio Text)",
  4445. "version": "tao_dev_1",
  4446. "introduction": "在图层上批量添加多个文本框,选择 Select Mode 批量编辑对齐、颜色、字体、大小,实现标注标签的统一样式管理",
  4447. "tutorial": "",
  4448. "input": "",
  4449. "output": "",
  4450. "updated_time": 1776667149,
  4451. "status": "未接入"
  4452. },
  4453. {
  4454. "id": "Musicful AI",
  4455. "name": "Musicful AI",
  4456. "version": "tao_dev_1",
  4457. "introduction": "生成无版权情感音乐,专为 AI 视频配乐设计,支持多种情感风格",
  4458. "tutorial": "",
  4459. "input": "",
  4460. "output": "",
  4461. "updated_time": 1776667149,
  4462. "status": "未接入"
  4463. },
  4464. {
  4465. "id": "nano_banana",
  4466. "name": "Nano Banana(Gemini 多模态神级图模)",
  4467. "version": "1.0.0",
  4468. "introduction": "已支持的最新版本: 1.0.0\n\n已支持的最新版本: gemini-3.1-flash-image-preview\n\n已支持的最新版本: gemini-3-pro-image-preview\n\n已支持的最新版本: 1.0.0\n\n已支持的最新版本: gemini-3-pro-image-preview\n\n已支持的最新版本: 1.0.0\n\n已支持的最新版本: 1.0.0\n\n已支持的最新版本: 1.0.0\n\n已支持的最新版本: 1.0.0\n\n已支持的最新版本: 1.0.0\n\n已支持的最新版本: 2\n\n已支持的最新版本: 1.0.0\n\n已支持的最新版本: preview\n\n已支持的最新版本: 1.0.0\n\n已支持的最新版本: 1.0.0\n\n已支持的最新版本: 1.0.0\n\n已支持的最新版本: 1.0.0\n\n已支持的最新版本: Flash/Pro\n\n已支持的最新版本: 1.0.0\n\n已支持的最新版本: 1.0.0\n\n已支持的最新版本: 1.0.0\n\n已支持的最新版本: 1.0.0\n\n已支持的最新版本: 1.0.0\n\n已支持的最新版本: 1.0.0\n\n已支持的最新版本: Gemini 3 Pro\n\n已支持的最新版本: 2, Pro\n\n已支持的最新版本: 1.0.0\n\n已支持的最新版本: 1.0.0\n\n已支持的最新版本: 1.0.0\n\n通过 Google Gemini 原生大模型生图。它是系统内唯一原生支持【跨模态/多图融合意象生图】的模型!支持在 images 数组里丢进 N 张完全不同的图片(例如:一张人像、一把宝剑、一栋大楼),并在 prompt 中基于这几张图进行超强逻辑融合。强力推荐用来做抽象图生图、无边界的多图概念重组。\n\n[融合补充描述]:\nGoogle 多模态和视频能力强的模型。\n\n[融合补充描述]:\n多模态大模型(此处用于图像生成任务)\n\n[融合补充描述]:\nGoogle 推出的多模态 AI 模型,支持图像生成能力\n\n[融合补充描述]:\nAI 图像生成模型,提供 2 和 Pro 版本,针对不同场景进行优化\n\n[融合补充描述]:\n谷歌 Gemini 3 Pro Image 模型,用于 AI 图像生成\n\n[融合补充描述]:\nGemini 图像生成能力模型,品牌别名为 nanobanana\n\n[融合补充描述]:\n专业级场景扩展工具\n\n[融合补充描述]:\n工作流平台类工具(配合 ComfyUI),提供完整设计流程\n\n[融合补充描述]:\nGoogle 新模型,人物特征保持优秀\n\n[融合补充描述]:\n配合 Lovart 使用的模型或工作流\n\n[融合补充描述]:\n在帖子正文和标签中都有提及的工具名称。\n\n[融合补充描述]:\n用于生成分镜提示词的 AI 模型\n\n[融合补充描述]:\n角色一致性生成工具,支持三视图、线稿和色稿生成\n\n[融合补充描述]:\nAI 绘图 Agent 工具\n\n[融合补充描述]:\n支持创建角色手办及写实风格图片的 AI 工具\n\n[融合补充描述]:\nAI 图像处理或编辑工具\n\n[融合补充描述]:\nGoogle 推出的新兴 AI 图像生成模型预览版\n\n[融合补充描述]:\n角色一致性辅助工具,提供 JSON 提示词精确控制\n\n[融合补充描述]:\n风格化、多人物场景表现好,性价比高\n\n[融合补充描述]:\n搜索中发现的 AI 微表情控制相关工具或模型\n\n[融合补充描述]:\n用于制作学科知识卡片的 AI 工具\n\n[融合补充描述]:\n用于生成专业提示词的大语言模型,辅助图像生成工作流\n\n[融合补充描述]:\n大厂产品,技术实力强\n\n[融合补充描述]:\nSaaS 工具,拖拽操作,所见即所得,一致性最佳\n\n[融合补充描述]:\nGoogle 官方提供的支持图像生成能力的 API 接口\n\n[融合补充描述]:\n为 Nano Banana Pro 提供可视化界面和订阅服务的第三方 Web 平台\n\n[融合补充描述]:\n专业级 AI 图像生成与编辑模型,基于 Gemini 3 Pro 架构,专为高保真文本渲染、复杂推理任务和专业资产生产设计\n\n[融合补充描述]:\nGoogle Gemini 原生图像生成能力 API,品牌名为 Nano Banana\n\n[融合补充描述]:\n谷歌官方 AI 开发平台,提供 Nano Banana Pro 模型的专业开发访问渠道",
  4469. "tutorial": "\n\n竞品对比提及,多模态和视频能力强。\n\n通过 nano_banana 调用,需配置 GEMINI_API_KEY\n\n通过 API 或官网进行图像生成\n\n根据场景需求选择版本:Pro 用于追求真实感、商业质感及人物肖像;2 用于追求速度、手绘风格及批量生成\n\n根据需求选择访问渠道(日常用 Gemini App,开发用 AI Studio,国内用第三方平台)\n\n支持通过品牌名 (nanobanana) 或官方模型 ID (gemini-3.1-image-preview) 并行查询\n\n组合工作流\n\n完整设计流程\n\n生成模特上身图,人物特征保持\n\n模型调用\n\n需要合并统计工具频次。\n\n先用 Flash 测试提示词再用 Pro 生成,配合 NanoBanana 实现分镜工作流\n\n生成角色三视图确保人物不崩,出线稿和色稿\n\n调用模型生成图片\n\n输入描述创建比例图片角色商业手办\n\n用于图像的深度编辑或处理\n\n图像生成能力测试、与竞品对比\n\n创建角色参考表\n\n日常使用\n\n未知,根据上下文可能用于微表情控制\n\n生成学科知识卡片\n\n输入需求生成专业提示词,供 Nano Banana Pro 使用\n\n时尚模型生成\n\n拖拽操作\n\n通过 API 集成进行开发者调用\n\n通过 Web 界面进行非技术用户操作\n\n获取 API Key 后通过 HTTP 请求发送 JSON 数据,或使用 Web 应用可视化操作\n\nPOST https://generativelanguage.googleapis.com/v1beta/models/{model}:generateContent\n\n用于专业开发场景,通过 aistudio.google.com 访问",
  4470. "input": {
  4471. "type": "object",
  4472. "required": [
  4473. "prompt"
  4474. ],
  4475. "properties": {
  4476. "model": {
  4477. "type": "string",
  4478. "description": "模型 ID;省略则使用环境变量 GEMINI_IMAGE_MODEL,默认 gemini-3.1-flash-image-preview。"
  4479. },
  4480. "prompt": {
  4481. "type": "string",
  4482. "description": "提示词(可以明确指代传入的多张图片,进行复杂长文本推理和跨模态生图)"
  4483. },
  4484. "image_size": {
  4485. "type": "string",
  4486. "description": "输出规格:512、1K、2K、4K"
  4487. },
  4488. "image_urls": {
  4489. "type": "array",
  4490. "items": {
  4491. "type": "string"
  4492. },
  4493. "description": "【杀手锏】参考图外链数组!允许同时传入多张关联图片的网络 URL。底层支持自动下载网图整合喂给大模型进行跨特征意象重组。"
  4494. },
  4495. "aspect_ratio": {
  4496. "type": "string",
  4497. "description": "输出宽高比,如 1:1、16:9"
  4498. },
  4499. "response_modalities": {
  4500. "type": "array",
  4501. "items": {
  4502. "type": "string"
  4503. },
  4504. "description": "如 [\"TEXT\",\"IMAGE\"]"
  4505. }
  4506. }
  4507. },
  4508. "output": {
  4509. "type": "object",
  4510. "properties": {
  4511. "text": {
  4512. "type": "string",
  4513. "description": "若返回文本部分则在此汇总"
  4514. },
  4515. "model": {
  4516. "type": "string",
  4517. "description": "实际调用的模型 ID"
  4518. },
  4519. "images": {
  4520. "type": "array",
  4521. "items": {
  4522. "type": "string"
  4523. },
  4524. "description": "data:mime;base64,... 列表"
  4525. }
  4526. }
  4527. },
  4528. "updated_time": 1775810027,
  4529. "status": "已接入"
  4530. },
  4531. {
  4532. "id": "Nano Banana 2 / Kling 3.0",
  4533. "name": "Nano Banana 2 / Kling 3.0",
  4534. "version": "tao_dev_1",
  4535. "introduction": "在 prompt 中明确 centered、seamless studio background、ultra-sharp focus,配合 No Depth of Field 确保全画面清晰对焦",
  4536. "tutorial": "",
  4537. "input": "",
  4538. "output": "",
  4539. "updated_time": 1776667149,
  4540. "status": "未接入"
  4541. },
  4542. {
  4543. "id": "Nano Banana(Freepik)",
  4544. "name": "Nano Banana(Freepik)",
  4545. "version": "tao_dev_1",
  4546. "introduction": "对 Midjourney 初稿进行角色细化处理,强化动物特征与人类设计的融合自然度",
  4547. "tutorial": "",
  4548. "input": "",
  4549. "output": "",
  4550. "updated_time": 1776666846,
  4551. "status": "未接入"
  4552. },
  4553. {
  4554. "id": "Nano Banana + Gaussian Splat 工作流",
  4555. "name": "Nano Banana + Gaussian Splat 工作流",
  4556. "version": "tao_dev_1",
  4557. "introduction": "将 3D 模型或全景图转换为 Gaussian Splat,使用免费 Gaussian Splat 查看器(urbandecoders-gaussiansplatviewer)进行沉浸式浏览",
  4558. "tutorial": "",
  4559. "input": "",
  4560. "output": "",
  4561. "updated_time": 1776667149,
  4562. "status": "未接入"
  4563. },
  4564. {
  4565. "id": "Nano Banana + Gemini",
  4566. "name": "Nano Banana + Gemini",
  4567. "version": "tao_dev_1",
  4568. "introduction": "将 Excel 数据文件或 PDF 数据直接上传,AI 自动解析数据并生成美化后的可视化图表,支持从电子表格一键转换为具有视觉冲击力的图形",
  4569. "tutorial": "",
  4570. "input": "",
  4571. "output": "",
  4572. "updated_time": 1776667149,
  4573. "status": "未接入"
  4574. },
  4575. {
  4576. "id": "nano_banana (Gemini AI)",
  4577. "name": "nano_banana (Gemini AI)",
  4578. "version": "tao_dev_1",
  4579. "introduction": "使用 Nano Banana 模型生成拟人化动物场景,支持超写实皮克斯风格 3D 拟人化角色",
  4580. "tutorial": "",
  4581. "input": "",
  4582. "output": "",
  4583. "updated_time": 1776666846,
  4584. "status": "未接入"
  4585. },
  4586. {
  4587. "id": "Nano Banana + Gemini Canvas",
  4588. "name": "Nano Banana + Gemini Canvas",
  4589. "version": "tao_dev_1",
  4590. "introduction": "支持上传 Excel 数据文件、PDF 文件、含数据的图片,AI 自动识别数据内容并生成交互式网页图表,无需编写代码",
  4591. "tutorial": "",
  4592. "input": "",
  4593. "output": "",
  4594. "updated_time": 1776667149,
  4595. "status": "未接入"
  4596. },
  4597. {
  4598. "id": "Nano Banana (Google AI Studio)",
  4599. "name": "Nano Banana (Google AI Studio)",
  4600. "version": "tao_dev_1",
  4601. "introduction": "将 3D 模型图像或街景照片输入 Nano Banana,生成 3D 打印风格建筑模型或多风格室内全景渲染图",
  4602. "tutorial": "",
  4603. "input": "",
  4604. "output": "",
  4605. "updated_time": 1776667149,
  4606. "status": "未接入"
  4607. },
  4608. {
  4609. "id": "nano_banana / Google Gemini",
  4610. "name": "nano_banana / Google Gemini",
  4611. "version": "tao_dev_1",
  4612. "introduction": "通过详细 prompt 描述镜子自拍场景(TV Mirror Selfie)、镜面迷宫等画中画效果,利用模型对镜面反射的理解自动生成嵌套框架",
  4613. "tutorial": "",
  4614. "input": "",
  4615. "output": "",
  4616. "updated_time": 1776667149,
  4617. "status": "未接入"
  4618. },
  4619. {
  4620. "id": "Nano Banana Pro",
  4621. "name": "Nano Banana Pro",
  4622. "version": "tao_dev_1",
  4623. "introduction": "输入提示词指定3x3网格矩阵结构 + 9种不同表情描述 + 角色一致性要求 → 一次生成完整九宫格表情集;支持Q版chibi风格、写实风格、多种主题",
  4624. "tutorial": "",
  4625. "input": "",
  4626. "output": "",
  4627. "updated_time": 1776666487,
  4628. "status": "未接入"
  4629. },
  4630. {
  4631. "id": "Nano Banana Pro(atlabs.ai)",
  4632. "name": "Nano Banana Pro(atlabs.ai)",
  4633. "version": "tao_dev_1",
  4634. "introduction": "上传单张基础图像,通过平台界面选择目标摄像机角度(Extreme Wide Shot / Bird's Eye / Worm's Eye / Dutch Angle / POV 等),自动生成对应视角的电影级图像",
  4635. "tutorial": "",
  4636. "input": "",
  4637. "output": "",
  4638. "updated_time": 1776667149,
  4639. "status": "未接入"
  4640. },
  4641. {
  4642. "id": "Nano Banana Pro / Google Flow",
  4643. "name": "Nano Banana Pro / Google Flow",
  4644. "version": "tao_dev_1",
  4645. "introduction": "使用结构化提示词指定'两行布局:顶行4个全身站立视图(正面/左侧/右侧/背面),底行3个特写肖像',一次生成完整7面板角色参考表",
  4646. "tutorial": "",
  4647. "input": "",
  4648. "output": "",
  4649. "updated_time": 1776667149,
  4650. "status": "未接入"
  4651. },
  4652. {
  4653. "id": "Napkin (napkin.ai)",
  4654. "name": "Napkin (napkin.ai)",
  4655. "version": "tao_dev_1",
  4656. "introduction": "选中文本后点击按钮,根据内容自动生成思维导图/流程图/对比图/数据图/时间线图等几十种视觉效果,支持再次编辑文本/字体/颜色/形状/图标",
  4657. "tutorial": "",
  4658. "input": "",
  4659. "output": "",
  4660. "updated_time": 1776667149,
  4661. "status": "未接入"
  4662. },
  4663. {
  4664. "id": "next-ai-draw-io(AI + Draw.io 集成工具)",
  4665. "name": "next-ai-draw-io(AI + Draw.io 集成工具)",
  4666. "version": "tao_dev_1",
  4667. "introduction": "支持上传图片(白板草图、架构图截图)→ AI 识别图形结构 → 生成标准可编辑 Draw.io 图表,约 80% 完成度,再手动微调;支持多种大模型后端(OpenAI/Google/Claude)",
  4668. "tutorial": "",
  4669. "input": "",
  4670. "output": "",
  4671. "updated_time": 1776667149,
  4672. "status": "未接入"
  4673. },
  4674. {
  4675. "id": "next-ai-draw-io + 多模型后端",
  4676. "name": "next-ai-draw-io + 多模型后端",
  4677. "version": "tao_dev_1",
  4678. "introduction": "直接跟 AI 聊天来画图和改图,描述需求 → AI 生成 Draw.io 图 → 继续对话调整(如'架构图里有些框的文字重叠了,帮我调整一下')",
  4679. "tutorial": "",
  4680. "input": "",
  4681. "output": "",
  4682. "updated_time": 1776667149,
  4683. "status": "未接入"
  4684. },
  4685. {
  4686. "id": "Notebook LM + 导演级Prompt",
  4687. "name": "Notebook LM + 导演级Prompt",
  4688. "version": "tao_dev_1",
  4689. "introduction": "将场景资产描述(背景/光照/色调/道具清单)喂入Notebook LM生成结构化导演级Prompt,在每格生成时统一引用该Prompt约束场景一致性",
  4690. "tutorial": "",
  4691. "input": "",
  4692. "output": "",
  4693. "updated_time": 1776667149,
  4694. "status": "未接入"
  4695. },
  4696. {
  4697. "id": "Nuke(VFX 合成软件)",
  4698. "name": "Nuke(VFX 合成软件)",
  4699. "version": "tao_dev_1",
  4700. "introduction": "对真实拍摄素材进行绿幕抠像(Keying),将 AI 生成的人群素材与真实主体进行多层合成,调整色彩匹配和运动模糊,输出电影级合成结果",
  4701. "tutorial": "",
  4702. "input": "",
  4703. "output": "",
  4704. "updated_time": 1776667149,
  4705. "status": "未接入"
  4706. },
  4707. {
  4708. "id": "OmniShow",
  4709. "name": "OmniShow",
  4710. "version": "tao_dev_1",
  4711. "introduction": "字节开发的端到端视频生成模型,支持图像+音频+姿势+文本混合输入,专为电商广告人货交互设计",
  4712. "tutorial": "",
  4713. "input": "",
  4714. "output": "",
  4715. "updated_time": 1776666487,
  4716. "status": "未接入"
  4717. },
  4718. {
  4719. "id": "OpenAI Image Model",
  4720. "name": "OpenAI Image Model",
  4721. "version": "tao_dev_1",
  4722. "introduction": "上传多张服装参考图,使用简单提示词如'street style shot of a woman in this outfit'自动生成模特穿着照片",
  4723. "tutorial": "",
  4724. "input": "",
  4725. "output": "",
  4726. "updated_time": 1776667149,
  4727. "status": "未接入"
  4728. },
  4729. {
  4730. "id": "Panorama to Cubemap Generator",
  4731. "name": "Panorama to Cubemap Generator",
  4732. "version": "tao_dev_1",
  4733. "introduction": "在线工具,将等距矩形全景图转换为立方体贴图,可直接用于 Unity、Unreal Engine、Blender、Three.js 等",
  4734. "tutorial": "",
  4735. "input": "",
  4736. "output": "",
  4737. "updated_time": 1776667149,
  4738. "status": "未接入"
  4739. },
  4740. {
  4741. "id": "Photoshop",
  4742. "name": "Photoshop",
  4743. "version": "tao_dev_1",
  4744. "introduction": "在AI置景基础上进行光照匹配和合成",
  4745. "tutorial": "",
  4746. "input": "",
  4747. "output": "",
  4748. "updated_time": 1776667149,
  4749. "status": "未接入"
  4750. },
  4751. {
  4752. "id": "Photoshop新建参考线版面功能",
  4753. "name": "Photoshop新建参考线版面功能",
  4754. "version": "tao_dev_1",
  4755. "introduction": "在PS中使用'新建参考线版面'功能自动生成网格:设置列数3、行数6、列装订线5mm、行装订线4.55mm、边距参数,自动生成18单元格网格系统",
  4756. "tutorial": "",
  4757. "input": "",
  4758. "output": "",
  4759. "updated_time": 1776667149,
  4760. "status": "未接入"
  4761. },
  4762. {
  4763. "id": "Photoshop 联系表II",
  4764. "name": "Photoshop 联系表II",
  4765. "version": "tao_dev_1",
  4766. "introduction": "文件→自动→联系表II,设置行列数,自动生成网格拼图",
  4767. "tutorial": "",
  4768. "input": "",
  4769. "output": "",
  4770. "updated_time": 1776667149,
  4771. "status": "未接入"
  4772. },
  4773. {
  4774. "id": "PicDoc (picdoc.cn)",
  4775. "name": "PicDoc (picdoc.cn)",
  4776. "version": "tao_dev_1",
  4777. "introduction": "选中文本生成结构图/循环图/鱼骨图等近百种信息图和数据图,全中文界面,支持再次编辑",
  4778. "tutorial": "",
  4779. "input": "",
  4780. "output": "",
  4781. "updated_time": 1776667149,
  4782. "status": "未接入"
  4783. },
  4784. {
  4785. "id": "Pollo AI(多模态参考)",
  4786. "name": "Pollo AI(多模态参考)",
  4787. "version": "tao_dev_1",
  4788. "introduction": "结合多张图片 + 参考视频定义第一人称视角,通过多模态输入精确控制 POV 效果,实现手术般精度的第一人称视角合成",
  4789. "tutorial": "",
  4790. "input": "",
  4791. "output": "",
  4792. "updated_time": 1776667149,
  4793. "status": "未接入"
  4794. },
  4795. {
  4796. "id": "PPT/Figma主题色批量替换",
  4797. "name": "PPT/Figma主题色批量替换",
  4798. "version": "tao_dev_1",
  4799. "introduction": "在PPT或Figma中设置全局主题色,修改主题色后所有格子的背景、文字、装饰元素自动同步更新",
  4800. "tutorial": "",
  4801. "input": "",
  4802. "output": "",
  4803. "updated_time": 1776667149,
  4804. "status": "未接入"
  4805. },
  4806. {
  4807. "id": "PPT/WPS表格图片填充功能",
  4808. "name": "PPT/WPS表格图片填充功能",
  4809. "version": "tao_dev_1",
  4810. "introduction": "右击表格→设置形状格式→图片或纹理填充→插入图片,自动将图片填充到单元格中,支持合并单元格制造大小对比",
  4811. "tutorial": "",
  4812. "input": "",
  4813. "output": "",
  4814. "updated_time": 1776667149,
  4815. "status": "未接入"
  4816. },
  4817. {
  4818. "id": "PPT 立体图形模板 + AI 内容填充",
  4819. "name": "PPT 立体图形模板 + AI 内容填充",
  4820. "version": "tao_dev_1",
  4821. "introduction": "选择金字塔、圆柱、环形、同心圆等立体模板,AI 根据业务描述自动填充各层文字标注,使用渐变色彩区分层级",
  4822. "tutorial": "",
  4823. "input": "",
  4824. "output": "",
  4825. "updated_time": 1776667149,
  4826. "status": "未接入"
  4827. },
  4828. {
  4829. "id": "Premiere Pro",
  4830. "name": "Premiere Pro",
  4831. "version": "tao_dev_1",
  4832. "introduction": "导入多段素材,使用变换效果调整每个素材的位置和大小,排列成4/6/9宫格布局,添加边框或间距,导出成品",
  4833. "tutorial": "",
  4834. "input": "",
  4835. "output": "",
  4836. "updated_time": 1776666846,
  4837. "status": "未接入"
  4838. },
  4839. {
  4840. "id": "Premiere Pro字幕动画",
  4841. "name": "Premiere Pro字幕动画",
  4842. "version": "tao_dev_1",
  4843. "introduction": "导入SRT字幕文件→设计字幕样式(字体、颜色、大小)→添加动画效果,创建病毒式字幕动画(case_youtube_011)",
  4844. "tutorial": "",
  4845. "input": "",
  4846. "output": "",
  4847. "updated_time": 1776667149,
  4848. "status": "未接入"
  4849. },
  4850. {
  4851. "id": "Premiere Pro素材包",
  4852. "name": "Premiere Pro素材包",
  4853. "version": "tao_dev_1",
  4854. "introduction": "导入12种预制对话气泡PR素材,选择合适样式叠加到视频或图片上并添加文字(case_bili_006)",
  4855. "tutorial": "",
  4856. "input": "",
  4857. "output": "",
  4858. "updated_time": 1776667149,
  4859. "status": "未接入"
  4860. },
  4861. {
  4862. "id": "ProCCD",
  4863. "name": "ProCCD",
  4864. "version": "tao_dev_1",
  4865. "introduction": "蒙版功能支持圆形、矩形、爱心、星形、三角形等形态",
  4866. "tutorial": "",
  4867. "input": "",
  4868. "output": "",
  4869. "updated_time": 1776667149,
  4870. "status": "未接入"
  4871. },
  4872. {
  4873. "id": "ProCCD 移除背景",
  4874. "name": "ProCCD 移除背景",
  4875. "version": "tao_dev_1",
  4876. "introduction": "导入图片后使用移除背景功能抠出主体,可配合擦除处理细节",
  4877. "tutorial": "",
  4878. "input": "",
  4879. "output": "",
  4880. "updated_time": 1776667149,
  4881. "status": "未接入"
  4882. },
  4883. {
  4884. "id": "ProCCD 贴纸",
  4885. "name": "ProCCD 贴纸",
  4886. "version": "tao_dev_1",
  4887. "introduction": "手帐贴纸、文案贴纸、字母贴纸、数字贴纸、标签贴纸、边框(拍立得相框增加氛围感)",
  4888. "tutorial": "",
  4889. "input": "",
  4890. "output": "",
  4891. "updated_time": 1776667149,
  4892. "status": "未接入"
  4893. },
  4894. {
  4895. "id": "ProCCD 跨屏拼图",
  4896. "name": "ProCCD 跨屏拼图",
  4897. "version": "tao_dev_1",
  4898. "introduction": "点击跨屏拼图新建画布,选择纯色/渐变色/材质背景(推荐星星卡纸)",
  4899. "tutorial": "",
  4900. "input": "",
  4901. "output": "",
  4902. "updated_time": 1776667149,
  4903. "status": "未接入"
  4904. },
  4905. {
  4906. "id": "ProCCD/黄油相机",
  4907. "name": "ProCCD/黄油相机",
  4908. "version": "tao_dev_1",
  4909. "introduction": "按场景→感受→行动逻辑排序,预留碎碎念位置",
  4910. "tutorial": "",
  4911. "input": "",
  4912. "output": "",
  4913. "updated_time": 1776667149,
  4914. "status": "未接入"
  4915. },
  4916. {
  4917. "id": "Puppeteer",
  4918. "name": "Puppeteer",
  4919. "version": "tao_dev_1",
  4920. "introduction": "将最终 HTML 版面导出为高质量 PNG 图像文件",
  4921. "tutorial": "",
  4922. "input": "",
  4923. "output": "",
  4924. "updated_time": 1776667149,
  4925. "status": "未接入"
  4926. },
  4927. {
  4928. "id": "Python wordcloud 库",
  4929. "name": "Python wordcloud 库",
  4930. "version": "tao_dev_1",
  4931. "introduction": "输入文本数据,设置自定义形状蒙版图片,根据词频自动生成不同大小的词语排布,导出词云图;源码开源可直接调用",
  4932. "tutorial": "",
  4933. "input": "",
  4934. "output": "",
  4935. "updated_time": 1776667149,
  4936. "status": "未接入"
  4937. },
  4938. {
  4939. "id": "QA Agent",
  4940. "name": "QA Agent",
  4941. "version": "tao_dev_1",
  4942. "introduction": "包含 15+ 设计检查项的质量评估代理,对生成的版面进行评分并反馈优化建议,迭代至 95/100 分",
  4943. "tutorial": "",
  4944. "input": "",
  4945. "output": "",
  4946. "updated_time": 1776667149,
  4947. "status": "未接入"
  4948. },
  4949. {
  4950. "id": "Qwen-edit-2511",
  4951. "name": "Qwen-edit-2511",
  4952. "version": "tao_dev_1",
  4953. "introduction": "上传人物图像 → 输入表情编辑指令(如让嘴角上扬、眉毛皱起等)→ 模型执行精准编辑 → 输出编辑后的图像",
  4954. "tutorial": "",
  4955. "input": "",
  4956. "output": "",
  4957. "updated_time": 1776666487,
  4958. "status": "未接入"
  4959. },
  4960. {
  4961. "id": "Qwen Image 2.5 Multi-Angle LoRA",
  4962. "name": "Qwen Image 2.5 Multi-Angle LoRA",
  4963. "version": "tao_dev_1",
  4964. "introduction": "下载 fal/Qwen-Image Multiple-Angles-LoRA 模型,通过 SKS token + 方向关键词作为虚拟摄影师进行提示词工程,坐标系统:3距离 × 8方位角 × 4仰角 = 96种组合(仰角范围 -30° 低角度到 60° 俯视)",
  4965. "tutorial": "",
  4966. "input": "",
  4967. "output": "",
  4968. "updated_time": 1776667149,
  4969. "status": "未接入"
  4970. },
  4971. {
  4972. "id": "Qwen Image Edit(camera control 功能)",
  4973. "name": "Qwen Image Edit(camera control 功能)",
  4974. "version": "tao_dev_1",
  4975. "introduction": "访问 huggingface.co/spaces/linoyts 上的 Qwen Image Edit 工具,上传参考图像后通过界面控件旋转摄像机角度(45/90度步进),一键切换 Bird's Eye View 或 Worm's Eye View,支持广角镜头效果模拟",
  4976. "tutorial": "",
  4977. "input": "",
  4978. "output": "",
  4979. "updated_time": 1776667149,
  4980. "status": "未接入"
  4981. },
  4982. {
  4983. "id": "Recraft AI",
  4984. "name": "Recraft AI",
  4985. "version": "tao_dev_1",
  4986. "introduction": "使用结构化 prompt([动物描述]+[穿戴配饰]+[背景]+[灯光构图])直接生成动物穿戴场景",
  4987. "tutorial": "",
  4988. "input": "",
  4989. "output": "",
  4990. "updated_time": 1776666846,
  4991. "status": "未接入"
  4992. },
  4993. {
  4994. "id": "redux能力",
  4995. "name": "redux能力",
  4996. "version": "tao_dev_1",
  4997. "introduction": "结合controlnet的openpose联合模型实现指定人物与背景的增强融合",
  4998. "tutorial": "",
  4999. "input": "",
  5000. "output": "",
  5001. "updated_time": 1776667149,
  5002. "status": "未接入"
  5003. },
  5004. {
  5005. "id": "rembg_background_remover",
  5006. "name": "Rembg Background Remover",
  5007. "version": "1.0.0",
  5008. "introduction": "AI-powered image background removal tool. Upload an image and get back the same image with the background removed (transparent PNG). Supports various AI models for different use cases.",
  5009. "tutorial": "",
  5010. "input": {
  5011. "type": "object",
  5012. "required": [
  5013. "file"
  5014. ],
  5015. "properties": {
  5016. "file": {
  5017. "type": "string",
  5018. "format": "binary",
  5019. "description": "Image file to remove background from (JPEG, PNG, etc.)"
  5020. },
  5021. "model": {
  5022. "enum": [
  5023. "u2net",
  5024. "u2netp",
  5025. "u2net_human_seg",
  5026. "u2net_cloth_seg",
  5027. "silueta",
  5028. "isnet-general-use",
  5029. "isnet-anime",
  5030. "sam"
  5031. ],
  5032. "type": "string",
  5033. "default": "u2net",
  5034. "description": "AI model to use for background removal"
  5035. },
  5036. "only_mask": {
  5037. "type": "boolean",
  5038. "default": false,
  5039. "description": "Return only the mask instead of the image"
  5040. },
  5041. "alpha_matting": {
  5042. "type": "boolean",
  5043. "default": false,
  5044. "description": "Enable alpha matting for better edge quality"
  5045. }
  5046. }
  5047. },
  5048. "output": {
  5049. "type": "string",
  5050. "format": "binary",
  5051. "description": "PNG image with transparent background"
  5052. },
  5053. "updated_time": 1776764926,
  5054. "status": "已接入"
  5055. },
  5056. {
  5057. "id": "remotion",
  5058. "name": "remotion",
  5059. "version": "tao_dev_1",
  5060. "introduction": "使用 remotion skill 全自动给视频加动效字幕,无需手动调整,测试可行性效果不错",
  5061. "tutorial": "",
  5062. "input": "",
  5063. "output": "",
  5064. "updated_time": 1776667149,
  5065. "status": "未接入"
  5066. },
  5067. {
  5068. "id": "remove.bg",
  5069. "name": "remove.bg",
  5070. "version": "tao_dev_1",
  5071. "introduction": "一键上传图片自动去除背景,输出透明底 PNG,支持动物毛发精细抠图",
  5072. "tutorial": "",
  5073. "input": "",
  5074. "output": "",
  5075. "updated_time": 1776667149,
  5076. "status": "未接入"
  5077. },
  5078. {
  5079. "id": "ReRender AI",
  5080. "name": "ReRender AI",
  5081. "version": "tao_dev_1",
  5082. "introduction": "Enhance tool 使用新的 AI 光照算法增强氛围和深度,sharper details(更清晰细节)+ more realistic lighting(更真实光照)",
  5083. "tutorial": "",
  5084. "input": "",
  5085. "output": "",
  5086. "updated_time": 1776667149,
  5087. "status": "未接入"
  5088. },
  5089. {
  5090. "id": "runcomfy_check_status",
  5091. "name": "RunComfy Check Status",
  5092. "version": "1.0.0",
  5093. "introduction": "获取 RunComfy 机器列表和实时状态。建议在 launch 前先 check 确认是否已有运行中的机器,避免资源浪费。",
  5094. "tutorial": "",
  5095. "input": {
  5096. "type": "object",
  5097. "properties": {
  5098. "server_id": {
  5099. "type": "string",
  5100. "description": "可选。指定具体机器 ID 查询。为空时查询名下所有机器列表。"
  5101. }
  5102. }
  5103. },
  5104. "output": {
  5105. "type": "object",
  5106. "required": [
  5107. "total",
  5108. "servers"
  5109. ],
  5110. "properties": {
  5111. "total": {
  5112. "type": "integer",
  5113. "description": "存在的机器总量"
  5114. },
  5115. "servers": {
  5116. "type": "array",
  5117. "items": {
  5118. "type": "object"
  5119. },
  5120. "description": "机器状态列表,包括 server_id, current_status, main_service_url 等详细信息"
  5121. }
  5122. }
  5123. },
  5124. "updated_time": 1775810027,
  5125. "status": "未接入"
  5126. },
  5127. {
  5128. "id": "runcomfy_stop_env",
  5129. "name": "RunComfy Stop Service",
  5130. "version": "1.0.0",
  5131. "introduction": "停止并删除 RunComfy 云端实例以释放资源。在完成生图任务后务必调用此工具,以防止持续产生费用。",
  5132. "tutorial": "",
  5133. "input": {
  5134. "type": "object",
  5135. "required": [
  5136. "server_id"
  5137. ],
  5138. "properties": {
  5139. "server_id": {
  5140. "type": "string",
  5141. "description": "The server ID to stop"
  5142. }
  5143. }
  5144. },
  5145. "output": {
  5146. "type": "object",
  5147. "properties": {
  5148. "status": {
  5149. "type": "string",
  5150. "description": "Deleted, NotFound, or Error"
  5151. },
  5152. "message": {
  5153. "type": "string",
  5154. "description": "Detailed result message"
  5155. },
  5156. "server_id": {
  5157. "type": "string",
  5158. "description": "The stopped server ID"
  5159. }
  5160. }
  5161. },
  5162. "updated_time": 1775810027,
  5163. "status": "未接入"
  5164. },
  5165. {
  5166. "id": "runcomfy_workflow_builder",
  5167. "name": "RunComfy Workflow Builder",
  5168. "version": "1.0.0",
  5169. "introduction": "ComfyUI 工作流构建辅助工具。提供模型查询、节点 Schema 检索、示例工作流浏览/加载、工作流验证等能力。⚠️ 首次使用请先调用 action=read_skill 获取完整使用指南,了解 API JSON 格式规则和架构差异后再构建工作流。",
  5170. "tutorial": "调用方式: POST /run_tool {tool_id: 'runcomfy_workflow_builder', params: {action: '...', ...}}\n\n支持的 action:\n read_skill - 【首次必读】返回 skill.md 使用指南\n search_models - 查询环境中可用的 checkpoint/lora/vae/controlnet\n get_node_schema - 获取 ComfyUI 节点的参数定义\n list_examples - 浏览/搜索示例工作流库 (70+)\n load_example - 加载具体示例 JSON 作为参考模板\n verify_workflow - 验证手写 API JSON 的合法性\n\n推荐流程: read_skill → list_examples → load_example → search_models → 修改 → verify_workflow → 交给 executor",
  5171. "input": {
  5172. "type": "object",
  5173. "required": [
  5174. "action"
  5175. ],
  5176. "properties": {
  5177. "name": {
  5178. "type": "string",
  5179. "description": "示例工作流名称 (load_example 用),支持 stem/路径/部分关键词"
  5180. },
  5181. "action": {
  5182. "enum": [
  5183. "read_skill",
  5184. "search_models",
  5185. "get_node_schema",
  5186. "list_examples",
  5187. "load_example",
  5188. "verify_workflow"
  5189. ],
  5190. "type": "string",
  5191. "description": "要执行的操作。⚠️ 首次使用请先调用 read_skill 了解完整规则。"
  5192. },
  5193. "keyword": {
  5194. "type": "string",
  5195. "description": "搜索关键词(大小写不敏感)"
  5196. },
  5197. "category": {
  5198. "type": "string",
  5199. "description": "模型分类(checkpoints/loras/vaes/controlnets) 或示例分类(flux/controlnet/inpaint/...)"
  5200. },
  5201. "workflow": {
  5202. "type": "object",
  5203. "description": "待验证的 ComfyUI API JSON 字典 (verify_workflow 用)"
  5204. },
  5205. "class_type": {
  5206. "type": "string",
  5207. "description": "ComfyUI 节点类型名 (get_node_schema 用),如 KSampler、ControlNetApplySD3"
  5208. }
  5209. }
  5210. },
  5211. "output": {
  5212. "type": "object",
  5213. "description": "根据 action 不同返回不同结构,均包含 action 字段标识操作类型"
  5214. },
  5215. "updated_time": 0,
  5216. "status": "已接入"
  5217. },
  5218. {
  5219. "id": "runcomfy_workflow_executor",
  5220. "name": "RunComfy Workflow Executor",
  5221. "version": "1.0.0",
  5222. "introduction": "在已就绪的 RunComfy 机器上提交 ComfyUI 工作流,上传输入文件(可传URL直接下载),并自动下载结果图。\n【警告】传入输入图片/模型时,input_files 必须是结构化字典对象(Object)组成的数组,包括 filename、type、以及 url 等属性,详细格式见 input_files 字段描述。",
  5223. "tutorial": "",
  5224. "input": {
  5225. "type": "object",
  5226. "required": [
  5227. "server_id",
  5228. "workflow_api"
  5229. ],
  5230. "properties": {
  5231. "server_id": {
  5232. "type": "string",
  5233. "description": "已启动的 RunComfy 机器 ID"
  5234. },
  5235. "input_files": {
  5236. "type": "array",
  5237. "items": {
  5238. "type": "object",
  5239. "required": [
  5240. "filename",
  5241. "type"
  5242. ],
  5243. "properties": {
  5244. "url": {
  5245. "type": "string",
  5246. "description": "文件的 CDN/HTTP 链接。如果提供此字段,执行器会自动下载。(与 path, base64_data 三选一)"
  5247. },
  5248. "path": {
  5249. "type": "string",
  5250. "description": "本地机器上的文件绝对路径。如果提供此字段,执行器会读取该本地文件并上传。(与 url, base64_data 三选一)"
  5251. },
  5252. "type": {
  5253. "type": "string",
  5254. "description": "文件类型:images/loras/checkpoints/vae/controlnet"
  5255. },
  5256. "filename": {
  5257. "type": "string",
  5258. "description": "文件名"
  5259. },
  5260. "base64_data": {
  5261. "type": "string",
  5262. "description": "文件的 Base64 编码数据。(与 url, path 三选一)"
  5263. }
  5264. }
  5265. },
  5266. "description": "【极其关键】必须是字典(Object)数组,绝不能直接传字符串数组!\n如果传入本地图片/外部链接,请将其放到 url 或 path 字段中,底层 ToolHub 会自动帮你转换为可用的资源。\n错误示例:[\"C:\\path\\to\\img.png\"]\n正确示例:\n[\n {\n \"filename\": \"depth_map.png\",\n \"type\": \"images\",\n \"url\": \"C:\\path\\to\\img.png\"\n }\n]"
  5267. },
  5268. "workflow_api": {
  5269. "type": "object",
  5270. "description": "ComfyUI workflow_api.json 内容(字典格式)"
  5271. }
  5272. }
  5273. },
  5274. "output": {
  5275. "type": "object",
  5276. "properties": {
  5277. "images": {
  5278. "type": "array",
  5279. "items": {
  5280. "type": "string"
  5281. },
  5282. "description": "结果图片的 Base64 数据列表"
  5283. },
  5284. "status": {
  5285. "type": "string",
  5286. "description": "执行状态"
  5287. },
  5288. "prompt_id": {
  5289. "type": "string",
  5290. "description": "任务 ID"
  5291. },
  5292. "server_id": {
  5293. "type": "string",
  5294. "description": "机器 ID"
  5295. }
  5296. }
  5297. },
  5298. "updated_time": 1775810027,
  5299. "status": "未接入"
  5300. },
  5301. {
  5302. "id": "runninghub 在线工作流",
  5303. "name": "runninghub 在线工作流",
  5304. "version": "tao_dev_1",
  5305. "introduction": "人像迁移工作流,实现人像完美融合到任何场景中",
  5306. "tutorial": "",
  5307. "input": "",
  5308. "output": "",
  5309. "updated_time": 1776666487,
  5310. "status": "未接入"
  5311. },
  5312. {
  5313. "id": "Runway",
  5314. "name": "Runway",
  5315. "version": "tao_dev_1",
  5316. "introduction": "ChatGPT+Runway组合解决角色一致性和口型同步核心难题",
  5317. "tutorial": "",
  5318. "input": "",
  5319. "output": "",
  5320. "updated_time": 1776667149,
  5321. "status": "未接入"
  5322. },
  5323. {
  5324. "id": "Runway Aleph",
  5325. "name": "Runway Aleph",
  5326. "version": "tao_dev_1",
  5327. "introduction": "内置4K upscale功能,可将生成的光效视频片段放大到4K分辨率",
  5328. "tutorial": "",
  5329. "input": "",
  5330. "output": "",
  5331. "updated_time": 1776667149,
  5332. "status": "未接入"
  5333. },
  5334. {
  5335. "id": "RunwayML Gen-3",
  5336. "name": "RunwayML Gen-3",
  5337. "version": "tao_dev_1",
  5338. "introduction": "在 RunwayML 中使用首尾帧模式,输入起始和结束关键帧,配合提示词引导生成超现实服装变换视频",
  5339. "tutorial": "",
  5340. "input": "",
  5341. "output": "",
  5342. "updated_time": 1776667149,
  5343. "status": "未接入"
  5344. },
  5345. {
  5346. "id": "Runway Seedance 2.0",
  5347. "name": "Runway Seedance 2.0",
  5348. "version": "tao_dev_1",
  5349. "introduction": "基于预先构建的品牌联名世界观和角色设定,使用Seedance 2.0提示词定义场景和动作,生成视频",
  5350. "tutorial": "",
  5351. "input": "",
  5352. "output": "",
  5353. "updated_time": 1776667149,
  5354. "status": "未接入"
  5355. },
  5356. {
  5357. "id": "Runway / 海螺AI / 可灵AI",
  5358. "name": "Runway / 海螺AI / 可灵AI",
  5359. "version": "tao_dev_1",
  5360. "introduction": "图生视频时指定音频驱动,自动生成口型同步动画",
  5361. "tutorial": "",
  5362. "input": "",
  5363. "output": "",
  5364. "updated_time": 1776667149,
  5365. "status": "未接入"
  5366. },
  5367. {
  5368. "id": "Seedance 2.0",
  5369. "name": "Seedance 2.0",
  5370. "version": "tao_dev_1",
  5371. "introduction": "量产 15 秒产品 TVC 广告视频,实现人物与产品的互动展示",
  5372. "tutorial": "",
  5373. "input": "",
  5374. "output": "",
  5375. "updated_time": 1776666487,
  5376. "status": "未接入"
  5377. },
  5378. {
  5379. "id": "Seedance 2.0(CapCut)",
  5380. "name": "Seedance 2.0(CapCut)",
  5381. "version": "tao_dev_1",
  5382. "introduction": "使用 OMNI Reference 功能,上传原始视频作为场景参考,上传目标角色图片,通过 prompt 描述要替换的具体人物特征(服装颜色、位置)和目标角色图片编号,实现精准角色替换",
  5383. "tutorial": "",
  5384. "input": "",
  5385. "output": "",
  5386. "updated_time": 1776667149,
  5387. "status": "未接入"
  5388. },
  5389. {
  5390. "id": "Seedance 2.0 + Dreamina",
  5391. "name": "Seedance 2.0 + Dreamina",
  5392. "version": "tao_dev_1",
  5393. "introduction": "使用 JSON 格式提示词结构清晰描述场景、角色动作、冲突和高潮,生成动漫风格多角色互动场景",
  5394. "tutorial": "",
  5395. "input": "",
  5396. "output": "",
  5397. "updated_time": 1776666846,
  5398. "status": "未接入"
  5399. },
  5400. {
  5401. "id": "Seedance 2.0 + RunwayML",
  5402. "name": "Seedance 2.0 + RunwayML",
  5403. "version": "tao_dev_1",
  5404. "introduction": "使用 Seedance 2.0 模型配置 FPV(First Person View)视角参数,通过 RunwayML unlimited plan 进行多次实验迭代,生成连续的 FPV 镜头效果",
  5405. "tutorial": "",
  5406. "input": "",
  5407. "output": "",
  5408. "updated_time": 1776667149,
  5409. "status": "未接入"
  5410. },
  5411. {
  5412. "id": "Seedance / Grok 主体库功能",
  5413. "name": "Seedance / Grok 主体库功能",
  5414. "version": "tao_dev_1",
  5415. "introduction": "利用平台内置的主体库功能,上传角色多视图后保存为主体,后续生成时直接从主体库调用角色",
  5416. "tutorial": "",
  5417. "input": "",
  5418. "output": "",
  5419. "updated_time": 1776667149,
  5420. "status": "未接入"
  5421. },
  5422. {
  5423. "id": "Seedance / WAN 2.2 Animate + 首帧图像输入",
  5424. "name": "Seedance / WAN 2.2 Animate + 首帧图像输入",
  5425. "version": "tao_dev_1",
  5426. "introduction": "截取上一视频最后一帧作为下一段视频的首帧图像输入,配合 prompt '接@这张图片延长 X 秒' 实现视频续生成",
  5427. "tutorial": "",
  5428. "input": "",
  5429. "output": "",
  5430. "updated_time": 1776667149,
  5431. "status": "未接入"
  5432. },
  5433. {
  5434. "id": "Seede AI (seede.ai)",
  5435. "name": "Seede AI (seede.ai)",
  5436. "version": "tao_dev_1",
  5437. "introduction": "输入文案后自动完成需求分析/布局/设计/图像处理,输出视觉风格图片,支持长图生成,所有元素拆分为可修改图层",
  5438. "tutorial": "",
  5439. "input": "",
  5440. "output": "",
  5441. "updated_time": 1776667149,
  5442. "status": "未接入"
  5443. },
  5444. {
  5445. "id": "Seedream 4.5",
  5446. "name": "Seedream 4.5",
  5447. "version": "tao_dev_1",
  5448. "introduction": "上传参考图后使用'Create a character sheet...Maintain 100% artstyle and character traits. Use image 1 as a reference'生成保持原艺术风格的角色表",
  5449. "tutorial": "",
  5450. "input": "",
  5451. "output": "",
  5452. "updated_time": 1776667149,
  5453. "status": "未接入"
  5454. },
  5455. {
  5456. "id": "seedream_generate",
  5457. "name": "SeeDream-4.0图片生成",
  5458. "version": "1.0.0",
  5459. "introduction": "已支持的最新版本: 5.0 Lite\n\n已支持的最新版本: 4.0\n\n已支持的最新版本: 5.0 Lite\n\n已支持的最新版本: 4\n\n已支持的最新版本: 1.0.0\n\n基于 APIyi 中转站实现的 SeeDream 图片生成与编辑接口。若传入 image_url 将触发高级图生图(图像编辑)。\n\n[融合补充描述]:\n基于 SeaDream 模型的图像生成工具\n\n[融合补充描述]:\n开源工具,在 ImagineArt 上免费提供\n\n[融合补充描述]:\n字节跳动推出的统一多模态图像生成模型,具备深度思考与在线搜索能力\n\n[融合补充描述]:\n支持视频生成,模特转身展示服装细节\n\n[融合补充描述]:\nAI 图像生成模型,通常在多个第三方平台上线",
  5460. "tutorial": "\n\n通过 toolhub_call 调用,传入 prompt、image_urls 等参数\n\n图像或视频生成\n\n通过 REST API 或 Dreamina 平台输入文本及参考图生成图像\n\n视频生成\n\n通过第三方平台(如 fal.ai、Dreamina)调用生成图像",
  5461. "input": {
  5462. "type": "object",
  5463. "required": [
  5464. "prompt"
  5465. ],
  5466. "properties": {
  5467. "n": {
  5468. "type": "integer",
  5469. "default": 1,
  5470. "description": "生成的图片数量"
  5471. },
  5472. "size": {
  5473. "type": "string",
  5474. "default": "2048x2048",
  5475. "description": "尺寸分辨率。支持精度如 '1024x1024' 或者直传标准如 '1K', '2K', '4K'。"
  5476. },
  5477. "model": {
  5478. "enum": [
  5479. "seedream-4-0-250828",
  5480. "seedream-4-5-251128",
  5481. "seedream-5-0-260128"
  5482. ],
  5483. "type": "string",
  5484. "default": "seedream-5-0-260128",
  5485. "description": "使用的模型名。支持4.0, 4.5, 5.0版本"
  5486. },
  5487. "prompt": {
  5488. "type": "string",
  5489. "description": "正向提示词。描述图像的视觉内容。"
  5490. },
  5491. "quality": {
  5492. "enum": [
  5493. "standard",
  5494. "hd"
  5495. ],
  5496. "type": "string",
  5497. "default": "hd",
  5498. "description": "图片质量。'standard' 或 'hd'"
  5499. },
  5500. "image_url": {
  5501. "type": "string",
  5502. "description": "参考图网络外链。若传入此项,则引擎切换至图生图(编辑)模式。"
  5503. }
  5504. }
  5505. },
  5506. "output": {
  5507. "type": "object",
  5508. "properties": {
  5509. "images": {
  5510. "type": "array",
  5511. "items": {
  5512. "type": "string"
  5513. },
  5514. "description": "成功生成的图片URL数组。"
  5515. },
  5516. "status": {
  5517. "type": "string",
  5518. "description": "结果态"
  5519. }
  5520. }
  5521. },
  5522. "updated_time": 1775810027,
  5523. "status": "已接入"
  5524. },
  5525. {
  5526. "id": "Seedream / nano_banana",
  5527. "name": "Seedream / nano_banana",
  5528. "version": "tao_dev_1",
  5529. "introduction": "支持上传参考人物照片,通过图生图(img2img)方式将人物特征迁移到喜庆背景模板中",
  5530. "tutorial": "",
  5531. "input": "",
  5532. "output": "",
  5533. "updated_time": 1776667149,
  5534. "status": "未接入"
  5535. },
  5536. {
  5537. "id": "sora2_openai",
  5538. "name": "sora2_openai",
  5539. "version": "tao_dev_1",
  5540. "introduction": "使用 Multi-shot composition 结构,按 Cut 1/2/3 分段嵌入景别描述,配合时间戳 [00:00-00:03] 控制每个景别时长,添加相机运动词(tracking/tilt/rise)增强电影感",
  5541. "tutorial": "",
  5542. "input": "",
  5543. "output": "",
  5544. "updated_time": 1776667149,
  5545. "status": "未接入"
  5546. },
  5547. {
  5548. "id": "Stable Diffusion + ADetailer",
  5549. "name": "Stable Diffusion + ADetailer",
  5550. "version": "tao_dev_1",
  5551. "introduction": "SD一键生成同一人物的不同表情,通过ADetailer插件对面部区域进行精细化控制",
  5552. "tutorial": "",
  5553. "input": "",
  5554. "output": "",
  5555. "updated_time": 1776667149,
  5556. "status": "未接入"
  5557. },
  5558. {
  5559. "id": "Stable Diffusion(ComfyUI/A1111)",
  5560. "name": "Stable Diffusion(ComfyUI/A1111)",
  5561. "version": "tao_dev_1",
  5562. "introduction": "使用赛博朋克风格 Checkpoint 或 LoRA,配合 KSampler 节点,通过正向 Prompt 描述霓虹光效、流光线条,负向 Prompt 排除日光/自然场景,批量输出底图",
  5563. "tutorial": "",
  5564. "input": "",
  5565. "output": "",
  5566. "updated_time": 1776667149,
  5567. "status": "未接入"
  5568. },
  5569. {
  5570. "id": "Stable Diffusion + ControlNet",
  5571. "name": "Stable Diffusion + ControlNet",
  5572. "version": "tao_dev_1",
  5573. "introduction": "使用 ControlNet 的布局控制节点,基于参考排版结构生成包含多元素的合成海报",
  5574. "tutorial": "",
  5575. "input": "",
  5576. "output": "",
  5577. "updated_time": 1776667149,
  5578. "status": "未接入"
  5579. },
  5580. {
  5581. "id": "Stable Diffusion Inpainting",
  5582. "name": "Stable Diffusion Inpainting",
  5583. "version": "tao_dev_1",
  5584. "introduction": "使用 Inpainting 节点对文字区域进行局部重绘,配合原图风格 Prompt 保持视觉一致性",
  5585. "tutorial": "",
  5586. "input": "",
  5587. "output": "",
  5588. "updated_time": 1776667149,
  5589. "status": "未接入"
  5590. },
  5591. {
  5592. "id": "Stable Diffusion + IPAdapter",
  5593. "name": "Stable Diffusion + IPAdapter",
  5594. "version": "tao_dev_1",
  5595. "introduction": "使用 IPAdapter 节点注入人物面部特征,配合赛博朋克风格 LoRA,在保持人物相似度的同时输出科技感风格化形象",
  5596. "tutorial": "",
  5597. "input": "",
  5598. "output": "",
  5599. "updated_time": 1776667149,
  5600. "status": "未接入"
  5601. },
  5602. {
  5603. "id": "Stable Diffusion + LoRA",
  5604. "name": "Stable Diffusion + LoRA",
  5605. "version": "tao_dev_1",
  5606. "introduction": "加载服装材质专用LoRA模型,结合材质描述词强化羽绒服蓬松度、围巾纹理等特定面料的物理真实感",
  5607. "tutorial": "",
  5608. "input": "",
  5609. "output": "",
  5610. "updated_time": 1776667149,
  5611. "status": "未接入"
  5612. },
  5613. {
  5614. "id": "Stable Diffusion Prompt 工程",
  5615. "name": "Stable Diffusion Prompt 工程",
  5616. "version": "tao_dev_1",
  5617. "introduction": "使用正向 Prompt(风格/主体/质量)+ 负向 Prompt(排除项)+ 权重调节(括号语法)的三段式框架控制生成结果",
  5618. "tutorial": "",
  5619. "input": "",
  5620. "output": "",
  5621. "updated_time": 1776667149,
  5622. "status": "未接入"
  5623. },
  5624. {
  5625. "id": "Stable Diffusion + rolescene-blend LoRA",
  5626. "name": "Stable Diffusion + rolescene-blend LoRA",
  5627. "version": "tao_dev_1",
  5628. "introduction": "使用 rolescene-blend LoRA 模型进行万物迁移,将服装/道具迁移到动物主体上",
  5629. "tutorial": "",
  5630. "input": "",
  5631. "output": "",
  5632. "updated_time": 1776666846,
  5633. "status": "未接入"
  5634. },
  5635. {
  5636. "id": "Stable Diffusion + 提示词",
  5637. "name": "Stable Diffusion + 提示词",
  5638. "version": "tao_dev_1",
  5639. "introduction": "使用景深三要素口诀:大(调大光圈)、长(拉长焦段)、近(贴近模特),在提示词中描述浅景深效果",
  5640. "tutorial": "",
  5641. "input": "",
  5642. "output": "",
  5643. "updated_time": 1776667149,
  5644. "status": "未接入"
  5645. },
  5646. {
  5647. "id": "Steady Dancer",
  5648. "name": "Steady Dancer",
  5649. "version": "tao_dev_1",
  5650. "introduction": "Steady Dancer工具专门针对Q版/动物角色进行动作迁移,独家避坑指南避免肢体变形,效果优于Wan Animate",
  5651. "tutorial": "",
  5652. "input": "",
  5653. "output": "",
  5654. "updated_time": 1776667149,
  5655. "status": "未接入"
  5656. },
  5657. {
  5658. "id": "Suno",
  5659. "name": "Suno",
  5660. "version": "tao_dev_1",
  5661. "introduction": "为AI生成的奇幻短片配套生成背景音乐,完成完整的AI音乐视频制作",
  5662. "tutorial": "",
  5663. "input": "",
  5664. "output": "",
  5665. "updated_time": 1776667149,
  5666. "status": "未接入"
  5667. },
  5668. {
  5669. "id": "Suno AI",
  5670. "name": "Suno AI",
  5671. "version": "tao_dev_1",
  5672. "introduction": "根据情绪描述(如 calm, spacious, quietly emotional)生成对应风格的原创背景音乐,支持实验性太空摇滚融合和动态环境音景",
  5673. "tutorial": "",
  5674. "input": "",
  5675. "output": "",
  5676. "updated_time": 1776667149,
  5677. "status": "未接入"
  5678. },
  5679. {
  5680. "id": "Suno_AI",
  5681. "name": "Suno_AI",
  5682. "version": "tao_dev_1",
  5683. "introduction": "配合 Suno AI V5 生成与视觉氛围匹配的背景音乐和声乐,增强多感官沉浸体验",
  5684. "tutorial": "",
  5685. "input": "",
  5686. "output": "",
  5687. "updated_time": 1776667149,
  5688. "status": "未接入"
  5689. },
  5690. {
  5691. "id": "Suno AI v5",
  5692. "name": "Suno AI v5",
  5693. "version": "tao_dev_1",
  5694. "introduction": "输入情感描述词(如 Dub Soliloquy 风格、ethereal atmosphere、epic cinematic)生成对应风格的 AI 原创音乐",
  5695. "tutorial": "",
  5696. "input": "",
  5697. "output": "",
  5698. "updated_time": 1776667149,
  5699. "status": "未接入"
  5700. },
  5701. {
  5702. "id": "TapNow AI",
  5703. "name": "TapNow AI",
  5704. "version": "tao_dev_1",
  5705. "introduction": "宠物换衣工作流模板,上传宠物照片一键生成换装效果",
  5706. "tutorial": "",
  5707. "input": "",
  5708. "output": "",
  5709. "updated_time": 1776667149,
  5710. "status": "未接入"
  5711. },
  5712. {
  5713. "id": "tools/image_gen/3dai_studio",
  5714. "name": "3DAIStudio",
  5715. "version": null,
  5716. "introduction": "AI 驱动的 2D 图像转 3D 模型工具",
  5717. "tutorial": "将 AI 生成的 2D 设计图转换为 3D 模型文件",
  5718. "input": "2D 图像",
  5719. "output": "3D 模型文件",
  5720. "updated_time": 1775129943,
  5721. "status": "未接入"
  5722. },
  5723. {
  5724. "id": "tools/image_gen/adobe_firefly",
  5725. "name": "Adobe Firefly",
  5726. "version": null,
  5727. "introduction": "Adobe 推出的创意生成式 AI 模型系列",
  5728. "tutorial": "集成在 Adobe 创意云产品中",
  5729. "input": "文本提示词、图像",
  5730. "output": "生成图像",
  5731. "updated_time": 1775130502,
  5732. "status": "未接入"
  5733. },
  5734. {
  5735. "id": "tools/image_gen/adobe_firefly_3",
  5736. "name": "Adobe Firefly 3",
  5737. "version": "3",
  5738. "introduction": "注重商业安全性的 AI 生图工具,集成于 Adobe 生态",
  5739. "tutorial": "通过 Adobe 订阅使用,支持 API 集成",
  5740. "input": "文本提示词",
  5741. "output": "图像 (2K 支持)",
  5742. "updated_time": 1774592722,
  5743. "status": "未接入"
  5744. },
  5745. {
  5746. "id": "tools/image_gen/ai_identity_lock_module",
  5747. "name": "AI 身份锁定模块",
  5748. "version": null,
  5749. "introduction": "用于保持人物身份一致性的 AI 模块",
  5750. "tutorial": "锁定身份背景,确保生成人物一致性",
  5751. "input": "参考人脸图像",
  5752. "output": "身份特征数据",
  5753. "updated_time": 1776150387,
  5754. "status": "未接入"
  5755. },
  5756. {
  5757. "id": "tools/image_gen/ai_lighting_engine",
  5758. "name": "AI 灯光引擎",
  5759. "version": null,
  5760. "introduction": "模拟专业摄影灯光的 AI 渲染模块",
  5761. "tutorial": "升级图像灯光效果",
  5762. "input": "图像、灯光参数",
  5763. "output": "调整光影后的图像",
  5764. "updated_time": 1776150387,
  5765. "status": "未接入"
  5766. },
  5767. {
  5768. "id": "tools/image_gen/ai_rendering_engine",
  5769. "name": "AI 渲染引擎",
  5770. "version": null,
  5771. "introduction": "最终图像渲染输出模块,支持高规格输出",
  5772. "tutorial": "输出 4K 10-bit 最终渲染图",
  5773. "input": "处理后的图像数据",
  5774. "output": "4K 10-bit 图像文件",
  5775. "updated_time": 1776150387,
  5776. "status": "未接入"
  5777. },
  5778. {
  5779. "id": "tools/image_gen/ai_toolkit_ostris",
  5780. "name": "AI-Toolkit (OSTRIS)",
  5781. "version": null,
  5782. "introduction": "用于训练 LoRA 模型的开源工具包",
  5783. "tutorial": "配置参数进行 LoRA 模型训练",
  5784. "input": "数据集、标签、底模",
  5785. "output": ".safetensors 模型文件",
  5786. "updated_time": 1776066634,
  5787. "status": "未接入"
  5788. },
  5789. {
  5790. "id": "tools/image_gen/ali_lookie",
  5791. "name": "阿里 Lookie",
  5792. "version": null,
  5793. "introduction": "与淘宝商品打通,提供穿搭评分",
  5794. "tutorial": "C 端应用",
  5795. "input": "淘宝商品链接、个人形象",
  5796. "output": "试穿效果、穿搭评分",
  5797. "updated_time": 1774856189,
  5798. "status": "未接入"
  5799. },
  5800. {
  5801. "id": "tools/image_gen/ali_tongyi_qianwen",
  5802. "name": "阿里通义千问",
  5803. "version": null,
  5804. "introduction": "阿里旗下的 AI 模型,文中提及人物一致性优秀",
  5805. "tutorial": "需下载 APP 使用",
  5806. "input": "文本提示词",
  5807. "output": "图像",
  5808. "updated_time": 1775119935,
  5809. "status": "未接入"
  5810. },
  5811. {
  5812. "id": "tools/image_gen/botika_ai",
  5813. "name": "Botika AI",
  5814. "version": null,
  5815. "introduction": "AI 生成时尚模特展示图工具",
  5816. "tutorial": "将服装图转换为模特上身图",
  5817. "input": "服装图片",
  5818. "output": "模特展示图",
  5819. "updated_time": 1774914794,
  5820. "status": "未接入"
  5821. },
  5822. {
  5823. "id": "tools/image_gen/canva_ai_magic_design",
  5824. "name": "Canva AI (Magic Design)",
  5825. "version": null,
  5826. "introduction": "通过自然语言描述自动生成设计稿,包含自动排版、布局建议、元素 positioning",
  5827. "tutorial": "在 Canva 平台输入设计需求描述,AI 自动生成多个布局方案供选择",
  5828. "input": "自然语言设计需求描述",
  5829. "output": "多个布局方案/设计稿",
  5830. "updated_time": 1774499696,
  5831. "status": "未接入"
  5832. },
  5833. {
  5834. "id": "tools/image_gen/canva_magic_studio",
  5835. "name": "Canva Magic Studio",
  5836. "version": null,
  5837. "introduction": "零门槛设计平台,提供海量模板及 AI 辅助设计功能",
  5838. "tutorial": "快速原型设计或简单画册制作",
  5839. "input": "模板/文本",
  5840. "output": "设计图",
  5841. "updated_time": 1775117296,
  5842. "status": "未接入"
  5843. },
  5844. {
  5845. "id": "tools/image_gen/chuang_ke_tie",
  5846. "name": "创客贴",
  5847. "version": null,
  5848. "introduction": "在线平面设计工具,集成 AI 生成与设计功能",
  5849. "tutorial": "使用模板或 AI 工具进行平面设计",
  5850. "input": "文本/模板",
  5851. "output": "设计图像",
  5852. "updated_time": 1774952549,
  5853. "status": "未接入"
  5854. },
  5855. {
  5856. "id": "tools/image_gen/dall_e",
  5857. "name": "DALL-E",
  5858. "version": null,
  5859. "introduction": "OpenAI 开发的 AI 图像生成模型",
  5860. "tutorial": "通过 API 或 ChatGPT 界面生成图像",
  5861. "input": "文本提示词",
  5862. "output": "生成图像",
  5863. "updated_time": 1774592324,
  5864. "status": "未接入"
  5865. },
  5866. {
  5867. "id": "tools/image_gen/dall_e_3",
  5868. "name": "DALL·E 3",
  5869. "version": "3",
  5870. "introduction": "OpenAI 推出的文生图模型",
  5871. "tutorial": "通过 ChatGPT 或 API 生成图像",
  5872. "input": "文本提示词",
  5873. "output": "生成图像",
  5874. "updated_time": 1775130502,
  5875. "status": "未接入"
  5876. },
  5877. {
  5878. "id": "tools/image_gen/doubao",
  5879. "name": "豆包",
  5880. "version": null,
  5881. "introduction": "字节跳动推出的多功能 AI 助手,支持图像生成与处理",
  5882. "tutorial": "用于道路/墙绘预处理",
  5883. "input": "文本提示或参考图",
  5884. "output": "预处理后的图像",
  5885. "updated_time": 1775130092,
  5886. "status": "未接入"
  5887. },
  5888. {
  5889. "id": "tools/image_gen/douyin_ai_try_on",
  5890. "name": "抖音 AI 试衣",
  5891. "version": null,
  5892. "introduction": "虚拟试衣工具",
  5893. "tutorial": "人物换装",
  5894. "input": null,
  5895. "output": null,
  5896. "updated_time": 1774858780,
  5897. "status": "未接入"
  5898. },
  5899. {
  5900. "id": "tools/image_gen/dreamina",
  5901. "name": "Dreamina",
  5902. "version": null,
  5903. "introduction": "CapCut 主力支持的 AI 生图平台,首发支持 Seedream 5.0 Lite",
  5904. "tutorial": "在线图像生成",
  5905. "input": "文本提示词",
  5906. "output": "图像",
  5907. "updated_time": 1776105417,
  5908. "status": "未接入"
  5909. },
  5910. {
  5911. "id": "tools/image_gen/enhancor_ai",
  5912. "name": "Enhancor.ai",
  5913. "version": null,
  5914. "introduction": "在线图像增强平台",
  5915. "tutorial": "图像质量增强",
  5916. "input": "低质图像",
  5917. "output": "高质图像",
  5918. "updated_time": 1776351248,
  5919. "status": "未接入"
  5920. },
  5921. {
  5922. "id": "tools/image_gen/fal_ai",
  5923. "name": "fal.ai",
  5924. "version": null,
  5925. "introduction": "服务器less AI 模型托管平台,支持多种生成模型",
  5926. "tutorial": "托管和运行 AI 模型 API,提供生成服务",
  5927. "input": null,
  5928. "output": null,
  5929. "updated_time": 1774899404,
  5930. "status": "未接入"
  5931. },
  5932. {
  5933. "id": "tools/image_gen/family_pro",
  5934. "name": "FamilyPro",
  5935. "version": null,
  5936. "introduction": "垂直领域的 AI 穿搭工具,适合特定场景",
  5937. "tutorial": "特定场景下的穿搭生成与分析",
  5938. "input": "穿搭需求/用户图像",
  5939. "output": "穿搭效果图像",
  5940. "updated_time": 1774855718,
  5941. "status": "未接入"
  5942. },
  5943. {
  5944. "id": "tools/image_gen/fashion_vdm",
  5945. "name": "Fashion-VDM",
  5946. "version": null,
  5947. "introduction": "虚拟试穿类工具,核心功能是服装更换",
  5948. "tutorial": "服装更换",
  5949. "input": null,
  5950. "output": null,
  5951. "updated_time": 1774859537,
  5952. "status": "未接入"
  5953. },
  5954. {
  5955. "id": "tools/image_gen/flux",
  5956. "name": "Flux",
  5957. "version": "GGUF",
  5958. "introduction": "高性能图像生成模型,支持高质量细节生成",
  5959. "tutorial": "结合 ControlNet Canny 进行建筑渲染增强",
  5960. "input": "文本提示、控制图",
  5961. "output": "高细节生成图像",
  5962. "updated_time": 1776152687,
  5963. "status": "未接入"
  5964. },
  5965. {
  5966. "id": "tools/image_gen/flux_query",
  5967. "name": "flux_query",
  5968. "version": null,
  5969. "introduction": "查询 Flux 任务状态及结果的工具",
  5970. "tutorial": "查询任务结果",
  5971. "input": "任务 ID",
  5972. "output": "任务状态及图像 URL",
  5973. "updated_time": 1775565828,
  5974. "status": "未接入"
  5975. },
  5976. {
  5977. "id": "tools/image_gen/gemini_3_pro_image",
  5978. "name": "Gemini 3 Pro Image",
  5979. "version": "preview",
  5980. "introduction": "Google DeepMind 推出的专业级 AI 图像生成与编辑模型,支持 4K 分辨率及多语言文本渲染",
  5981. "tutorial": "通过 API、Google AI Studio 或 Gemini App 进行调用",
  5982. "input": "文本提示词、最多 14 张参考图",
  5983. "output": "4K 超高分辨率图像",
  5984. "updated_time": 1776075283,
  5985. "status": "未接入"
  5986. },
  5987. {
  5988. "id": "tools/image_gen/google_deepmind_project_genie",
  5989. "name": "Google DeepMind Project Genie",
  5990. "version": null,
  5991. "introduction": "大厂产品,技术实力强",
  5992. "tutorial": "时尚模型生成",
  5993. "input": null,
  5994. "output": null,
  5995. "updated_time": 1774859537,
  5996. "status": "未接入"
  5997. },
  5998. {
  5999. "id": "tools/image_gen/google_doppl",
  6000. "name": "Google Doppl",
  6001. "version": null,
  6002. "introduction": "360 度试穿视频,个人数字形象创建",
  6003. "tutorial": "C 端应用",
  6004. "input": "个人形象数据",
  6005. "output": "360 度试穿视频",
  6006. "updated_time": 1774859701,
  6007. "status": "未接入"
  6008. },
  6009. {
  6010. "id": "tools/image_gen/google_gemini",
  6011. "name": "Google Gemini",
  6012. "version": null,
  6013. "introduction": "Google 多模态 AI 模型,支持参考图与文本驱动生成",
  6014. "tutorial": "上传参考图加编写多模态提示词,调用 API 生成并筛选",
  6015. "input": "参考图,多模态提示词",
  6016. "output": "生成图像",
  6017. "updated_time": 1776147655,
  6018. "status": "未接入"
  6019. },
  6020. {
  6021. "id": "tools/image_gen/google_gemini_pro",
  6022. "name": "Google Gemini Pro",
  6023. "version": null,
  6024. "introduction": "Google 推出的多模态 AI 模型,支持通过文本和参考图生成图像",
  6025. "tutorial": "访问平台选择图像生成工具,上传参考图并输入 Prompt 提交请求",
  6026. "input": "文本 Prompt, 参考图像",
  6027. "output": "生成后的图像",
  6028. "updated_time": 1776148993,
  6029. "status": "未接入"
  6030. },
  6031. {
  6032. "id": "tools/image_gen/google_genai_sdk",
  6033. "name": "Google GenAI SDK",
  6034. "version": ">=1.52.0",
  6035. "introduction": "Google 提供的生成式 AI 开发工具包,支持调用 Gemini 模型进行图像生成。",
  6036. "tutorial": "pip install -U \"google-genai>=1.52.0\"",
  6037. "input": "文本提示词",
  6038. "output": "图像、文本",
  6039. "updated_time": 1776075636,
  6040. "status": "未接入"
  6041. },
  6042. {
  6043. "id": "tools/image_gen/google_generative_ai_api",
  6044. "name": "Google Generative AI API",
  6045. "version": null,
  6046. "introduction": "Google 提供的生成式 AI 接口,支持配置生成 4K 高分辨率图像。",
  6047. "tutorial": "通过 ImageConfig 配置图像尺寸(如 4K)和纵横比,结合 GenerateContentConfig 调用。",
  6048. "input": "文本提示词及图像配置参数(尺寸、比例)",
  6049. "output": "1K/2K/4K 分辨率的生成图像",
  6050. "updated_time": 1776075741,
  6051. "status": "未接入"
  6052. },
  6053. {
  6054. "id": "tools/image_gen/google_try_it_on",
  6055. "name": "谷歌 Try It On",
  6056. "version": null,
  6057. "introduction": "谷歌推出的虚拟试衣产品",
  6058. "tutorial": "虚拟试衣",
  6059. "input": "服装图像",
  6060. "output": "试穿效果",
  6061. "updated_time": 1774858780,
  6062. "status": "未接入"
  6063. },
  6064. {
  6065. "id": "tools/image_gen/google_veo2_zhipu_qingying",
  6066. "name": "Google Veo2 / 智谱清影",
  6067. "version": null,
  6068. "introduction": "备选的视频生成模型",
  6069. "tutorial": "生成动态视频序列",
  6070. "input": "图片",
  6071. "output": "视频文件",
  6072. "updated_time": 1776066469,
  6073. "status": "未接入"
  6074. },
  6075. {
  6076. "id": "tools/image_gen/gpt_image",
  6077. "name": "GPT Image",
  6078. "version": "1.5",
  6079. "introduction": "支持统一生成和编辑工作流的 AI 图像工具",
  6080. "tutorial": "生成及编辑图像",
  6081. "input": "文本提示词/图像",
  6082. "output": "生成/编辑后的图像",
  6083. "updated_time": 1774901215,
  6084. "status": "未接入"
  6085. },
  6086. {
  6087. "id": "tools/image_gen/gpt_image_1_5",
  6088. "name": "GPT Image 1.5",
  6089. "version": "1.5",
  6090. "introduction": "AI 图像生成模型,排行榜第一,擅长统一生成与编辑工作流",
  6091. "tutorial": "统一生成 + 编辑工作流、精确编辑、细节保留",
  6092. "input": "文本提示词、编辑指令",
  6093. "output": "生成/编辑图像",
  6094. "updated_time": 1774901373,
  6095. "status": "未接入"
  6096. },
  6097. {
  6098. "id": "tools/image_gen/grok_imagine",
  6099. "name": "Grok Imagine",
  6100. "version": null,
  6101. "introduction": "纯图片生成工具,核心能力为图片生成",
  6102. "tutorial": "AI 图片生成工具调研",
  6103. "input": null,
  6104. "output": null,
  6105. "updated_time": 1775120184,
  6106. "status": "未接入"
  6107. },
  6108. {
  6109. "id": "tools/image_gen/haikei_app",
  6110. "name": "haikei.app",
  6111. "version": null,
  6112. "introduction": "多功能背景生成器,提供 15 种背景类型",
  6113. "tutorial": "浏览器访问,选择背景类型后调整参数生成",
  6114. "input": "参数配置(颜色、形状密度、复杂度等)",
  6115. "output": "SVG/PNG 图像文件",
  6116. "updated_time": 1774548157,
  6117. "status": "未接入"
  6118. },
  6119. {
  6120. "id": "tools/image_gen/hailuo_ai",
  6121. "name": "海螺 AI",
  6122. "version": null,
  6123. "introduction": "AI 生成/控制表情的工具",
  6124. "tutorial": "用于 AI 表情生成与控制",
  6125. "input": null,
  6126. "output": null,
  6127. "updated_time": 1775046020,
  6128. "status": "未接入"
  6129. },
  6130. {
  6131. "id": "tools/image_gen/heygen",
  6132. "name": "HeyGen",
  6133. "version": null,
  6134. "introduction": "适合企业培训的数字人视频生成工具",
  6135. "tutorial": "企业培训视频制作",
  6136. "input": "脚本/形象",
  6137. "output": "数字人视频",
  6138. "updated_time": 1775043087,
  6139. "status": "未接入"
  6140. },
  6141. {
  6142. "id": "tools/image_gen/heygen_avatar",
  6143. "name": "HeyGen Avatar 4",
  6144. "version": "4",
  6145. "introduction": "商业级说话头像生成工具,口型同步业界最佳",
  6146. "tutorial": "单张图片 + 音频 → HeyGen → 说话头像视频",
  6147. "input": "单张图片、音频",
  6148. "output": "说话头像视频",
  6149. "updated_time": 1775045841,
  6150. "status": "未接入"
  6151. },
  6152. {
  6153. "id": "tools/image_gen/higgsfield_ai",
  6154. "name": "higgsfield.ai",
  6155. "version": null,
  6156. "introduction": "AI 模型评测与生成平台",
  6157. "tutorial": "模型性能对比评测",
  6158. "input": "模型参数",
  6159. "output": "评测数据、生成结果",
  6160. "updated_time": 1775120499,
  6161. "status": "未接入"
  6162. },
  6163. {
  6164. "id": "tools/image_gen/higgsfield_ai_fashion_factory",
  6165. "name": "Higgsfield AI Fashion Factory",
  6166. "version": null,
  6167. "introduction": "多角度生成类工具,支持 12 角度或前后侧面一致性生成",
  6168. "tutorial": "12 角度生成",
  6169. "input": null,
  6170. "output": null,
  6171. "updated_time": 1774859537,
  6172. "status": "未接入"
  6173. },
  6174. {
  6175. "id": "tools/image_gen/higgsfield_soul",
  6176. "name": "Higgsfield Soul",
  6177. "version": null,
  6178. "introduction": "同时支持图片和视频生成的 AI 工具",
  6179. "tutorial": "生成图片或视频内容",
  6180. "input": null,
  6181. "output": "图片或视频",
  6182. "updated_time": 1775120122,
  6183. "status": "未接入"
  6184. },
  6185. {
  6186. "id": "tools/image_gen/higgsfield_soul_2",
  6187. "name": "Higgsfield Soul 2",
  6188. "version": "2",
  6189. "introduction": "AI 图片生成工具,专注于建筑/户外场景生成",
  6190. "tutorial": "用于户外场景/建筑可视化相关的 AI 图片生成调研",
  6191. "input": null,
  6192. "output": null,
  6193. "updated_time": 1775120551,
  6194. "status": "未接入"
  6195. },
  6196. {
  6197. "id": "tools/image_gen/holopix",
  6198. "name": "Holopix",
  6199. "version": null,
  6200. "introduction": "AI 角色生成平台",
  6201. "tutorial": "选择模型,输入提示词生成",
  6202. "input": "提示词、模型选择",
  6203. "output": "生成图像",
  6204. "updated_time": 1776351568,
  6205. "status": "未接入"
  6206. },
  6207. {
  6208. "id": "tools/image_gen/holopix_ai",
  6209. "name": "Holopix AI",
  6210. "version": null,
  6211. "introduction": "第三方 AI 图像生成平台,提供一键生成服务",
  6212. "tutorial": "上传素材或输入描述,选择模型与参数执行生成",
  6213. "input": "素材,描述",
  6214. "output": "生成图像",
  6215. "updated_time": 1776147655,
  6216. "status": "未接入"
  6217. },
  6218. {
  6219. "id": "tools/image_gen/huiwa",
  6220. "name": "绘蛙",
  6221. "version": null,
  6222. "introduction": "AI 电商营销素材生成工具",
  6223. "tutorial": "商品一键换装及场景生成",
  6224. "input": "商品图",
  6225. "output": "模特展示图",
  6226. "updated_time": 1774858577,
  6227. "status": "未接入"
  6228. },
  6229. {
  6230. "id": "tools/image_gen/huiwa_ai",
  6231. "name": "绘蛙 AI",
  6232. "version": null,
  6233. "introduction": "电商 AI 作图工具,优化商品展示",
  6234. "tutorial": "生成商品营销图,提升点击率",
  6235. "input": "商品图",
  6236. "output": "营销展示图",
  6237. "updated_time": 1774856089,
  6238. "status": "已使用"
  6239. },
  6240. {
  6241. "id": "tools/image_gen/hunyuan_3d",
  6242. "name": "Hunyuan 3D",
  6243. "version": null,
  6244. "introduction": "3D 结构生成工具,支持从图片生成 3D 模型",
  6245. "tutorial": "接收 Nano Banana Pro 生成的图片转化为 3D 结构",
  6246. "input": "图片",
  6247. "output": "3D 结构/模型",
  6248. "updated_time": 1774860137,
  6249. "status": "未接入"
  6250. },
  6251. {
  6252. "id": "tools/image_gen/hunyuan_image",
  6253. "name": "Hunyuan Image",
  6254. "version": "3.0",
  6255. "introduction": "腾讯混元图像生成模型,参与对比测试",
  6256. "tutorial": "图像生成",
  6257. "input": "文本提示",
  6258. "output": "生成图像",
  6259. "updated_time": 1774845137,
  6260. "status": "未接入"
  6261. },
  6262. {
  6263. "id": "tools/image_gen/ideogram",
  6264. "name": "Ideogram",
  6265. "version": null,
  6266. "introduction": "AI 图像生成平台",
  6267. "tutorial": "文本到图像生成",
  6268. "input": "文本提示词",
  6269. "output": "生成图像",
  6270. "updated_time": 1775120499,
  6271. "status": "未接入"
  6272. },
  6273. {
  6274. "id": "tools/image_gen/imagefx",
  6275. "name": "ImageFX",
  6276. "version": null,
  6277. "introduction": "Google 推出的无限次免费 AI 图像生成工具",
  6278. "tutorial": "使用精准提示词生成无背景图片",
  6279. "input": "提示词",
  6280. "output": "原始素材图",
  6281. "updated_time": 1776066469,
  6282. "status": "未接入"
  6283. },
  6284. {
  6285. "id": "tools/image_gen/imagineart",
  6286. "name": "ImagineArt",
  6287. "version": null,
  6288. "introduction": "提供免费开源工具使用的 AI 艺术平台",
  6289. "tutorial": "模型托管与使用",
  6290. "input": "用户指令",
  6291. "output": "生成内容",
  6292. "updated_time": 1775120122,
  6293. "status": "未接入"
  6294. },
  6295. {
  6296. "id": "tools/image_gen/imagine_art",
  6297. "name": "Imagine.Art",
  6298. "version": null,
  6299. "introduction": "节点式工作流 AI 绘画平台",
  6300. "tutorial": "搭建节点工作流生成多场景",
  6301. "input": "工作流配置",
  6302. "output": "生成图像",
  6303. "updated_time": 1776148382,
  6304. "status": "未接入"
  6305. },
  6306. {
  6307. "id": "tools/image_gen/jimeng",
  6308. "name": "即梦",
  6309. "version": null,
  6310. "introduction": "专用 AI 工具,支持预设风格一键转换",
  6311. "tutorial": "一键转换风格",
  6312. "input": "图像/文本",
  6313. "output": "风格化图像",
  6314. "updated_time": 1776152687,
  6315. "status": "未接入"
  6316. },
  6317. {
  6318. "id": "tools/image_gen/jimeng_ai",
  6319. "name": "即梦 AI",
  6320. "version": null,
  6321. "introduction": "支持图生视频的 AI 创作平台",
  6322. "tutorial": "上传图片作为参考生成动态视频序列",
  6323. "input": "图片",
  6324. "output": "视频文件 (MP4)",
  6325. "updated_time": 1776066469,
  6326. "status": "未接入"
  6327. },
  6328. {
  6329. "id": "tools/image_gen/keling",
  6330. "name": "可灵",
  6331. "version": null,
  6332. "introduction": "通用 AI 生成工具",
  6333. "tutorial": "简单服装或测试款生成",
  6334. "input": "提示词、参考图",
  6335. "output": "生成图像",
  6336. "updated_time": 1775566027,
  6337. "status": "未接入"
  6338. },
  6339. {
  6340. "id": "tools/image_gen/kling_ai",
  6341. "name": "可灵 AI",
  6342. "version": null,
  6343. "introduction": "支持 API 调用与批量生成的 AI 视频与图像模型",
  6344. "tutorial": "中小电商批量生成、品牌电商 API 调用",
  6345. "input": "文本/图像",
  6346. "output": "图像/视频",
  6347. "updated_time": 1775119883,
  6348. "status": "available"
  6349. },
  6350. {
  6351. "id": "tools/image_gen/kling_ai_try_on",
  6352. "name": "可灵 AI 试衣",
  6353. "version": null,
  6354. "introduction": "可灵 AI 推出的虚拟试衣工具,支持将服装图合成到模特图生成静态或动态效果",
  6355. "tutorial": "上传模特图和服装图,点击生成试穿,支持后期局部重绘和风格迁移",
  6356. "input": "模特图(正面清晰人像)、服装图(平铺/挂拍)",
  6357. "output": "高清静态图(1080P)、3 秒动态换装视频",
  6358. "updated_time": 1774855871,
  6359. "status": "未接入"
  6360. },
  6361. {
  6362. "id": "tools/image_gen/kling_ai_video",
  6363. "name": "Kling AI Video",
  6364. "version": "1.6",
  6365. "introduction": "视频生成模型,支持图像转视频",
  6366. "tutorial": "将合成图像输出为动画视频",
  6367. "input": "图像序列或单图",
  6368. "output": "视频文件",
  6369. "updated_time": 1776150256,
  6370. "status": "未接入"
  6371. },
  6372. {
  6373. "id": "tools/image_gen/krea_ai",
  6374. "name": "Krea AI",
  6375. "version": null,
  6376. "introduction": "实时 AI 变换引擎,支持屏幕捕捉实时风格化",
  6377. "tutorial": "接收屏幕图像流并实时生成 AI 变换效果",
  6378. "input": "屏幕图像流/静态图像",
  6379. "output": "实时 AI 风格化图像",
  6380. "updated_time": 1775129850,
  6381. "status": "未接入"
  6382. },
  6383. {
  6384. "id": "tools/image_gen/linkfoxai",
  6385. "name": "LinkFoxAI",
  6386. "version": null,
  6387. "introduction": "AI 生图工具,适合小商家快速上手,成本可控。",
  6388. "tutorial": "平台化操作。",
  6389. "input": "文本提示词",
  6390. "output": "生成图像",
  6391. "updated_time": 1774782284,
  6392. "status": "未接入"
  6393. },
  6394. {
  6395. "id": "tools/image_gen/lovart",
  6396. "name": "Lovart",
  6397. "version": "Nano Banana",
  6398. "introduction": "一句话生成,平铺图直接转模特图",
  6399. "tutorial": "快速出图",
  6400. "input": "平铺图/文字",
  6401. "output": "模特展示图",
  6402. "updated_time": 1775131801,
  6403. "status": "未接入"
  6404. },
  6405. {
  6406. "id": "tools/image_gen/luma_uni_1",
  6407. "name": "Luma Uni-1",
  6408. "version": "Uni-1",
  6409. "introduction": "多种风格场景下有详细对比,细节纹理丰富",
  6410. "tutorial": "风格化图像生成",
  6411. "input": "文本",
  6412. "output": "图像",
  6413. "updated_time": 1774571691,
  6414. "status": "未接入"
  6415. },
  6416. {
  6417. "id": "tools/image_gen/mei_tu_she_ji_shi",
  6418. "name": "美图设计室",
  6419. "version": null,
  6420. "introduction": "美图推出的在线 AI 设计工具,支持海报、logo 等设计",
  6421. "tutorial": "选择模板或使用 AI 功能生成设计素材",
  6422. "input": "文本/图片",
  6423. "output": "设计图像",
  6424. "updated_time": 1774952549,
  6425. "status": "未接入"
  6426. },
  6427. {
  6428. "id": "tools/image_gen/meshgradient_in",
  6429. "name": "meshgradient.in",
  6430. "version": null,
  6431. "introduction": "在线渐变背景生成器,快速创建弥散渐变背景",
  6432. "tutorial": "浏览器访问,调整参数后下载",
  6433. "input": "颜色、模糊度、噪点等参数",
  6434. "output": "PNG/SVG 图像文件",
  6435. "updated_time": 1774548112,
  6436. "status": "未接入"
  6437. },
  6438. {
  6439. "id": "tools/image_gen/meta_ai",
  6440. "name": "Meta AI",
  6441. "version": null,
  6442. "introduction": "纯图片生成工具,核心能力为图片生成",
  6443. "tutorial": "AI 图片生成工具调研",
  6444. "input": null,
  6445. "output": null,
  6446. "updated_time": 1775117887,
  6447. "status": "未接入"
  6448. },
  6449. {
  6450. "id": "tools/image_gen/midjourney",
  6451. "name": "Midjourney",
  6452. "version": "v8",
  6453. "introduction": "Midjourney 实验室发布的最新 AI 图像生成模型,支持原生 2K 分辨率、5 倍速度提升及改进的文本渲染",
  6454. "tutorial": "通过 Discord 命令行或 Web 平台输入提示词生成图像",
  6455. "input": "文本提示词、参考图像",
  6456. "output": "2048px 高分辨率图像",
  6457. "updated_time": 1776075191,
  6458. "status": "未接入"
  6459. },
  6460. {
  6461. "id": "tools/image_gen/midjourney_v7",
  6462. "name": "Midjourney V7",
  6463. "version": "V7",
  6464. "introduction": "擅长艺术创作的 AI 绘画平台",
  6465. "tutorial": "文本生成图像",
  6466. "input": "文本提示",
  6467. "output": "1024×1024 分辨率图像",
  6468. "updated_time": 1776077103,
  6469. "status": "未接入"
  6470. },
  6471. {
  6472. "id": "tools/image_gen/midjourney_v8",
  6473. "name": "Midjourney_v8",
  6474. "version": "v8",
  6475. "introduction": "AI 绘画平台 Midjourney 的版本",
  6476. "tutorial": "通过 Discord 命令生成图像",
  6477. "input": "文本提示词",
  6478. "output": "生成图像",
  6479. "updated_time": 1776083643,
  6480. "status": "未接入"
  6481. },
  6482. {
  6483. "id": "tools/image_gen/mindstudio",
  6484. "name": "MindStudio",
  6485. "version": null,
  6486. "introduction": "提供免费试用的 AI 创作平台",
  6487. "tutorial": "平台内进行模型调用或创作",
  6488. "input": "文本提示词",
  6489. "output": "生成的图像",
  6490. "updated_time": 1776110895,
  6491. "status": "未接入"
  6492. },
  6493. {
  6494. "id": "tools/image_gen/mn_vton",
  6495. "name": "MN-VTON",
  6496. "version": null,
  6497. "introduction": "虚拟试穿类工具,核心功能是服装更换",
  6498. "tutorial": "服装更换",
  6499. "input": null,
  6500. "output": null,
  6501. "updated_time": 1774859537,
  6502. "status": "未接入"
  6503. },
  6504. {
  6505. "id": "tools/image_gen/modelscope",
  6506. "name": "ModelScope",
  6507. "version": null,
  6508. "introduction": "模型服务平台,提供多种 AI 模型的访问与部署",
  6509. "tutorial": "平台访问或模型部署",
  6510. "input": "模型请求",
  6511. "output": "模型结果",
  6512. "updated_time": 1775032461,
  6513. "status": "未接入"
  6514. },
  6515. {
  6516. "id": "tools/image_gen/ootdiffusion",
  6517. "name": "OOTDiffusion",
  6518. "version": null,
  6519. "introduction": "虚拟试穿类开源工具,核心功能是服装更换,社区活跃",
  6520. "tutorial": "服装更换",
  6521. "input": null,
  6522. "output": null,
  6523. "updated_time": 1774859537,
  6524. "status": "未接入"
  6525. },
  6526. {
  6527. "id": "tools/image_gen/openart_character_builder",
  6528. "name": "OpenArt AI Character Builder",
  6529. "version": null,
  6530. "introduction": "通过 UI 选择锁定角色特征的基础图像生成工具",
  6531. "tutorial": "选择风格、性别、种族、年龄生成角色基础图像",
  6532. "input": "风格、性别、种族、年龄选择",
  6533. "output": "锁定角色 DNA 的基础图像",
  6534. "updated_time": 1775734310,
  6535. "status": "未接入"
  6536. },
  6537. {
  6538. "id": "tools/image_gen/perplexity_virtual_try_on",
  6539. "name": "Perplexity 虚拟试衣",
  6540. "version": null,
  6541. "introduction": "虚拟试衣工具",
  6542. "tutorial": "虚拟试衣",
  6543. "input": null,
  6544. "output": null,
  6545. "updated_time": 1774858780,
  6546. "status": "未接入"
  6547. },
  6548. {
  6549. "id": "tools/image_gen/qianwen_ai",
  6550. "name": "千问 AI",
  6551. "version": null,
  6552. "introduction": "AI 穿搭生成工具",
  6553. "tutorial": "AI 穿搭生成",
  6554. "input": null,
  6555. "output": null,
  6556. "updated_time": 1775118191,
  6557. "status": "未接入"
  6558. },
  6559. {
  6560. "id": "tools/image_gen/quark_ai",
  6561. "name": "夸克 AI",
  6562. "version": null,
  6563. "introduction": "高赞帖子中提到的 AI 工具,包含具体工具名称和核心功能。",
  6564. "tutorial": "用于 AI 生图工具调研中的工具识别与统计。",
  6565. "input": null,
  6566. "output": null,
  6567. "updated_time": 1775118191,
  6568. "status": "未接入"
  6569. },
  6570. {
  6571. "id": "tools/image_gen/qwen_image",
  6572. "name": "Qwen-Image",
  6573. "version": null,
  6574. "introduction": "通义千问系列图像生成模型,参与对比测试",
  6575. "tutorial": "图像生成",
  6576. "input": "文本提示",
  6577. "output": "生成图像",
  6578. "updated_time": 1774845137,
  6579. "status": "未接入"
  6580. },
  6581. {
  6582. "id": "tools/image_gen/reeve",
  6583. "name": "Reeve",
  6584. "version": null,
  6585. "introduction": "AI 图像生成工具",
  6586. "tutorial": "通过文本提示词生成基础 AI 人像",
  6587. "input": "文本提示词",
  6588. "output": "AI 生成图像",
  6589. "updated_time": 1776135258,
  6590. "status": "未接入"
  6591. },
  6592. {
  6593. "id": "tools/image_gen/run_comfy",
  6594. "name": "RunComfy",
  6595. "version": null,
  6596. "introduction": "基于 ComfyUI 的云端图像生成运行工具",
  6597. "tutorial": "用于执行 AI 图像生成工作流,可能显示暂时不可用",
  6598. "input": "工作流配置及素材",
  6599. "output": "生成结果",
  6600. "updated_time": 1775734959,
  6601. "status": "未接入"
  6602. },
  6603. {
  6604. "id": "tools/image_gen/seedance",
  6605. "name": "Seedance",
  6606. "version": "2.0",
  6607. "introduction": "AI 视频合成引擎,支持图生视频",
  6608. "tutorial": "用于视频生成与图层合成",
  6609. "input": "图像/提示词",
  6610. "output": "视频",
  6611. "updated_time": 1776151469,
  6612. "status": "未接入"
  6613. },
  6614. {
  6615. "id": "tools/image_gen/seendance",
  6616. "name": "Seendance 2.0",
  6617. "version": "2.0",
  6618. "introduction": "视频生成模型备选",
  6619. "tutorial": "视频生成",
  6620. "input": "风格帧 + 原视频",
  6621. "output": "AI 生成的风格化视频片段",
  6622. "updated_time": 1775131801,
  6623. "status": "未接入"
  6624. },
  6625. {
  6626. "id": "tools/image_gen/sellerpic",
  6627. "name": "SellerPic",
  6628. "version": null,
  6629. "introduction": "AI 电商图片生成工具,用于优化产品展示图",
  6630. "tutorial": "上传产品图生成营销素材",
  6631. "input": "产品图片",
  6632. "output": "优化后的产品图片",
  6633. "updated_time": 1774902954,
  6634. "status": "未接入"
  6635. },
  6636. {
  6637. "id": "tools/image_gen/stable_diffusion",
  6638. "name": "Stable Diffusion",
  6639. "version": "3",
  6640. "introduction": "开源 AI 图像生成模型,图像质量评分 8.0/10,支持免费本地部署。",
  6641. "tutorial": "免费本地部署,生成速度取决于硬件。",
  6642. "input": "文本提示词",
  6643. "output": "图像",
  6644. "updated_time": 1776107813,
  6645. "status": "未接入"
  6646. },
  6647. {
  6648. "id": "tools/image_gen/stable_diffusion_3",
  6649. "name": "Stable Diffusion 3",
  6650. "version": "3",
  6651. "introduction": "开源 AI 图像生成模型,支持本地部署,免费使用,分辨率取决于配置",
  6652. "tutorial": "本地部署或通过 API 调用,输入提示词生成",
  6653. "input": "文本提示词",
  6654. "output": "图像(分辨率取决于配置)",
  6655. "updated_time": 1776076926,
  6656. "status": "未接入"
  6657. },
  6658. {
  6659. "id": "tools/image_gen/stable_diffusion_comfyui",
  6660. "name": "Stable Diffusion / ComfyUI",
  6661. "version": null,
  6662. "introduction": "本地部署的 AI 生图模型及工作流界面",
  6663. "tutorial": "输入提示词与种子值生成固定风格的无背景图片",
  6664. "input": "提示词 + 种子值",
  6665. "output": "原始素材图 (PNG)",
  6666. "updated_time": 1776066469,
  6667. "status": "未接入"
  6668. },
  6669. {
  6670. "id": "tools/image_gen/stable_diffusion_webui",
  6671. "name": "Stable Diffusion WebUI",
  6672. "version": null,
  6673. "introduction": "表单式 AI 绘画用户界面,与 ComfyUI 对比",
  6674. "tutorial": "通过表单配置进行 AI 图像生成",
  6675. "input": "文本提示、参数配置",
  6676. "output": "生成的图像",
  6677. "updated_time": 1776074365,
  6678. "status": "未接入"
  6679. },
  6680. {
  6681. "id": "tools/image_gen/tencent_yuanbao",
  6682. "name": "腾讯元宝",
  6683. "version": null,
  6684. "introduction": "高赞帖子中提到的 AI 工具,包含具体工具名称和核心功能。",
  6685. "tutorial": "用于 AI 生图工具调研中的工具识别与统计。",
  6686. "input": null,
  6687. "output": null,
  6688. "updated_time": 1775118191,
  6689. "status": "未接入"
  6690. },
  6691. {
  6692. "id": "tools/image_gen/uni_1",
  6693. "name": "Uni-1",
  6694. "version": null,
  6695. "introduction": "多角度生成类工具,支持多角度一致性生成",
  6696. "tutorial": "多角度一致性生成",
  6697. "input": null,
  6698. "output": null,
  6699. "updated_time": 1775034880,
  6700. "status": "未接入"
  6701. },
  6702. {
  6703. "id": "tools/image_gen/veo",
  6704. "name": "Veo 3.1",
  6705. "version": "3.1",
  6706. "introduction": "AI 视频生成模型,支持光照控制",
  6707. "tutorial": "编写光照提示词并配置渲染参数生成视频",
  6708. "input": "文本提示词",
  6709. "output": "视频",
  6710. "updated_time": 1776149431,
  6711. "status": "未接入"
  6712. },
  6713. {
  6714. "id": "tools/image_gen/webui",
  6715. "name": "WebUI",
  6716. "version": null,
  6717. "introduction": "传统的 Stable Diffusion 网页用户界面",
  6718. "tutorial": "通过表单参数配置进行图像生成",
  6719. "input": "文本提示、参数配置",
  6720. "output": "生成图像",
  6721. "updated_time": 1774570091,
  6722. "status": "未接入"
  6723. },
  6724. {
  6725. "id": "tools/image_gen/xingliu_platform",
  6726. "name": "星流平台",
  6727. "version": null,
  6728. "introduction": "无需梯子的快速 AI 生成平台",
  6729. "tutorial": "风格转绘备选方案",
  6730. "input": "实拍关键画面截图",
  6731. "output": "风格参考帧",
  6732. "updated_time": 1775131801,
  6733. "status": "未接入"
  6734. },
  6735. {
  6736. "id": "tools/image_gen/yiketu",
  6737. "name": "易可图",
  6738. "version": null,
  6739. "introduction": "垂直领域的 AI 穿搭工具,功能更垂直",
  6740. "tutorial": "特定场景下的穿搭生成与分析",
  6741. "input": "穿搭需求/用户图像",
  6742. "output": "穿搭效果图像",
  6743. "updated_time": 1774855718,
  6744. "status": "未接入"
  6745. },
  6746. {
  6747. "id": "tools/image_process/adobe_camera_raw",
  6748. "name": "Adobe Camera Raw",
  6749. "version": null,
  6750. "introduction": "Photoshop 内置的 RAW 处理插件,提供完整的调色面板系统",
  6751. "tutorial": "在 PS 中打开 RAW 文件自动进入 ACR,通过基本面板、HSL、曲线等进行调色后返回 PS",
  6752. "input": "RAW 格式图像或照片",
  6753. "output": "调整后的图像数据",
  6754. "updated_time": 1774518703,
  6755. "status": "未接入"
  6756. },
  6757. {
  6758. "id": "tools/image_process/adobe_color",
  6759. "name": "Adobe Color",
  6760. "version": null,
  6761. "introduction": "专业级在线配色工具,支持多种配色规则和主题色提取",
  6762. "tutorial": "浏览器访问,选择配色规则或上传图片提取配色",
  6763. "input": "颜色参数或图片",
  6764. "output": "配色方案文件(ASE、PNG)",
  6765. "updated_time": 1774548500,
  6766. "status": "未接入"
  6767. },
  6768. {
  6769. "id": "tools/image_process/adobe_lightroom",
  6770. "name": "Adobe Lightroom",
  6771. "version": null,
  6772. "introduction": "专业照片编辑软件,提供完整的 RAW 处理流程和精细色彩控制",
  6773. "tutorial": "导入照片→基本面板调节色温色调→HSL 面板精细调整→颜色分级添加风格→导出或使用预设批量处理",
  6774. "input": "RAW 文件、照片图像",
  6775. "output": "编辑后的图像文件",
  6776. "updated_time": 1774550297,
  6777. "status": "未接入"
  6778. },
  6779. {
  6780. "id": "tools/image_process/adobe_photoshop",
  6781. "name": "Adobe Photoshop",
  6782. "version": null,
  6783. "introduction": "专业图像编辑与后期处理软件",
  6784. "tutorial": "色彩调整、对比度调整、局部修饰、饱和度控制",
  6785. "input": "图像文件",
  6786. "output": "处理后的图像文件",
  6787. "updated_time": 1775127828,
  6788. "status": "未接入"
  6789. },
  6790. {
  6791. "id": "tools/image_process/advanced_live_portrait",
  6792. "name": "Advanced Live Portrait",
  6793. "version": null,
  6794. "introduction": "图片表情控制工具",
  6795. "tutorial": "用于调整或生成带有特定表情的人物肖像",
  6796. "input": "肖像图片",
  6797. "output": "表情调整后的图片",
  6798. "updated_time": 1775036199,
  6799. "status": "未接入"
  6800. },
  6801. {
  6802. "id": "tools/image_process/affinity_photo",
  6803. "name": "Affinity Photo",
  6804. "version": null,
  6805. "introduction": "专业图像处理软件,用于准备输入图像与遮罩",
  6806. "tutorial": "准备输入图像与遮罩",
  6807. "input": "图像",
  6808. "output": "图像/遮罩",
  6809. "updated_time": 1776149431,
  6810. "status": "未接入"
  6811. },
  6812. {
  6813. "id": "tools/image_process/after_effects",
  6814. "name": "After Effects",
  6815. "version": null,
  6816. "introduction": "视觉特效和动态图形软件,用于后期处理",
  6817. "tutorial": "多版本整合,细节调整",
  6818. "input": "AI 生成结果",
  6819. "output": "最终风格化作品",
  6820. "updated_time": 1775131801,
  6821. "status": "未接入"
  6822. },
  6823. {
  6824. "id": "tools/image_process/ai_image_enhancement_tool",
  6825. "name": "AI 图像增强工具",
  6826. "version": null,
  6827. "introduction": "通用 AI 图像增强模块,用于提升图像分辨率与细节",
  6828. "tutorial": "肖像增强工作流中的第一步处理",
  6829. "input": "参考图像",
  6830. "output": "增强后的图像",
  6831. "updated_time": 1776150387,
  6832. "status": "未接入"
  6833. },
  6834. {
  6835. "id": "tools/image_process/capture_one",
  6836. "name": "Capture One",
  6837. "version": null,
  6838. "introduction": "专业照片软件,提供专业色温/色调滑块、Color Grading 色轮、HSL 高级编辑等功能",
  6839. "tutorial": "导入 RAW 或图片文件后使用 Color 工具进行精细调色",
  6840. "input": "RAW 或图片文件",
  6841. "output": "调色后的图片",
  6842. "updated_time": 1774519151,
  6843. "status": "未接入"
  6844. },
  6845. {
  6846. "id": "tools/image_process/davinci_resolve_studio",
  6847. "name": "DaVinci Resolve Studio",
  6848. "version": null,
  6849. "introduction": "专业视频后期制作软件,含 AI 驱动的专业调色模块",
  6850. "tutorial": "利用 Auto Color、Color Matching 及 Magic Mask 实现全局或局部精准色温调节",
  6851. "input": "视频或图像序列",
  6852. "output": "调色后的视频或图像",
  6853. "updated_time": 1774551089,
  6854. "status": "未接入"
  6855. },
  6856. {
  6857. "id": "tools/image_process/enhancor",
  6858. "name": "Enhancor",
  6859. "version": null,
  6860. "introduction": "独立图像增强处理平台",
  6861. "tutorial": "图像画质增强与处理",
  6862. "input": "图像文件",
  6863. "output": "增强后的图像",
  6864. "updated_time": 1776149668,
  6865. "status": "未接入"
  6866. },
  6867. {
  6868. "id": "tools/image_process/fotor",
  6869. "name": "Fotor",
  6870. "version": null,
  6871. "introduction": "在线编辑工具,提供 AI 滤镜风格化功能,可快速调整照片色调",
  6872. "tutorial": "网页端上传照片,选择滤镜或手动调整色调参数",
  6873. "input": "照片/图像",
  6874. "output": "编辑后的图像",
  6875. "updated_time": 1774519845,
  6876. "status": "未接入"
  6877. },
  6878. {
  6879. "id": "tools/image_process/gfpgan",
  6880. "name": "GFPGAN",
  6881. "version": null,
  6882. "introduction": "人脸修复模型",
  6883. "tutorial": "在后处理阶段修复生成的人脸细节",
  6884. "input": "生成图像",
  6885. "output": "修复后图像",
  6886. "updated_time": 1774855988,
  6887. "status": "未接入"
  6888. },
  6889. {
  6890. "id": "tools/image_process/image_downloader",
  6891. "name": "image_downloader",
  6892. "version": null,
  6893. "introduction": "生成结果下载工具,将 CDN URL 图片保存至本地",
  6894. "tutorial": "image_downloader(url=\"生成结果 URL\", save_path=\"指定输出路径\")",
  6895. "input": "生成结果 URL, 指定输出路径",
  6896. "output": "本地文件",
  6897. "updated_time": 1775733239,
  6898. "status": "active"
  6899. },
  6900. {
  6901. "id": "tools/image_process/jianying",
  6902. "name": "剪映",
  6903. "version": null,
  6904. "introduction": "视频编辑工具,配合 AI 生成内容",
  6905. "tutorial": "配合 AI 工具生成穿搭视频",
  6906. "input": "视频素材",
  6907. "output": "编辑后的视频",
  6908. "updated_time": 1774858577,
  6909. "status": "available"
  6910. },
  6911. {
  6912. "id": "tools/image_process/koukoutu_com",
  6913. "name": "koukoutu.com",
  6914. "version": null,
  6915. "introduction": "在线批量智能抠图工具",
  6916. "tutorial": "全自动移除图片背景",
  6917. "input": "图片序列",
  6918. "output": "透明背景图片序列",
  6919. "updated_time": 1776066469,
  6920. "status": "未接入"
  6921. },
  6922. {
  6923. "id": "tools/image_process/kumo_color_camera",
  6924. "name": "KUMO 仿色相机",
  6925. "version": null,
  6926. "introduction": "AI 仿色相机 App,支持导入参考图模仿滤镜,iOS/安卓可用",
  6927. "tutorial": "导入照片→导入参考图或选择预设→AI 自动仿色→调节仿色程度→批量应用到其他照片",
  6928. "input": "照片、参考图或预设",
  6929. "output": "调色后的照片",
  6930. "updated_time": 1774519493,
  6931. "status": "未接入"
  6932. },
  6933. {
  6934. "id": "tools/image_process/layoutparser",
  6935. "name": "layoutparser",
  6936. "version": null,
  6937. "introduction": "开源布局分析库,支持文档区域检测、布局结构化解析、导出为 JSON/XML 格式",
  6938. "tutorial": "Python 库,通过 detectron2 模型检测文档中的文本块、表格、图片等区域",
  6939. "input": "文档图像或 PDF 文件",
  6940. "output": "JSON/XML 格式的区域坐标与类型数据",
  6941. "updated_time": 1774499701,
  6942. "status": "未接入"
  6943. },
  6944. {
  6945. "id": "tools/image_process/luminar_neo",
  6946. "name": "Luminar Neo",
  6947. "version": null,
  6948. "introduction": "专业 AI 照片编辑软件,提供智能色调、光影及色彩迁移控制",
  6949. "tutorial": "使用 Accent AI、Color Transfer、Relight AI 等功能进行整体或局部色温色调调节",
  6950. "input": "原始图像文件",
  6951. "output": "调色后的图像文件",
  6952. "updated_time": 1774549513,
  6953. "status": "未接入"
  6954. },
  6955. {
  6956. "id": "tools/image_process/magnific",
  6957. "name": "Magnific",
  6958. "version": null,
  6959. "introduction": "AI 驱动的图片高清放大与细节增强工具",
  6960. "tutorial": "上传低分辨率图片进行 upscale 和细节重绘",
  6961. "input": "图像",
  6962. "output": "高清图像",
  6963. "updated_time": 1775119320,
  6964. "status": "未接入"
  6965. },
  6966. {
  6967. "id": "tools/image_process/magnific_ai",
  6968. "name": "Magnific AI",
  6969. "version": null,
  6970. "introduction": "AI 驱动的图像超分辨率、风格转换及细节增强平台",
  6971. "tutorial": "输入图像并通过 Creativity、HDR、Resemblance 等参数控制风格转换或超分辨率效果",
  6972. "input": "任意图像、手绘草图或艺术品图像",
  6973. "output": "风格化图像、高细节真实感图像或高分辨率艺术品",
  6974. "updated_time": 1775127941,
  6975. "status": "未接入"
  6976. },
  6977. {
  6978. "id": "tools/image_process/openart",
  6979. "name": "OpenArt",
  6980. "version": null,
  6981. "introduction": "AI 图像放大与处理平台",
  6982. "tutorial": "高分辨率放大",
  6983. "input": "低分辨率图像",
  6984. "output": "高分辨率图像",
  6985. "updated_time": 1776148587,
  6986. "status": "未接入"
  6987. },
  6988. {
  6989. "id": "tools/image_process/opencv",
  6990. "name": "OpenCV",
  6991. "version": null,
  6992. "introduction": "开源计算机视觉库,提供多种图像处理算法与函数。",
  6993. "tutorial": "使用 Canny 算法生成边缘检测图。",
  6994. "input": "原始图像",
  6995. "output": "边缘图(Canny Map)",
  6996. "updated_time": 1775616409,
  6997. "status": "未接入"
  6998. },
  6999. {
  7000. "id": "tools/image_process/photoroom",
  7001. "name": "Photoroom",
  7002. "version": null,
  7003. "introduction": "AI 背景移除与图像编辑工具",
  7004. "tutorial": "自动移除背景、生成商品图",
  7005. "input": null,
  7006. "output": null,
  7007. "updated_time": 1774903729,
  7008. "status": "未接入"
  7009. },
  7010. {
  7011. "id": "tools/image_process/photoshop",
  7012. "name": "PS",
  7013. "version": null,
  7014. "introduction": "图像处理软件,用于后期合成",
  7015. "tutorial": "后期合成",
  7016. "input": "图像",
  7017. "output": "图像",
  7018. "updated_time": 1775565163,
  7019. "status": "未接入"
  7020. },
  7021. {
  7022. "id": "tools/image_process/photoshop_ai",
  7023. "name": "Photoshop AI",
  7024. "version": null,
  7025. "introduction": "后期微调",
  7026. "tutorial": "后期微调",
  7027. "input": "图像",
  7028. "output": "图像",
  7029. "updated_time": 1775119883,
  7030. "status": "未接入"
  7031. },
  7032. {
  7033. "id": "tools/image_process/pillow",
  7034. "name": "Pillow",
  7035. "version": null,
  7036. "introduction": "Python 图像处理库,用于打开、操作和保存多种图像文件格式。",
  7037. "tutorial": "pip install Pillow",
  7038. "input": "图像文件/对象",
  7039. "output": "处理后的图像",
  7040. "updated_time": 1776075636,
  7041. "status": "未接入"
  7042. },
  7043. {
  7044. "id": "tools/image_process/portrait_upscaler",
  7045. "name": "Portrait Upscaler",
  7046. "version": null,
  7047. "introduction": "专门用于人像放大的工具",
  7048. "tutorial": "放大图像至海报级别",
  7049. "input": "低分辨率人像",
  7050. "output": "高分辨率人像",
  7051. "updated_time": 1776353762,
  7052. "status": "未接入"
  7053. },
  7054. {
  7055. "id": "tools/image_process/procreate",
  7056. "name": "Procreate",
  7057. "version": null,
  7058. "introduction": "iPad 绘图应用,支持纹理工具叠加",
  7059. "tutorial": "结合纹理工具进行叠加合成",
  7060. "input": "画布/纹理",
  7061. "output": "合成图像",
  7062. "updated_time": 1776151469,
  7063. "status": "未接入"
  7064. },
  7065. {
  7066. "id": "tools/image_process/python_pillow",
  7067. "name": "Python Pillow",
  7068. "version": null,
  7069. "introduction": "Python 图像处理库,提供饱和度和对比度调整功能",
  7070. "tutorial": "Python 代码调用,使用 ImageEnhance.Color 和 ImageEnhance.Contrast 类",
  7071. "input": "图片文件",
  7072. "output": "处理后的图片文件",
  7073. "updated_time": 1774549204,
  7074. "status": "未接入"
  7075. },
  7076. {
  7077. "id": "tools/image_process/realesrgan",
  7078. "name": "RealESRGAN",
  7079. "version": null,
  7080. "introduction": "基于 GAN 的图像超分辨率工具",
  7081. "tutorial": "图像放大和细节增强",
  7082. "input": "低分辨率图像",
  7083. "output": "高分辨率图像",
  7084. "updated_time": 1775735529,
  7085. "status": "未接入"
  7086. },
  7087. {
  7088. "id": "tools/image_process/rembg",
  7089. "name": "rembg",
  7090. "version": null,
  7091. "introduction": "背景移除工具库",
  7092. "tutorial": "主体抠图",
  7093. "input": "图像",
  7094. "output": "透明背景图像",
  7095. "updated_time": 1776371225,
  7096. "status": "未接入"
  7097. },
  7098. {
  7099. "id": "tools/image_process/rife",
  7100. "name": "RIFE",
  7101. "version": null,
  7102. "introduction": "实时中间帧插值模型",
  7103. "tutorial": "帧插值使动画流畅",
  7104. "input": "视频帧序列",
  7105. "output": "插值后的视频帧",
  7106. "updated_time": 1776076004,
  7107. "status": "未接入"
  7108. },
  7109. {
  7110. "id": "tools/image_process/snapseed",
  7111. "name": "Snapseed",
  7112. "version": null,
  7113. "introduction": "Google 开发的专业手机图片编辑应用,提供多种滤镜和调整工具",
  7114. "tutorial": "通过内置滤镜、画笔蒙版等功能对照片进行局部或整体后期处理",
  7115. "input": "数字图像文件",
  7116. "output": "编辑后的数字图像文件",
  7117. "updated_time": 1774550401,
  7118. "status": "未接入"
  7119. },
  7120. {
  7121. "id": "tools/image_process/substance_painter",
  7122. "name": "Substance Painter",
  7123. "version": null,
  7124. "introduction": "3D 纹理绘画软件,用于材质图层结构建立与质感添加",
  7125. "tutorial": "建立材质图层结构,添加磨损/颗粒质感",
  7126. "input": "3D 模型或基础纹理",
  7127. "output": "材质贴图",
  7128. "updated_time": 1776148382,
  7129. "status": "未接入"
  7130. },
  7131. {
  7132. "id": "tools/image_process/sucaitools",
  7133. "name": "素材工具箱 (sucaitools)",
  7134. "version": null,
  7135. "introduction": "自研开源的素材处理工具集",
  7136. "tutorial": "视频转图片序列、批量缩放、图片拼接成 Sprite Sheet",
  7137. "input": "视频文件/图片序列",
  7138. "output": "图片帧序列/Sprite Sheet",
  7139. "updated_time": 1776066469,
  7140. "status": "未接入"
  7141. },
  7142. {
  7143. "id": "tools/image_process/supir",
  7144. "name": "Supir",
  7145. "version": null,
  7146. "introduction": "高质量图像放大模型,用于高清修复",
  7147. "tutorial": "将生成图像高清放大到 4K 分辨率",
  7148. "input": "低分辨率图像",
  7149. "output": "高分辨率图像",
  7150. "updated_time": 1774779976,
  7151. "status": "未接入"
  7152. },
  7153. {
  7154. "id": "tools/image_process/topaz",
  7155. "name": "Topaz",
  7156. "version": null,
  7157. "introduction": "独立图像/视频增强处理平台(如 Topaz Video AI)",
  7158. "tutorial": "视频放大、降噪、画质增强",
  7159. "input": "视频或图像文件",
  7160. "output": "增强后的视频或图像",
  7161. "updated_time": 1776149668,
  7162. "status": "未接入"
  7163. },
  7164. {
  7165. "id": "tools/image_process/topaz_gigapixel",
  7166. "name": "Topaz Gigapixel",
  7167. "version": null,
  7168. "introduction": "图像放大与分辨率增强工具",
  7169. "tutorial": "将故事板帧放大为高分辨率可用图像",
  7170. "input": "故事板帧",
  7171. "output": "高分辨率可用图像",
  7172. "updated_time": 1775734703,
  7173. "status": "未接入"
  7174. },
  7175. {
  7176. "id": "tools/image_process/topaz_gigapixel_ai",
  7177. "name": "Topaz Gigapixel AI",
  7178. "version": null,
  7179. "introduction": "AI 图像放大工具,用于提升分辨率和画质。",
  7180. "tutorial": "放大人物图像。",
  7181. "input": "低分辨率图像",
  7182. "output": "高分辨率图像",
  7183. "updated_time": 1776108156,
  7184. "status": "未接入"
  7185. },
  7186. {
  7187. "id": "tools/image_process/topaz_photo_ai",
  7188. "name": "Topaz Photo AI",
  7189. "version": null,
  7190. "introduction": "AI 照片增强软件,主打自动优化与色彩平衡",
  7191. "tutorial": "通过 Balance Color 和 Adjust Lighting 自动或手动调整亮度、对比度及色彩鲜活度",
  7192. "input": "原始图像文件",
  7193. "output": "增强后的图像文件",
  7194. "updated_time": 1774502293,
  7195. "status": "未接入"
  7196. },
  7197. {
  7198. "id": "tools/image_process/topaz_video_ai",
  7199. "name": "Topaz Video AI",
  7200. "version": null,
  7201. "introduction": "视频放大与后期处理工具",
  7202. "tutorial": "视频放大与后期剪辑",
  7203. "input": "视频",
  7204. "output": "高清视频",
  7205. "updated_time": 1776150483,
  7206. "status": "未接入"
  7207. },
  7208. {
  7209. "id": "tools/image_process/ttp",
  7210. "name": "TTP",
  7211. "version": null,
  7212. "introduction": "图像放大工具或模型,用于高清修复",
  7213. "tutorial": "将生成图像高清放大到 4K 分辨率",
  7214. "input": "低分辨率图像",
  7215. "output": "高分辨率图像",
  7216. "updated_time": 1774779976,
  7217. "status": "未接入"
  7218. },
  7219. {
  7220. "id": "tools/model/4x_ultrasharp",
  7221. "name": "4x-UltraSharp",
  7222. "version": null,
  7223. "introduction": "高性能图像放大模型,用于提升图像分辨率和细节",
  7224. "tutorial": "在 SD 放大节点中加载 4x-UltraSharp.pth 进行高清放大",
  7225. "input": "低分辨率图像",
  7226. "output": "高分辨率图像",
  7227. "updated_time": 1774779882,
  7228. "status": "未接入"
  7229. },
  7230. {
  7231. "id": "tools/model/albedobase_xl_v21",
  7232. "name": "albedobaseXL_v21",
  7233. "version": "v21",
  7234. "introduction": "基于 SDXL 架构的基础检查点模型",
  7235. "tutorial": "作为底模生成高质量图像",
  7236. "input": "潜空间噪声、提示词",
  7237. "output": "潜空间图像特征",
  7238. "updated_time": 1775741295,
  7239. "status": "未接入"
  7240. },
  7241. {
  7242. "id": "tools/model/animatediff",
  7243. "name": "AnimateDiff",
  7244. "version": null,
  7245. "introduction": "用于生成连贯动画的运动模型",
  7246. "tutorial": "生成基础动画帧",
  7247. "input": "静态图像/提示词",
  7248. "output": "动画序列",
  7249. "updated_time": 1776076004,
  7250. "status": "未接入"
  7251. },
  7252. {
  7253. "id": "tools/model/avatar_x",
  7254. "name": "Avatar X",
  7255. "version": null,
  7256. "introduction": "配合 Kling AI 用于情感表达的工具",
  7257. "tutorial": "Nano Banana 角色图 + Kling Motion Control → 情感丰富视频",
  7258. "input": "角色图",
  7259. "output": "视频",
  7260. "updated_time": 1775045841,
  7261. "status": "未接入"
  7262. },
  7263. {
  7264. "id": "tools/model/birefnet",
  7265. "name": "BiRefNet",
  7266. "version": null,
  7267. "introduction": "高精度图像分割模型",
  7268. "tutorial": "精细抠图",
  7269. "input": "图像",
  7270. "output": "分割遮罩",
  7271. "updated_time": 1776115407,
  7272. "status": "未接入"
  7273. },
  7274. {
  7275. "id": "tools/model/brushnet",
  7276. "name": "BrushNet",
  7277. "version": null,
  7278. "introduction": "局部重绘模型,基于遮罩进行局部修改",
  7279. "tutorial": "基于遮罩进行局部修改",
  7280. "input": "图像 + 遮罩",
  7281. "output": "修改后的图像",
  7282. "updated_time": 1776357870,
  7283. "status": "未接入"
  7284. },
  7285. {
  7286. "id": "tools/model/char_turn",
  7287. "name": "CharTurn",
  7288. "version": null,
  7289. "introduction": "用于生成角色多视图的系列模型",
  7290. "tutorial": "加载角色概念图作为参考生成三视图",
  7291. "input": "角色概念图",
  7292. "output": "正面、侧面、背面三视图",
  7293. "updated_time": 1776113530,
  7294. "status": "未接入"
  7295. },
  7296. {
  7297. "id": "tools/model/checkpoint",
  7298. "name": "Checkpoint",
  7299. "version": null,
  7300. "introduction": "Stable Diffusion 基础预训练模型文件",
  7301. "tutorial": "通过 CheckpointLoader 节点加载作为生成的基础模型",
  7302. "input": "Checkpoint 文件路径",
  7303. "output": "基础模型数据流",
  7304. "updated_time": 1776106844,
  7305. "status": "未接入"
  7306. },
  7307. {
  7308. "id": "tools/model/clip_vision",
  7309. "name": "CLIP Vision",
  7310. "version": null,
  7311. "introduction": "视觉编码模型组件",
  7312. "tutorial": "图像特征提取",
  7313. "input": "图像",
  7314. "output": "视觉嵌入向量",
  7315. "updated_time": 1776148587,
  7316. "status": "未接入"
  7317. },
  7318. {
  7319. "id": "tools/model/codeformer",
  7320. "name": "CodeFormer",
  7321. "version": null,
  7322. "introduction": "基于 Transformer 的人脸修复算法模型",
  7323. "tutorial": "人脸去噪与细节修复",
  7324. "input": "模糊人脸图像",
  7325. "output": "清晰人脸图像",
  7326. "updated_time": 1776074474,
  7327. "status": "未接入"
  7328. },
  7329. {
  7330. "id": "tools/model/controlnet",
  7331. "name": "ControlNet",
  7332. "version": null,
  7333. "introduction": "SD 插件/模型,此处使用 Tile 模型保持细节",
  7334. "tutorial": "配合放大流程控制图像结构与细节",
  7335. "input": "原图、ControlNet 模型",
  7336. "output": "控制后的特征图",
  7337. "updated_time": 1776111131,
  7338. "status": "未接入"
  7339. },
  7340. {
  7341. "id": "tools/model/darkbeast_lora",
  7342. "name": "Darkbeast LoRA",
  7343. "version": null,
  7344. "introduction": "用于增强超写实质感的 LoRA 模型",
  7345. "tutorial": "在 ComfyUI 中加载以提升皮肤或材质质感",
  7346. "input": "基础模型",
  7347. "output": "增强质感的图像",
  7348. "updated_time": 1776151469,
  7349. "status": "未接入"
  7350. },
  7351. {
  7352. "id": "tools/model/deepbooru",
  7353. "name": "DeepBooru",
  7354. "version": null,
  7355. "introduction": "图像标签识别模型",
  7356. "tutorial": "从图像提取标签用于提示词反推",
  7357. "input": "图像",
  7358. "output": "标签文本",
  7359. "updated_time": 1776152687,
  7360. "status": "未接入"
  7361. },
  7362. {
  7363. "id": "tools/model/deoldify",
  7364. "name": "DeOldify",
  7365. "version": null,
  7366. "introduction": "深度学习黑白照片自动上色模型",
  7367. "tutorial": "黑白图像彩色化",
  7368. "input": "黑白图像",
  7369. "output": "彩色图像",
  7370. "updated_time": 1776074474,
  7371. "status": "未接入"
  7372. },
  7373. {
  7374. "id": "tools/model/esrgan",
  7375. "name": "ESRGAN",
  7376. "version": null,
  7377. "introduction": "超分辨率生成对抗网络,用于图像高清化处理",
  7378. "tutorial": "图像超分辨率放大",
  7379. "input": "低分辨率图像",
  7380. "output": "高分辨率图像",
  7381. "updated_time": 1775100133,
  7382. "status": "未接入"
  7383. },
  7384. {
  7385. "id": "tools/model/fashn_vton",
  7386. "name": "FASHN VTON",
  7387. "version": "v1.5",
  7388. "introduction": "开源可本地部署,无需抠图直接生成试穿效果",
  7389. "tutorial": "本地部署",
  7390. "input": "人物/服装图像",
  7391. "output": "试穿效果图像",
  7392. "updated_time": 1774856189,
  7393. "status": "未接入"
  7394. },
  7395. {
  7396. "id": "tools/model/film_texture_lora",
  7397. "name": "胶片质感 LoRA",
  7398. "version": null,
  7399. "introduction": "用于复刻日系复古胶片风格的微调模型",
  7400. "tutorial": "加载至底模以应用特定风格",
  7401. "input": "底模、提示词",
  7402. "output": "风格化图像",
  7403. "updated_time": 1776066634,
  7404. "status": "未接入"
  7405. },
  7406. {
  7407. "id": "tools/model/florence2",
  7408. "name": "Florence2",
  7409. "version": null,
  7410. "introduction": "用于图像描述生成的视觉基础模型",
  7411. "tutorial": "通过 Image2Prompt 反推参考图的详细描述",
  7412. "input": "参考图像",
  7413. "output": "文本描述提示词",
  7414. "updated_time": 1774782536,
  7415. "status": "未接入"
  7416. },
  7417. {
  7418. "id": "tools/model/flux",
  7419. "name": "FLUX.2 [max]",
  7420. "version": "2 [max]",
  7421. "introduction": "AI 图像编辑模型,支持物体替换、移除、场景转换及重纹理功能",
  7422. "tutorial": "通过文本指令和参考图实现图像局部重绘与编辑",
  7423. "input": "原始图像、参考图像、文本提示",
  7424. "output": "编辑后的图像",
  7425. "updated_time": 1776082832,
  7426. "status": "未接入"
  7427. },
  7428. {
  7429. "id": "tools/model/flux_1",
  7430. "name": "Flux.1 模型",
  7431. "version": "FLUX.1",
  7432. "introduction": "Black Forest Labs 推出的高质量文生图底模",
  7433. "tutorial": "作为基础模型进行图像生成或 LoRA 训练",
  7434. "input": "提示词、噪声",
  7435. "output": "潜在空间特征或图像",
  7436. "updated_time": 1776066634,
  7437. "status": "未接入"
  7438. },
  7439. {
  7440. "id": "tools/model/flux_2",
  7441. "name": "FLUX.2",
  7442. "version": "2",
  7443. "introduction": "用于性能对比的 AI 生图模型,生成速度 8-15s",
  7444. "tutorial": "图像生成",
  7445. "input": "文本提示词",
  7446. "output": "图像",
  7447. "updated_time": 1776105417,
  7448. "status": "未接入"
  7449. },
  7450. {
  7451. "id": "tools/model/flux2_max",
  7452. "name": "FLUX2_max",
  7453. "version": null,
  7454. "introduction": "Flux 系列高质量图像生成模型",
  7455. "tutorial": "文生图或图生图推理",
  7456. "input": "文本提示词",
  7457. "output": "生成图像",
  7458. "updated_time": 1776083643,
  7459. "status": "未接入"
  7460. },
  7461. {
  7462. "id": "tools/model/flux_fill",
  7463. "name": "FLUX-Fill",
  7464. "version": null,
  7465. "introduction": "用于图像修复和填充的模型",
  7466. "tutorial": "局部重绘生成细节",
  7467. "input": "图像、遮罩",
  7468. "output": "修复后的图像",
  7469. "updated_time": 1776115407,
  7470. "status": "未接入"
  7471. },
  7472. {
  7473. "id": "tools/model/flux_pro",
  7474. "name": "Flux Pro",
  7475. "version": null,
  7476. "introduction": "高质量图像生成模型",
  7477. "tutorial": "生成测试图并迭代",
  7478. "input": "提示词、节点工作流",
  7479. "output": "生成图像",
  7480. "updated_time": 1776148382,
  7481. "status": "未接入"
  7482. },
  7483. {
  7484. "id": "tools/model/flux_pro_ultra",
  7485. "name": "Flux Pro Ultra",
  7486. "version": "Pro Ultra",
  7487. "introduction": "Flux 系列的高性能图像生成模型",
  7488. "tutorial": "生成基础人像",
  7489. "input": "文本 Prompt",
  7490. "output": "生成图像",
  7491. "updated_time": 1776353762,
  7492. "status": "未接入"
  7493. },
  7494. {
  7495. "id": "tools/model/gemini_pro",
  7496. "name": "Gemini Pro",
  7497. "version": null,
  7498. "introduction": "多模态大模型(用于角色一致性)",
  7499. "tutorial": "处理角色一致性",
  7500. "input": "图像/文本",
  7501. "output": "一致性反馈/图像",
  7502. "updated_time": 1776148587,
  7503. "status": "未接入"
  7504. },
  7505. {
  7506. "id": "tools/model/google_imagen_4",
  7507. "name": "Google Imagen 4",
  7508. "version": "4",
  7509. "introduction": "谷歌高分辨率图像生成模型",
  7510. "tutorial": "生成基础人像",
  7511. "input": "文本 Prompt",
  7512. "output": "生成图像",
  7513. "updated_time": 1776353762,
  7514. "status": "未接入"
  7515. },
  7516. {
  7517. "id": "tools/model/grounding_dino",
  7518. "name": "Grounding DINO",
  7519. "version": null,
  7520. "introduction": "开放词汇目标检测模型",
  7521. "tutorial": "结合文本提示检测物体以辅助分割",
  7522. "input": "图像,文本",
  7523. "output": "检测框",
  7524. "updated_time": 1776147890,
  7525. "status": "未接入"
  7526. },
  7527. {
  7528. "id": "tools/model/hand_detail_lora",
  7529. "name": "Hand Detail LoRA",
  7530. "version": null,
  7531. "introduction": "专门用于增强手部细节生成的 LoRA 模型",
  7532. "tutorial": "在提示词中触发,配合权重调整手指细节和自然度",
  7533. "input": "提示词触发",
  7534. "output": "更自然的手指细节",
  7535. "updated_time": 1776165359,
  7536. "status": "未接入"
  7537. },
  7538. {
  7539. "id": "tools/model/hf_vton",
  7540. "name": "HF-VTON",
  7541. "version": null,
  7542. "introduction": "学术论文虚拟试衣框架",
  7543. "tutorial": "学术研究与实验",
  7544. "input": "虚拟试衣数据集",
  7545. "output": "实验结果图像",
  7546. "updated_time": 1774902192,
  7547. "status": "未接入"
  7548. },
  7549. {
  7550. "id": "tools/model/higgsfield",
  7551. "name": "Higgsfield",
  7552. "version": null,
  7553. "introduction": "使用参考图像实现跨代角色一致性",
  7554. "tutorial": "角色一致性生成",
  7555. "input": "参考图像",
  7556. "output": "一致性视频或图像",
  7557. "updated_time": 1775040677,
  7558. "status": "未接入"
  7559. },
  7560. {
  7561. "id": "tools/model/hyper_sdxl_8steps_lora",
  7562. "name": "Hyper-SDXL-8steps-lora",
  7563. "version": "8steps",
  7564. "introduction": "加速 SDXL 生成的 LoRA 模型",
  7565. "tutorial": "减少采样步数至 8 步加快生成速度",
  7566. "input": "模型权重",
  7567. "output": "加速后的生成结果",
  7568. "updated_time": 1775741295,
  7569. "status": "未接入"
  7570. },
  7571. {
  7572. "id": "tools/model/idm_vton",
  7573. "name": "IDM-VTON",
  7574. "version": null,
  7575. "introduction": "开源虚拟试衣模型",
  7576. "tutorial": "虚拟试衣生成",
  7577. "input": "服装图像与人物图像",
  7578. "output": "试穿效果图像",
  7579. "updated_time": 1774855626,
  7580. "status": "未接入"
  7581. },
  7582. {
  7583. "id": "tools/model/illustrious_ponyxl",
  7584. "name": "Illustrious/PonyXL",
  7585. "version": null,
  7586. "introduction": "SD Checkpoint 模型,用于生成高质量图像",
  7587. "tutorial": "选模型提示词→生成",
  7588. "input": "提示词",
  7589. "output": "图像",
  7590. "updated_time": 1776150924,
  7591. "status": "未接入"
  7592. },
  7593. {
  7594. "id": "tools/model/kolors",
  7595. "name": "Kolors",
  7596. "version": null,
  7597. "introduction": "开源 AI 图像生成模型",
  7598. "tutorial": "技术开发参考与验证",
  7599. "input": "提示词、参考图",
  7600. "output": "生成图像",
  7601. "updated_time": 1774902192,
  7602. "status": "未接入"
  7603. },
  7604. {
  7605. "id": "tools/model/kora_pro",
  7606. "name": "KORA Pro",
  7607. "version": null,
  7608. "introduction": "角色生成模型/工具",
  7609. "tutorial": "生成角色形象与构建一致性角色",
  7610. "input": "提示词",
  7611. "output": "角色图像",
  7612. "updated_time": 1776151718,
  7613. "status": "未接入"
  7614. },
  7615. {
  7616. "id": "tools/model/lbm",
  7617. "name": "LBM",
  7618. "version": null,
  7619. "introduction": "光影打光相关模型",
  7620. "tutorial": "光影打光",
  7621. "input": "图像",
  7622. "output": "光照处理后的图像",
  7623. "updated_time": 1776135163,
  7624. "status": "未接入"
  7625. },
  7626. {
  7627. "id": "tools/model/lbm_relighting",
  7628. "name": "LBM_relighting",
  7629. "version": null,
  7630. "introduction": "用于重新打光,常与 IC-Light 配合使用",
  7631. "tutorial": "参考图引导打光",
  7632. "input": "原始图像、参考图",
  7633. "output": "重光照图像",
  7634. "updated_time": 1776112310,
  7635. "status": "未接入"
  7636. },
  7637. {
  7638. "id": "tools/model/live_portrait",
  7639. "name": "LivePortrait",
  7640. "version": null,
  7641. "introduction": "肖像动态驱动模型",
  7642. "tutorial": "通过驱动视频让静态肖像产生表情动作",
  7643. "input": "静态图像/驱动视频",
  7644. "output": "动态视频",
  7645. "updated_time": 1776373601,
  7646. "status": "未接入"
  7647. },
  7648. {
  7649. "id": "tools/model/lora",
  7650. "name": "LoRA",
  7651. "version": null,
  7652. "introduction": "低秩适应模型,用于定制化风格或角色",
  7653. "tutorial": "定制化 lora(自炼)用于特定风格或对象生成",
  7654. "input": "模型权重",
  7655. "output": "模型微调效果",
  7656. "updated_time": 1775565462,
  7657. "status": "未接入"
  7658. },
  7659. {
  7660. "id": "tools/model/magic_clothing",
  7661. "name": "Magic Clothing",
  7662. "version": null,
  7663. "introduction": "虚拟试衣模型,人脸一致性好",
  7664. "tutorial": "ComfyUI 工作流节点调用",
  7665. "input": "人物图、服装图",
  7666. "output": "试衣图像",
  7667. "updated_time": 1774860911,
  7668. "status": "未接入"
  7669. },
  7670. {
  7671. "id": "tools/model/marble_world_model",
  7672. "name": "Marble 世界模型",
  7673. "version": null,
  7674. "introduction": "用于处理 3D 空间关系的世界模型",
  7675. "tutorial": "利用世界模型探索 3D 空间关系以保持场景一致性",
  7676. "input": "场景描述或初始图像",
  7677. "output": "具有 3D 空间一致性的图像",
  7678. "updated_time": 1775057195,
  7679. "status": "未接入"
  7680. },
  7681. {
  7682. "id": "tools/model/minicpm",
  7683. "name": "MiniCPM",
  7684. "version": null,
  7685. "introduction": "轻量级大语言模型",
  7686. "tutorial": "提示词扩写与反推",
  7687. "input": "文本提示",
  7688. "output": "扩写文本",
  7689. "updated_time": 1776147443,
  7690. "status": "未接入"
  7691. },
  7692. {
  7693. "id": "tools/model/minimax",
  7694. "name": "MiniMax",
  7695. "version": null,
  7696. "introduction": "使用参考图像实现跨代角色一致性",
  7697. "tutorial": "角色一致性生成",
  7698. "input": "参考图像",
  7699. "output": "一致性视频或图像",
  7700. "updated_time": 1775040677,
  7701. "status": "未接入"
  7702. },
  7703. {
  7704. "id": "tools/model/nano_banana",
  7705. "name": "Nano Banana",
  7706. "version": "2",
  7707. "introduction": "云端 AI 生成模型工具",
  7708. "tutorial": "上传参考图与提示词,调用 API 生成结果",
  7709. "input": "参考图,提示词",
  7710. "output": "生成图像",
  7711. "updated_time": 1776147655,
  7712. "status": "未接入"
  7713. },
  7714. {
  7715. "id": "tools/model/nano_banana_2",
  7716. "name": "Nano Banana 2",
  7717. "version": "2",
  7718. "introduction": "AI 生成模型或辅助工具,用于时尚肖像等特定风格生成。",
  7719. "tutorial": "配合采样器进行特定风格优化。",
  7720. "input": "提示词、基础图像",
  7721. "output": "优化后的图像",
  7722. "updated_time": 1776115195,
  7723. "status": "未接入"
  7724. },
  7725. {
  7726. "id": "tools/model/nano_banana_pro",
  7727. "name": "Nano_Banana_Pro",
  7728. "version": null,
  7729. "introduction": "特定风格的图像生成模型或 LoRA",
  7730. "tutorial": "模型推理或风格微调",
  7731. "input": "文本/图像",
  7732. "output": "生成图像",
  7733. "updated_time": 1776083643,
  7734. "status": "未接入"
  7735. },
  7736. {
  7737. "id": "tools/model/next_scene_lora",
  7738. "name": "Next Scene LoRA",
  7739. "version": null,
  7740. "introduction": "相机角度和姿势动态生成",
  7741. "tutorial": "生成新相机角度/姿势",
  7742. "input": "基础模型,提示词",
  7743. "output": "特定角度/姿势图像",
  7744. "updated_time": 1776149199,
  7745. "status": "未接入"
  7746. },
  7747. {
  7748. "id": "tools/model/outfit_anyone",
  7749. "name": "Outfit Anyone",
  7750. "version": null,
  7751. "introduction": "开源虚拟试衣模型,支持多种体型",
  7752. "tutorial": "本地部署进行试衣生成",
  7753. "input": "人物与服装图像",
  7754. "output": "试穿效果图像",
  7755. "updated_time": 1774902192,
  7756. "status": "未接入"
  7757. },
  7758. {
  7759. "id": "tools/model/pixel_smile",
  7760. "name": "PixelSmile",
  7761. "version": null,
  7762. "introduction": "专注表情编辑研究,对比学习解耦表情语义,支持连续强度控制",
  7763. "tutorial": "专业研究场景下的细粒度面部表情编辑",
  7764. "input": "图像",
  7765. "output": "编辑后的图像",
  7766. "updated_time": 1775042685,
  7767. "status": "未接入"
  7768. },
  7769. {
  7770. "id": "tools/model/qwe",
  7771. "name": "Qwe",
  7772. "version": null,
  7773. "introduction": "用于 AI influencer 真实性生成的模型或工具",
  7774. "tutorial": "生成高真实性人物形象",
  7775. "input": "提示词、参考数据",
  7776. "output": "人物图像",
  7777. "updated_time": 1776150256,
  7778. "status": "未接入"
  7779. },
  7780. {
  7781. "id": "tools/model/qwen",
  7782. "name": "Qwen",
  7783. "version": null,
  7784. "introduction": "AI 大模型,用于工作流配置与细节优化辅助。",
  7785. "tutorial": "选择 LoRA、配置工作流、细节优化。",
  7786. "input": "文本/图像",
  7787. "output": "文本/配置建议",
  7788. "updated_time": 1776108156,
  7789. "status": "未接入"
  7790. },
  7791. {
  7792. "id": "tools/model/qwen_edit",
  7793. "name": "Qwen-Edit",
  7794. "version": null,
  7795. "introduction": "细粒度表情编辑带连续强度控制",
  7796. "tutorial": "表情编辑",
  7797. "input": "图像",
  7798. "output": "编辑后的图像",
  7799. "updated_time": 1775042685,
  7800. "status": "未接入"
  7801. },
  7802. {
  7803. "id": "tools/model/qwen_edit_2509",
  7804. "name": "Qwen Edit 2509",
  7805. "version": "2509",
  7806. "introduction": "ComfyUI 生态中的开源工具链",
  7807. "tutorial": "替代商业工具",
  7808. "input": null,
  7809. "output": null,
  7810. "updated_time": 1775131272,
  7811. "status": "未接入"
  7812. },
  7813. {
  7814. "id": "tools/model/qwen_image",
  7815. "name": "Qwen Image",
  7816. "version": null,
  7817. "introduction": "图像生成主力模型",
  7818. "tutorial": "图像外扩生成",
  7819. "input": "提示词/图像",
  7820. "output": "图像",
  7821. "updated_time": 1776150483,
  7822. "status": "未接入"
  7823. },
  7824. {
  7825. "id": "tools/model/qwen_image_2511",
  7826. "name": "Qwen-Image-2511",
  7827. "version": "2511",
  7828. "introduction": "千问 AI 旗下的图像生成模型满血版",
  7829. "tutorial": "换背景、消除路人、人物一致性保持",
  7830. "input": "真实的 prompt 或指令",
  7831. "output": "生成效果",
  7832. "updated_time": 1775117061,
  7833. "status": "未接入"
  7834. },
  7835. {
  7836. "id": "tools/model/qwen_image_edit",
  7837. "name": "Qwen Image Edit",
  7838. "version": null,
  7839. "introduction": "基于 Qwen 的图像编辑模型",
  7840. "tutorial": "安装 LoRA 模型并搭建工作流",
  7841. "input": "图像",
  7842. "output": "编辑后图像",
  7843. "updated_time": 1776149431,
  7844. "status": "未接入"
  7845. },
  7846. {
  7847. "id": "tools/model/qwen_image_lora",
  7848. "name": "Qwen Image LoRA",
  7849. "version": "2509",
  7850. "introduction": "针对多角度光照的 LoRA 模型",
  7851. "tutorial": "设置光照角度与颜色参数执行生成",
  7852. "input": "图像/参数",
  7853. "output": "图像",
  7854. "updated_time": 1776149431,
  7855. "status": "未接入"
  7856. },
  7857. {
  7858. "id": "tools/model/qwen_image_relight",
  7859. "name": "Qwen Image Relight",
  7860. "version": null,
  7861. "introduction": "基于 Qwen 的图像重打光模型",
  7862. "tutorial": "输入图像并设置光照参数执行重打光",
  7863. "input": "图像",
  7864. "output": "重打光图像",
  7865. "updated_time": 1776149431,
  7866. "status": "未接入"
  7867. },
  7868. {
  7869. "id": "tools/model/qwen_outfit_transfer",
  7870. "name": "Qwen Outfit Transfer",
  7871. "version": null,
  7872. "introduction": "基于 Qwen 的服装迁移模型",
  7873. "tutorial": "虚拟试衣",
  7874. "input": "人物图像 + 服装图像",
  7875. "output": "试衣后图像",
  7876. "updated_time": 1774860910,
  7877. "status": "未接入"
  7878. },
  7879. {
  7880. "id": "tools/model/qwen_vl",
  7881. "name": "QwenVL",
  7882. "version": null,
  7883. "introduction": "可结合 ControlNet 自动生成提示词",
  7884. "tutorial": "输入图像生成文本提示词",
  7885. "input": "图像",
  7886. "output": "文本提示词",
  7887. "updated_time": 1775130920,
  7888. "status": "未接入"
  7889. },
  7890. {
  7891. "id": "tools/model/qwen_vl_max",
  7892. "name": "Qwen-VL-Max",
  7893. "version": "Max",
  7894. "introduction": "阿里通义千问视觉大模型,用于图像理解",
  7895. "tutorial": "对训练集图片进行自动打标",
  7896. "input": "图像",
  7897. "output": "文本描述",
  7898. "updated_time": 1776066634,
  7899. "status": "未接入"
  7900. },
  7901. {
  7902. "id": "tools/model/realesrgan",
  7903. "name": "RealESRGAN 放大模型",
  7904. "version": null,
  7905. "introduction": "图像超分辨率放大模型",
  7906. "tutorial": "纹理高清放大",
  7907. "input": "低分辨率图像",
  7908. "output": "高分辨率图像",
  7909. "updated_time": 1776066373,
  7910. "status": "未接入"
  7911. },
  7912. {
  7913. "id": "tools/model/relight",
  7914. "name": "Relight",
  7915. "version": null,
  7916. "introduction": "调整光照方向强度氛围",
  7917. "tutorial": "光影打光与重打光",
  7918. "input": "图像及光照条件",
  7919. "output": "调整光照后的图像",
  7920. "updated_time": 1776135163,
  7921. "status": "未接入"
  7922. },
  7923. {
  7924. "id": "tools/model/rmbg",
  7925. "name": "RMBG",
  7926. "version": null,
  7927. "introduction": "背景移除模型,用于快速提取图像主体",
  7928. "tutorial": "自动识别并移除图像背景",
  7929. "input": "原始图像",
  7930. "output": "无背景图像",
  7931. "updated_time": 1776165075,
  7932. "status": "未接入"
  7933. },
  7934. {
  7935. "id": "tools/model/sam_3",
  7936. "name": "SAM 3",
  7937. "version": "3",
  7938. "introduction": "用于智能选择区域的图像分割模型",
  7939. "tutorial": "自动识别并生成图像中的对象蒙版或选区",
  7940. "input": "图像数据",
  7941. "output": "蒙版或选区数据",
  7942. "updated_time": 1775132858,
  7943. "status": "未接入"
  7944. },
  7945. {
  7946. "id": "tools/model/sdxl",
  7947. "name": "SDXL",
  7948. "version": null,
  7949. "introduction": "Stable Diffusion XL 基础模型",
  7950. "tutorial": "构图生成",
  7951. "input": "提示词",
  7952. "output": "生成图像",
  7953. "updated_time": 1776147443,
  7954. "status": "未接入"
  7955. },
  7956. {
  7957. "id": "tools/model/sdxl_lightning_8step",
  7958. "name": "SDXL Lightning 8 步模型",
  7959. "version": null,
  7960. "introduction": "基于 SDXL 的快速推理检查点模型",
  7961. "tutorial": "文生图生成基础纹理",
  7962. "input": "提示词,潜空间噪声",
  7963. "output": "潜空间图像",
  7964. "updated_time": 1776066373,
  7965. "status": "未接入"
  7966. },
  7967. {
  7968. "id": "tools/model/seedream",
  7969. "name": "Seedream",
  7970. "version": null,
  7971. "introduction": "AI 生图模型",
  7972. "tutorial": "图像生成,局部重绘",
  7973. "input": null,
  7974. "output": null,
  7975. "updated_time": 1776353534,
  7976. "status": "未接入"
  7977. },
  7978. {
  7979. "id": "tools/model/seedream_5_0_lite",
  7980. "name": "Seedream_5.0_Lite",
  7981. "version": "5.0_Lite",
  7982. "introduction": "支持最多 14 张参考图的图像一致性增强工具,人脸特征、色调、风格高度稳定。",
  7983. "tutorial": "输入多张参考图生成一致性图像",
  7984. "input": "最多 14 张参考图",
  7985. "output": "一致性图像",
  7986. "updated_time": 1776082501,
  7987. "status": "未接入"
  7988. },
  7989. {
  7990. "id": "tools/model/seedvr",
  7991. "name": "SEEDVR",
  7992. "version": null,
  7993. "introduction": "增强模型/技术,实现照片级真实感",
  7994. "tutorial": "第二步采样后增强",
  7995. "input": "潜空间",
  7996. "output": "增强潜空间",
  7997. "updated_time": 1776150924,
  7998. "status": "未接入"
  7999. },
  8000. {
  8001. "id": "tools/model/segment_anything",
  8002. "name": "Segment Anything",
  8003. "version": null,
  8004. "introduction": "通用图像分割模型",
  8005. "tutorial": "精细抠图,创建遮罩",
  8006. "input": "图像",
  8007. "output": "分割遮罩",
  8008. "updated_time": 1776115407,
  8009. "status": "未接入"
  8010. },
  8011. {
  8012. "id": "tools/model/segment_anything_model",
  8013. "name": "Segment Anything Model",
  8014. "version": null,
  8015. "introduction": "通用图像分割模型",
  8016. "tutorial": "生成面部与头发语义蒙版",
  8017. "input": "图像",
  8018. "output": "语义蒙版",
  8019. "updated_time": 1776147890,
  8020. "status": "未接入"
  8021. },
  8022. {
  8023. "id": "tools/model/skyreels_v3",
  8024. "name": "SkyReels V3",
  8025. "version": "V3",
  8026. "introduction": "AI 视频/图像生成模型",
  8027. "tutorial": "搭建 AI 渲染工作流",
  8028. "input": "图像/参数",
  8029. "output": "图像/视频",
  8030. "updated_time": 1776149431,
  8031. "status": "未接入"
  8032. },
  8033. {
  8034. "id": "tools/model/stable_diffusion_xl",
  8035. "name": "Stable Diffusion XL",
  8036. "version": "SDXL",
  8037. "introduction": "主流开源 AI 图像生成模型基础版本",
  8038. "tutorial": "加载 Checkpoint 与 VAE,配合 K 采样器进行去噪生成",
  8039. "input": "Checkpoint, VAE, 提示词",
  8040. "output": "生成图像",
  8041. "updated_time": 1776147655,
  8042. "status": "未接入"
  8043. },
  8044. {
  8045. "id": "tools/model/tile",
  8046. "name": "Tile",
  8047. "version": null,
  8048. "introduction": "用于细节增强的控制模型(通常指 ControlNet Tile)",
  8049. "tutorial": "图像细节增强与高清修复",
  8050. "input": "图像特征",
  8051. "output": "增强后的特征",
  8052. "updated_time": 1776074474,
  8053. "status": "未接入"
  8054. },
  8055. {
  8056. "id": "tools/model/tile_model",
  8057. "name": "Tile 模型",
  8058. "version": null,
  8059. "introduction": "用于图像细节增强和平铺处理的模型",
  8060. "tutorial": "在放大或修复过程中增强图像纹理细节",
  8061. "input": "图像 latent 或像素",
  8062. "output": "增强后的图像",
  8063. "updated_time": 1776113426,
  8064. "status": "未接入"
  8065. },
  8066. {
  8067. "id": "tools/model/time_to_move",
  8068. "name": "Time-to-Move",
  8069. "version": null,
  8070. "introduction": "训练-free 精确控制技术,2026 年最新技术突破",
  8071. "tutorial": "实现道具引导的精确角色/物体动画控制",
  8072. "input": "道具/物体信号",
  8073. "output": "动画控制信号",
  8074. "updated_time": 1775132775,
  8075. "status": "未接入"
  8076. },
  8077. {
  8078. "id": "tools/model/uso",
  8079. "name": "USO",
  8080. "version": null,
  8081. "introduction": "ComfyUI 生态中的开源工具链",
  8082. "tutorial": "替代商业工具",
  8083. "input": null,
  8084. "output": null,
  8085. "updated_time": 1775131272,
  8086. "status": "未接入"
  8087. },
  8088. {
  8089. "id": "tools/model/vae",
  8090. "name": "VAE",
  8091. "version": null,
  8092. "introduction": "变分自编码器,用于潜空间与像素空间转换",
  8093. "tutorial": "图像解码输出",
  8094. "input": "潜空间数据",
  8095. "output": "像素图像",
  8096. "updated_time": 1776074474,
  8097. "status": "未接入"
  8098. },
  8099. {
  8100. "id": "tools/model/wan",
  8101. "name": "Wan",
  8102. "version": "2.2",
  8103. "introduction": "视频生成模型,支持视频到视频转换",
  8104. "tutorial": "结合 ControlNet 进行视频转换",
  8105. "input": "视频/图像",
  8106. "output": "转换后的视频",
  8107. "updated_time": 1776151469,
  8108. "status": "未接入"
  8109. },
  8110. {
  8111. "id": "tools/model/wan_2_2",
  8112. "name": "Wan 2.2",
  8113. "version": "2.2",
  8114. "introduction": "视频生成模型,配合 TTM 和 SAM 3 实现无训练精确动画",
  8115. "tutorial": "生成视频内容",
  8116. "input": "提示词/控制信号",
  8117. "output": "视频",
  8118. "updated_time": 1775132775,
  8119. "status": "未接入"
  8120. },
  8121. {
  8122. "id": "tools/model/wan2_2",
  8123. "name": "Wan2.2",
  8124. "version": "2.2",
  8125. "introduction": "视频生成模型",
  8126. "tutorial": "配合 ControlNet 进行视频生成",
  8127. "input": "图像、提示词",
  8128. "output": "视频",
  8129. "updated_time": 1776164964,
  8130. "status": "未接入"
  8131. },
  8132. {
  8133. "id": "tools/model/wan_2_2_animate",
  8134. "name": "Wan 2.2 Animate",
  8135. "version": "2.2",
  8136. "introduction": "AI 视频生成模型",
  8137. "tutorial": "生成动画视频内容",
  8138. "input": null,
  8139. "output": null,
  8140. "updated_time": 1775042598,
  8141. "status": "未接入"
  8142. },
  8143. {
  8144. "id": "tools/model/wan_2_2_fun_controlnet",
  8145. "name": "Wan 2.2 Fun ControlNet",
  8146. "version": "2.2",
  8147. "introduction": "视频控制模型",
  8148. "tutorial": "视频到视频生成,需配置 VRAM 优化",
  8149. "input": "视频/控制图",
  8150. "output": "视频",
  8151. "updated_time": 1776150483,
  8152. "status": "未接入"
  8153. },
  8154. {
  8155. "id": "tools/model/wan_2_5",
  8156. "name": "Wan 2.5",
  8157. "version": "2.5",
  8158. "introduction": "开源工具,在 ImagineArt 上免费提供",
  8159. "tutorial": "图像或视频生成",
  8160. "input": "文本或图像",
  8161. "output": "图像或视频",
  8162. "updated_time": 1775040677,
  8163. "status": "未接入"
  8164. },
  8165. {
  8166. "id": "tools/model/wan_animate",
  8167. "name": "Wan Animate",
  8168. "version": null,
  8169. "introduction": "开源动画模型,支持 ComfyUI 本地部署",
  8170. "tutorial": "ComfyUI 本地部署生成",
  8171. "input": "图像/提示词",
  8172. "output": "动画视频",
  8173. "updated_time": 1775046020,
  8174. "status": "未接入"
  8175. },
  8176. {
  8177. "id": "tools/model/wan_vace",
  8178. "name": "Wan VACE",
  8179. "version": null,
  8180. "introduction": "AI 生成模型",
  8181. "tutorial": "搭建 AI 渲染工作流",
  8182. "input": "图像/参数",
  8183. "output": "图像",
  8184. "updated_time": 1776149431,
  8185. "status": "未接入"
  8186. },
  8187. {
  8188. "id": "tools/model/wd1_4_tagger",
  8189. "name": "WD1.4 Tagger",
  8190. "version": "1.4",
  8191. "introduction": "图像标签生成模型,常用于 Danbooru 风格标签",
  8192. "tutorial": "从图像提取标签用于提示词反推",
  8193. "input": "图像",
  8194. "output": "标签文本",
  8195. "updated_time": 1776152687,
  8196. "status": "未接入"
  8197. },
  8198. {
  8199. "id": "tools/model/wd14_tagger",
  8200. "name": "WD14 Tagger",
  8201. "version": null,
  8202. "introduction": "用于动漫图像标签识别的模型",
  8203. "tutorial": "图像标签提取与提示词反推",
  8204. "input": "图像",
  8205. "output": "标签文本",
  8206. "updated_time": 1776371225,
  8207. "status": "未接入"
  8208. },
  8209. {
  8210. "id": "tools/model/z_image_turbo",
  8211. "name": "Z-Image Turbo",
  8212. "version": null,
  8213. "introduction": "快速推理模型,支持 8 步快速推理",
  8214. "tutorial": "配合 ControlNet Union 使用实现快速生成",
  8215. "input": "噪声,条件",
  8216. "output": "图像",
  8217. "updated_time": 1775131272,
  8218. "status": "未接入"
  8219. },
  8220. {
  8221. "id": "tools/other/3ds_max",
  8222. "name": "3ds Max",
  8223. "version": null,
  8224. "introduction": "3D 建模与渲染软件,用于生成空场景。",
  8225. "tutorial": "生成空场景 3D 渲染图。",
  8226. "input": "3D 模型",
  8227. "output": "3D 渲染图",
  8228. "updated_time": 1776108156,
  8229. "status": "未接入"
  8230. },
  8231. {
  8232. "id": "tools/other/blender",
  8233. "name": "Blender",
  8234. "version": null,
  8235. "introduction": "开源 3D 创作套件,用于搭建场景和渲染辅助通道",
  8236. "tutorial": "创建 3D 场景,输出深度图/法线图等辅助通道",
  8237. "input": "创意概念,3D 模型",
  8238. "output": "3D 场景渲染底图,辅助通道",
  8239. "updated_time": 1775130580,
  8240. "status": "未接入"
  8241. },
  8242. {
  8243. "id": "tools/other/colorbrew",
  8244. "name": "ColorBrew",
  8245. "version": null,
  8246. "introduction": "免费 AI 驱动配色板生成器,支持文本描述、图片上传生成配色方案和渐变色",
  8247. "tutorial": "网页端输入文本描述或上传图片,AI 生成配色方案和渐变色",
  8248. "input": "文本描述或图片",
  8249. "output": "配色方案和渐变色",
  8250. "updated_time": 1774503574,
  8251. "status": "未接入"
  8252. },
  8253. {
  8254. "id": "tools/other/color_magic",
  8255. "name": "ColorMagic",
  8256. "version": null,
  8257. "introduction": "AI 驱动的在线配色工具,支持多模态输入生成协调配色方案",
  8258. "tutorial": "浏览器访问,输入基础颜色或描述后 AI 生成配色",
  8259. "input": "颜色名称、图片、文本描述",
  8260. "output": "配色方案、场景预览效果",
  8261. "updated_time": 1774548824,
  8262. "status": "未接入"
  8263. },
  8264. {
  8265. "id": "tools/other/colormind",
  8266. "name": "Colormind",
  8267. "version": null,
  8268. "introduction": "使用 AI 生成用户友好设计的配色方案",
  8269. "tutorial": "网页端点击随机生成或上传图片,AI 自动创建配色方案",
  8270. "input": "随机生成或上传图片",
  8271. "output": "配色方案",
  8272. "updated_time": 1774503502,
  8273. "status": "未接入"
  8274. },
  8275. {
  8276. "id": "tools/other/comfyui_manager",
  8277. "name": "ComfyUI Manager",
  8278. "version": null,
  8279. "introduction": "ComfyUI 插件管理器,用于安装和管理节点",
  8280. "tutorial": "安装 InstantID, IPAdapter, ControlNet 等组件",
  8281. "input": "无",
  8282. "output": "已安装的节点",
  8283. "updated_time": 1776149103,
  8284. "status": "未接入"
  8285. },
  8286. {
  8287. "id": "tools/other/coolors",
  8288. "name": "Coolors",
  8289. "version": null,
  8290. "introduction": "超快速配色板生成器,支持图片上传取色及无障碍检查",
  8291. "tutorial": "网页端使用,按空格键随机生成配色,或上传图片提取配色",
  8292. "input": "图片文件或颜色代码",
  8293. "output": "配色板/颜色代码",
  8294. "updated_time": 1774548203,
  8295. "status": "未接入"
  8296. },
  8297. {
  8298. "id": "tools/other/corona_renderer",
  8299. "name": "Corona Renderer",
  8300. "version": null,
  8301. "introduction": " photorealistic 渲染引擎",
  8302. "tutorial": "配合 3ds Max 进行高质量渲染",
  8303. "input": "3D 场景数据",
  8304. "output": "渲染图像",
  8305. "updated_time": 1776150256,
  8306. "status": "未接入"
  8307. },
  8308. {
  8309. "id": "tools/other/deepseek",
  8310. "name": "DeepSeek",
  8311. "version": null,
  8312. "introduction": "AI 模型,用于生成提示词",
  8313. "tutorial": "生成提示词",
  8314. "input": "文本",
  8315. "output": "提示词",
  8316. "updated_time": 1775100133,
  8317. "status": "未接入"
  8318. },
  8319. {
  8320. "id": "tools/other/gamma",
  8321. "name": "Gamma",
  8322. "version": null,
  8323. "introduction": "新兴 AI 工具,用于文档与演示文稿的生成式设计。",
  8324. "tutorial": "用于快速生成演示文稿及版面设计。",
  8325. "input": "文本主题",
  8326. "output": "演示文稿或文档",
  8327. "updated_time": 1775100399,
  8328. "status": "未接入"
  8329. },
  8330. {
  8331. "id": "tools/other/gemini_2_5_pro",
  8332. "name": "Gemini 2.5 Pro",
  8333. "version": null,
  8334. "introduction": "自动规划故事板,用于创意策划",
  8335. "tutorial": "输入单张参考图,自动生成完整故事板",
  8336. "input": "单张参考图",
  8337. "output": "完整故事板",
  8338. "updated_time": 1776149199,
  8339. "status": "未接入"
  8340. },
  8341. {
  8342. "id": "tools/other/google_earth",
  8343. "name": "Google Earth",
  8344. "version": null,
  8345. "introduction": "地理信息工具,用于模拟真实地理场景输入",
  8346. "tutorial": "集成模拟真实地理场景,提供环境素材",
  8347. "input": "地理数据",
  8348. "output": "场景截图或数据",
  8349. "updated_time": 1775098464,
  8350. "status": "未接入"
  8351. },
  8352. {
  8353. "id": "tools/other/google_genai",
  8354. "name": "google-genai",
  8355. "version": ">=1.52.0",
  8356. "introduction": "Google Generative AI Python SDK,用于初始化和调用 Google AI 模型接口。",
  8357. "tutorial": "pip install -U google-genai>=1.52.0,初始化 genai.Client 并调用 API。",
  8358. "input": "API Key、配置对象",
  8359. "output": "模型响应对象",
  8360. "updated_time": 1776105124,
  8361. "status": "未接入"
  8362. },
  8363. {
  8364. "id": "tools/other/huggingface",
  8365. "name": "HuggingFace",
  8366. "version": null,
  8367. "introduction": "AI 模型托管平台",
  8368. "tutorial": "安装 LoRA 模型",
  8369. "input": null,
  8370. "output": "模型文件",
  8371. "updated_time": 1776351157,
  8372. "status": "未接入"
  8373. },
  8374. {
  8375. "id": "tools/other/hugging_face",
  8376. "name": "Hugging Face",
  8377. "version": null,
  8378. "introduction": "AI 模型托管平台,用于下载模型和查看文档。",
  8379. "tutorial": "搜索并下载 checkpoint、LoRA 等模型文件。",
  8380. "input": "模型 ID",
  8381. "output": "模型文件",
  8382. "updated_time": 1776115195,
  8383. "status": "未接入"
  8384. },
  8385. {
  8386. "id": "tools/other/kling",
  8387. "name": "Kling",
  8388. "version": null,
  8389. "introduction": "AI 视频生成模型,常用于图像转视频工作流",
  8390. "tutorial": "作为工作流的一部分,用于生成视频内容",
  8391. "input": "图像或 Prompt",
  8392. "output": "视频",
  8393. "updated_time": 1775119320,
  8394. "status": "未接入"
  8395. },
  8396. {
  8397. "id": "tools/other/kling_ai",
  8398. "name": "Kling AI",
  8399. "version": "3.0",
  8400. "introduction": "专业 AI 视频生成模型,支持运动控制与唇形同步",
  8401. "tutorial": "生成视频内容,后期编辑",
  8402. "input": "文本、图像",
  8403. "output": "视频",
  8404. "updated_time": 1775042964,
  8405. "status": "未接入"
  8406. },
  8407. {
  8408. "id": "tools/other/liblib",
  8409. "name": "LibLib",
  8410. "version": null,
  8411. "introduction": "AI 模型分享与下载平台",
  8412. "tutorial": "下载模型权重",
  8413. "input": null,
  8414. "output": "模型文件",
  8415. "updated_time": 1776151718,
  8416. "status": "未接入"
  8417. },
  8418. {
  8419. "id": "tools/other/lmarena",
  8420. "name": "LMArena",
  8421. "version": null,
  8422. "introduction": "AI 模型基准测试与排行榜平台",
  8423. "tutorial": "模型性能评估与对比",
  8424. "input": "模型查询",
  8425. "output": "排名数据",
  8426. "updated_time": 1775032336,
  8427. "status": "未接入"
  8428. },
  8429. {
  8430. "id": "tools/other/ollama",
  8431. "name": "Ollama",
  8432. "version": null,
  8433. "introduction": "本地大模型运行工具",
  8434. "tutorial": "提示词扩写与反推",
  8435. "input": "文本提示",
  8436. "output": "扩写文本",
  8437. "updated_time": 1776147442,
  8438. "status": "未接入"
  8439. },
  8440. {
  8441. "id": "tools/other/shein_ai",
  8442. "name": "希音 AI",
  8443. "version": null,
  8444. "introduction": "希音推出的 AI 穿搭工具",
  8445. "tutorial": "电商商用虚拟试衣",
  8446. "input": "服装图、模特图",
  8447. "output": "试穿效果图",
  8448. "updated_time": 1774902192,
  8449. "status": "未接入"
  8450. },
  8451. {
  8452. "id": "tools/other/somake_ai",
  8453. "name": "Somake AI",
  8454. "version": null,
  8455. "introduction": "AI 生成工具环境",
  8456. "tutorial": "选择 AI 生成工具环境",
  8457. "input": null,
  8458. "output": null,
  8459. "updated_time": 1776351157,
  8460. "status": "未接入"
  8461. },
  8462. {
  8463. "id": "tools/other/supercolorpalette",
  8464. "name": "Supercolorpalette",
  8465. "version": null,
  8466. "introduction": "精准控色的专业配色工具",
  8467. "tutorial": "浏览器访问,选择配色模式后调整参数生成",
  8468. "input": "配色模式及参数",
  8469. "output": "配色方案",
  8470. "updated_time": 1774548993,
  8471. "status": "未接入"
  8472. },
  8473. {
  8474. "id": "tools/other/taofenba",
  8475. "name": "淘粉吧",
  8476. "version": null,
  8477. "introduction": "支持详细身材参数的穿搭工具",
  8478. "tutorial": "个人日常穿搭模拟",
  8479. "input": "身材参数、服装图",
  8480. "output": "穿搭效果图",
  8481. "updated_time": 1774902192,
  8482. "status": "未接入"
  8483. },
  8484. {
  8485. "id": "tools/other/text_ai",
  8486. "name": "文本 AI",
  8487. "version": null,
  8488. "introduction": "用于反推和优化 AI 生图提示词的语言模型工具",
  8489. "tutorial": "分析草图场景,生成包含光源/风格/视角/材质的专业提示词",
  8490. "input": "草图或场景描述",
  8491. "output": "优化的 AI 生图提示词",
  8492. "updated_time": 1775127828,
  8493. "status": "未接入"
  8494. },
  8495. {
  8496. "id": "tools/other/video_editing_software",
  8497. "name": "视频编辑软件",
  8498. "version": null,
  8499. "introduction": "用于合成视频的软件",
  8500. "tutorial": "合成视频",
  8501. "input": null,
  8502. "output": "视频",
  8503. "updated_time": 1775119754,
  8504. "status": "未接入"
  8505. },
  8506. {
  8507. "id": "tools/other/wearwow",
  8508. "name": "WearWow",
  8509. "version": null,
  8510. "introduction": "个人日常穿搭 AI 工具",
  8511. "tutorial": "个人日常穿搭模拟",
  8512. "input": "个人身材参数、服装图",
  8513. "output": "个人穿搭效果图",
  8514. "updated_time": 1774902192,
  8515. "status": "未接入"
  8516. },
  8517. {
  8518. "id": "tools/other/wendy",
  8519. "name": "AI 智能搭配系统(Wendy)",
  8520. "version": null,
  8521. "introduction": "个人衣橱管理及智能搭配系统",
  8522. "tutorial": "管理个人衣物并提供搭配决策建议",
  8523. "input": "衣物信息、用户偏好",
  8524. "output": "搭配建议",
  8525. "updated_time": 1774856089,
  8526. "status": "已使用"
  8527. },
  8528. {
  8529. "id": "tools/other/wenxiaobai",
  8530. "name": "问小白",
  8531. "version": null,
  8532. "introduction": "AI 提示词生成工具",
  8533. "tutorial": "生成绘画提示词",
  8534. "input": "文本",
  8535. "output": "文本提示词",
  8536. "updated_time": 1775118652,
  8537. "status": "未接入"
  8538. },
  8539. {
  8540. "id": "tools/other/windowtop",
  8541. "name": "WindowTop",
  8542. "version": null,
  8543. "introduction": "PIP 窗口管理工具,支持点击穿透",
  8544. "tutorial": "将 AI 预览窗口叠加至绘画软件上方",
  8545. "input": "窗口句柄",
  8546. "output": "叠加窗口界面",
  8547. "updated_time": 1775129850,
  8548. "status": "未接入"
  8549. },
  8550. {
  8551. "id": "tools/other/wity_ai",
  8552. "name": "Wity.ai",
  8553. "version": null,
  8554. "introduction": "专注杂志生成的新兴 AI 排版设计工具。",
  8555. "tutorial": "用于自动化杂志版面设计与生成。",
  8556. "input": "内容素材",
  8557. "output": "杂志版面文件",
  8558. "updated_time": 1775100399,
  8559. "status": "未接入"
  8560. },
  8561. {
  8562. "id": "tools/other/zynzo_ai",
  8563. "name": "Zynzo AI",
  8564. "version": null,
  8565. "introduction": "专注杂志生成的新兴 AI 排版设计工具。",
  8566. "tutorial": "用于自动化杂志版面设计与生成。",
  8567. "input": "内容素材",
  8568. "output": "杂志版面文件",
  8569. "updated_time": 1775100399,
  8570. "status": "未接入"
  8571. },
  8572. {
  8573. "id": "tools/plugin/adetailer",
  8574. "name": "ADetailer",
  8575. "version": null,
  8576. "introduction": "用于自动检测并重绘图像细节(如面部、手部)的插件。",
  8577. "tutorial": "配置检测模型、重绘参数。",
  8578. "input": "生成图像",
  8579. "output": "细节修复后的图像",
  8580. "updated_time": 1776108156,
  8581. "status": "未接入"
  8582. },
  8583. {
  8584. "id": "tools/plugin/advanced_controlnet",
  8585. "name": "Advanced-ControlNet",
  8586. "version": null,
  8587. "introduction": "高级控制网络",
  8588. "tutorial": "提供更精细的图像控制",
  8589. "input": null,
  8590. "output": null,
  8591. "updated_time": 1776074764,
  8592. "status": "未接入"
  8593. },
  8594. {
  8595. "id": "tools/plugin/advanced_live_portrait",
  8596. "name": "AdvancedLivePortrait",
  8597. "version": null,
  8598. "introduction": "ComfyUI 插件,面部表情编辑工具",
  8599. "tutorial": "ComfyUI 插件",
  8600. "input": null,
  8601. "output": null,
  8602. "updated_time": 1775038274,
  8603. "status": "未接入"
  8604. },
  8605. {
  8606. "id": "tools/plugin/advanced_refux_control",
  8607. "name": "AdvancedRefuxControl",
  8608. "version": null,
  8609. "introduction": "用于服装迁移参考控制的节点",
  8610. "tutorial": "进行服装迁移参考控制以保持服装一致性",
  8611. "input": "参考服装图、生成图",
  8612. "output": "控制信号或修正后的图像",
  8613. "updated_time": 1774782536,
  8614. "status": "未接入"
  8615. },
  8616. {
  8617. "id": "tools/plugin/checkpoint_loader",
  8618. "name": "CheckpointLoader",
  8619. "version": null,
  8620. "introduction": "用于加载基础大模型 Checkpoint 文件的节点",
  8621. "tutorial": "初始化工作流时加载所需的底模",
  8622. "input": "Checkpoint 文件路径",
  8623. "output": "模型参数、VAE、CLIP 等",
  8624. "updated_time": 1776106256,
  8625. "status": "未接入"
  8626. },
  8627. {
  8628. "id": "tools/plugin/comfy_plasma",
  8629. "name": "comfy-plasma 节点",
  8630. "version": null,
  8631. "introduction": "生成等离子纹理的节点",
  8632. "tutorial": "生成基础噪声或纹理",
  8633. "input": "参数配置",
  8634. "output": "纹理图像",
  8635. "updated_time": 1776066373,
  8636. "status": "未接入"
  8637. },
  8638. {
  8639. "id": "tools/plugin/comfyui_advanced_live_portrait",
  8640. "name": "ComfyUI-AdvancedLivePortrait",
  8641. "version": null,
  8642. "introduction": "ComfyUI 自定义节点,提供 14 个可调参数用于控制肖像表情和姿态",
  8643. "tutorial": "通过调整 rotate_pitch、blink、smile 等参数控制肖像效果",
  8644. "input": "可调参数(rotate_pitch、blink、smile 等)",
  8645. "output": "具有特定表情和姿态的肖像图像或视频",
  8646. "updated_time": 1775042011,
  8647. "status": "未接入"
  8648. },
  8649. {
  8650. "id": "tools/plugin/comfyui_controlnet",
  8651. "name": "ComfyUI ControlNet",
  8652. "version": null,
  8653. "introduction": "ComfyUI 控制网插件,用于精确控制光照",
  8654. "tutorial": "下载并集成模型,准备控制图像",
  8655. "input": "控制图像/参数",
  8656. "output": "图像",
  8657. "updated_time": 1776149431,
  8658. "status": "未接入"
  8659. },
  8660. {
  8661. "id": "tools/plugin/comfyui_essentials",
  8662. "name": "comfyui-essentials",
  8663. "version": null,
  8664. "introduction": "ComfyUI 基础功能扩展节点包",
  8665. "tutorial": "使用 Image Tile 实现自动裁剪",
  8666. "input": "大尺寸图像",
  8667. "output": "裁剪后的多张子图",
  8668. "updated_time": 1774782536,
  8669. "status": "未接入"
  8670. },
  8671. {
  8672. "id": "tools/plugin/comfyui_face_expression_node",
  8673. "name": "ComfyUI Face Expression Node",
  8674. "version": null,
  8675. "introduction": "改变图片中的面部表情",
  8676. "tutorial": "在 ComfyUI 中加载节点处理图片",
  8677. "input": "静态图片",
  8678. "output": "编辑后的静态图片",
  8679. "updated_time": 1775035189,
  8680. "status": "未接入"
  8681. },
  8682. {
  8683. "id": "tools/plugin/comfyui_florence2",
  8684. "name": "ComfyUI Florence2",
  8685. "version": null,
  8686. "introduction": "ComfyUI 下的 Florence2 视觉模型节点",
  8687. "tutorial": "AI 辅助生成提示词",
  8688. "input": "图像",
  8689. "output": "文本提示词",
  8690. "updated_time": 1776151718,
  8691. "status": "未接入"
  8692. },
  8693. {
  8694. "id": "tools/plugin/comfyui_ksampler",
  8695. "name": "ComfyUI KSampler",
  8696. "version": null,
  8697. "introduction": "ComfyUI 核心采样节点,用于执行生成",
  8698. "tutorial": "执行重打光生成并优化",
  8699. "input": "潜空间数据/参数",
  8700. "output": "图像",
  8701. "updated_time": 1776149431,
  8702. "status": "未接入"
  8703. },
  8704. {
  8705. "id": "tools/plugin/comfyui_liveportrait",
  8706. "name": "ComfyUI LivePortrait",
  8707. "version": null,
  8708. "introduction": "AI 生成/控制表情的工具",
  8709. "tutorial": "在 ComfyUI 中实现表情控制",
  8710. "input": null,
  8711. "output": null,
  8712. "updated_time": 1775026206,
  8713. "status": "未接入"
  8714. },
  8715. {
  8716. "id": "tools/plugin/comfyui_node_manager",
  8717. "name": "ComfyUI Node Manager",
  8718. "version": null,
  8719. "introduction": "ComfyUI 插件管理器,用于安装和管理自定义节点。",
  8720. "tutorial": "搜索、安装、更新 ComfyUI 节点。",
  8721. "input": "节点名称",
  8722. "output": "已安装节点",
  8723. "updated_time": 1776115195,
  8724. "status": "未接入"
  8725. },
  8726. {
  8727. "id": "tools/plugin/comfyui_upscale",
  8728. "name": "ComfyUI Upscale",
  8729. "version": null,
  8730. "introduction": "ComfyUI 放大节点",
  8731. "tutorial": "高清放大与裁切输出",
  8732. "input": "图像",
  8733. "output": "高清图像",
  8734. "updated_time": 1776151718,
  8735. "status": "未接入"
  8736. },
  8737. {
  8738. "id": "tools/plugin/cr_seamless_checker",
  8739. "name": "CR Seamless Checker",
  8740. "version": null,
  8741. "introduction": "检查纹理是否无缝的节点",
  8742. "tutorial": "将图像平铺网格化以检查接缝",
  8743. "input": "图像",
  8744. "output": "平铺预览图",
  8745. "updated_time": 1775741295,
  8746. "status": "未接入"
  8747. },
  8748. {
  8749. "id": "tools/plugin/detailer",
  8750. "name": "Detailer",
  8751. "version": null,
  8752. "introduction": "细节增强节点,常用于面部或手部修复",
  8753. "tutorial": "配合工作流提升生成图像的细节质量",
  8754. "input": "裁剪后的细节区域",
  8755. "output": "增强后的细节图像",
  8756. "updated_time": 1774860518,
  8757. "status": "未接入"
  8758. },
  8759. {
  8760. "id": "tools/plugin/efficiency_nodes",
  8761. "name": "Efficiency Nodes",
  8762. "version": null,
  8763. "introduction": "提供高效图像处理和覆盖功能的节点包",
  8764. "tutorial": "图像分割、拼接、覆盖处理",
  8765. "input": "图像",
  8766. "output": "处理后的图像",
  8767. "updated_time": 1775741295,
  8768. "status": "未接入"
  8769. },
  8770. {
  8771. "id": "tools/plugin/face_detailer",
  8772. "name": "FaceDetailer",
  8773. "version": null,
  8774. "introduction": "Impact-Pack 中的人脸细节增强节点",
  8775. "tutorial": "自动检测人脸区域并修复增强",
  8776. "input": "图像",
  8777. "output": "修复后的图像",
  8778. "updated_time": 1776106527,
  8779. "status": "未接入"
  8780. },
  8781. {
  8782. "id": "tools/plugin/face_expression_node",
  8783. "name": "Face Expression Node",
  8784. "version": null,
  8785. "introduction": "ComfyUI 用于控制图片表情的自定义节点",
  8786. "tutorial": "在 ComfyUI 工作流中加载以控制生成人物表情",
  8787. "input": "图像、表情参数",
  8788. "output": "带有特定表情的图像",
  8789. "updated_time": 1775036199,
  8790. "status": "未接入"
  8791. },
  8792. {
  8793. "id": "tools/plugin/free_memory",
  8794. "name": "FreeMemory",
  8795. "version": null,
  8796. "introduction": "用于释放显存优化的自定义节点",
  8797. "tutorial": "安装节点以优化内存使用",
  8798. "input": null,
  8799. "output": null,
  8800. "updated_time": 1774570225,
  8801. "status": "未接入"
  8802. },
  8803. {
  8804. "id": "tools/plugin/free_memory_node",
  8805. "name": "FreeMemory 节点",
  8806. "version": null,
  8807. "introduction": "ComfyUI 自定义节点,用于在工作流中手动释放显存",
  8808. "tutorial": "在长工作流中插入节点以清理未使用的显存",
  8809. "input": "当前显存状态",
  8810. "output": "释放后的显存空间",
  8811. "updated_time": 1776106022,
  8812. "status": "未接入"
  8813. },
  8814. {
  8815. "id": "tools/plugin/ic_light",
  8816. "name": "IC-Light",
  8817. "version": null,
  8818. "introduction": "实现人物与背景光照融合的插件",
  8819. "tutorial": "配置打光参数生成融合图",
  8820. "input": "人物图、背景图、光照参数",
  8821. "output": "打光融合图像",
  8822. "updated_time": 1776150256,
  8823. "status": "未接入"
  8824. },
  8825. {
  8826. "id": "tools/plugin/impact_pack",
  8827. "name": "Impact-Pack",
  8828. "version": null,
  8829. "introduction": "ComfyUI 高级影响器节点包,提供检测、细化及迭代生成功能",
  8830. "tutorial": "使用 bbox 检测模型配合 SAM 进行面部或手部的精准检测与局部重绘",
  8831. "input": "原始图像、检测模型",
  8832. "output": "检测框、掩膜、修复后的图像",
  8833. "updated_time": 1774779882,
  8834. "status": "未接入"
  8835. },
  8836. {
  8837. "id": "tools/plugin/instantid",
  8838. "name": "InstantID",
  8839. "version": null,
  8840. "introduction": "用于身份保持生成,无需训练即可保持人物身份特征",
  8841. "tutorial": "身份保持生成",
  8842. "input": "人物面部图像",
  8843. "output": "保持身份的特征图",
  8844. "updated_time": 1776112310,
  8845. "status": "未接入"
  8846. },
  8847. {
  8848. "id": "tools/plugin/ip_adapter",
  8849. "name": "IP-Adapter",
  8850. "version": null,
  8851. "introduction": "专门用于图片风格迁移",
  8852. "tutorial": "风格控制",
  8853. "input": "参考图像",
  8854. "output": "风格迁移后的图像",
  8855. "updated_time": 1775566027,
  8856. "status": "未接入"
  8857. },
  8858. {
  8859. "id": "tools/plugin/kj_nodes",
  8860. "name": "KJ Nodes",
  8861. "version": null,
  8862. "introduction": "ComfyUI 自定义节点包,简化工作流连线",
  8863. "tutorial": "替代复杂原生节点连线",
  8864. "input": "原图 + 蒙版",
  8865. "output": "局部重绘图像",
  8866. "updated_time": 1775132858,
  8867. "status": "未接入"
  8868. },
  8869. {
  8870. "id": "tools/plugin/k_sampler",
  8871. "name": "KSampler",
  8872. "version": null,
  8873. "introduction": "核心采样器节点,执行去噪过程生成图像",
  8874. "tutorial": "接收模型与潜空间数据进行采样计算",
  8875. "input": "模型、潜空间噪声、采样参数",
  8876. "output": "生成后的潜空间数据或图像",
  8877. "updated_time": 1776106256,
  8878. "status": "未接入"
  8879. },
  8880. {
  8881. "id": "tools/plugin/lora_loader",
  8882. "name": "LoRA Loader",
  8883. "version": null,
  8884. "introduction": "用于加载 LoRA 模型以调整生成风格或细节的节点",
  8885. "tutorial": "连接基础模型与采样器,注入 LoRA 权重",
  8886. "input": "基础模型、LoRA 文件、权重值",
  8887. "output": "调整后的模型数据",
  8888. "updated_time": 1776106256,
  8889. "status": "未接入"
  8890. },
  8891. {
  8892. "id": "tools/plugin/lora_plugin",
  8893. "name": "LoRA 插件",
  8894. "version": null,
  8895. "introduction": "用于在 WebUI 中加载和管理 LoRA 模型的插件",
  8896. "tutorial": "加载 LoRA 文件并调整权重",
  8897. "input": "LoRA 文件 (.safetensors)",
  8898. "output": "激活的模型模块",
  8899. "updated_time": 1775735398,
  8900. "status": "未接入"
  8901. },
  8902. {
  8903. "id": "tools/plugin/mask_editor",
  8904. "name": "Mask Editor",
  8905. "version": null,
  8906. "introduction": "用于创建编辑遮罩区域的节点",
  8907. "tutorial": "创建遮罩区域指定重绘范围",
  8908. "input": "图像",
  8909. "output": "遮罩",
  8910. "updated_time": 1776150710,
  8911. "status": "未接入"
  8912. },
  8913. {
  8914. "id": "tools/plugin/mtb_nodes_deep_bump",
  8915. "name": "MTB Nodes (Deep Bump 节点)",
  8916. "version": null,
  8917. "introduction": "用于生成法线贴图等 PBR 通道的节点包",
  8918. "tutorial": "颜色贴图转法线贴图",
  8919. "input": "颜色贴图",
  8920. "output": "法线贴图/高度贴图",
  8921. "updated_time": 1776066373,
  8922. "status": "未接入"
  8923. },
  8924. {
  8925. "id": "tools/plugin/openpose",
  8926. "name": "OpenPose",
  8927. "version": null,
  8928. "introduction": "姿态估计模型,常作为 ControlNet 的预处理器使用。",
  8929. "tutorial": "提取人物姿态骨架图用于控制生成。",
  8930. "input": "人物图像",
  8931. "output": "姿态骨架图",
  8932. "updated_time": 1776115194,
  8933. "status": "未接入"
  8934. },
  8935. {
  8936. "id": "tools/plugin/reactor",
  8937. "name": "ReActor",
  8938. "version": null,
  8939. "introduction": "快速换脸",
  8940. "tutorial": "面部替换",
  8941. "input": null,
  8942. "output": null,
  8943. "updated_time": 1776074764,
  8944. "status": "未接入"
  8945. },
  8946. {
  8947. "id": "tools/plugin/redux",
  8948. "name": "Redux",
  8949. "version": null,
  8950. "introduction": "用于参考图像风格迁移的节点技术",
  8951. "tutorial": "协同 Fill 实现换装风格迁移",
  8952. "input": "参考图像",
  8953. "output": "风格特征",
  8954. "updated_time": 1776150710,
  8955. "status": "未接入"
  8956. },
  8957. {
  8958. "id": "tools/plugin/rgthree_nodes",
  8959. "name": "rgthree 节点",
  8960. "version": null,
  8961. "introduction": "ComfyUI 常用功能增强插件节点",
  8962. "tutorial": "后处理管理及工作流优化",
  8963. "input": "图像、中间数据",
  8964. "output": "处理后的图像或数据",
  8965. "updated_time": 1776066634,
  8966. "status": "未接入"
  8967. },
  8968. {
  8969. "id": "tools/plugin/sam",
  8970. "name": "SAM",
  8971. "version": null,
  8972. "introduction": "Segment Anything Model,用于高精度图像分割",
  8973. "tutorial": "在 ComfyUI 中用于抠脸或分割特定区域",
  8974. "input": "图像",
  8975. "output": "分割掩码",
  8976. "updated_time": 1776151469,
  8977. "status": "未接入"
  8978. },
  8979. {
  8980. "id": "tools/plugin/style_adapter",
  8981. "name": "Style Adapter",
  8982. "version": null,
  8983. "introduction": "用于适配和迁移图像风格的插件或模型组件",
  8984. "tutorial": "在游戏素材生成中辅助统一画面风格",
  8985. "input": "风格参考图",
  8986. "output": "风格化图像",
  8987. "updated_time": 1775565163,
  8988. "status": "未接入"
  8989. },
  8990. {
  8991. "id": "tools/plugin/texture_viewer",
  8992. "name": "TextureViewer",
  8993. "version": null,
  8994. "introduction": "基于 threejs 的 3D 贴图预览节点",
  8995. "tutorial": "在 3D 几何体上预览 2D 纹理效果",
  8996. "input": "纹理图像、材质参数",
  8997. "output": "3D 预览视图",
  8998. "updated_time": 1775741295,
  8999. "status": "未接入"
  9000. },
  9001. {
  9002. "id": "tools/plugin/tiled_diffusion",
  9003. "name": "Tiled Diffusion",
  9004. "version": null,
  9005. "introduction": "SD 扩展,用于高清放大和显存优化",
  9006. "tutorial": "启用以优化显存并进行高清放大",
  9007. "input": "低分辨率图像",
  9008. "output": "高分辨率图像",
  9009. "updated_time": 1774855988,
  9010. "status": "未接入"
  9011. },
  9012. {
  9013. "id": "tools/plugin/tiled_vae",
  9014. "name": "Tiled VAE",
  9015. "version": null,
  9016. "introduction": "分块处理 VAE 解码的技术或节点,降低大图生成显存占用",
  9017. "tutorial": "启用分块解码模式处理高分辨率图像",
  9018. "input": "潜空间图像数据",
  9019. "output": "分块解码后的像素图像",
  9020. "updated_time": 1776106022,
  9021. "status": "未接入"
  9022. },
  9023. {
  9024. "id": "tools/plugin/ultimate_sd_upscale",
  9025. "name": "Ultimate SD Upscale",
  9026. "version": null,
  9027. "introduction": "高清放大",
  9028. "tutorial": "图像超分辨率放大",
  9029. "input": null,
  9030. "output": null,
  9031. "updated_time": 1776074764,
  9032. "status": "未接入"
  9033. },
  9034. {
  9035. "id": "tools/plugin/vae_decode",
  9036. "name": "VAE 解码",
  9037. "version": null,
  9038. "introduction": "将潜空间数据解码为像素图像",
  9039. "tutorial": "生成控制引导图像",
  9040. "input": "潜空间数据",
  9041. "output": "像素图像",
  9042. "updated_time": 1776352810,
  9043. "status": "未接入"
  9044. },
  9045. {
  9046. "id": "tools/plugin/video_color_grading",
  9047. "name": "VideoColorGrading",
  9048. "version": null,
  9049. "introduction": "视频颜色分级处理节点",
  9050. "tutorial": "生成 3D 颜色 LUT 并应用于视频",
  9051. "input": "视频帧,参考图像",
  9052. "output": "视频",
  9053. "updated_time": 1776351157,
  9054. "status": "未接入"
  9055. },
  9056. {
  9057. "id": "tools/plugin/videox_fun",
  9058. "name": "VideoX-Fun",
  9059. "version": null,
  9060. "introduction": "ComfyUI 视频生成节点",
  9061. "tutorial": "安装节点以支持视频工作流",
  9062. "input": "节点配置",
  9063. "output": "视频处理功能",
  9064. "updated_time": 1776164964,
  9065. "status": "未接入"
  9066. },
  9067. {
  9068. "id": "tools/plugin/was_node_suite",
  9069. "name": "WAS Node Suite",
  9070. "version": null,
  9071. "introduction": "ComfyUI 综合功能节点包,含色阶调整等",
  9072. "tutorial": "图像色阶调整,处理",
  9073. "input": "图像",
  9074. "output": "处理后的图像",
  9075. "updated_time": 1776066373,
  9076. "status": "未接入"
  9077. },
  9078. {
  9079. "id": "tools/plugin/wd14",
  9080. "name": "WD14",
  9081. "version": null,
  9082. "introduction": "用于反推提示词的标签模型",
  9083. "tutorial": "反推提示词辅助生成",
  9084. "input": "图像",
  9085. "output": "提示词文本",
  9086. "updated_time": 1775131527,
  9087. "status": "未接入"
  9088. },
  9089. {
  9090. "id": "tools/workflow/ai_real_scene_synthesis_workflow",
  9091. "name": "AI 实景合成工作流",
  9092. "version": null,
  9093. "introduction": "用于实景与 AI 元素合成的工作流程",
  9094. "tutorial": "结合真实场景照片与 AI 生成内容进行合成",
  9095. "input": "实景图像、提示词",
  9096. "output": "合成图像",
  9097. "updated_time": 1775101154,
  9098. "status": "未接入"
  9099. },
  9100. {
  9101. "id": "tools/workflow/comfyui",
  9102. "name": "ComfyUI",
  9103. "version": null,
  9104. "introduction": "基于节点流程的 Stable Diffusion 图形用户界面,支持自定义工作流",
  9105. "tutorial": "通过连接节点构建生成流程,加载模型和插件",
  9106. "input": "提示词/模型/参数/节点配置",
  9107. "output": "生成图像/视频",
  9108. "updated_time": 1775566027,
  9109. "status": "未接入"
  9110. },
  9111. {
  9112. "id": "tools/workflow/comfy_ui",
  9113. "name": "Comfy UI",
  9114. "version": null,
  9115. "introduction": "支持节点式工作流搭建",
  9116. "tutorial": "节点式工作流搭建",
  9117. "input": "节点配置",
  9118. "output": "生成图像",
  9119. "updated_time": 1775046191,
  9120. "status": "未接入"
  9121. },
  9122. {
  9123. "id": "tools/workflow/comfyui_qwen_outfit_transfer",
  9124. "name": "ComfyUI Qwen Outfit Transfer",
  9125. "version": null,
  9126. "introduction": "基于 ComfyUI 的虚拟试衣方案,细节最佳免费",
  9127. "tutorial": "虚拟试衣间体验",
  9128. "input": "用户及服装图像",
  9129. "output": "试衣图像",
  9130. "updated_time": 1774862362,
  9131. "status": "未接入"
  9132. },
  9133. {
  9134. "id": "tools/workflow/comfyui_uso",
  9135. "name": "ComfyUI USO",
  9136. "version": null,
  9137. "introduction": "统一风格生成,支持单/双风格混合",
  9138. "tutorial": "在 ComfyUI 中加载 USO 节点",
  9139. "input": "风格图像",
  9140. "output": "生成图像",
  9141. "updated_time": 1775130920,
  9142. "status": "未接入"
  9143. },
  9144. {
  9145. "id": "tools/workflow/launch_comfy_env",
  9146. "name": "launch_comfy_env",
  9147. "version": null,
  9148. "introduction": "启动 ComfyUI 运行环境的辅助工具",
  9149. "tutorial": "配置环境变量后启动环境",
  9150. "input": "环境变量配置",
  9151. "output": "环境启动状态",
  9152. "updated_time": 1775565828,
  9153. "status": "未接入"
  9154. },
  9155. {
  9156. "id": "tools/workflow/runcomfy_workflow_executor",
  9157. "name": "runcomfy_workflow_executor",
  9158. "version": null,
  9159. "introduction": "执行 ComfyUI 工作流的工具",
  9160. "tutorial": "执行已配置的工作流",
  9161. "input": "工作流定义及输入图像",
  9162. "output": "生成结果",
  9163. "updated_time": 1775565828,
  9164. "status": "未接入"
  9165. },
  9166. {
  9167. "id": "tools/workflow/scenario_gg",
  9168. "name": "Scenario.gg",
  9169. "version": null,
  9170. "introduction": "工作流平台类工具,提供完整设计流程",
  9171. "tutorial": "完整设计流程",
  9172. "input": null,
  9173. "output": null,
  9174. "updated_time": 1774859537,
  9175. "status": "未接入"
  9176. },
  9177. {
  9178. "id": "tools/workflow/sd_webui",
  9179. "name": "SD WebUI",
  9180. "version": null,
  9181. "introduction": "Stable Diffusion 网页用户界面",
  9182. "tutorial": "本地部署的图像生成与管理",
  9183. "input": "提示词/参数/模型",
  9184. "output": "图像",
  9185. "updated_time": 1776149971,
  9186. "status": "未接入"
  9187. },
  9188. {
  9189. "id": "tools/workflow/toolhub",
  9190. "name": "ToolHub",
  9191. "version": null,
  9192. "introduction": "工具管理服务,用于检查工具链状态和可用性",
  9193. "tutorial": "调用 toolhub_health 确认服务可用",
  9194. "input": "服务健康检查请求",
  9195. "output": "服务状态信息",
  9196. "updated_time": 1775565914,
  9197. "status": "未接入"
  9198. },
  9199. {
  9200. "id": "tools/workflow/uno_comf",
  9201. "name": "UNO-Comf",
  9202. "version": null,
  9203. "introduction": "游戏/虚拟角色换装工作流",
  9204. "tutorial": "ComfyUI 自定义工作流",
  9205. "input": "角色模型、服装资产",
  9206. "output": "换装图像",
  9207. "updated_time": 1774860911,
  9208. "status": "未接入"
  9209. },
  9210. {
  9211. "id": "tools/workflow/weavy_ai",
  9212. "name": "Weavy AI",
  9213. "version": null,
  9214. "introduction": "工作流平台类工具,提供完整设计流程",
  9215. "tutorial": "完整设计流程",
  9216. "input": null,
  9217. "output": null,
  9218. "updated_time": 1774859537,
  9219. "status": "未接入"
  9220. },
  9221. {
  9222. "id": "Topview AI",
  9223. "name": "Topview AI",
  9224. "version": "tao_dev_1",
  9225. "introduction": "专用产品摄影 AI 工具,支持手部珠宝、戒指、耳环等特写摄影场景,内置商业摄影构图模板",
  9226. "tutorial": "",
  9227. "input": "",
  9228. "output": "",
  9229. "updated_time": 1776667149,
  9230. "status": "未接入"
  9231. },
  9232. {
  9233. "id": "Trellis 2",
  9234. "name": "Trellis 2",
  9235. "version": "tao_dev_1",
  9236. "introduction": "Trellis 2核心技术配合Blender进行多软件模型重构,攻克自动拓扑难题",
  9237. "tutorial": "",
  9238. "input": "",
  9239. "output": "",
  9240. "updated_time": 1776667149,
  9241. "status": "未接入"
  9242. },
  9243. {
  9244. "id": "UE5",
  9245. "name": "UE5",
  9246. "version": "tao_dev_1",
  9247. "introduction": "地编项目设置写实布光,包含外部光照/光束/粉尘/体积雾/补光系统,实现物理正确的室内光照",
  9248. "tutorial": "",
  9249. "input": "",
  9250. "output": "",
  9251. "updated_time": 1776667149,
  9252. "status": "未接入"
  9253. },
  9254. {
  9255. "id": "UE5/D5渲染器",
  9256. "name": "UE5/D5渲染器",
  9257. "version": "tao_dev_1",
  9258. "introduction": "调整Directional Light的角度(低角度模拟日出/日落)和色温(2700K-3500K暖光),配合Exponential Height Fog实现大气散射效果",
  9259. "tutorial": "",
  9260. "input": "",
  9261. "output": "",
  9262. "updated_time": 1776667149,
  9263. "status": "未接入"
  9264. },
  9265. {
  9266. "id": "UE5 Lumen",
  9267. "name": "UE5 Lumen",
  9268. "version": "tao_dev_1",
  9269. "introduction": "启用Exponential Height Fog + Directional Light的Volumetric Scattering参数,配合后期处理体积中的Bloom设置实现实时体积光",
  9270. "tutorial": "",
  9271. "input": "",
  9272. "output": "",
  9273. "updated_time": 1776667149,
  9274. "status": "未接入"
  9275. },
  9276. {
  9277. "id": "UtopaiStudios",
  9278. "name": "UtopaiStudios",
  9279. "version": "tao_dev_1",
  9280. "introduction": "通过分幕次提示词构建完整的生物发光奇幻世界,如'glowing bioluminescent moss、cyan light ripples'",
  9281. "tutorial": "",
  9282. "input": "",
  9283. "output": "",
  9284. "updated_time": 1776667149,
  9285. "status": "未接入"
  9286. },
  9287. {
  9288. "id": "Venngage AI",
  9289. "name": "Venngage AI",
  9290. "version": "tao_dev_1",
  9291. "introduction": "Brand Kit 功能:上传 logo、设定颜色和字体,AI 在生成信息图时自动应用品牌套件",
  9292. "tutorial": "",
  9293. "input": "",
  9294. "output": "",
  9295. "updated_time": 1776667149,
  9296. "status": "未接入"
  9297. },
  9298. {
  9299. "id": "Veo-3",
  9300. "name": "Veo-3",
  9301. "version": "tao_dev_1",
  9302. "introduction": "使用超详细 JSON 提示词描述动物运动的物理细节(powerful realistic gallop cycle/complex physics simulation for hair/swirling dust cloud),配合情绪基调(Wild, determined, powerful)和风格参数(Cinematic western, photorealistic CGI, 8K)",
  9303. "tutorial": "",
  9304. "input": "",
  9305. "output": "",
  9306. "updated_time": 1776667149,
  9307. "status": "未接入"
  9308. },
  9309. {
  9310. "id": "Veo 3.1 Extend",
  9311. "name": "Veo 3.1 Extend",
  9312. "version": "tao_dev_1",
  9313. "introduction": "锚定真实图像的运动,延长时间轴,保持面部和产品稳定,添加自然眨眼和手势动作,输出稳定的 AI UGC 视频",
  9314. "tutorial": "",
  9315. "input": "",
  9316. "output": "",
  9317. "updated_time": 1776667149,
  9318. "status": "未接入"
  9319. },
  9320. {
  9321. "id": "Veo 3.1 Extend + MakeUGC",
  9322. "name": "Veo 3.1 Extend + MakeUGC",
  9323. "version": "tao_dev_1",
  9324. "introduction": "上传 UGC 风格自拍或产品持握镜头 → Veo 3.1 Extend 锚定运动到真实图像 → 延长时间轴保持面部和产品稳定 → 添加自然眨眼和手势",
  9325. "tutorial": "",
  9326. "input": "",
  9327. "output": "",
  9328. "updated_time": 1776667149,
  9329. "status": "未接入"
  9330. },
  9331. {
  9332. "id": "VRay 6.0",
  9333. "name": "VRay 6.0",
  9334. "version": "tao_dev_1",
  9335. "introduction": "配合 SU/犀牛/CAD 模型,通过 VRay 6.0 渲染器输出室内全景图",
  9336. "tutorial": "",
  9337. "input": "",
  9338. "output": "",
  9339. "updated_time": 1776667149,
  9340. "status": "未接入"
  9341. },
  9342. {
  9343. "id": "Wan2.2 Animate + ComfyUI",
  9344. "name": "Wan2.2 Animate + ComfyUI",
  9345. "version": "tao_dev_1",
  9346. "introduction": "利用 Wan2.2 Animate 的精准人物替换能力,将头部区域替换为指定抽象视觉元素,保持身体其余部分不变",
  9347. "tutorial": "",
  9348. "input": "",
  9349. "output": "",
  9350. "updated_time": 1776667149,
  9351. "status": "未接入"
  9352. },
  9353. {
  9354. "id": "WanAnimate(ComfyUI工作流)",
  9355. "name": "WanAnimate(ComfyUI工作流)",
  9356. "version": "tao_dev_1",
  9357. "introduction": "安装WanVideoWrapper和kjnode → 下载Wan Animate模型 → 输入参考视频(含目标表情和动作)+ 目标人物图像 → 执行迁移 → 输出带表情和动作的视频;精准同步原始角色的每一个微表情和口型",
  9358. "tutorial": "",
  9359. "input": "",
  9360. "output": "",
  9361. "updated_time": 1776666487,
  9362. "status": "未接入"
  9363. },
  9364. {
  9365. "id": "Wav2Lip / SadTalker(开源唇形同步模型)",
  9366. "name": "Wav2Lip / SadTalker(开源唇形同步模型)",
  9367. "version": "tao_dev_1",
  9368. "introduction": "输入角色静态图或视频帧加音频文件,自动生成口型与音频同步的角色视频",
  9369. "tutorial": "",
  9370. "input": "",
  9371. "output": "",
  9372. "updated_time": 1776667149,
  9373. "status": "未接入"
  9374. },
  9375. {
  9376. "id": "Whisk_Veo3",
  9377. "name": "Whisk_Veo3",
  9378. "version": "tao_dev_1",
  9379. "introduction": "将静态插画风格转化为动态视觉诗歌,深蓝色洋流在天空中缓缓旋转,油画笔触流动效果",
  9380. "tutorial": "",
  9381. "input": "",
  9382. "output": "",
  9383. "updated_time": 1776667149,
  9384. "status": "未接入"
  9385. },
  9386. {
  9387. "id": "White-box-Cartoonization",
  9388. "name": "White-box-Cartoonization",
  9389. "version": "tao_dev_1",
  9390. "introduction": "基于 White-box-Cartoonization 开源项目,通过表面表示、结构表示、纹理表示三个分支分别提取图像的不同层次特征,自动完成卡通化转换,支持本地部署",
  9391. "tutorial": "",
  9392. "input": "",
  9393. "output": "",
  9394. "updated_time": 1776667149,
  9395. "status": "未接入"
  9396. },
  9397. {
  9398. "id": "X平台付费用户图片拼接功能",
  9399. "name": "X平台付费用户图片拼接功能",
  9400. "version": "tao_dev_1",
  9401. "introduction": "将完整图片切割为4张按顺序上传到X平台,付费用户发布后点击推文时图片自动拼接成完整长图,形成创意彩蛋效果",
  9402. "tutorial": "",
  9403. "input": "",
  9404. "output": "",
  9405. "updated_time": 1776667149,
  9406. "status": "未接入"
  9407. },
  9408. {
  9409. "id": "yapper_so",
  9410. "name": "yapper_so",
  9411. "version": "tao_dev_1",
  9412. "introduction": "通过AI工具实现现实场景的超现实转换,如'墙壁变成颜色、地板变成银河系'的视觉效果",
  9413. "tutorial": "",
  9414. "input": "",
  9415. "output": "",
  9416. "updated_time": 1776667149,
  9417. "status": "未接入"
  9418. },
  9419. {
  9420. "id": "yciyun.com 在线词云工具",
  9421. "name": "yciyun.com 在线词云工具",
  9422. "version": "tao_dev_1",
  9423. "introduction": "免费在线词云生成网站,输入文本后选择样式和形状,调整参数后导出,效果接近 Python 生成,无需编程基础",
  9424. "tutorial": "",
  9425. "input": "",
  9426. "output": "",
  9427. "updated_time": 1776667149,
  9428. "status": "未接入"
  9429. },
  9430. {
  9431. "id": "万兴剧厂",
  9432. "name": "万兴剧厂",
  9433. "version": "tao_dev_1",
  9434. "introduction": "AI 漫剧工具,生成符合人设的角色外观、细腻自然的场景、具有辨识度的道具素材,用于后续分镜图/分镜视频生成",
  9435. "tutorial": "",
  9436. "input": "",
  9437. "output": "",
  9438. "updated_time": 1776666846,
  9439. "status": "未接入"
  9440. },
  9441. {
  9442. "id": "专业设计工具(Illustrator/Figma)手动编排",
  9443. "name": "专业设计工具(Illustrator/Figma)手动编排",
  9444. "version": "tao_dev_1",
  9445. "introduction": "在Illustrator或Figma中使用网格系统规划版面,手动绘制圆形/方形/圆角矩形格子容器,添加箭头引线连接相关元素,制作环形/扇形统计图",
  9446. "tutorial": "",
  9447. "input": "",
  9448. "output": "",
  9449. "updated_time": 1776667149,
  9450. "status": "未接入"
  9451. },
  9452. {
  9453. "id": "专用图片分割工具",
  9454. "name": "专用图片分割工具",
  9455. "version": "tao_dev_1",
  9456. "introduction": "输入宫格大图 + 配置行列数(如 3×3)→ 自动计算切割坐标 → 精准切割输出 N 张独立子图,按序命名保存",
  9457. "tutorial": "",
  9458. "input": "",
  9459. "output": "",
  9460. "updated_time": 1776667149,
  9461. "status": "未接入"
  9462. },
  9463. {
  9464. "id": "云展网套用现成排版",
  9465. "name": "云展网套用现成排版",
  9466. "version": "tao_dev_1",
  9467. "introduction": "在云展网搜索企业内刊/画册模板,套用现成排版方案,支持PDF/PPT一键转电子刊",
  9468. "tutorial": "",
  9469. "input": "",
  9470. "output": "",
  9471. "updated_time": 1776667149,
  9472. "status": "未接入"
  9473. },
  9474. {
  9475. "id": "免费 Gaussian Splat 查看器",
  9476. "name": "免费 Gaussian Splat 查看器",
  9477. "version": "tao_dev_1",
  9478. "introduction": "在线查看器,支持加载和浏览 Gaussian Splat 格式的 3D 场景",
  9479. "tutorial": "",
  9480. "input": "",
  9481. "output": "",
  9482. "updated_time": 1776667149,
  9483. "status": "未接入"
  9484. },
  9485. {
  9486. "id": "全景图转短视频工作流",
  9487. "name": "全景图转短视频工作流",
  9488. "version": "tao_dev_1",
  9489. "introduction": "将 360 全景图转换为短视频格式,适配社交媒体传播",
  9490. "tutorial": "",
  9491. "input": "",
  9492. "output": "",
  9493. "updated_time": 1776667149,
  9494. "status": "未接入"
  9495. },
  9496. {
  9497. "id": "剪映/PR + 猫meme素材库",
  9498. "name": "剪映/PR + 猫meme素材库",
  9499. "version": "tao_dev_1",
  9500. "introduction": "将预分割透明通道的猫meme绿幕素材导入时间轴,在情绪节点处替换对应表情的猫咪素材,通过色度抠图实现无缝替换",
  9501. "tutorial": "",
  9502. "input": "",
  9503. "output": "",
  9504. "updated_time": 1776667149,
  9505. "status": "未接入"
  9506. },
  9507. {
  9508. "id": "剪映微笑应用",
  9509. "name": "剪映微笑应用",
  9510. "version": "tao_dev_1",
  9511. "introduction": "导入人物视频或图片 → 找到特效面板中的微笑应用 → 调整微笑强度 → 预览效果 → 导出视频;一键将人物表情改为微笑,适合短视频制作",
  9512. "tutorial": "",
  9513. "input": "",
  9514. "output": "",
  9515. "updated_time": 1776666487,
  9516. "status": "未接入"
  9517. },
  9518. {
  9519. "id": "剪映/醒图APP",
  9520. "name": "剪映/醒图APP",
  9521. "version": "tao_dev_1",
  9522. "introduction": "手机端AI抠图功能,长按图片或使用抠图工具自动识别猫咪主体并去除背景",
  9523. "tutorial": "",
  9524. "input": "",
  9525. "output": "",
  9526. "updated_time": 1776667149,
  9527. "status": "未接入"
  9528. },
  9529. {
  9530. "id": "即梦4.0",
  9531. "name": "即梦4.0",
  9532. "version": "tao_dev_1",
  9533. "introduction": "一句指令秒合成,支持多图组合、多图融合、交互替换",
  9534. "tutorial": "",
  9535. "input": "",
  9536. "output": "",
  9537. "updated_time": 1776667149,
  9538. "status": "未接入"
  9539. },
  9540. {
  9541. "id": "即梦 4.0 / Midjourney",
  9542. "name": "即梦 4.0 / Midjourney",
  9543. "version": "tao_dev_1",
  9544. "introduction": "通过 --ar 参数控制画幅比例,结合微距摄影提示词生成手持产品特写",
  9545. "tutorial": "",
  9546. "input": "",
  9547. "output": "",
  9548. "updated_time": 1776667149,
  9549. "status": "未接入"
  9550. },
  9551. {
  9552. "id": "即梦 4.0(垫图模式)",
  9553. "name": "即梦 4.0(垫图模式)",
  9554. "version": "tao_dev_1",
  9555. "introduction": "上传手部动作参考图(图1)+ 产品白底图(图2),输入咒语「根据图1手拿产品的手部动作,生成一个手拿图2产品的图,保持图1的角度」,AI 自动完成角度迁移与产品替换",
  9556. "tutorial": "",
  9557. "input": "",
  9558. "output": "",
  9559. "updated_time": 1776667149,
  9560. "status": "未接入"
  9561. },
  9562. {
  9563. "id": "即梦AI",
  9564. "name": "即梦AI",
  9565. "version": "tao_dev_1",
  9566. "introduction": "使用人设提示词或参考图功能(角色特征/智能参考)保持人物一致性",
  9567. "tutorial": "",
  9568. "input": "",
  9569. "output": "",
  9570. "updated_time": 1776666846,
  9571. "status": "未接入"
  9572. },
  9573. {
  9574. "id": "即梦 AI + DeepSeek",
  9575. "name": "即梦 AI + DeepSeek",
  9576. "version": "tao_dev_1",
  9577. "introduction": "DeepSeek 生成分镜脚本,即梦 AI 逐帧生成图像,通过角色特征参考保持一致性",
  9578. "tutorial": "",
  9579. "input": "",
  9580. "output": "",
  9581. "updated_time": 1776666846,
  9582. "status": "未接入"
  9583. },
  9584. {
  9585. "id": "即梦 AI(Dreamina)",
  9586. "name": "即梦 AI(Dreamina)",
  9587. "version": "tao_dev_1",
  9588. "introduction": "输入拟人化角色设定提示词,结合角色特征参考图保持一致性",
  9589. "tutorial": "",
  9590. "input": "",
  9591. "output": "",
  9592. "updated_time": 1776666846,
  9593. "status": "未接入"
  9594. },
  9595. {
  9596. "id": "即梦AI / Dreamina",
  9597. "name": "即梦AI / Dreamina",
  9598. "version": "tao_dev_1",
  9599. "introduction": "利用平台的多图生成功能,输入情绪变量列表批量生成",
  9600. "tutorial": "",
  9601. "input": "",
  9602. "output": "",
  9603. "updated_time": 1776667149,
  9604. "status": "未接入"
  9605. },
  9606. {
  9607. "id": "即梦AI(Jimeng AI)",
  9608. "name": "即梦AI(Jimeng AI)",
  9609. "version": "tao_dev_1",
  9610. "introduction": "通过结构化提示词在同一画布内强制构建3x3九宫格布局,设定统一光影基调,通过语义描述为每一格赋予不同情绪指令,遵循'特征锁死—空间构建—意图注入'逻辑",
  9611. "tutorial": "",
  9612. "input": "",
  9613. "output": "",
  9614. "updated_time": 1776667149,
  9615. "status": "未接入"
  9616. },
  9617. {
  9618. "id": "即梦AI / Nano Banana 2",
  9619. "name": "即梦AI / Nano Banana 2",
  9620. "version": "tao_dev_1",
  9621. "introduction": "在角色描述中锁定外观特征,仅修改服装相关描述词",
  9622. "tutorial": "",
  9623. "input": "",
  9624. "output": "",
  9625. "updated_time": 1776667149,
  9626. "status": "未接入"
  9627. },
  9628. {
  9629. "id": "即梦AI / Seedance 2.0",
  9630. "name": "即梦AI / Seedance 2.0",
  9631. "version": "tao_dev_1",
  9632. "introduction": "在提示词中直接描述多格拼贴布局(如'5只猫咪并排,每只穿不同职业服装')→ 一次性生成拼贴图",
  9633. "tutorial": "",
  9634. "input": "",
  9635. "output": "",
  9636. "updated_time": 1776667149,
  9637. "status": "未接入"
  9638. },
  9639. {
  9640. "id": "即梦AI一致性人物场景图片",
  9641. "name": "即梦AI一致性人物场景图片",
  9642. "version": "tao_dev_1",
  9643. "introduction": "配合分镜画面提示词、脚本分镜模板,支持单人和多人场景生成",
  9644. "tutorial": "",
  9645. "input": "",
  9646. "output": "",
  9647. "updated_time": 1776667149,
  9648. "status": "未接入"
  9649. },
  9650. {
  9651. "id": "即梦AI参考图模式",
  9652. "name": "即梦AI参考图模式",
  9653. "version": "tao_dev_1",
  9654. "introduction": "开启参考图模式后AI自动提取主体特征,无需手动抠图即可在生成中保持主体一致性",
  9655. "tutorial": "",
  9656. "input": "",
  9657. "output": "",
  9658. "updated_time": 1776667149,
  9659. "status": "未接入"
  9660. },
  9661. {
  9662. "id": "即梦 AI / 可灵",
  9663. "name": "即梦 AI / 可灵",
  9664. "version": "tao_dev_1",
  9665. "introduction": "通过提示词描述符号化元素,结合图片参考生成面部消解的意象化人物",
  9666. "tutorial": "",
  9667. "input": "",
  9668. "output": "",
  9669. "updated_time": 1776667149,
  9670. "status": "未接入"
  9671. },
  9672. {
  9673. "id": "即梦AI故事创作功能",
  9674. "name": "即梦AI故事创作功能",
  9675. "version": "tao_dev_1",
  9676. "introduction": "输入故事脚本和角色设定,使用故事创作功能生成图生视频,全程保持角色一致性",
  9677. "tutorial": "",
  9678. "input": "",
  9679. "output": "",
  9680. "updated_time": 1776667149,
  9681. "status": "未接入"
  9682. },
  9683. {
  9684. "id": "即梦 AI / 文生图工具",
  9685. "name": "即梦 AI / 文生图工具",
  9686. "version": "tao_dev_1",
  9687. "introduction": "写实风格 + 超清画质 + 超细节 + 电影质感的中文提示词组合",
  9688. "tutorial": "",
  9689. "input": "",
  9690. "output": "",
  9691. "updated_time": 1776666846,
  9692. "status": "未接入"
  9693. },
  9694. {
  9695. "id": "即梦AI + 结构化提示词模板",
  9696. "name": "即梦AI + 结构化提示词模板",
  9697. "version": "tao_dev_1",
  9698. "introduction": "将食材名称输入到预设的博物馆级设计提示词模板中,AI自动完成信息结构整理和视觉设计,输出包含多个信息模块的完整信息卡片",
  9699. "tutorial": "",
  9700. "input": "",
  9701. "output": "",
  9702. "updated_time": 1776667149,
  9703. "status": "未接入"
  9704. },
  9705. {
  9706. "id": "即梦 / Gemini",
  9707. "name": "即梦 / Gemini",
  9708. "version": "tao_dev_1",
  9709. "introduction": "提示词关键词:ultra close-up beauty portrait / macro details + 指定局部部位填充画面",
  9710. "tutorial": "",
  9711. "input": "",
  9712. "output": "",
  9713. "updated_time": 1776667149,
  9714. "status": "未接入"
  9715. },
  9716. {
  9717. "id": "即梦Seedance2.0",
  9718. "name": "即梦Seedance2.0",
  9719. "version": "tao_dev_1",
  9720. "introduction": "在即梦平台选择 Seedance 2.0 模型,上传首帧(换装前)和尾帧(换装后)图像,AI自动生成中间丝滑变装过渡视频",
  9721. "tutorial": "",
  9722. "input": "",
  9723. "output": "",
  9724. "updated_time": 1776667149,
  9725. "status": "未接入"
  9726. },
  9727. {
  9728. "id": "即梦/可灵/Flux",
  9729. "name": "即梦/可灵/Flux",
  9730. "version": "tao_dev_1",
  9731. "introduction": "输入科技感场景描述,选择暗色调/赛博朋克风格预设,生成黑色背景流光线条海报底图",
  9732. "tutorial": "",
  9733. "input": "",
  9734. "output": "",
  9735. "updated_time": 1776667149,
  9736. "status": "未接入"
  9737. },
  9738. {
  9739. "id": "即梦/可灵(风格化模式)",
  9740. "name": "即梦/可灵(风格化模式)",
  9741. "version": "tao_dev_1",
  9742. "introduction": "选择故障风/赛博朋克风格预设,输入人物照片,AI 自动生成带故障效果的风格化版本",
  9743. "tutorial": "",
  9744. "input": "",
  9745. "output": "",
  9746. "updated_time": 1776667149,
  9747. "status": "未接入"
  9748. },
  9749. {
  9750. "id": "即梦图片 4.5 模型",
  9751. "name": "即梦图片 4.5 模型",
  9752. "version": "tao_dev_1",
  9753. "introduction": "上传人物参考图和服装参考图,使用详细提示词描述服装细节,保持服装细节不变",
  9754. "tutorial": "",
  9755. "input": "",
  9756. "output": "",
  9757. "updated_time": 1776666846,
  9758. "status": "未接入"
  9759. },
  9760. {
  9761. "id": "口袋快拼",
  9762. "name": "口袋快拼",
  9763. "version": "tao_dev_1",
  9764. "introduction": "专项多图快速拼接,自动按上传顺序排列,支持批量拖拽",
  9765. "tutorial": "",
  9766. "input": "",
  9767. "output": "",
  9768. "updated_time": 1776667149,
  9769. "status": "未接入"
  9770. },
  9771. {
  9772. "id": "可灵视频 3.0(动作控制功能)",
  9773. "name": "可灵视频 3.0(动作控制功能)",
  9774. "version": "tao_dev_1",
  9775. "introduction": "使用可灵视频3.0 的动作控制功能,设置动作参数,生成具有精准手部动作控制的视频,完美人脸一致性,媲美专业动捕技术",
  9776. "tutorial": "",
  9777. "input": "",
  9778. "output": "",
  9779. "updated_time": 1776667149,
  9780. "status": "未接入"
  9781. },
  9782. {
  9783. "id": "可赞 Ai (kezign.cn)",
  9784. "name": "可赞 Ai (kezign.cn)",
  9785. "version": "tao_dev_1",
  9786. "introduction": "输入文本,选择可视化形式(图例/图表/卡片/思维导图/小红书形式),生成并编辑",
  9787. "tutorial": "",
  9788. "input": "",
  9789. "output": "",
  9790. "updated_time": 1776667149,
  9791. "status": "未接入"
  9792. },
  9793. {
  9794. "id": "后期调色",
  9795. "name": "后期调色",
  9796. "version": "tao_dev_1",
  9797. "introduction": "在 Lightroom/Photoshop 中压低整体曝光和阴影,提升高光区域亮度,使用曲线工具拉大明暗对比,局部使用径向滤镜或渐变滤镜强化亮部",
  9798. "tutorial": "",
  9799. "input": "",
  9800. "output": "",
  9801. "updated_time": 1776667149,
  9802. "status": "未接入"
  9803. },
  9804. {
  9805. "id": "后期调色节点",
  9806. "name": "后期调色节点",
  9807. "version": "tao_dev_1",
  9808. "introduction": "色相/饱和度调整 + 大气透视三图层法(远冷近暖)校正不同素材间的色调差异",
  9809. "tutorial": "",
  9810. "input": "",
  9811. "output": "",
  9812. "updated_time": 1776667149,
  9813. "status": "未接入"
  9814. },
  9815. {
  9816. "id": "哈皮软件工具箱",
  9817. "name": "哈皮软件工具箱",
  9818. "version": "tao_dev_1",
  9819. "introduction": "选择批量无缝拼图功能,导入多张图片,设置宫格布局(4/9/16宫格等),一键生成无缝拼图",
  9820. "tutorial": "",
  9821. "input": "",
  9822. "output": "",
  9823. "updated_time": 1776666846,
  9824. "status": "未接入"
  9825. },
  9826. {
  9827. "id": "在线 AI 工具(Flux2 Klein 等)",
  9828. "name": "在线 AI 工具(Flux2 Klein 等)",
  9829. "version": "tao_dev_1",
  9830. "introduction": "上传单张人物正面照片,选择目标角度,AI 自动分析人物结构和光照,生成对应角度的图像;Flux2 Klein 工作流支持正面→反面、侧面、半侧面等多角度转换",
  9831. "tutorial": "",
  9832. "input": "",
  9833. "output": "",
  9834. "updated_time": 1776667149,
  9835. "status": "未接入"
  9836. },
  9837. {
  9838. "id": "垫图反推",
  9839. "name": "垫图反推",
  9840. "version": "tao_dev_1",
  9841. "introduction": "上传具有透视感的参考图,通过图生文功能反推透视视角描述词(虫瞰视角、鱼眼畸变、微距大特写)再用于生成",
  9842. "tutorial": "",
  9843. "input": "",
  9844. "output": "",
  9845. "updated_time": 1776667149,
  9846. "status": "未接入"
  9847. },
  9848. {
  9849. "id": "垫图反推功能(即梦/Grok/ComfyUI)",
  9850. "name": "垫图反推功能(即梦/Grok/ComfyUI)",
  9851. "version": "tao_dev_1",
  9852. "introduction": "上传参考图,调用图生文节点(如WD14 Tagger / CLIP Interrogator)自动分析并输出描述词,重点提取透视视角、镜头参数、布光方案、材质表现",
  9853. "tutorial": "",
  9854. "input": "",
  9855. "output": "",
  9856. "updated_time": 1776667149,
  9857. "status": "未接入"
  9858. },
  9859. {
  9860. "id": "多模态大模型图像理解与编辑",
  9861. "name": "多模态大模型图像理解与编辑",
  9862. "version": "tao_dev_1",
  9863. "introduction": "结合视觉理解能力和图像生成能力,解析用户的自然语言编辑需求,定位需要修改的区域和元素,自动应用相应的图像处理算法或生成技术完成编辑",
  9864. "tutorial": "",
  9865. "input": "",
  9866. "output": "",
  9867. "updated_time": 1776666846,
  9868. "status": "未接入"
  9869. },
  9870. {
  9871. "id": "实时 AI 生成工具(数位板集成)",
  9872. "name": "实时 AI 生成工具(数位板集成)",
  9873. "version": "tao_dev_1",
  9874. "introduction": "使用数位板和笔进行手绘,AI 实时捕捉绘画动作和手部姿态,即时生成与手绘内容对应的照片级图像,保持手部持笔动作的自然呈现",
  9875. "tutorial": "",
  9876. "input": "",
  9877. "output": "",
  9878. "updated_time": 1776667149,
  9879. "status": "未接入"
  9880. },
  9881. {
  9882. "id": "小云雀AI图片设计",
  9883. "name": "小云雀AI图片设计",
  9884. "version": "tao_dev_1",
  9885. "introduction": "上传宠物照片后输入职业场景描述词,AI自动理解职业语义并生成完整职业造型(服装+道具+场景),支持多种职场风格",
  9886. "tutorial": "",
  9887. "input": "",
  9888. "output": "",
  9889. "updated_time": 1776667149,
  9890. "status": "未接入"
  9891. },
  9892. {
  9893. "id": "平面设计",
  9894. "name": "平面设计",
  9895. "version": "tao_dev_1",
  9896. "introduction": "使用红色(#C8161D)为主色,黑色(#000000)为辅助色,金色(#D4AF37)为点缀色,参考古建筑剪影进行构图",
  9897. "tutorial": "",
  9898. "input": "",
  9899. "output": "",
  9900. "updated_time": 1776667149,
  9901. "status": "未接入"
  9902. },
  9903. {
  9904. "id": "懒人图云 / 在线拼图工具",
  9905. "name": "懒人图云 / 在线拼图工具",
  9906. "version": "tao_dev_1",
  9907. "introduction": "上传图片后根据数量自动匹配模板,支持调整布局、间距、边框、背景颜色,导出 PNG/JPG/PSD",
  9908. "tutorial": "",
  9909. "input": "",
  9910. "output": "",
  9911. "updated_time": 1776667149,
  9912. "status": "未接入"
  9913. },
  9914. {
  9915. "id": "手部分割与重绘工作流",
  9916. "name": "手部分割与重绘工作流",
  9917. "version": "tao_dev_1",
  9918. "introduction": "手部分割节点自动识别手部区域 + 参数化重绘强度控制,两种方法可选",
  9919. "tutorial": "",
  9920. "input": "",
  9921. "output": "",
  9922. "updated_time": 1776667149,
  9923. "status": "未接入"
  9924. },
  9925. {
  9926. "id": "抖音图文带货工具链",
  9927. "name": "抖音图文带货工具链",
  9928. "version": "tao_dev_1",
  9929. "introduction": "商品实拍图+四宫格拼图+精简文字说明+热门背景音乐,参与官方扶持活动(图文掘金计划)",
  9930. "tutorial": "",
  9931. "input": "",
  9932. "output": "",
  9933. "updated_time": 1776666846,
  9934. "status": "未接入"
  9935. },
  9936. {
  9937. "id": "提示词工程",
  9938. "name": "提示词工程",
  9939. "version": "tao_dev_1",
  9940. "introduction": "色彩描述:马卡龙色调、低饱和粉调背景、温柔治愈风",
  9941. "tutorial": "",
  9942. "input": "",
  9943. "output": "",
  9944. "updated_time": 1776667149,
  9945. "status": "未接入"
  9946. },
  9947. {
  9948. "id": "提示词工程 + 后期图层分离",
  9949. "name": "提示词工程 + 后期图层分离",
  9950. "version": "tao_dev_1",
  9951. "introduction": "在提示词中详细描述层级需求(如'大标题用72号粗体黑色、小标题用36号中等灰色、正文用18号浅灰色'),生成后通过图层分离工具拆分并调整",
  9952. "tutorial": "",
  9953. "input": "",
  9954. "output": "",
  9955. "updated_time": 1776667149,
  9956. "status": "未接入"
  9957. },
  9958. {
  9959. "id": "提示词情绪工程(Prompt Emotion Engineering)",
  9960. "name": "提示词情绪工程(Prompt Emotion Engineering)",
  9961. "version": "tao_dev_1",
  9962. "introduction": "将抽象情绪拆解为可视化的微表情细节描述(眼神、嘴角、眉峰、呼吸、皮肤颜色变化等)+ 环境氛围描写(空气凝固、骤然变冷等)+ 情绪转变过程描述 → 生成具有强烈情绪感染力的人物表情",
  9963. "tutorial": "",
  9964. "input": "",
  9965. "output": "",
  9966. "updated_time": 1776666487,
  9967. "status": "未接入"
  9968. },
  9969. {
  9970. "id": "摄影布光",
  9971. "name": "摄影布光",
  9972. "version": "tao_dev_1",
  9973. "introduction": "使用单一强光源(如侧光、顶光),配合深色背景,通过光线雕刻主体轮廓,制造强烈的明暗反差",
  9974. "tutorial": "",
  9975. "input": "",
  9976. "output": "",
  9977. "updated_time": 1776667149,
  9978. "status": "未接入"
  9979. },
  9980. {
  9981. "id": "摄影技法",
  9982. "name": "摄影技法",
  9983. "version": "tao_dev_1",
  9984. "introduction": "使用侧光或侧逆光拍摄,选择深色背景(黑色吸光布、深色墙面),使用 M 档手动曝光并减少 1-2 档 EV,对亮部进行点测光",
  9985. "tutorial": "",
  9986. "input": "",
  9987. "output": "",
  9988. "updated_time": 1776667149,
  9989. "status": "未接入"
  9990. },
  9991. {
  9992. "id": "无界AI专业版工作流",
  9993. "name": "无界AI专业版工作流",
  9994. "version": "tao_dev_1",
  9995. "introduction": "选择真实照片转绘油画工作流 → 元素融合上传照片 → 选择艺术插画模型 → 编写提示词 → 生成 → 超分辨率后处理",
  9996. "tutorial": "",
  9997. "input": "",
  9998. "output": "",
  9999. "updated_time": 1776667149,
  10000. "status": "未接入"
  10001. },
  10002. {
  10003. "id": "有调AI/即梦AI",
  10004. "name": "有调AI/即梦AI",
  10005. "version": "tao_dev_1",
  10006. "introduction": "强调圆润造型+无辜眼神+表情丰富(惊讶、开心、害羞等)实现治愈软萌效果",
  10007. "tutorial": "",
  10008. "input": "",
  10009. "output": "",
  10010. "updated_time": 1776667149,
  10011. "status": "未接入"
  10012. },
  10013. {
  10014. "id": "秀米编辑器",
  10015. "name": "秀米编辑器",
  10016. "version": "tao_dev_1",
  10017. "introduction": "使用布局思维做多图卡片排版,设置全文背景、文字发光效果、半透明颜色、拼接背景、渐变效果等视觉增强",
  10018. "tutorial": "",
  10019. "input": "",
  10020. "output": "",
  10021. "updated_time": 1776667149,
  10022. "status": "未接入"
  10023. },
  10024. {
  10025. "id": "秀米/飞书固定布局模块化排版",
  10026. "name": "秀米/飞书固定布局模块化排版",
  10027. "version": "tao_dev_1",
  10028. "introduction": "使用秀米固定布局功能或飞书文档分栏,通过预设模块化组件实现复杂图文混排(参考 case_bili_003、case_bili_002)",
  10029. "tutorial": "",
  10030. "input": "",
  10031. "output": "",
  10032. "updated_time": 1776667149,
  10033. "status": "未接入"
  10034. },
  10035. {
  10036. "id": "稿定APP",
  10037. "name": "稿定APP",
  10038. "version": "tao_dev_1",
  10039. "introduction": "文字工具中选择「变形」功能,调整梯形强度(如32)和相对高度(如-3)实现透视效果",
  10040. "tutorial": "",
  10041. "input": "",
  10042. "output": "",
  10043. "updated_time": 1776667149,
  10044. "status": "未接入"
  10045. },
  10046. {
  10047. "id": "稿定PS设计助理",
  10048. "name": "稿定PS设计助理",
  10049. "version": "tao_dev_1",
  10050. "introduction": "使用批量套版模块,设置统一版式模板后批量填充不同商品内容,单独生成每个商品的图和PSD文件",
  10051. "tutorial": "",
  10052. "input": "",
  10053. "output": "",
  10054. "updated_time": 1776667149,
  10055. "status": "未接入"
  10056. },
  10057. {
  10058. "id": "穿戴LoRA训练",
  10059. "name": "穿戴LoRA训练",
  10060. "version": "tao_dev_1",
  10061. "introduction": "准备30+张素材图片训练穿戴专用LoRA,实现0提示词、0手工操作的首饰自动佩戴",
  10062. "tutorial": "",
  10063. "input": "",
  10064. "output": "",
  10065. "updated_time": 1776667149,
  10066. "status": "未接入"
  10067. },
  10068. {
  10069. "id": "绘画上色",
  10070. "name": "绘画上色",
  10071. "version": "tao_dev_1",
  10072. "introduction": "先从绝对的霓虹黑背景开始,使用故障、扫描线、网格等电子视觉元素,将最炸裂的颜色用在关键的'接口'位置",
  10073. "tutorial": "",
  10074. "input": "",
  10075. "output": "",
  10076. "updated_time": 1776667149,
  10077. "status": "未接入"
  10078. },
  10079. {
  10080. "id": "绘画创作",
  10081. "name": "绘画创作",
  10082. "version": "tao_dev_1",
  10083. "introduction": "红色作为浓烈底色,黑色勾勒建筑骨骼与灵魂,金色点亮空间高级感,抽象到极致,留白处藏千年故事",
  10084. "tutorial": "",
  10085. "input": "",
  10086. "output": "",
  10087. "updated_time": 1776667149,
  10088. "status": "未接入"
  10089. },
  10090. {
  10091. "id": "绘画技法",
  10092. "name": "绘画技法",
  10093. "version": "tao_dev_1",
  10094. "introduction": "使用强烈的侧光雕刻面部/物体结构,在阴影中注入细腻的色彩以保持透明感,夸张光线和阴影以增加深度",
  10095. "tutorial": "",
  10096. "input": "",
  10097. "output": "",
  10098. "updated_time": 1776667149,
  10099. "status": "未接入"
  10100. },
  10101. {
  10102. "id": "美图秀秀萌宠模板",
  10103. "name": "美图秀秀萌宠模板",
  10104. "version": "tao_dev_1",
  10105. "introduction": "在'模版'→'萌宠'系列中选择职业模板(警察/西装/麦当劳等),导入抠好的猫头,AI自动调整大小位置与模板身体匹配",
  10106. "tutorial": "",
  10107. "input": "",
  10108. "output": "",
  10109. "updated_time": 1776667149,
  10110. "status": "未接入"
  10111. },
  10112. {
  10113. "id": "腾讯混元3D(ComfyUI插件)",
  10114. "name": "腾讯混元3D(ComfyUI插件)",
  10115. "version": "tao_dev_1",
  10116. "introduction": "ComfyUI部署混元3D插件,从2D概念图生成3D模型,支持自动拓扑和纹理烘焙",
  10117. "tutorial": "",
  10118. "input": "",
  10119. "output": "",
  10120. "updated_time": 1776667149,
  10121. "status": "未接入"
  10122. },
  10123. {
  10124. "id": "腾讯混元 3D 世界模型",
  10125. "name": "腾讯混元 3D 世界模型",
  10126. "version": "tao_dev_1",
  10127. "introduction": "输入一句话提示词或单张图片,生成具备空间一致性的 360° 全景世界,支持自由漫游探索和 mesh 资产导出二次建模",
  10128. "tutorial": "",
  10129. "input": "",
  10130. "output": "",
  10131. "updated_time": 1776667149,
  10132. "status": "未接入"
  10133. },
  10134. {
  10135. "id": "视频内容驱动音效生成模型",
  10136. "name": "视频内容驱动音效生成模型",
  10137. "version": "tao_dev_1",
  10138. "introduction": "分析视频帧内容,自动识别场景类型并生成匹配的音效,实现视音频语义对齐",
  10139. "tutorial": "",
  10140. "input": "",
  10141. "output": "",
  10142. "updated_time": 1776667149,
  10143. "status": "未接入"
  10144. },
  10145. {
  10146. "id": "视频素材",
  10147. "name": "视频素材",
  10148. "version": "tao_dev_1",
  10149. "introduction": "使用预制的金色粒子/星光循环素材(4K/HD),叠加到暗色背景视频上,使用混合模式(Add/Screen)",
  10150. "tutorial": "",
  10151. "input": "",
  10152. "output": "",
  10153. "updated_time": 1776667149,
  10154. "status": "未接入"
  10155. },
  10156. {
  10157. "id": "豆包AI",
  10158. "name": "豆包AI",
  10159. "version": "tao_dev_1",
  10160. "introduction": "中文谐音梗生成,结合食物名称与成语/俗语的谐音替换,5分钟生成一套文案",
  10161. "tutorial": "",
  10162. "input": "",
  10163. "output": "",
  10164. "updated_time": 1776667149,
  10165. "status": "未接入"
  10166. },
  10167. {
  10168. "id": "豆包AI / GPT-4o图像生成",
  10169. "name": "豆包AI / GPT-4o图像生成",
  10170. "version": "tao_dev_1",
  10171. "introduction": "通过提示词描述透视角度和光照条件,模型自动生成透视一致的合成图",
  10172. "tutorial": "",
  10173. "input": "",
  10174. "output": "",
  10175. "updated_time": 1776667149,
  10176. "status": "未接入"
  10177. },
  10178. {
  10179. "id": "豆包AI / 即梦AI",
  10180. "name": "豆包AI / 即梦AI",
  10181. "version": "tao_dev_1",
  10182. "introduction": "内置一键抠图功能,上传图片后自动分离主体与背景,输出透明底PNG",
  10183. "tutorial": "",
  10184. "input": "",
  10185. "output": "",
  10186. "updated_time": 1776667149,
  10187. "status": "未接入"
  10188. },
  10189. {
  10190. "id": "豆包AI + 情绪标注",
  10191. "name": "豆包AI + 情绪标注",
  10192. "version": "tao_dev_1",
  10193. "introduction": "通过提示词描述情绪状态,AI自动生成对应表情的猫咪场景图,批量生成不同情绪节点的替换素材",
  10194. "tutorial": "",
  10195. "input": "",
  10196. "output": "",
  10197. "updated_time": 1776667149,
  10198. "status": "未接入"
  10199. },
  10200. {
  10201. "id": "豆包专业版 / Gemini(多模态大模型)",
  10202. "name": "豆包专业版 / Gemini(多模态大模型)",
  10203. "version": "tao_dev_1",
  10204. "introduction": "上传参考图,使用结构化提示词指令让模型提取 5 个核心 HEX 色值(主色调、辅色调、点缀色、阴影色、过渡色),输出标准格式的色板描述",
  10205. "tutorial": "",
  10206. "input": "",
  10207. "output": "",
  10208. "updated_time": 1776667149,
  10209. "status": "未接入"
  10210. },
  10211. {
  10212. "id": "豆包/其他国产LLM",
  10213. "name": "豆包/其他国产LLM",
  10214. "version": "tao_dev_1",
  10215. "introduction": "生成绘本故事文案,配合AI绘图工具完成完整图文故事创作(case_xhs_006)",
  10216. "tutorial": "",
  10217. "input": "",
  10218. "output": "",
  10219. "updated_time": 1776667149,
  10220. "status": "未接入"
  10221. },
  10222. {
  10223. "id": "豆包智能体",
  10224. "name": "豆包智能体",
  10225. "version": "tao_dev_1",
  10226. "introduction": "复制原始文案到豆包,使用提示词'请根据以下文字生成 xx 张手帐导图',提炼文案重点并生成排版参考",
  10227. "tutorial": "",
  10228. "input": "",
  10229. "output": "",
  10230. "updated_time": 1776667149,
  10231. "status": "未接入"
  10232. },
  10233. {
  10234. "id": "通用文生图工具",
  10235. "name": "通用文生图工具",
  10236. "version": "tao_dev_1",
  10237. "introduction": "使用'细节桶'系统,将细节分成桶:光线、氛围、环境、相机、颜色、纹理、构图,产生干净输出",
  10238. "tutorial": "",
  10239. "input": "",
  10240. "output": "",
  10241. "updated_time": 1776666846,
  10242. "status": "未接入"
  10243. },
  10244. {
  10245. "id": "酷家乐",
  10246. "name": "酷家乐",
  10247. "version": "tao_dev_1",
  10248. "introduction": "筒灯参数设置(3000K色温、亮度20%、高度2600mm)+奶油风场景配置",
  10249. "tutorial": "",
  10250. "input": "",
  10251. "output": "",
  10252. "updated_time": 1776667149,
  10253. "status": "未接入"
  10254. },
  10255. {
  10256. "id": "醒图",
  10257. "name": "醒图",
  10258. "version": "tao_dev_1",
  10259. "introduction": "导入图片后点击【蒙版】,提供圆形、矩形、爱心、星形、三角形等形态",
  10260. "tutorial": "",
  10261. "input": "",
  10262. "output": "",
  10263. "updated_time": 1776667149,
  10264. "status": "未接入"
  10265. },
  10266. {
  10267. "id": "醒图App",
  10268. "name": "醒图App",
  10269. "version": "tao_dev_1",
  10270. "introduction": "使用胶片滤镜'Lomography' + 手动加噪点 + 光斑图层叠加",
  10271. "tutorial": "",
  10272. "input": "",
  10273. "output": "",
  10274. "updated_time": 1776667149,
  10275. "status": "未接入"
  10276. },
  10277. {
  10278. "id": "醒图APP(智能抠图)",
  10279. "name": "醒图APP(智能抠图)",
  10280. "version": "tao_dev_1",
  10281. "introduction": "使用'人像抠图'→'智能抠图'功能,AI自动识别猫咪主体并分离背景,输出透明底PNG;支持进一步精细调整边缘",
  10282. "tutorial": "",
  10283. "input": "",
  10284. "output": "",
  10285. "updated_time": 1776667149,
  10286. "status": "未接入"
  10287. },
  10288. {
  10289. "id": "醒图/Canva等设计工具",
  10290. "name": "醒图/Canva等设计工具",
  10291. "version": "tao_dev_1",
  10292. "introduction": "使用拼图/拼贴模板功能,选择多格版式后导入各场景合成图自动排列",
  10293. "tutorial": "",
  10294. "input": "",
  10295. "output": "",
  10296. "updated_time": 1776667149,
  10297. "status": "未接入"
  10298. },
  10299. {
  10300. "id": "醒图/ProCCD",
  10301. "name": "醒图/ProCCD",
  10302. "version": "tao_dev_1",
  10303. "introduction": "跨屏拼图功能新建画布,支持多图自由排版",
  10304. "tutorial": "",
  10305. "input": "",
  10306. "output": "",
  10307. "updated_time": 1776667149,
  10308. "status": "未接入"
  10309. },
  10310. {
  10311. "id": "醒图/ProCCD/黄油相机",
  10312. "name": "醒图/ProCCD/黄油相机",
  10313. "version": "tao_dev_1",
  10314. "introduction": "提供批量图片导入入口,支持拖拽排序,实时预览排列效果",
  10315. "tutorial": "",
  10316. "input": "",
  10317. "output": "",
  10318. "updated_time": 1776667149,
  10319. "status": "未接入"
  10320. },
  10321. {
  10322. "id": "醒图智能抠图",
  10323. "name": "醒图智能抠图",
  10324. "version": "tao_dev_1",
  10325. "introduction": "上传猫咪全身照,AI自动识别主体并精准抠图,连胡须都一根不落,导出透明背景PNG",
  10326. "tutorial": "",
  10327. "input": "",
  10328. "output": "",
  10329. "updated_time": 1776667149,
  10330. "status": "未接入"
  10331. },
  10332. {
  10333. "id": "醒图 涂鸦笔",
  10334. "name": "醒图 涂鸦笔",
  10335. "version": "tao_dev_1",
  10336. "introduction": "使用涂鸦笔画小星星、蝴蝶结等填补空白;不会画画的可去其他平台搜拼贴素材截图后导入,用智能抠图抠出小图案",
  10337. "tutorial": "",
  10338. "input": "",
  10339. "output": "",
  10340. "updated_time": 1776667149,
  10341. "status": "未接入"
  10342. },
  10343. {
  10344. "id": "镝数图表 / ChiPlot",
  10345. "name": "镝数图表 / ChiPlot",
  10346. "version": "tao_dev_1",
  10347. "introduction": "在线图表工具,导入数据后选择图表模板,AI 辅助调整可视化参数,支持基础图表、数据大屏、动态图表等多种类型,5 分钟内完成高颜值图表",
  10348. "tutorial": "",
  10349. "input": "",
  10350. "output": "",
  10351. "updated_time": 1776667149,
  10352. "status": "未接入"
  10353. },
  10354. {
  10355. "id": "长文转图片工具(如 Markdown 渲染器)",
  10356. "name": "长文转图片工具(如 Markdown 渲染器)",
  10357. "version": "tao_dev_1",
  10358. "introduction": "输入长文内容 + 选择 3:4 比例模板 → Markdown 格式渲染 → 图片自动分页 → 页码自动生成 → 模板自由调整背景/文字样式/排版风格,3 秒操作一键完成",
  10359. "tutorial": "",
  10360. "input": "",
  10361. "output": "",
  10362. "updated_time": 1776667149,
  10363. "status": "未接入"
  10364. },
  10365. {
  10366. "id": "阿里FantasyPortrait",
  10367. "name": "阿里FantasyPortrait",
  10368. "version": "tao_dev_1",
  10369. "introduction": "准备源视频(提供表情)+ 目标人物图像/视频 → 配置模型参数 → 执行表情迁移 → 输出带目标表情的视频;支持8G显存,内置Sage2.2加速",
  10370. "tutorial": "",
  10371. "input": "",
  10372. "output": "",
  10373. "updated_time": 1776666487,
  10374. "status": "未接入"
  10375. },
  10376. {
  10377. "id": "黄油相机",
  10378. "name": "黄油相机",
  10379. "version": "tao_dev_1",
  10380. "introduction": "竖图横图搭配错落排版,营造呼吸感",
  10381. "tutorial": "",
  10382. "input": "",
  10383. "output": "",
  10384. "updated_time": 1776667149,
  10385. "status": "未接入"
  10386. }
  10387. ]