relay.json 164 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141
  1. {
  2. "openapi": "3.0.1",
  3. "info": {
  4. "title": "AI模型接口",
  5. "description": "",
  6. "version": "1.0.0"
  7. },
  8. "tags": [
  9. {
  10. "name": "获取模型列表"
  11. },
  12. {
  13. "name": "OpenAI格式(Chat)"
  14. },
  15. {
  16. "name": "OpenAI格式(Responses)"
  17. },
  18. {
  19. "name": "图片生成"
  20. },
  21. {
  22. "name": "图片生成/OpenAI兼容格式"
  23. },
  24. {
  25. "name": "图片生成/Qwen千问"
  26. },
  27. {
  28. "name": "视频生成"
  29. },
  30. {
  31. "name": "视频生成/Sora兼容格式"
  32. },
  33. {
  34. "name": "视频生成/Kling格式"
  35. },
  36. {
  37. "name": "视频生成/即梦格式"
  38. },
  39. {
  40. "name": "Claude格式(Messages)"
  41. },
  42. {
  43. "name": "Gemini格式"
  44. },
  45. {
  46. "name": "OpenAI格式(Embeddings)"
  47. },
  48. {
  49. "name": "文本补全(Completions)"
  50. },
  51. {
  52. "name": "OpenAI音频(Audio)"
  53. },
  54. {
  55. "name": "重排序(Rerank)"
  56. },
  57. {
  58. "name": "Moderations"
  59. },
  60. {
  61. "name": "Realtime"
  62. },
  63. {
  64. "name": "未实现"
  65. },
  66. {
  67. "name": "未实现/Fine-tunes"
  68. },
  69. {
  70. "name": "未实现/Files"
  71. }
  72. ],
  73. "paths": {
  74. "/v1/models": {
  75. "get": {
  76. "summary": "获取模型列表",
  77. "deprecated": false,
  78. "description": "获取当前可用的模型列表。\n\n根据请求头自动识别返回格式:\n- 包含 `x-api-key` 和 `anthropic-version` 头时返回 Anthropic 格式\n- 包含 `x-goog-api-key` 头或 `key` 查询参数时返回 Gemini 格式\n- 其他情况返回 OpenAI 格式\n",
  79. "operationId": "listModels",
  80. "tags": [
  81. "获取模型列表"
  82. ],
  83. "parameters": [
  84. {
  85. "name": "key",
  86. "in": "query",
  87. "description": "Google API Key (用于 Gemini 格式)",
  88. "required": false,
  89. "schema": {
  90. "type": "string"
  91. }
  92. },
  93. {
  94. "name": "x-api-key",
  95. "in": "header",
  96. "description": "Anthropic API Key (用于 Claude 格式)",
  97. "required": false,
  98. "example": "",
  99. "schema": {
  100. "type": "string"
  101. }
  102. },
  103. {
  104. "name": "anthropic-version",
  105. "in": "header",
  106. "description": "Anthropic API 版本",
  107. "required": false,
  108. "example": "",
  109. "schema": {
  110. "type": "string",
  111. "example": "2023-06-01"
  112. }
  113. },
  114. {
  115. "name": "x-goog-api-key",
  116. "in": "header",
  117. "description": "Google API Key (用于 Gemini 格式)",
  118. "required": false,
  119. "example": "",
  120. "schema": {
  121. "type": "string"
  122. }
  123. }
  124. ],
  125. "responses": {
  126. "200": {
  127. "description": "成功获取模型列表",
  128. "content": {
  129. "application/json": {
  130. "schema": {
  131. "$ref": "#/components/schemas/ModelsResponse"
  132. }
  133. }
  134. },
  135. "headers": {}
  136. },
  137. "401": {
  138. "description": "认证失败",
  139. "content": {
  140. "application/json": {
  141. "schema": {
  142. "$ref": "#/components/schemas/ErrorResponse"
  143. }
  144. }
  145. },
  146. "headers": {}
  147. }
  148. },
  149. "security": [
  150. {
  151. "BearerAuth": []
  152. }
  153. ]
  154. }
  155. },
  156. "/v1beta/models": {
  157. "get": {
  158. "summary": "Gemini 格式获取",
  159. "deprecated": false,
  160. "description": "以 Gemini API 格式返回可用模型列表",
  161. "operationId": "listModelsGemini",
  162. "tags": [
  163. "获取模型列表"
  164. ],
  165. "parameters": [],
  166. "responses": {
  167. "200": {
  168. "description": "成功获取模型列表",
  169. "content": {
  170. "application/json": {
  171. "schema": {
  172. "$ref": "#/components/schemas/GeminiModelsResponse"
  173. }
  174. }
  175. },
  176. "headers": {}
  177. }
  178. },
  179. "security": [
  180. {
  181. "BearerAuth": []
  182. }
  183. ]
  184. }
  185. },
  186. "/v1/chat/completions": {
  187. "post": {
  188. "summary": "创建聊天对话",
  189. "deprecated": false,
  190. "description": "根据对话历史创建模型响应。支持流式和非流式响应。\n\n兼容 OpenAI Chat Completions API。\n",
  191. "operationId": "createChatCompletion",
  192. "tags": [
  193. "OpenAI格式(Chat)"
  194. ],
  195. "parameters": [],
  196. "requestBody": {
  197. "content": {
  198. "application/json": {
  199. "schema": {
  200. "$ref": "#/components/schemas/ChatCompletionRequest"
  201. }
  202. }
  203. },
  204. "required": true
  205. },
  206. "responses": {
  207. "200": {
  208. "description": "成功创建响应",
  209. "content": {
  210. "application/json": {
  211. "schema": {
  212. "$ref": "#/components/schemas/ChatCompletionResponse"
  213. }
  214. }
  215. },
  216. "headers": {}
  217. },
  218. "400": {
  219. "description": "请求参数错误",
  220. "content": {
  221. "application/json": {
  222. "schema": {
  223. "$ref": "#/components/schemas/ErrorResponse"
  224. }
  225. }
  226. },
  227. "headers": {}
  228. },
  229. "429": {
  230. "description": "请求频率限制",
  231. "content": {
  232. "application/json": {
  233. "schema": {
  234. "$ref": "#/components/schemas/ErrorResponse"
  235. }
  236. }
  237. },
  238. "headers": {}
  239. }
  240. },
  241. "security": [
  242. {
  243. "BearerAuth": []
  244. }
  245. ]
  246. }
  247. },
  248. "/v1/responses": {
  249. "post": {
  250. "summary": "创建响应 (OpenAI Responses API)",
  251. "deprecated": false,
  252. "description": "OpenAI Responses API,用于创建模型响应。\n支持多轮对话、工具调用、推理等功能。\n",
  253. "operationId": "createResponse",
  254. "tags": [
  255. "OpenAI格式(Responses)"
  256. ],
  257. "parameters": [],
  258. "requestBody": {
  259. "content": {
  260. "application/json": {
  261. "schema": {
  262. "$ref": "#/components/schemas/ResponsesRequest"
  263. }
  264. }
  265. },
  266. "required": true
  267. },
  268. "responses": {
  269. "200": {
  270. "description": "成功创建响应",
  271. "content": {
  272. "application/json": {
  273. "schema": {
  274. "$ref": "#/components/schemas/ResponsesResponse"
  275. }
  276. }
  277. },
  278. "headers": {}
  279. }
  280. },
  281. "security": [
  282. {
  283. "BearerAuth": []
  284. }
  285. ]
  286. }
  287. },
  288. "/v1/images/generations": {
  289. "post": {
  290. "summary": "生成图像(qwen-image)",
  291. "deprecated": false,
  292. "description": " 百炼qwen-image系列图片生成",
  293. "operationId": "createImage",
  294. "tags": [
  295. "图片生成/Qwen千问"
  296. ],
  297. "parameters": [],
  298. "requestBody": {
  299. "content": {
  300. "application/json": {
  301. "schema": {
  302. "type": "object",
  303. "properties": {
  304. "model": {
  305. "type": "string"
  306. },
  307. "input": {
  308. "type": "object",
  309. "properties": {
  310. "messages": {
  311. "type": "array",
  312. "items": {
  313. "type": "object",
  314. "properties": {
  315. "role": {
  316. "type": "string"
  317. },
  318. "content": {
  319. "type": "array",
  320. "items": {
  321. "type": "object",
  322. "properties": {
  323. "text": {
  324. "type": "string"
  325. }
  326. }
  327. }
  328. }
  329. }
  330. }
  331. }
  332. },
  333. "required": [
  334. "messages"
  335. ]
  336. },
  337. "parameters": {
  338. "type": "object",
  339. "properties": {
  340. "negative_prompt": {
  341. "type": "string"
  342. },
  343. "prompt_extend": {
  344. "type": "boolean"
  345. },
  346. "watermark": {
  347. "type": "boolean"
  348. },
  349. "size": {
  350. "type": "string"
  351. }
  352. }
  353. }
  354. },
  355. "required": [
  356. "model",
  357. "input"
  358. ]
  359. },
  360. "example": {
  361. "model": "qwen-image-plus",
  362. "input": {
  363. "messages": [
  364. {
  365. "role": "user",
  366. "content": [
  367. {
  368. "text": "一副典雅庄重的对联悬挂于厅堂之中,房间是个安静古典的中式布置,桌子上放着一些青花瓷,对联上左书“义本生知人机同道善思新”,右书“通云赋智乾坤启数高志远”, 横批“智启通义”,字体飘逸,在中间挂着一幅中国风的画作,内容是岳阳楼。"
  369. }
  370. ]
  371. }
  372. ]
  373. },
  374. "parameters": {
  375. "negative_prompt": "",
  376. "prompt_extend": true,
  377. "watermark": false,
  378. "size": "1328*1328"
  379. }
  380. }
  381. }
  382. }
  383. },
  384. "responses": {
  385. "200": {
  386. "description": "成功生成图像",
  387. "content": {
  388. "application/json": {
  389. "schema": {
  390. "$ref": "#/components/schemas/ImageResponse"
  391. }
  392. }
  393. },
  394. "headers": {}
  395. }
  396. },
  397. "security": [
  398. {
  399. "BearerAuth": []
  400. }
  401. ]
  402. }
  403. },
  404. "/v1/images/edits": {
  405. "post": {
  406. "summary": "编辑图像(qwen-image-edit)",
  407. "deprecated": false,
  408. "description": " 百炼qwen-image系列图片生成",
  409. "operationId": "createImage",
  410. "tags": [
  411. "图片生成/Qwen千问"
  412. ],
  413. "parameters": [],
  414. "requestBody": {
  415. "content": {
  416. "application/json": {
  417. "schema": {
  418. "type": "object",
  419. "properties": {
  420. "model": {
  421. "type": "string"
  422. },
  423. "input": {
  424. "type": "object",
  425. "properties": {
  426. "messages": {
  427. "type": "array",
  428. "items": {
  429. "type": "object",
  430. "properties": {
  431. "role": {
  432. "type": "string"
  433. },
  434. "content": {
  435. "type": "array",
  436. "items": {
  437. "type": "object",
  438. "properties": {
  439. "image": {
  440. "type": "string"
  441. },
  442. "text": {
  443. "type": "string"
  444. }
  445. }
  446. }
  447. }
  448. }
  449. }
  450. }
  451. },
  452. "required": [
  453. "messages"
  454. ]
  455. },
  456. "parameters": {
  457. "type": "object",
  458. "properties": {
  459. "n": {
  460. "type": "integer"
  461. },
  462. "negative_prompt": {
  463. "type": "string"
  464. },
  465. "prompt_extend": {
  466. "type": "boolean"
  467. },
  468. "watermark": {
  469. "type": "boolean"
  470. },
  471. "size": {
  472. "type": "string"
  473. }
  474. }
  475. }
  476. },
  477. "required": [
  478. "model",
  479. "input"
  480. ]
  481. },
  482. "example": "{\n \"model\": \"qwen-image-edit-plus\",\n \"input\": {\n \"messages\": [\n {\n \"role\": \"user\",\n \"content\": [\n {\n \"image\": \"https://help-static-aliyun-doc.aliyuncs.com/file-manage-files/zh-CN/20250925/fpakfo/image36.webp\"\n },\n {\n \"text\": \"生成一张符合深度图的图像,遵循以下描述:一辆红色的破旧的自行车停在一条泥泞的小路上,背景是茂密的原始森林\"\n }\n ]\n }\n ]\n },\n \"parameters\": {\n \"n\": 2,\n \"negative_prompt\": \" \",\n \"prompt_extend\": true,\n \"watermark\": false\n }"
  483. }
  484. }
  485. },
  486. "responses": {
  487. "200": {
  488. "description": "成功生成图像",
  489. "content": {
  490. "application/json": {
  491. "schema": {
  492. "$ref": "#/components/schemas/ImageResponse"
  493. }
  494. }
  495. },
  496. "headers": {}
  497. }
  498. },
  499. "security": [
  500. {
  501. "BearerAuth": []
  502. }
  503. ]
  504. }
  505. },
  506. "/v1/videos": {
  507. "post": {
  508. "summary": "创建视频 ",
  509. "deprecated": false,
  510. "description": "OpenAI 兼容的视频生成接口。\n\n参考文档: https://platform.openai.com/docs/api-reference/videos/create\n",
  511. "operationId": "createVideo",
  512. "tags": [
  513. "视频生成/Sora兼容格式"
  514. ],
  515. "parameters": [],
  516. "requestBody": {
  517. "content": {
  518. "multipart/form-data": {
  519. "schema": {
  520. "type": "object",
  521. "properties": {
  522. "model": {
  523. "description": "模型名称",
  524. "example": "sora-2",
  525. "type": "string"
  526. },
  527. "prompt": {
  528. "description": "提示词",
  529. "example": "cute cat dance",
  530. "type": "string"
  531. },
  532. "seconds": {
  533. "description": "生成秒数",
  534. "example": "8",
  535. "type": "string"
  536. },
  537. "input_reference": {
  538. "format": "binary",
  539. "type": "string",
  540. "description": "参考图片文件",
  541. "example": ""
  542. }
  543. }
  544. },
  545. "examples": {}
  546. }
  547. }
  548. },
  549. "responses": {
  550. "200": {
  551. "description": "成功创建视频任务",
  552. "content": {
  553. "application/json": {
  554. "schema": {
  555. "type": "object",
  556. "properties": {
  557. "id": {
  558. "type": "string",
  559. "description": "视频 ID"
  560. },
  561. "object": {
  562. "type": "string",
  563. "description": "对象类型"
  564. },
  565. "model": {
  566. "type": "string",
  567. "description": "使用的模型"
  568. },
  569. "status": {
  570. "type": "string",
  571. "description": "任务状态"
  572. },
  573. "progress": {
  574. "type": "integer",
  575. "description": "进度百分比"
  576. },
  577. "created_at": {
  578. "type": "integer",
  579. "description": "创建时间戳"
  580. },
  581. "seconds": {
  582. "type": "string",
  583. "description": "视频时长"
  584. },
  585. "completed_at": {
  586. "type": "integer",
  587. "description": "完成时间戳"
  588. },
  589. "expires_at": {
  590. "type": "integer",
  591. "description": "过期时间戳"
  592. },
  593. "size": {
  594. "type": "string",
  595. "description": "视频尺寸"
  596. },
  597. "error": {
  598. "$ref": "#/components/schemas/OpenAIVideoError"
  599. },
  600. "metadata": {
  601. "type": "object",
  602. "description": "额外元数据",
  603. "additionalProperties": true,
  604. "properties": {}
  605. }
  606. },
  607. "required": [
  608. "id",
  609. "object",
  610. "model",
  611. "status",
  612. "progress",
  613. "created_at",
  614. "seconds"
  615. ]
  616. },
  617. "example": {
  618. "id": "sora-2-123456",
  619. "object": "video",
  620. "model": "sora-2",
  621. "status": "queued",
  622. "progress": 0,
  623. "created_at": 1764347090922,
  624. "seconds": "8"
  625. }
  626. }
  627. },
  628. "headers": {}
  629. },
  630. "400": {
  631. "description": "请求参数错误",
  632. "content": {
  633. "application/json": {
  634. "schema": {
  635. "$ref": "#/components/schemas/ErrorResponse"
  636. }
  637. }
  638. },
  639. "headers": {}
  640. }
  641. },
  642. "security": [
  643. {
  644. "BearerAuth": []
  645. }
  646. ]
  647. }
  648. },
  649. "/v1/videos/{task_id}": {
  650. "get": {
  651. "summary": "获取视频任务状态 ",
  652. "deprecated": false,
  653. "description": "OpenAI 兼容的视频任务状态查询接口。\n\n返回视频任务的详细状态信息。\n",
  654. "operationId": "getVideo",
  655. "tags": [
  656. "视频生成/Sora兼容格式"
  657. ],
  658. "parameters": [
  659. {
  660. "name": "task_id",
  661. "in": "path",
  662. "description": "视频任务 ID",
  663. "required": true,
  664. "example": "sora-2-123456",
  665. "schema": {
  666. "type": "string"
  667. }
  668. }
  669. ],
  670. "responses": {
  671. "200": {
  672. "description": "成功获取视频任务状态",
  673. "content": {
  674. "application/json": {
  675. "schema": {
  676. "type": "object",
  677. "properties": {
  678. "id": {
  679. "type": "string"
  680. },
  681. "object": {
  682. "type": "string"
  683. },
  684. "model": {
  685. "type": "string"
  686. },
  687. "status": {
  688. "type": "string"
  689. },
  690. "progress": {
  691. "type": "integer"
  692. },
  693. "created_at": {
  694. "type": "integer"
  695. },
  696. "seconds": {
  697. "type": "string"
  698. }
  699. },
  700. "required": [
  701. "id",
  702. "object",
  703. "model",
  704. "status",
  705. "progress",
  706. "created_at",
  707. "seconds"
  708. ]
  709. },
  710. "example": {
  711. "id": "sora-2-123456",
  712. "object": "video",
  713. "model": "sora-2",
  714. "status": "queued",
  715. "progress": 0,
  716. "created_at": 1764347090922,
  717. "seconds": "8"
  718. }
  719. }
  720. },
  721. "headers": {}
  722. },
  723. "404": {
  724. "description": "任务不存在",
  725. "content": {
  726. "application/json": {
  727. "schema": {
  728. "$ref": "#/components/schemas/ErrorResponse"
  729. }
  730. }
  731. },
  732. "headers": {}
  733. }
  734. },
  735. "security": [
  736. {
  737. "BearerAuth": []
  738. }
  739. ]
  740. }
  741. },
  742. "/v1/videos/{task_id}/content": {
  743. "get": {
  744. "summary": "获取视频内容",
  745. "deprecated": false,
  746. "description": "获取已完成视频任务的视频文件内容。\n\n此接口会代理返回视频文件流。\n",
  747. "operationId": "getVideoContent",
  748. "tags": [
  749. "视频生成/Sora兼容格式"
  750. ],
  751. "parameters": [
  752. {
  753. "name": "task_id",
  754. "in": "path",
  755. "description": "视频任务 ID",
  756. "required": true,
  757. "example": "video-abc123",
  758. "schema": {
  759. "type": "string"
  760. }
  761. }
  762. ],
  763. "responses": {
  764. "200": {
  765. "description": "成功获取视频内容",
  766. "content": {
  767. "video/mp4": {
  768. "schema": {
  769. "type": "string",
  770. "format": "binary"
  771. }
  772. }
  773. },
  774. "headers": {}
  775. },
  776. "404": {
  777. "description": "视频不存在或未完成",
  778. "content": {
  779. "application/json": {
  780. "schema": {
  781. "$ref": "#/components/schemas/ErrorResponse"
  782. }
  783. }
  784. },
  785. "headers": {}
  786. }
  787. },
  788. "security": [
  789. {
  790. "BearerAuth": []
  791. }
  792. ]
  793. }
  794. },
  795. "/kling/v1/videos/text2video": {
  796. "post": {
  797. "summary": "Kling 文生视频",
  798. "deprecated": false,
  799. "description": "使用 Kling 模型从文本描述生成视频。\n\n支持的模型:kling-v1, kling-v1-5 等\n",
  800. "operationId": "createKlingText2Video",
  801. "tags": [
  802. "视频生成/Kling格式"
  803. ],
  804. "parameters": [],
  805. "requestBody": {
  806. "content": {
  807. "application/json": {
  808. "schema": {
  809. "$ref": "#/components/schemas/VideoRequest"
  810. },
  811. "example": {
  812. "model": "kling-v1",
  813. "prompt": "宇航员站起身走了",
  814. "duration": 5,
  815. "width": 1280,
  816. "height": 720,
  817. "fps": 30
  818. }
  819. }
  820. }
  821. },
  822. "responses": {
  823. "200": {
  824. "description": "成功创建视频生成任务",
  825. "content": {
  826. "application/json": {
  827. "schema": {
  828. "$ref": "#/components/schemas/VideoResponse"
  829. }
  830. }
  831. },
  832. "headers": {}
  833. },
  834. "400": {
  835. "description": "请求参数错误",
  836. "content": {
  837. "application/json": {
  838. "schema": {
  839. "$ref": "#/components/schemas/ErrorResponse"
  840. }
  841. }
  842. },
  843. "headers": {}
  844. }
  845. },
  846. "security": [
  847. {
  848. "BearerAuth": []
  849. }
  850. ]
  851. }
  852. },
  853. "/kling/v1/videos/text2video/{task_id}": {
  854. "get": {
  855. "summary": "获取 Kling 文生视频任务状态",
  856. "deprecated": false,
  857. "description": "查询 Kling 文生视频任务的状态和结果。",
  858. "operationId": "getKlingText2Video",
  859. "tags": [
  860. "视频生成/Kling格式"
  861. ],
  862. "parameters": [
  863. {
  864. "name": "task_id",
  865. "in": "path",
  866. "description": "任务 ID",
  867. "required": true,
  868. "example": "task-abc123",
  869. "schema": {
  870. "type": "string"
  871. }
  872. }
  873. ],
  874. "responses": {
  875. "200": {
  876. "description": "成功获取任务状态",
  877. "content": {
  878. "application/json": {
  879. "schema": {
  880. "$ref": "#/components/schemas/VideoTaskResponse"
  881. }
  882. }
  883. },
  884. "headers": {}
  885. },
  886. "404": {
  887. "description": "任务不存在",
  888. "content": {
  889. "application/json": {
  890. "schema": {
  891. "$ref": "#/components/schemas/ErrorResponse"
  892. }
  893. }
  894. },
  895. "headers": {}
  896. }
  897. },
  898. "security": [
  899. {
  900. "BearerAuth": []
  901. }
  902. ]
  903. }
  904. },
  905. "/kling/v1/videos/image2video": {
  906. "post": {
  907. "summary": "Kling 图生视频",
  908. "deprecated": false,
  909. "description": "使用 Kling 模型从图片生成视频。\n\n支持通过 image 参数传入图片 URL 或 Base64 编码的图片数据。\n",
  910. "operationId": "createKlingImage2Video",
  911. "tags": [
  912. "视频生成/Kling格式"
  913. ],
  914. "parameters": [],
  915. "requestBody": {
  916. "content": {
  917. "application/json": {
  918. "schema": {
  919. "$ref": "#/components/schemas/VideoRequest"
  920. },
  921. "example": {
  922. "model": "kling-v1",
  923. "prompt": "人物转身走开",
  924. "image": "https://example.com/image.jpg",
  925. "duration": 5,
  926. "width": 1280,
  927. "height": 720
  928. }
  929. }
  930. }
  931. },
  932. "responses": {
  933. "200": {
  934. "description": "成功创建视频生成任务",
  935. "content": {
  936. "application/json": {
  937. "schema": {
  938. "$ref": "#/components/schemas/VideoResponse"
  939. }
  940. }
  941. },
  942. "headers": {}
  943. },
  944. "400": {
  945. "description": "请求参数错误",
  946. "content": {
  947. "application/json": {
  948. "schema": {
  949. "$ref": "#/components/schemas/ErrorResponse"
  950. }
  951. }
  952. },
  953. "headers": {}
  954. }
  955. },
  956. "security": [
  957. {
  958. "BearerAuth": []
  959. }
  960. ]
  961. }
  962. },
  963. "/kling/v1/videos/image2video/{task_id}": {
  964. "get": {
  965. "summary": "获取 Kling 图生视频任务状态",
  966. "deprecated": false,
  967. "description": "查询 Kling 图生视频任务的状态和结果。",
  968. "operationId": "getKlingImage2Video",
  969. "tags": [
  970. "视频生成/Kling格式"
  971. ],
  972. "parameters": [
  973. {
  974. "name": "task_id",
  975. "in": "path",
  976. "description": "任务 ID",
  977. "required": true,
  978. "example": "task-abc123",
  979. "schema": {
  980. "type": "string"
  981. }
  982. }
  983. ],
  984. "responses": {
  985. "200": {
  986. "description": "成功获取任务状态",
  987. "content": {
  988. "application/json": {
  989. "schema": {
  990. "$ref": "#/components/schemas/VideoTaskResponse"
  991. }
  992. }
  993. },
  994. "headers": {}
  995. },
  996. "404": {
  997. "description": "任务不存在",
  998. "content": {
  999. "application/json": {
  1000. "schema": {
  1001. "$ref": "#/components/schemas/ErrorResponse"
  1002. }
  1003. }
  1004. },
  1005. "headers": {}
  1006. }
  1007. },
  1008. "security": [
  1009. {
  1010. "BearerAuth": []
  1011. }
  1012. ]
  1013. }
  1014. },
  1015. "/jimeng/": {
  1016. "post": {
  1017. "summary": "即梦视频生成",
  1018. "deprecated": false,
  1019. "description": "即梦官方 API 格式的视频生成接口。\n\n支持通过 Action 参数指定操作类型:\n- `CVSync2AsyncSubmitTask`: 提交视频生成任务\n- `CVSync2AsyncGetResult`: 获取任务结果\n\n需要在查询参数中指定 Action 和 Version。\n",
  1020. "operationId": "createJimengVideo",
  1021. "tags": [
  1022. "视频生成/即梦格式"
  1023. ],
  1024. "parameters": [
  1025. {
  1026. "name": "Action",
  1027. "in": "query",
  1028. "description": "API 操作类型",
  1029. "required": true,
  1030. "schema": {
  1031. "type": "string",
  1032. "enum": [
  1033. "CVSync2AsyncSubmitTask",
  1034. "CVSync2AsyncGetResult"
  1035. ]
  1036. }
  1037. },
  1038. {
  1039. "name": "Version",
  1040. "in": "query",
  1041. "description": "API 版本",
  1042. "required": true,
  1043. "example": "2022-08-31",
  1044. "schema": {
  1045. "type": "string"
  1046. }
  1047. }
  1048. ],
  1049. "requestBody": {
  1050. "content": {
  1051. "application/json": {
  1052. "schema": {
  1053. "type": "object",
  1054. "description": "即梦官方 API 请求格式",
  1055. "properties": {
  1056. "req_key": {
  1057. "type": "string",
  1058. "description": "请求类型标识"
  1059. },
  1060. "prompt": {
  1061. "type": "string",
  1062. "description": "文本描述"
  1063. },
  1064. "binary_data_base64": {
  1065. "type": "array",
  1066. "items": {
  1067. "type": "string"
  1068. },
  1069. "description": "Base64 编码的图片数据"
  1070. }
  1071. }
  1072. },
  1073. "example": {
  1074. "req_key": "jimeng_video_generation",
  1075. "prompt": "一只猫在弹钢琴"
  1076. }
  1077. }
  1078. }
  1079. },
  1080. "responses": {
  1081. "200": {
  1082. "description": "成功处理请求",
  1083. "content": {
  1084. "application/json": {
  1085. "schema": {
  1086. "type": "object",
  1087. "properties": {
  1088. "code": {
  1089. "type": "integer",
  1090. "description": "响应码"
  1091. },
  1092. "message": {
  1093. "type": "string",
  1094. "description": "响应消息"
  1095. },
  1096. "data": {
  1097. "type": "object",
  1098. "description": "响应数据",
  1099. "properties": {}
  1100. }
  1101. }
  1102. }
  1103. }
  1104. },
  1105. "headers": {}
  1106. },
  1107. "400": {
  1108. "description": "请求参数错误",
  1109. "content": {
  1110. "application/json": {
  1111. "schema": {
  1112. "$ref": "#/components/schemas/ErrorResponse"
  1113. }
  1114. }
  1115. },
  1116. "headers": {}
  1117. }
  1118. },
  1119. "security": [
  1120. {
  1121. "BearerAuth": []
  1122. }
  1123. ]
  1124. }
  1125. },
  1126. "/v1/video/generations": {
  1127. "post": {
  1128. "summary": "创建视频生成任务",
  1129. "deprecated": false,
  1130. "description": "提交视频生成任务,支持文生视频和图生视频。\n\n返回任务 ID,可通过 GET 接口查询任务状态。\n",
  1131. "operationId": "createVideoGeneration",
  1132. "tags": [
  1133. "视频生成"
  1134. ],
  1135. "parameters": [],
  1136. "requestBody": {
  1137. "content": {
  1138. "application/json": {
  1139. "schema": {
  1140. "$ref": "#/components/schemas/VideoRequest"
  1141. },
  1142. "example": {
  1143. "model": "kling-v1",
  1144. "prompt": "宇航员在月球上漫步",
  1145. "duration": 5,
  1146. "width": 1280,
  1147. "height": 720
  1148. }
  1149. }
  1150. },
  1151. "required": true
  1152. },
  1153. "responses": {
  1154. "200": {
  1155. "description": "成功创建视频生成任务",
  1156. "content": {
  1157. "application/json": {
  1158. "schema": {
  1159. "$ref": "#/components/schemas/VideoResponse"
  1160. }
  1161. }
  1162. },
  1163. "headers": {}
  1164. },
  1165. "400": {
  1166. "description": "请求参数错误",
  1167. "content": {
  1168. "application/json": {
  1169. "schema": {
  1170. "$ref": "#/components/schemas/ErrorResponse"
  1171. }
  1172. }
  1173. },
  1174. "headers": {}
  1175. }
  1176. },
  1177. "security": [
  1178. {
  1179. "BearerAuth": []
  1180. }
  1181. ]
  1182. }
  1183. },
  1184. "/v1/video/generations/{task_id}": {
  1185. "get": {
  1186. "summary": "获取视频生成任务状态",
  1187. "deprecated": false,
  1188. "description": "查询视频生成任务的状态和结果。\n\n任务状态:\n- `queued`: 排队中\n- `in_progress`: 生成中\n- `completed`: 已完成\n- `failed`: 失败\n",
  1189. "operationId": "getVideoGeneration",
  1190. "tags": [
  1191. "视频生成"
  1192. ],
  1193. "parameters": [
  1194. {
  1195. "name": "task_id",
  1196. "in": "path",
  1197. "description": "任务 ID",
  1198. "required": true,
  1199. "example": "abcd1234efgh",
  1200. "schema": {
  1201. "type": "string"
  1202. }
  1203. }
  1204. ],
  1205. "responses": {
  1206. "200": {
  1207. "description": "成功获取任务状态",
  1208. "content": {
  1209. "application/json": {
  1210. "schema": {
  1211. "$ref": "#/components/schemas/VideoTaskResponse"
  1212. }
  1213. }
  1214. },
  1215. "headers": {}
  1216. },
  1217. "404": {
  1218. "description": "任务不存在",
  1219. "content": {
  1220. "application/json": {
  1221. "schema": {
  1222. "$ref": "#/components/schemas/ErrorResponse"
  1223. }
  1224. }
  1225. },
  1226. "headers": {}
  1227. }
  1228. },
  1229. "security": [
  1230. {
  1231. "BearerAuth": []
  1232. }
  1233. ]
  1234. }
  1235. },
  1236. "/v1/messages": {
  1237. "post": {
  1238. "summary": "Claude 聊天",
  1239. "deprecated": false,
  1240. "description": "Anthropic Claude Messages API 格式的请求。\n需要在请求头中包含 `anthropic-version`。\n",
  1241. "operationId": "createMessage",
  1242. "tags": [
  1243. "Claude格式(Messages)"
  1244. ],
  1245. "parameters": [
  1246. {
  1247. "name": "anthropic-version",
  1248. "in": "header",
  1249. "description": "Anthropic API 版本",
  1250. "required": true,
  1251. "example": "",
  1252. "schema": {
  1253. "type": "string",
  1254. "example": "2023-06-01"
  1255. }
  1256. },
  1257. {
  1258. "name": "x-api-key",
  1259. "in": "header",
  1260. "description": "Anthropic API Key (可选,也可使用 Bearer Token)",
  1261. "required": false,
  1262. "example": "",
  1263. "schema": {
  1264. "type": "string"
  1265. }
  1266. }
  1267. ],
  1268. "requestBody": {
  1269. "content": {
  1270. "application/json": {
  1271. "schema": {
  1272. "$ref": "#/components/schemas/ClaudeRequest"
  1273. },
  1274. "examples": {}
  1275. }
  1276. }
  1277. },
  1278. "responses": {
  1279. "200": {
  1280. "description": "成功创建响应",
  1281. "content": {
  1282. "application/json": {
  1283. "schema": {
  1284. "$ref": "#/components/schemas/ClaudeResponse"
  1285. }
  1286. }
  1287. },
  1288. "headers": {}
  1289. }
  1290. },
  1291. "security": [
  1292. {
  1293. "BearerAuth": []
  1294. }
  1295. ]
  1296. }
  1297. },
  1298. "/v1beta/models/{model}:generateContent": {
  1299. "post": {
  1300. "summary": "Gemini 图片(Nano Banana)",
  1301. "deprecated": false,
  1302. "description": "Gemini 图片生成",
  1303. "operationId": "geminiRelayV1Beta",
  1304. "tags": [
  1305. "Gemini格式"
  1306. ],
  1307. "parameters": [
  1308. {
  1309. "name": "model",
  1310. "in": "path",
  1311. "description": "模型名称",
  1312. "required": true,
  1313. "example": "gemini-3-pro-image-preview",
  1314. "schema": {
  1315. "type": "string"
  1316. }
  1317. }
  1318. ],
  1319. "requestBody": {
  1320. "content": {
  1321. "application/json": {
  1322. "schema": {
  1323. "type": "object",
  1324. "properties": {
  1325. "contents": {
  1326. "type": "array",
  1327. "items": {
  1328. "type": "object",
  1329. "properties": {
  1330. "role": {
  1331. "type": "string"
  1332. },
  1333. "parts": {
  1334. "type": "array",
  1335. "items": {
  1336. "type": "object",
  1337. "properties": {
  1338. "text": {
  1339. "type": "string"
  1340. }
  1341. }
  1342. }
  1343. }
  1344. }
  1345. }
  1346. },
  1347. "generationConfig": {
  1348. "type": "object",
  1349. "properties": {
  1350. "responseModalities": {
  1351. "type": "array",
  1352. "items": {
  1353. "type": "string"
  1354. }
  1355. },
  1356. "imageConfig": {
  1357. "type": "object",
  1358. "properties": {
  1359. "aspectRatio": {
  1360. "type": "string"
  1361. },
  1362. "imageSize": {
  1363. "type": "string"
  1364. }
  1365. }
  1366. }
  1367. },
  1368. "required": [
  1369. "responseModalities"
  1370. ]
  1371. }
  1372. },
  1373. "required": [
  1374. "contents",
  1375. "generationConfig"
  1376. ]
  1377. },
  1378. "example": {
  1379. "contents": [
  1380. {
  1381. "role": "user",
  1382. "parts": [
  1383. {
  1384. "text": "draw a cat"
  1385. }
  1386. ]
  1387. }
  1388. ],
  1389. "generationConfig": {
  1390. "responseModalities": [
  1391. "TEXT",
  1392. "IMAGE"
  1393. ],
  1394. "imageConfig": {
  1395. "aspectRatio": "16:9",
  1396. "imageSize": "4K"
  1397. }
  1398. }
  1399. }
  1400. }
  1401. }
  1402. },
  1403. "responses": {
  1404. "200": {
  1405. "description": "成功",
  1406. "content": {
  1407. "application/json": {
  1408. "schema": {
  1409. "$ref": "#/components/schemas/GeminiResponse"
  1410. }
  1411. }
  1412. },
  1413. "headers": {}
  1414. }
  1415. },
  1416. "security": [
  1417. {
  1418. "BearerAuth": []
  1419. }
  1420. ]
  1421. }
  1422. },
  1423. "/v1/engines/{model}/embeddings": {
  1424. "post": {
  1425. "summary": "Gemini 嵌入(Embeddings)",
  1426. "deprecated": false,
  1427. "description": "使用指定引擎/模型创建嵌入",
  1428. "operationId": "createEngineEmbedding",
  1429. "tags": [
  1430. "Gemini格式"
  1431. ],
  1432. "parameters": [
  1433. {
  1434. "name": "model",
  1435. "in": "path",
  1436. "description": "模型/引擎 ID",
  1437. "required": true,
  1438. "example": "",
  1439. "schema": {
  1440. "type": "string"
  1441. }
  1442. }
  1443. ],
  1444. "requestBody": {
  1445. "content": {
  1446. "application/json": {
  1447. "schema": {
  1448. "$ref": "#/components/schemas/EmbeddingRequest"
  1449. },
  1450. "examples": {}
  1451. }
  1452. }
  1453. },
  1454. "responses": {
  1455. "200": {
  1456. "description": "成功创建嵌入",
  1457. "content": {
  1458. "application/json": {
  1459. "schema": {
  1460. "$ref": "#/components/schemas/EmbeddingResponse"
  1461. }
  1462. }
  1463. },
  1464. "headers": {}
  1465. }
  1466. },
  1467. "security": [
  1468. {
  1469. "BearerAuth": []
  1470. }
  1471. ]
  1472. }
  1473. },
  1474. "/v1/embeddings": {
  1475. "post": {
  1476. "summary": "创建文本嵌入",
  1477. "deprecated": false,
  1478. "description": "将文本转换为向量嵌入",
  1479. "operationId": "createEmbedding",
  1480. "tags": [
  1481. "OpenAI格式(Embeddings)"
  1482. ],
  1483. "parameters": [],
  1484. "requestBody": {
  1485. "content": {
  1486. "application/json": {
  1487. "schema": {
  1488. "$ref": "#/components/schemas/EmbeddingRequest"
  1489. }
  1490. }
  1491. },
  1492. "required": true
  1493. },
  1494. "responses": {
  1495. "200": {
  1496. "description": "成功创建嵌入",
  1497. "content": {
  1498. "application/json": {
  1499. "schema": {
  1500. "$ref": "#/components/schemas/EmbeddingResponse"
  1501. }
  1502. }
  1503. },
  1504. "headers": {}
  1505. }
  1506. },
  1507. "security": [
  1508. {
  1509. "BearerAuth": []
  1510. }
  1511. ]
  1512. }
  1513. },
  1514. "/v1/completions": {
  1515. "post": {
  1516. "summary": "创建文本补全",
  1517. "deprecated": false,
  1518. "description": "基于给定提示创建文本补全",
  1519. "operationId": "createCompletion",
  1520. "tags": [
  1521. "文本补全(Completions)"
  1522. ],
  1523. "parameters": [],
  1524. "requestBody": {
  1525. "content": {
  1526. "application/json": {
  1527. "schema": {
  1528. "$ref": "#/components/schemas/CompletionRequest"
  1529. }
  1530. }
  1531. },
  1532. "required": true
  1533. },
  1534. "responses": {
  1535. "200": {
  1536. "description": "成功创建响应",
  1537. "content": {
  1538. "application/json": {
  1539. "schema": {
  1540. "$ref": "#/components/schemas/CompletionResponse"
  1541. }
  1542. }
  1543. },
  1544. "headers": {}
  1545. }
  1546. },
  1547. "security": [
  1548. {
  1549. "BearerAuth": []
  1550. }
  1551. ]
  1552. }
  1553. },
  1554. "/v1/audio/transcriptions": {
  1555. "post": {
  1556. "summary": "音频转录",
  1557. "deprecated": false,
  1558. "description": "将音频转换为文本",
  1559. "operationId": "createTranscription",
  1560. "tags": [
  1561. "OpenAI音频(Audio)"
  1562. ],
  1563. "parameters": [],
  1564. "requestBody": {
  1565. "content": {
  1566. "multipart/form-data": {
  1567. "schema": {
  1568. "type": "object",
  1569. "properties": {
  1570. "file": {
  1571. "type": "string",
  1572. "format": "binary",
  1573. "description": "音频文件",
  1574. "example": ""
  1575. },
  1576. "model": {
  1577. "type": "string",
  1578. "example": "whisper-1"
  1579. },
  1580. "language": {
  1581. "type": "string",
  1582. "description": "ISO-639-1 语言代码",
  1583. "example": ""
  1584. },
  1585. "prompt": {
  1586. "type": "string",
  1587. "example": ""
  1588. },
  1589. "response_format": {
  1590. "type": "string",
  1591. "enum": [
  1592. "json",
  1593. "text",
  1594. "srt",
  1595. "verbose_json",
  1596. "vtt"
  1597. ],
  1598. "default": "json",
  1599. "example": "json"
  1600. },
  1601. "temperature": {
  1602. "type": "number",
  1603. "example": 0
  1604. },
  1605. "timestamp_granularities": {
  1606. "type": "array",
  1607. "items": {
  1608. "type": "string",
  1609. "enum": [
  1610. "word",
  1611. "segment"
  1612. ]
  1613. },
  1614. "example": ""
  1615. }
  1616. },
  1617. "required": [
  1618. "file",
  1619. "model"
  1620. ]
  1621. }
  1622. }
  1623. },
  1624. "required": true
  1625. },
  1626. "responses": {
  1627. "200": {
  1628. "description": "成功转录",
  1629. "content": {
  1630. "application/json": {
  1631. "schema": {
  1632. "$ref": "#/components/schemas/AudioTranscriptionResponse"
  1633. }
  1634. }
  1635. },
  1636. "headers": {}
  1637. }
  1638. },
  1639. "security": [
  1640. {
  1641. "BearerAuth": []
  1642. }
  1643. ]
  1644. }
  1645. },
  1646. "/v1/audio/translations": {
  1647. "post": {
  1648. "summary": "音频翻译",
  1649. "deprecated": false,
  1650. "description": "将音频翻译为英文文本",
  1651. "operationId": "createTranslation",
  1652. "tags": [
  1653. "OpenAI音频(Audio)"
  1654. ],
  1655. "parameters": [],
  1656. "requestBody": {
  1657. "content": {
  1658. "multipart/form-data": {
  1659. "schema": {
  1660. "type": "object",
  1661. "properties": {
  1662. "file": {
  1663. "type": "string",
  1664. "format": "binary",
  1665. "example": ""
  1666. },
  1667. "model": {
  1668. "type": "string",
  1669. "example": ""
  1670. },
  1671. "prompt": {
  1672. "type": "string",
  1673. "example": ""
  1674. },
  1675. "response_format": {
  1676. "type": "string",
  1677. "example": ""
  1678. },
  1679. "temperature": {
  1680. "type": "number",
  1681. "example": 0
  1682. }
  1683. },
  1684. "required": [
  1685. "file",
  1686. "model"
  1687. ]
  1688. }
  1689. }
  1690. },
  1691. "required": true
  1692. },
  1693. "responses": {
  1694. "200": {
  1695. "description": "成功翻译",
  1696. "content": {
  1697. "application/json": {
  1698. "schema": {
  1699. "$ref": "#/components/schemas/AudioTranscriptionResponse"
  1700. }
  1701. }
  1702. },
  1703. "headers": {}
  1704. }
  1705. },
  1706. "security": [
  1707. {
  1708. "BearerAuth": []
  1709. }
  1710. ]
  1711. }
  1712. },
  1713. "/v1/audio/speech": {
  1714. "post": {
  1715. "summary": "文本转语音",
  1716. "deprecated": false,
  1717. "description": "将文本转换为音频",
  1718. "operationId": "createSpeech",
  1719. "tags": [
  1720. "OpenAI音频(Audio)"
  1721. ],
  1722. "parameters": [],
  1723. "requestBody": {
  1724. "content": {
  1725. "application/json": {
  1726. "schema": {
  1727. "$ref": "#/components/schemas/SpeechRequest"
  1728. }
  1729. }
  1730. },
  1731. "required": true
  1732. },
  1733. "responses": {
  1734. "200": {
  1735. "description": "成功生成音频",
  1736. "content": {
  1737. "audio/mpeg": {
  1738. "schema": {
  1739. "type": "string",
  1740. "format": "binary"
  1741. }
  1742. }
  1743. },
  1744. "headers": {}
  1745. }
  1746. },
  1747. "security": [
  1748. {
  1749. "BearerAuth": []
  1750. }
  1751. ]
  1752. }
  1753. },
  1754. "/v1/rerank": {
  1755. "post": {
  1756. "summary": "文档重排序",
  1757. "deprecated": false,
  1758. "description": "根据查询对文档列表进行相关性重排序",
  1759. "operationId": "createRerank",
  1760. "tags": [
  1761. "重排序(Rerank)"
  1762. ],
  1763. "parameters": [],
  1764. "requestBody": {
  1765. "content": {
  1766. "application/json": {
  1767. "schema": {
  1768. "$ref": "#/components/schemas/RerankRequest"
  1769. }
  1770. }
  1771. },
  1772. "required": true
  1773. },
  1774. "responses": {
  1775. "200": {
  1776. "description": "成功重排序",
  1777. "content": {
  1778. "application/json": {
  1779. "schema": {
  1780. "$ref": "#/components/schemas/RerankResponse"
  1781. }
  1782. }
  1783. },
  1784. "headers": {}
  1785. }
  1786. },
  1787. "security": [
  1788. {
  1789. "BearerAuth": []
  1790. }
  1791. ]
  1792. }
  1793. },
  1794. "/v1/moderations": {
  1795. "post": {
  1796. "summary": "内容审核",
  1797. "deprecated": false,
  1798. "description": "检查文本内容是否违反使用政策",
  1799. "operationId": "createModeration",
  1800. "tags": [
  1801. "Moderations"
  1802. ],
  1803. "parameters": [],
  1804. "requestBody": {
  1805. "content": {
  1806. "application/json": {
  1807. "schema": {
  1808. "$ref": "#/components/schemas/ModerationRequest"
  1809. }
  1810. }
  1811. },
  1812. "required": true
  1813. },
  1814. "responses": {
  1815. "200": {
  1816. "description": "成功审核",
  1817. "content": {
  1818. "application/json": {
  1819. "schema": {
  1820. "$ref": "#/components/schemas/ModerationResponse"
  1821. }
  1822. }
  1823. },
  1824. "headers": {}
  1825. }
  1826. },
  1827. "security": [
  1828. {
  1829. "BearerAuth": []
  1830. }
  1831. ]
  1832. }
  1833. },
  1834. "/v1/realtime": {
  1835. "get": {
  1836. "summary": "实时 WebSocket 连接",
  1837. "deprecated": false,
  1838. "description": "建立 WebSocket 连接用于实时对话。\n\n**注意**: 这是一个 WebSocket 端点,需要使用 WebSocket 协议连接。\n\n连接 URL 示例: `wss://api.example.com/v1/realtime?model=gpt-4o-realtime`\n",
  1839. "operationId": "createRealtimeSession",
  1840. "tags": [
  1841. "Realtime"
  1842. ],
  1843. "parameters": [
  1844. {
  1845. "name": "model",
  1846. "in": "query",
  1847. "description": "要使用的模型",
  1848. "required": false,
  1849. "schema": {
  1850. "type": "string",
  1851. "example": "gpt-4o-realtime-preview"
  1852. }
  1853. }
  1854. ],
  1855. "responses": {
  1856. "101": {
  1857. "description": "WebSocket 协议切换",
  1858. "headers": {}
  1859. },
  1860. "400": {
  1861. "description": "请求错误",
  1862. "content": {
  1863. "application/json": {
  1864. "schema": {
  1865. "$ref": "#/components/schemas/ErrorResponse"
  1866. }
  1867. }
  1868. },
  1869. "headers": {}
  1870. }
  1871. },
  1872. "security": [
  1873. {
  1874. "BearerAuth": []
  1875. }
  1876. ]
  1877. }
  1878. },
  1879. "/v1/fine-tunes": {
  1880. "get": {
  1881. "summary": "列出微调任务 (未实现)",
  1882. "deprecated": false,
  1883. "description": "此接口尚未实现",
  1884. "operationId": "listFineTunes",
  1885. "tags": [
  1886. "未实现/Fine-tunes"
  1887. ],
  1888. "parameters": [],
  1889. "responses": {
  1890. "501": {
  1891. "description": "未实现",
  1892. "content": {
  1893. "application/json": {
  1894. "schema": {
  1895. "$ref": "#/components/schemas/ErrorResponse"
  1896. }
  1897. }
  1898. },
  1899. "headers": {}
  1900. }
  1901. },
  1902. "security": [
  1903. {
  1904. "BearerAuth": []
  1905. }
  1906. ]
  1907. },
  1908. "post": {
  1909. "summary": "创建微调任务 (未实现)",
  1910. "deprecated": false,
  1911. "description": "此接口尚未实现",
  1912. "operationId": "createFineTune",
  1913. "tags": [
  1914. "未实现/Fine-tunes"
  1915. ],
  1916. "parameters": [],
  1917. "requestBody": {
  1918. "content": {
  1919. "application/json": {
  1920. "schema": {
  1921. "type": "object",
  1922. "properties": {}
  1923. }
  1924. }
  1925. }
  1926. },
  1927. "responses": {
  1928. "501": {
  1929. "description": "未实现",
  1930. "content": {
  1931. "application/json": {
  1932. "schema": {
  1933. "$ref": "#/components/schemas/ErrorResponse"
  1934. }
  1935. }
  1936. },
  1937. "headers": {}
  1938. }
  1939. },
  1940. "security": [
  1941. {
  1942. "BearerAuth": []
  1943. }
  1944. ]
  1945. }
  1946. },
  1947. "/v1/fine-tunes/{fine_tune_id}": {
  1948. "get": {
  1949. "summary": "获取微调任务详情 (未实现)",
  1950. "deprecated": false,
  1951. "description": "此接口尚未实现",
  1952. "operationId": "retrieveFineTune",
  1953. "tags": [
  1954. "未实现/Fine-tunes"
  1955. ],
  1956. "parameters": [
  1957. {
  1958. "name": "fine_tune_id",
  1959. "in": "path",
  1960. "description": "",
  1961. "required": true,
  1962. "example": "",
  1963. "schema": {
  1964. "type": "string"
  1965. }
  1966. }
  1967. ],
  1968. "responses": {
  1969. "501": {
  1970. "description": "未实现",
  1971. "content": {
  1972. "application/json": {
  1973. "schema": {
  1974. "$ref": "#/components/schemas/ErrorResponse"
  1975. }
  1976. }
  1977. },
  1978. "headers": {}
  1979. }
  1980. },
  1981. "security": [
  1982. {
  1983. "BearerAuth": []
  1984. }
  1985. ]
  1986. }
  1987. },
  1988. "/v1/fine-tunes/{fine_tune_id}/cancel": {
  1989. "post": {
  1990. "summary": "取消微调任务 (未实现)",
  1991. "deprecated": false,
  1992. "description": "此接口尚未实现",
  1993. "operationId": "cancelFineTune",
  1994. "tags": [
  1995. "未实现/Fine-tunes"
  1996. ],
  1997. "parameters": [
  1998. {
  1999. "name": "fine_tune_id",
  2000. "in": "path",
  2001. "description": "",
  2002. "required": true,
  2003. "example": "",
  2004. "schema": {
  2005. "type": "string"
  2006. }
  2007. }
  2008. ],
  2009. "responses": {
  2010. "501": {
  2011. "description": "未实现",
  2012. "content": {
  2013. "application/json": {
  2014. "schema": {
  2015. "$ref": "#/components/schemas/ErrorResponse"
  2016. }
  2017. }
  2018. },
  2019. "headers": {}
  2020. }
  2021. },
  2022. "security": [
  2023. {
  2024. "BearerAuth": []
  2025. }
  2026. ]
  2027. }
  2028. },
  2029. "/v1/fine-tunes/{fine_tune_id}/events": {
  2030. "get": {
  2031. "summary": "获取微调任务事件 (未实现)",
  2032. "deprecated": false,
  2033. "description": "此接口尚未实现",
  2034. "operationId": "listFineTuneEvents",
  2035. "tags": [
  2036. "未实现/Fine-tunes"
  2037. ],
  2038. "parameters": [
  2039. {
  2040. "name": "fine_tune_id",
  2041. "in": "path",
  2042. "description": "",
  2043. "required": true,
  2044. "example": "",
  2045. "schema": {
  2046. "type": "string"
  2047. }
  2048. }
  2049. ],
  2050. "responses": {
  2051. "501": {
  2052. "description": "未实现",
  2053. "content": {
  2054. "application/json": {
  2055. "schema": {
  2056. "$ref": "#/components/schemas/ErrorResponse"
  2057. }
  2058. }
  2059. },
  2060. "headers": {}
  2061. }
  2062. },
  2063. "security": [
  2064. {
  2065. "BearerAuth": []
  2066. }
  2067. ]
  2068. }
  2069. },
  2070. "/v1/files": {
  2071. "get": {
  2072. "summary": "列出文件 (未实现)",
  2073. "deprecated": false,
  2074. "description": "此接口尚未实现",
  2075. "operationId": "listFiles",
  2076. "tags": [
  2077. "未实现/Files"
  2078. ],
  2079. "parameters": [],
  2080. "responses": {
  2081. "501": {
  2082. "description": "未实现",
  2083. "content": {
  2084. "application/json": {
  2085. "schema": {
  2086. "$ref": "#/components/schemas/ErrorResponse"
  2087. }
  2088. }
  2089. },
  2090. "headers": {}
  2091. }
  2092. },
  2093. "security": [
  2094. {
  2095. "BearerAuth": []
  2096. }
  2097. ]
  2098. },
  2099. "post": {
  2100. "summary": "上传文件 (未实现)",
  2101. "deprecated": false,
  2102. "description": "此接口尚未实现",
  2103. "operationId": "createFile",
  2104. "tags": [
  2105. "未实现/Files"
  2106. ],
  2107. "parameters": [],
  2108. "requestBody": {
  2109. "content": {
  2110. "multipart/form-data": {
  2111. "schema": {
  2112. "type": "object",
  2113. "properties": {
  2114. "file": {
  2115. "type": "string",
  2116. "format": "binary",
  2117. "example": ""
  2118. },
  2119. "purpose": {
  2120. "type": "string",
  2121. "example": ""
  2122. }
  2123. }
  2124. }
  2125. }
  2126. }
  2127. },
  2128. "responses": {
  2129. "501": {
  2130. "description": "未实现",
  2131. "content": {
  2132. "application/json": {
  2133. "schema": {
  2134. "$ref": "#/components/schemas/ErrorResponse"
  2135. }
  2136. }
  2137. },
  2138. "headers": {}
  2139. }
  2140. },
  2141. "security": [
  2142. {
  2143. "BearerAuth": []
  2144. }
  2145. ]
  2146. }
  2147. },
  2148. "/v1/files/{file_id}": {
  2149. "get": {
  2150. "summary": "获取文件信息 (未实现)",
  2151. "deprecated": false,
  2152. "description": "此接口尚未实现",
  2153. "operationId": "retrieveFile",
  2154. "tags": [
  2155. "未实现/Files"
  2156. ],
  2157. "parameters": [
  2158. {
  2159. "name": "file_id",
  2160. "in": "path",
  2161. "description": "",
  2162. "required": true,
  2163. "example": "",
  2164. "schema": {
  2165. "type": "string"
  2166. }
  2167. }
  2168. ],
  2169. "responses": {
  2170. "501": {
  2171. "description": "未实现",
  2172. "content": {
  2173. "application/json": {
  2174. "schema": {
  2175. "$ref": "#/components/schemas/ErrorResponse"
  2176. }
  2177. }
  2178. },
  2179. "headers": {}
  2180. }
  2181. },
  2182. "security": [
  2183. {
  2184. "BearerAuth": []
  2185. }
  2186. ]
  2187. },
  2188. "delete": {
  2189. "summary": "删除文件 (未实现)",
  2190. "deprecated": false,
  2191. "description": "此接口尚未实现",
  2192. "operationId": "deleteFile",
  2193. "tags": [
  2194. "未实现/Files"
  2195. ],
  2196. "parameters": [
  2197. {
  2198. "name": "file_id",
  2199. "in": "path",
  2200. "description": "",
  2201. "required": true,
  2202. "example": "",
  2203. "schema": {
  2204. "type": "string"
  2205. }
  2206. }
  2207. ],
  2208. "responses": {
  2209. "501": {
  2210. "description": "未实现",
  2211. "content": {
  2212. "application/json": {
  2213. "schema": {
  2214. "$ref": "#/components/schemas/ErrorResponse"
  2215. }
  2216. }
  2217. },
  2218. "headers": {}
  2219. }
  2220. },
  2221. "security": [
  2222. {
  2223. "BearerAuth": []
  2224. }
  2225. ]
  2226. }
  2227. },
  2228. "/v1/files/{file_id}/content": {
  2229. "get": {
  2230. "summary": "获取文件内容 (未实现)",
  2231. "deprecated": false,
  2232. "description": "此接口尚未实现",
  2233. "operationId": "downloadFile",
  2234. "tags": [
  2235. "未实现/Files"
  2236. ],
  2237. "parameters": [
  2238. {
  2239. "name": "file_id",
  2240. "in": "path",
  2241. "description": "",
  2242. "required": true,
  2243. "example": "",
  2244. "schema": {
  2245. "type": "string"
  2246. }
  2247. }
  2248. ],
  2249. "responses": {
  2250. "501": {
  2251. "description": "未实现",
  2252. "content": {
  2253. "application/json": {
  2254. "schema": {
  2255. "$ref": "#/components/schemas/ErrorResponse"
  2256. }
  2257. }
  2258. },
  2259. "headers": {}
  2260. }
  2261. },
  2262. "security": [
  2263. {
  2264. "BearerAuth": []
  2265. }
  2266. ]
  2267. }
  2268. }
  2269. },
  2270. "components": {
  2271. "schemas": {
  2272. "ErrorResponse": {
  2273. "type": "object",
  2274. "properties": {
  2275. "error": {
  2276. "type": "object",
  2277. "properties": {
  2278. "message": {
  2279. "type": "string",
  2280. "description": "错误信息"
  2281. },
  2282. "type": {
  2283. "type": "string",
  2284. "description": "错误类型"
  2285. },
  2286. "param": {
  2287. "type": "string",
  2288. "description": "相关参数",
  2289. "nullable": true
  2290. },
  2291. "code": {
  2292. "type": "string",
  2293. "description": "错误代码",
  2294. "nullable": true
  2295. }
  2296. }
  2297. }
  2298. }
  2299. },
  2300. "Usage": {
  2301. "type": "object",
  2302. "properties": {
  2303. "prompt_tokens": {
  2304. "type": "integer",
  2305. "description": "提示词 Token 数"
  2306. },
  2307. "completion_tokens": {
  2308. "type": "integer",
  2309. "description": "补全 Token 数"
  2310. },
  2311. "total_tokens": {
  2312. "type": "integer",
  2313. "description": "总 Token 数"
  2314. },
  2315. "prompt_tokens_details": {
  2316. "type": "object",
  2317. "properties": {
  2318. "cached_tokens": {
  2319. "type": "integer"
  2320. },
  2321. "text_tokens": {
  2322. "type": "integer"
  2323. },
  2324. "audio_tokens": {
  2325. "type": "integer"
  2326. },
  2327. "image_tokens": {
  2328. "type": "integer"
  2329. }
  2330. }
  2331. },
  2332. "completion_tokens_details": {
  2333. "type": "object",
  2334. "properties": {
  2335. "text_tokens": {
  2336. "type": "integer"
  2337. },
  2338. "audio_tokens": {
  2339. "type": "integer"
  2340. },
  2341. "reasoning_tokens": {
  2342. "type": "integer"
  2343. }
  2344. }
  2345. }
  2346. }
  2347. },
  2348. "Model": {
  2349. "type": "object",
  2350. "properties": {
  2351. "id": {
  2352. "type": "string",
  2353. "description": "模型 ID",
  2354. "example": "gpt-4"
  2355. },
  2356. "object": {
  2357. "type": "string",
  2358. "description": "对象类型",
  2359. "example": "model"
  2360. },
  2361. "created": {
  2362. "type": "integer",
  2363. "description": "创建时间戳"
  2364. },
  2365. "owned_by": {
  2366. "type": "string",
  2367. "description": "模型所有者",
  2368. "example": "openai"
  2369. }
  2370. }
  2371. },
  2372. "ModelsResponse": {
  2373. "type": "object",
  2374. "properties": {
  2375. "object": {
  2376. "type": "string",
  2377. "example": "list"
  2378. },
  2379. "data": {
  2380. "type": "array",
  2381. "items": {
  2382. "$ref": "#/components/schemas/Model"
  2383. }
  2384. }
  2385. }
  2386. },
  2387. "GeminiModelsResponse": {
  2388. "type": "object",
  2389. "properties": {
  2390. "models": {
  2391. "type": "array",
  2392. "items": {
  2393. "type": "object",
  2394. "properties": {
  2395. "name": {
  2396. "type": "string",
  2397. "example": "models/gemini-pro"
  2398. },
  2399. "version": {
  2400. "type": "string"
  2401. },
  2402. "displayName": {
  2403. "type": "string"
  2404. },
  2405. "description": {
  2406. "type": "string"
  2407. },
  2408. "inputTokenLimit": {
  2409. "type": "integer"
  2410. },
  2411. "outputTokenLimit": {
  2412. "type": "integer"
  2413. },
  2414. "supportedGenerationMethods": {
  2415. "type": "array",
  2416. "items": {
  2417. "type": "string"
  2418. }
  2419. }
  2420. }
  2421. }
  2422. }
  2423. }
  2424. },
  2425. "Message": {
  2426. "type": "object",
  2427. "required": [
  2428. "role",
  2429. "content"
  2430. ],
  2431. "properties": {
  2432. "role": {
  2433. "type": "string",
  2434. "enum": [
  2435. "system",
  2436. "user",
  2437. "assistant",
  2438. "tool",
  2439. "developer"
  2440. ],
  2441. "description": "消息角色"
  2442. },
  2443. "content": {
  2444. "oneOf": [
  2445. {
  2446. "type": "string"
  2447. },
  2448. {
  2449. "type": "array",
  2450. "items": {
  2451. "$ref": "#/components/schemas/MessageContent"
  2452. }
  2453. }
  2454. ],
  2455. "description": "消息内容"
  2456. },
  2457. "name": {
  2458. "type": "string",
  2459. "description": "发送者名称"
  2460. },
  2461. "tool_calls": {
  2462. "type": "array",
  2463. "items": {
  2464. "$ref": "#/components/schemas/ToolCall"
  2465. }
  2466. },
  2467. "tool_call_id": {
  2468. "type": "string",
  2469. "description": "工具调用 ID(用于 tool 角色消息)"
  2470. },
  2471. "reasoning_content": {
  2472. "type": "string",
  2473. "description": "推理内容"
  2474. }
  2475. }
  2476. },
  2477. "MessageContent": {
  2478. "type": "object",
  2479. "properties": {
  2480. "type": {
  2481. "type": "string",
  2482. "enum": [
  2483. "text",
  2484. "image_url",
  2485. "input_audio",
  2486. "file",
  2487. "video_url"
  2488. ]
  2489. },
  2490. "text": {
  2491. "type": "string"
  2492. },
  2493. "image_url": {
  2494. "type": "object",
  2495. "properties": {
  2496. "url": {
  2497. "type": "string",
  2498. "description": "图片 URL 或 base64"
  2499. },
  2500. "detail": {
  2501. "type": "string",
  2502. "enum": [
  2503. "low",
  2504. "high",
  2505. "auto"
  2506. ]
  2507. }
  2508. }
  2509. },
  2510. "input_audio": {
  2511. "type": "object",
  2512. "properties": {
  2513. "data": {
  2514. "type": "string",
  2515. "description": "Base64 编码的音频数据"
  2516. },
  2517. "format": {
  2518. "type": "string",
  2519. "enum": [
  2520. "wav",
  2521. "mp3"
  2522. ]
  2523. }
  2524. }
  2525. },
  2526. "file": {
  2527. "type": "object",
  2528. "properties": {
  2529. "filename": {
  2530. "type": "string"
  2531. },
  2532. "file_data": {
  2533. "type": "string"
  2534. },
  2535. "file_id": {
  2536. "type": "string"
  2537. }
  2538. }
  2539. },
  2540. "video_url": {
  2541. "type": "object",
  2542. "properties": {
  2543. "url": {
  2544. "type": "string"
  2545. }
  2546. }
  2547. }
  2548. }
  2549. },
  2550. "ToolCall": {
  2551. "type": "object",
  2552. "properties": {
  2553. "id": {
  2554. "type": "string"
  2555. },
  2556. "type": {
  2557. "type": "string",
  2558. "example": "function"
  2559. },
  2560. "function": {
  2561. "type": "object",
  2562. "properties": {
  2563. "name": {
  2564. "type": "string"
  2565. },
  2566. "arguments": {
  2567. "type": "string"
  2568. }
  2569. }
  2570. }
  2571. }
  2572. },
  2573. "Tool": {
  2574. "type": "object",
  2575. "properties": {
  2576. "type": {
  2577. "type": "string",
  2578. "example": "function"
  2579. },
  2580. "function": {
  2581. "type": "object",
  2582. "properties": {
  2583. "name": {
  2584. "type": "string"
  2585. },
  2586. "description": {
  2587. "type": "string"
  2588. },
  2589. "parameters": {
  2590. "type": "object",
  2591. "description": "JSON Schema 格式的参数定义",
  2592. "properties": {}
  2593. }
  2594. }
  2595. }
  2596. }
  2597. },
  2598. "ResponseFormat": {
  2599. "type": "object",
  2600. "properties": {
  2601. "type": {
  2602. "type": "string",
  2603. "enum": [
  2604. "text",
  2605. "json_object",
  2606. "json_schema"
  2607. ]
  2608. },
  2609. "json_schema": {
  2610. "type": "object",
  2611. "description": "JSON Schema 定义",
  2612. "properties": {}
  2613. }
  2614. }
  2615. },
  2616. "ChatCompletionRequest": {
  2617. "type": "object",
  2618. "required": [
  2619. "model",
  2620. "messages"
  2621. ],
  2622. "properties": {
  2623. "model": {
  2624. "type": "string",
  2625. "description": "模型 ID",
  2626. "example": "gpt-4"
  2627. },
  2628. "messages": {
  2629. "type": "array",
  2630. "items": {
  2631. "$ref": "#/components/schemas/Message"
  2632. },
  2633. "description": "对话消息列表"
  2634. },
  2635. "temperature": {
  2636. "type": "number",
  2637. "minimum": 0,
  2638. "maximum": 2,
  2639. "default": 1,
  2640. "description": "采样温度"
  2641. },
  2642. "top_p": {
  2643. "type": "number",
  2644. "minimum": 0,
  2645. "maximum": 1,
  2646. "default": 1,
  2647. "description": "核采样参数"
  2648. },
  2649. "n": {
  2650. "type": "integer",
  2651. "minimum": 1,
  2652. "default": 1,
  2653. "description": "生成数量"
  2654. },
  2655. "stream": {
  2656. "type": "boolean",
  2657. "default": false,
  2658. "description": "是否流式响应"
  2659. },
  2660. "stream_options": {
  2661. "type": "object",
  2662. "properties": {
  2663. "include_usage": {
  2664. "type": "boolean"
  2665. }
  2666. }
  2667. },
  2668. "stop": {
  2669. "oneOf": [
  2670. {
  2671. "type": "string"
  2672. },
  2673. {
  2674. "type": "array",
  2675. "items": {
  2676. "type": "string"
  2677. }
  2678. }
  2679. ],
  2680. "description": "停止序列"
  2681. },
  2682. "max_tokens": {
  2683. "type": "integer",
  2684. "description": "最大生成 Token 数"
  2685. },
  2686. "max_completion_tokens": {
  2687. "type": "integer",
  2688. "description": "最大补全 Token 数"
  2689. },
  2690. "presence_penalty": {
  2691. "type": "number",
  2692. "minimum": -2,
  2693. "maximum": 2,
  2694. "default": 0
  2695. },
  2696. "frequency_penalty": {
  2697. "type": "number",
  2698. "minimum": -2,
  2699. "maximum": 2,
  2700. "default": 0
  2701. },
  2702. "logit_bias": {
  2703. "type": "object",
  2704. "additionalProperties": {
  2705. "type": "number"
  2706. },
  2707. "properties": {}
  2708. },
  2709. "user": {
  2710. "type": "string"
  2711. },
  2712. "tools": {
  2713. "type": "array",
  2714. "items": {
  2715. "$ref": "#/components/schemas/Tool"
  2716. }
  2717. },
  2718. "tool_choice": {
  2719. "oneOf": [
  2720. {
  2721. "type": "string",
  2722. "enum": [
  2723. "none",
  2724. "auto",
  2725. "required"
  2726. ]
  2727. },
  2728. {
  2729. "type": "object",
  2730. "properties": {
  2731. "type": {
  2732. "type": "string"
  2733. },
  2734. "function": {
  2735. "type": "object",
  2736. "properties": {
  2737. "name": {
  2738. "type": "string"
  2739. }
  2740. }
  2741. }
  2742. }
  2743. }
  2744. ]
  2745. },
  2746. "response_format": {
  2747. "$ref": "#/components/schemas/ResponseFormat"
  2748. },
  2749. "seed": {
  2750. "type": "integer"
  2751. },
  2752. "reasoning_effort": {
  2753. "type": "string",
  2754. "enum": [
  2755. "low",
  2756. "medium",
  2757. "high"
  2758. ],
  2759. "description": "推理强度 (用于支持推理的模型)"
  2760. },
  2761. "modalities": {
  2762. "type": "array",
  2763. "items": {
  2764. "type": "string",
  2765. "enum": [
  2766. "text",
  2767. "audio"
  2768. ]
  2769. }
  2770. },
  2771. "audio": {
  2772. "type": "object",
  2773. "properties": {
  2774. "voice": {
  2775. "type": "string"
  2776. },
  2777. "format": {
  2778. "type": "string"
  2779. }
  2780. }
  2781. }
  2782. }
  2783. },
  2784. "ChatCompletionResponse": {
  2785. "type": "object",
  2786. "properties": {
  2787. "id": {
  2788. "type": "string"
  2789. },
  2790. "object": {
  2791. "type": "string",
  2792. "example": "chat.completion"
  2793. },
  2794. "created": {
  2795. "type": "integer"
  2796. },
  2797. "model": {
  2798. "type": "string"
  2799. },
  2800. "choices": {
  2801. "type": "array",
  2802. "items": {
  2803. "type": "object",
  2804. "properties": {
  2805. "index": {
  2806. "type": "integer"
  2807. },
  2808. "message": {
  2809. "$ref": "#/components/schemas/Message"
  2810. },
  2811. "finish_reason": {
  2812. "type": "string",
  2813. "enum": [
  2814. "stop",
  2815. "length",
  2816. "tool_calls",
  2817. "content_filter"
  2818. ]
  2819. }
  2820. }
  2821. }
  2822. },
  2823. "usage": {
  2824. "$ref": "#/components/schemas/Usage"
  2825. },
  2826. "system_fingerprint": {
  2827. "type": "string"
  2828. }
  2829. }
  2830. },
  2831. "ChatCompletionStreamResponse": {
  2832. "type": "object",
  2833. "properties": {
  2834. "id": {
  2835. "type": "string"
  2836. },
  2837. "object": {
  2838. "type": "string",
  2839. "example": "chat.completion.chunk"
  2840. },
  2841. "created": {
  2842. "type": "integer"
  2843. },
  2844. "model": {
  2845. "type": "string"
  2846. },
  2847. "choices": {
  2848. "type": "array",
  2849. "items": {
  2850. "type": "object",
  2851. "properties": {
  2852. "index": {
  2853. "type": "integer"
  2854. },
  2855. "delta": {
  2856. "type": "object",
  2857. "properties": {
  2858. "role": {
  2859. "type": "string"
  2860. },
  2861. "content": {
  2862. "type": "string"
  2863. },
  2864. "reasoning_content": {
  2865. "type": "string"
  2866. },
  2867. "tool_calls": {
  2868. "type": "array",
  2869. "items": {
  2870. "$ref": "#/components/schemas/ToolCall"
  2871. }
  2872. }
  2873. }
  2874. },
  2875. "finish_reason": {
  2876. "type": "string",
  2877. "nullable": true
  2878. }
  2879. }
  2880. }
  2881. },
  2882. "usage": {
  2883. "$ref": "#/components/schemas/Usage"
  2884. }
  2885. }
  2886. },
  2887. "CompletionRequest": {
  2888. "type": "object",
  2889. "required": [
  2890. "model",
  2891. "prompt"
  2892. ],
  2893. "properties": {
  2894. "model": {
  2895. "type": "string"
  2896. },
  2897. "prompt": {
  2898. "oneOf": [
  2899. {
  2900. "type": "string"
  2901. },
  2902. {
  2903. "type": "array",
  2904. "items": {
  2905. "type": "string"
  2906. }
  2907. }
  2908. ]
  2909. },
  2910. "max_tokens": {
  2911. "type": "integer"
  2912. },
  2913. "temperature": {
  2914. "type": "number"
  2915. },
  2916. "top_p": {
  2917. "type": "number"
  2918. },
  2919. "n": {
  2920. "type": "integer"
  2921. },
  2922. "stream": {
  2923. "type": "boolean"
  2924. },
  2925. "stop": {
  2926. "oneOf": [
  2927. {
  2928. "type": "string"
  2929. },
  2930. {
  2931. "type": "array",
  2932. "items": {
  2933. "type": "string"
  2934. }
  2935. }
  2936. ]
  2937. },
  2938. "suffix": {
  2939. "type": "string"
  2940. },
  2941. "echo": {
  2942. "type": "boolean"
  2943. }
  2944. }
  2945. },
  2946. "CompletionResponse": {
  2947. "type": "object",
  2948. "properties": {
  2949. "id": {
  2950. "type": "string"
  2951. },
  2952. "object": {
  2953. "type": "string",
  2954. "example": "text_completion"
  2955. },
  2956. "created": {
  2957. "type": "integer"
  2958. },
  2959. "model": {
  2960. "type": "string"
  2961. },
  2962. "choices": {
  2963. "type": "array",
  2964. "items": {
  2965. "type": "object",
  2966. "properties": {
  2967. "text": {
  2968. "type": "string"
  2969. },
  2970. "index": {
  2971. "type": "integer"
  2972. },
  2973. "finish_reason": {
  2974. "type": "string"
  2975. }
  2976. }
  2977. }
  2978. },
  2979. "usage": {
  2980. "$ref": "#/components/schemas/Usage"
  2981. }
  2982. }
  2983. },
  2984. "ResponsesRequest": {
  2985. "type": "object",
  2986. "required": [
  2987. "model"
  2988. ],
  2989. "properties": {
  2990. "model": {
  2991. "type": "string"
  2992. },
  2993. "input": {
  2994. "description": "输入内容,可以是字符串或消息数组",
  2995. "oneOf": [
  2996. {
  2997. "type": "string"
  2998. },
  2999. {
  3000. "type": "array",
  3001. "items": {
  3002. "type": "object",
  3003. "properties": {}
  3004. }
  3005. }
  3006. ]
  3007. },
  3008. "instructions": {
  3009. "type": "string"
  3010. },
  3011. "max_output_tokens": {
  3012. "type": "integer"
  3013. },
  3014. "temperature": {
  3015. "type": "number"
  3016. },
  3017. "top_p": {
  3018. "type": "number"
  3019. },
  3020. "stream": {
  3021. "type": "boolean"
  3022. },
  3023. "tools": {
  3024. "type": "array",
  3025. "items": {
  3026. "type": "object",
  3027. "properties": {}
  3028. }
  3029. },
  3030. "tool_choice": {
  3031. "oneOf": [
  3032. {
  3033. "type": "string"
  3034. },
  3035. {
  3036. "type": "object",
  3037. "properties": {}
  3038. }
  3039. ]
  3040. },
  3041. "reasoning": {
  3042. "type": "object",
  3043. "properties": {
  3044. "effort": {
  3045. "type": "string",
  3046. "enum": [
  3047. "low",
  3048. "medium",
  3049. "high"
  3050. ]
  3051. },
  3052. "summary": {
  3053. "type": "string"
  3054. }
  3055. }
  3056. },
  3057. "previous_response_id": {
  3058. "type": "string"
  3059. },
  3060. "truncation": {
  3061. "type": "string",
  3062. "enum": [
  3063. "auto",
  3064. "disabled"
  3065. ]
  3066. }
  3067. }
  3068. },
  3069. "ResponsesResponse": {
  3070. "type": "object",
  3071. "properties": {
  3072. "id": {
  3073. "type": "string"
  3074. },
  3075. "object": {
  3076. "type": "string",
  3077. "example": "response"
  3078. },
  3079. "created_at": {
  3080. "type": "integer"
  3081. },
  3082. "status": {
  3083. "type": "string",
  3084. "enum": [
  3085. "completed",
  3086. "failed",
  3087. "in_progress",
  3088. "incomplete"
  3089. ]
  3090. },
  3091. "model": {
  3092. "type": "string"
  3093. },
  3094. "output": {
  3095. "type": "array",
  3096. "items": {
  3097. "type": "object",
  3098. "properties": {
  3099. "type": {
  3100. "type": "string"
  3101. },
  3102. "id": {
  3103. "type": "string"
  3104. },
  3105. "status": {
  3106. "type": "string"
  3107. },
  3108. "role": {
  3109. "type": "string"
  3110. },
  3111. "content": {
  3112. "type": "array",
  3113. "items": {
  3114. "type": "object",
  3115. "properties": {
  3116. "type": {
  3117. "type": "string"
  3118. },
  3119. "text": {
  3120. "type": "string"
  3121. }
  3122. }
  3123. }
  3124. }
  3125. }
  3126. }
  3127. },
  3128. "usage": {
  3129. "$ref": "#/components/schemas/Usage"
  3130. }
  3131. }
  3132. },
  3133. "ResponsesStreamResponse": {
  3134. "type": "object",
  3135. "properties": {
  3136. "type": {
  3137. "type": "string"
  3138. },
  3139. "response": {
  3140. "$ref": "#/components/schemas/ResponsesResponse"
  3141. },
  3142. "delta": {
  3143. "type": "string"
  3144. },
  3145. "item": {
  3146. "type": "object",
  3147. "properties": {}
  3148. }
  3149. }
  3150. },
  3151. "ClaudeRequest": {
  3152. "type": "object",
  3153. "required": [
  3154. "model",
  3155. "messages",
  3156. "max_tokens"
  3157. ],
  3158. "properties": {
  3159. "model": {
  3160. "type": "string",
  3161. "example": "claude-3-opus-20240229"
  3162. },
  3163. "messages": {
  3164. "type": "array",
  3165. "items": {
  3166. "$ref": "#/components/schemas/ClaudeMessage"
  3167. }
  3168. },
  3169. "system": {
  3170. "oneOf": [
  3171. {
  3172. "type": "string"
  3173. },
  3174. {
  3175. "type": "array",
  3176. "items": {
  3177. "type": "object",
  3178. "properties": {}
  3179. }
  3180. }
  3181. ]
  3182. },
  3183. "max_tokens": {
  3184. "type": "integer",
  3185. "minimum": 1
  3186. },
  3187. "temperature": {
  3188. "type": "number",
  3189. "minimum": 0,
  3190. "maximum": 1
  3191. },
  3192. "top_p": {
  3193. "type": "number"
  3194. },
  3195. "top_k": {
  3196. "type": "integer"
  3197. },
  3198. "stream": {
  3199. "type": "boolean"
  3200. },
  3201. "stop_sequences": {
  3202. "type": "array",
  3203. "items": {
  3204. "type": "string"
  3205. }
  3206. },
  3207. "tools": {
  3208. "type": "array",
  3209. "items": {
  3210. "type": "object",
  3211. "properties": {
  3212. "name": {
  3213. "type": "string"
  3214. },
  3215. "description": {
  3216. "type": "string"
  3217. },
  3218. "input_schema": {
  3219. "type": "object",
  3220. "properties": {}
  3221. }
  3222. }
  3223. }
  3224. },
  3225. "tool_choice": {
  3226. "oneOf": [
  3227. {
  3228. "type": "object",
  3229. "properties": {
  3230. "type": {
  3231. "type": "string",
  3232. "enum": [
  3233. "auto",
  3234. "any",
  3235. "tool"
  3236. ]
  3237. },
  3238. "name": {
  3239. "type": "string"
  3240. }
  3241. }
  3242. }
  3243. ]
  3244. },
  3245. "thinking": {
  3246. "type": "object",
  3247. "properties": {
  3248. "type": {
  3249. "type": "string",
  3250. "enum": [
  3251. "enabled",
  3252. "disabled"
  3253. ]
  3254. },
  3255. "budget_tokens": {
  3256. "type": "integer"
  3257. }
  3258. }
  3259. },
  3260. "metadata": {
  3261. "type": "object",
  3262. "properties": {
  3263. "user_id": {
  3264. "type": "string"
  3265. }
  3266. }
  3267. }
  3268. }
  3269. },
  3270. "ClaudeMessage": {
  3271. "type": "object",
  3272. "required": [
  3273. "role",
  3274. "content"
  3275. ],
  3276. "properties": {
  3277. "role": {
  3278. "type": "string",
  3279. "enum": [
  3280. "user",
  3281. "assistant"
  3282. ]
  3283. },
  3284. "content": {
  3285. "oneOf": [
  3286. {
  3287. "type": "string"
  3288. },
  3289. {
  3290. "type": "array",
  3291. "items": {
  3292. "type": "object",
  3293. "properties": {
  3294. "type": {
  3295. "type": "string",
  3296. "enum": [
  3297. "text",
  3298. "image",
  3299. "tool_use",
  3300. "tool_result"
  3301. ]
  3302. },
  3303. "text": {
  3304. "type": "string"
  3305. },
  3306. "source": {
  3307. "type": "object",
  3308. "properties": {
  3309. "type": {
  3310. "type": "string",
  3311. "enum": [
  3312. "base64",
  3313. "url"
  3314. ]
  3315. },
  3316. "media_type": {
  3317. "type": "string"
  3318. },
  3319. "data": {
  3320. "type": "string"
  3321. },
  3322. "url": {
  3323. "type": "string"
  3324. }
  3325. }
  3326. },
  3327. "id": {
  3328. "type": "string"
  3329. },
  3330. "name": {
  3331. "type": "string"
  3332. },
  3333. "input": {
  3334. "type": "object",
  3335. "properties": {}
  3336. },
  3337. "tool_use_id": {
  3338. "type": "string"
  3339. },
  3340. "content": {
  3341. "type": "string"
  3342. }
  3343. }
  3344. }
  3345. }
  3346. ]
  3347. }
  3348. }
  3349. },
  3350. "ClaudeResponse": {
  3351. "type": "object",
  3352. "properties": {
  3353. "id": {
  3354. "type": "string"
  3355. },
  3356. "type": {
  3357. "type": "string",
  3358. "example": "message"
  3359. },
  3360. "role": {
  3361. "type": "string",
  3362. "example": "assistant"
  3363. },
  3364. "content": {
  3365. "type": "array",
  3366. "items": {
  3367. "type": "object",
  3368. "properties": {
  3369. "type": {
  3370. "type": "string"
  3371. },
  3372. "text": {
  3373. "type": "string"
  3374. }
  3375. }
  3376. }
  3377. },
  3378. "model": {
  3379. "type": "string"
  3380. },
  3381. "stop_reason": {
  3382. "type": "string",
  3383. "enum": [
  3384. "end_turn",
  3385. "max_tokens",
  3386. "stop_sequence",
  3387. "tool_use"
  3388. ]
  3389. },
  3390. "usage": {
  3391. "type": "object",
  3392. "properties": {
  3393. "input_tokens": {
  3394. "type": "integer"
  3395. },
  3396. "output_tokens": {
  3397. "type": "integer"
  3398. },
  3399. "cache_creation_input_tokens": {
  3400. "type": "integer"
  3401. },
  3402. "cache_read_input_tokens": {
  3403. "type": "integer"
  3404. }
  3405. }
  3406. }
  3407. }
  3408. },
  3409. "EmbeddingRequest": {
  3410. "type": "object",
  3411. "required": [
  3412. "model",
  3413. "input"
  3414. ],
  3415. "properties": {
  3416. "model": {
  3417. "type": "string",
  3418. "example": "text-embedding-ada-002"
  3419. },
  3420. "input": {
  3421. "oneOf": [
  3422. {
  3423. "type": "string"
  3424. },
  3425. {
  3426. "type": "array",
  3427. "items": {
  3428. "type": "string"
  3429. }
  3430. }
  3431. ],
  3432. "description": "要嵌入的文本"
  3433. },
  3434. "encoding_format": {
  3435. "type": "string",
  3436. "enum": [
  3437. "float",
  3438. "base64"
  3439. ],
  3440. "default": "float"
  3441. },
  3442. "dimensions": {
  3443. "type": "integer",
  3444. "description": "输出向量维度"
  3445. }
  3446. }
  3447. },
  3448. "EmbeddingResponse": {
  3449. "type": "object",
  3450. "properties": {
  3451. "object": {
  3452. "type": "string",
  3453. "example": "list"
  3454. },
  3455. "data": {
  3456. "type": "array",
  3457. "items": {
  3458. "type": "object",
  3459. "properties": {
  3460. "object": {
  3461. "type": "string",
  3462. "example": "embedding"
  3463. },
  3464. "index": {
  3465. "type": "integer"
  3466. },
  3467. "embedding": {
  3468. "type": "array",
  3469. "items": {
  3470. "type": "number"
  3471. }
  3472. }
  3473. }
  3474. }
  3475. },
  3476. "model": {
  3477. "type": "string"
  3478. },
  3479. "usage": {
  3480. "type": "object",
  3481. "properties": {
  3482. "prompt_tokens": {
  3483. "type": "integer"
  3484. },
  3485. "total_tokens": {
  3486. "type": "integer"
  3487. }
  3488. }
  3489. }
  3490. }
  3491. },
  3492. "ImageGenerationRequest": {
  3493. "type": "object",
  3494. "required": [
  3495. "prompt"
  3496. ],
  3497. "properties": {
  3498. "model": {
  3499. "type": "string",
  3500. "example": "dall-e-3"
  3501. },
  3502. "prompt": {
  3503. "type": "string",
  3504. "description": "图像描述"
  3505. },
  3506. "n": {
  3507. "type": "integer",
  3508. "minimum": 1,
  3509. "maximum": 10,
  3510. "default": 1
  3511. },
  3512. "size": {
  3513. "type": "string",
  3514. "enum": [
  3515. "256x256",
  3516. "512x512",
  3517. "1024x1024",
  3518. "1792x1024",
  3519. "1024x1792"
  3520. ],
  3521. "default": "1024x1024"
  3522. },
  3523. "quality": {
  3524. "type": "string",
  3525. "enum": [
  3526. "standard",
  3527. "hd"
  3528. ],
  3529. "default": "standard"
  3530. },
  3531. "style": {
  3532. "type": "string",
  3533. "enum": [
  3534. "vivid",
  3535. "natural"
  3536. ],
  3537. "default": "vivid"
  3538. },
  3539. "response_format": {
  3540. "type": "string",
  3541. "enum": [
  3542. "url",
  3543. "b64_json"
  3544. ],
  3545. "default": "url"
  3546. },
  3547. "user": {
  3548. "type": "string"
  3549. }
  3550. }
  3551. },
  3552. "ImageEditRequest": {
  3553. "type": "object",
  3554. "required": [
  3555. "image",
  3556. "prompt"
  3557. ],
  3558. "properties": {
  3559. "image": {
  3560. "type": "string",
  3561. "format": "binary"
  3562. },
  3563. "mask": {
  3564. "type": "string",
  3565. "format": "binary"
  3566. },
  3567. "prompt": {
  3568. "type": "string"
  3569. },
  3570. "model": {
  3571. "type": "string"
  3572. },
  3573. "n": {
  3574. "type": "integer"
  3575. },
  3576. "size": {
  3577. "type": "string"
  3578. },
  3579. "response_format": {
  3580. "type": "string"
  3581. }
  3582. }
  3583. },
  3584. "ImageResponse": {
  3585. "type": "object",
  3586. "properties": {
  3587. "created": {
  3588. "type": "integer"
  3589. },
  3590. "data": {
  3591. "type": "array",
  3592. "items": {
  3593. "type": "object",
  3594. "properties": {
  3595. "url": {
  3596. "type": "string"
  3597. },
  3598. "b64_json": {
  3599. "type": "string"
  3600. },
  3601. "revised_prompt": {
  3602. "type": "string"
  3603. }
  3604. }
  3605. }
  3606. }
  3607. }
  3608. },
  3609. "AudioTranscriptionRequest": {
  3610. "type": "object",
  3611. "required": [
  3612. "file",
  3613. "model"
  3614. ],
  3615. "properties": {
  3616. "file": {
  3617. "type": "string",
  3618. "format": "binary",
  3619. "description": "音频文件"
  3620. },
  3621. "model": {
  3622. "type": "string",
  3623. "example": "whisper-1"
  3624. },
  3625. "language": {
  3626. "type": "string",
  3627. "description": "ISO-639-1 语言代码"
  3628. },
  3629. "prompt": {
  3630. "type": "string"
  3631. },
  3632. "response_format": {
  3633. "type": "string",
  3634. "enum": [
  3635. "json",
  3636. "text",
  3637. "srt",
  3638. "verbose_json",
  3639. "vtt"
  3640. ],
  3641. "default": "json"
  3642. },
  3643. "temperature": {
  3644. "type": "number"
  3645. },
  3646. "timestamp_granularities": {
  3647. "type": "array",
  3648. "items": {
  3649. "type": "string",
  3650. "enum": [
  3651. "word",
  3652. "segment"
  3653. ]
  3654. }
  3655. }
  3656. }
  3657. },
  3658. "AudioTranslationRequest": {
  3659. "type": "object",
  3660. "required": [
  3661. "file",
  3662. "model"
  3663. ],
  3664. "properties": {
  3665. "file": {
  3666. "type": "string",
  3667. "format": "binary"
  3668. },
  3669. "model": {
  3670. "type": "string"
  3671. },
  3672. "prompt": {
  3673. "type": "string"
  3674. },
  3675. "response_format": {
  3676. "type": "string"
  3677. },
  3678. "temperature": {
  3679. "type": "number"
  3680. }
  3681. }
  3682. },
  3683. "AudioTranscriptionResponse": {
  3684. "type": "object",
  3685. "properties": {
  3686. "text": {
  3687. "type": "string"
  3688. }
  3689. }
  3690. },
  3691. "SpeechRequest": {
  3692. "type": "object",
  3693. "required": [
  3694. "model",
  3695. "input",
  3696. "voice"
  3697. ],
  3698. "properties": {
  3699. "model": {
  3700. "type": "string",
  3701. "example": "tts-1"
  3702. },
  3703. "input": {
  3704. "type": "string",
  3705. "description": "要转换的文本",
  3706. "maxLength": 4096
  3707. },
  3708. "voice": {
  3709. "type": "string",
  3710. "enum": [
  3711. "alloy",
  3712. "echo",
  3713. "fable",
  3714. "onyx",
  3715. "nova",
  3716. "shimmer"
  3717. ]
  3718. },
  3719. "response_format": {
  3720. "type": "string",
  3721. "enum": [
  3722. "mp3",
  3723. "opus",
  3724. "aac",
  3725. "flac",
  3726. "wav",
  3727. "pcm"
  3728. ],
  3729. "default": "mp3"
  3730. },
  3731. "speed": {
  3732. "type": "number",
  3733. "minimum": 0.25,
  3734. "maximum": 4,
  3735. "default": 1
  3736. }
  3737. }
  3738. },
  3739. "RerankRequest": {
  3740. "type": "object",
  3741. "required": [
  3742. "model",
  3743. "query",
  3744. "documents"
  3745. ],
  3746. "properties": {
  3747. "model": {
  3748. "type": "string",
  3749. "example": "rerank-english-v2.0"
  3750. },
  3751. "query": {
  3752. "type": "string",
  3753. "description": "查询文本"
  3754. },
  3755. "documents": {
  3756. "type": "array",
  3757. "items": {
  3758. "oneOf": [
  3759. {
  3760. "type": "string"
  3761. },
  3762. {
  3763. "type": "object",
  3764. "properties": {}
  3765. }
  3766. ]
  3767. },
  3768. "description": "要重排序的文档列表"
  3769. },
  3770. "top_n": {
  3771. "type": "integer",
  3772. "description": "返回前 N 个结果"
  3773. },
  3774. "return_documents": {
  3775. "type": "boolean",
  3776. "default": false
  3777. }
  3778. }
  3779. },
  3780. "RerankResponse": {
  3781. "type": "object",
  3782. "properties": {
  3783. "id": {
  3784. "type": "string"
  3785. },
  3786. "results": {
  3787. "type": "array",
  3788. "items": {
  3789. "type": "object",
  3790. "properties": {
  3791. "index": {
  3792. "type": "integer"
  3793. },
  3794. "relevance_score": {
  3795. "type": "number"
  3796. },
  3797. "document": {
  3798. "type": "object",
  3799. "properties": {}
  3800. }
  3801. }
  3802. }
  3803. },
  3804. "meta": {
  3805. "type": "object",
  3806. "properties": {}
  3807. }
  3808. }
  3809. },
  3810. "ModerationRequest": {
  3811. "type": "object",
  3812. "required": [
  3813. "input"
  3814. ],
  3815. "properties": {
  3816. "input": {
  3817. "oneOf": [
  3818. {
  3819. "type": "string"
  3820. },
  3821. {
  3822. "type": "array",
  3823. "items": {
  3824. "type": "string"
  3825. }
  3826. }
  3827. ]
  3828. },
  3829. "model": {
  3830. "type": "string",
  3831. "example": "text-moderation-latest"
  3832. }
  3833. }
  3834. },
  3835. "ModerationResponse": {
  3836. "type": "object",
  3837. "properties": {
  3838. "id": {
  3839. "type": "string"
  3840. },
  3841. "model": {
  3842. "type": "string"
  3843. },
  3844. "results": {
  3845. "type": "array",
  3846. "items": {
  3847. "type": "object",
  3848. "properties": {
  3849. "flagged": {
  3850. "type": "boolean"
  3851. },
  3852. "categories": {
  3853. "type": "object",
  3854. "properties": {}
  3855. },
  3856. "category_scores": {
  3857. "type": "object",
  3858. "properties": {}
  3859. }
  3860. }
  3861. }
  3862. }
  3863. }
  3864. },
  3865. "GeminiRequest": {
  3866. "type": "object",
  3867. "properties": {
  3868. "contents": {
  3869. "type": "array",
  3870. "items": {
  3871. "type": "object",
  3872. "properties": {
  3873. "role": {
  3874. "type": "string",
  3875. "enum": [
  3876. "user",
  3877. "model"
  3878. ]
  3879. },
  3880. "parts": {
  3881. "type": "array",
  3882. "items": {
  3883. "type": "object",
  3884. "properties": {
  3885. "text": {
  3886. "type": "string"
  3887. },
  3888. "inlineData": {
  3889. "type": "object",
  3890. "properties": {
  3891. "mimeType": {
  3892. "type": "string"
  3893. },
  3894. "data": {
  3895. "type": "string"
  3896. }
  3897. }
  3898. }
  3899. }
  3900. }
  3901. }
  3902. }
  3903. }
  3904. },
  3905. "generationConfig": {
  3906. "type": "object",
  3907. "properties": {
  3908. "temperature": {
  3909. "type": "number"
  3910. },
  3911. "topP": {
  3912. "type": "number"
  3913. },
  3914. "topK": {
  3915. "type": "integer"
  3916. },
  3917. "maxOutputTokens": {
  3918. "type": "integer"
  3919. },
  3920. "stopSequences": {
  3921. "type": "array",
  3922. "items": {
  3923. "type": "string"
  3924. }
  3925. }
  3926. }
  3927. },
  3928. "safetySettings": {
  3929. "type": "array",
  3930. "items": {
  3931. "type": "object",
  3932. "properties": {
  3933. "category": {
  3934. "type": "string"
  3935. },
  3936. "threshold": {
  3937. "type": "string"
  3938. }
  3939. }
  3940. }
  3941. },
  3942. "tools": {
  3943. "type": "array",
  3944. "items": {
  3945. "type": "object",
  3946. "properties": {}
  3947. }
  3948. },
  3949. "systemInstruction": {
  3950. "type": "object",
  3951. "properties": {
  3952. "parts": {
  3953. "type": "array",
  3954. "items": {
  3955. "type": "object",
  3956. "properties": {}
  3957. }
  3958. }
  3959. }
  3960. }
  3961. }
  3962. },
  3963. "GeminiResponse": {
  3964. "type": "object",
  3965. "properties": {
  3966. "candidates": {
  3967. "type": "array",
  3968. "items": {
  3969. "type": "object",
  3970. "properties": {
  3971. "content": {
  3972. "type": "object",
  3973. "properties": {
  3974. "role": {
  3975. "type": "string"
  3976. },
  3977. "parts": {
  3978. "type": "array",
  3979. "items": {
  3980. "type": "object",
  3981. "properties": {}
  3982. }
  3983. }
  3984. }
  3985. },
  3986. "finishReason": {
  3987. "type": "string"
  3988. },
  3989. "safetyRatings": {
  3990. "type": "array",
  3991. "items": {
  3992. "type": "object",
  3993. "properties": {}
  3994. }
  3995. }
  3996. }
  3997. }
  3998. },
  3999. "usageMetadata": {
  4000. "type": "object",
  4001. "properties": {
  4002. "promptTokenCount": {
  4003. "type": "integer"
  4004. },
  4005. "candidatesTokenCount": {
  4006. "type": "integer"
  4007. },
  4008. "totalTokenCount": {
  4009. "type": "integer"
  4010. }
  4011. }
  4012. }
  4013. }
  4014. },
  4015. "VideoRequest": {
  4016. "type": "object",
  4017. "description": "视频生成请求",
  4018. "properties": {
  4019. "model": {
  4020. "type": "string",
  4021. "description": "模型/风格 ID",
  4022. "example": "kling-v1"
  4023. },
  4024. "prompt": {
  4025. "type": "string",
  4026. "description": "文本描述提示词",
  4027. "example": "宇航员站起身走了"
  4028. },
  4029. "image": {
  4030. "type": "string",
  4031. "description": "图片输入 (URL 或 Base64)",
  4032. "example": "https://example.com/image.jpg"
  4033. },
  4034. "duration": {
  4035. "type": "number",
  4036. "description": "视频时长(秒)",
  4037. "example": 5
  4038. },
  4039. "width": {
  4040. "type": "integer",
  4041. "description": "视频宽度",
  4042. "example": 1280
  4043. },
  4044. "height": {
  4045. "type": "integer",
  4046. "description": "视频高度",
  4047. "example": 720
  4048. },
  4049. "fps": {
  4050. "type": "integer",
  4051. "description": "视频帧率",
  4052. "example": 30
  4053. },
  4054. "seed": {
  4055. "type": "integer",
  4056. "description": "随机种子",
  4057. "example": 20231234
  4058. },
  4059. "n": {
  4060. "type": "integer",
  4061. "description": "生成视频数量",
  4062. "example": 1
  4063. },
  4064. "response_format": {
  4065. "type": "string",
  4066. "description": "响应格式",
  4067. "example": "url"
  4068. },
  4069. "user": {
  4070. "type": "string",
  4071. "description": "用户标识",
  4072. "example": "user-1234"
  4073. },
  4074. "metadata": {
  4075. "type": "object",
  4076. "description": "扩展参数 (如 negative_prompt, style, quality_level 等)",
  4077. "additionalProperties": true,
  4078. "properties": {}
  4079. }
  4080. }
  4081. },
  4082. "VideoResponse": {
  4083. "type": "object",
  4084. "description": "视频生成任务提交响应",
  4085. "properties": {
  4086. "task_id": {
  4087. "type": "string",
  4088. "description": "任务 ID",
  4089. "example": "abcd1234efgh"
  4090. },
  4091. "status": {
  4092. "type": "string",
  4093. "description": "任务状态",
  4094. "example": "queued"
  4095. }
  4096. }
  4097. },
  4098. "VideoTaskResponse": {
  4099. "type": "object",
  4100. "description": "视频任务状态查询响应",
  4101. "properties": {
  4102. "task_id": {
  4103. "type": "string",
  4104. "description": "任务 ID",
  4105. "example": "abcd1234efgh"
  4106. },
  4107. "status": {
  4108. "type": "string",
  4109. "description": "任务状态",
  4110. "enum": [
  4111. "queued",
  4112. "in_progress",
  4113. "completed",
  4114. "failed"
  4115. ],
  4116. "example": "completed"
  4117. },
  4118. "url": {
  4119. "type": "string",
  4120. "description": "视频资源 URL(成功时)",
  4121. "example": "https://example.com/video.mp4"
  4122. },
  4123. "format": {
  4124. "type": "string",
  4125. "description": "视频格式",
  4126. "example": "mp4"
  4127. },
  4128. "metadata": {
  4129. "$ref": "#/components/schemas/VideoTaskMetadata"
  4130. },
  4131. "error": {
  4132. "$ref": "#/components/schemas/VideoTaskError"
  4133. }
  4134. }
  4135. },
  4136. "VideoTaskMetadata": {
  4137. "type": "object",
  4138. "description": "视频任务元数据",
  4139. "properties": {
  4140. "duration": {
  4141. "type": "number",
  4142. "description": "实际生成的视频时长",
  4143. "example": 5
  4144. },
  4145. "fps": {
  4146. "type": "integer",
  4147. "description": "实际帧率",
  4148. "example": 30
  4149. },
  4150. "width": {
  4151. "type": "integer",
  4152. "description": "实际宽度",
  4153. "example": 1280
  4154. },
  4155. "height": {
  4156. "type": "integer",
  4157. "description": "实际高度",
  4158. "example": 720
  4159. },
  4160. "seed": {
  4161. "type": "integer",
  4162. "description": "使用的随机种子",
  4163. "example": 20231234
  4164. }
  4165. }
  4166. },
  4167. "VideoTaskError": {
  4168. "type": "object",
  4169. "description": "视频任务错误信息",
  4170. "properties": {
  4171. "code": {
  4172. "type": "integer",
  4173. "description": "错误码"
  4174. },
  4175. "message": {
  4176. "type": "string",
  4177. "description": "错误信息"
  4178. }
  4179. }
  4180. },
  4181. "OpenAIVideo": {
  4182. "type": "object",
  4183. "description": "OpenAI 兼容的视频对象",
  4184. "properties": {
  4185. "id": {
  4186. "type": "string",
  4187. "description": "视频 ID",
  4188. "example": "video-abc123"
  4189. },
  4190. "task_id": {
  4191. "type": "string",
  4192. "description": "任务 ID (兼容旧接口)",
  4193. "deprecated": true
  4194. },
  4195. "object": {
  4196. "type": "string",
  4197. "description": "对象类型",
  4198. "example": "video"
  4199. },
  4200. "model": {
  4201. "type": "string",
  4202. "description": "使用的模型",
  4203. "example": "sora"
  4204. },
  4205. "status": {
  4206. "type": "string",
  4207. "description": "任务状态",
  4208. "enum": [
  4209. "queued",
  4210. "in_progress",
  4211. "completed",
  4212. "failed"
  4213. ],
  4214. "example": "completed"
  4215. },
  4216. "progress": {
  4217. "type": "integer",
  4218. "description": "进度百分比",
  4219. "example": 100
  4220. },
  4221. "created_at": {
  4222. "type": "integer",
  4223. "description": "创建时间戳"
  4224. },
  4225. "completed_at": {
  4226. "type": "integer",
  4227. "description": "完成时间戳"
  4228. },
  4229. "expires_at": {
  4230. "type": "integer",
  4231. "description": "过期时间戳"
  4232. },
  4233. "seconds": {
  4234. "type": "string",
  4235. "description": "视频时长"
  4236. },
  4237. "size": {
  4238. "type": "string",
  4239. "description": "视频尺寸"
  4240. },
  4241. "remixed_from_video_id": {
  4242. "type": "string",
  4243. "description": "源视频 ID(如果是基于其他视频生成)"
  4244. },
  4245. "error": {
  4246. "$ref": "#/components/schemas/OpenAIVideoError"
  4247. },
  4248. "metadata": {
  4249. "type": "object",
  4250. "description": "额外元数据",
  4251. "additionalProperties": true,
  4252. "properties": {}
  4253. }
  4254. }
  4255. },
  4256. "OpenAIVideoError": {
  4257. "type": "object",
  4258. "description": "OpenAI 视频错误信息",
  4259. "properties": {
  4260. "message": {
  4261. "type": "string",
  4262. "description": "错误信息"
  4263. },
  4264. "code": {
  4265. "type": "string",
  4266. "description": "错误码"
  4267. }
  4268. }
  4269. },
  4270. "ApiResponse": {
  4271. "type": "object",
  4272. "properties": {
  4273. "success": {
  4274. "type": "boolean"
  4275. },
  4276. "message": {
  4277. "type": "string"
  4278. },
  4279. "data": {}
  4280. }
  4281. },
  4282. "PageInfo": {
  4283. "type": "object",
  4284. "properties": {
  4285. "page": {
  4286. "type": "integer"
  4287. },
  4288. "page_size": {
  4289. "type": "integer"
  4290. },
  4291. "total": {
  4292. "type": "integer"
  4293. },
  4294. "items": {
  4295. "type": "array",
  4296. "items": {}
  4297. }
  4298. }
  4299. },
  4300. "User": {
  4301. "type": "object",
  4302. "properties": {
  4303. "id": {
  4304. "type": "integer"
  4305. },
  4306. "username": {
  4307. "type": "string"
  4308. },
  4309. "display_name": {
  4310. "type": "string"
  4311. },
  4312. "role": {
  4313. "type": "integer"
  4314. },
  4315. "status": {
  4316. "type": "integer"
  4317. },
  4318. "email": {
  4319. "type": "string"
  4320. },
  4321. "group": {
  4322. "type": "string"
  4323. },
  4324. "quota": {
  4325. "type": "integer"
  4326. },
  4327. "used_quota": {
  4328. "type": "integer"
  4329. },
  4330. "request_count": {
  4331. "type": "integer"
  4332. }
  4333. }
  4334. },
  4335. "Channel": {
  4336. "type": "object",
  4337. "properties": {
  4338. "id": {
  4339. "type": "integer"
  4340. },
  4341. "name": {
  4342. "type": "string"
  4343. },
  4344. "type": {
  4345. "type": "integer"
  4346. },
  4347. "status": {
  4348. "type": "integer"
  4349. },
  4350. "models": {
  4351. "type": "string"
  4352. },
  4353. "groups": {
  4354. "type": "string"
  4355. },
  4356. "priority": {
  4357. "type": "integer"
  4358. },
  4359. "weight": {
  4360. "type": "integer"
  4361. },
  4362. "base_url": {
  4363. "type": "string"
  4364. },
  4365. "tag": {
  4366. "type": "string"
  4367. }
  4368. }
  4369. },
  4370. "Token": {
  4371. "type": "object",
  4372. "properties": {
  4373. "id": {
  4374. "type": "integer"
  4375. },
  4376. "user_id": {
  4377. "type": "integer"
  4378. },
  4379. "name": {
  4380. "type": "string"
  4381. },
  4382. "key": {
  4383. "type": "string"
  4384. },
  4385. "status": {
  4386. "type": "integer"
  4387. },
  4388. "expired_time": {
  4389. "type": "integer"
  4390. },
  4391. "remain_quota": {
  4392. "type": "integer"
  4393. },
  4394. "unlimited_quota": {
  4395. "type": "boolean"
  4396. }
  4397. }
  4398. },
  4399. "Redemption": {
  4400. "type": "object",
  4401. "properties": {
  4402. "id": {
  4403. "type": "integer"
  4404. },
  4405. "name": {
  4406. "type": "string"
  4407. },
  4408. "key": {
  4409. "type": "string"
  4410. },
  4411. "status": {
  4412. "type": "integer"
  4413. },
  4414. "quota": {
  4415. "type": "integer"
  4416. },
  4417. "created_time": {
  4418. "type": "integer"
  4419. },
  4420. "redeemed_time": {
  4421. "type": "integer"
  4422. }
  4423. }
  4424. },
  4425. "Log": {
  4426. "type": "object",
  4427. "properties": {
  4428. "id": {
  4429. "type": "integer"
  4430. },
  4431. "user_id": {
  4432. "type": "integer"
  4433. },
  4434. "type": {
  4435. "type": "integer"
  4436. },
  4437. "content": {
  4438. "type": "string"
  4439. },
  4440. "created_at": {
  4441. "type": "integer"
  4442. }
  4443. }
  4444. }
  4445. },
  4446. "responses": {},
  4447. "securitySchemes": {
  4448. "BearerAuth": {
  4449. "type": "http",
  4450. "scheme": "bearer",
  4451. "description": "使用 Bearer Token 认证。\n格式: `Authorization: Bearer sk-xxxxxx`\n"
  4452. },
  4453. "SessionAuth": {
  4454. "type": "apiKey",
  4455. "in": "cookie",
  4456. "name": "session",
  4457. "description": "Session认证,通过登录接口获取"
  4458. },
  4459. "AccessToken": {
  4460. "type": "apiKey",
  4461. "in": "header",
  4462. "name": "Authorization",
  4463. "description": "Access Token认证,格式: Bearer {access_token},通过 /api/user/token 接口生成"
  4464. },
  4465. "NewApiUser": {
  4466. "type": "apiKey",
  4467. "in": "header",
  4468. "name": "New-Api-User",
  4469. "description": "用户ID请求头,必须与当前登录用户ID匹配,使用Session或AccessToken认证时必须提供"
  4470. },
  4471. "Combination": {
  4472. "group": [
  4473. {
  4474. "id": "SessionAuth"
  4475. },
  4476. {
  4477. "id": "NewApiUser"
  4478. }
  4479. ],
  4480. "type": "combination"
  4481. },
  4482. "Combination1": {
  4483. "group": [
  4484. {
  4485. "id": "AccessToken"
  4486. },
  4487. {
  4488. "id": "NewApiUser"
  4489. }
  4490. ],
  4491. "type": "combination"
  4492. },
  4493. "Combination2": {
  4494. "group": [
  4495. {
  4496. "id": "SessionAuth"
  4497. },
  4498. {
  4499. "id": "NewApiUser"
  4500. }
  4501. ],
  4502. "type": "combination"
  4503. },
  4504. "Combination11": {
  4505. "group": [
  4506. {
  4507. "id": "AccessToken"
  4508. },
  4509. {
  4510. "id": "NewApiUser"
  4511. }
  4512. ],
  4513. "type": "combination"
  4514. },
  4515. "Combination3": {
  4516. "group": [
  4517. {
  4518. "id": "SessionAuth"
  4519. },
  4520. {
  4521. "id": "NewApiUser"
  4522. }
  4523. ],
  4524. "type": "combination"
  4525. },
  4526. "Combination12": {
  4527. "group": [
  4528. {
  4529. "id": "AccessToken"
  4530. },
  4531. {
  4532. "id": "NewApiUser"
  4533. }
  4534. ],
  4535. "type": "combination"
  4536. },
  4537. "Combination4": {
  4538. "group": [
  4539. {
  4540. "id": "SessionAuth"
  4541. },
  4542. {
  4543. "id": "NewApiUser"
  4544. }
  4545. ],
  4546. "type": "combination"
  4547. },
  4548. "Combination13": {
  4549. "group": [
  4550. {
  4551. "id": "AccessToken"
  4552. },
  4553. {
  4554. "id": "NewApiUser"
  4555. }
  4556. ],
  4557. "type": "combination"
  4558. },
  4559. "Combination5": {
  4560. "group": [
  4561. {
  4562. "id": "SessionAuth"
  4563. },
  4564. {
  4565. "id": "NewApiUser"
  4566. }
  4567. ],
  4568. "type": "combination"
  4569. },
  4570. "Combination14": {
  4571. "group": [
  4572. {
  4573. "id": "AccessToken"
  4574. },
  4575. {
  4576. "id": "NewApiUser"
  4577. }
  4578. ],
  4579. "type": "combination"
  4580. },
  4581. "Combination6": {
  4582. "group": [
  4583. {
  4584. "id": "SessionAuth"
  4585. },
  4586. {
  4587. "id": "NewApiUser"
  4588. }
  4589. ],
  4590. "type": "combination"
  4591. },
  4592. "Combination15": {
  4593. "group": [
  4594. {
  4595. "id": "AccessToken"
  4596. },
  4597. {
  4598. "id": "NewApiUser"
  4599. }
  4600. ],
  4601. "type": "combination"
  4602. },
  4603. "Combination7": {
  4604. "group": [
  4605. {
  4606. "id": "SessionAuth"
  4607. },
  4608. {
  4609. "id": "NewApiUser"
  4610. }
  4611. ],
  4612. "type": "combination"
  4613. },
  4614. "Combination16": {
  4615. "group": [
  4616. {
  4617. "id": "AccessToken"
  4618. },
  4619. {
  4620. "id": "NewApiUser"
  4621. }
  4622. ],
  4623. "type": "combination"
  4624. },
  4625. "Combination8": {
  4626. "group": [
  4627. {
  4628. "id": "SessionAuth"
  4629. },
  4630. {
  4631. "id": "NewApiUser"
  4632. }
  4633. ],
  4634. "type": "combination"
  4635. },
  4636. "Combination17": {
  4637. "group": [
  4638. {
  4639. "id": "AccessToken"
  4640. },
  4641. {
  4642. "id": "NewApiUser"
  4643. }
  4644. ],
  4645. "type": "combination"
  4646. },
  4647. "Combination9": {
  4648. "group": [
  4649. {
  4650. "id": "SessionAuth"
  4651. },
  4652. {
  4653. "id": "NewApiUser"
  4654. }
  4655. ],
  4656. "type": "combination"
  4657. },
  4658. "Combination18": {
  4659. "group": [
  4660. {
  4661. "id": "AccessToken"
  4662. },
  4663. {
  4664. "id": "NewApiUser"
  4665. }
  4666. ],
  4667. "type": "combination"
  4668. },
  4669. "Combination10": {
  4670. "group": [
  4671. {
  4672. "id": "SessionAuth"
  4673. },
  4674. {
  4675. "id": "NewApiUser"
  4676. }
  4677. ],
  4678. "type": "combination"
  4679. },
  4680. "Combination19": {
  4681. "group": [
  4682. {
  4683. "id": "AccessToken"
  4684. },
  4685. {
  4686. "id": "NewApiUser"
  4687. }
  4688. ],
  4689. "type": "combination"
  4690. },
  4691. "Combination20": {
  4692. "group": [
  4693. {
  4694. "id": "SessionAuth"
  4695. },
  4696. {
  4697. "id": "NewApiUser"
  4698. }
  4699. ],
  4700. "type": "combination"
  4701. },
  4702. "Combination110": {
  4703. "group": [
  4704. {
  4705. "id": "AccessToken"
  4706. },
  4707. {
  4708. "id": "NewApiUser"
  4709. }
  4710. ],
  4711. "type": "combination"
  4712. },
  4713. "Combination21": {
  4714. "group": [
  4715. {
  4716. "id": "SessionAuth"
  4717. },
  4718. {
  4719. "id": "NewApiUser"
  4720. }
  4721. ],
  4722. "type": "combination"
  4723. },
  4724. "Combination111": {
  4725. "group": [
  4726. {
  4727. "id": "AccessToken"
  4728. },
  4729. {
  4730. "id": "NewApiUser"
  4731. }
  4732. ],
  4733. "type": "combination"
  4734. },
  4735. "Combination22": {
  4736. "group": [
  4737. {
  4738. "id": "SessionAuth"
  4739. },
  4740. {
  4741. "id": "NewApiUser"
  4742. }
  4743. ],
  4744. "type": "combination"
  4745. },
  4746. "Combination112": {
  4747. "group": [
  4748. {
  4749. "id": "AccessToken"
  4750. },
  4751. {
  4752. "id": "NewApiUser"
  4753. }
  4754. ],
  4755. "type": "combination"
  4756. },
  4757. "Combination23": {
  4758. "group": [
  4759. {
  4760. "id": "SessionAuth"
  4761. },
  4762. {
  4763. "id": "NewApiUser"
  4764. }
  4765. ],
  4766. "type": "combination"
  4767. },
  4768. "Combination113": {
  4769. "group": [
  4770. {
  4771. "id": "AccessToken"
  4772. },
  4773. {
  4774. "id": "NewApiUser"
  4775. }
  4776. ],
  4777. "type": "combination"
  4778. },
  4779. "Combination24": {
  4780. "group": [
  4781. {
  4782. "id": "SessionAuth"
  4783. },
  4784. {
  4785. "id": "NewApiUser"
  4786. }
  4787. ],
  4788. "type": "combination"
  4789. },
  4790. "Combination114": {
  4791. "group": [
  4792. {
  4793. "id": "AccessToken"
  4794. },
  4795. {
  4796. "id": "NewApiUser"
  4797. }
  4798. ],
  4799. "type": "combination"
  4800. },
  4801. "Combination25": {
  4802. "group": [
  4803. {
  4804. "id": "SessionAuth"
  4805. },
  4806. {
  4807. "id": "NewApiUser"
  4808. }
  4809. ],
  4810. "type": "combination"
  4811. },
  4812. "Combination115": {
  4813. "group": [
  4814. {
  4815. "id": "AccessToken"
  4816. },
  4817. {
  4818. "id": "NewApiUser"
  4819. }
  4820. ],
  4821. "type": "combination"
  4822. },
  4823. "Combination26": {
  4824. "group": [
  4825. {
  4826. "id": "SessionAuth"
  4827. },
  4828. {
  4829. "id": "NewApiUser"
  4830. }
  4831. ],
  4832. "type": "combination"
  4833. },
  4834. "Combination116": {
  4835. "group": [
  4836. {
  4837. "id": "AccessToken"
  4838. },
  4839. {
  4840. "id": "NewApiUser"
  4841. }
  4842. ],
  4843. "type": "combination"
  4844. },
  4845. "Combination27": {
  4846. "group": [
  4847. {
  4848. "id": "SessionAuth"
  4849. },
  4850. {
  4851. "id": "NewApiUser"
  4852. }
  4853. ],
  4854. "type": "combination"
  4855. },
  4856. "Combination117": {
  4857. "group": [
  4858. {
  4859. "id": "AccessToken"
  4860. },
  4861. {
  4862. "id": "NewApiUser"
  4863. }
  4864. ],
  4865. "type": "combination"
  4866. },
  4867. "Combination28": {
  4868. "group": [
  4869. {
  4870. "id": "SessionAuth"
  4871. },
  4872. {
  4873. "id": "NewApiUser"
  4874. }
  4875. ],
  4876. "type": "combination"
  4877. },
  4878. "Combination118": {
  4879. "group": [
  4880. {
  4881. "id": "AccessToken"
  4882. },
  4883. {
  4884. "id": "NewApiUser"
  4885. }
  4886. ],
  4887. "type": "combination"
  4888. },
  4889. "Combination29": {
  4890. "group": [
  4891. {
  4892. "id": "SessionAuth"
  4893. },
  4894. {
  4895. "id": "NewApiUser"
  4896. }
  4897. ],
  4898. "type": "combination"
  4899. },
  4900. "Combination119": {
  4901. "group": [
  4902. {
  4903. "id": "AccessToken"
  4904. },
  4905. {
  4906. "id": "NewApiUser"
  4907. }
  4908. ],
  4909. "type": "combination"
  4910. },
  4911. "Combination30": {
  4912. "group": [
  4913. {
  4914. "id": "SessionAuth"
  4915. },
  4916. {
  4917. "id": "NewApiUser"
  4918. }
  4919. ],
  4920. "type": "combination"
  4921. },
  4922. "Combination120": {
  4923. "group": [
  4924. {
  4925. "id": "AccessToken"
  4926. },
  4927. {
  4928. "id": "NewApiUser"
  4929. }
  4930. ],
  4931. "type": "combination"
  4932. },
  4933. "Combination31": {
  4934. "group": [
  4935. {
  4936. "id": "SessionAuth"
  4937. },
  4938. {
  4939. "id": "NewApiUser"
  4940. }
  4941. ],
  4942. "type": "combination"
  4943. },
  4944. "Combination121": {
  4945. "group": [
  4946. {
  4947. "id": "AccessToken"
  4948. },
  4949. {
  4950. "id": "NewApiUser"
  4951. }
  4952. ],
  4953. "type": "combination"
  4954. },
  4955. "Combination32": {
  4956. "group": [
  4957. {
  4958. "id": "SessionAuth"
  4959. },
  4960. {
  4961. "id": "NewApiUser"
  4962. }
  4963. ],
  4964. "type": "combination"
  4965. },
  4966. "Combination122": {
  4967. "group": [
  4968. {
  4969. "id": "AccessToken"
  4970. },
  4971. {
  4972. "id": "NewApiUser"
  4973. }
  4974. ],
  4975. "type": "combination"
  4976. },
  4977. "Combination33": {
  4978. "group": [
  4979. {
  4980. "id": "SessionAuth"
  4981. },
  4982. {
  4983. "id": "NewApiUser"
  4984. }
  4985. ],
  4986. "type": "combination"
  4987. },
  4988. "Combination123": {
  4989. "group": [
  4990. {
  4991. "id": "AccessToken"
  4992. },
  4993. {
  4994. "id": "NewApiUser"
  4995. }
  4996. ],
  4997. "type": "combination"
  4998. },
  4999. "Combination34": {
  5000. "group": [
  5001. {
  5002. "id": "SessionAuth"
  5003. },
  5004. {
  5005. "id": "NewApiUser"
  5006. }
  5007. ],
  5008. "type": "combination"
  5009. },
  5010. "Combination124": {
  5011. "group": [
  5012. {
  5013. "id": "AccessToken"
  5014. },
  5015. {
  5016. "id": "NewApiUser"
  5017. }
  5018. ],
  5019. "type": "combination"
  5020. },
  5021. "Combination35": {
  5022. "group": [
  5023. {
  5024. "id": "SessionAuth"
  5025. },
  5026. {
  5027. "id": "NewApiUser"
  5028. }
  5029. ],
  5030. "type": "combination"
  5031. },
  5032. "Combination125": {
  5033. "group": [
  5034. {
  5035. "id": "AccessToken"
  5036. },
  5037. {
  5038. "id": "NewApiUser"
  5039. }
  5040. ],
  5041. "type": "combination"
  5042. },
  5043. "Combination36": {
  5044. "group": [
  5045. {
  5046. "id": "SessionAuth"
  5047. },
  5048. {
  5049. "id": "NewApiUser"
  5050. }
  5051. ],
  5052. "type": "combination"
  5053. },
  5054. "Combination126": {
  5055. "group": [
  5056. {
  5057. "id": "AccessToken"
  5058. },
  5059. {
  5060. "id": "NewApiUser"
  5061. }
  5062. ],
  5063. "type": "combination"
  5064. },
  5065. "Combination37": {
  5066. "group": [
  5067. {
  5068. "id": "SessionAuth"
  5069. },
  5070. {
  5071. "id": "NewApiUser"
  5072. }
  5073. ],
  5074. "type": "combination"
  5075. },
  5076. "Combination127": {
  5077. "group": [
  5078. {
  5079. "id": "AccessToken"
  5080. },
  5081. {
  5082. "id": "NewApiUser"
  5083. }
  5084. ],
  5085. "type": "combination"
  5086. },
  5087. "Combination38": {
  5088. "group": [
  5089. {
  5090. "id": "SessionAuth"
  5091. },
  5092. {
  5093. "id": "NewApiUser"
  5094. }
  5095. ],
  5096. "type": "combination"
  5097. },
  5098. "Combination128": {
  5099. "group": [
  5100. {
  5101. "id": "AccessToken"
  5102. },
  5103. {
  5104. "id": "NewApiUser"
  5105. }
  5106. ],
  5107. "type": "combination"
  5108. },
  5109. "Combination39": {
  5110. "group": [
  5111. {
  5112. "id": "SessionAuth"
  5113. },
  5114. {
  5115. "id": "NewApiUser"
  5116. }
  5117. ],
  5118. "type": "combination"
  5119. },
  5120. "Combination129": {
  5121. "group": [
  5122. {
  5123. "id": "AccessToken"
  5124. },
  5125. {
  5126. "id": "NewApiUser"
  5127. }
  5128. ],
  5129. "type": "combination"
  5130. },
  5131. "Combination40": {
  5132. "group": [
  5133. {
  5134. "id": "SessionAuth"
  5135. },
  5136. {
  5137. "id": "NewApiUser"
  5138. }
  5139. ],
  5140. "type": "combination"
  5141. },
  5142. "Combination130": {
  5143. "group": [
  5144. {
  5145. "id": "AccessToken"
  5146. },
  5147. {
  5148. "id": "NewApiUser"
  5149. }
  5150. ],
  5151. "type": "combination"
  5152. },
  5153. "Combination41": {
  5154. "group": [
  5155. {
  5156. "id": "SessionAuth"
  5157. },
  5158. {
  5159. "id": "NewApiUser"
  5160. }
  5161. ],
  5162. "type": "combination"
  5163. },
  5164. "Combination131": {
  5165. "group": [
  5166. {
  5167. "id": "AccessToken"
  5168. },
  5169. {
  5170. "id": "NewApiUser"
  5171. }
  5172. ],
  5173. "type": "combination"
  5174. },
  5175. "Combination42": {
  5176. "group": [
  5177. {
  5178. "id": "SessionAuth"
  5179. },
  5180. {
  5181. "id": "NewApiUser"
  5182. }
  5183. ],
  5184. "type": "combination"
  5185. },
  5186. "Combination132": {
  5187. "group": [
  5188. {
  5189. "id": "AccessToken"
  5190. },
  5191. {
  5192. "id": "NewApiUser"
  5193. }
  5194. ],
  5195. "type": "combination"
  5196. },
  5197. "Combination43": {
  5198. "group": [
  5199. {
  5200. "id": "SessionAuth"
  5201. },
  5202. {
  5203. "id": "NewApiUser"
  5204. }
  5205. ],
  5206. "type": "combination"
  5207. },
  5208. "Combination133": {
  5209. "group": [
  5210. {
  5211. "id": "AccessToken"
  5212. },
  5213. {
  5214. "id": "NewApiUser"
  5215. }
  5216. ],
  5217. "type": "combination"
  5218. },
  5219. "Combination44": {
  5220. "group": [
  5221. {
  5222. "id": "SessionAuth"
  5223. },
  5224. {
  5225. "id": "NewApiUser"
  5226. }
  5227. ],
  5228. "type": "combination"
  5229. },
  5230. "Combination134": {
  5231. "group": [
  5232. {
  5233. "id": "AccessToken"
  5234. },
  5235. {
  5236. "id": "NewApiUser"
  5237. }
  5238. ],
  5239. "type": "combination"
  5240. },
  5241. "Combination45": {
  5242. "group": [
  5243. {
  5244. "id": "SessionAuth"
  5245. },
  5246. {
  5247. "id": "NewApiUser"
  5248. }
  5249. ],
  5250. "type": "combination"
  5251. },
  5252. "Combination135": {
  5253. "group": [
  5254. {
  5255. "id": "AccessToken"
  5256. },
  5257. {
  5258. "id": "NewApiUser"
  5259. }
  5260. ],
  5261. "type": "combination"
  5262. },
  5263. "Combination46": {
  5264. "group": [
  5265. {
  5266. "id": "SessionAuth"
  5267. },
  5268. {
  5269. "id": "NewApiUser"
  5270. }
  5271. ],
  5272. "type": "combination"
  5273. },
  5274. "Combination136": {
  5275. "group": [
  5276. {
  5277. "id": "AccessToken"
  5278. },
  5279. {
  5280. "id": "NewApiUser"
  5281. }
  5282. ],
  5283. "type": "combination"
  5284. },
  5285. "Combination47": {
  5286. "group": [
  5287. {
  5288. "id": "SessionAuth"
  5289. },
  5290. {
  5291. "id": "NewApiUser"
  5292. }
  5293. ],
  5294. "type": "combination"
  5295. },
  5296. "Combination137": {
  5297. "group": [
  5298. {
  5299. "id": "AccessToken"
  5300. },
  5301. {
  5302. "id": "NewApiUser"
  5303. }
  5304. ],
  5305. "type": "combination"
  5306. },
  5307. "Combination48": {
  5308. "group": [
  5309. {
  5310. "id": "SessionAuth"
  5311. },
  5312. {
  5313. "id": "NewApiUser"
  5314. }
  5315. ],
  5316. "type": "combination"
  5317. },
  5318. "Combination138": {
  5319. "group": [
  5320. {
  5321. "id": "AccessToken"
  5322. },
  5323. {
  5324. "id": "NewApiUser"
  5325. }
  5326. ],
  5327. "type": "combination"
  5328. },
  5329. "Combination49": {
  5330. "group": [
  5331. {
  5332. "id": "SessionAuth"
  5333. },
  5334. {
  5335. "id": "NewApiUser"
  5336. }
  5337. ],
  5338. "type": "combination"
  5339. },
  5340. "Combination139": {
  5341. "group": [
  5342. {
  5343. "id": "AccessToken"
  5344. },
  5345. {
  5346. "id": "NewApiUser"
  5347. }
  5348. ],
  5349. "type": "combination"
  5350. },
  5351. "Combination50": {
  5352. "group": [
  5353. {
  5354. "id": "SessionAuth"
  5355. },
  5356. {
  5357. "id": "NewApiUser"
  5358. }
  5359. ],
  5360. "type": "combination"
  5361. },
  5362. "Combination140": {
  5363. "group": [
  5364. {
  5365. "id": "AccessToken"
  5366. },
  5367. {
  5368. "id": "NewApiUser"
  5369. }
  5370. ],
  5371. "type": "combination"
  5372. },
  5373. "Combination51": {
  5374. "group": [
  5375. {
  5376. "id": "SessionAuth"
  5377. },
  5378. {
  5379. "id": "NewApiUser"
  5380. }
  5381. ],
  5382. "type": "combination"
  5383. },
  5384. "Combination141": {
  5385. "group": [
  5386. {
  5387. "id": "AccessToken"
  5388. },
  5389. {
  5390. "id": "NewApiUser"
  5391. }
  5392. ],
  5393. "type": "combination"
  5394. },
  5395. "Combination52": {
  5396. "group": [
  5397. {
  5398. "id": "SessionAuth"
  5399. },
  5400. {
  5401. "id": "NewApiUser"
  5402. }
  5403. ],
  5404. "type": "combination"
  5405. },
  5406. "Combination142": {
  5407. "group": [
  5408. {
  5409. "id": "AccessToken"
  5410. },
  5411. {
  5412. "id": "NewApiUser"
  5413. }
  5414. ],
  5415. "type": "combination"
  5416. },
  5417. "Combination53": {
  5418. "group": [
  5419. {
  5420. "id": "SessionAuth"
  5421. },
  5422. {
  5423. "id": "NewApiUser"
  5424. }
  5425. ],
  5426. "type": "combination"
  5427. },
  5428. "Combination143": {
  5429. "group": [
  5430. {
  5431. "id": "AccessToken"
  5432. },
  5433. {
  5434. "id": "NewApiUser"
  5435. }
  5436. ],
  5437. "type": "combination"
  5438. },
  5439. "Combination54": {
  5440. "group": [
  5441. {
  5442. "id": "SessionAuth"
  5443. },
  5444. {
  5445. "id": "NewApiUser"
  5446. }
  5447. ],
  5448. "type": "combination"
  5449. },
  5450. "Combination144": {
  5451. "group": [
  5452. {
  5453. "id": "AccessToken"
  5454. },
  5455. {
  5456. "id": "NewApiUser"
  5457. }
  5458. ],
  5459. "type": "combination"
  5460. },
  5461. "Combination55": {
  5462. "group": [
  5463. {
  5464. "id": "SessionAuth"
  5465. },
  5466. {
  5467. "id": "NewApiUser"
  5468. }
  5469. ],
  5470. "type": "combination"
  5471. },
  5472. "Combination145": {
  5473. "group": [
  5474. {
  5475. "id": "AccessToken"
  5476. },
  5477. {
  5478. "id": "NewApiUser"
  5479. }
  5480. ],
  5481. "type": "combination"
  5482. },
  5483. "Combination56": {
  5484. "group": [
  5485. {
  5486. "id": "SessionAuth"
  5487. },
  5488. {
  5489. "id": "NewApiUser"
  5490. }
  5491. ],
  5492. "type": "combination"
  5493. },
  5494. "Combination146": {
  5495. "group": [
  5496. {
  5497. "id": "AccessToken"
  5498. },
  5499. {
  5500. "id": "NewApiUser"
  5501. }
  5502. ],
  5503. "type": "combination"
  5504. },
  5505. "Combination57": {
  5506. "group": [
  5507. {
  5508. "id": "SessionAuth"
  5509. },
  5510. {
  5511. "id": "NewApiUser"
  5512. }
  5513. ],
  5514. "type": "combination"
  5515. },
  5516. "Combination147": {
  5517. "group": [
  5518. {
  5519. "id": "AccessToken"
  5520. },
  5521. {
  5522. "id": "NewApiUser"
  5523. }
  5524. ],
  5525. "type": "combination"
  5526. },
  5527. "Combination58": {
  5528. "group": [
  5529. {
  5530. "id": "SessionAuth"
  5531. },
  5532. {
  5533. "id": "NewApiUser"
  5534. }
  5535. ],
  5536. "type": "combination"
  5537. },
  5538. "Combination148": {
  5539. "group": [
  5540. {
  5541. "id": "AccessToken"
  5542. },
  5543. {
  5544. "id": "NewApiUser"
  5545. }
  5546. ],
  5547. "type": "combination"
  5548. },
  5549. "Combination59": {
  5550. "group": [
  5551. {
  5552. "id": "SessionAuth"
  5553. },
  5554. {
  5555. "id": "NewApiUser"
  5556. }
  5557. ],
  5558. "type": "combination"
  5559. },
  5560. "Combination149": {
  5561. "group": [
  5562. {
  5563. "id": "AccessToken"
  5564. },
  5565. {
  5566. "id": "NewApiUser"
  5567. }
  5568. ],
  5569. "type": "combination"
  5570. },
  5571. "Combination60": {
  5572. "group": [
  5573. {
  5574. "id": "SessionAuth"
  5575. },
  5576. {
  5577. "id": "NewApiUser"
  5578. }
  5579. ],
  5580. "type": "combination"
  5581. },
  5582. "Combination150": {
  5583. "group": [
  5584. {
  5585. "id": "AccessToken"
  5586. },
  5587. {
  5588. "id": "NewApiUser"
  5589. }
  5590. ],
  5591. "type": "combination"
  5592. },
  5593. "Combination61": {
  5594. "group": [
  5595. {
  5596. "id": "SessionAuth"
  5597. },
  5598. {
  5599. "id": "NewApiUser"
  5600. }
  5601. ],
  5602. "type": "combination"
  5603. },
  5604. "Combination151": {
  5605. "group": [
  5606. {
  5607. "id": "AccessToken"
  5608. },
  5609. {
  5610. "id": "NewApiUser"
  5611. }
  5612. ],
  5613. "type": "combination"
  5614. },
  5615. "Combination62": {
  5616. "group": [
  5617. {
  5618. "id": "SessionAuth"
  5619. },
  5620. {
  5621. "id": "NewApiUser"
  5622. }
  5623. ],
  5624. "type": "combination"
  5625. },
  5626. "Combination152": {
  5627. "group": [
  5628. {
  5629. "id": "AccessToken"
  5630. },
  5631. {
  5632. "id": "NewApiUser"
  5633. }
  5634. ],
  5635. "type": "combination"
  5636. },
  5637. "Combination63": {
  5638. "group": [
  5639. {
  5640. "id": "SessionAuth"
  5641. },
  5642. {
  5643. "id": "NewApiUser"
  5644. }
  5645. ],
  5646. "type": "combination"
  5647. },
  5648. "Combination153": {
  5649. "group": [
  5650. {
  5651. "id": "AccessToken"
  5652. },
  5653. {
  5654. "id": "NewApiUser"
  5655. }
  5656. ],
  5657. "type": "combination"
  5658. },
  5659. "Combination64": {
  5660. "group": [
  5661. {
  5662. "id": "SessionAuth"
  5663. },
  5664. {
  5665. "id": "NewApiUser"
  5666. }
  5667. ],
  5668. "type": "combination"
  5669. },
  5670. "Combination154": {
  5671. "group": [
  5672. {
  5673. "id": "AccessToken"
  5674. },
  5675. {
  5676. "id": "NewApiUser"
  5677. }
  5678. ],
  5679. "type": "combination"
  5680. },
  5681. "Combination65": {
  5682. "group": [
  5683. {
  5684. "id": "SessionAuth"
  5685. },
  5686. {
  5687. "id": "NewApiUser"
  5688. }
  5689. ],
  5690. "type": "combination"
  5691. },
  5692. "Combination155": {
  5693. "group": [
  5694. {
  5695. "id": "AccessToken"
  5696. },
  5697. {
  5698. "id": "NewApiUser"
  5699. }
  5700. ],
  5701. "type": "combination"
  5702. },
  5703. "Combination66": {
  5704. "group": [
  5705. {
  5706. "id": "SessionAuth"
  5707. },
  5708. {
  5709. "id": "NewApiUser"
  5710. }
  5711. ],
  5712. "type": "combination"
  5713. },
  5714. "Combination156": {
  5715. "group": [
  5716. {
  5717. "id": "AccessToken"
  5718. },
  5719. {
  5720. "id": "NewApiUser"
  5721. }
  5722. ],
  5723. "type": "combination"
  5724. },
  5725. "Combination67": {
  5726. "group": [
  5727. {
  5728. "id": "SessionAuth"
  5729. },
  5730. {
  5731. "id": "NewApiUser"
  5732. }
  5733. ],
  5734. "type": "combination"
  5735. },
  5736. "Combination157": {
  5737. "group": [
  5738. {
  5739. "id": "AccessToken"
  5740. },
  5741. {
  5742. "id": "NewApiUser"
  5743. }
  5744. ],
  5745. "type": "combination"
  5746. },
  5747. "Combination68": {
  5748. "group": [
  5749. {
  5750. "id": "SessionAuth"
  5751. },
  5752. {
  5753. "id": "NewApiUser"
  5754. }
  5755. ],
  5756. "type": "combination"
  5757. },
  5758. "Combination158": {
  5759. "group": [
  5760. {
  5761. "id": "AccessToken"
  5762. },
  5763. {
  5764. "id": "NewApiUser"
  5765. }
  5766. ],
  5767. "type": "combination"
  5768. },
  5769. "Combination69": {
  5770. "group": [
  5771. {
  5772. "id": "SessionAuth"
  5773. },
  5774. {
  5775. "id": "NewApiUser"
  5776. }
  5777. ],
  5778. "type": "combination"
  5779. },
  5780. "Combination159": {
  5781. "group": [
  5782. {
  5783. "id": "AccessToken"
  5784. },
  5785. {
  5786. "id": "NewApiUser"
  5787. }
  5788. ],
  5789. "type": "combination"
  5790. },
  5791. "Combination70": {
  5792. "group": [
  5793. {
  5794. "id": "SessionAuth"
  5795. },
  5796. {
  5797. "id": "NewApiUser"
  5798. }
  5799. ],
  5800. "type": "combination"
  5801. },
  5802. "Combination160": {
  5803. "group": [
  5804. {
  5805. "id": "AccessToken"
  5806. },
  5807. {
  5808. "id": "NewApiUser"
  5809. }
  5810. ],
  5811. "type": "combination"
  5812. },
  5813. "Combination71": {
  5814. "group": [
  5815. {
  5816. "id": "SessionAuth"
  5817. },
  5818. {
  5819. "id": "NewApiUser"
  5820. }
  5821. ],
  5822. "type": "combination"
  5823. },
  5824. "Combination161": {
  5825. "group": [
  5826. {
  5827. "id": "AccessToken"
  5828. },
  5829. {
  5830. "id": "NewApiUser"
  5831. }
  5832. ],
  5833. "type": "combination"
  5834. },
  5835. "Combination72": {
  5836. "group": [
  5837. {
  5838. "id": "SessionAuth"
  5839. },
  5840. {
  5841. "id": "NewApiUser"
  5842. }
  5843. ],
  5844. "type": "combination"
  5845. },
  5846. "Combination162": {
  5847. "group": [
  5848. {
  5849. "id": "AccessToken"
  5850. },
  5851. {
  5852. "id": "NewApiUser"
  5853. }
  5854. ],
  5855. "type": "combination"
  5856. },
  5857. "Combination73": {
  5858. "group": [
  5859. {
  5860. "id": "SessionAuth"
  5861. },
  5862. {
  5863. "id": "NewApiUser"
  5864. }
  5865. ],
  5866. "type": "combination"
  5867. },
  5868. "Combination163": {
  5869. "group": [
  5870. {
  5871. "id": "AccessToken"
  5872. },
  5873. {
  5874. "id": "NewApiUser"
  5875. }
  5876. ],
  5877. "type": "combination"
  5878. },
  5879. "Combination74": {
  5880. "group": [
  5881. {
  5882. "id": "SessionAuth"
  5883. },
  5884. {
  5885. "id": "NewApiUser"
  5886. }
  5887. ],
  5888. "type": "combination"
  5889. },
  5890. "Combination164": {
  5891. "group": [
  5892. {
  5893. "id": "AccessToken"
  5894. },
  5895. {
  5896. "id": "NewApiUser"
  5897. }
  5898. ],
  5899. "type": "combination"
  5900. },
  5901. "Combination75": {
  5902. "group": [
  5903. {
  5904. "id": "SessionAuth"
  5905. },
  5906. {
  5907. "id": "NewApiUser"
  5908. }
  5909. ],
  5910. "type": "combination"
  5911. },
  5912. "Combination165": {
  5913. "group": [
  5914. {
  5915. "id": "AccessToken"
  5916. },
  5917. {
  5918. "id": "NewApiUser"
  5919. }
  5920. ],
  5921. "type": "combination"
  5922. },
  5923. "Combination76": {
  5924. "group": [
  5925. {
  5926. "id": "SessionAuth"
  5927. },
  5928. {
  5929. "id": "NewApiUser"
  5930. }
  5931. ],
  5932. "type": "combination"
  5933. },
  5934. "Combination166": {
  5935. "group": [
  5936. {
  5937. "id": "AccessToken"
  5938. },
  5939. {
  5940. "id": "NewApiUser"
  5941. }
  5942. ],
  5943. "type": "combination"
  5944. },
  5945. "Combination77": {
  5946. "group": [
  5947. {
  5948. "id": "SessionAuth"
  5949. },
  5950. {
  5951. "id": "NewApiUser"
  5952. }
  5953. ],
  5954. "type": "combination"
  5955. },
  5956. "Combination167": {
  5957. "group": [
  5958. {
  5959. "id": "AccessToken"
  5960. },
  5961. {
  5962. "id": "NewApiUser"
  5963. }
  5964. ],
  5965. "type": "combination"
  5966. },
  5967. "Combination78": {
  5968. "group": [
  5969. {
  5970. "id": "SessionAuth"
  5971. },
  5972. {
  5973. "id": "NewApiUser"
  5974. }
  5975. ],
  5976. "type": "combination"
  5977. },
  5978. "Combination168": {
  5979. "group": [
  5980. {
  5981. "id": "AccessToken"
  5982. },
  5983. {
  5984. "id": "NewApiUser"
  5985. }
  5986. ],
  5987. "type": "combination"
  5988. },
  5989. "Combination79": {
  5990. "group": [
  5991. {
  5992. "id": "SessionAuth"
  5993. },
  5994. {
  5995. "id": "NewApiUser"
  5996. }
  5997. ],
  5998. "type": "combination"
  5999. },
  6000. "Combination169": {
  6001. "group": [
  6002. {
  6003. "id": "AccessToken"
  6004. },
  6005. {
  6006. "id": "NewApiUser"
  6007. }
  6008. ],
  6009. "type": "combination"
  6010. },
  6011. "Combination80": {
  6012. "group": [
  6013. {
  6014. "id": "SessionAuth"
  6015. },
  6016. {
  6017. "id": "NewApiUser"
  6018. }
  6019. ],
  6020. "type": "combination"
  6021. },
  6022. "Combination170": {
  6023. "group": [
  6024. {
  6025. "id": "AccessToken"
  6026. },
  6027. {
  6028. "id": "NewApiUser"
  6029. }
  6030. ],
  6031. "type": "combination"
  6032. },
  6033. "Combination81": {
  6034. "group": [
  6035. {
  6036. "id": "SessionAuth"
  6037. },
  6038. {
  6039. "id": "NewApiUser"
  6040. }
  6041. ],
  6042. "type": "combination"
  6043. },
  6044. "Combination171": {
  6045. "group": [
  6046. {
  6047. "id": "AccessToken"
  6048. },
  6049. {
  6050. "id": "NewApiUser"
  6051. }
  6052. ],
  6053. "type": "combination"
  6054. },
  6055. "Combination82": {
  6056. "group": [
  6057. {
  6058. "id": "SessionAuth"
  6059. },
  6060. {
  6061. "id": "NewApiUser"
  6062. }
  6063. ],
  6064. "type": "combination"
  6065. },
  6066. "Combination172": {
  6067. "group": [
  6068. {
  6069. "id": "AccessToken"
  6070. },
  6071. {
  6072. "id": "NewApiUser"
  6073. }
  6074. ],
  6075. "type": "combination"
  6076. },
  6077. "Combination83": {
  6078. "group": [
  6079. {
  6080. "id": "SessionAuth"
  6081. },
  6082. {
  6083. "id": "NewApiUser"
  6084. }
  6085. ],
  6086. "type": "combination"
  6087. },
  6088. "Combination173": {
  6089. "group": [
  6090. {
  6091. "id": "AccessToken"
  6092. },
  6093. {
  6094. "id": "NewApiUser"
  6095. }
  6096. ],
  6097. "type": "combination"
  6098. },
  6099. "Combination84": {
  6100. "group": [
  6101. {
  6102. "id": "SessionAuth"
  6103. },
  6104. {
  6105. "id": "NewApiUser"
  6106. }
  6107. ],
  6108. "type": "combination"
  6109. },
  6110. "Combination174": {
  6111. "group": [
  6112. {
  6113. "id": "AccessToken"
  6114. },
  6115. {
  6116. "id": "NewApiUser"
  6117. }
  6118. ],
  6119. "type": "combination"
  6120. },
  6121. "Combination85": {
  6122. "group": [
  6123. {
  6124. "id": "SessionAuth"
  6125. },
  6126. {
  6127. "id": "NewApiUser"
  6128. }
  6129. ],
  6130. "type": "combination"
  6131. },
  6132. "Combination175": {
  6133. "group": [
  6134. {
  6135. "id": "AccessToken"
  6136. },
  6137. {
  6138. "id": "NewApiUser"
  6139. }
  6140. ],
  6141. "type": "combination"
  6142. },
  6143. "Combination86": {
  6144. "group": [
  6145. {
  6146. "id": "SessionAuth"
  6147. },
  6148. {
  6149. "id": "NewApiUser"
  6150. }
  6151. ],
  6152. "type": "combination"
  6153. },
  6154. "Combination176": {
  6155. "group": [
  6156. {
  6157. "id": "AccessToken"
  6158. },
  6159. {
  6160. "id": "NewApiUser"
  6161. }
  6162. ],
  6163. "type": "combination"
  6164. },
  6165. "Combination87": {
  6166. "group": [
  6167. {
  6168. "id": "SessionAuth"
  6169. },
  6170. {
  6171. "id": "NewApiUser"
  6172. }
  6173. ],
  6174. "type": "combination"
  6175. },
  6176. "Combination177": {
  6177. "group": [
  6178. {
  6179. "id": "AccessToken"
  6180. },
  6181. {
  6182. "id": "NewApiUser"
  6183. }
  6184. ],
  6185. "type": "combination"
  6186. },
  6187. "Combination88": {
  6188. "group": [
  6189. {
  6190. "id": "SessionAuth"
  6191. },
  6192. {
  6193. "id": "NewApiUser"
  6194. }
  6195. ],
  6196. "type": "combination"
  6197. },
  6198. "Combination178": {
  6199. "group": [
  6200. {
  6201. "id": "AccessToken"
  6202. },
  6203. {
  6204. "id": "NewApiUser"
  6205. }
  6206. ],
  6207. "type": "combination"
  6208. },
  6209. "Combination89": {
  6210. "group": [
  6211. {
  6212. "id": "SessionAuth"
  6213. },
  6214. {
  6215. "id": "NewApiUser"
  6216. }
  6217. ],
  6218. "type": "combination"
  6219. },
  6220. "Combination179": {
  6221. "group": [
  6222. {
  6223. "id": "AccessToken"
  6224. },
  6225. {
  6226. "id": "NewApiUser"
  6227. }
  6228. ],
  6229. "type": "combination"
  6230. },
  6231. "Combination90": {
  6232. "group": [
  6233. {
  6234. "id": "SessionAuth"
  6235. },
  6236. {
  6237. "id": "NewApiUser"
  6238. }
  6239. ],
  6240. "type": "combination"
  6241. },
  6242. "Combination180": {
  6243. "group": [
  6244. {
  6245. "id": "AccessToken"
  6246. },
  6247. {
  6248. "id": "NewApiUser"
  6249. }
  6250. ],
  6251. "type": "combination"
  6252. },
  6253. "Combination91": {
  6254. "group": [
  6255. {
  6256. "id": "SessionAuth"
  6257. },
  6258. {
  6259. "id": "NewApiUser"
  6260. }
  6261. ],
  6262. "type": "combination"
  6263. },
  6264. "Combination181": {
  6265. "group": [
  6266. {
  6267. "id": "AccessToken"
  6268. },
  6269. {
  6270. "id": "NewApiUser"
  6271. }
  6272. ],
  6273. "type": "combination"
  6274. },
  6275. "Combination92": {
  6276. "group": [
  6277. {
  6278. "id": "SessionAuth"
  6279. },
  6280. {
  6281. "id": "NewApiUser"
  6282. }
  6283. ],
  6284. "type": "combination"
  6285. },
  6286. "Combination182": {
  6287. "group": [
  6288. {
  6289. "id": "AccessToken"
  6290. },
  6291. {
  6292. "id": "NewApiUser"
  6293. }
  6294. ],
  6295. "type": "combination"
  6296. },
  6297. "Combination93": {
  6298. "group": [
  6299. {
  6300. "id": "SessionAuth"
  6301. },
  6302. {
  6303. "id": "NewApiUser"
  6304. }
  6305. ],
  6306. "type": "combination"
  6307. },
  6308. "Combination183": {
  6309. "group": [
  6310. {
  6311. "id": "AccessToken"
  6312. },
  6313. {
  6314. "id": "NewApiUser"
  6315. }
  6316. ],
  6317. "type": "combination"
  6318. },
  6319. "Combination94": {
  6320. "group": [
  6321. {
  6322. "id": "SessionAuth"
  6323. },
  6324. {
  6325. "id": "NewApiUser"
  6326. }
  6327. ],
  6328. "type": "combination"
  6329. },
  6330. "Combination184": {
  6331. "group": [
  6332. {
  6333. "id": "AccessToken"
  6334. },
  6335. {
  6336. "id": "NewApiUser"
  6337. }
  6338. ],
  6339. "type": "combination"
  6340. },
  6341. "Combination95": {
  6342. "group": [
  6343. {
  6344. "id": "SessionAuth"
  6345. },
  6346. {
  6347. "id": "NewApiUser"
  6348. }
  6349. ],
  6350. "type": "combination"
  6351. },
  6352. "Combination185": {
  6353. "group": [
  6354. {
  6355. "id": "AccessToken"
  6356. },
  6357. {
  6358. "id": "NewApiUser"
  6359. }
  6360. ],
  6361. "type": "combination"
  6362. },
  6363. "Combination96": {
  6364. "group": [
  6365. {
  6366. "id": "SessionAuth"
  6367. },
  6368. {
  6369. "id": "NewApiUser"
  6370. }
  6371. ],
  6372. "type": "combination"
  6373. },
  6374. "Combination186": {
  6375. "group": [
  6376. {
  6377. "id": "AccessToken"
  6378. },
  6379. {
  6380. "id": "NewApiUser"
  6381. }
  6382. ],
  6383. "type": "combination"
  6384. },
  6385. "Combination97": {
  6386. "group": [
  6387. {
  6388. "id": "SessionAuth"
  6389. },
  6390. {
  6391. "id": "NewApiUser"
  6392. }
  6393. ],
  6394. "type": "combination"
  6395. },
  6396. "Combination187": {
  6397. "group": [
  6398. {
  6399. "id": "AccessToken"
  6400. },
  6401. {
  6402. "id": "NewApiUser"
  6403. }
  6404. ],
  6405. "type": "combination"
  6406. },
  6407. "Combination98": {
  6408. "group": [
  6409. {
  6410. "id": "SessionAuth"
  6411. },
  6412. {
  6413. "id": "NewApiUser"
  6414. }
  6415. ],
  6416. "type": "combination"
  6417. },
  6418. "Combination188": {
  6419. "group": [
  6420. {
  6421. "id": "AccessToken"
  6422. },
  6423. {
  6424. "id": "NewApiUser"
  6425. }
  6426. ],
  6427. "type": "combination"
  6428. },
  6429. "Combination99": {
  6430. "group": [
  6431. {
  6432. "id": "SessionAuth"
  6433. },
  6434. {
  6435. "id": "NewApiUser"
  6436. }
  6437. ],
  6438. "type": "combination"
  6439. },
  6440. "Combination189": {
  6441. "group": [
  6442. {
  6443. "id": "AccessToken"
  6444. },
  6445. {
  6446. "id": "NewApiUser"
  6447. }
  6448. ],
  6449. "type": "combination"
  6450. },
  6451. "Combination100": {
  6452. "group": [
  6453. {
  6454. "id": "SessionAuth"
  6455. },
  6456. {
  6457. "id": "NewApiUser"
  6458. }
  6459. ],
  6460. "type": "combination"
  6461. },
  6462. "Combination190": {
  6463. "group": [
  6464. {
  6465. "id": "AccessToken"
  6466. },
  6467. {
  6468. "id": "NewApiUser"
  6469. }
  6470. ],
  6471. "type": "combination"
  6472. },
  6473. "Combination101": {
  6474. "group": [
  6475. {
  6476. "id": "SessionAuth"
  6477. },
  6478. {
  6479. "id": "NewApiUser"
  6480. }
  6481. ],
  6482. "type": "combination"
  6483. },
  6484. "Combination191": {
  6485. "group": [
  6486. {
  6487. "id": "AccessToken"
  6488. },
  6489. {
  6490. "id": "NewApiUser"
  6491. }
  6492. ],
  6493. "type": "combination"
  6494. },
  6495. "Combination102": {
  6496. "group": [
  6497. {
  6498. "id": "SessionAuth"
  6499. },
  6500. {
  6501. "id": "NewApiUser"
  6502. }
  6503. ],
  6504. "type": "combination"
  6505. },
  6506. "Combination192": {
  6507. "group": [
  6508. {
  6509. "id": "AccessToken"
  6510. },
  6511. {
  6512. "id": "NewApiUser"
  6513. }
  6514. ],
  6515. "type": "combination"
  6516. },
  6517. "Combination103": {
  6518. "group": [
  6519. {
  6520. "id": "SessionAuth"
  6521. },
  6522. {
  6523. "id": "NewApiUser"
  6524. }
  6525. ],
  6526. "type": "combination"
  6527. },
  6528. "Combination193": {
  6529. "group": [
  6530. {
  6531. "id": "AccessToken"
  6532. },
  6533. {
  6534. "id": "NewApiUser"
  6535. }
  6536. ],
  6537. "type": "combination"
  6538. },
  6539. "Combination104": {
  6540. "group": [
  6541. {
  6542. "id": "SessionAuth"
  6543. },
  6544. {
  6545. "id": "NewApiUser"
  6546. }
  6547. ],
  6548. "type": "combination"
  6549. },
  6550. "Combination194": {
  6551. "group": [
  6552. {
  6553. "id": "AccessToken"
  6554. },
  6555. {
  6556. "id": "NewApiUser"
  6557. }
  6558. ],
  6559. "type": "combination"
  6560. },
  6561. "Combination105": {
  6562. "group": [
  6563. {
  6564. "id": "SessionAuth"
  6565. },
  6566. {
  6567. "id": "NewApiUser"
  6568. }
  6569. ],
  6570. "type": "combination"
  6571. },
  6572. "Combination195": {
  6573. "group": [
  6574. {
  6575. "id": "AccessToken"
  6576. },
  6577. {
  6578. "id": "NewApiUser"
  6579. }
  6580. ],
  6581. "type": "combination"
  6582. },
  6583. "Combination106": {
  6584. "group": [
  6585. {
  6586. "id": "SessionAuth"
  6587. },
  6588. {
  6589. "id": "NewApiUser"
  6590. }
  6591. ],
  6592. "type": "combination"
  6593. },
  6594. "Combination196": {
  6595. "group": [
  6596. {
  6597. "id": "AccessToken"
  6598. },
  6599. {
  6600. "id": "NewApiUser"
  6601. }
  6602. ],
  6603. "type": "combination"
  6604. },
  6605. "Combination107": {
  6606. "group": [
  6607. {
  6608. "id": "SessionAuth"
  6609. },
  6610. {
  6611. "id": "NewApiUser"
  6612. }
  6613. ],
  6614. "type": "combination"
  6615. },
  6616. "Combination197": {
  6617. "group": [
  6618. {
  6619. "id": "AccessToken"
  6620. },
  6621. {
  6622. "id": "NewApiUser"
  6623. }
  6624. ],
  6625. "type": "combination"
  6626. },
  6627. "Combination108": {
  6628. "group": [
  6629. {
  6630. "id": "SessionAuth"
  6631. },
  6632. {
  6633. "id": "NewApiUser"
  6634. }
  6635. ],
  6636. "type": "combination"
  6637. },
  6638. "Combination198": {
  6639. "group": [
  6640. {
  6641. "id": "AccessToken"
  6642. },
  6643. {
  6644. "id": "NewApiUser"
  6645. }
  6646. ],
  6647. "type": "combination"
  6648. },
  6649. "Combination109": {
  6650. "group": [
  6651. {
  6652. "id": "SessionAuth"
  6653. },
  6654. {
  6655. "id": "NewApiUser"
  6656. }
  6657. ],
  6658. "type": "combination"
  6659. },
  6660. "Combination199": {
  6661. "group": [
  6662. {
  6663. "id": "AccessToken"
  6664. },
  6665. {
  6666. "id": "NewApiUser"
  6667. }
  6668. ],
  6669. "type": "combination"
  6670. },
  6671. "Combination200": {
  6672. "group": [
  6673. {
  6674. "id": "SessionAuth"
  6675. },
  6676. {
  6677. "id": "NewApiUser"
  6678. }
  6679. ],
  6680. "type": "combination"
  6681. },
  6682. "Combination1100": {
  6683. "group": [
  6684. {
  6685. "id": "AccessToken"
  6686. },
  6687. {
  6688. "id": "NewApiUser"
  6689. }
  6690. ],
  6691. "type": "combination"
  6692. },
  6693. "Combination201": {
  6694. "group": [
  6695. {
  6696. "id": "SessionAuth"
  6697. },
  6698. {
  6699. "id": "NewApiUser"
  6700. }
  6701. ],
  6702. "type": "combination"
  6703. },
  6704. "Combination1101": {
  6705. "group": [
  6706. {
  6707. "id": "AccessToken"
  6708. },
  6709. {
  6710. "id": "NewApiUser"
  6711. }
  6712. ],
  6713. "type": "combination"
  6714. },
  6715. "Combination202": {
  6716. "group": [
  6717. {
  6718. "id": "SessionAuth"
  6719. },
  6720. {
  6721. "id": "NewApiUser"
  6722. }
  6723. ],
  6724. "type": "combination"
  6725. },
  6726. "Combination1102": {
  6727. "group": [
  6728. {
  6729. "id": "AccessToken"
  6730. },
  6731. {
  6732. "id": "NewApiUser"
  6733. }
  6734. ],
  6735. "type": "combination"
  6736. },
  6737. "Combination203": {
  6738. "group": [
  6739. {
  6740. "id": "SessionAuth"
  6741. },
  6742. {
  6743. "id": "NewApiUser"
  6744. }
  6745. ],
  6746. "type": "combination"
  6747. },
  6748. "Combination1103": {
  6749. "group": [
  6750. {
  6751. "id": "AccessToken"
  6752. },
  6753. {
  6754. "id": "NewApiUser"
  6755. }
  6756. ],
  6757. "type": "combination"
  6758. },
  6759. "Combination204": {
  6760. "group": [
  6761. {
  6762. "id": "SessionAuth"
  6763. },
  6764. {
  6765. "id": "NewApiUser"
  6766. }
  6767. ],
  6768. "type": "combination"
  6769. },
  6770. "Combination1104": {
  6771. "group": [
  6772. {
  6773. "id": "AccessToken"
  6774. },
  6775. {
  6776. "id": "NewApiUser"
  6777. }
  6778. ],
  6779. "type": "combination"
  6780. },
  6781. "Combination205": {
  6782. "group": [
  6783. {
  6784. "id": "SessionAuth"
  6785. },
  6786. {
  6787. "id": "NewApiUser"
  6788. }
  6789. ],
  6790. "type": "combination"
  6791. },
  6792. "Combination1105": {
  6793. "group": [
  6794. {
  6795. "id": "AccessToken"
  6796. },
  6797. {
  6798. "id": "NewApiUser"
  6799. }
  6800. ],
  6801. "type": "combination"
  6802. },
  6803. "Combination206": {
  6804. "group": [
  6805. {
  6806. "id": "SessionAuth"
  6807. },
  6808. {
  6809. "id": "NewApiUser"
  6810. }
  6811. ],
  6812. "type": "combination"
  6813. },
  6814. "Combination1106": {
  6815. "group": [
  6816. {
  6817. "id": "AccessToken"
  6818. },
  6819. {
  6820. "id": "NewApiUser"
  6821. }
  6822. ],
  6823. "type": "combination"
  6824. },
  6825. "Combination207": {
  6826. "group": [
  6827. {
  6828. "id": "SessionAuth"
  6829. },
  6830. {
  6831. "id": "NewApiUser"
  6832. }
  6833. ],
  6834. "type": "combination"
  6835. },
  6836. "Combination1107": {
  6837. "group": [
  6838. {
  6839. "id": "AccessToken"
  6840. },
  6841. {
  6842. "id": "NewApiUser"
  6843. }
  6844. ],
  6845. "type": "combination"
  6846. },
  6847. "Combination208": {
  6848. "group": [
  6849. {
  6850. "id": "SessionAuth"
  6851. },
  6852. {
  6853. "id": "NewApiUser"
  6854. }
  6855. ],
  6856. "type": "combination"
  6857. },
  6858. "Combination1108": {
  6859. "group": [
  6860. {
  6861. "id": "AccessToken"
  6862. },
  6863. {
  6864. "id": "NewApiUser"
  6865. }
  6866. ],
  6867. "type": "combination"
  6868. },
  6869. "Combination209": {
  6870. "group": [
  6871. {
  6872. "id": "SessionAuth"
  6873. },
  6874. {
  6875. "id": "NewApiUser"
  6876. }
  6877. ],
  6878. "type": "combination"
  6879. },
  6880. "Combination1109": {
  6881. "group": [
  6882. {
  6883. "id": "AccessToken"
  6884. },
  6885. {
  6886. "id": "NewApiUser"
  6887. }
  6888. ],
  6889. "type": "combination"
  6890. },
  6891. "Combination210": {
  6892. "group": [
  6893. {
  6894. "id": "SessionAuth"
  6895. },
  6896. {
  6897. "id": "NewApiUser"
  6898. }
  6899. ],
  6900. "type": "combination"
  6901. },
  6902. "Combination1110": {
  6903. "group": [
  6904. {
  6905. "id": "AccessToken"
  6906. },
  6907. {
  6908. "id": "NewApiUser"
  6909. }
  6910. ],
  6911. "type": "combination"
  6912. },
  6913. "Combination211": {
  6914. "group": [
  6915. {
  6916. "id": "SessionAuth"
  6917. },
  6918. {
  6919. "id": "NewApiUser"
  6920. }
  6921. ],
  6922. "type": "combination"
  6923. },
  6924. "Combination1111": {
  6925. "group": [
  6926. {
  6927. "id": "AccessToken"
  6928. },
  6929. {
  6930. "id": "NewApiUser"
  6931. }
  6932. ],
  6933. "type": "combination"
  6934. },
  6935. "Combination212": {
  6936. "group": [
  6937. {
  6938. "id": "SessionAuth"
  6939. },
  6940. {
  6941. "id": "NewApiUser"
  6942. }
  6943. ],
  6944. "type": "combination"
  6945. },
  6946. "Combination1112": {
  6947. "group": [
  6948. {
  6949. "id": "AccessToken"
  6950. },
  6951. {
  6952. "id": "NewApiUser"
  6953. }
  6954. ],
  6955. "type": "combination"
  6956. },
  6957. "Combination213": {
  6958. "group": [
  6959. {
  6960. "id": "SessionAuth"
  6961. },
  6962. {
  6963. "id": "NewApiUser"
  6964. }
  6965. ],
  6966. "type": "combination"
  6967. },
  6968. "Combination1113": {
  6969. "group": [
  6970. {
  6971. "id": "AccessToken"
  6972. },
  6973. {
  6974. "id": "NewApiUser"
  6975. }
  6976. ],
  6977. "type": "combination"
  6978. },
  6979. "Combination214": {
  6980. "group": [
  6981. {
  6982. "id": "SessionAuth"
  6983. },
  6984. {
  6985. "id": "NewApiUser"
  6986. }
  6987. ],
  6988. "type": "combination"
  6989. },
  6990. "Combination1114": {
  6991. "group": [
  6992. {
  6993. "id": "AccessToken"
  6994. },
  6995. {
  6996. "id": "NewApiUser"
  6997. }
  6998. ],
  6999. "type": "combination"
  7000. },
  7001. "Combination215": {
  7002. "group": [
  7003. {
  7004. "id": "SessionAuth"
  7005. },
  7006. {
  7007. "id": "NewApiUser"
  7008. }
  7009. ],
  7010. "type": "combination"
  7011. },
  7012. "Combination1115": {
  7013. "group": [
  7014. {
  7015. "id": "AccessToken"
  7016. },
  7017. {
  7018. "id": "NewApiUser"
  7019. }
  7020. ],
  7021. "type": "combination"
  7022. },
  7023. "Combination216": {
  7024. "group": [
  7025. {
  7026. "id": "SessionAuth"
  7027. },
  7028. {
  7029. "id": "NewApiUser"
  7030. }
  7031. ],
  7032. "type": "combination"
  7033. },
  7034. "Combination1116": {
  7035. "group": [
  7036. {
  7037. "id": "AccessToken"
  7038. },
  7039. {
  7040. "id": "NewApiUser"
  7041. }
  7042. ],
  7043. "type": "combination"
  7044. },
  7045. "Combination217": {
  7046. "group": [
  7047. {
  7048. "id": "SessionAuth"
  7049. },
  7050. {
  7051. "id": "NewApiUser"
  7052. }
  7053. ],
  7054. "type": "combination"
  7055. },
  7056. "Combination1117": {
  7057. "group": [
  7058. {
  7059. "id": "AccessToken"
  7060. },
  7061. {
  7062. "id": "NewApiUser"
  7063. }
  7064. ],
  7065. "type": "combination"
  7066. },
  7067. "Combination218": {
  7068. "group": [
  7069. {
  7070. "id": "SessionAuth"
  7071. },
  7072. {
  7073. "id": "NewApiUser"
  7074. }
  7075. ],
  7076. "type": "combination"
  7077. },
  7078. "Combination1118": {
  7079. "group": [
  7080. {
  7081. "id": "AccessToken"
  7082. },
  7083. {
  7084. "id": "NewApiUser"
  7085. }
  7086. ],
  7087. "type": "combination"
  7088. },
  7089. "Combination219": {
  7090. "group": [
  7091. {
  7092. "id": "SessionAuth"
  7093. },
  7094. {
  7095. "id": "NewApiUser"
  7096. }
  7097. ],
  7098. "type": "combination"
  7099. },
  7100. "Combination1119": {
  7101. "group": [
  7102. {
  7103. "id": "AccessToken"
  7104. },
  7105. {
  7106. "id": "NewApiUser"
  7107. }
  7108. ],
  7109. "type": "combination"
  7110. },
  7111. "Combination220": {
  7112. "group": [
  7113. {
  7114. "id": "SessionAuth"
  7115. },
  7116. {
  7117. "id": "NewApiUser"
  7118. }
  7119. ],
  7120. "type": "combination"
  7121. },
  7122. "Combination1120": {
  7123. "group": [
  7124. {
  7125. "id": "AccessToken"
  7126. },
  7127. {
  7128. "id": "NewApiUser"
  7129. }
  7130. ],
  7131. "type": "combination"
  7132. }
  7133. }
  7134. },
  7135. "servers": [],
  7136. "security": [
  7137. {
  7138. "BearerAuth": []
  7139. }
  7140. ]
  7141. }