crawl.json 409 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952
  1. {
  2. "version": 47,
  3. "models": [
  4. {
  5. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/cosyvoice-clone-v1?serviceSite=asia-pacific-china",
  6. "model_name": "cosyvoice-clone-v1",
  7. "prices": {
  8. "语音合成": {
  9. "raw": "2.0",
  10. "unit": "元/每万字符",
  11. "price": 2.0,
  12. "currency": "CNY"
  13. }
  14. },
  15. "model_info": {
  16. "features": {
  17. "cache存储": false,
  18. "前缀续写": false,
  19. "批量推理": false,
  20. "模型体验": false,
  21. "模型调优": false,
  22. "联网搜索": false,
  23. "结构化输出": false,
  24. "function calling": false
  25. },
  26. "model_code": "cosyvoice-clone-v1",
  27. "description": "声音复刻Cosyvoice大模型,依托先进的大模型技术进行特征提取,从而完成声音的复刻,且无需训练过程。仅需提供时长较短的音频,即可迅速生成高度相似且听感自然的定制声音。",
  28. "display_tags": [
  29. "语音合成"
  30. ],
  31. "input_modalities": [
  32. "Text"
  33. ],
  34. "output_modalities": [
  35. "Audio"
  36. ]
  37. },
  38. "rate_limits": {},
  39. "tool_prices": [],
  40. "icon": "https://img.alicdn.com/imgextra/i3/O1CN01Kmx9dR1wcHOaMMXAk_!!6000000006328-55-tps-28-28.svg",
  41. "scraped_at": "2026-05-08T04:12:53.640396Z",
  42. "discount": 1.0,
  43. "api_key": "LuWDW9vEhleOwnehzx8Urygsoykqq8Ec07YesKhUP7vmY6w",
  44. "group_name": "阿里系列模型"
  45. },
  46. {
  47. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/cosyvoice-v3-flash?serviceSite=asia-pacific-china",
  48. "model_name": "cosyvoice-v3-flash",
  49. "prices": {
  50. "语音合成": {
  51. "raw": "1",
  52. "unit": "元/每万字符",
  53. "price": 1.0,
  54. "currency": "CNY"
  55. }
  56. },
  57. "model_info": {
  58. "features": {
  59. "cache存储": false,
  60. "前缀续写": false,
  61. "批量推理": false,
  62. "模型体验": false,
  63. "模型调优": false,
  64. "联网搜索": false,
  65. "结构化输出": false,
  66. "function calling": false
  67. },
  68. "model_code": "cosyvoice-v3-flash",
  69. "description": "合成能力:CosyVoice-v3-Flash是通义实验室CosyVoice系列最新版高性能的语音合成大模型,较之前版本在自然度、音质、韵律、情感表现力上有更好的表现。该模型支持文本至语音的实时流式合成。克隆能力:CosyVoice-v3-Flash也是通义实验室CosyVoice系列最新版的语音克隆大模型,较之前版本提升了发音准确性、音色相似度,并且增加了更多小语种支持(德、西、法、意、俄)。仅需提供5-20s的参考音频,即可迅速生成高度相似且听感自然的定制声音。",
  70. "display_tags": [
  71. "语音合成"
  72. ],
  73. "input_modalities": [
  74. "Text"
  75. ],
  76. "output_modalities": [
  77. "Audio"
  78. ]
  79. },
  80. "rate_limits": {
  81. "RPM": "180",
  82. "上下文长度": null,
  83. "最大输入长度": null,
  84. "最大输出长度": null
  85. },
  86. "tool_prices": [],
  87. "icon": "https://img.alicdn.com/imgextra/i3/O1CN01Kmx9dR1wcHOaMMXAk_!!6000000006328-55-tps-28-28.svg",
  88. "scraped_at": "2026-05-08T04:12:42.685742Z",
  89. "discount": 1.0,
  90. "api_key": "LuWDTrBgiu2uIse5_7r0r3nGgyKcr9lZs7gOuP0ePbPukww",
  91. "group_name": "阿里系列模型"
  92. },
  93. {
  94. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/cosyvoice-v3-plus?serviceSite=asia-pacific-china",
  95. "model_name": "cosyvoice-v3-plus",
  96. "prices": {
  97. "语音合成": {
  98. "raw": "2.0",
  99. "unit": "元/每万字符",
  100. "price": 2.0,
  101. "currency": "CNY"
  102. }
  103. },
  104. "model_info": {
  105. "features": {
  106. "cache存储": false,
  107. "前缀续写": false,
  108. "批量推理": false,
  109. "模型体验": false,
  110. "模型调优": false,
  111. "联网搜索": false,
  112. "结构化输出": false,
  113. "function calling": false
  114. },
  115. "model_code": "cosyvoice-v3-plus",
  116. "description": "克隆能力:CosyVoice-v3-plus是通义实验室CosyVoice系列最新版的语音克隆大模型,具有更好的音质和复刻相似度,适用于更专业的场景。仅需提供5-20s的参考音频,即可迅速生成高度相似且听感自然的定制声音。合成能力:CosyVoice-v3-plus是通义实验室CosyVoice系列最新版的语音合成大模型,具有更好的音质和表现力,适用于更专业的场景。该模型支持文本至语音的实时流式合成。",
  117. "display_tags": [
  118. "语音合成"
  119. ],
  120. "input_modalities": [
  121. "Text"
  122. ],
  123. "output_modalities": [
  124. "Audio"
  125. ]
  126. },
  127. "rate_limits": {
  128. "RPM": "180",
  129. "上下文长度": null,
  130. "最大输入长度": null,
  131. "最大输出长度": null
  132. },
  133. "tool_prices": [],
  134. "icon": "https://img.alicdn.com/imgextra/i3/O1CN01Kmx9dR1wcHOaMMXAk_!!6000000006328-55-tps-28-28.svg",
  135. "scraped_at": "2026-05-08T04:12:33.225856Z",
  136. "discount": 1.0,
  137. "api_key": "LuWDTrBgiu2uIse5_7r0r3nGgyKcr9lZs7gOuP0ePbPukww",
  138. "group_name": "阿里系列模型"
  139. },
  140. {
  141. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/deepseek-r1-0528?serviceSite=asia-pacific-china",
  142. "model_name": "deepseek-r1-0528",
  143. "prices": {
  144. "输入": {
  145. "raw": "4",
  146. "unit": "元/每百万tokens",
  147. "price": 4.0,
  148. "currency": "CNY"
  149. },
  150. "输出": {
  151. "raw": "16",
  152. "unit": "元/每百万tokens",
  153. "price": 16.0,
  154. "currency": "CNY"
  155. }
  156. },
  157. "model_info": {
  158. "features": {
  159. "cache存储": false,
  160. "前缀续写": false,
  161. "批量推理": false,
  162. "模型体验": true,
  163. "模型调优": false,
  164. "联网搜索": true,
  165. "结构化输出": false,
  166. "function calling": true
  167. },
  168. "model_code": "deepseek-r1-0528",
  169. "description": "0528为R1模型的小版本升级,相较于旧版 R1,新版在复杂推理任务中的表现有了显著提升。在数学、编程与通用逻辑等多个基准测评中取得了优异成绩。",
  170. "display_tags": [
  171. "深度思考"
  172. ],
  173. "input_modalities": [
  174. "Text"
  175. ],
  176. "output_modalities": [
  177. "Text"
  178. ]
  179. },
  180. "rate_limits": {
  181. "RPM": "60",
  182. "TPM": "100000",
  183. "上下文长度": "128K",
  184. "最大输入长度": "96K",
  185. "最大输出长度": "16K"
  186. },
  187. "tool_prices": [],
  188. "icon": "https://img.alicdn.com/imgextra/i3/O1CN01z34PDh1p053HKpLoW_!!6000000005297-55-tps-28-28.svg",
  189. "scraped_at": "2026-05-08T04:21:48.130979Z",
  190. "discount": 1.0,
  191. "api_key": "LuWDTrBgiu2uIse5_7r0r3nGgyKcr9lZs7gOuP0ePbPukww",
  192. "group_name": "阿里系列模型"
  193. },
  194. {
  195. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/deepseek-r1-distill-qwen-14b?serviceSite=asia-pacific-china",
  196. "model_name": "deepseek-r1-distill-qwen-14b",
  197. "prices": {
  198. "输入": {
  199. "raw": "1",
  200. "unit": "元/每百万tokens",
  201. "price": 1.0,
  202. "currency": "CNY"
  203. },
  204. "输出": {
  205. "raw": "3",
  206. "unit": "元/每百万tokens",
  207. "price": 3.0,
  208. "currency": "CNY"
  209. }
  210. },
  211. "model_info": {
  212. "features": {
  213. "cache存储": false,
  214. "前缀续写": false,
  215. "批量推理": false,
  216. "模型体验": true,
  217. "模型调优": false,
  218. "联网搜索": false,
  219. "结构化输出": false,
  220. "function calling": false
  221. },
  222. "model_code": "deepseek-r1-distill-qwen-14b",
  223. "description": "DeepSeek-R1-Distill-Qwen-14B是一个基于Qwen2.5-14B的蒸馏大型语言模型,使用了 DeepSeek R1 的输出。",
  224. "display_tags": [
  225. "文本生成"
  226. ],
  227. "input_modalities": [
  228. "Text"
  229. ],
  230. "output_modalities": [
  231. "Text"
  232. ]
  233. },
  234. "rate_limits": {
  235. "RPM": "15000",
  236. "TPM": "1200000",
  237. "上下文长度": "32K",
  238. "最大输入长度": "32K",
  239. "最大输出长度": "16K"
  240. },
  241. "tool_prices": [],
  242. "icon": "https://img.alicdn.com/imgextra/i3/O1CN01z34PDh1p053HKpLoW_!!6000000005297-55-tps-28-28.svg",
  243. "scraped_at": "2026-05-08T04:21:38.682540Z",
  244. "discount": 1.0,
  245. "api_key": "LuWDTrBgiu2uIse5_7r0r3nGgyKcr9lZs7gOuP0ePbPukww",
  246. "group_name": "阿里系列模型"
  247. },
  248. {
  249. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/deepseek-r1-distill-qwen-32b?serviceSite=asia-pacific-china",
  250. "model_name": "deepseek-r1-distill-qwen-32b",
  251. "prices": {
  252. "输入": {
  253. "raw": "2",
  254. "unit": "元/每百万tokens",
  255. "price": 2.0,
  256. "currency": "CNY"
  257. },
  258. "输出": {
  259. "raw": "6",
  260. "unit": "元/每百万tokens",
  261. "price": 6.0,
  262. "currency": "CNY"
  263. }
  264. },
  265. "model_info": {
  266. "features": {
  267. "cache存储": false,
  268. "前缀续写": false,
  269. "批量推理": false,
  270. "模型体验": true,
  271. "模型调优": false,
  272. "联网搜索": false,
  273. "结构化输出": false,
  274. "function calling": false
  275. },
  276. "model_code": "deepseek-r1-distill-qwen-32b",
  277. "description": "DeepSeek-R1-Distill-Qwen-32B是一个基于Qwen2.5-32B的蒸馏大型语言模型,使用了 DeepSeek R1 的输出。",
  278. "display_tags": [
  279. "文本生成"
  280. ],
  281. "input_modalities": [
  282. "Text"
  283. ],
  284. "output_modalities": [
  285. "Text"
  286. ]
  287. },
  288. "rate_limits": {
  289. "RPM": "15000",
  290. "TPM": "1200000",
  291. "上下文长度": "32K",
  292. "最大输入长度": "32K",
  293. "最大输出长度": "16K"
  294. },
  295. "tool_prices": [],
  296. "icon": "https://img.alicdn.com/imgextra/i3/O1CN01z34PDh1p053HKpLoW_!!6000000005297-55-tps-28-28.svg",
  297. "scraped_at": "2026-05-08T04:21:27.690675Z",
  298. "discount": 1.0,
  299. "api_key": "LuWDTrBgiu2uIse5_7r0r3nGgyKcr9lZs7gOuP0ePbPukww",
  300. "group_name": "阿里系列模型"
  301. },
  302. {
  303. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/deepseek-r1-distill-qwen-7b?serviceSite=asia-pacific-china",
  304. "model_name": "deepseek-r1-distill-qwen-7b",
  305. "prices": {
  306. "输入": {
  307. "raw": "0.5",
  308. "unit": "元/每百万tokens",
  309. "price": 0.5,
  310. "currency": "CNY"
  311. },
  312. "输出": {
  313. "raw": "1",
  314. "unit": "元/每百万tokens",
  315. "price": 1.0,
  316. "currency": "CNY"
  317. }
  318. },
  319. "model_info": {
  320. "features": {
  321. "cache存储": false,
  322. "前缀续写": false,
  323. "批量推理": false,
  324. "模型体验": true,
  325. "模型调优": false,
  326. "联网搜索": false,
  327. "结构化输出": false,
  328. "function calling": false
  329. },
  330. "model_code": "deepseek-r1-distill-qwen-7b",
  331. "description": "DeepSeek-R1-Distill-Qwen-7B是一个基于Qwen2.5-Math-7B的蒸馏大型语言模型,使用了 DeepSeek R1 的输出。",
  332. "display_tags": [
  333. "文本生成"
  334. ],
  335. "input_modalities": [
  336. "Text"
  337. ],
  338. "output_modalities": [
  339. "Text"
  340. ]
  341. },
  342. "rate_limits": {
  343. "RPM": "15000",
  344. "TPM": "1200000",
  345. "上下文长度": "32K",
  346. "最大输入长度": "32K",
  347. "最大输出长度": "16K"
  348. },
  349. "tool_prices": [],
  350. "icon": "https://img.alicdn.com/imgextra/i3/O1CN01z34PDh1p053HKpLoW_!!6000000005297-55-tps-28-28.svg",
  351. "scraped_at": "2026-05-08T04:21:16.827177Z",
  352. "discount": 1.0,
  353. "api_key": "LuWDTrBgiu2uIse5_7r0r3nGgyKcr9lZs7gOuP0ePbPukww",
  354. "group_name": "阿里系列模型"
  355. },
  356. {
  357. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/deepseek-r1?serviceSite=asia-pacific-china",
  358. "model_name": "deepseek-r1",
  359. "prices": {
  360. "输入": {
  361. "raw": "4",
  362. "unit": "元/每百万tokens",
  363. "price": 4.0,
  364. "currency": "CNY"
  365. },
  366. "输出": {
  367. "raw": "16",
  368. "unit": "元/每百万tokens",
  369. "price": 16.0,
  370. "currency": "CNY"
  371. },
  372. "输入(Batch File)": {
  373. "raw": "2",
  374. "unit": "元/每百万tokens",
  375. "price": 2.0,
  376. "currency": "CNY"
  377. },
  378. "输出(Batch File)": {
  379. "raw": "8",
  380. "unit": "元/每百万tokens",
  381. "price": 8.0,
  382. "currency": "CNY"
  383. },
  384. "输入(缓存命中)": {
  385. "raw": "0.8",
  386. "unit": "元/每百万tokens",
  387. "price": 0.8,
  388. "currency": "CNY"
  389. }
  390. },
  391. "model_info": {
  392. "features": {
  393. "cache存储": true,
  394. "前缀续写": false,
  395. "批量推理": false,
  396. "模型体验": true,
  397. "模型调优": false,
  398. "联网搜索": true,
  399. "结构化输出": false,
  400. "function calling": true
  401. },
  402. "model_code": "deepseek-r1",
  403. "description": "DeepSeek-R1 在后训练阶段大规模使用了强化学习技术,在仅有极少标注数据的情况下,极大提升了模型推理能力。在数学、代码、自然语言推理等任务上,性能较高,能力较强。",
  404. "display_tags": [
  405. "深度思考"
  406. ],
  407. "input_modalities": [
  408. "Text"
  409. ],
  410. "output_modalities": [
  411. "Text"
  412. ]
  413. },
  414. "rate_limits": {
  415. "RPM": "15000",
  416. "TPM": "1200000",
  417. "上下文长度": "128K",
  418. "最大输入长度": "96K",
  419. "最大输出长度": "16K"
  420. },
  421. "tool_prices": [],
  422. "icon": "https://img.alicdn.com/imgextra/i3/O1CN01z34PDh1p053HKpLoW_!!6000000005297-55-tps-28-28.svg",
  423. "scraped_at": "2026-05-08T04:21:59.039400Z",
  424. "discount": 1.0,
  425. "api_key": "LuWDTrBgiu2uIse5_7r0r3nGgyKcr9lZs7gOuP0ePbPukww",
  426. "group_name": "阿里系列模型"
  427. },
  428. {
  429. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/deepseek-v3.1?serviceSite=asia-pacific-china",
  430. "model_name": "deepseek-v3.1",
  431. "prices": {
  432. "输入": {
  433. "raw": "4",
  434. "unit": "元/每百万tokens",
  435. "price": 4.0,
  436. "currency": "CNY"
  437. },
  438. "输出": {
  439. "raw": "12",
  440. "unit": "元/每百万tokens",
  441. "price": 12.0,
  442. "currency": "CNY"
  443. },
  444. "输入(缓存命中)": {
  445. "raw": "0.8",
  446. "unit": "元/每百万tokens",
  447. "price": 0.8,
  448. "currency": "CNY"
  449. }
  450. },
  451. "model_info": {
  452. "features": {
  453. "cache存储": true,
  454. "前缀续写": false,
  455. "批量推理": false,
  456. "模型体验": true,
  457. "模型调优": false,
  458. "联网搜索": true,
  459. "结构化输出": false,
  460. "function calling": true
  461. },
  462. "model_code": "deepseek-v3.1",
  463. "description": "DeepSeek-V3.1为混合推理架构模型,同时支持思考模式与非思考模式,具备更高的推理效率和更强的Agent能力。",
  464. "display_tags": [
  465. "文本生成",
  466. "深度思考"
  467. ],
  468. "input_modalities": [
  469. "Text"
  470. ],
  471. "output_modalities": [
  472. "Text"
  473. ]
  474. },
  475. "rate_limits": {
  476. "RPM": "15000",
  477. "TPM": "1200000",
  478. "上下文长度": "128K",
  479. "最大输入长度": "96K",
  480. "最大输出长度": "64K"
  481. },
  482. "tool_prices": [],
  483. "icon": "https://img.alicdn.com/imgextra/i3/O1CN01z34PDh1p053HKpLoW_!!6000000005297-55-tps-28-28.svg",
  484. "scraped_at": "2026-05-08T04:20:54.483646Z",
  485. "discount": 1.0,
  486. "api_key": "LuWDTrBgiu2uIse5_7r0r3nGgyKcr9lZs7gOuP0ePbPukww",
  487. "group_name": "阿里系列模型"
  488. },
  489. {
  490. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/deepseek-v3.2-exp?serviceSite=asia-pacific-china",
  491. "model_name": "deepseek-v3.2-exp",
  492. "prices": {
  493. "输入": {
  494. "raw": "2",
  495. "unit": "元/每百万tokens",
  496. "price": 2.0,
  497. "currency": "CNY"
  498. },
  499. "输出": {
  500. "raw": "3",
  501. "unit": "元/每百万tokens",
  502. "price": 3.0,
  503. "currency": "CNY"
  504. }
  505. },
  506. "model_info": {
  507. "features": {
  508. "cache存储": false,
  509. "前缀续写": false,
  510. "批量推理": false,
  511. "模型体验": true,
  512. "模型调优": false,
  513. "联网搜索": true,
  514. "结构化输出": false,
  515. "function calling": true
  516. },
  517. "model_code": "deepseek-v3.2-exp",
  518. "description": "引入了DeepSeek Sparse Attention(一种稀疏注意力机制)的实验性质版本,针对长文本的训练和推理效率进行了探索性的优化和验证。",
  519. "display_tags": [
  520. "文本生成",
  521. "深度思考"
  522. ],
  523. "input_modalities": [
  524. "Text"
  525. ],
  526. "output_modalities": [
  527. "Text"
  528. ]
  529. },
  530. "rate_limits": {
  531. "RPM": "15000",
  532. "TPM": "1200000",
  533. "上下文长度": "128K",
  534. "最大输入长度": "96K",
  535. "最大输出长度": "64K"
  536. },
  537. "tool_prices": [],
  538. "icon": "https://img.alicdn.com/imgextra/i3/O1CN01z34PDh1p053HKpLoW_!!6000000005297-55-tps-28-28.svg",
  539. "scraped_at": "2026-05-08T04:20:34.415368Z",
  540. "discount": 1.0,
  541. "api_key": "LuWDTrBgiu2uIse5_7r0r3nGgyKcr9lZs7gOuP0ePbPukww",
  542. "group_name": "阿里系列模型"
  543. },
  544. {
  545. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/deepseek-v3.2?serviceSite=asia-pacific-china",
  546. "model_name": "deepseek-v3.2",
  547. "prices": {
  548. "输入": {
  549. "raw": "2",
  550. "unit": "元/每百万tokens",
  551. "price": 2.0,
  552. "currency": "CNY"
  553. },
  554. "输出": {
  555. "raw": "3",
  556. "unit": "元/每百万tokens",
  557. "price": 3.0,
  558. "currency": "CNY"
  559. },
  560. "显式缓存创建": {
  561. "raw": "2.5",
  562. "unit": "元/每百万tokens",
  563. "price": 2.5,
  564. "currency": "CNY"
  565. },
  566. "显式缓存命中": {
  567. "raw": "0.2",
  568. "note": "原价显示",
  569. "unit": "元/每百万tokens",
  570. "price": 0.2,
  571. "currency": "CNY",
  572. "price_original": 2.0
  573. },
  574. "输入(Batch File)": {
  575. "raw": "1",
  576. "unit": "元/每百万tokens",
  577. "price": 1.0,
  578. "currency": "CNY"
  579. },
  580. "输出(Batch File)": {
  581. "raw": "1.5",
  582. "note": "原价显示",
  583. "unit": "元/每百万tokens",
  584. "price": 1.5,
  585. "currency": "CNY",
  586. "price_original": 3.0
  587. },
  588. "输入(缓存命中)": {
  589. "raw": "0.4",
  590. "unit": "元/每百万tokens",
  591. "price": 0.4,
  592. "currency": "CNY"
  593. }
  594. },
  595. "model_info": {
  596. "features": {
  597. "cache存储": true,
  598. "前缀续写": false,
  599. "批量推理": true,
  600. "模型体验": true,
  601. "模型调优": false,
  602. "联网搜索": true,
  603. "结构化输出": false,
  604. "function calling": true
  605. },
  606. "model_code": "deepseek-v3.2",
  607. "description": "DeepSeek-V3.2是引入DeepSeek Sparse Attention(一种稀疏注意力机制)的正式版模型,也是DeepSeek推出的首个将思考融入工具使用的模型,同时支持思考模式与非思考模式的工具调用。",
  608. "display_tags": [
  609. "深度思考",
  610. "文本生成"
  611. ],
  612. "input_modalities": [
  613. "Text"
  614. ],
  615. "output_modalities": [
  616. "Text"
  617. ]
  618. },
  619. "rate_limits": {
  620. "RPM": "15000",
  621. "TPM": "1200000",
  622. "上下文长度": "128K",
  623. "最大输入长度": "96K",
  624. "最大输出长度": "64K"
  625. },
  626. "tool_prices": [],
  627. "icon": "https://img.alicdn.com/imgextra/i3/O1CN01z34PDh1p053HKpLoW_!!6000000005297-55-tps-28-28.svg",
  628. "scraped_at": "2026-05-08T04:20:43.514347Z",
  629. "discount": 1.0,
  630. "api_key": "LuWDTrBgiu2uIse5_7r0r3nGgyKcr9lZs7gOuP0ePbPukww",
  631. "group_name": "阿里系列模型"
  632. },
  633. {
  634. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/deepseek-v3?serviceSite=asia-pacific-china",
  635. "model_name": "deepseek-v3",
  636. "prices": {
  637. "输入": {
  638. "raw": "2",
  639. "unit": "元/每百万tokens",
  640. "price": 2.0,
  641. "currency": "CNY"
  642. },
  643. "输出": {
  644. "raw": "8",
  645. "unit": "元/每百万tokens",
  646. "price": 8.0,
  647. "currency": "CNY"
  648. },
  649. "输入(Batch File)": {
  650. "raw": "1",
  651. "unit": "元/每百万tokens",
  652. "price": 1.0,
  653. "currency": "CNY"
  654. },
  655. "输出(Batch File)": {
  656. "raw": "4",
  657. "unit": "元/每百万tokens",
  658. "price": 4.0,
  659. "currency": "CNY"
  660. },
  661. "输入(缓存命中)": {
  662. "raw": "0.4",
  663. "unit": "元/每百万tokens",
  664. "price": 0.4,
  665. "currency": "CNY"
  666. }
  667. },
  668. "model_info": {
  669. "features": {
  670. "cache存储": true,
  671. "前缀续写": false,
  672. "批量推理": false,
  673. "模型体验": true,
  674. "模型调优": false,
  675. "联网搜索": true,
  676. "结构化输出": false,
  677. "function calling": true
  678. },
  679. "model_code": "deepseek-v3",
  680. "description": "DeepSeek-V3 为自研 MoE 模型,671B 参数,激活 37B,在 14.8T token 上进行了预训练,在长文本、代码、数学、百科、中文 能力上表现优秀。",
  681. "display_tags": [
  682. "文本生成",
  683. "深度思考"
  684. ],
  685. "input_modalities": [
  686. "Text"
  687. ],
  688. "output_modalities": [
  689. "Text"
  690. ]
  691. },
  692. "rate_limits": {
  693. "RPM": "15000",
  694. "TPM": "1200000",
  695. "上下文长度": "64K",
  696. "最大输入长度": "56K",
  697. "最大输出长度": "8K"
  698. },
  699. "tool_prices": [],
  700. "icon": "https://img.alicdn.com/imgextra/i3/O1CN01z34PDh1p053HKpLoW_!!6000000005297-55-tps-28-28.svg",
  701. "scraped_at": "2026-05-08T04:21:05.452791Z",
  702. "discount": 1.0,
  703. "api_key": "LuWDTrBgiu2uIse5_7r0r3nGgyKcr9lZs7gOuP0ePbPukww",
  704. "group_name": "阿里系列模型"
  705. },
  706. {
  707. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/fun-asr-mtl?serviceSite=asia-pacific-china",
  708. "model_name": "fun-asr-mtl",
  709. "prices": {
  710. "音频时长": {
  711. "raw": "0.00022",
  712. "unit": "元/每秒",
  713. "price": 0.00022,
  714. "currency": "CNY"
  715. }
  716. },
  717. "model_info": {
  718. "features": {
  719. "cache存储": false,
  720. "前缀续写": false,
  721. "批量推理": false,
  722. "模型体验": false,
  723. "模型调优": false,
  724. "联网搜索": false,
  725. "结构化输出": false,
  726. "function calling": false
  727. },
  728. "model_code": "fun-asr-mtl",
  729. "description": "百聆多语言语音识别大模型,支持超过31种语言,支持语种自由切换,出海用户首推,尤其东南亚出海。fun-asr为该模型的升级版本,建议切换使用fun-asr。",
  730. "display_tags": [
  731. "语音识别"
  732. ],
  733. "input_modalities": [
  734. "Audio"
  735. ],
  736. "output_modalities": [
  737. "Text"
  738. ]
  739. },
  740. "rate_limits": {
  741. "RPM": "600",
  742. "上下文长度": null,
  743. "最大输入长度": null,
  744. "最大输出长度": null
  745. },
  746. "tool_prices": [],
  747. "icon": "https://img.alicdn.com/imgextra/i3/O1CN01Kmx9dR1wcHOaMMXAk_!!6000000006328-55-tps-28-28.svg",
  748. "scraped_at": "2026-05-08T04:14:20.599169Z",
  749. "discount": 1.0,
  750. "api_key": "LuWDTrBgiu2uIse5_7r0r3nGgyKcr9lZs7gOuP0ePbPukww",
  751. "group_name": "阿里系列模型"
  752. },
  753. {
  754. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/fun-asr-realtime?serviceSite=asia-pacific-china",
  755. "model_name": "fun-asr-realtime",
  756. "prices": {
  757. "音频时长": {
  758. "raw": "0.00033",
  759. "unit": "元/每秒",
  760. "price": 0.00033,
  761. "currency": "CNY"
  762. }
  763. },
  764. "model_info": {
  765. "features": {
  766. "cache存储": false,
  767. "前缀续写": false,
  768. "批量推理": false,
  769. "模型体验": false,
  770. "模型调优": false,
  771. "联网搜索": false,
  772. "结构化输出": false,
  773. "function calling": false
  774. },
  775. "model_code": "fun-asr-realtime",
  776. "description": "通义实验室新一代端到端语音识别大模型的实时版,基于领先的自研语音技术,具备卓越的上下文感知和高精度语音转写能力。基于端到端架构,Fun-ASR 集成了创新的 RAG 技术,支持大规模热词自定义、敏感/语气词自动过滤、ITN 规范化、标点预测等多维功能,显著提升了整体识别准确率和语境贴合度。同时,Fun-ASR 支持中英文自由切换,多地区方言覆盖,具备更强的噪声鲁棒性,适应多样复杂环境。",
  777. "display_tags": [
  778. "实时语音识别"
  779. ],
  780. "input_modalities": [
  781. "Audio"
  782. ],
  783. "output_modalities": [
  784. "Text"
  785. ]
  786. },
  787. "rate_limits": {
  788. "RPM": "1200",
  789. "上下文长度": null,
  790. "最大输入长度": null,
  791. "最大输出长度": null
  792. },
  793. "tool_prices": [],
  794. "icon": "https://img.alicdn.com/imgextra/i3/O1CN01Kmx9dR1wcHOaMMXAk_!!6000000006328-55-tps-28-28.svg",
  795. "scraped_at": "2026-05-08T04:14:09.859446Z",
  796. "discount": 1.0,
  797. "api_key": "LuWDTrBgiu2uIse5_7r0r3nGgyKcr9lZs7gOuP0ePbPukww",
  798. "group_name": "阿里系列模型"
  799. },
  800. {
  801. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/fun-asr?serviceSite=asia-pacific-china",
  802. "model_name": "fun-asr",
  803. "prices": {
  804. "音频时长": {
  805. "raw": "0.00022",
  806. "unit": "元/每秒",
  807. "price": 0.00022,
  808. "currency": "CNY"
  809. }
  810. },
  811. "model_info": {
  812. "features": {
  813. "cache存储": false,
  814. "前缀续写": false,
  815. "批量推理": false,
  816. "模型体验": false,
  817. "模型调优": false,
  818. "联网搜索": false,
  819. "结构化输出": false,
  820. "function calling": false
  821. },
  822. "model_code": "fun-asr",
  823. "description": "通义百聆新一代语音识别大模型,主打中文、英文、日文语音识别,多地区方言覆盖,具备更强的噪声鲁棒性,适应多样复杂环境,国内用户首推。",
  824. "display_tags": [
  825. "语音识别"
  826. ],
  827. "input_modalities": [
  828. "Audio"
  829. ],
  830. "output_modalities": [
  831. "Text"
  832. ]
  833. },
  834. "rate_limits": {
  835. "RPM": "600",
  836. "上下文长度": null,
  837. "最大输入长度": null,
  838. "最大输出长度": null
  839. },
  840. "tool_prices": [],
  841. "icon": "https://img.alicdn.com/imgextra/i3/O1CN01Kmx9dR1wcHOaMMXAk_!!6000000006328-55-tps-28-28.svg",
  842. "scraped_at": "2026-05-08T04:14:31.598765Z",
  843. "discount": 1.0,
  844. "api_key": "LuWDTrBgiu2uIse5_7r0r3nGgyKcr9lZs7gOuP0ePbPukww",
  845. "group_name": "阿里系列模型"
  846. },
  847. {
  848. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/glm-5.1?serviceSite=asia-pacific-china",
  849. "model_name": "glm-5.1",
  850. "prices": {
  851. "input<=32k": {
  852. "输入": {
  853. "raw": "6",
  854. "unit": "元/每百万tokens",
  855. "price": 6.0,
  856. "currency": "CNY"
  857. },
  858. "输出": {
  859. "raw": "24",
  860. "unit": "元/每百万tokens",
  861. "price": 24.0,
  862. "currency": "CNY"
  863. },
  864. "显式缓存创建": {
  865. "raw": "7.5",
  866. "unit": "元/每百万tokens",
  867. "price": 7.5,
  868. "currency": "CNY"
  869. },
  870. "显式缓存命中": {
  871. "raw": "0.6",
  872. "unit": "元/每百万tokens",
  873. "price": 0.6,
  874. "currency": "CNY"
  875. },
  876. "输入(缓存命中)": {
  877. "raw": "1.2",
  878. "unit": "元/每百万tokens",
  879. "price": 1.2,
  880. "currency": "CNY"
  881. }
  882. },
  883. "32k<input<=200k": {
  884. "输入": {
  885. "raw": "8",
  886. "unit": "元/每百万tokens",
  887. "price": 8.0,
  888. "currency": "CNY"
  889. },
  890. "输出": {
  891. "raw": "28",
  892. "unit": "元/每百万tokens",
  893. "price": 28.0,
  894. "currency": "CNY"
  895. },
  896. "显式缓存创建": {
  897. "raw": "10",
  898. "unit": "元/每百万tokens",
  899. "price": 10.0,
  900. "currency": "CNY"
  901. },
  902. "显式缓存命中": {
  903. "raw": "0.8",
  904. "unit": "元/每百万tokens",
  905. "price": 0.8,
  906. "currency": "CNY"
  907. },
  908. "输入(缓存命中)": {
  909. "raw": "1.6",
  910. "unit": "元/每百万tokens",
  911. "price": 1.6,
  912. "currency": "CNY"
  913. }
  914. }
  915. },
  916. "model_info": {
  917. "features": {
  918. "cache存储": true,
  919. "前缀续写": false,
  920. "批量推理": false,
  921. "模型体验": true,
  922. "模型调优": false,
  923. "联网搜索": false,
  924. "结构化输出": true,
  925. "function calling": true
  926. },
  927. "model_code": "glm-5.1",
  928. "description": "GLM-5.1是智谱AI推出的面向长程任务(Long Horizon Task)设计的模型,总参数744B,支持200K超长上下文,最大输出 128K tokens。拥有强大逻辑推理、长文本理解与代码生成能力、兼顾性能与推理效率;在多任务基准中表现优异,适用于智能交互、企业应用、开发辅助等场景。",
  929. "display_tags": [
  930. "文本生成"
  931. ],
  932. "input_modalities": [
  933. "Text"
  934. ],
  935. "output_modalities": [
  936. "Text"
  937. ]
  938. },
  939. "rate_limits": {
  940. "RPM": "500",
  941. "TPM": "1000000",
  942. "上下文长度": "202K",
  943. "最大输入长度": "202K",
  944. "最大输出长度": "128K"
  945. },
  946. "tool_prices": [],
  947. "icon": "https://img.alicdn.com/imgextra/i3/O1CN01z34PDh1p053HKpLoW_!!6000000005297-55-tps-28-28.svg",
  948. "scraped_at": "2026-05-08T04:10:09.409801Z",
  949. "discount": 1.0,
  950. "api_key": "LuWDW9vEhleOwnehzx8Urygsoykqq8Ec07YesKhUP7vmY6w",
  951. "group_name": "国产顶级模型"
  952. },
  953. {
  954. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/glm-5?serviceSite=asia-pacific-china",
  955. "model_name": "glm-5",
  956. "prices": {
  957. "input<=32k": {
  958. "输入": {
  959. "raw": "4",
  960. "unit": "元/每百万tokens",
  961. "price": 4.0,
  962. "currency": "CNY"
  963. },
  964. "输出": {
  965. "raw": "18",
  966. "unit": "元/每百万tokens",
  967. "price": 18.0,
  968. "currency": "CNY"
  969. },
  970. "输入(缓存命中)": {
  971. "raw": "0.8",
  972. "unit": "元/每百万tokens",
  973. "price": 0.8,
  974. "currency": "CNY"
  975. }
  976. },
  977. "32k<input<=200k": {
  978. "输入": {
  979. "raw": "6",
  980. "unit": "元/每百万tokens",
  981. "price": 6.0,
  982. "currency": "CNY"
  983. },
  984. "输出": {
  985. "raw": "22",
  986. "unit": "元/每百万tokens",
  987. "price": 22.0,
  988. "currency": "CNY"
  989. },
  990. "输入(缓存命中)": {
  991. "raw": "1.2",
  992. "unit": "元/每百万tokens",
  993. "price": 1.2,
  994. "currency": "CNY"
  995. }
  996. }
  997. },
  998. "model_info": {
  999. "features": {
  1000. "cache存储": true,
  1001. "前缀续写": false,
  1002. "批量推理": false,
  1003. "模型体验": true,
  1004. "模型调优": false,
  1005. "联网搜索": false,
  1006. "结构化输出": false,
  1007. "function calling": true
  1008. },
  1009. "model_code": "glm-5",
  1010. "description": "GLM-5是面向Coding与Agent场景的新一代大模型,在复杂系统工程与长程任务中达到开源 SOTA,真实编程体验逼近 Claude Opus 级别;基于 744B 新基座、异步强化学习与稀疏注意力,实现从“写代码”到“写工程”的全面升级。",
  1011. "display_tags": [
  1012. "文本生成"
  1013. ],
  1014. "input_modalities": [
  1015. "Text"
  1016. ],
  1017. "output_modalities": [
  1018. "Text"
  1019. ]
  1020. },
  1021. "rate_limits": {
  1022. "RPM": "500",
  1023. "TPM": "1000000",
  1024. "上下文长度": "198K",
  1025. "最大输入长度": "166K",
  1026. "最大输出长度": "16K",
  1027. "最大思维链长度": "32K"
  1028. },
  1029. "tool_prices": [],
  1030. "icon": "https://img.alicdn.com/imgextra/i3/O1CN01z34PDh1p053HKpLoW_!!6000000005297-55-tps-28-28.svg",
  1031. "scraped_at": "2026-05-08T04:10:23.290343Z",
  1032. "discount": 1.0,
  1033. "api_key": "LuWDW9vEhleOwnehzx8Urygsoykqq8Ec07YesKhUP7vmY6w",
  1034. "group_name": "国产顶级模型"
  1035. },
  1036. {
  1037. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/gte-rerank-v2?serviceSite=asia-pacific-china",
  1038. "model_name": "gte-rerank-v2",
  1039. "prices": {
  1040. "文本输入": {
  1041. "raw": "0.8",
  1042. "unit": "元/每百万tokens",
  1043. "price": 0.8,
  1044. "currency": "CNY"
  1045. }
  1046. },
  1047. "model_info": {
  1048. "features": {
  1049. "cache存储": false,
  1050. "前缀续写": false,
  1051. "批量推理": false,
  1052. "模型体验": false,
  1053. "模型调优": false,
  1054. "联网搜索": false,
  1055. "结构化输出": false,
  1056. "function calling": false
  1057. },
  1058. "model_code": "gte-rerank-v2",
  1059. "description": "gte-rerank-v2是通义实验室研发的多语言文本统一排序模型,面向全球多个主流语种,提供高水平的文本排序服务。通常用于语义检索、RAG等场景,可以简单、有效地提升文本检索的效果。给定查询 (Query) 和一系列候选文本 (documents),模型会根据与查询的语义相关性从高到低对候选文本进行排序。",
  1060. "display_tags": [
  1061. "向量模型"
  1062. ],
  1063. "input_modalities": [
  1064. "Text"
  1065. ],
  1066. "output_modalities": [
  1067. "Text"
  1068. ]
  1069. },
  1070. "rate_limits": {
  1071. "RPM": "5040",
  1072. "TPM": "4980000000",
  1073. "上下文长度": "30K",
  1074. "最大输入长度": "30K",
  1075. "最大输出长度": null
  1076. },
  1077. "tool_prices": [],
  1078. "icon": "https://img.alicdn.com/imgextra/i3/O1CN01Kmx9dR1wcHOaMMXAk_!!6000000006328-55-tps-28-28.svg",
  1079. "scraped_at": "2026-05-08T04:11:05.894988Z",
  1080. "discount": 1.0,
  1081. "api_key": "LuWDTrBgiu2uIse5_7r0r3nGgyKcr9lZs7gOuP0ePbPukww",
  1082. "group_name": "阿里系列模型"
  1083. },
  1084. {
  1085. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/kimi-k2.5?serviceSite=asia-pacific-china",
  1086. "model_name": "kimi-k2.5",
  1087. "prices": {
  1088. "输入": {
  1089. "raw": "4",
  1090. "unit": "元/每百万tokens",
  1091. "price": 4.0,
  1092. "currency": "CNY"
  1093. },
  1094. "输出": {
  1095. "raw": "21",
  1096. "unit": "元/每百万tokens",
  1097. "price": 21.0,
  1098. "currency": "CNY"
  1099. },
  1100. "显式缓存创建": {
  1101. "raw": "5",
  1102. "unit": "元/每百万tokens",
  1103. "price": 5.0,
  1104. "currency": "CNY"
  1105. },
  1106. "显式缓存命中": {
  1107. "raw": "0.4",
  1108. "unit": "元/每百万tokens",
  1109. "price": 0.4,
  1110. "currency": "CNY"
  1111. },
  1112. "输入(缓存命中)": {
  1113. "raw": "0.8",
  1114. "unit": "元/每百万tokens",
  1115. "price": 0.8,
  1116. "currency": "CNY"
  1117. }
  1118. },
  1119. "model_info": {
  1120. "features": {
  1121. "cache存储": true,
  1122. "前缀续写": false,
  1123. "批量推理": false,
  1124. "模型体验": true,
  1125. "模型调优": false,
  1126. "联网搜索": false,
  1127. "结构化输出": false,
  1128. "function calling": true
  1129. },
  1130. "model_code": "kimi-k2.5",
  1131. "description": "kimi-k2.5是月之暗面迄今发布最全能的模型,原生多模态架构设计,同时支持视觉与文本输入、思考与非思考模式、对话与Agent任务。",
  1132. "display_tags": [
  1133. "深度思考",
  1134. "视觉理解",
  1135. "文本生成"
  1136. ],
  1137. "input_modalities": [
  1138. "Text",
  1139. "Image",
  1140. "Video"
  1141. ],
  1142. "output_modalities": [
  1143. "Text"
  1144. ]
  1145. },
  1146. "rate_limits": {
  1147. "RPM": "500",
  1148. "TPM": "1000000",
  1149. "上下文长度": "256K",
  1150. "最大输入长度": "224K",
  1151. "最大输出长度": "16K"
  1152. },
  1153. "tool_prices": [],
  1154. "icon": "https://img.alicdn.com/imgextra/i4/O1CN01KzHLBW1LISVEUaotl_!!6000000001276-2-tps-56-56.png",
  1155. "scraped_at": "2026-05-08T04:09:55.674005Z",
  1156. "discount": 1.0,
  1157. "api_key": "LuWDW9vEhleOwnehzx8Urygsoykqq8Ec07YesKhUP7vmY6w",
  1158. "group_name": "国产顶级模型"
  1159. },
  1160. {
  1161. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/MiniMax-M2.5?serviceSite=asia-pacific-china",
  1162. "model_name": "MiniMax-M2.5",
  1163. "prices": {
  1164. "输入": {
  1165. "raw": "2.1",
  1166. "unit": "元/每百万tokens",
  1167. "price": 2.1,
  1168. "currency": "CNY"
  1169. },
  1170. "输出": {
  1171. "raw": "8.4",
  1172. "unit": "元/每百万tokens",
  1173. "price": 8.4,
  1174. "currency": "CNY"
  1175. },
  1176. "输入(缓存命中)": {
  1177. "raw": "0.42",
  1178. "unit": "元/每百万tokens",
  1179. "price": 0.42,
  1180. "currency": "CNY"
  1181. }
  1182. },
  1183. "model_info": {
  1184. "features": {
  1185. "cache存储": true,
  1186. "前缀续写": false,
  1187. "批量推理": false,
  1188. "模型体验": true,
  1189. "模型调优": false,
  1190. "联网搜索": false,
  1191. "结构化输出": false,
  1192. "function calling": true
  1193. },
  1194. "model_code": "MiniMax-M2.5",
  1195. "description": "MiniMax-M2.5是MiniMax推出的旗舰级开源大模型,经过数十万个真实复杂环境中的大规模强化学习训练,M2.5 在编程、工具调用和搜索、办公等生产力场景都达到或者刷新了行业的 SOTA。",
  1196. "display_tags": [
  1197. "深度思考",
  1198. "文本生成"
  1199. ],
  1200. "input_modalities": [
  1201. "Text"
  1202. ],
  1203. "output_modalities": [
  1204. "Text"
  1205. ]
  1206. },
  1207. "rate_limits": {
  1208. "RPM": "500",
  1209. "TPM": "1000000",
  1210. "上下文长度": "200K",
  1211. "最大输入长度": "192K",
  1212. "最大输出长度": "128K"
  1213. },
  1214. "tool_prices": [],
  1215. "icon": "https://img.alicdn.com/imgextra/i1/O1CN01EFGi131NqT95FPDqc_!!6000000001621-2-tps-56-56.png",
  1216. "scraped_at": "2026-05-08T04:10:34.513784Z",
  1217. "discount": 1.0,
  1218. "api_key": "LuWDW9vEhleOwnehzx8Urygsoykqq8Ec07YesKhUP7vmY6w",
  1219. "group_name": "国产顶级模型"
  1220. },
  1221. {
  1222. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/paraformer-realtime-v1?serviceSite=asia-pacific-china",
  1223. "model_name": "paraformer-realtime-v1",
  1224. "prices": {
  1225. "音频时长": {
  1226. "raw": "0.00024",
  1227. "unit": "元/每秒",
  1228. "price": 0.00024,
  1229. "currency": "CNY"
  1230. }
  1231. },
  1232. "model_info": {
  1233. "features": {
  1234. "cache存储": false,
  1235. "前缀续写": false,
  1236. "批量推理": false,
  1237. "模型体验": true,
  1238. "模型调优": false,
  1239. "联网搜索": false,
  1240. "结构化输出": false,
  1241. "function calling": false
  1242. },
  1243. "model_code": "paraformer-realtime-v1",
  1244. "description": "Paraformer中文实时语音识别模型,支持16kHz及以上采样率的视频直播、会议等实时场景下的语音识别。",
  1245. "display_tags": [
  1246. "实时语音识别"
  1247. ],
  1248. "input_modalities": [
  1249. "Audio"
  1250. ],
  1251. "output_modalities": [
  1252. "Text"
  1253. ]
  1254. },
  1255. "rate_limits": {},
  1256. "tool_prices": [],
  1257. "icon": "https://img.alicdn.com/imgextra/i3/O1CN01Kmx9dR1wcHOaMMXAk_!!6000000006328-55-tps-28-28.svg",
  1258. "scraped_at": "2026-05-08T04:13:58.988293Z",
  1259. "discount": 1.0,
  1260. "api_key": "LuWDTrBgiu2uIse5_7r0r3nGgyKcr9lZs7gOuP0ePbPukww",
  1261. "group_name": "阿里系列模型"
  1262. },
  1263. {
  1264. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/paraformer-realtime-v2?serviceSite=asia-pacific-china",
  1265. "model_name": "paraformer-realtime-v2",
  1266. "prices": {
  1267. "音频时长": {
  1268. "raw": "0.00024",
  1269. "unit": "元/每秒",
  1270. "price": 0.00024,
  1271. "currency": "CNY"
  1272. }
  1273. },
  1274. "model_info": {
  1275. "features": {
  1276. "cache存储": false,
  1277. "前缀续写": false,
  1278. "批量推理": false,
  1279. "模型体验": true,
  1280. "模型调优": false,
  1281. "联网搜索": false,
  1282. "结构化输出": false,
  1283. "function calling": false
  1284. },
  1285. "model_code": "paraformer-realtime-v2",
  1286. "description": "推荐使用 Paraformer最新实时语音识别模型,支持多个语种自由切换的视频直播、会议等实时场景的语音识别。可以通过language_hints参数选择语种获得更准确的识别效果。支持任意采样率。 支持的语言包括:中文(含粤语等各种方言)、英文、日语、韩语。 可支持热词。",
  1287. "display_tags": [
  1288. "实时语音识别"
  1289. ],
  1290. "input_modalities": [
  1291. "Audio"
  1292. ],
  1293. "output_modalities": [
  1294. "Text"
  1295. ]
  1296. },
  1297. "rate_limits": {},
  1298. "tool_prices": [],
  1299. "icon": "https://img.alicdn.com/imgextra/i3/O1CN01Kmx9dR1wcHOaMMXAk_!!6000000006328-55-tps-28-28.svg",
  1300. "scraped_at": "2026-05-08T04:13:47.867249Z",
  1301. "discount": 1.0,
  1302. "api_key": "LuWDTrBgiu2uIse5_7r0r3nGgyKcr9lZs7gOuP0ePbPukww",
  1303. "group_name": "阿里系列模型"
  1304. },
  1305. {
  1306. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/paraformer-v1?serviceSite=asia-pacific-china",
  1307. "model_name": "paraformer-v1",
  1308. "prices": {
  1309. "音频时长": {
  1310. "raw": "0.00008",
  1311. "unit": "元/每秒",
  1312. "price": 0.00008,
  1313. "currency": "CNY"
  1314. }
  1315. },
  1316. "model_info": {
  1317. "features": {
  1318. "cache存储": false,
  1319. "前缀续写": false,
  1320. "批量推理": false,
  1321. "模型体验": true,
  1322. "模型调优": false,
  1323. "联网搜索": false,
  1324. "结构化输出": false,
  1325. "function calling": false
  1326. },
  1327. "model_code": "paraformer-v1",
  1328. "description": "Paraformer中英文语音识别模型,支持16kHz及以上采样率的音频或视频语音识别。",
  1329. "display_tags": [
  1330. "语音识别"
  1331. ],
  1332. "input_modalities": [
  1333. "Audio"
  1334. ],
  1335. "output_modalities": [
  1336. "Text"
  1337. ]
  1338. },
  1339. "rate_limits": {},
  1340. "tool_prices": [],
  1341. "icon": "https://img.alicdn.com/imgextra/i3/O1CN01Kmx9dR1wcHOaMMXAk_!!6000000006328-55-tps-28-28.svg",
  1342. "scraped_at": "2026-05-08T04:13:36.591422Z",
  1343. "discount": 1.0,
  1344. "api_key": "LuWDW9vEhleOwnehzx8Urygsoykqq8Ec07YesKhUP7vmY6w",
  1345. "group_name": "阿里系列模型"
  1346. },
  1347. {
  1348. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/paraformer-v2?serviceSite=asia-pacific-china",
  1349. "model_name": "paraformer-v2",
  1350. "prices": {
  1351. "音频时长": {
  1352. "raw": "0.00008",
  1353. "unit": "元/每秒",
  1354. "price": 0.00008,
  1355. "currency": "CNY"
  1356. }
  1357. },
  1358. "model_info": {
  1359. "features": {
  1360. "cache存储": false,
  1361. "前缀续写": false,
  1362. "批量推理": false,
  1363. "模型体验": true,
  1364. "模型调优": false,
  1365. "联网搜索": false,
  1366. "结构化输出": false,
  1367. "function calling": false
  1368. },
  1369. "model_code": "paraformer-v2",
  1370. "description": "推荐使用 Paraformer最新语音识别模型,支持多个语种的语音识别。可以通过language_hints参数选择语种获得更准确的识别效果,支持任意采样率。 支持的语言包括:中文(含粤语等各种方言)、英文、日语、韩语。可支持热词。",
  1371. "display_tags": [
  1372. "语音识别"
  1373. ],
  1374. "input_modalities": [
  1375. "Audio"
  1376. ],
  1377. "output_modalities": [
  1378. "Text"
  1379. ]
  1380. },
  1381. "rate_limits": {},
  1382. "tool_prices": [],
  1383. "icon": "https://img.alicdn.com/imgextra/i3/O1CN01Kmx9dR1wcHOaMMXAk_!!6000000006328-55-tps-28-28.svg",
  1384. "scraped_at": "2026-05-08T04:13:25.396599Z",
  1385. "discount": 1.0,
  1386. "api_key": "LuWDW9vEhleOwnehzx8Urygsoykqq8Ec07YesKhUP7vmY6w",
  1387. "group_name": "阿里系列模型"
  1388. },
  1389. {
  1390. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen2.5-vl-embedding?serviceSite=asia-pacific-china",
  1391. "model_name": "qwen2.5-vl-embedding",
  1392. "prices": {
  1393. "图片输入": {
  1394. "raw": "1.8",
  1395. "unit": "元/每百万tokens",
  1396. "price": 1.8,
  1397. "currency": "CNY"
  1398. },
  1399. "文本输入": {
  1400. "raw": "0.7",
  1401. "unit": "元/每百万tokens",
  1402. "price": 0.7,
  1403. "currency": "CNY"
  1404. }
  1405. },
  1406. "model_info": {
  1407. "features": {
  1408. "cache存储": false,
  1409. "前缀续写": false,
  1410. "批量推理": false,
  1411. "模型体验": false,
  1412. "模型调优": false,
  1413. "联网搜索": false,
  1414. "结构化输出": false,
  1415. "function calling": false
  1416. },
  1417. "model_code": "qwen2.5-vl-embedding",
  1418. "description": "基于Qwen2.5-VL底座训练的统一多模态向量模型,支持文本、图片、视频单模态/混合模态输入,输出统一表征向量,适用于跨模态检索、图搜、视频检索、图像聚类、复杂多模态信息检索、打标等场景",
  1419. "display_tags": [
  1420. "多模态向量"
  1421. ],
  1422. "input_modalities": [
  1423. "Text",
  1424. "Image"
  1425. ],
  1426. "output_modalities": []
  1427. },
  1428. "rate_limits": {
  1429. "RPM": "1200",
  1430. "TPM": "600000",
  1431. "上下文长度": null,
  1432. "最大输入长度": null,
  1433. "最大输出长度": null
  1434. },
  1435. "tool_prices": [],
  1436. "icon": "https://img.alicdn.com/imgextra/i3/O1CN01Kmx9dR1wcHOaMMXAk_!!6000000006328-55-tps-28-28.svg",
  1437. "scraped_at": "2026-05-08T04:10:56.844247Z",
  1438. "discount": 1.0,
  1439. "api_key": "LuWDW9vEhleOwnehzx8Urygsoykqq8Ec07YesKhUP7vmY6w",
  1440. "group_name": "阿里系列模型"
  1441. },
  1442. {
  1443. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3.5-flash?serviceSite=asia-pacific-china",
  1444. "model_name": "qwen3.5-flash",
  1445. "prices": {
  1446. "256k<input": {
  1447. "输入": {
  1448. "raw": "1.2",
  1449. "unit": "元/每百万tokens",
  1450. "price": 1.2,
  1451. "currency": "CNY"
  1452. },
  1453. "输出": {
  1454. "raw": "12",
  1455. "unit": "元/每百万tokens",
  1456. "price": 12.0,
  1457. "currency": "CNY"
  1458. },
  1459. "显式缓存创建": {
  1460. "raw": "1.5",
  1461. "unit": "元/每百万tokens",
  1462. "price": 1.5,
  1463. "currency": "CNY"
  1464. },
  1465. "显式缓存命中": {
  1466. "raw": "0.12",
  1467. "note": "原价显示",
  1468. "unit": "元/每百万tokens",
  1469. "price": 0.12,
  1470. "currency": "CNY",
  1471. "price_original": 1.2
  1472. },
  1473. "输入(Batch File)": {
  1474. "raw": "0.6",
  1475. "unit": "元/每百万tokens",
  1476. "price": 0.6,
  1477. "currency": "CNY"
  1478. },
  1479. "输出(Batch File)": {
  1480. "raw": "6",
  1481. "note": "原价显示",
  1482. "unit": "元/每百万tokens",
  1483. "price": 6.0,
  1484. "currency": "CNY",
  1485. "price_original": 12.0
  1486. }
  1487. },
  1488. "input<=128k": {
  1489. "输入": {
  1490. "raw": "0.2",
  1491. "unit": "元/每百万tokens",
  1492. "price": 0.2,
  1493. "currency": "CNY"
  1494. },
  1495. "输出": {
  1496. "raw": "2",
  1497. "unit": "元/每百万tokens",
  1498. "price": 2.0,
  1499. "currency": "CNY"
  1500. },
  1501. "显式缓存创建": {
  1502. "raw": "0.25",
  1503. "unit": "元/每百万tokens",
  1504. "price": 0.25,
  1505. "currency": "CNY"
  1506. },
  1507. "显式缓存命中": {
  1508. "raw": "0.02",
  1509. "note": "原价显示",
  1510. "unit": "元/每百万tokens",
  1511. "price": 0.02,
  1512. "currency": "CNY",
  1513. "price_original": 0.2
  1514. },
  1515. "输入(Batch File)": {
  1516. "raw": "0.1",
  1517. "unit": "元/每百万tokens",
  1518. "price": 0.1,
  1519. "currency": "CNY"
  1520. },
  1521. "输出(Batch File)": {
  1522. "raw": "1",
  1523. "note": "原价显示",
  1524. "unit": "元/每百万tokens",
  1525. "price": 1.0,
  1526. "currency": "CNY",
  1527. "price_original": 2.0
  1528. }
  1529. },
  1530. "128k<input<=256k": {
  1531. "输入": {
  1532. "raw": "0.8",
  1533. "unit": "元/每百万tokens",
  1534. "price": 0.8,
  1535. "currency": "CNY"
  1536. },
  1537. "输出": {
  1538. "raw": "8",
  1539. "unit": "元/每百万tokens",
  1540. "price": 8.0,
  1541. "currency": "CNY"
  1542. },
  1543. "显式缓存创建": {
  1544. "raw": "1",
  1545. "unit": "元/每百万tokens",
  1546. "price": 1.0,
  1547. "currency": "CNY"
  1548. },
  1549. "显式缓存命中": {
  1550. "raw": "0.08",
  1551. "note": "原价显示",
  1552. "unit": "元/每百万tokens",
  1553. "price": 0.08,
  1554. "currency": "CNY",
  1555. "price_original": 0.8
  1556. },
  1557. "输入(Batch File)": {
  1558. "raw": "0.4",
  1559. "unit": "元/每百万tokens",
  1560. "price": 0.4,
  1561. "currency": "CNY"
  1562. },
  1563. "输出(Batch File)": {
  1564. "raw": "4",
  1565. "note": "原价显示",
  1566. "unit": "元/每百万tokens",
  1567. "price": 4.0,
  1568. "currency": "CNY",
  1569. "price_original": 8.0
  1570. }
  1571. }
  1572. },
  1573. "model_info": {
  1574. "features": {
  1575. "cache存储": true,
  1576. "前缀续写": true,
  1577. "批量推理": true,
  1578. "模型体验": true,
  1579. "模型调优": false,
  1580. "联网搜索": true,
  1581. "结构化输出": true,
  1582. "function calling": true
  1583. },
  1584. "model_code": "qwen3.5-flash",
  1585. "description": "Qwen3.5原生视觉语言系列Flash模型,展现出与当前顶尖前沿模型相媲美的卓越性能,模型效果在纯文本与多模态方面相较3系列均实现飞跃式进步。",
  1586. "display_tags": [
  1587. "Qwen3.5",
  1588. "深度思考",
  1589. "视觉理解",
  1590. "文本生成"
  1591. ],
  1592. "input_modalities": [
  1593. "Text",
  1594. "Image",
  1595. "Video"
  1596. ],
  1597. "output_modalities": [
  1598. "Text"
  1599. ]
  1600. },
  1601. "rate_limits": {
  1602. "RPM": "30000",
  1603. "TPM": "10000000",
  1604. "上下文长度": "1M",
  1605. "最大输入长度": "991K",
  1606. "最大输出长度": "64K",
  1607. "最大思维链长度": "80K"
  1608. },
  1609. "tool_prices": [
  1610. {
  1611. "unit": "元/千次调用",
  1612. "label": "web_search",
  1613. "price": 4.0,
  1614. "currency": "CNY"
  1615. },
  1616. {
  1617. "note": "限时免费",
  1618. "unit": "元/千次调用",
  1619. "label": "web_extractor",
  1620. "price": 0,
  1621. "currency": "CNY"
  1622. },
  1623. {
  1624. "note": "限时免费",
  1625. "unit": "元/千次调用",
  1626. "label": "code_interpreter",
  1627. "price": 0,
  1628. "currency": "CNY"
  1629. },
  1630. {
  1631. "unit": "元/千次调用",
  1632. "label": "t2i_search",
  1633. "price": 24.0,
  1634. "currency": "CNY"
  1635. },
  1636. {
  1637. "unit": "元/千次调用",
  1638. "label": "i2i_search",
  1639. "price": 48.0,
  1640. "currency": "CNY"
  1641. }
  1642. ],
  1643. "icon": "https://img.alicdn.com/imgextra/i3/O1CN01Kmx9dR1wcHOaMMXAk_!!6000000006328-55-tps-28-28.svg",
  1644. "scraped_at": "2026-05-08T04:08:40.829152Z",
  1645. "discount": 1.0,
  1646. "api_key": "LuWDW9vEhleOwnehzx8Urygsoykqq8Ec07YesKhUP7vmY6w",
  1647. "group_name": "阿里系列模型"
  1648. },
  1649. {
  1650. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3.5-plus?serviceSite=asia-pacific-china",
  1651. "model_name": "qwen3.5-plus",
  1652. "prices": {
  1653. "256k<input": {
  1654. "输入": {
  1655. "raw": "4",
  1656. "unit": "元/每百万tokens",
  1657. "price": 4.0,
  1658. "currency": "CNY"
  1659. },
  1660. "输出": {
  1661. "raw": "24",
  1662. "unit": "元/每百万tokens",
  1663. "price": 24.0,
  1664. "currency": "CNY"
  1665. },
  1666. "显式缓存创建": {
  1667. "raw": "5",
  1668. "unit": "元/每百万tokens",
  1669. "price": 5.0,
  1670. "currency": "CNY"
  1671. },
  1672. "显式缓存命中": {
  1673. "raw": "0.4",
  1674. "note": "原价显示",
  1675. "unit": "元/每百万tokens",
  1676. "price": 0.4,
  1677. "currency": "CNY",
  1678. "price_original": 4.0
  1679. },
  1680. "输入(Batch File)": {
  1681. "raw": "2",
  1682. "unit": "元/每百万tokens",
  1683. "price": 2.0,
  1684. "currency": "CNY"
  1685. },
  1686. "输出(Batch File)": {
  1687. "raw": "12",
  1688. "note": "原价显示",
  1689. "unit": "元/每百万tokens",
  1690. "price": 12.0,
  1691. "currency": "CNY",
  1692. "price_original": 24.0
  1693. }
  1694. },
  1695. "input<=128k": {
  1696. "输入": {
  1697. "raw": "0.8",
  1698. "unit": "元/每百万tokens",
  1699. "price": 0.8,
  1700. "currency": "CNY"
  1701. },
  1702. "输出": {
  1703. "raw": "4.8",
  1704. "unit": "元/每百万tokens",
  1705. "price": 4.8,
  1706. "currency": "CNY"
  1707. },
  1708. "显式缓存创建": {
  1709. "raw": "1",
  1710. "unit": "元/每百万tokens",
  1711. "price": 1.0,
  1712. "currency": "CNY"
  1713. },
  1714. "显式缓存命中": {
  1715. "raw": "0.08",
  1716. "note": "原价显示",
  1717. "unit": "元/每百万tokens",
  1718. "price": 0.08,
  1719. "currency": "CNY",
  1720. "price_original": 0.8
  1721. },
  1722. "输入(Batch File)": {
  1723. "raw": "0.4",
  1724. "unit": "元/每百万tokens",
  1725. "price": 0.4,
  1726. "currency": "CNY"
  1727. },
  1728. "输出(Batch File)": {
  1729. "raw": "2.4",
  1730. "note": "原价显示",
  1731. "unit": "元/每百万tokens",
  1732. "price": 2.4,
  1733. "currency": "CNY",
  1734. "price_original": 4.8
  1735. }
  1736. },
  1737. "128k<input<=256k": {
  1738. "输入": {
  1739. "raw": "2",
  1740. "unit": "元/每百万tokens",
  1741. "price": 2.0,
  1742. "currency": "CNY"
  1743. },
  1744. "输出": {
  1745. "raw": "12",
  1746. "unit": "元/每百万tokens",
  1747. "price": 12.0,
  1748. "currency": "CNY"
  1749. },
  1750. "显式缓存创建": {
  1751. "raw": "2.5",
  1752. "unit": "元/每百万tokens",
  1753. "price": 2.5,
  1754. "currency": "CNY"
  1755. },
  1756. "显式缓存命中": {
  1757. "raw": "0.2",
  1758. "note": "原价显示",
  1759. "unit": "元/每百万tokens",
  1760. "price": 0.2,
  1761. "currency": "CNY",
  1762. "price_original": 2.0
  1763. },
  1764. "输入(Batch File)": {
  1765. "raw": "1",
  1766. "unit": "元/每百万tokens",
  1767. "price": 1.0,
  1768. "currency": "CNY"
  1769. },
  1770. "输出(Batch File)": {
  1771. "raw": "6",
  1772. "note": "原价显示",
  1773. "unit": "元/每百万tokens",
  1774. "price": 6.0,
  1775. "currency": "CNY",
  1776. "price_original": 12.0
  1777. }
  1778. }
  1779. },
  1780. "model_info": {
  1781. "features": {
  1782. "cache存储": true,
  1783. "前缀续写": true,
  1784. "批量推理": true,
  1785. "模型体验": true,
  1786. "模型调优": false,
  1787. "联网搜索": true,
  1788. "结构化输出": true,
  1789. "function calling": true
  1790. },
  1791. "model_code": "qwen3.5-plus",
  1792. "description": "Qwen3.5原生视觉语言系列Plus模型,展现出与当前顶尖前沿模型相媲美的卓越性能,模型效果在纯文本与多模态方面相较3系列均实现飞跃式进步。",
  1793. "display_tags": [
  1794. "Qwen3.5",
  1795. "文本生成",
  1796. "深度思考",
  1797. "视觉理解"
  1798. ],
  1799. "input_modalities": [
  1800. "Text",
  1801. "Image",
  1802. "Video"
  1803. ],
  1804. "output_modalities": [
  1805. "Text"
  1806. ]
  1807. },
  1808. "rate_limits": {
  1809. "RPM": "30000",
  1810. "TPM": "5000000",
  1811. "上下文长度": "1M",
  1812. "最大输入长度": "991K",
  1813. "最大输出长度": "64K",
  1814. "最大思维链长度": "80K"
  1815. },
  1816. "tool_prices": [
  1817. {
  1818. "unit": "元/千次调用",
  1819. "label": "web_search",
  1820. "price": 4.0,
  1821. "currency": "CNY"
  1822. },
  1823. {
  1824. "note": "限时免费",
  1825. "unit": "元/千次调用",
  1826. "label": "web_extractor",
  1827. "price": 0,
  1828. "currency": "CNY"
  1829. },
  1830. {
  1831. "note": "限时免费",
  1832. "unit": "元/千次调用",
  1833. "label": "code_interpreter",
  1834. "price": 0,
  1835. "currency": "CNY"
  1836. },
  1837. {
  1838. "unit": "元/千次调用",
  1839. "label": "t2i_search",
  1840. "price": 24.0,
  1841. "currency": "CNY"
  1842. },
  1843. {
  1844. "unit": "元/千次调用",
  1845. "label": "i2i_search",
  1846. "price": 48.0,
  1847. "currency": "CNY"
  1848. }
  1849. ],
  1850. "icon": "https://img.alicdn.com/imgextra/i3/O1CN01Kmx9dR1wcHOaMMXAk_!!6000000006328-55-tps-28-28.svg",
  1851. "scraped_at": "2026-05-08T04:08:27.060521Z",
  1852. "discount": 1.0,
  1853. "api_key": "LuWDW9vEhleOwnehzx8Urygsoykqq8Ec07YesKhUP7vmY6w",
  1854. "group_name": "阿里系列模型"
  1855. },
  1856. {
  1857. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3.6-plus?serviceSite=asia-pacific-china",
  1858. "model_name": "qwen3.6-plus",
  1859. "prices": {
  1860. "256k<input": {
  1861. "输入": {
  1862. "raw": "8",
  1863. "unit": "元/每百万tokens",
  1864. "price": 8.0,
  1865. "currency": "CNY"
  1866. },
  1867. "输出": {
  1868. "raw": "48",
  1869. "unit": "元/每百万tokens",
  1870. "price": 48.0,
  1871. "currency": "CNY"
  1872. },
  1873. "显式缓存创建": {
  1874. "raw": "10",
  1875. "unit": "元/每百万tokens",
  1876. "price": 10.0,
  1877. "currency": "CNY"
  1878. },
  1879. "显式缓存命中": {
  1880. "raw": "0.8",
  1881. "note": "原价显示",
  1882. "unit": "元/每百万tokens",
  1883. "price": 0.8,
  1884. "currency": "CNY",
  1885. "price_original": 8.0
  1886. },
  1887. "输入(Batch File)": {
  1888. "raw": "4",
  1889. "unit": "元/每百万tokens",
  1890. "price": 4.0,
  1891. "currency": "CNY"
  1892. },
  1893. "输出(Batch File)": {
  1894. "raw": "24",
  1895. "note": "原价显示",
  1896. "unit": "元/每百万tokens",
  1897. "price": 24.0,
  1898. "currency": "CNY",
  1899. "price_original": 48.0
  1900. }
  1901. },
  1902. "input<=256k": {
  1903. "输入": {
  1904. "raw": "2",
  1905. "unit": "元/每百万tokens",
  1906. "price": 2.0,
  1907. "currency": "CNY"
  1908. },
  1909. "输出": {
  1910. "raw": "12",
  1911. "unit": "元/每百万tokens",
  1912. "price": 12.0,
  1913. "currency": "CNY"
  1914. },
  1915. "显式缓存创建": {
  1916. "raw": "2.5",
  1917. "unit": "元/每百万tokens",
  1918. "price": 2.5,
  1919. "currency": "CNY"
  1920. },
  1921. "显式缓存命中": {
  1922. "raw": "0.2",
  1923. "note": "原价显示",
  1924. "unit": "元/每百万tokens",
  1925. "price": 0.2,
  1926. "currency": "CNY",
  1927. "price_original": 2.0
  1928. },
  1929. "输入(Batch File)": {
  1930. "raw": "1",
  1931. "unit": "元/每百万tokens",
  1932. "price": 1.0,
  1933. "currency": "CNY"
  1934. },
  1935. "输出(Batch File)": {
  1936. "raw": "6",
  1937. "note": "原价显示",
  1938. "unit": "元/每百万tokens",
  1939. "price": 6.0,
  1940. "currency": "CNY",
  1941. "price_original": 12.0
  1942. }
  1943. }
  1944. },
  1945. "model_info": {
  1946. "features": {
  1947. "cache存储": true,
  1948. "前缀续写": true,
  1949. "批量推理": true,
  1950. "模型体验": true,
  1951. "模型调优": false,
  1952. "联网搜索": true,
  1953. "结构化输出": true,
  1954. "function calling": true
  1955. },
  1956. "model_code": "qwen3.6-plus",
  1957. "description": "Qwen3.6原生视觉语言系列Plus模型,展现出与当前顶尖前沿模型相媲美的卓越性能,模型效果相较3.5系列显著提升。模型在Agentic coding、前端编程、Vibe coding等代码能力、多模态万物识别、OCR、物体定位等能力上显著增强。",
  1958. "display_tags": [
  1959. "Qwen3.6",
  1960. "深度思考",
  1961. "视觉理解",
  1962. "文本生成"
  1963. ],
  1964. "input_modalities": [
  1965. "Image",
  1966. "Text",
  1967. "Video"
  1968. ],
  1969. "output_modalities": [
  1970. "Text"
  1971. ]
  1972. },
  1973. "rate_limits": {
  1974. "RPM": "30000",
  1975. "TPM": "5000000",
  1976. "上下文长度": "1M",
  1977. "最大输入长度": "991K",
  1978. "最大输出长度": "64K",
  1979. "最大思维链长度": "80K"
  1980. },
  1981. "tool_prices": [
  1982. {
  1983. "unit": "元/千次调用",
  1984. "label": "web_search",
  1985. "price": 4.0,
  1986. "currency": "CNY"
  1987. },
  1988. {
  1989. "note": "限时免费",
  1990. "unit": "元/千次调用",
  1991. "label": "code_interpreter",
  1992. "price": 0,
  1993. "currency": "CNY"
  1994. },
  1995. {
  1996. "note": "限时免费",
  1997. "unit": "元/千次调用",
  1998. "label": "web_extractor",
  1999. "price": 0,
  2000. "currency": "CNY"
  2001. },
  2002. {
  2003. "unit": "元/千次调用",
  2004. "label": "i2i_search",
  2005. "price": 48.0,
  2006. "currency": "CNY"
  2007. },
  2008. {
  2009. "unit": "元/千次调用",
  2010. "label": "t2i_search",
  2011. "price": 24.0,
  2012. "currency": "CNY"
  2013. }
  2014. ],
  2015. "icon": "https://img.alicdn.com/imgextra/i3/O1CN01Kmx9dR1wcHOaMMXAk_!!6000000006328-55-tps-28-28.svg",
  2016. "scraped_at": "2026-05-08T04:08:11.553014Z",
  2017. "discount": 1.0,
  2018. "api_key": "LuWDW9vEhleOwnehzx8Urygsoykqq8Ec07YesKhUP7vmY6w",
  2019. "group_name": "阿里系列模型"
  2020. },
  2021. {
  2022. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-asr-flash-realtime?serviceSite=asia-pacific-china",
  2023. "model_name": "qwen3-asr-flash-realtime",
  2024. "prices": {
  2025. "音频时长": {
  2026. "raw": "0.00033",
  2027. "unit": "元/每秒",
  2028. "price": 0.00033,
  2029. "currency": "CNY"
  2030. }
  2031. },
  2032. "model_info": {
  2033. "features": {
  2034. "cache存储": false,
  2035. "前缀续写": false,
  2036. "批量推理": false,
  2037. "模型体验": false,
  2038. "模型调优": false,
  2039. "联网搜索": false,
  2040. "结构化输出": false,
  2041. "function calling": false
  2042. },
  2043. "model_code": "qwen3-asr-flash-realtime",
  2044. "description": "Qwen3-ASR-Flash的实时版,一款基于大语言模型的高精度、高智能、高鲁棒性的多语种语音识别模型。依托强大的基座模型、海量的文本与多模态数据、千万小时音频数据,Qwen3-ASR-Flash实现了高精度的语音识别功能,能够自动判断语种并准确识别多个语种的语音,在复杂的音频环境下能够保证精确转录。",
  2045. "display_tags": [
  2046. "Qwen3",
  2047. "实时语音识别"
  2048. ],
  2049. "input_modalities": [
  2050. "Audio"
  2051. ],
  2052. "output_modalities": [
  2053. "Text"
  2054. ]
  2055. },
  2056. "rate_limits": {
  2057. "RPM": "1200",
  2058. "上下文长度": null,
  2059. "最大输入长度": null,
  2060. "最大输出长度": null
  2061. },
  2062. "tool_prices": [],
  2063. "icon": "https://img.alicdn.com/imgextra/i3/O1CN01Kmx9dR1wcHOaMMXAk_!!6000000006328-55-tps-28-28.svg",
  2064. "scraped_at": "2026-05-08T04:13:04.931402Z",
  2065. "discount": 1.0,
  2066. "api_key": "LuWDW9vEhleOwnehzx8Urygsoykqq8Ec07YesKhUP7vmY6w",
  2067. "group_name": "阿里系列模型"
  2068. },
  2069. {
  2070. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-asr-flash?serviceSite=asia-pacific-china",
  2071. "model_name": "qwen3-asr-flash",
  2072. "prices": {
  2073. "音频时长": {
  2074. "raw": "0.00022",
  2075. "unit": "元/每秒",
  2076. "price": 0.00022,
  2077. "currency": "CNY"
  2078. }
  2079. },
  2080. "model_info": {
  2081. "features": {
  2082. "cache存储": false,
  2083. "前缀续写": false,
  2084. "批量推理": false,
  2085. "模型体验": false,
  2086. "模型调优": false,
  2087. "联网搜索": false,
  2088. "结构化输出": false,
  2089. "function calling": false
  2090. },
  2091. "model_code": "qwen3-asr-flash",
  2092. "description": "Qwen3-ASR-Flash是一款基于大语言模型的高精度、高智能、高鲁棒性的多语种语音识别模型。依托强大的基座模型、海量的文本与多模态数据、千万小时音频数据,Qwen3-ASR-Flash实现了高精度的语音识别功能,能够自动判断语种并准确识别多个语种的语音,在复杂的音频环境下能够保证精确转录。",
  2093. "display_tags": [
  2094. "Qwen3",
  2095. "语音识别"
  2096. ],
  2097. "input_modalities": [
  2098. "Audio"
  2099. ],
  2100. "output_modalities": [
  2101. "Text"
  2102. ]
  2103. },
  2104. "rate_limits": {
  2105. "RPM": "100",
  2106. "上下文长度": null,
  2107. "最大输入长度": null,
  2108. "最大输出长度": null
  2109. },
  2110. "tool_prices": [],
  2111. "icon": "https://img.alicdn.com/imgextra/i3/O1CN01Kmx9dR1wcHOaMMXAk_!!6000000006328-55-tps-28-28.svg",
  2112. "scraped_at": "2026-05-08T04:13:14.510614Z",
  2113. "discount": 1.0,
  2114. "api_key": "LuWDW9vEhleOwnehzx8Urygsoykqq8Ec07YesKhUP7vmY6w",
  2115. "group_name": "阿里系列模型"
  2116. },
  2117. {
  2118. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-coder-flash?serviceSite=asia-pacific-china",
  2119. "model_name": "qwen3-coder-flash",
  2120. "prices": {
  2121. "256k<input": {
  2122. "输入": {
  2123. "raw": "5",
  2124. "unit": "元/每百万tokens",
  2125. "price": 5.0,
  2126. "currency": "CNY"
  2127. },
  2128. "输出": {
  2129. "raw": "25",
  2130. "unit": "元/每百万tokens",
  2131. "price": 25.0,
  2132. "currency": "CNY"
  2133. },
  2134. "显式缓存创建": {
  2135. "raw": "6.25",
  2136. "unit": "元/每百万tokens",
  2137. "price": 6.25,
  2138. "currency": "CNY"
  2139. },
  2140. "显式缓存命中": {
  2141. "raw": "0.5",
  2142. "unit": "元/每百万tokens",
  2143. "price": 0.5,
  2144. "currency": "CNY"
  2145. },
  2146. "输入(缓存命中)": {
  2147. "raw": "1",
  2148. "unit": "元/每百万tokens",
  2149. "price": 1.0,
  2150. "currency": "CNY"
  2151. }
  2152. },
  2153. "input<=32k": {
  2154. "输入": {
  2155. "raw": "1",
  2156. "unit": "元/每百万tokens",
  2157. "price": 1.0,
  2158. "currency": "CNY"
  2159. },
  2160. "输出": {
  2161. "raw": "4",
  2162. "unit": "元/每百万tokens",
  2163. "price": 4.0,
  2164. "currency": "CNY"
  2165. },
  2166. "显式缓存创建": {
  2167. "raw": "1.25",
  2168. "unit": "元/每百万tokens",
  2169. "price": 1.25,
  2170. "currency": "CNY"
  2171. },
  2172. "显式缓存命中": {
  2173. "raw": "0.1",
  2174. "unit": "元/每百万tokens",
  2175. "price": 0.1,
  2176. "currency": "CNY"
  2177. },
  2178. "输入(缓存命中)": {
  2179. "raw": "0.2",
  2180. "unit": "元/每百万tokens",
  2181. "price": 0.2,
  2182. "currency": "CNY"
  2183. }
  2184. },
  2185. "32k<input<=128k": {
  2186. "输入": {
  2187. "raw": "1.5",
  2188. "unit": "元/每百万tokens",
  2189. "price": 1.5,
  2190. "currency": "CNY"
  2191. },
  2192. "输出": {
  2193. "raw": "6",
  2194. "unit": "元/每百万tokens",
  2195. "price": 6.0,
  2196. "currency": "CNY"
  2197. },
  2198. "显式缓存创建": {
  2199. "raw": "1.875",
  2200. "unit": "元/每百万tokens",
  2201. "price": 1.875,
  2202. "currency": "CNY"
  2203. },
  2204. "显式缓存命中": {
  2205. "raw": "0.15",
  2206. "unit": "元/每百万tokens",
  2207. "price": 0.15,
  2208. "currency": "CNY"
  2209. },
  2210. "输入(缓存命中)": {
  2211. "raw": "0.3",
  2212. "unit": "元/每百万tokens",
  2213. "price": 0.3,
  2214. "currency": "CNY"
  2215. }
  2216. },
  2217. "128k<input<=256k": {
  2218. "输入": {
  2219. "raw": "2.5",
  2220. "unit": "元/每百万tokens",
  2221. "price": 2.5,
  2222. "currency": "CNY"
  2223. },
  2224. "输出": {
  2225. "raw": "10",
  2226. "unit": "元/每百万tokens",
  2227. "price": 10.0,
  2228. "currency": "CNY"
  2229. },
  2230. "显式缓存创建": {
  2231. "raw": "3.125",
  2232. "unit": "元/每百万tokens",
  2233. "price": 3.125,
  2234. "currency": "CNY"
  2235. },
  2236. "显式缓存命中": {
  2237. "raw": "0.25",
  2238. "unit": "元/每百万tokens",
  2239. "price": 0.25,
  2240. "currency": "CNY"
  2241. },
  2242. "输入(缓存命中)": {
  2243. "raw": "0.5",
  2244. "unit": "元/每百万tokens",
  2245. "price": 0.5,
  2246. "currency": "CNY"
  2247. }
  2248. }
  2249. },
  2250. "model_info": {
  2251. "features": {
  2252. "cache存储": true,
  2253. "前缀续写": false,
  2254. "批量推理": false,
  2255. "模型体验": true,
  2256. "模型调优": false,
  2257. "联网搜索": false,
  2258. "结构化输出": false,
  2259. "function calling": true
  2260. },
  2261. "model_code": "qwen3-coder-flash",
  2262. "description": "基于Qwen3的代码生成模型,继承Qwen3-Coder-Plus的coding agent能力,支持多轮工具交互,重点优化仓库级别理解能力并增加工具调用稳定性。",
  2263. "display_tags": [
  2264. "Qwen3",
  2265. "文本生成"
  2266. ],
  2267. "input_modalities": [
  2268. "Text"
  2269. ],
  2270. "output_modalities": [
  2271. "Text"
  2272. ]
  2273. },
  2274. "rate_limits": {
  2275. "RPM": "5000",
  2276. "TPM": "5000000",
  2277. "上下文长度": "1M",
  2278. "最大输入长度": "997K",
  2279. "最大输出长度": "64K"
  2280. },
  2281. "tool_prices": [],
  2282. "icon": "https://img.alicdn.com/imgextra/i3/O1CN01Kmx9dR1wcHOaMMXAk_!!6000000006328-55-tps-28-28.svg",
  2283. "scraped_at": "2026-05-08T04:17:24.141627Z",
  2284. "discount": 1.0,
  2285. "api_key": "LuWDW9vEhleOwnehzx8Urygsoykqq8Ec07YesKhUP7vmY6w",
  2286. "group_name": "阿里系列模型"
  2287. },
  2288. {
  2289. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-coder-next?serviceSite=asia-pacific-china",
  2290. "model_name": "qwen3-coder-next",
  2291. "prices": {
  2292. "input<=32k": {
  2293. "输入": {
  2294. "raw": "1",
  2295. "unit": "元/每百万tokens",
  2296. "price": 1.0,
  2297. "currency": "CNY"
  2298. },
  2299. "输出": {
  2300. "raw": "4",
  2301. "unit": "元/每百万tokens",
  2302. "price": 4.0,
  2303. "currency": "CNY"
  2304. }
  2305. },
  2306. "32k<input<=128k": {
  2307. "输入": {
  2308. "raw": "1.5",
  2309. "unit": "元/每百万tokens",
  2310. "price": 1.5,
  2311. "currency": "CNY"
  2312. },
  2313. "输出": {
  2314. "raw": "6",
  2315. "unit": "元/每百万tokens",
  2316. "price": 6.0,
  2317. "currency": "CNY"
  2318. }
  2319. },
  2320. "128k<input<=256k": {
  2321. "输入": {
  2322. "raw": "2.5",
  2323. "unit": "元/每百万tokens",
  2324. "price": 2.5,
  2325. "currency": "CNY"
  2326. },
  2327. "输出": {
  2328. "raw": "10",
  2329. "unit": "元/每百万tokens",
  2330. "price": 10.0,
  2331. "currency": "CNY"
  2332. }
  2333. }
  2334. },
  2335. "model_info": {
  2336. "features": {
  2337. "cache存储": false,
  2338. "前缀续写": false,
  2339. "批量推理": false,
  2340. "模型体验": true,
  2341. "模型调优": false,
  2342. "联网搜索": false,
  2343. "结构化输出": false,
  2344. "function calling": false
  2345. },
  2346. "model_code": "qwen3-coder-next",
  2347. "description": "Qwen3系列新一代代码生成模型,效果接近Qwen3-Coder-Plus兼具更优性能。模型重点优化仓库级别理解、支持多轮工具交互、提升对于agentic coding类工具的适配能力。",
  2348. "display_tags": [
  2349. "Qwen3",
  2350. "文本生成"
  2351. ],
  2352. "input_modalities": [
  2353. "Text"
  2354. ],
  2355. "output_modalities": [
  2356. "Text"
  2357. ]
  2358. },
  2359. "rate_limits": {
  2360. "RPM": "600",
  2361. "TPM": "1000000",
  2362. "上下文长度": "256K",
  2363. "最大输入长度": "200K",
  2364. "最大输出长度": "64K"
  2365. },
  2366. "tool_prices": [],
  2367. "icon": "https://img.alicdn.com/imgextra/i3/O1CN01Kmx9dR1wcHOaMMXAk_!!6000000006328-55-tps-28-28.svg",
  2368. "scraped_at": "2026-05-08T04:09:11.747697Z",
  2369. "discount": 1.0,
  2370. "api_key": "LuWDW9vEhleOwnehzx8Urygsoykqq8Ec07YesKhUP7vmY6w",
  2371. "group_name": "阿里系列模型"
  2372. },
  2373. {
  2374. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-coder-plus?serviceSite=asia-pacific-china",
  2375. "model_name": "qwen3-coder-plus",
  2376. "prices": {
  2377. "256k<input": {
  2378. "输入": {
  2379. "raw": "20",
  2380. "unit": "元/每百万tokens",
  2381. "price": 20.0,
  2382. "currency": "CNY"
  2383. },
  2384. "输出": {
  2385. "raw": "200",
  2386. "unit": "元/每百万tokens",
  2387. "price": 200.0,
  2388. "currency": "CNY"
  2389. },
  2390. "显式缓存创建": {
  2391. "raw": "25",
  2392. "unit": "元/每百万tokens",
  2393. "price": 25.0,
  2394. "currency": "CNY"
  2395. },
  2396. "显式缓存命中": {
  2397. "raw": "2",
  2398. "unit": "元/每百万tokens",
  2399. "price": 2.0,
  2400. "currency": "CNY"
  2401. },
  2402. "输入(缓存命中)": {
  2403. "raw": "4",
  2404. "unit": "元/每百万tokens",
  2405. "price": 4.0,
  2406. "currency": "CNY"
  2407. }
  2408. },
  2409. "input<=32k": {
  2410. "输入": {
  2411. "raw": "4",
  2412. "unit": "元/每百万tokens",
  2413. "price": 4.0,
  2414. "currency": "CNY"
  2415. },
  2416. "输出": {
  2417. "raw": "16",
  2418. "unit": "元/每百万tokens",
  2419. "price": 16.0,
  2420. "currency": "CNY"
  2421. },
  2422. "显式缓存创建": {
  2423. "raw": "5",
  2424. "unit": "元/每百万tokens",
  2425. "price": 5.0,
  2426. "currency": "CNY"
  2427. },
  2428. "显式缓存命中": {
  2429. "raw": "0.4",
  2430. "unit": "元/每百万tokens",
  2431. "price": 0.4,
  2432. "currency": "CNY"
  2433. },
  2434. "输入(缓存命中)": {
  2435. "raw": "0.8",
  2436. "unit": "元/每百万tokens",
  2437. "price": 0.8,
  2438. "currency": "CNY"
  2439. }
  2440. },
  2441. "32k<input<=128k": {
  2442. "输入": {
  2443. "raw": "6",
  2444. "unit": "元/每百万tokens",
  2445. "price": 6.0,
  2446. "currency": "CNY"
  2447. },
  2448. "输出": {
  2449. "raw": "24",
  2450. "unit": "元/每百万tokens",
  2451. "price": 24.0,
  2452. "currency": "CNY"
  2453. },
  2454. "显式缓存创建": {
  2455. "raw": "7.5",
  2456. "unit": "元/每百万tokens",
  2457. "price": 7.5,
  2458. "currency": "CNY"
  2459. },
  2460. "显式缓存命中": {
  2461. "raw": "0.6",
  2462. "unit": "元/每百万tokens",
  2463. "price": 0.6,
  2464. "currency": "CNY"
  2465. },
  2466. "输入(缓存命中)": {
  2467. "raw": "1.2",
  2468. "unit": "元/每百万tokens",
  2469. "price": 1.2,
  2470. "currency": "CNY"
  2471. }
  2472. },
  2473. "128k<input<=256k": {
  2474. "输入": {
  2475. "raw": "10",
  2476. "unit": "元/每百万tokens",
  2477. "price": 10.0,
  2478. "currency": "CNY"
  2479. },
  2480. "输出": {
  2481. "raw": "40",
  2482. "unit": "元/每百万tokens",
  2483. "price": 40.0,
  2484. "currency": "CNY"
  2485. },
  2486. "显式缓存创建": {
  2487. "raw": "12.5",
  2488. "unit": "元/每百万tokens",
  2489. "price": 12.5,
  2490. "currency": "CNY"
  2491. },
  2492. "显式缓存命中": {
  2493. "raw": "1",
  2494. "unit": "元/每百万tokens",
  2495. "price": 1.0,
  2496. "currency": "CNY"
  2497. },
  2498. "输入(缓存命中)": {
  2499. "raw": "2",
  2500. "unit": "元/每百万tokens",
  2501. "price": 2.0,
  2502. "currency": "CNY"
  2503. }
  2504. }
  2505. },
  2506. "model_info": {
  2507. "features": {
  2508. "cache存储": true,
  2509. "前缀续写": false,
  2510. "批量推理": false,
  2511. "模型体验": true,
  2512. "模型调优": false,
  2513. "联网搜索": false,
  2514. "结构化输出": false,
  2515. "function calling": true
  2516. },
  2517. "model_code": "qwen3-coder-plus",
  2518. "description": "基于Qwen3的代码生成模型,具有强大的Coding Agent能力,擅长工具调用和环境交互,能够实现自主编程、代码能力卓越的同时兼具通用能力。",
  2519. "display_tags": [
  2520. "Qwen3",
  2521. "文本生成"
  2522. ],
  2523. "input_modalities": [
  2524. "Text"
  2525. ],
  2526. "output_modalities": [
  2527. "Text"
  2528. ]
  2529. },
  2530. "rate_limits": {
  2531. "RPM": "5000",
  2532. "TPM": "5000000",
  2533. "上下文长度": "1M",
  2534. "最大输入长度": "997K",
  2535. "最大输出长度": "64K"
  2536. },
  2537. "tool_prices": [],
  2538. "icon": "https://img.alicdn.com/imgextra/i3/O1CN01Kmx9dR1wcHOaMMXAk_!!6000000006328-55-tps-28-28.svg",
  2539. "scraped_at": "2026-05-08T04:17:07.246785Z",
  2540. "discount": 1.0,
  2541. "api_key": "LuWDW9vEhleOwnehzx8Urygsoykqq8Ec07YesKhUP7vmY6w",
  2542. "group_name": "阿里系列模型"
  2543. },
  2544. {
  2545. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-max?serviceSite=asia-pacific-china",
  2546. "model_name": "qwen3-max",
  2547. "prices": {
  2548. "input<=32k": {
  2549. "输入": {
  2550. "raw": "2.5",
  2551. "unit": "元/每百万tokens",
  2552. "price": 2.5,
  2553. "currency": "CNY"
  2554. },
  2555. "输出": {
  2556. "raw": "10",
  2557. "unit": "元/每百万tokens",
  2558. "price": 10.0,
  2559. "currency": "CNY"
  2560. },
  2561. "显式缓存创建": {
  2562. "raw": "3.125",
  2563. "unit": "元/每百万tokens",
  2564. "price": 3.125,
  2565. "currency": "CNY"
  2566. },
  2567. "显式缓存命中": {
  2568. "raw": "0.25",
  2569. "note": "原价显示",
  2570. "unit": "元/每百万tokens",
  2571. "price": 0.25,
  2572. "currency": "CNY",
  2573. "price_original": 2.5
  2574. },
  2575. "输入(Batch File)": {
  2576. "raw": "1.25",
  2577. "unit": "元/每百万tokens",
  2578. "price": 1.25,
  2579. "currency": "CNY"
  2580. },
  2581. "输出(Batch File)": {
  2582. "raw": "5",
  2583. "note": "原价显示",
  2584. "unit": "元/每百万tokens",
  2585. "price": 5.0,
  2586. "currency": "CNY",
  2587. "price_original": 10.0
  2588. },
  2589. "输入(缓存命中)": {
  2590. "raw": "0.5",
  2591. "unit": "元/每百万tokens",
  2592. "price": 0.5,
  2593. "currency": "CNY"
  2594. }
  2595. },
  2596. "32k<input<=128k": {
  2597. "输入": {
  2598. "raw": "4",
  2599. "unit": "元/每百万tokens",
  2600. "price": 4.0,
  2601. "currency": "CNY"
  2602. },
  2603. "输出": {
  2604. "raw": "16",
  2605. "unit": "元/每百万tokens",
  2606. "price": 16.0,
  2607. "currency": "CNY"
  2608. },
  2609. "显式缓存创建": {
  2610. "raw": "5",
  2611. "unit": "元/每百万tokens",
  2612. "price": 5.0,
  2613. "currency": "CNY"
  2614. },
  2615. "显式缓存命中": {
  2616. "raw": "0.4",
  2617. "note": "原价显示",
  2618. "unit": "元/每百万tokens",
  2619. "price": 0.4,
  2620. "currency": "CNY",
  2621. "price_original": 4.0
  2622. },
  2623. "输入(Batch File)": {
  2624. "raw": "2",
  2625. "unit": "元/每百万tokens",
  2626. "price": 2.0,
  2627. "currency": "CNY"
  2628. },
  2629. "输出(Batch File)": {
  2630. "raw": "8",
  2631. "note": "原价显示",
  2632. "unit": "元/每百万tokens",
  2633. "price": 8.0,
  2634. "currency": "CNY",
  2635. "price_original": 16.0
  2636. },
  2637. "输入(缓存命中)": {
  2638. "raw": "0.8",
  2639. "unit": "元/每百万tokens",
  2640. "price": 0.8,
  2641. "currency": "CNY"
  2642. }
  2643. },
  2644. "128k<input<=256k": {
  2645. "输入": {
  2646. "raw": "7",
  2647. "unit": "元/每百万tokens",
  2648. "price": 7.0,
  2649. "currency": "CNY"
  2650. },
  2651. "输出": {
  2652. "raw": "28",
  2653. "unit": "元/每百万tokens",
  2654. "price": 28.0,
  2655. "currency": "CNY"
  2656. },
  2657. "显式缓存创建": {
  2658. "raw": "8.75",
  2659. "unit": "元/每百万tokens",
  2660. "price": 8.75,
  2661. "currency": "CNY"
  2662. },
  2663. "显式缓存命中": {
  2664. "raw": "0.7",
  2665. "note": "原价显示",
  2666. "unit": "元/每百万tokens",
  2667. "price": 0.7,
  2668. "currency": "CNY",
  2669. "price_original": 7.0
  2670. },
  2671. "输入(Batch File)": {
  2672. "raw": "3.5",
  2673. "unit": "元/每百万tokens",
  2674. "price": 3.5,
  2675. "currency": "CNY"
  2676. },
  2677. "输出(Batch File)": {
  2678. "raw": "14",
  2679. "note": "原价显示",
  2680. "unit": "元/每百万tokens",
  2681. "price": 14.0,
  2682. "currency": "CNY",
  2683. "price_original": 28.0
  2684. },
  2685. "输入(缓存命中)": {
  2686. "raw": "1.4",
  2687. "unit": "元/每百万tokens",
  2688. "price": 1.4,
  2689. "currency": "CNY"
  2690. }
  2691. }
  2692. },
  2693. "model_info": {
  2694. "features": {
  2695. "cache存储": true,
  2696. "前缀续写": true,
  2697. "批量推理": true,
  2698. "模型体验": true,
  2699. "模型调优": false,
  2700. "联网搜索": true,
  2701. "结构化输出": true,
  2702. "function calling": true
  2703. },
  2704. "model_code": "qwen3-max",
  2705. "description": "千问3系列Max模型,相较preview版本在智能体编程与工具调用方向进行了专项升级。本次发布的正式版模型达到领域SOTA水平,适配场景更加复杂的智能体需求。",
  2706. "display_tags": [
  2707. "Qwen3",
  2708. "文本生成",
  2709. "深度思考"
  2710. ],
  2711. "input_modalities": [
  2712. "Text"
  2713. ],
  2714. "output_modalities": [
  2715. "Text"
  2716. ]
  2717. },
  2718. "rate_limits": {
  2719. "RPM": "30000",
  2720. "TPM": "5000000",
  2721. "上下文长度": "256K",
  2722. "最大输入长度": "252K",
  2723. "最大输出长度": "64K",
  2724. "最大思维链长度": "80K"
  2725. },
  2726. "tool_prices": [
  2727. {
  2728. "unit": "元/千次调用",
  2729. "label": "search_strategy:agent",
  2730. "price": 4.0,
  2731. "currency": "CNY"
  2732. },
  2733. {
  2734. "note": "限时优惠",
  2735. "unit": "元/千次调用",
  2736. "label": "search_strategy:agent_max",
  2737. "price": 4.0,
  2738. "currency": "CNY"
  2739. },
  2740. {
  2741. "unit": "元/千次调用",
  2742. "label": "web_search",
  2743. "price": 4.0,
  2744. "currency": "CNY"
  2745. },
  2746. {
  2747. "note": "限时免费",
  2748. "unit": "元/千次调用",
  2749. "label": "code_interpreter",
  2750. "price": 0,
  2751. "currency": "CNY"
  2752. },
  2753. {
  2754. "note": "限时免费",
  2755. "unit": "元/千次调用",
  2756. "label": "web_extractor",
  2757. "price": 0,
  2758. "currency": "CNY"
  2759. }
  2760. ],
  2761. "icon": "https://img.alicdn.com/imgextra/i3/O1CN01Kmx9dR1wcHOaMMXAk_!!6000000006328-55-tps-28-28.svg",
  2762. "scraped_at": "2026-05-08T04:08:56.321986Z",
  2763. "discount": 1.0,
  2764. "api_key": "LuWDW9vEhleOwnehzx8Urygsoykqq8Ec07YesKhUP7vmY6w",
  2765. "group_name": "阿里系列模型"
  2766. },
  2767. {
  2768. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-omni-flash-realtime?serviceSite=asia-pacific-china",
  2769. "model_name": "qwen3-omni-flash-realtime",
  2770. "prices": {
  2771. "输入:文本": {
  2772. "raw": "2.2",
  2773. "unit": "元/每百万tokens",
  2774. "price": 2.2,
  2775. "currency": "CNY"
  2776. },
  2777. "输入:音频": {
  2778. "raw": "18.9",
  2779. "unit": "元/每百万tokens",
  2780. "price": 18.9,
  2781. "currency": "CNY"
  2782. },
  2783. "输入:图片/视频": {
  2784. "raw": "3.9",
  2785. "unit": "元/每百万tokens",
  2786. "price": 3.9,
  2787. "currency": "CNY"
  2788. },
  2789. "输出:文本(输入仅包含文本时)": {
  2790. "raw": "8.3",
  2791. "unit": "元/每百万tokens",
  2792. "price": 8.3,
  2793. "currency": "CNY"
  2794. },
  2795. "输出:文本+音频(输出的文本不计费)": {
  2796. "raw": "75.1",
  2797. "unit": "元/每百万tokens",
  2798. "price": 75.1,
  2799. "currency": "CNY"
  2800. },
  2801. "输出:文本(输入包含图片/音频/视频时)": {
  2802. "raw": "15.2",
  2803. "unit": "元/每百万tokens",
  2804. "price": 15.2,
  2805. "currency": "CNY"
  2806. }
  2807. },
  2808. "model_info": {
  2809. "features": {
  2810. "cache存储": false,
  2811. "前缀续写": false,
  2812. "批量推理": false,
  2813. "模型体验": false,
  2814. "模型调优": false,
  2815. "联网搜索": false,
  2816. "结构化输出": false,
  2817. "function calling": false
  2818. },
  2819. "model_code": "qwen3-omni-flash-realtime",
  2820. "description": "Qwen3-Omni-Flash-Realtime多模态大模型的实时版,基于Thinker–Talker混合专家(MoE)架构,支持文本、图像、音频、视频的高效理解与语音生成能力,可进行119种语言文本交互和20种语言语音交互,生成类人语音实现跨语言精准沟通。模型具备强大指令跟随与系统提示定制功能,灵活适配对话风格与角色设定,广泛应用于文本创作、语音助手、多媒体分析等场景,提供自然流畅的多模态交互体验。",
  2821. "display_tags": [
  2822. "Qwen3",
  2823. "Realtime-Omni"
  2824. ],
  2825. "input_modalities": [
  2826. "Text",
  2827. "Image",
  2828. "Video",
  2829. "Audio"
  2830. ],
  2831. "output_modalities": [
  2832. "Text",
  2833. "Audio"
  2834. ]
  2835. },
  2836. "rate_limits": {
  2837. "RPM": "60",
  2838. "TPM": "100000",
  2839. "上下文长度": "64K",
  2840. "最大输入长度": "48K",
  2841. "最大输出长度": "16K"
  2842. },
  2843. "tool_prices": [],
  2844. "icon": "https://img.alicdn.com/imgextra/i3/O1CN01Kmx9dR1wcHOaMMXAk_!!6000000006328-55-tps-28-28.svg",
  2845. "scraped_at": "2026-05-08T04:16:39.975990Z",
  2846. "discount": 1.0,
  2847. "api_key": "LuWDW9vEhleOwnehzx8Urygsoykqq8Ec07YesKhUP7vmY6w",
  2848. "group_name": "阿里系列模型"
  2849. },
  2850. {
  2851. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-omni-flash?serviceSite=asia-pacific-china",
  2852. "model_name": "qwen3-omni-flash",
  2853. "prices": {
  2854. "输入:文本": {
  2855. "raw": "1.8",
  2856. "unit": "元/每百万tokens",
  2857. "price": 1.8,
  2858. "currency": "CNY"
  2859. },
  2860. "输入:音频": {
  2861. "raw": "15.8",
  2862. "unit": "元/每百万tokens",
  2863. "price": 15.8,
  2864. "currency": "CNY"
  2865. },
  2866. "输入:图片/视频": {
  2867. "raw": "3.3",
  2868. "unit": "元/每百万tokens",
  2869. "price": 3.3,
  2870. "currency": "CNY"
  2871. },
  2872. "输出:文本(输入仅包含文本时)": {
  2873. "raw": "6.9",
  2874. "unit": "元/每百万tokens",
  2875. "price": 6.9,
  2876. "currency": "CNY"
  2877. },
  2878. "输出:文本+音频(输出的文本不计费)": {
  2879. "raw": "62.6",
  2880. "unit": "元/每百万tokens",
  2881. "price": 62.6,
  2882. "currency": "CNY"
  2883. },
  2884. "输出:文本(输入包含图片/音频/视频时)": {
  2885. "raw": "12.7",
  2886. "unit": "元/每百万tokens",
  2887. "price": 12.7,
  2888. "currency": "CNY"
  2889. }
  2890. },
  2891. "model_info": {
  2892. "features": {
  2893. "cache存储": false,
  2894. "前缀续写": false,
  2895. "批量推理": false,
  2896. "模型体验": true,
  2897. "模型调优": false,
  2898. "联网搜索": false,
  2899. "结构化输出": false,
  2900. "function calling": false
  2901. },
  2902. "model_code": "qwen3-omni-flash",
  2903. "description": "Qwen3-Omni-Flash多模态大模型,基于Thinker–Talker混合专家(MoE)架构,支持文本、图像、音频、视频的高效理解与语音生成能力,可进行119种语言文本交互和20种语言语音交互,生成类人语音实现跨语言精准沟通。模型具备强大指令跟随与系统提示定制功能,灵活适配对话风格与角色设定,广泛应用于文本创作、语音助手、多媒体分析等场景,提供自然流畅的多模态交互体验。",
  2904. "display_tags": [
  2905. "Qwen3",
  2906. "Multimodal-Omni"
  2907. ],
  2908. "input_modalities": [
  2909. "Text",
  2910. "Image",
  2911. "Audio",
  2912. "Video"
  2913. ],
  2914. "output_modalities": [
  2915. "Text",
  2916. "Audio"
  2917. ]
  2918. },
  2919. "rate_limits": {
  2920. "RPM": "60",
  2921. "TPM": "100000",
  2922. "上下文长度": "64K",
  2923. "最大输入长度": "48K",
  2924. "最大输出长度": "16K",
  2925. "最大思维链长度": "32K"
  2926. },
  2927. "tool_prices": [],
  2928. "icon": "https://img.alicdn.com/imgextra/i3/O1CN01Kmx9dR1wcHOaMMXAk_!!6000000006328-55-tps-28-28.svg",
  2929. "scraped_at": "2026-05-08T04:16:50.960397Z",
  2930. "discount": 1.0,
  2931. "api_key": "LuWDW9vEhleOwnehzx8Urygsoykqq8Ec07YesKhUP7vmY6w",
  2932. "group_name": "阿里系列模型"
  2933. },
  2934. {
  2935. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-rerank?serviceSite=asia-pacific-china",
  2936. "model_name": "qwen3-rerank",
  2937. "prices": {
  2938. "文本输入": {
  2939. "raw": "0.5",
  2940. "unit": "元/每百万tokens",
  2941. "price": 0.5,
  2942. "currency": "CNY"
  2943. }
  2944. },
  2945. "model_info": {
  2946. "features": {
  2947. "cache存储": false,
  2948. "前缀续写": false,
  2949. "批量推理": false,
  2950. "模型体验": false,
  2951. "模型调优": false,
  2952. "联网搜索": false,
  2953. "结构化输出": false,
  2954. "function calling": false
  2955. },
  2956. "model_code": "qwen3-rerank",
  2957. "description": "基于Qwen LLM底座训练的文本排序模型,对输入的Query和候选Docs进行相关性排序,支持100+语种和长文本输入,适用于文本检索、RAG等场景,效果对齐开源Qwen3-Rerank系列模型",
  2958. "display_tags": [
  2959. "向量模型"
  2960. ],
  2961. "input_modalities": [
  2962. "Text"
  2963. ],
  2964. "output_modalities": [
  2965. "Text"
  2966. ]
  2967. },
  2968. "rate_limits": {
  2969. "RPM": "5400",
  2970. "TPM": "5000000000",
  2971. "上下文长度": "30K",
  2972. "最大输入长度": "30K",
  2973. "最大输出长度": null
  2974. },
  2975. "tool_prices": [],
  2976. "icon": "https://img.alicdn.com/imgextra/i3/O1CN01Kmx9dR1wcHOaMMXAk_!!6000000006328-55-tps-28-28.svg",
  2977. "scraped_at": "2026-05-08T04:10:45.732581Z",
  2978. "discount": 1.0,
  2979. "api_key": "LuWDW9vEhleOwnehzx8Urygsoykqq8Ec07YesKhUP7vmY6w",
  2980. "group_name": "阿里系列模型"
  2981. },
  2982. {
  2983. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-tts-flash-realtime?serviceSite=asia-pacific-china",
  2984. "model_name": "qwen3-tts-flash-realtime",
  2985. "prices": {
  2986. "语音合成": {
  2987. "raw": "1",
  2988. "unit": "元/每万字符",
  2989. "price": 1.0,
  2990. "currency": "CNY"
  2991. }
  2992. },
  2993. "model_info": {
  2994. "features": {
  2995. "cache存储": false,
  2996. "前缀续写": false,
  2997. "批量推理": false,
  2998. "模型体验": false,
  2999. "模型调优": false,
  3000. "联网搜索": false,
  3001. "结构化输出": false,
  3002. "function calling": false
  3003. },
  3004. "model_code": "qwen3-tts-flash-realtime",
  3005. "description": "Qwen3-TTS-Flash-Realtime模型是通义实验室最新的实时语音合成大模型,不仅拥有17种高表现力的拟人音色,且能低延迟高稳定地实时合成音频;同时支持多种语言,方言,支持同一音色多语言输出。该模型经过海量数据训练,合成音频可以根据文本自适应调节语气,对复杂文本合成也有较好的处理能力。",
  3006. "display_tags": [
  3007. "Qwen3",
  3008. "语音合成"
  3009. ],
  3010. "input_modalities": [
  3011. "Text"
  3012. ],
  3013. "output_modalities": [
  3014. "Audio"
  3015. ]
  3016. },
  3017. "rate_limits": {
  3018. "RPM": "180",
  3019. "上下文长度": null,
  3020. "最大输入长度": null,
  3021. "最大输出长度": null
  3022. },
  3023. "tool_prices": [],
  3024. "icon": "https://img.alicdn.com/imgextra/i3/O1CN01Kmx9dR1wcHOaMMXAk_!!6000000006328-55-tps-28-28.svg",
  3025. "scraped_at": "2026-05-08T04:12:11.254337Z",
  3026. "discount": 1.0,
  3027. "api_key": "LuWDW9vEhleOwnehzx8Urygsoykqq8Ec07YesKhUP7vmY6w",
  3028. "group_name": "阿里系列模型"
  3029. },
  3030. {
  3031. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-tts-flash?serviceSite=asia-pacific-china",
  3032. "model_name": "qwen3-tts-flash",
  3033. "prices": {
  3034. "语音合成": {
  3035. "raw": "0.8",
  3036. "unit": "元/每万字符",
  3037. "price": 0.8,
  3038. "currency": "CNY"
  3039. }
  3040. },
  3041. "model_info": {
  3042. "features": {
  3043. "cache存储": false,
  3044. "前缀续写": false,
  3045. "批量推理": false,
  3046. "模型体验": true,
  3047. "模型调优": false,
  3048. "联网搜索": false,
  3049. "结构化输出": false,
  3050. "function calling": false
  3051. },
  3052. "model_code": "qwen3-tts-flash",
  3053. "description": "Qwen3-TTS-Flash模型是通义实验室最新推出的离线语音合成大模型,不仅拥有17种高表现力的拟人音色,且能低延迟高稳定地合成音频;同时支持多种语言,方言,支持同一音色多语言输出。该模型经过海量数据训练,合成音频可以根据文本自适应调节语气,对复杂文本合成也有较好的处理能力。",
  3054. "display_tags": [
  3055. "Qwen3",
  3056. "语音合成"
  3057. ],
  3058. "input_modalities": [
  3059. "Text"
  3060. ],
  3061. "output_modalities": [
  3062. "Audio"
  3063. ]
  3064. },
  3065. "rate_limits": {
  3066. "RPM": "180",
  3067. "上下文长度": null,
  3068. "最大输入长度": null,
  3069. "最大输出长度": null
  3070. },
  3071. "tool_prices": [],
  3072. "icon": "https://img.alicdn.com/imgextra/i3/O1CN01Kmx9dR1wcHOaMMXAk_!!6000000006328-55-tps-28-28.svg",
  3073. "scraped_at": "2026-05-08T04:12:22.331962Z",
  3074. "discount": 1.0,
  3075. "api_key": "LuWDW9vEhleOwnehzx8Urygsoykqq8Ec07YesKhUP7vmY6w",
  3076. "group_name": "阿里系列模型"
  3077. },
  3078. {
  3079. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-vl-embedding?serviceSite=asia-pacific-china",
  3080. "model_name": "qwen3-vl-embedding",
  3081. "prices": {
  3082. "图片输入": {
  3083. "raw": "1.8",
  3084. "unit": "元/每百万tokens",
  3085. "price": 1.8,
  3086. "currency": "CNY"
  3087. },
  3088. "文本输入": {
  3089. "raw": "0.7",
  3090. "unit": "元/每百万tokens",
  3091. "price": 0.7,
  3092. "currency": "CNY"
  3093. }
  3094. },
  3095. "model_info": {
  3096. "features": {
  3097. "cache存储": false,
  3098. "前缀续写": false,
  3099. "批量推理": false,
  3100. "模型体验": false,
  3101. "模型调优": false,
  3102. "联网搜索": false,
  3103. "结构化输出": false,
  3104. "function calling": false
  3105. },
  3106. "model_code": "qwen3-vl-embedding",
  3107. "description": "基于Qwen3-VL底座训练的统一多模态向量模型,支持文本、图片、视频单模态/混合模态输入,输出统一表征向量,适用于跨模态检索、图搜、视频检索、图像聚类、复杂多模态信息检索、打标等场景",
  3108. "display_tags": [
  3109. "多模态向量"
  3110. ],
  3111. "input_modalities": [
  3112. "Text",
  3113. "Image"
  3114. ],
  3115. "output_modalities": []
  3116. },
  3117. "rate_limits": {
  3118. "RPM": "2400",
  3119. "TPM": "1200000",
  3120. "上下文长度": null,
  3121. "最大输入长度": "32K",
  3122. "最大输出长度": null
  3123. },
  3124. "tool_prices": [],
  3125. "icon": "https://img.alicdn.com/imgextra/i3/O1CN01Kmx9dR1wcHOaMMXAk_!!6000000006328-55-tps-28-28.svg",
  3126. "scraped_at": "2026-05-08T04:07:12.674639Z",
  3127. "discount": 1.0,
  3128. "api_key": "LuWDW9vEhleOwnehzx8Urygsoykqq8Ec07YesKhUP7vmY6w",
  3129. "group_name": "阿里系列模型"
  3130. },
  3131. {
  3132. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-vl-flash?serviceSite=asia-pacific-china",
  3133. "model_name": "qwen3-vl-flash",
  3134. "prices": {
  3135. "input<=32k": {
  3136. "输入": {
  3137. "raw": "0.15",
  3138. "unit": "元/每百万tokens",
  3139. "price": 0.15,
  3140. "currency": "CNY"
  3141. },
  3142. "输出": {
  3143. "raw": "1.5",
  3144. "unit": "元/每百万tokens",
  3145. "price": 1.5,
  3146. "currency": "CNY"
  3147. },
  3148. "显式缓存创建": {
  3149. "raw": "0.1875",
  3150. "unit": "元/每百万tokens",
  3151. "price": 0.1875,
  3152. "currency": "CNY"
  3153. },
  3154. "显式缓存命中": {
  3155. "raw": "0.015",
  3156. "note": "原价显示",
  3157. "unit": "元/每百万tokens",
  3158. "price": 0.015,
  3159. "currency": "CNY",
  3160. "price_original": 0.15
  3161. },
  3162. "输入(Batch File)": {
  3163. "raw": "0.075",
  3164. "unit": "元/每百万tokens",
  3165. "price": 0.075,
  3166. "currency": "CNY"
  3167. },
  3168. "输出(Batch File)": {
  3169. "raw": "0.75",
  3170. "note": "原价显示",
  3171. "unit": "元/每百万tokens",
  3172. "price": 0.75,
  3173. "currency": "CNY",
  3174. "price_original": 1.5
  3175. },
  3176. "输入(缓存命中)": {
  3177. "raw": "0.03",
  3178. "unit": "元/每百万tokens",
  3179. "price": 0.03,
  3180. "currency": "CNY"
  3181. }
  3182. },
  3183. "32k<input<=128k": {
  3184. "输入": {
  3185. "raw": "0.3",
  3186. "unit": "元/每百万tokens",
  3187. "price": 0.3,
  3188. "currency": "CNY"
  3189. },
  3190. "输出": {
  3191. "raw": "3",
  3192. "unit": "元/每百万tokens",
  3193. "price": 3.0,
  3194. "currency": "CNY"
  3195. },
  3196. "显式缓存创建": {
  3197. "raw": "0.375",
  3198. "unit": "元/每百万tokens",
  3199. "price": 0.375,
  3200. "currency": "CNY"
  3201. },
  3202. "显式缓存命中": {
  3203. "raw": "0.03",
  3204. "note": "原价显示",
  3205. "unit": "元/每百万tokens",
  3206. "price": 0.03,
  3207. "currency": "CNY",
  3208. "price_original": 0.3
  3209. },
  3210. "输入(Batch File)": {
  3211. "raw": "0.15",
  3212. "unit": "元/每百万tokens",
  3213. "price": 0.15,
  3214. "currency": "CNY"
  3215. },
  3216. "输出(Batch File)": {
  3217. "raw": "1.5",
  3218. "note": "原价显示",
  3219. "unit": "元/每百万tokens",
  3220. "price": 1.5,
  3221. "currency": "CNY",
  3222. "price_original": 3.0
  3223. },
  3224. "输入(缓存命中)": {
  3225. "raw": "0.06",
  3226. "unit": "元/每百万tokens",
  3227. "price": 0.06,
  3228. "currency": "CNY"
  3229. }
  3230. },
  3231. "128k<input<=256k": {
  3232. "输入": {
  3233. "raw": "0.6",
  3234. "unit": "元/每百万tokens",
  3235. "price": 0.6,
  3236. "currency": "CNY"
  3237. },
  3238. "输出": {
  3239. "raw": "6",
  3240. "unit": "元/每百万tokens",
  3241. "price": 6.0,
  3242. "currency": "CNY"
  3243. },
  3244. "显式缓存创建": {
  3245. "raw": "0.75",
  3246. "unit": "元/每百万tokens",
  3247. "price": 0.75,
  3248. "currency": "CNY"
  3249. },
  3250. "显式缓存命中": {
  3251. "raw": "0.06",
  3252. "note": "原价显示",
  3253. "unit": "元/每百万tokens",
  3254. "price": 0.06,
  3255. "currency": "CNY",
  3256. "price_original": 0.6
  3257. },
  3258. "输入(Batch File)": {
  3259. "raw": "0.3",
  3260. "unit": "元/每百万tokens",
  3261. "price": 0.3,
  3262. "currency": "CNY"
  3263. },
  3264. "输出(Batch File)": {
  3265. "raw": "3",
  3266. "note": "原价显示",
  3267. "unit": "元/每百万tokens",
  3268. "price": 3.0,
  3269. "currency": "CNY",
  3270. "price_original": 6.0
  3271. },
  3272. "输入(缓存命中)": {
  3273. "raw": "0.12",
  3274. "unit": "元/每百万tokens",
  3275. "price": 0.12,
  3276. "currency": "CNY"
  3277. }
  3278. }
  3279. },
  3280. "model_info": {
  3281. "features": {
  3282. "cache存储": true,
  3283. "前缀续写": true,
  3284. "批量推理": false,
  3285. "模型体验": true,
  3286. "模型调优": false,
  3287. "联网搜索": false,
  3288. "结构化输出": true,
  3289. "function calling": true
  3290. },
  3291. "model_code": "qwen3-vl-flash",
  3292. "description": "Qwen3系列小尺寸视觉理解模型,实现思考模式和非思考模式的有效融合,效果优于开源版Qwen3-VL-30B-A3B,响应速度快。全面升级图像/视频理解,支持长视频长文档等超长上下文、空间感知与万物识别;具备视觉2D/3D定位能力,胜任复杂现实任务。",
  3293. "display_tags": [
  3294. "Qwen3",
  3295. "视觉理解",
  3296. "深度思考"
  3297. ],
  3298. "input_modalities": [
  3299. "Text",
  3300. "Image",
  3301. "Video"
  3302. ],
  3303. "output_modalities": [
  3304. "Text"
  3305. ]
  3306. },
  3307. "rate_limits": {
  3308. "RPM": "3000",
  3309. "TPM": "5000000",
  3310. "上下文长度": "256K",
  3311. "最大输入长度": "254K",
  3312. "最大输出长度": "32K",
  3313. "最大思维链长度": "80K"
  3314. },
  3315. "tool_prices": [],
  3316. "icon": "https://img.alicdn.com/imgextra/i3/O1CN01Kmx9dR1wcHOaMMXAk_!!6000000006328-55-tps-28-28.svg",
  3317. "scraped_at": "2026-05-08T04:16:28.848117Z",
  3318. "discount": 1.0,
  3319. "api_key": "LuWDW9vEhleOwnehzx8Urygsoykqq8Ec07YesKhUP7vmY6w",
  3320. "group_name": "阿里系列模型"
  3321. },
  3322. {
  3323. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-vl-plus?serviceSite=asia-pacific-china",
  3324. "model_name": "qwen3-vl-plus",
  3325. "prices": {
  3326. "input<=32k": {
  3327. "输入": {
  3328. "raw": "1",
  3329. "unit": "元/每百万tokens",
  3330. "price": 1.0,
  3331. "currency": "CNY"
  3332. },
  3333. "输出": {
  3334. "raw": "10",
  3335. "unit": "元/每百万tokens",
  3336. "price": 10.0,
  3337. "currency": "CNY"
  3338. },
  3339. "显式缓存创建": {
  3340. "raw": "1.25",
  3341. "unit": "元/每百万tokens",
  3342. "price": 1.25,
  3343. "currency": "CNY"
  3344. },
  3345. "显式缓存命中": {
  3346. "raw": "0.1",
  3347. "note": "原价显示",
  3348. "unit": "元/每百万tokens",
  3349. "price": 0.1,
  3350. "currency": "CNY",
  3351. "price_original": 1.0
  3352. },
  3353. "输入(Batch File)": {
  3354. "raw": "0.5",
  3355. "unit": "元/每百万tokens",
  3356. "price": 0.5,
  3357. "currency": "CNY"
  3358. },
  3359. "输出(Batch File)": {
  3360. "raw": "5",
  3361. "note": "原价显示",
  3362. "unit": "元/每百万tokens",
  3363. "price": 5.0,
  3364. "currency": "CNY",
  3365. "price_original": 10.0
  3366. },
  3367. "输入(缓存命中)": {
  3368. "raw": "0.2",
  3369. "unit": "元/每百万tokens",
  3370. "price": 0.2,
  3371. "currency": "CNY"
  3372. }
  3373. },
  3374. "32k<input<=128k": {
  3375. "输入": {
  3376. "raw": "1.5",
  3377. "unit": "元/每百万tokens",
  3378. "price": 1.5,
  3379. "currency": "CNY"
  3380. },
  3381. "输出": {
  3382. "raw": "15",
  3383. "unit": "元/每百万tokens",
  3384. "price": 15.0,
  3385. "currency": "CNY"
  3386. },
  3387. "显式缓存创建": {
  3388. "raw": "1.875",
  3389. "unit": "元/每百万tokens",
  3390. "price": 1.875,
  3391. "currency": "CNY"
  3392. },
  3393. "显式缓存命中": {
  3394. "raw": "0.15",
  3395. "note": "原价显示",
  3396. "unit": "元/每百万tokens",
  3397. "price": 0.15,
  3398. "currency": "CNY",
  3399. "price_original": 1.5
  3400. },
  3401. "输入(Batch File)": {
  3402. "raw": "0.75",
  3403. "unit": "元/每百万tokens",
  3404. "price": 0.75,
  3405. "currency": "CNY"
  3406. },
  3407. "输出(Batch File)": {
  3408. "raw": "7.5",
  3409. "note": "原价显示",
  3410. "unit": "元/每百万tokens",
  3411. "price": 7.5,
  3412. "currency": "CNY",
  3413. "price_original": 15.0
  3414. },
  3415. "输入(缓存命中)": {
  3416. "raw": "0.3",
  3417. "unit": "元/每百万tokens",
  3418. "price": 0.3,
  3419. "currency": "CNY"
  3420. }
  3421. },
  3422. "128k<input<=256k": {
  3423. "输入": {
  3424. "raw": "3",
  3425. "unit": "元/每百万tokens",
  3426. "price": 3.0,
  3427. "currency": "CNY"
  3428. },
  3429. "输出": {
  3430. "raw": "30",
  3431. "unit": "元/每百万tokens",
  3432. "price": 30.0,
  3433. "currency": "CNY"
  3434. },
  3435. "显式缓存创建": {
  3436. "raw": "3.75",
  3437. "unit": "元/每百万tokens",
  3438. "price": 3.75,
  3439. "currency": "CNY"
  3440. },
  3441. "显式缓存命中": {
  3442. "raw": "0.3",
  3443. "note": "原价显示",
  3444. "unit": "元/每百万tokens",
  3445. "price": 0.3,
  3446. "currency": "CNY",
  3447. "price_original": 3.0
  3448. },
  3449. "输入(Batch File)": {
  3450. "raw": "1.5",
  3451. "unit": "元/每百万tokens",
  3452. "price": 1.5,
  3453. "currency": "CNY"
  3454. },
  3455. "输出(Batch File)": {
  3456. "raw": "15",
  3457. "note": "原价显示",
  3458. "unit": "元/每百万tokens",
  3459. "price": 15.0,
  3460. "currency": "CNY",
  3461. "price_original": 30.0
  3462. },
  3463. "输入(缓存命中)": {
  3464. "raw": "0.6",
  3465. "unit": "元/每百万tokens",
  3466. "price": 0.6,
  3467. "currency": "CNY"
  3468. }
  3469. }
  3470. },
  3471. "model_info": {
  3472. "features": {
  3473. "cache存储": true,
  3474. "前缀续写": true,
  3475. "批量推理": true,
  3476. "模型体验": true,
  3477. "模型调优": false,
  3478. "联网搜索": false,
  3479. "结构化输出": true,
  3480. "function calling": true
  3481. },
  3482. "model_code": "qwen3-vl-plus",
  3483. "description": "Qwen3系列视觉理解模型,实现思考模式和非思考模式的有效融合,视觉智能体能力在OS World等公开测试集上达到世界顶尖水平。此版本在视觉coding、空间感知、多模态思考等方向全面升级;视觉感知与识别能力大幅提升,支持超长视频理解。",
  3484. "display_tags": [
  3485. "Qwen3",
  3486. "视觉理解",
  3487. "深度思考"
  3488. ],
  3489. "input_modalities": [
  3490. "Text",
  3491. "Image",
  3492. "Video"
  3493. ],
  3494. "output_modalities": [
  3495. "Text"
  3496. ]
  3497. },
  3498. "rate_limits": {
  3499. "RPM": "3000",
  3500. "TPM": "5000000",
  3501. "上下文长度": "256K",
  3502. "最大输入长度": "254K",
  3503. "最大输出长度": "32K",
  3504. "最大思维链长度": "80K"
  3505. },
  3506. "tool_prices": [],
  3507. "icon": "https://img.alicdn.com/imgextra/i3/O1CN01Kmx9dR1wcHOaMMXAk_!!6000000006328-55-tps-28-28.svg",
  3508. "scraped_at": "2026-05-08T04:16:13.184486Z",
  3509. "discount": 1.0,
  3510. "api_key": "LuWDW9vEhleOwnehzx8Urygsoykqq8Ec07YesKhUP7vmY6w",
  3511. "group_name": "阿里系列模型"
  3512. },
  3513. {
  3514. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-vl-rerank?serviceSite=asia-pacific-china",
  3515. "model_name": "qwen3-vl-rerank",
  3516. "prices": {
  3517. "图片输入": {
  3518. "raw": "1.8",
  3519. "unit": "元/每百万tokens",
  3520. "price": 1.8,
  3521. "currency": "CNY"
  3522. },
  3523. "文本输入": {
  3524. "raw": "0.7",
  3525. "unit": "元/每百万tokens",
  3526. "price": 0.7,
  3527. "currency": "CNY"
  3528. }
  3529. },
  3530. "model_info": {
  3531. "features": {
  3532. "cache存储": false,
  3533. "前缀续写": false,
  3534. "批量推理": false,
  3535. "模型体验": false,
  3536. "模型调优": false,
  3537. "联网搜索": false,
  3538. "结构化输出": false,
  3539. "function calling": false
  3540. },
  3541. "model_code": "qwen3-vl-rerank",
  3542. "description": "Qwen3-VL-Rerank重排模型,它能够深入理解文本、图片、视频的丰富多模态信息。在初步检索获得结果后,Qwen3-VL-Rerank 能够运用其先进的跨模态关联能力,对候选项目进行智能化的二次排序,将最相关的结果置于显要位置。通用用于提升跨模态搜索的准确率、优化图搜和视频检索的精准度、辅助图像聚类的分组质量、以及实现复杂多模态信息的高效检索和精确打标。",
  3543. "display_tags": [
  3544. "向量模型"
  3545. ],
  3546. "input_modalities": [
  3547. "Text"
  3548. ],
  3549. "output_modalities": [
  3550. "Text"
  3551. ]
  3552. },
  3553. "rate_limits": {
  3554. "RPM": "600",
  3555. "TPM": "9000000",
  3556. "上下文长度": null,
  3557. "最大输入长度": "120K",
  3558. "最大输出长度": null
  3559. },
  3560. "tool_prices": [],
  3561. "icon": "https://img.alicdn.com/imgextra/i3/O1CN01Kmx9dR1wcHOaMMXAk_!!6000000006328-55-tps-28-28.svg",
  3562. "scraped_at": "2026-05-08T04:07:03.264076Z",
  3563. "discount": 1.0,
  3564. "api_key": "LuWDW9vEhleOwnehzx8Urygsoykqq8Ec07YesKhUP7vmY6w",
  3565. "group_name": "阿里系列模型"
  3566. },
  3567. {
  3568. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-coder-plus?serviceSite=asia-pacific-china",
  3569. "model_name": "qwen-coder-plus",
  3570. "prices": {
  3571. "输入": {
  3572. "raw": "3.5",
  3573. "unit": "元/每百万tokens",
  3574. "price": 3.5,
  3575. "currency": "CNY"
  3576. },
  3577. "输出": {
  3578. "raw": "7",
  3579. "unit": "元/每百万tokens",
  3580. "price": 7.0,
  3581. "currency": "CNY"
  3582. }
  3583. },
  3584. "model_info": {
  3585. "features": {
  3586. "cache存储": false,
  3587. "前缀续写": false,
  3588. "批量推理": false,
  3589. "模型体验": true,
  3590. "模型调优": false,
  3591. "联网搜索": false,
  3592. "结构化输出": false,
  3593. "function calling": false
  3594. },
  3595. "model_code": "qwen-coder-plus",
  3596. "description": "千问系列代码及编程模型是专门用于编程和代码生成的语言模型,性能出色,效果突出。",
  3597. "display_tags": [
  3598. "文本生成"
  3599. ],
  3600. "input_modalities": [
  3601. "Text"
  3602. ],
  3603. "output_modalities": [
  3604. "Text"
  3605. ]
  3606. },
  3607. "rate_limits": {
  3608. "RPM": "1200",
  3609. "TPM": "1000000",
  3610. "上下文长度": "128K",
  3611. "最大输入长度": "126K",
  3612. "最大输出长度": "8K"
  3613. },
  3614. "tool_prices": [],
  3615. "icon": "https://img.alicdn.com/imgextra/i3/O1CN01Kmx9dR1wcHOaMMXAk_!!6000000006328-55-tps-28-28.svg",
  3616. "scraped_at": "2026-05-08T04:09:44.728986Z",
  3617. "discount": 1.0,
  3618. "api_key": "LuWDW9vEhleOwnehzx8Urygsoykqq8Ec07YesKhUP7vmY6w",
  3619. "group_name": "阿里系列模型"
  3620. },
  3621. {
  3622. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-coder-turbo?serviceSite=asia-pacific-china",
  3623. "model_name": "qwen-coder-turbo",
  3624. "prices": {
  3625. "输入": {
  3626. "raw": "2",
  3627. "unit": "元/每百万tokens",
  3628. "price": 2.0,
  3629. "currency": "CNY"
  3630. },
  3631. "输出": {
  3632. "raw": "6",
  3633. "unit": "元/每百万tokens",
  3634. "price": 6.0,
  3635. "currency": "CNY"
  3636. }
  3637. },
  3638. "model_info": {
  3639. "features": {
  3640. "cache存储": false,
  3641. "前缀续写": false,
  3642. "批量推理": false,
  3643. "模型体验": true,
  3644. "模型调优": false,
  3645. "联网搜索": false,
  3646. "结构化输出": false,
  3647. "function calling": false
  3648. },
  3649. "model_code": "qwen-coder-turbo",
  3650. "description": "Qwen-Coder-Turbo模型是专门用于编程和代码生成的语言模型,推理速度快,成本低。",
  3651. "display_tags": [
  3652. "文本生成"
  3653. ],
  3654. "input_modalities": [
  3655. "Text"
  3656. ],
  3657. "output_modalities": [
  3658. "Text"
  3659. ]
  3660. },
  3661. "rate_limits": {
  3662. "RPM": "1200",
  3663. "TPM": "1000000",
  3664. "上下文长度": "128K",
  3665. "最大输入长度": "126K",
  3666. "最大输出长度": "8K"
  3667. },
  3668. "tool_prices": [],
  3669. "icon": "https://img.alicdn.com/imgextra/i3/O1CN01Kmx9dR1wcHOaMMXAk_!!6000000006328-55-tps-28-28.svg",
  3670. "scraped_at": "2026-05-08T04:09:33.838608Z",
  3671. "discount": 1.0,
  3672. "api_key": "LuWDW9vEhleOwnehzx8Urygsoykqq8Ec07YesKhUP7vmY6w",
  3673. "group_name": "阿里系列模型"
  3674. },
  3675. {
  3676. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-deep-research?serviceSite=asia-pacific-china",
  3677. "model_name": "qwen-deep-research",
  3678. "prices": {
  3679. "输入": {
  3680. "raw": "54",
  3681. "unit": "元/每百万tokens",
  3682. "price": 54.0,
  3683. "currency": "CNY"
  3684. },
  3685. "输出": {
  3686. "raw": "163",
  3687. "unit": "元/每百万tokens",
  3688. "price": 163.0,
  3689. "currency": "CNY"
  3690. }
  3691. },
  3692. "model_info": {
  3693. "features": {
  3694. "cache存储": false,
  3695. "前缀续写": false,
  3696. "批量推理": false,
  3697. "模型体验": false,
  3698. "模型调优": false,
  3699. "联网搜索": false,
  3700. "结构化输出": false,
  3701. "function calling": false
  3702. },
  3703. "model_code": "qwen-deep-research",
  3704. "description": "千问深入研究是一款面向复杂研究任务的高级智能体系统,具备多轮推理与全局规划能力,能够运用互联网搜索等多种工具,对任务进行精细化拆解,开展推理与分析,最终为用户生成可溯源、逻辑严谨的研究型报告。",
  3705. "display_tags": [
  3706. "文本生成"
  3707. ],
  3708. "input_modalities": [
  3709. "Text"
  3710. ],
  3711. "output_modalities": [
  3712. "Text"
  3713. ]
  3714. },
  3715. "rate_limits": {
  3716. "RPM": "120",
  3717. "TPM": "1200000",
  3718. "上下文长度": "1M",
  3719. "最大输入长度": "997K",
  3720. "最大输出长度": "32K"
  3721. },
  3722. "tool_prices": [],
  3723. "icon": "https://img.alicdn.com/imgextra/i3/O1CN01Kmx9dR1wcHOaMMXAk_!!6000000006328-55-tps-28-28.svg",
  3724. "scraped_at": "2026-05-08T04:20:23.559101Z",
  3725. "discount": 1.0,
  3726. "api_key": "LuWDTrBgiu2uIse5_7r0r3nGgyKcr9lZs7gOuP0ePbPukww",
  3727. "group_name": "阿里系列模型"
  3728. },
  3729. {
  3730. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-doc-turbo?serviceSite=asia-pacific-china",
  3731. "model_name": "qwen-doc-turbo",
  3732. "prices": {
  3733. "输入": {
  3734. "raw": "0.6",
  3735. "unit": "元/每百万tokens",
  3736. "price": 0.6,
  3737. "currency": "CNY"
  3738. },
  3739. "输出": {
  3740. "raw": "1",
  3741. "unit": "元/每百万tokens",
  3742. "price": 1.0,
  3743. "currency": "CNY"
  3744. },
  3745. "显式缓存创建": {
  3746. "raw": "0.75",
  3747. "unit": "元/每百万tokens",
  3748. "price": 0.75,
  3749. "currency": "CNY"
  3750. },
  3751. "显式缓存命中": {
  3752. "raw": "0.06",
  3753. "unit": "元/每百万tokens",
  3754. "price": 0.06,
  3755. "currency": "CNY"
  3756. },
  3757. "输入(缓存命中)": {
  3758. "raw": "0.12",
  3759. "unit": "元/每百万tokens",
  3760. "price": 0.12,
  3761. "currency": "CNY"
  3762. }
  3763. },
  3764. "model_info": {
  3765. "features": {
  3766. "cache存储": true,
  3767. "前缀续写": false,
  3768. "批量推理": false,
  3769. "模型体验": false,
  3770. "模型调优": false,
  3771. "联网搜索": false,
  3772. "结构化输出": false,
  3773. "function calling": false
  3774. },
  3775. "model_code": "qwen-doc-turbo",
  3776. "description": "快速对文档进行精准信息抽取,打标分类,内容审核及摘要总结。",
  3777. "display_tags": [
  3778. "文本生成"
  3779. ],
  3780. "input_modalities": [
  3781. "Text"
  3782. ],
  3783. "output_modalities": [
  3784. "Text"
  3785. ]
  3786. },
  3787. "rate_limits": {
  3788. "RPM": "600",
  3789. "TPM": "3000000",
  3790. "上下文长度": "256K",
  3791. "最大输入长度": "248K",
  3792. "最大输出长度": "8K"
  3793. },
  3794. "tool_prices": [],
  3795. "icon": "https://img.alicdn.com/imgextra/i3/O1CN01Kmx9dR1wcHOaMMXAk_!!6000000006328-55-tps-28-28.svg",
  3796. "scraped_at": "2026-05-08T04:20:12.300747Z",
  3797. "discount": 1.0,
  3798. "api_key": "LuWDTrBgiu2uIse5_7r0r3nGgyKcr9lZs7gOuP0ePbPukww",
  3799. "group_name": "阿里系列模型"
  3800. },
  3801. {
  3802. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-flash?serviceSite=asia-pacific-china",
  3803. "model_name": "qwen-flash",
  3804. "prices": {
  3805. "256k<input": {
  3806. "输入": {
  3807. "raw": "1.2",
  3808. "unit": "元/每百万tokens",
  3809. "price": 1.2,
  3810. "currency": "CNY"
  3811. },
  3812. "输出": {
  3813. "raw": "12",
  3814. "unit": "元/每百万tokens",
  3815. "price": 12.0,
  3816. "currency": "CNY"
  3817. },
  3818. "显式缓存创建": {
  3819. "raw": "1.5",
  3820. "unit": "元/每百万tokens",
  3821. "price": 1.5,
  3822. "currency": "CNY"
  3823. },
  3824. "显式缓存命中": {
  3825. "raw": "0.12",
  3826. "note": "原价显示",
  3827. "unit": "元/每百万tokens",
  3828. "price": 0.12,
  3829. "currency": "CNY",
  3830. "price_original": 1.2
  3831. },
  3832. "输入(Batch File)": {
  3833. "raw": "0.6",
  3834. "unit": "元/每百万tokens",
  3835. "price": 0.6,
  3836. "currency": "CNY"
  3837. },
  3838. "输出(Batch File)": {
  3839. "raw": "6",
  3840. "note": "原价显示",
  3841. "unit": "元/每百万tokens",
  3842. "price": 6.0,
  3843. "currency": "CNY",
  3844. "price_original": 12.0
  3845. },
  3846. "输入(缓存命中)": {
  3847. "raw": "0.24",
  3848. "unit": "元/每百万tokens",
  3849. "price": 0.24,
  3850. "currency": "CNY"
  3851. }
  3852. },
  3853. "input<=128k": {
  3854. "输入": {
  3855. "raw": "0.15",
  3856. "unit": "元/每百万tokens",
  3857. "price": 0.15,
  3858. "currency": "CNY"
  3859. },
  3860. "输出": {
  3861. "raw": "1.5",
  3862. "unit": "元/每百万tokens",
  3863. "price": 1.5,
  3864. "currency": "CNY"
  3865. },
  3866. "显式缓存创建": {
  3867. "raw": "0.188",
  3868. "unit": "元/每百万tokens",
  3869. "price": 0.188,
  3870. "currency": "CNY"
  3871. },
  3872. "显式缓存命中": {
  3873. "raw": "0.015",
  3874. "note": "原价显示",
  3875. "unit": "元/每百万tokens",
  3876. "price": 0.015,
  3877. "currency": "CNY",
  3878. "price_original": 0.15
  3879. },
  3880. "输入(Batch File)": {
  3881. "raw": "0.075",
  3882. "unit": "元/每百万tokens",
  3883. "price": 0.075,
  3884. "currency": "CNY"
  3885. },
  3886. "输出(Batch File)": {
  3887. "raw": "0.75",
  3888. "note": "原价显示",
  3889. "unit": "元/每百万tokens",
  3890. "price": 0.75,
  3891. "currency": "CNY",
  3892. "price_original": 1.5
  3893. },
  3894. "输入(缓存命中)": {
  3895. "raw": "0.03",
  3896. "unit": "元/每百万tokens",
  3897. "price": 0.03,
  3898. "currency": "CNY"
  3899. }
  3900. },
  3901. "128k<input<=256k": {
  3902. "输入": {
  3903. "raw": "0.6",
  3904. "unit": "元/每百万tokens",
  3905. "price": 0.6,
  3906. "currency": "CNY"
  3907. },
  3908. "输出": {
  3909. "raw": "6",
  3910. "unit": "元/每百万tokens",
  3911. "price": 6.0,
  3912. "currency": "CNY"
  3913. },
  3914. "显式缓存创建": {
  3915. "raw": "0.75",
  3916. "unit": "元/每百万tokens",
  3917. "price": 0.75,
  3918. "currency": "CNY"
  3919. },
  3920. "显式缓存命中": {
  3921. "raw": "0.06",
  3922. "note": "原价显示",
  3923. "unit": "元/每百万tokens",
  3924. "price": 0.06,
  3925. "currency": "CNY",
  3926. "price_original": 0.6
  3927. },
  3928. "输入(Batch File)": {
  3929. "raw": "0.3",
  3930. "unit": "元/每百万tokens",
  3931. "price": 0.3,
  3932. "currency": "CNY"
  3933. },
  3934. "输出(Batch File)": {
  3935. "raw": "3",
  3936. "note": "原价显示",
  3937. "unit": "元/每百万tokens",
  3938. "price": 3.0,
  3939. "currency": "CNY",
  3940. "price_original": 6.0
  3941. },
  3942. "输入(缓存命中)": {
  3943. "raw": "0.12",
  3944. "unit": "元/每百万tokens",
  3945. "price": 0.12,
  3946. "currency": "CNY"
  3947. }
  3948. }
  3949. },
  3950. "model_info": {
  3951. "features": {
  3952. "cache存储": true,
  3953. "前缀续写": true,
  3954. "批量推理": true,
  3955. "模型体验": true,
  3956. "模型调优": false,
  3957. "联网搜索": true,
  3958. "结构化输出": true,
  3959. "function calling": true
  3960. },
  3961. "model_code": "qwen-flash",
  3962. "description": "Qwen3系列Flash模型,实现思考模式和非思考模式的有效融合,可在对话中切换模式。复杂推理类任务性能优秀,指令遵循、文本理解等能力显著提高。支持1M上下文长度,按照上下文长度进行阶梯计费。",
  3963. "display_tags": [
  3964. "Qwen3",
  3965. "深度思考",
  3966. "文本生成"
  3967. ],
  3968. "input_modalities": [
  3969. "Text"
  3970. ],
  3971. "output_modalities": [
  3972. "Text"
  3973. ]
  3974. },
  3975. "rate_limits": {
  3976. "RPM": "30000",
  3977. "TPM": "10000000",
  3978. "上下文长度": "1M",
  3979. "最大输入长度": "997K",
  3980. "最大输出长度": "32K"
  3981. },
  3982. "tool_prices": [],
  3983. "icon": "https://img.alicdn.com/imgextra/i3/O1CN01Kmx9dR1wcHOaMMXAk_!!6000000006328-55-tps-28-28.svg",
  3984. "scraped_at": "2026-05-08T04:20:01.332519Z",
  3985. "discount": 1.0,
  3986. "api_key": "LuWDW9vEhleOwnehzx8Urygsoykqq8Ec07YesKhUP7vmY6w",
  3987. "group_name": "阿里系列模型"
  3988. },
  3989. {
  3990. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-image-2.0-pro?serviceSite=asia-pacific-china",
  3991. "model_name": "qwen-image-2.0-pro",
  3992. "prices": {
  3993. "图片生成": {
  3994. "raw": "0.5",
  3995. "unit": "元/每张",
  3996. "price": 0.5,
  3997. "currency": "CNY"
  3998. }
  3999. },
  4000. "model_info": {
  4001. "features": {
  4002. "cache存储": false,
  4003. "前缀续写": false,
  4004. "批量推理": false,
  4005. "模型体验": true,
  4006. "模型调优": false,
  4007. "联网搜索": false,
  4008. "结构化输出": false,
  4009. "function calling": false
  4010. },
  4011. "model_code": "qwen-image-2.0-pro",
  4012. "description": "Qwen-Image-2.0系列满血版模型,实现了图片生成和图片编辑的融合;具备更专业的文字渲染1k token指令支持能力、更细腻的真实质感,细腻刻画写实场景、更强的语义遵循能力。满血版具备2.0系列最强的文字渲染能力和真实质感。",
  4013. "display_tags": [
  4014. "图像生成"
  4015. ],
  4016. "input_modalities": [
  4017. "Text",
  4018. "Image"
  4019. ],
  4020. "output_modalities": [
  4021. "Image"
  4022. ]
  4023. },
  4024. "rate_limits": {
  4025. "RPM": "2",
  4026. "上下文长度": null,
  4027. "最大输入长度": null,
  4028. "最大输出长度": null
  4029. },
  4030. "tool_prices": [],
  4031. "icon": "https://img.alicdn.com/imgextra/i3/O1CN01Kmx9dR1wcHOaMMXAk_!!6000000006328-55-tps-28-28.svg",
  4032. "scraped_at": "2026-05-08T04:07:46.201801Z",
  4033. "discount": 1.0,
  4034. "api_key": "LuWDW9vEhleOwnehzx8Urygsoykqq8Ec07YesKhUP7vmY6w",
  4035. "group_name": "阿里系列模型"
  4036. },
  4037. {
  4038. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-image-2.0?serviceSite=asia-pacific-china",
  4039. "model_name": "qwen-image-2.0",
  4040. "prices": {
  4041. "图片生成": {
  4042. "raw": "0.2",
  4043. "unit": "元/每张",
  4044. "price": 0.2,
  4045. "currency": "CNY"
  4046. }
  4047. },
  4048. "model_info": {
  4049. "features": {
  4050. "cache存储": false,
  4051. "前缀续写": false,
  4052. "批量推理": false,
  4053. "模型体验": true,
  4054. "模型调优": false,
  4055. "联网搜索": false,
  4056. "结构化输出": false,
  4057. "function calling": false
  4058. },
  4059. "model_code": "qwen-image-2.0",
  4060. "description": "Qwen-Image-2.0系列加速版模型,实现了图片生成和图片编辑的融合;具备更专业的文字渲染1k token指令支持能力、更细腻的真实质感,细腻刻画写实场景、更强的语义遵循能力。加速版有效实现了模型效果和性能的最佳平衡。",
  4061. "display_tags": [
  4062. "图像生成"
  4063. ],
  4064. "input_modalities": [
  4065. "Text",
  4066. "Image"
  4067. ],
  4068. "output_modalities": [
  4069. "Image"
  4070. ]
  4071. },
  4072. "rate_limits": {
  4073. "RPM": "120",
  4074. "上下文长度": null,
  4075. "最大输入长度": null,
  4076. "最大输出长度": null
  4077. },
  4078. "tool_prices": [],
  4079. "icon": "https://img.alicdn.com/imgextra/i3/O1CN01Kmx9dR1wcHOaMMXAk_!!6000000006328-55-tps-28-28.svg",
  4080. "scraped_at": "2026-05-08T04:07:57.579447Z",
  4081. "discount": 1.0,
  4082. "api_key": "LuWDW9vEhleOwnehzx8Urygsoykqq8Ec07YesKhUP7vmY6w",
  4083. "group_name": "阿里系列模型"
  4084. },
  4085. {
  4086. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-image-edit-plus?serviceSite=asia-pacific-china",
  4087. "model_name": "qwen-image-edit-plus",
  4088. "prices": {
  4089. "图片生成": {
  4090. "raw": "0.2",
  4091. "unit": "元/每张",
  4092. "price": 0.2,
  4093. "currency": "CNY"
  4094. }
  4095. },
  4096. "model_info": {
  4097. "features": {
  4098. "cache存储": false,
  4099. "前缀续写": false,
  4100. "批量推理": false,
  4101. "模型体验": true,
  4102. "模型调优": false,
  4103. "联网搜索": false,
  4104. "结构化输出": false,
  4105. "function calling": false
  4106. },
  4107. "model_code": "qwen-image-edit-plus",
  4108. "description": "千问系列图像编辑Plus模型,在首版Edit模型基础上进一步优化了推理性能与系统稳定性,大幅缩短图像生成与编辑的响应时间;支持单次请求返回多张图片,显著提升用户体验。",
  4109. "display_tags": [
  4110. "图像生成"
  4111. ],
  4112. "input_modalities": [
  4113. "Image"
  4114. ],
  4115. "output_modalities": [
  4116. "Image"
  4117. ]
  4118. },
  4119. "rate_limits": {
  4120. "RPM": "120",
  4121. "上下文长度": null,
  4122. "最大输入长度": null,
  4123. "最大输出长度": null
  4124. },
  4125. "tool_prices": [],
  4126. "icon": "https://img.alicdn.com/imgextra/i3/O1CN01Kmx9dR1wcHOaMMXAk_!!6000000006328-55-tps-28-28.svg",
  4127. "scraped_at": "2026-05-08T04:15:37.527414Z",
  4128. "discount": 1.0,
  4129. "api_key": "LuWDW9vEhleOwnehzx8Urygsoykqq8Ec07YesKhUP7vmY6w",
  4130. "group_name": "阿里系列模型"
  4131. },
  4132. {
  4133. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-image-edit?serviceSite=asia-pacific-china",
  4134. "model_name": "qwen-image-edit",
  4135. "prices": {
  4136. "图片生成": {
  4137. "raw": "0.3",
  4138. "unit": "元/每张",
  4139. "price": 0.3,
  4140. "currency": "CNY"
  4141. }
  4142. },
  4143. "model_info": {
  4144. "features": {
  4145. "cache存储": false,
  4146. "前缀续写": false,
  4147. "批量推理": false,
  4148. "模型体验": true,
  4149. "模型调优": false,
  4150. "联网搜索": false,
  4151. "结构化输出": false,
  4152. "function calling": false
  4153. },
  4154. "model_code": "qwen-image-edit",
  4155. "description": "千问系列图像编辑Plus模型,在首版Edit模型基础上进一步优化了推理性能与系统稳定性,大幅缩短图像生成与编辑的响应时间;支持单次请求返回多张图片,显著提升用户体验。",
  4156. "display_tags": [
  4157. "图像生成"
  4158. ],
  4159. "input_modalities": [
  4160. "Image"
  4161. ],
  4162. "output_modalities": [
  4163. "Image"
  4164. ]
  4165. },
  4166. "rate_limits": {
  4167. "RPM": "120",
  4168. "上下文长度": null,
  4169. "最大输入长度": null,
  4170. "最大输出长度": null
  4171. },
  4172. "tool_prices": [],
  4173. "icon": "https://img.alicdn.com/imgextra/i3/O1CN01Kmx9dR1wcHOaMMXAk_!!6000000006328-55-tps-28-28.svg",
  4174. "scraped_at": "2026-05-08T04:15:48.509740Z",
  4175. "discount": 1.0,
  4176. "api_key": "LuWDW9vEhleOwnehzx8Urygsoykqq8Ec07YesKhUP7vmY6w",
  4177. "group_name": "阿里系列模型"
  4178. },
  4179. {
  4180. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-image-max?serviceSite=asia-pacific-china",
  4181. "model_name": "qwen-image-max",
  4182. "prices": {
  4183. "图片生成": {
  4184. "raw": "0.5",
  4185. "unit": "元/每张",
  4186. "price": 0.5,
  4187. "currency": "CNY"
  4188. }
  4189. },
  4190. "model_info": {
  4191. "features": {
  4192. "cache存储": false,
  4193. "前缀续写": false,
  4194. "批量推理": false,
  4195. "模型体验": true,
  4196. "模型调优": false,
  4197. "联网搜索": false,
  4198. "结构化输出": false,
  4199. "function calling": false
  4200. },
  4201. "model_code": "qwen-image-max",
  4202. "description": "千问图像生成模型Max系列,在各类生成任务中表现出色,相较Plus系列大幅度降低生成图片的AI感,提升图像真实性;具备更真实的人物质感、更细腻的自然纹理、更美观的文字渲染。",
  4203. "display_tags": [
  4204. "图像生成"
  4205. ],
  4206. "input_modalities": [
  4207. "Text"
  4208. ],
  4209. "output_modalities": [
  4210. "Image"
  4211. ]
  4212. },
  4213. "rate_limits": {
  4214. "RPM": "2",
  4215. "TPM": "1000000",
  4216. "上下文长度": null,
  4217. "最大输入长度": null,
  4218. "最大输出长度": null
  4219. },
  4220. "tool_prices": [],
  4221. "icon": "https://img.alicdn.com/imgextra/i3/O1CN01Kmx9dR1wcHOaMMXAk_!!6000000006328-55-tps-28-28.svg",
  4222. "scraped_at": "2026-05-08T04:07:35.389609Z",
  4223. "discount": 1.0,
  4224. "api_key": "LuWDW9vEhleOwnehzx8Urygsoykqq8Ec07YesKhUP7vmY6w",
  4225. "group_name": "阿里系列模型"
  4226. },
  4227. {
  4228. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-image-plus?serviceSite=asia-pacific-china",
  4229. "model_name": "qwen-image-plus",
  4230. "prices": {
  4231. "图片生成": {
  4232. "raw": "0.2",
  4233. "unit": "元/每张",
  4234. "price": 0.2,
  4235. "currency": "CNY"
  4236. }
  4237. },
  4238. "model_info": {
  4239. "features": {
  4240. "cache存储": false,
  4241. "前缀续写": false,
  4242. "批量推理": false,
  4243. "模型体验": false,
  4244. "模型调优": false,
  4245. "联网搜索": false,
  4246. "结构化输出": false,
  4247. "function calling": false
  4248. },
  4249. "model_code": "qwen-image-plus",
  4250. "description": "千问系列图像生成模型,参数规模200亿。具备卓越的文本渲染能力,在复杂文本渲染、各类生成与编辑任务重表现出色,在多个公开基准测试中获得SOTA,模型性能大幅提升。",
  4251. "display_tags": [
  4252. "图像生成"
  4253. ],
  4254. "input_modalities": [
  4255. "Text"
  4256. ],
  4257. "output_modalities": [
  4258. "Image"
  4259. ]
  4260. },
  4261. "rate_limits": {
  4262. "RPM": "120",
  4263. "TPM": "100000",
  4264. "上下文长度": null,
  4265. "最大输入长度": null,
  4266. "最大输出长度": null
  4267. },
  4268. "tool_prices": [],
  4269. "icon": "https://img.alicdn.com/imgextra/i3/O1CN01Kmx9dR1wcHOaMMXAk_!!6000000006328-55-tps-28-28.svg",
  4270. "scraped_at": "2026-05-08T04:15:26.542917Z",
  4271. "discount": 1.0,
  4272. "api_key": "LuWDW9vEhleOwnehzx8Urygsoykqq8Ec07YesKhUP7vmY6w",
  4273. "group_name": "阿里系列模型"
  4274. },
  4275. {
  4276. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-image?serviceSite=asia-pacific-china",
  4277. "model_name": "qwen-image",
  4278. "prices": {
  4279. "图片生成": {
  4280. "raw": "0.25",
  4281. "unit": "元/每张",
  4282. "price": 0.25,
  4283. "currency": "CNY"
  4284. }
  4285. },
  4286. "model_info": {
  4287. "features": {
  4288. "cache存储": false,
  4289. "前缀续写": false,
  4290. "批量推理": false,
  4291. "模型体验": true,
  4292. "模型调优": false,
  4293. "联网搜索": false,
  4294. "结构化输出": false,
  4295. "function calling": false
  4296. },
  4297. "model_code": "qwen-image",
  4298. "description": "千问系列首个图像生成模型,参数规模200亿。具备卓越的文本渲染能力,在复杂文本渲染、各类生成与编辑任务重表现出色,在多个公开基准测试中获得SOTA。",
  4299. "display_tags": [
  4300. "图像生成"
  4301. ],
  4302. "input_modalities": [
  4303. "Text"
  4304. ],
  4305. "output_modalities": [
  4306. "Image"
  4307. ]
  4308. },
  4309. "rate_limits": {
  4310. "RPM": "120",
  4311. "TPM": "1000000",
  4312. "上下文长度": null,
  4313. "最大输入长度": null,
  4314. "最大输出长度": null
  4315. },
  4316. "tool_prices": [],
  4317. "icon": "https://img.alicdn.com/imgextra/i3/O1CN01Kmx9dR1wcHOaMMXAk_!!6000000006328-55-tps-28-28.svg",
  4318. "scraped_at": "2026-05-08T04:15:59.438606Z",
  4319. "discount": 1.0,
  4320. "api_key": "LuWDW9vEhleOwnehzx8Urygsoykqq8Ec07YesKhUP7vmY6w",
  4321. "group_name": "阿里系列模型"
  4322. },
  4323. {
  4324. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-long-latest?serviceSite=asia-pacific-china",
  4325. "model_name": "qwen-long-latest",
  4326. "prices": {
  4327. "输入": {
  4328. "raw": "0.5",
  4329. "unit": "元/每百万tokens",
  4330. "price": 0.5,
  4331. "currency": "CNY"
  4332. },
  4333. "输出": {
  4334. "raw": "2",
  4335. "unit": "元/每百万tokens",
  4336. "price": 2.0,
  4337. "currency": "CNY"
  4338. },
  4339. "输入(Batch File)": {
  4340. "raw": "0.25",
  4341. "unit": "元/每百万tokens",
  4342. "price": 0.25,
  4343. "currency": "CNY"
  4344. },
  4345. "输出(Batch File)": {
  4346. "raw": "1",
  4347. "unit": "元/每百万tokens",
  4348. "price": 1.0,
  4349. "currency": "CNY"
  4350. }
  4351. },
  4352. "model_info": {
  4353. "features": {
  4354. "cache存储": false,
  4355. "前缀续写": false,
  4356. "批量推理": false,
  4357. "模型体验": true,
  4358. "模型调优": false,
  4359. "联网搜索": false,
  4360. "结构化输出": false,
  4361. "function calling": false
  4362. },
  4363. "model_code": "qwen-long-latest",
  4364. "description": "千问系列上下文窗口最长,能力均衡且成本较低的模型,适合长文本分析、信息抽取、总结摘要和分类打标等任务。",
  4365. "display_tags": [
  4366. "文本生成"
  4367. ],
  4368. "input_modalities": [
  4369. "Text"
  4370. ],
  4371. "output_modalities": [
  4372. "Text"
  4373. ]
  4374. },
  4375. "rate_limits": {
  4376. "RPM": "1200",
  4377. "TPM": "60000",
  4378. "上下文长度": "10M",
  4379. "最大输入长度": "10M",
  4380. "最大输出长度": "8K"
  4381. },
  4382. "tool_prices": [],
  4383. "icon": "https://img.alicdn.com/imgextra/i3/O1CN01Kmx9dR1wcHOaMMXAk_!!6000000006328-55-tps-28-28.svg",
  4384. "scraped_at": "2026-05-08T04:19:34.874243Z",
  4385. "discount": 1.0,
  4386. "api_key": "LuWDTrBgiu2uIse5_7r0r3nGgyKcr9lZs7gOuP0ePbPukww",
  4387. "group_name": "阿里系列模型"
  4388. },
  4389. {
  4390. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-long?serviceSite=asia-pacific-china",
  4391. "model_name": "qwen-long",
  4392. "prices": {
  4393. "输入": {
  4394. "raw": "0.5",
  4395. "unit": "元/每百万tokens",
  4396. "price": 0.5,
  4397. "currency": "CNY"
  4398. },
  4399. "输出": {
  4400. "raw": "2",
  4401. "unit": "元/每百万tokens",
  4402. "price": 2.0,
  4403. "currency": "CNY"
  4404. },
  4405. "输入(Batch File)": {
  4406. "raw": "0.25",
  4407. "unit": "元/每百万tokens",
  4408. "price": 0.25,
  4409. "currency": "CNY"
  4410. },
  4411. "输出(Batch File)": {
  4412. "raw": "1",
  4413. "unit": "元/每百万tokens",
  4414. "price": 1.0,
  4415. "currency": "CNY"
  4416. }
  4417. },
  4418. "model_info": {
  4419. "features": {
  4420. "cache存储": false,
  4421. "前缀续写": false,
  4422. "批量推理": false,
  4423. "模型体验": true,
  4424. "模型调优": false,
  4425. "联网搜索": false,
  4426. "结构化输出": false,
  4427. "function calling": false
  4428. },
  4429. "model_code": "qwen-long",
  4430. "description": "Qwen-Long是在通义实验室针对超长上下文处理场景的大语言模型,支持中文、英文等不同语言输入,支持最长1000万tokens(约1500万字或1.5万页文档)的超长上下文对话。配合同步上线的文档服务,可支持文本文件( TXT、DOCX、PDF、XLSX、EPUB、MOBI、MD、CSV)和图片文件(BMP、PNG、JPG/JPEG、GIF 以及PDF扫描件)的解析和对话。说明:通过HTTP直接提交请求,支持1M tokens长度,超过此长度建议通过文件方式提交。",
  4431. "display_tags": [
  4432. "文本生成"
  4433. ],
  4434. "input_modalities": [
  4435. "Text"
  4436. ],
  4437. "output_modalities": [
  4438. "Text"
  4439. ]
  4440. },
  4441. "rate_limits": {
  4442. "RPM": "1200",
  4443. "TPM": "3000000",
  4444. "上下文长度": "10M",
  4445. "最大输入长度": "10M",
  4446. "最大输出长度": "8K"
  4447. },
  4448. "tool_prices": [],
  4449. "icon": "https://img.alicdn.com/imgextra/i3/O1CN01Kmx9dR1wcHOaMMXAk_!!6000000006328-55-tps-28-28.svg",
  4450. "scraped_at": "2026-05-08T04:19:45.689221Z",
  4451. "discount": 1.0,
  4452. "api_key": "LuWDTrBgiu2uIse5_7r0r3nGgyKcr9lZs7gOuP0ePbPukww",
  4453. "group_name": "阿里系列模型"
  4454. },
  4455. {
  4456. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-max-latest?serviceSite=asia-pacific-china",
  4457. "model_name": "qwen-max-latest",
  4458. "prices": {
  4459. "输入": {
  4460. "raw": "2.4",
  4461. "unit": "元/每百万tokens",
  4462. "price": 2.4,
  4463. "currency": "CNY"
  4464. },
  4465. "输出": {
  4466. "raw": "9.6",
  4467. "unit": "元/每百万tokens",
  4468. "price": 9.6,
  4469. "currency": "CNY"
  4470. },
  4471. "输入(Batch File)": {
  4472. "raw": "1.2",
  4473. "unit": "元/每百万tokens",
  4474. "price": 1.2,
  4475. "currency": "CNY"
  4476. },
  4477. "输出(Batch File)": {
  4478. "raw": "4.8",
  4479. "unit": "元/每百万tokens",
  4480. "price": 4.8,
  4481. "currency": "CNY"
  4482. }
  4483. },
  4484. "model_info": {
  4485. "features": {
  4486. "cache存储": false,
  4487. "前缀续写": true,
  4488. "批量推理": true,
  4489. "模型体验": true,
  4490. "模型调优": false,
  4491. "联网搜索": false,
  4492. "结构化输出": true,
  4493. "function calling": true
  4494. },
  4495. "model_code": "qwen-max-latest",
  4496. "description": "千问系列效果最好的模型,本模型是动态更新版本,模型更新不会提前通知,适合复杂、多步骤的任务,模型中英文综合能力显著提升,模型人类偏好显著提升,模型推理能力和复杂指令理解能力显著增强,困难任务上的表现更优,数学、代码能力显著提升,提升对Table、JSON等结构化数据的理解和生成能力。",
  4497. "display_tags": [
  4498. "文本生成"
  4499. ],
  4500. "input_modalities": [
  4501. "Text"
  4502. ],
  4503. "output_modalities": [
  4504. "Text"
  4505. ]
  4506. },
  4507. "rate_limits": {
  4508. "RPM": "1200",
  4509. "TPM": "1000000",
  4510. "上下文长度": "128K",
  4511. "最大输入长度": "126K",
  4512. "最大输出长度": "8K"
  4513. },
  4514. "tool_prices": [],
  4515. "icon": "https://img.alicdn.com/imgextra/i3/O1CN01Kmx9dR1wcHOaMMXAk_!!6000000006328-55-tps-28-28.svg",
  4516. "scraped_at": "2026-05-08T04:19:12.708173Z",
  4517. "discount": 1.0,
  4518. "api_key": "LuWDTrBgiu2uIse5_7r0r3nGgyKcr9lZs7gOuP0ePbPukww",
  4519. "group_name": "阿里系列模型"
  4520. },
  4521. {
  4522. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-max?serviceSite=asia-pacific-china",
  4523. "model_name": "qwen-max",
  4524. "prices": {
  4525. "输入": {
  4526. "raw": "2.4",
  4527. "unit": "元/每百万tokens",
  4528. "price": 2.4,
  4529. "currency": "CNY"
  4530. },
  4531. "输出": {
  4532. "raw": "9.6",
  4533. "unit": "元/每百万tokens",
  4534. "price": 9.6,
  4535. "currency": "CNY"
  4536. },
  4537. "输入(Batch File)": {
  4538. "raw": "1.2",
  4539. "unit": "元/每百万tokens",
  4540. "price": 1.2,
  4541. "currency": "CNY"
  4542. },
  4543. "输出(Batch File)": {
  4544. "raw": "4.8",
  4545. "unit": "元/每百万tokens",
  4546. "price": 4.8,
  4547. "currency": "CNY"
  4548. },
  4549. "输入(缓存命中)": {
  4550. "raw": "0.48",
  4551. "unit": "元/每百万tokens",
  4552. "price": 0.48,
  4553. "currency": "CNY"
  4554. }
  4555. },
  4556. "model_info": {
  4557. "features": {
  4558. "cache存储": true,
  4559. "前缀续写": true,
  4560. "批量推理": true,
  4561. "模型体验": true,
  4562. "模型调优": false,
  4563. "联网搜索": true,
  4564. "结构化输出": true,
  4565. "function calling": true
  4566. },
  4567. "model_code": "qwen-max",
  4568. "description": "千问2.5系列千亿级别超大规模语言模型,支持中文、英文等不同语言输入。随着模型的升级,qwen-max将滚动更新升级。如果希望使用固定版本,请使用历史快照版本。",
  4569. "display_tags": [
  4570. "文本生成"
  4571. ],
  4572. "input_modalities": [
  4573. "Text"
  4574. ],
  4575. "output_modalities": [
  4576. "Text"
  4577. ]
  4578. },
  4579. "rate_limits": {
  4580. "RPM": "1200",
  4581. "TPM": "1000000",
  4582. "上下文长度": "32K",
  4583. "最大输入长度": "30K",
  4584. "最大输出长度": "8K"
  4585. },
  4586. "tool_prices": [],
  4587. "icon": "https://img.alicdn.com/imgextra/i3/O1CN01Kmx9dR1wcHOaMMXAk_!!6000000006328-55-tps-28-28.svg",
  4588. "scraped_at": "2026-05-08T04:19:23.661199Z",
  4589. "discount": 1.0,
  4590. "api_key": "LuWDW9vEhleOwnehzx8Urygsoykqq8Ec07YesKhUP7vmY6w",
  4591. "group_name": "阿里系列模型"
  4592. },
  4593. {
  4594. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-mt-flash?serviceSite=asia-pacific-china",
  4595. "model_name": "qwen-mt-flash",
  4596. "prices": {
  4597. "输入": {
  4598. "raw": "0.7",
  4599. "unit": "元/每百万tokens",
  4600. "price": 0.7,
  4601. "currency": "CNY"
  4602. },
  4603. "输出": {
  4604. "raw": "1.95",
  4605. "unit": "元/每百万tokens",
  4606. "price": 1.95,
  4607. "currency": "CNY"
  4608. }
  4609. },
  4610. "model_info": {
  4611. "features": {
  4612. "cache存储": false,
  4613. "前缀续写": false,
  4614. "批量推理": false,
  4615. "模型体验": true,
  4616. "模型调优": false,
  4617. "联网搜索": false,
  4618. "结构化输出": false,
  4619. "function calling": false
  4620. },
  4621. "model_code": "qwen-mt-flash",
  4622. "description": "基于Qwen3全面升级的轻量级文本翻译大模型,支持92个语种互译,模型性能和翻译效果全面升级,并提供更稳定的术语定制、格式还原度、领域提示能力,让译文更精准、自然。",
  4623. "display_tags": [
  4624. "文本生成"
  4625. ],
  4626. "input_modalities": [
  4627. "Text"
  4628. ],
  4629. "output_modalities": [
  4630. "Text"
  4631. ]
  4632. },
  4633. "rate_limits": {
  4634. "RPM": "60",
  4635. "TPM": "35000",
  4636. "上下文长度": "16K",
  4637. "最大输入长度": "8K",
  4638. "最大输出长度": "8K"
  4639. },
  4640. "tool_prices": [],
  4641. "icon": "https://img.alicdn.com/imgextra/i3/O1CN01Kmx9dR1wcHOaMMXAk_!!6000000006328-55-tps-28-28.svg",
  4642. "scraped_at": "2026-05-08T04:19:01.954898Z",
  4643. "discount": 1.0,
  4644. "api_key": "LuWDW9vEhleOwnehzx8Urygsoykqq8Ec07YesKhUP7vmY6w",
  4645. "group_name": "阿里系列模型"
  4646. },
  4647. {
  4648. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-mt-image?serviceSite=asia-pacific-china",
  4649. "model_name": "qwen-mt-image",
  4650. "prices": {
  4651. "图片生成": {
  4652. "raw": "0.003",
  4653. "unit": "元/每张",
  4654. "price": 0.003,
  4655. "currency": "CNY"
  4656. }
  4657. },
  4658. "model_info": {
  4659. "features": {
  4660. "cache存储": false,
  4661. "前缀续写": false,
  4662. "批量推理": false,
  4663. "模型体验": false,
  4664. "模型调优": false,
  4665. "联网搜索": false,
  4666. "结构化输出": false,
  4667. "function calling": false
  4668. },
  4669. "model_code": "qwen-mt-image",
  4670. "description": "专注做图片翻译的模型服务,能将中、英、日等11个语言的图片翻译到指定的语言,精准还原图片排版和内容信息,支持术语定义、敏感词过滤、商品主体检测等自定义功能,提供灵活、准确、高效的图像本地化服务。",
  4671. "display_tags": [
  4672. "图像生成"
  4673. ],
  4674. "input_modalities": [
  4675. "Image"
  4676. ],
  4677. "output_modalities": [
  4678. "Image"
  4679. ]
  4680. },
  4681. "rate_limits": {
  4682. "RPM": "60",
  4683. "上下文长度": null,
  4684. "最大输入长度": null,
  4685. "最大输出长度": null
  4686. },
  4687. "tool_prices": [],
  4688. "icon": "https://img.alicdn.com/imgextra/i3/O1CN01Kmx9dR1wcHOaMMXAk_!!6000000006328-55-tps-28-28.svg",
  4689. "scraped_at": "2026-05-08T04:15:15.652988Z",
  4690. "discount": 1.0,
  4691. "api_key": "LuWDW9vEhleOwnehzx8Urygsoykqq8Ec07YesKhUP7vmY6w",
  4692. "group_name": "阿里系列模型"
  4693. },
  4694. {
  4695. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-mt-lite?serviceSite=asia-pacific-china",
  4696. "model_name": "qwen-mt-lite",
  4697. "prices": {
  4698. "输入": {
  4699. "raw": "0.6",
  4700. "unit": "元/每百万tokens",
  4701. "price": 0.6,
  4702. "currency": "CNY"
  4703. },
  4704. "输出": {
  4705. "raw": "1.6",
  4706. "unit": "元/每百万tokens",
  4707. "price": 1.6,
  4708. "currency": "CNY"
  4709. }
  4710. },
  4711. "model_info": {
  4712. "features": {
  4713. "cache存储": false,
  4714. "前缀续写": false,
  4715. "批量推理": false,
  4716. "模型体验": true,
  4717. "模型调优": false,
  4718. "联网搜索": false,
  4719. "结构化输出": false,
  4720. "function calling": false
  4721. },
  4722. "model_code": "qwen-mt-lite",
  4723. "description": "基于Qwen3全面升级的基础级文本翻译大模型,支持32个语种互译,模型性能和翻译效果全面升级,并提供更稳定的术语定制、格式还原度、领域提示能力,让译文更精准、自然。",
  4724. "display_tags": [
  4725. "文本生成"
  4726. ],
  4727. "input_modalities": [
  4728. "Text"
  4729. ],
  4730. "output_modalities": [
  4731. "Text"
  4732. ]
  4733. },
  4734. "rate_limits": {
  4735. "RPM": "60",
  4736. "TPM": "100000",
  4737. "上下文长度": "16K",
  4738. "最大输入长度": "8K",
  4739. "最大输出长度": "8K"
  4740. },
  4741. "tool_prices": [],
  4742. "icon": "https://img.alicdn.com/imgextra/i3/O1CN01Kmx9dR1wcHOaMMXAk_!!6000000006328-55-tps-28-28.svg",
  4743. "scraped_at": "2026-05-08T04:18:50.981619Z",
  4744. "discount": 1.0,
  4745. "api_key": "LuWDW9vEhleOwnehzx8Urygsoykqq8Ec07YesKhUP7vmY6w",
  4746. "group_name": "阿里系列模型"
  4747. },
  4748. {
  4749. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-mt-plus?serviceSite=asia-pacific-china",
  4750. "model_name": "qwen-mt-plus",
  4751. "prices": {
  4752. "输入": {
  4753. "raw": "1.8",
  4754. "unit": "元/每百万tokens",
  4755. "price": 1.8,
  4756. "currency": "CNY"
  4757. },
  4758. "输出": {
  4759. "raw": "5.4",
  4760. "unit": "元/每百万tokens",
  4761. "price": 5.4,
  4762. "currency": "CNY"
  4763. }
  4764. },
  4765. "model_info": {
  4766. "features": {
  4767. "cache存储": false,
  4768. "前缀续写": false,
  4769. "批量推理": false,
  4770. "模型体验": true,
  4771. "模型调优": false,
  4772. "联网搜索": false,
  4773. "结构化输出": false,
  4774. "function calling": false
  4775. },
  4776. "model_code": "qwen-mt-plus",
  4777. "description": "基于Qwen3全面升级的旗舰级翻译大模型,支持92个语种互译,模型性能和翻译效果全面升级,并提供更稳定的术语定制、格式还原度、领域提示能力,让译文更精准、自然。",
  4778. "display_tags": [
  4779. "文本生成"
  4780. ],
  4781. "input_modalities": [
  4782. "Text"
  4783. ],
  4784. "output_modalities": [
  4785. "Text"
  4786. ]
  4787. },
  4788. "rate_limits": {
  4789. "RPM": "60",
  4790. "TPM": "25000",
  4791. "上下文长度": "16K",
  4792. "最大输入长度": "8K",
  4793. "最大输出长度": "8K"
  4794. },
  4795. "tool_prices": [],
  4796. "icon": "https://img.alicdn.com/imgextra/i3/O1CN01Kmx9dR1wcHOaMMXAk_!!6000000006328-55-tps-28-28.svg",
  4797. "scraped_at": "2026-05-08T04:18:39.528490Z",
  4798. "discount": 1.0,
  4799. "api_key": "LuWDW9vEhleOwnehzx8Urygsoykqq8Ec07YesKhUP7vmY6w",
  4800. "group_name": "阿里系列模型"
  4801. },
  4802. {
  4803. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-mt-turbo?serviceSite=asia-pacific-china",
  4804. "model_name": "qwen-mt-turbo",
  4805. "prices": {
  4806. "输入": {
  4807. "raw": "0.7",
  4808. "unit": "元/每百万tokens",
  4809. "price": 0.7,
  4810. "currency": "CNY"
  4811. },
  4812. "输出": {
  4813. "raw": "1.95",
  4814. "unit": "元/每百万tokens",
  4815. "price": 1.95,
  4816. "currency": "CNY"
  4817. }
  4818. },
  4819. "model_info": {
  4820. "features": {
  4821. "cache存储": false,
  4822. "前缀续写": false,
  4823. "批量推理": false,
  4824. "模型体验": true,
  4825. "模型调优": false,
  4826. "联网搜索": false,
  4827. "结构化输出": false,
  4828. "function calling": false
  4829. },
  4830. "model_code": "qwen-mt-turbo",
  4831. "description": "基于Qwen3全面升级的轻量级文本翻译大模型,支持92个语种互译,模型性能和翻译效果全面升级,提供更稳定的术语定制、格式还原度、领域提示能力,让译文更精准、自然。",
  4832. "display_tags": [
  4833. "文本生成"
  4834. ],
  4835. "input_modalities": [
  4836. "Text"
  4837. ],
  4838. "output_modalities": [
  4839. "Text"
  4840. ]
  4841. },
  4842. "rate_limits": {
  4843. "RPM": "60",
  4844. "TPM": "35000",
  4845. "上下文长度": "16K",
  4846. "最大输入长度": "8K",
  4847. "最大输出长度": "8K"
  4848. },
  4849. "tool_prices": [],
  4850. "icon": "https://img.alicdn.com/imgextra/i3/O1CN01Kmx9dR1wcHOaMMXAk_!!6000000006328-55-tps-28-28.svg",
  4851. "scraped_at": "2026-05-08T04:18:28.246046Z",
  4852. "discount": 1.0,
  4853. "api_key": "LuWDW9vEhleOwnehzx8Urygsoykqq8Ec07YesKhUP7vmY6w",
  4854. "group_name": "阿里系列模型"
  4855. },
  4856. {
  4857. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-plus-latest?serviceSite=asia-pacific-china",
  4858. "model_name": "qwen-plus-latest",
  4859. "prices": {
  4860. "256k<input": {
  4861. "输入": {
  4862. "raw": "4.8",
  4863. "unit": "元/每百万tokens",
  4864. "price": 4.8,
  4865. "currency": "CNY"
  4866. },
  4867. "输出": {
  4868. "raw": "48",
  4869. "unit": "元/每百万tokens",
  4870. "price": 48.0,
  4871. "currency": "CNY"
  4872. },
  4873. "输出(思考)": {
  4874. "raw": "64",
  4875. "unit": "元/每百万tokens",
  4876. "price": 64.0,
  4877. "currency": "CNY"
  4878. },
  4879. "输入(Batch File)": {
  4880. "raw": "2.4",
  4881. "unit": "元/每百万tokens",
  4882. "price": 2.4,
  4883. "currency": "CNY"
  4884. },
  4885. "输出(Batch File)": {
  4886. "raw": "24",
  4887. "unit": "元/每百万tokens",
  4888. "price": 24.0,
  4889. "currency": "CNY"
  4890. },
  4891. "思考模式输出(Batch File)": {
  4892. "raw": "32",
  4893. "unit": "元/每百万tokens",
  4894. "price": 32.0,
  4895. "currency": "CNY"
  4896. }
  4897. },
  4898. "input<=128k": {
  4899. "输入": {
  4900. "raw": "0.8",
  4901. "unit": "元/每百万tokens",
  4902. "price": 0.8,
  4903. "currency": "CNY"
  4904. },
  4905. "输出": {
  4906. "raw": "2",
  4907. "unit": "元/每百万tokens",
  4908. "price": 2.0,
  4909. "currency": "CNY"
  4910. },
  4911. "输出(思考)": {
  4912. "raw": "8",
  4913. "unit": "元/每百万tokens",
  4914. "price": 8.0,
  4915. "currency": "CNY"
  4916. },
  4917. "输入(Batch File)": {
  4918. "raw": "0.4",
  4919. "unit": "元/每百万tokens",
  4920. "price": 0.4,
  4921. "currency": "CNY"
  4922. },
  4923. "输出(Batch File)": {
  4924. "raw": "1",
  4925. "unit": "元/每百万tokens",
  4926. "price": 1.0,
  4927. "currency": "CNY"
  4928. },
  4929. "思考模式输出(Batch File)": {
  4930. "raw": "4",
  4931. "unit": "元/每百万tokens",
  4932. "price": 4.0,
  4933. "currency": "CNY"
  4934. }
  4935. },
  4936. "128k<input<=256k": {
  4937. "输入": {
  4938. "raw": "2.4",
  4939. "unit": "元/每百万tokens",
  4940. "price": 2.4,
  4941. "currency": "CNY"
  4942. },
  4943. "输出": {
  4944. "raw": "20",
  4945. "unit": "元/每百万tokens",
  4946. "price": 20.0,
  4947. "currency": "CNY"
  4948. },
  4949. "输出(思考)": {
  4950. "raw": "24",
  4951. "unit": "元/每百万tokens",
  4952. "price": 24.0,
  4953. "currency": "CNY"
  4954. },
  4955. "输入(Batch File)": {
  4956. "raw": "1.2",
  4957. "unit": "元/每百万tokens",
  4958. "price": 1.2,
  4959. "currency": "CNY"
  4960. },
  4961. "输出(Batch File)": {
  4962. "raw": "10",
  4963. "unit": "元/每百万tokens",
  4964. "price": 10.0,
  4965. "currency": "CNY"
  4966. },
  4967. "思考模式输出(Batch File)": {
  4968. "raw": "12",
  4969. "unit": "元/每百万tokens",
  4970. "price": 12.0,
  4971. "currency": "CNY"
  4972. }
  4973. }
  4974. },
  4975. "model_info": {
  4976. "features": {
  4977. "cache存储": false,
  4978. "前缀续写": true,
  4979. "批量推理": true,
  4980. "模型体验": true,
  4981. "模型调优": false,
  4982. "联网搜索": true,
  4983. "结构化输出": true,
  4984. "function calling": true
  4985. },
  4986. "model_code": "qwen-plus-latest",
  4987. "description": "千问系列能力均衡的模型,推理效果和速度介于千问-Max和千问-Turbo之间,适合中等复杂任务。本模型是动态更新版本,模型更新不会提前通知。",
  4988. "display_tags": [
  4989. "Qwen3",
  4990. "深度思考",
  4991. "文本生成"
  4992. ],
  4993. "input_modalities": [
  4994. "Text"
  4995. ],
  4996. "output_modalities": [
  4997. "Text"
  4998. ]
  4999. },
  5000. "rate_limits": {
  5001. "RPM": "15000",
  5002. "TPM": "1200000",
  5003. "上下文长度": "1M",
  5004. "最大输入长度": "995K",
  5005. "最大输出长度": "32K"
  5006. },
  5007. "tool_prices": [],
  5008. "icon": "https://img.alicdn.com/imgextra/i3/O1CN01Kmx9dR1wcHOaMMXAk_!!6000000006328-55-tps-28-28.svg",
  5009. "scraped_at": "2026-05-08T04:18:01.359915Z",
  5010. "discount": 1.0,
  5011. "api_key": "LuWDTrBgiu2uIse5_7r0r3nGgyKcr9lZs7gOuP0ePbPukww",
  5012. "group_name": "阿里系列模型"
  5013. },
  5014. {
  5015. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-plus?serviceSite=asia-pacific-china",
  5016. "model_name": "qwen-plus",
  5017. "prices": {
  5018. "256k<input": {
  5019. "输入": {
  5020. "raw": "4.8",
  5021. "unit": "元/每百万tokens",
  5022. "price": 4.8,
  5023. "currency": "CNY"
  5024. },
  5025. "输出": {
  5026. "raw": "48",
  5027. "unit": "元/每百万tokens",
  5028. "price": 48.0,
  5029. "currency": "CNY"
  5030. },
  5031. "显式缓存创建": {
  5032. "raw": "6",
  5033. "unit": "元/每百万tokens",
  5034. "price": 6.0,
  5035. "currency": "CNY"
  5036. },
  5037. "显式缓存命中": {
  5038. "raw": "0.48",
  5039. "note": "原价显示",
  5040. "unit": "元/每百万tokens",
  5041. "price": 0.48,
  5042. "currency": "CNY",
  5043. "price_original": 4.8
  5044. },
  5045. "输出(思考)": {
  5046. "raw": "64",
  5047. "unit": "元/每百万tokens",
  5048. "price": 64.0,
  5049. "currency": "CNY"
  5050. },
  5051. "输入(Batch File)": {
  5052. "raw": "2.4",
  5053. "unit": "元/每百万tokens",
  5054. "price": 2.4,
  5055. "currency": "CNY"
  5056. },
  5057. "输出(Batch File)": {
  5058. "raw": "24",
  5059. "note": "原价显示; 原价显示",
  5060. "unit": "元/每百万tokens",
  5061. "price": 24.0,
  5062. "currency": "CNY",
  5063. "price_original": 64.0
  5064. },
  5065. "输入(缓存命中)": {
  5066. "raw": "0.96",
  5067. "unit": "元/每百万tokens",
  5068. "price": 0.96,
  5069. "currency": "CNY"
  5070. },
  5071. "思考模式输出(Batch File)": {
  5072. "raw": "32",
  5073. "unit": "元/每百万tokens",
  5074. "price": 32.0,
  5075. "currency": "CNY"
  5076. }
  5077. },
  5078. "input<=128k": {
  5079. "输入": {
  5080. "raw": "0.8",
  5081. "unit": "元/每百万tokens",
  5082. "price": 0.8,
  5083. "currency": "CNY"
  5084. },
  5085. "输出": {
  5086. "raw": "2",
  5087. "unit": "元/每百万tokens",
  5088. "price": 2.0,
  5089. "currency": "CNY"
  5090. },
  5091. "显式缓存创建": {
  5092. "raw": "1",
  5093. "unit": "元/每百万tokens",
  5094. "price": 1.0,
  5095. "currency": "CNY"
  5096. },
  5097. "显式缓存命中": {
  5098. "raw": "0.08",
  5099. "note": "原价显示",
  5100. "unit": "元/每百万tokens",
  5101. "price": 0.08,
  5102. "currency": "CNY",
  5103. "price_original": 0.8
  5104. },
  5105. "输出(思考)": {
  5106. "raw": "8",
  5107. "unit": "元/每百万tokens",
  5108. "price": 8.0,
  5109. "currency": "CNY"
  5110. },
  5111. "输入(Batch File)": {
  5112. "raw": "0.4",
  5113. "unit": "元/每百万tokens",
  5114. "price": 0.4,
  5115. "currency": "CNY"
  5116. },
  5117. "输入(缓存命中)": {
  5118. "raw": "0.16",
  5119. "unit": "元/每百万tokens",
  5120. "price": 0.16,
  5121. "currency": "CNY"
  5122. },
  5123. "思考模式输出(Batch File)": {
  5124. "raw": "4",
  5125. "note": "原价显示; 原价显示",
  5126. "unit": "元/每百万tokens",
  5127. "price": 4.0,
  5128. "currency": "CNY",
  5129. "price_original": 8.0
  5130. }
  5131. },
  5132. "128k<input<=256k": {
  5133. "输入": {
  5134. "raw": "2.4",
  5135. "unit": "元/每百万tokens",
  5136. "price": 2.4,
  5137. "currency": "CNY"
  5138. },
  5139. "输出": {
  5140. "raw": "20",
  5141. "unit": "元/每百万tokens",
  5142. "price": 20.0,
  5143. "currency": "CNY"
  5144. },
  5145. "显式缓存创建": {
  5146. "raw": "3",
  5147. "unit": "元/每百万tokens",
  5148. "price": 3.0,
  5149. "currency": "CNY"
  5150. },
  5151. "显式缓存命中": {
  5152. "raw": "0.24",
  5153. "note": "原价显示",
  5154. "unit": "元/每百万tokens",
  5155. "price": 0.24,
  5156. "currency": "CNY",
  5157. "price_original": 2.4
  5158. },
  5159. "输出(思考)": {
  5160. "raw": "24",
  5161. "unit": "元/每百万tokens",
  5162. "price": 24.0,
  5163. "currency": "CNY"
  5164. },
  5165. "输入(Batch File)": {
  5166. "raw": "1.2",
  5167. "unit": "元/每百万tokens",
  5168. "price": 1.2,
  5169. "currency": "CNY"
  5170. },
  5171. "输出(Batch File)": {
  5172. "raw": "10",
  5173. "note": "原价显示; 原价显示",
  5174. "unit": "元/每百万tokens",
  5175. "price": 10.0,
  5176. "currency": "CNY",
  5177. "price_original": 24.0
  5178. },
  5179. "输入(缓存命中)": {
  5180. "raw": "0.48",
  5181. "unit": "元/每百万tokens",
  5182. "price": 0.48,
  5183. "currency": "CNY"
  5184. },
  5185. "思考模式输出(Batch File)": {
  5186. "raw": "12",
  5187. "unit": "元/每百万tokens",
  5188. "price": 12.0,
  5189. "currency": "CNY"
  5190. }
  5191. }
  5192. },
  5193. "model_info": {
  5194. "features": {
  5195. "cache存储": true,
  5196. "前缀续写": true,
  5197. "批量推理": true,
  5198. "模型体验": true,
  5199. "模型调优": false,
  5200. "联网搜索": true,
  5201. "结构化输出": true,
  5202. "function calling": true
  5203. },
  5204. "model_code": "qwen-plus",
  5205. "description": "千问超大规模语言模型的增强版,支持中文英文等不同语言输入。主干模型、latest和快照04-28已升级Qwen3系列,实现思考模式和非思考模式的有效融合,可在对话中切换模式。",
  5206. "display_tags": [
  5207. "Qwen3",
  5208. "深度思考",
  5209. "文本生成"
  5210. ],
  5211. "input_modalities": [
  5212. "Text"
  5213. ],
  5214. "output_modalities": [
  5215. "Text"
  5216. ]
  5217. },
  5218. "rate_limits": {
  5219. "RPM": "30000",
  5220. "TPM": "5000000",
  5221. "上下文长度": "1M",
  5222. "最大输入长度": "997K",
  5223. "最大输出长度": "32K",
  5224. "最大思维链长度": "80K"
  5225. },
  5226. "tool_prices": [],
  5227. "icon": "https://img.alicdn.com/imgextra/i3/O1CN01Kmx9dR1wcHOaMMXAk_!!6000000006328-55-tps-28-28.svg",
  5228. "scraped_at": "2026-05-08T04:18:17.304506Z",
  5229. "discount": 1.0,
  5230. "api_key": "LuWDW9vEhleOwnehzx8Urygsoykqq8Ec07YesKhUP7vmY6w",
  5231. "group_name": "阿里系列模型"
  5232. },
  5233. {
  5234. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-vl-max?serviceSite=asia-pacific-china",
  5235. "model_name": "qwen-vl-max",
  5236. "prices": {
  5237. "调优": {
  5238. "raw": "150",
  5239. "unit": "元/每百万tokens",
  5240. "price": 150.0,
  5241. "currency": "CNY"
  5242. },
  5243. "输入": {
  5244. "raw": "1.6",
  5245. "unit": "元/每百万tokens",
  5246. "price": 1.6,
  5247. "currency": "CNY"
  5248. },
  5249. "输出": {
  5250. "raw": "4",
  5251. "unit": "元/每百万tokens",
  5252. "price": 4.0,
  5253. "currency": "CNY"
  5254. },
  5255. "输入(Batch File)": {
  5256. "raw": "0.8",
  5257. "unit": "元/每百万tokens",
  5258. "price": 0.8,
  5259. "currency": "CNY"
  5260. },
  5261. "输出(Batch File)": {
  5262. "raw": "2",
  5263. "unit": "元/每百万tokens",
  5264. "price": 2.0,
  5265. "currency": "CNY"
  5266. },
  5267. "输入(缓存命中)": {
  5268. "raw": "0.32",
  5269. "unit": "元/每百万tokens",
  5270. "price": 0.32,
  5271. "currency": "CNY"
  5272. }
  5273. },
  5274. "model_info": {
  5275. "features": {
  5276. "cache存储": true,
  5277. "前缀续写": true,
  5278. "批量推理": true,
  5279. "模型体验": true,
  5280. "模型调优": false,
  5281. "联网搜索": false,
  5282. "结构化输出": true,
  5283. "function calling": false
  5284. },
  5285. "model_code": "qwen-vl-max",
  5286. "description": "Qwen-VL-Max,即千问超大规模视觉语言模型。相比增强版,再次提升视觉推理能力和指令遵循能力,提供更高的视觉感知和认知水平。在更多复杂任务上提供最佳的性能。",
  5287. "display_tags": [
  5288. "视觉理解"
  5289. ],
  5290. "input_modalities": [
  5291. "Text",
  5292. "Image",
  5293. "Video"
  5294. ],
  5295. "output_modalities": [
  5296. "Text"
  5297. ]
  5298. },
  5299. "rate_limits": {
  5300. "RPM": "1200",
  5301. "TPM": "1000000",
  5302. "上下文长度": "128K",
  5303. "最大输入长度": "126K",
  5304. "最大输出长度": "8K"
  5305. },
  5306. "tool_prices": [],
  5307. "icon": "https://img.alicdn.com/imgextra/i3/O1CN01Kmx9dR1wcHOaMMXAk_!!6000000006328-55-tps-28-28.svg",
  5308. "scraped_at": "2026-05-08T04:09:22.798654Z",
  5309. "discount": 1.0,
  5310. "api_key": "LuWDW9vEhleOwnehzx8Urygsoykqq8Ec07YesKhUP7vmY6w",
  5311. "group_name": "阿里系列模型"
  5312. },
  5313. {
  5314. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-vl-ocr-latest?serviceSite=asia-pacific-china",
  5315. "model_name": "qwen-vl-ocr-latest",
  5316. "prices": {
  5317. "输入": {
  5318. "raw": "0.3",
  5319. "unit": "元/每百万tokens",
  5320. "price": 0.3,
  5321. "currency": "CNY"
  5322. },
  5323. "输出": {
  5324. "raw": "0.5",
  5325. "unit": "元/每百万tokens",
  5326. "price": 0.5,
  5327. "currency": "CNY"
  5328. },
  5329. "输入(Batch File)": {
  5330. "raw": "0.15",
  5331. "unit": "元/每百万tokens",
  5332. "price": 0.15,
  5333. "currency": "CNY"
  5334. },
  5335. "输出(Batch File)": {
  5336. "raw": "0.25",
  5337. "unit": "元/每百万tokens",
  5338. "price": 0.25,
  5339. "currency": "CNY"
  5340. }
  5341. },
  5342. "model_info": {
  5343. "features": {
  5344. "cache存储": false,
  5345. "前缀续写": false,
  5346. "批量推理": true,
  5347. "模型体验": true,
  5348. "模型调优": false,
  5349. "联网搜索": false,
  5350. "结构化输出": false,
  5351. "function calling": false
  5352. },
  5353. "model_code": "qwen-vl-ocr-latest",
  5354. "description": "千问VL-OCR(qwen-vl-ocr),即基于Qwen-VL训练的OCR识别大模型。通过统一模型的方式聚合多种图文识别、解析、处理类任务,提供强大的图文识别能力。",
  5355. "display_tags": [
  5356. "视觉理解"
  5357. ],
  5358. "input_modalities": [
  5359. "Text",
  5360. "Image"
  5361. ],
  5362. "output_modalities": [
  5363. "Text"
  5364. ]
  5365. },
  5366. "rate_limits": {
  5367. "RPM": "1200",
  5368. "TPM": "6000000",
  5369. "上下文长度": "38K",
  5370. "最大输入长度": "30K",
  5371. "最大输出长度": "8K"
  5372. },
  5373. "tool_prices": [],
  5374. "icon": "https://img.alicdn.com/imgextra/i3/O1CN01Kmx9dR1wcHOaMMXAk_!!6000000006328-55-tps-28-28.svg",
  5375. "scraped_at": "2026-05-08T04:17:35.114897Z",
  5376. "discount": 1.0,
  5377. "api_key": "LuWDTrBgiu2uIse5_7r0r3nGgyKcr9lZs7gOuP0ePbPukww",
  5378. "group_name": "阿里系列模型"
  5379. },
  5380. {
  5381. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-vl-ocr?serviceSite=asia-pacific-china",
  5382. "model_name": "qwen-vl-ocr",
  5383. "prices": {
  5384. "输入": {
  5385. "raw": "0.3",
  5386. "unit": "元/每百万tokens",
  5387. "price": 0.3,
  5388. "currency": "CNY"
  5389. },
  5390. "输出": {
  5391. "raw": "0.5",
  5392. "unit": "元/每百万tokens",
  5393. "price": 0.5,
  5394. "currency": "CNY"
  5395. },
  5396. "输入(Batch File)": {
  5397. "raw": "0.15",
  5398. "unit": "元/每百万tokens",
  5399. "price": 0.15,
  5400. "currency": "CNY"
  5401. },
  5402. "输出(Batch File)": {
  5403. "raw": "0.25",
  5404. "unit": "元/每百万tokens",
  5405. "price": 0.25,
  5406. "currency": "CNY"
  5407. }
  5408. },
  5409. "model_info": {
  5410. "features": {
  5411. "cache存储": false,
  5412. "前缀续写": false,
  5413. "批量推理": false,
  5414. "模型体验": true,
  5415. "模型调优": false,
  5416. "联网搜索": false,
  5417. "结构化输出": false,
  5418. "function calling": false
  5419. },
  5420. "model_code": "qwen-vl-ocr",
  5421. "description": "Qwen-VL-OCR,即基于Qwen-VL训练的OCR识别大模型。通过统一模型的方式聚合多种图文识别、解析、处理类任务,提供强大的图文识别能力。",
  5422. "display_tags": [
  5423. "视觉理解"
  5424. ],
  5425. "input_modalities": [
  5426. "Text",
  5427. "Image"
  5428. ],
  5429. "output_modalities": [
  5430. "Text"
  5431. ]
  5432. },
  5433. "rate_limits": {
  5434. "RPM": "600",
  5435. "TPM": "6000000",
  5436. "上下文长度": "38K",
  5437. "最大输入长度": "30K",
  5438. "最大输出长度": "8K"
  5439. },
  5440. "tool_prices": [],
  5441. "icon": "https://img.alicdn.com/imgextra/i3/O1CN01Kmx9dR1wcHOaMMXAk_!!6000000006328-55-tps-28-28.svg",
  5442. "scraped_at": "2026-05-08T04:17:46.001584Z",
  5443. "discount": 1.0,
  5444. "api_key": "LuWDW9vEhleOwnehzx8Urygsoykqq8Ec07YesKhUP7vmY6w",
  5445. "group_name": "阿里系列模型"
  5446. },
  5447. {
  5448. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/text-embedding-v2?serviceSite=asia-pacific-china",
  5449. "model_name": "text-embedding-v2",
  5450. "prices": {
  5451. "文本输入": {
  5452. "raw": "0.7",
  5453. "unit": "元/每百万tokens",
  5454. "price": 0.7,
  5455. "currency": "CNY"
  5456. },
  5457. "向量输入(Batch File)": {
  5458. "raw": "0.35",
  5459. "unit": "元/每百万tokens",
  5460. "price": 0.35,
  5461. "currency": "CNY"
  5462. }
  5463. },
  5464. "model_info": {
  5465. "features": {
  5466. "cache存储": false,
  5467. "前缀续写": false,
  5468. "批量推理": false,
  5469. "模型体验": false,
  5470. "模型调优": false,
  5471. "联网搜索": false,
  5472. "结构化输出": false,
  5473. "function calling": false
  5474. },
  5475. "model_code": "text-embedding-v2",
  5476. "description": "通用文本向量,是通义实验室基于LLM底座的多语言文本统一向量模型,面向全球多个主流语种,提供高水准的向量服务,帮助开发者将文本数据快速转换为高质量的向量数据。",
  5477. "display_tags": [
  5478. "向量模型"
  5479. ],
  5480. "input_modalities": [
  5481. "Text"
  5482. ],
  5483. "output_modalities": []
  5484. },
  5485. "rate_limits": {
  5486. "RPM": "1800",
  5487. "TPM": "1200000",
  5488. "上下文长度": null,
  5489. "最大输入长度": null,
  5490. "最大输出长度": null
  5491. },
  5492. "tool_prices": [],
  5493. "icon": "https://img.alicdn.com/imgextra/i3/O1CN01Kmx9dR1wcHOaMMXAk_!!6000000006328-55-tps-28-28.svg",
  5494. "scraped_at": "2026-05-08T04:06:51.976227Z",
  5495. "discount": 1.0,
  5496. "api_key": "LuWDW9vEhleOwnehzx8Urygsoykqq8Ec07YesKhUP7vmY6w",
  5497. "group_name": "阿里系列模型"
  5498. },
  5499. {
  5500. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/text-embedding-v3?serviceSite=asia-pacific-china",
  5501. "model_name": "text-embedding-v3",
  5502. "prices": {
  5503. "文本输入": {
  5504. "raw": "0.5",
  5505. "unit": "元/每百万tokens",
  5506. "price": 0.5,
  5507. "currency": "CNY"
  5508. },
  5509. "向量输入(Batch File)": {
  5510. "raw": "0.25",
  5511. "unit": "元/每百万tokens",
  5512. "price": 0.25,
  5513. "currency": "CNY"
  5514. }
  5515. },
  5516. "model_info": {
  5517. "features": {
  5518. "cache存储": false,
  5519. "前缀续写": false,
  5520. "批量推理": false,
  5521. "模型体验": false,
  5522. "模型调优": false,
  5523. "联网搜索": false,
  5524. "结构化输出": false,
  5525. "function calling": false
  5526. },
  5527. "model_code": "text-embedding-v3",
  5528. "description": "通用文本向量,是通义实验室基于LLM底座的多语言文本统一向量模型,面向全球多个主流语种,提供高水准的向量服务,帮助开发者将文本数据快速转换为高质量的向量数据。",
  5529. "display_tags": [
  5530. "向量模型"
  5531. ],
  5532. "input_modalities": [
  5533. "Text"
  5534. ],
  5535. "output_modalities": []
  5536. },
  5537. "rate_limits": {
  5538. "RPM": "1800",
  5539. "TPM": "1200000",
  5540. "上下文长度": null,
  5541. "最大输入长度": null,
  5542. "最大输出长度": null
  5543. },
  5544. "tool_prices": [],
  5545. "icon": "https://img.alicdn.com/imgextra/i3/O1CN01Kmx9dR1wcHOaMMXAk_!!6000000006328-55-tps-28-28.svg",
  5546. "scraped_at": "2026-05-08T04:06:40.762529Z",
  5547. "discount": 1.0,
  5548. "api_key": "LuWDW9vEhleOwnehzx8Urygsoykqq8Ec07YesKhUP7vmY6w",
  5549. "group_name": "阿里系列模型"
  5550. },
  5551. {
  5552. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/text-embedding-v4?serviceSite=asia-pacific-china",
  5553. "model_name": "text-embedding-v4",
  5554. "prices": {
  5555. "文本输入": {
  5556. "raw": "0.5",
  5557. "unit": "元/每百万tokens",
  5558. "price": 0.5,
  5559. "currency": "CNY"
  5560. },
  5561. "向量输入(Batch File)": {
  5562. "raw": "0.25",
  5563. "unit": "元/每百万tokens",
  5564. "price": 0.25,
  5565. "currency": "CNY"
  5566. }
  5567. },
  5568. "model_info": {
  5569. "features": {
  5570. "cache存储": false,
  5571. "前缀续写": false,
  5572. "批量推理": false,
  5573. "模型体验": false,
  5574. "模型调优": false,
  5575. "联网搜索": false,
  5576. "结构化输出": false,
  5577. "function calling": false
  5578. },
  5579. "model_code": "text-embedding-v4",
  5580. "description": "是通义实验室基于Qwen3训练的多语言文本统一向量模型,相较V3版本在文本检索、聚类、分类性能大幅提升;在MTEB多语言、中英、Code检索等评测任务上效果提升15%~40%;支持64~2048维用户自定义向量维度。",
  5581. "display_tags": [
  5582. "向量模型"
  5583. ],
  5584. "input_modalities": [
  5585. "Text"
  5586. ],
  5587. "output_modalities": []
  5588. },
  5589. "rate_limits": {
  5590. "RPM": "1800",
  5591. "TPM": "1200000",
  5592. "上下文长度": null,
  5593. "最大输入长度": null,
  5594. "最大输出长度": null
  5595. },
  5596. "tool_prices": [],
  5597. "icon": "https://img.alicdn.com/imgextra/i3/O1CN01Kmx9dR1wcHOaMMXAk_!!6000000006328-55-tps-28-28.svg",
  5598. "scraped_at": "2026-05-08T04:06:29.499912Z",
  5599. "discount": 1.0,
  5600. "api_key": "LuWDW9vEhleOwnehzx8Urygsoykqq8Ec07YesKhUP7vmY6w",
  5601. "group_name": "阿里系列模型"
  5602. },
  5603. {
  5604. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/tongyi-embedding-vision-plus?serviceSite=asia-pacific-china",
  5605. "model_name": "tongyi-embedding-vision-plus",
  5606. "prices": {
  5607. "图片输入": {
  5608. "raw": "0.5",
  5609. "unit": "元/每百万tokens",
  5610. "price": 0.5,
  5611. "currency": "CNY"
  5612. }
  5613. },
  5614. "model_info": {
  5615. "features": {
  5616. "cache存储": false,
  5617. "前缀续写": false,
  5618. "批量推理": false,
  5619. "模型体验": false,
  5620. "模型调优": false,
  5621. "联网搜索": false,
  5622. "结构化输出": false,
  5623. "function calling": false
  5624. },
  5625. "model_code": "tongyi-embedding-vision-plus",
  5626. "description": "Embedding-Vision是基于LLM底座的视觉多模态表征模型,具有以视觉为中心、领域性能优异(电商、 安防、相册/图库、自驾等)、高性价比的特点。兼容文本、图像、视频3种模态,可应用于以图搜图、以文搜图、以文搜视频,以视频搜视频等下游任务场景。",
  5627. "display_tags": [
  5628. "多模态向量"
  5629. ],
  5630. "input_modalities": [
  5631. "Text",
  5632. "Image",
  5633. "Video"
  5634. ],
  5635. "output_modalities": []
  5636. },
  5637. "rate_limits": {
  5638. "RPM": "600",
  5639. "TPM": "200000",
  5640. "上下文长度": null,
  5641. "最大输入长度": null,
  5642. "最大输出长度": null
  5643. },
  5644. "tool_prices": [],
  5645. "icon": "https://img.alicdn.com/imgextra/i3/O1CN01Kmx9dR1wcHOaMMXAk_!!6000000006328-55-tps-28-28.svg",
  5646. "scraped_at": "2026-05-08T04:06:18.539238Z",
  5647. "discount": 1.0,
  5648. "api_key": "LuWDW9vEhleOwnehzx8Urygsoykqq8Ec07YesKhUP7vmY6w",
  5649. "group_name": "阿里系列模型"
  5650. },
  5651. {
  5652. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/wan2.2-s2v?serviceSite=asia-pacific-china",
  5653. "model_name": "wan2.2-s2v",
  5654. "prices": {
  5655. "视频生成(480P)": {
  5656. "raw": "0.5",
  5657. "unit": "元/每秒",
  5658. "price": 0.5,
  5659. "currency": "CNY"
  5660. },
  5661. "视频生成(720P)": {
  5662. "raw": "0.9",
  5663. "unit": "元/每秒",
  5664. "price": 0.9,
  5665. "currency": "CNY"
  5666. }
  5667. },
  5668. "model_info": {
  5669. "features": {
  5670. "cache存储": false,
  5671. "前缀续写": false,
  5672. "批量推理": false,
  5673. "模型体验": false,
  5674. "模型调优": false,
  5675. "联网搜索": false,
  5676. "结构化输出": false,
  5677. "function calling": false
  5678. },
  5679. "model_code": "wan2.2-s2v",
  5680. "description": "wan2.2-s2v 是一款视频生成模型,可基于人物图片和人声音频文件,生成高质量的人物说话/唱歌/表演动态视频。",
  5681. "display_tags": [
  5682. "wan2.2",
  5683. "视频生成"
  5684. ],
  5685. "input_modalities": [
  5686. "Image"
  5687. ],
  5688. "output_modalities": [
  5689. "Video"
  5690. ]
  5691. },
  5692. "rate_limits": {},
  5693. "tool_prices": [],
  5694. "icon": "https://img.alicdn.com/imgextra/i3/O1CN01Kmx9dR1wcHOaMMXAk_!!6000000006328-55-tps-28-28.svg",
  5695. "scraped_at": "2026-05-08T04:06:07.731040Z",
  5696. "discount": 1.0,
  5697. "api_key": "LuWDTrBgiu2uIse5_7r0r3nGgyKcr9lZs7gOuP0ePbPukww",
  5698. "group_name": "阿里系列模型"
  5699. },
  5700. {
  5701. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/wan2.5-i2i-preview?serviceSite=asia-pacific-china",
  5702. "model_name": "wan2.5-i2i-preview",
  5703. "prices": {
  5704. "图片生成": {
  5705. "raw": "0.2",
  5706. "unit": "元/每张",
  5707. "price": 0.2,
  5708. "currency": "CNY"
  5709. }
  5710. },
  5711. "model_info": {
  5712. "features": {
  5713. "cache存储": false,
  5714. "前缀续写": false,
  5715. "批量推理": false,
  5716. "模型体验": true,
  5717. "模型调优": false,
  5718. "联网搜索": false,
  5719. "结构化输出": false,
  5720. "function calling": false
  5721. },
  5722. "model_code": "wan2.5-i2i-preview",
  5723. "description": "万相2.5-图像编辑-Preview,全新升级模型架构。支持指令控制实现丰富的图像编辑能力,指令遵循能力进一步提升,支持高一致性保持的多图参考生成,文字生成表现优异。",
  5724. "display_tags": [
  5725. "wan2.5",
  5726. "图像生成"
  5727. ],
  5728. "input_modalities": [
  5729. "Text",
  5730. "Image"
  5731. ],
  5732. "output_modalities": [
  5733. "Image"
  5734. ]
  5735. },
  5736. "rate_limits": {
  5737. "RPM": "300",
  5738. "上下文长度": null,
  5739. "最大输入长度": null,
  5740. "最大输出长度": null
  5741. },
  5742. "tool_prices": [],
  5743. "icon": "https://img.alicdn.com/imgextra/i3/O1CN01Kmx9dR1wcHOaMMXAk_!!6000000006328-55-tps-28-28.svg",
  5744. "scraped_at": "2026-05-08T04:15:04.863921Z",
  5745. "discount": 1.0,
  5746. "api_key": "LuWDTrBgiu2uIse5_7r0r3nGgyKcr9lZs7gOuP0ePbPukww",
  5747. "group_name": "阿里系列模型"
  5748. },
  5749. {
  5750. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/wan2.5-i2v-preview?serviceSite=asia-pacific-china",
  5751. "model_name": "wan2.5-i2v-preview",
  5752. "prices": {
  5753. "视频生成(480P)": {
  5754. "raw": "0.3",
  5755. "unit": "元/每秒",
  5756. "price": 0.3,
  5757. "currency": "CNY"
  5758. },
  5759. "视频生成(720P)": {
  5760. "raw": "0.6",
  5761. "unit": "元/每秒",
  5762. "price": 0.6,
  5763. "currency": "CNY"
  5764. },
  5765. "视频生成(1080P)": {
  5766. "raw": "1",
  5767. "unit": "元/每秒",
  5768. "price": 1.0,
  5769. "currency": "CNY"
  5770. }
  5771. },
  5772. "model_info": {
  5773. "features": {
  5774. "cache存储": false,
  5775. "前缀续写": false,
  5776. "批量推理": false,
  5777. "模型体验": true,
  5778. "模型调优": false,
  5779. "联网搜索": false,
  5780. "结构化输出": false,
  5781. "function calling": false
  5782. },
  5783. "model_code": "wan2.5-i2v-preview",
  5784. "description": "万相2.5-图生视频-Preview,全新升级技术架构,支持与画面同步的声音生成,支持10秒长视频生成,更强的指令遵循能力,运动能力、画面质感进一步提升。",
  5785. "display_tags": [
  5786. "wan2.5",
  5787. "视频生成"
  5788. ],
  5789. "input_modalities": [
  5790. "Text",
  5791. "Image",
  5792. "Audio"
  5793. ],
  5794. "output_modalities": [
  5795. "Video",
  5796. "Audio"
  5797. ]
  5798. },
  5799. "rate_limits": {
  5800. "RPM": "300",
  5801. "上下文长度": null,
  5802. "最大输入长度": null,
  5803. "最大输出长度": null
  5804. },
  5805. "tool_prices": [],
  5806. "icon": "https://img.alicdn.com/imgextra/i3/O1CN01Kmx9dR1wcHOaMMXAk_!!6000000006328-55-tps-28-28.svg",
  5807. "scraped_at": "2026-05-08T04:11:59.975696Z",
  5808. "discount": 1.0,
  5809. "api_key": "LuWDTrBgiu2uIse5_7r0r3nGgyKcr9lZs7gOuP0ePbPukww",
  5810. "group_name": "阿里系列模型"
  5811. },
  5812. {
  5813. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/wan2.5-t2i-preview?serviceSite=asia-pacific-china",
  5814. "model_name": "wan2.5-t2i-preview",
  5815. "prices": {
  5816. "图片生成": {
  5817. "raw": "0.2",
  5818. "unit": "元/每张",
  5819. "price": 0.2,
  5820. "currency": "CNY"
  5821. }
  5822. },
  5823. "model_info": {
  5824. "features": {
  5825. "cache存储": false,
  5826. "前缀续写": false,
  5827. "批量推理": false,
  5828. "模型体验": true,
  5829. "模型调优": false,
  5830. "联网搜索": false,
  5831. "结构化输出": false,
  5832. "function calling": false
  5833. },
  5834. "model_code": "wan2.5-t2i-preview",
  5835. "description": "万相2.5-文生图-Preview,全新升级模型架构。画面美学、设计感、真实质感显著提升,精准指令遵循,擅长中英文和小语种文字生成,支持复杂结构化长文本和图表、架构图等内容生成。",
  5836. "display_tags": [
  5837. "wan2.5",
  5838. "图像生成"
  5839. ],
  5840. "input_modalities": [
  5841. "Text"
  5842. ],
  5843. "output_modalities": [
  5844. "Image"
  5845. ]
  5846. },
  5847. "rate_limits": {
  5848. "RPM": "300",
  5849. "上下文长度": null,
  5850. "最大输入长度": null,
  5851. "最大输出长度": null
  5852. },
  5853. "tool_prices": [],
  5854. "icon": "https://img.alicdn.com/imgextra/i3/O1CN01Kmx9dR1wcHOaMMXAk_!!6000000006328-55-tps-28-28.svg",
  5855. "scraped_at": "2026-05-08T04:14:53.600456Z",
  5856. "discount": 1.0,
  5857. "api_key": "LuWDTrBgiu2uIse5_7r0r3nGgyKcr9lZs7gOuP0ePbPukww",
  5858. "group_name": "阿里系列模型"
  5859. },
  5860. {
  5861. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/wan2.5-t2v-preview?serviceSite=asia-pacific-china",
  5862. "model_name": "wan2.5-t2v-preview",
  5863. "prices": {
  5864. "视频生成(480P)": {
  5865. "raw": "0.3",
  5866. "unit": "元/每秒",
  5867. "price": 0.3,
  5868. "currency": "CNY"
  5869. },
  5870. "视频生成(720P)": {
  5871. "raw": "0.6",
  5872. "unit": "元/每秒",
  5873. "price": 0.6,
  5874. "currency": "CNY"
  5875. },
  5876. "视频生成(1080P)": {
  5877. "raw": "1",
  5878. "unit": "元/每秒",
  5879. "price": 1.0,
  5880. "currency": "CNY"
  5881. }
  5882. },
  5883. "model_info": {
  5884. "features": {
  5885. "cache存储": false,
  5886. "前缀续写": false,
  5887. "批量推理": false,
  5888. "模型体验": true,
  5889. "模型调优": false,
  5890. "联网搜索": false,
  5891. "结构化输出": false,
  5892. "function calling": false
  5893. },
  5894. "model_code": "wan2.5-t2v-preview",
  5895. "description": "万相2.5-文生视频-Preview,全新升级模型架构,支持与画面同步的声音生成,支持10秒长视频生成,更强的指令遵循能力,运动能力、画面质感进一步提升。",
  5896. "display_tags": [
  5897. "wan2.5",
  5898. "视频生成"
  5899. ],
  5900. "input_modalities": [
  5901. "Text",
  5902. "Audio"
  5903. ],
  5904. "output_modalities": [
  5905. "Video",
  5906. "Audio"
  5907. ]
  5908. },
  5909. "rate_limits": {
  5910. "RPM": "300",
  5911. "上下文长度": null,
  5912. "最大输入长度": null,
  5913. "最大输出长度": null
  5914. },
  5915. "tool_prices": [],
  5916. "icon": "https://img.alicdn.com/imgextra/i3/O1CN01Kmx9dR1wcHOaMMXAk_!!6000000006328-55-tps-28-28.svg",
  5917. "scraped_at": "2026-05-08T04:11:48.684740Z",
  5918. "discount": 1.0,
  5919. "api_key": "LuWDTrBgiu2uIse5_7r0r3nGgyKcr9lZs7gOuP0ePbPukww",
  5920. "group_name": "阿里系列模型"
  5921. },
  5922. {
  5923. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/wan2.6-i2v?serviceSite=asia-pacific-china",
  5924. "model_name": "wan2.6-i2v",
  5925. "prices": {
  5926. "视频生成(720P)": {
  5927. "raw": "0.6",
  5928. "unit": "元/每秒",
  5929. "price": 0.6,
  5930. "currency": "CNY"
  5931. },
  5932. "视频生成(1080P)": {
  5933. "raw": "1",
  5934. "unit": "元/每秒",
  5935. "price": 1.0,
  5936. "currency": "CNY"
  5937. }
  5938. },
  5939. "model_info": {
  5940. "features": {
  5941. "cache存储": false,
  5942. "前缀续写": false,
  5943. "批量推理": false,
  5944. "模型体验": true,
  5945. "模型调优": false,
  5946. "联网搜索": false,
  5947. "结构化输出": false,
  5948. "function calling": false
  5949. },
  5950. "model_code": "wan2.6-i2v",
  5951. "description": "万相2.6-图生视频,智能分镜调度支持多镜头叙事,更高品质的声音生成,多人稳定对话,更自然真实音色,最高支持15秒时长生成",
  5952. "display_tags": [
  5953. "wan2.6",
  5954. "视频生成"
  5955. ],
  5956. "input_modalities": [
  5957. "Image",
  5958. "Text",
  5959. "Audio"
  5960. ],
  5961. "output_modalities": [
  5962. "Video",
  5963. "Audio"
  5964. ]
  5965. },
  5966. "rate_limits": {
  5967. "RPM": "300",
  5968. "上下文长度": null,
  5969. "最大输入长度": null,
  5970. "最大输出长度": null
  5971. },
  5972. "tool_prices": [],
  5973. "icon": "https://img.alicdn.com/imgextra/i3/O1CN01Kmx9dR1wcHOaMMXAk_!!6000000006328-55-tps-28-28.svg",
  5974. "scraped_at": "2026-05-08T04:11:39.520474Z",
  5975. "discount": 1.0,
  5976. "api_key": "LuWDTrBgiu2uIse5_7r0r3nGgyKcr9lZs7gOuP0ePbPukww",
  5977. "group_name": "阿里系列模型"
  5978. },
  5979. {
  5980. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/wan2.6-image?serviceSite=asia-pacific-china",
  5981. "model_name": "wan2.6-image",
  5982. "prices": {
  5983. "图片生成": {
  5984. "raw": "0.2",
  5985. "unit": "元/每张",
  5986. "price": 0.2,
  5987. "currency": "CNY"
  5988. }
  5989. },
  5990. "model_info": {
  5991. "features": {
  5992. "cache存储": false,
  5993. "前缀续写": false,
  5994. "批量推理": false,
  5995. "模型体验": false,
  5996. "模型调优": false,
  5997. "联网搜索": false,
  5998. "结构化输出": false,
  5999. "function calling": false
  6000. },
  6001. "model_code": "wan2.6-image",
  6002. "description": "万相2.6-图像生成,全能图像生成模型,支持图文一体化推理生成,具备多图创意融合、商用级一致性、美学要素迁移与镜头光影精确控制,全面提升图像生成的一致性、可控性和表现力。",
  6003. "display_tags": [
  6004. "wan2.6",
  6005. "图像生成"
  6006. ],
  6007. "input_modalities": [
  6008. "Text",
  6009. "Image"
  6010. ],
  6011. "output_modalities": [
  6012. "Image",
  6013. "Text"
  6014. ]
  6015. },
  6016. "rate_limits": {
  6017. "RPM": "300",
  6018. "上下文长度": null,
  6019. "最大输入长度": null,
  6020. "最大输出长度": null
  6021. },
  6022. "tool_prices": [],
  6023. "icon": "https://img.alicdn.com/imgextra/i3/O1CN01Kmx9dR1wcHOaMMXAk_!!6000000006328-55-tps-28-28.svg",
  6024. "scraped_at": "2026-05-08T04:14:42.923319Z",
  6025. "discount": 1.0,
  6026. "api_key": "LuWDTrBgiu2uIse5_7r0r3nGgyKcr9lZs7gOuP0ePbPukww",
  6027. "group_name": "阿里系列模型"
  6028. },
  6029. {
  6030. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/wan2.6-r2v?serviceSite=asia-pacific-china",
  6031. "model_name": "wan2.6-r2v",
  6032. "prices": {
  6033. "视频生成(720P)": {
  6034. "raw": "0.6",
  6035. "unit": "元/每秒",
  6036. "price": 0.6,
  6037. "currency": "CNY"
  6038. },
  6039. "视频生成(1080P)": {
  6040. "raw": "1",
  6041. "unit": "元/每秒",
  6042. "price": 1.0,
  6043. "currency": "CNY"
  6044. }
  6045. },
  6046. "model_info": {
  6047. "features": {
  6048. "cache存储": false,
  6049. "前缀续写": false,
  6050. "批量推理": false,
  6051. "模型体验": false,
  6052. "模型调优": false,
  6053. "联网搜索": false,
  6054. "结构化输出": false,
  6055. "function calling": false
  6056. },
  6057. "model_code": "wan2.6-r2v",
  6058. "description": "万相2.6-参考生视频,支持指定人物或任意物品进行参考,精准保持形象和声音的一致性,支持多角色参考合拍。提醒:当使用视频进行参考时,输入视频也会计入费用,详见模型计费文档。",
  6059. "display_tags": [
  6060. "wan2.6",
  6061. "视频生成"
  6062. ],
  6063. "input_modalities": [
  6064. "Image",
  6065. "Video",
  6066. "Text"
  6067. ],
  6068. "output_modalities": [
  6069. "Video",
  6070. "Audio"
  6071. ]
  6072. },
  6073. "rate_limits": {
  6074. "RPM": "300",
  6075. "上下文长度": null,
  6076. "最大输入长度": null,
  6077. "最大输出长度": null
  6078. },
  6079. "tool_prices": [],
  6080. "icon": "https://img.alicdn.com/imgextra/i3/O1CN01Kmx9dR1wcHOaMMXAk_!!6000000006328-55-tps-28-28.svg",
  6081. "scraped_at": "2026-05-08T04:11:28.503623Z",
  6082. "discount": 1.0,
  6083. "api_key": "LuWDTrBgiu2uIse5_7r0r3nGgyKcr9lZs7gOuP0ePbPukww",
  6084. "group_name": "阿里系列模型"
  6085. },
  6086. {
  6087. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/wan2.6-t2i?serviceSite=asia-pacific-china",
  6088. "model_name": "wan2.6-t2i",
  6089. "prices": {
  6090. "图片生成": {
  6091. "raw": "0.2",
  6092. "unit": "元/每张",
  6093. "price": 0.2,
  6094. "currency": "CNY"
  6095. }
  6096. },
  6097. "model_info": {
  6098. "features": {
  6099. "cache存储": false,
  6100. "前缀续写": false,
  6101. "批量推理": false,
  6102. "模型体验": true,
  6103. "模型调优": false,
  6104. "联网搜索": false,
  6105. "结构化输出": false,
  6106. "function calling": false
  6107. },
  6108. "model_code": "wan2.6-t2i",
  6109. "description": "万相2.6-文生图,画面质感、美学表现、指令遵循升级,在艺术风格精准控制、真实感人像、长文本生图及广泛历史文化IP覆盖上均表现出卓越能力,可生成高质量且富有表现力的视觉内容。",
  6110. "display_tags": [
  6111. "wan2.6",
  6112. "图像生成"
  6113. ],
  6114. "input_modalities": [
  6115. "Text"
  6116. ],
  6117. "output_modalities": [
  6118. "Image"
  6119. ]
  6120. },
  6121. "rate_limits": {
  6122. "RPM": "60",
  6123. "上下文长度": null,
  6124. "最大输入长度": null,
  6125. "最大输出长度": null
  6126. },
  6127. "tool_prices": [],
  6128. "icon": "https://img.alicdn.com/imgextra/i3/O1CN01Kmx9dR1wcHOaMMXAk_!!6000000006328-55-tps-28-28.svg",
  6129. "scraped_at": "2026-05-08T04:07:24.049372Z",
  6130. "discount": 1.0,
  6131. "api_key": "LuWDTrBgiu2uIse5_7r0r3nGgyKcr9lZs7gOuP0ePbPukww",
  6132. "group_name": "阿里系列模型"
  6133. },
  6134. {
  6135. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/wan2.6-t2v?serviceSite=asia-pacific-china",
  6136. "model_name": "wan2.6-t2v",
  6137. "prices": {
  6138. "视频生成(720P)": {
  6139. "raw": "0.6",
  6140. "unit": "元/每秒",
  6141. "price": 0.6,
  6142. "currency": "CNY"
  6143. },
  6144. "视频生成(1080P)": {
  6145. "raw": "1",
  6146. "unit": "元/每秒",
  6147. "price": 1.0,
  6148. "currency": "CNY"
  6149. }
  6150. },
  6151. "model_info": {
  6152. "features": {
  6153. "cache存储": false,
  6154. "前缀续写": false,
  6155. "批量推理": false,
  6156. "模型体验": true,
  6157. "模型调优": false,
  6158. "联网搜索": false,
  6159. "结构化输出": false,
  6160. "function calling": false
  6161. },
  6162. "model_code": "wan2.6-t2v",
  6163. "description": "万相2.6-文生视频,智能分镜调度支持多镜头叙事,能够生成主体、场景和氛围一致的多镜头叙事视频,最高支持15秒时长,更高品质的声音生成,更好的指令遵循和视觉质量",
  6164. "display_tags": [
  6165. "wan2.6",
  6166. "视频生成"
  6167. ],
  6168. "input_modalities": [
  6169. "Text",
  6170. "Audio"
  6171. ],
  6172. "output_modalities": [
  6173. "Video",
  6174. "Audio"
  6175. ]
  6176. },
  6177. "rate_limits": {
  6178. "RPM": "300",
  6179. "上下文长度": null,
  6180. "最大输入长度": null,
  6181. "最大输出长度": null
  6182. },
  6183. "tool_prices": [],
  6184. "icon": "https://img.alicdn.com/imgextra/i3/O1CN01Kmx9dR1wcHOaMMXAk_!!6000000006328-55-tps-28-28.svg",
  6185. "scraped_at": "2026-05-08T04:11:17.182640Z",
  6186. "discount": 1.0,
  6187. "api_key": "LuWDTrBgiu2uIse5_7r0r3nGgyKcr9lZs7gOuP0ePbPukww",
  6188. "group_name": "阿里系列模型"
  6189. }
  6190. ],
  6191. "parsed_prices": [
  6192. {
  6193. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/cosyvoice-clone-v1?serviceSite=asia-pacific-china",
  6194. "model_name": "cosyvoice-clone-v1",
  6195. "tier_min": null,
  6196. "tier_max": null,
  6197. "tier_unit": null,
  6198. "input_price": 2.0,
  6199. "output_price": null,
  6200. "currency": "CNY",
  6201. "unit": "元/每万字符",
  6202. "label": "语音合成"
  6203. },
  6204. {
  6205. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/cosyvoice-v3-flash?serviceSite=asia-pacific-china",
  6206. "model_name": "cosyvoice-v3-flash",
  6207. "tier_min": null,
  6208. "tier_max": null,
  6209. "tier_unit": null,
  6210. "input_price": 1.0,
  6211. "output_price": null,
  6212. "currency": "CNY",
  6213. "unit": "元/每万字符",
  6214. "label": "语音合成"
  6215. },
  6216. {
  6217. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/cosyvoice-v3-plus?serviceSite=asia-pacific-china",
  6218. "model_name": "cosyvoice-v3-plus",
  6219. "tier_min": null,
  6220. "tier_max": null,
  6221. "tier_unit": null,
  6222. "input_price": 2.0,
  6223. "output_price": null,
  6224. "currency": "CNY",
  6225. "unit": "元/每万字符",
  6226. "label": "语音合成"
  6227. },
  6228. {
  6229. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/deepseek-r1-0528?serviceSite=asia-pacific-china",
  6230. "model_name": "deepseek-r1-0528",
  6231. "tier_min": null,
  6232. "tier_max": null,
  6233. "tier_unit": null,
  6234. "input_price": 4.0,
  6235. "output_price": 16.0,
  6236. "currency": "CNY",
  6237. "unit": "元/每百万tokens",
  6238. "label": "输入/输出"
  6239. },
  6240. {
  6241. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/deepseek-r1-distill-qwen-14b?serviceSite=asia-pacific-china",
  6242. "model_name": "deepseek-r1-distill-qwen-14b",
  6243. "tier_min": null,
  6244. "tier_max": null,
  6245. "tier_unit": null,
  6246. "input_price": 1.0,
  6247. "output_price": 3.0,
  6248. "currency": "CNY",
  6249. "unit": "元/每百万tokens",
  6250. "label": "输入/输出"
  6251. },
  6252. {
  6253. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/deepseek-r1-distill-qwen-32b?serviceSite=asia-pacific-china",
  6254. "model_name": "deepseek-r1-distill-qwen-32b",
  6255. "tier_min": null,
  6256. "tier_max": null,
  6257. "tier_unit": null,
  6258. "input_price": 2.0,
  6259. "output_price": 6.0,
  6260. "currency": "CNY",
  6261. "unit": "元/每百万tokens",
  6262. "label": "输入/输出"
  6263. },
  6264. {
  6265. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/deepseek-r1-distill-qwen-7b?serviceSite=asia-pacific-china",
  6266. "model_name": "deepseek-r1-distill-qwen-7b",
  6267. "tier_min": null,
  6268. "tier_max": null,
  6269. "tier_unit": null,
  6270. "input_price": 0.5,
  6271. "output_price": 1.0,
  6272. "currency": "CNY",
  6273. "unit": "元/每百万tokens",
  6274. "label": "输入/输出"
  6275. },
  6276. {
  6277. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/deepseek-r1?serviceSite=asia-pacific-china",
  6278. "model_name": "deepseek-r1",
  6279. "tier_min": null,
  6280. "tier_max": null,
  6281. "tier_unit": null,
  6282. "input_price": 4.0,
  6283. "output_price": 16.0,
  6284. "currency": "CNY",
  6285. "unit": "元/每百万tokens",
  6286. "label": "输入/输出"
  6287. },
  6288. {
  6289. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/deepseek-v3.1?serviceSite=asia-pacific-china",
  6290. "model_name": "deepseek-v3.1",
  6291. "tier_min": null,
  6292. "tier_max": null,
  6293. "tier_unit": null,
  6294. "input_price": 4.0,
  6295. "output_price": 12.0,
  6296. "currency": "CNY",
  6297. "unit": "元/每百万tokens",
  6298. "label": "输入/输出"
  6299. },
  6300. {
  6301. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/deepseek-v3.2-exp?serviceSite=asia-pacific-china",
  6302. "model_name": "deepseek-v3.2-exp",
  6303. "tier_min": null,
  6304. "tier_max": null,
  6305. "tier_unit": null,
  6306. "input_price": 2.0,
  6307. "output_price": 3.0,
  6308. "currency": "CNY",
  6309. "unit": "元/每百万tokens",
  6310. "label": "输入/输出"
  6311. },
  6312. {
  6313. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/deepseek-v3.2?serviceSite=asia-pacific-china",
  6314. "model_name": "deepseek-v3.2",
  6315. "tier_min": null,
  6316. "tier_max": null,
  6317. "tier_unit": null,
  6318. "input_price": 2.0,
  6319. "output_price": 3.0,
  6320. "currency": "CNY",
  6321. "unit": "元/每百万tokens",
  6322. "label": "输入/输出"
  6323. },
  6324. {
  6325. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/deepseek-v3?serviceSite=asia-pacific-china",
  6326. "model_name": "deepseek-v3",
  6327. "tier_min": null,
  6328. "tier_max": null,
  6329. "tier_unit": null,
  6330. "input_price": 2.0,
  6331. "output_price": 8.0,
  6332. "currency": "CNY",
  6333. "unit": "元/每百万tokens",
  6334. "label": "输入/输出"
  6335. },
  6336. {
  6337. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/fun-asr-mtl?serviceSite=asia-pacific-china",
  6338. "model_name": "fun-asr-mtl",
  6339. "tier_min": null,
  6340. "tier_max": null,
  6341. "tier_unit": null,
  6342. "input_price": 0.0,
  6343. "output_price": 0.00022,
  6344. "currency": "CNY",
  6345. "unit": "元/每秒",
  6346. "label": "音频时长"
  6347. },
  6348. {
  6349. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/fun-asr-realtime?serviceSite=asia-pacific-china",
  6350. "model_name": "fun-asr-realtime",
  6351. "tier_min": null,
  6352. "tier_max": null,
  6353. "tier_unit": null,
  6354. "input_price": 0.0,
  6355. "output_price": 0.00033,
  6356. "currency": "CNY",
  6357. "unit": "元/每秒",
  6358. "label": "音频时长"
  6359. },
  6360. {
  6361. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/fun-asr?serviceSite=asia-pacific-china",
  6362. "model_name": "fun-asr",
  6363. "tier_min": null,
  6364. "tier_max": null,
  6365. "tier_unit": null,
  6366. "input_price": 0.0,
  6367. "output_price": 0.00022,
  6368. "currency": "CNY",
  6369. "unit": "元/每秒",
  6370. "label": "音频时长"
  6371. },
  6372. {
  6373. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/glm-5.1?serviceSite=asia-pacific-china",
  6374. "model_name": "glm-5.1",
  6375. "tier_min": 0.0,
  6376. "tier_max": 32000.0,
  6377. "tier_unit": "tokens",
  6378. "input_price": 6.0,
  6379. "output_price": 24.0,
  6380. "currency": "CNY",
  6381. "unit": "元/每百万tokens",
  6382. "label": "input<=32k"
  6383. },
  6384. {
  6385. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/glm-5.1?serviceSite=asia-pacific-china",
  6386. "model_name": "glm-5.1",
  6387. "tier_min": 32000.0,
  6388. "tier_max": 200000.0,
  6389. "tier_unit": "tokens",
  6390. "input_price": 8.0,
  6391. "output_price": 28.0,
  6392. "currency": "CNY",
  6393. "unit": "元/每百万tokens",
  6394. "label": "32k<input<=200k"
  6395. },
  6396. {
  6397. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/glm-5?serviceSite=asia-pacific-china",
  6398. "model_name": "glm-5",
  6399. "tier_min": 0.0,
  6400. "tier_max": 32000.0,
  6401. "tier_unit": "tokens",
  6402. "input_price": 4.0,
  6403. "output_price": 18.0,
  6404. "currency": "CNY",
  6405. "unit": "元/每百万tokens",
  6406. "label": "input<=32k"
  6407. },
  6408. {
  6409. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/glm-5?serviceSite=asia-pacific-china",
  6410. "model_name": "glm-5",
  6411. "tier_min": 32000.0,
  6412. "tier_max": 200000.0,
  6413. "tier_unit": "tokens",
  6414. "input_price": 6.0,
  6415. "output_price": 22.0,
  6416. "currency": "CNY",
  6417. "unit": "元/每百万tokens",
  6418. "label": "32k<input<=200k"
  6419. },
  6420. {
  6421. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/gte-rerank-v2?serviceSite=asia-pacific-china",
  6422. "model_name": "gte-rerank-v2",
  6423. "tier_min": null,
  6424. "tier_max": null,
  6425. "tier_unit": null,
  6426. "input_price": 0.8,
  6427. "output_price": null,
  6428. "currency": "CNY",
  6429. "unit": "元/每百万tokens",
  6430. "label": "文本输入"
  6431. },
  6432. {
  6433. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/kimi-k2.5?serviceSite=asia-pacific-china",
  6434. "model_name": "kimi-k2.5",
  6435. "tier_min": null,
  6436. "tier_max": null,
  6437. "tier_unit": null,
  6438. "input_price": 4.0,
  6439. "output_price": 21.0,
  6440. "currency": "CNY",
  6441. "unit": "元/每百万tokens",
  6442. "label": "输入/输出"
  6443. },
  6444. {
  6445. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/MiniMax-M2.5?serviceSite=asia-pacific-china",
  6446. "model_name": "MiniMax-M2.5",
  6447. "tier_min": null,
  6448. "tier_max": null,
  6449. "tier_unit": null,
  6450. "input_price": 2.1,
  6451. "output_price": 8.4,
  6452. "currency": "CNY",
  6453. "unit": "元/每百万tokens",
  6454. "label": "输入/输出"
  6455. },
  6456. {
  6457. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/paraformer-realtime-v1?serviceSite=asia-pacific-china",
  6458. "model_name": "paraformer-realtime-v1",
  6459. "tier_min": null,
  6460. "tier_max": null,
  6461. "tier_unit": null,
  6462. "input_price": 0.0,
  6463. "output_price": 0.00024,
  6464. "currency": "CNY",
  6465. "unit": "元/每秒",
  6466. "label": "音频时长"
  6467. },
  6468. {
  6469. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/paraformer-realtime-v2?serviceSite=asia-pacific-china",
  6470. "model_name": "paraformer-realtime-v2",
  6471. "tier_min": null,
  6472. "tier_max": null,
  6473. "tier_unit": null,
  6474. "input_price": 0.0,
  6475. "output_price": 0.00024,
  6476. "currency": "CNY",
  6477. "unit": "元/每秒",
  6478. "label": "音频时长"
  6479. },
  6480. {
  6481. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/paraformer-v1?serviceSite=asia-pacific-china",
  6482. "model_name": "paraformer-v1",
  6483. "tier_min": null,
  6484. "tier_max": null,
  6485. "tier_unit": null,
  6486. "input_price": 0.0,
  6487. "output_price": 0.00008,
  6488. "currency": "CNY",
  6489. "unit": "元/每秒",
  6490. "label": "音频时长"
  6491. },
  6492. {
  6493. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/paraformer-v2?serviceSite=asia-pacific-china",
  6494. "model_name": "paraformer-v2",
  6495. "tier_min": null,
  6496. "tier_max": null,
  6497. "tier_unit": null,
  6498. "input_price": 0.0,
  6499. "output_price": 0.00008,
  6500. "currency": "CNY",
  6501. "unit": "元/每秒",
  6502. "label": "音频时长"
  6503. },
  6504. {
  6505. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen2.5-vl-embedding?serviceSite=asia-pacific-china",
  6506. "model_name": "qwen2.5-vl-embedding",
  6507. "tier_min": null,
  6508. "tier_max": null,
  6509. "tier_unit": null,
  6510. "input_price": 1.8,
  6511. "output_price": null,
  6512. "currency": "CNY",
  6513. "unit": "元/每百万tokens",
  6514. "label": "图片输入"
  6515. },
  6516. {
  6517. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen2.5-vl-embedding?serviceSite=asia-pacific-china",
  6518. "model_name": "qwen2.5-vl-embedding",
  6519. "tier_min": null,
  6520. "tier_max": null,
  6521. "tier_unit": null,
  6522. "input_price": 0.7,
  6523. "output_price": null,
  6524. "currency": "CNY",
  6525. "unit": "元/每百万tokens",
  6526. "label": "文本输入"
  6527. },
  6528. {
  6529. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3.5-flash?serviceSite=asia-pacific-china",
  6530. "model_name": "qwen3.5-flash",
  6531. "tier_min": 256000.0,
  6532. "tier_max": null,
  6533. "tier_unit": "tokens",
  6534. "input_price": 1.2,
  6535. "output_price": 12.0,
  6536. "currency": "CNY",
  6537. "unit": "元/每百万tokens",
  6538. "label": "256k<input"
  6539. },
  6540. {
  6541. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3.5-flash?serviceSite=asia-pacific-china",
  6542. "model_name": "qwen3.5-flash",
  6543. "tier_min": 0.0,
  6544. "tier_max": 128000.0,
  6545. "tier_unit": "tokens",
  6546. "input_price": 0.2,
  6547. "output_price": 2.0,
  6548. "currency": "CNY",
  6549. "unit": "元/每百万tokens",
  6550. "label": "input<=128k"
  6551. },
  6552. {
  6553. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3.5-flash?serviceSite=asia-pacific-china",
  6554. "model_name": "qwen3.5-flash",
  6555. "tier_min": 128000.0,
  6556. "tier_max": 256000.0,
  6557. "tier_unit": "tokens",
  6558. "input_price": 0.8,
  6559. "output_price": 8.0,
  6560. "currency": "CNY",
  6561. "unit": "元/每百万tokens",
  6562. "label": "128k<input<=256k"
  6563. },
  6564. {
  6565. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3.5-plus?serviceSite=asia-pacific-china",
  6566. "model_name": "qwen3.5-plus",
  6567. "tier_min": 256000.0,
  6568. "tier_max": null,
  6569. "tier_unit": "tokens",
  6570. "input_price": 4.0,
  6571. "output_price": 24.0,
  6572. "currency": "CNY",
  6573. "unit": "元/每百万tokens",
  6574. "label": "256k<input"
  6575. },
  6576. {
  6577. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3.5-plus?serviceSite=asia-pacific-china",
  6578. "model_name": "qwen3.5-plus",
  6579. "tier_min": 0.0,
  6580. "tier_max": 128000.0,
  6581. "tier_unit": "tokens",
  6582. "input_price": 0.8,
  6583. "output_price": 4.8,
  6584. "currency": "CNY",
  6585. "unit": "元/每百万tokens",
  6586. "label": "input<=128k"
  6587. },
  6588. {
  6589. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3.5-plus?serviceSite=asia-pacific-china",
  6590. "model_name": "qwen3.5-plus",
  6591. "tier_min": 128000.0,
  6592. "tier_max": 256000.0,
  6593. "tier_unit": "tokens",
  6594. "input_price": 2.0,
  6595. "output_price": 12.0,
  6596. "currency": "CNY",
  6597. "unit": "元/每百万tokens",
  6598. "label": "128k<input<=256k"
  6599. },
  6600. {
  6601. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3.6-plus?serviceSite=asia-pacific-china",
  6602. "model_name": "qwen3.6-plus",
  6603. "tier_min": 256000.0,
  6604. "tier_max": null,
  6605. "tier_unit": "tokens",
  6606. "input_price": 8.0,
  6607. "output_price": 48.0,
  6608. "currency": "CNY",
  6609. "unit": "元/每百万tokens",
  6610. "label": "256k<input"
  6611. },
  6612. {
  6613. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3.6-plus?serviceSite=asia-pacific-china",
  6614. "model_name": "qwen3.6-plus",
  6615. "tier_min": 0.0,
  6616. "tier_max": 256000.0,
  6617. "tier_unit": "tokens",
  6618. "input_price": 2.0,
  6619. "output_price": 12.0,
  6620. "currency": "CNY",
  6621. "unit": "元/每百万tokens",
  6622. "label": "input<=256k"
  6623. },
  6624. {
  6625. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-asr-flash-realtime?serviceSite=asia-pacific-china",
  6626. "model_name": "qwen3-asr-flash-realtime",
  6627. "tier_min": null,
  6628. "tier_max": null,
  6629. "tier_unit": null,
  6630. "input_price": 0.0,
  6631. "output_price": 0.00033,
  6632. "currency": "CNY",
  6633. "unit": "元/每秒",
  6634. "label": "音频时长"
  6635. },
  6636. {
  6637. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-asr-flash?serviceSite=asia-pacific-china",
  6638. "model_name": "qwen3-asr-flash",
  6639. "tier_min": null,
  6640. "tier_max": null,
  6641. "tier_unit": null,
  6642. "input_price": 0.0,
  6643. "output_price": 0.00022,
  6644. "currency": "CNY",
  6645. "unit": "元/每秒",
  6646. "label": "音频时长"
  6647. },
  6648. {
  6649. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-coder-flash?serviceSite=asia-pacific-china",
  6650. "model_name": "qwen3-coder-flash",
  6651. "tier_min": 256000.0,
  6652. "tier_max": null,
  6653. "tier_unit": "tokens",
  6654. "input_price": 5.0,
  6655. "output_price": 25.0,
  6656. "currency": "CNY",
  6657. "unit": "元/每百万tokens",
  6658. "label": "256k<input"
  6659. },
  6660. {
  6661. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-coder-flash?serviceSite=asia-pacific-china",
  6662. "model_name": "qwen3-coder-flash",
  6663. "tier_min": 0.0,
  6664. "tier_max": 32000.0,
  6665. "tier_unit": "tokens",
  6666. "input_price": 1.0,
  6667. "output_price": 4.0,
  6668. "currency": "CNY",
  6669. "unit": "元/每百万tokens",
  6670. "label": "input<=32k"
  6671. },
  6672. {
  6673. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-coder-flash?serviceSite=asia-pacific-china",
  6674. "model_name": "qwen3-coder-flash",
  6675. "tier_min": 32000.0,
  6676. "tier_max": 128000.0,
  6677. "tier_unit": "tokens",
  6678. "input_price": 1.5,
  6679. "output_price": 6.0,
  6680. "currency": "CNY",
  6681. "unit": "元/每百万tokens",
  6682. "label": "32k<input<=128k"
  6683. },
  6684. {
  6685. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-coder-flash?serviceSite=asia-pacific-china",
  6686. "model_name": "qwen3-coder-flash",
  6687. "tier_min": 128000.0,
  6688. "tier_max": 256000.0,
  6689. "tier_unit": "tokens",
  6690. "input_price": 2.5,
  6691. "output_price": 10.0,
  6692. "currency": "CNY",
  6693. "unit": "元/每百万tokens",
  6694. "label": "128k<input<=256k"
  6695. },
  6696. {
  6697. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-coder-next?serviceSite=asia-pacific-china",
  6698. "model_name": "qwen3-coder-next",
  6699. "tier_min": 0.0,
  6700. "tier_max": 32000.0,
  6701. "tier_unit": "tokens",
  6702. "input_price": 1.0,
  6703. "output_price": 4.0,
  6704. "currency": "CNY",
  6705. "unit": "元/每百万tokens",
  6706. "label": "input<=32k"
  6707. },
  6708. {
  6709. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-coder-next?serviceSite=asia-pacific-china",
  6710. "model_name": "qwen3-coder-next",
  6711. "tier_min": 32000.0,
  6712. "tier_max": 128000.0,
  6713. "tier_unit": "tokens",
  6714. "input_price": 1.5,
  6715. "output_price": 6.0,
  6716. "currency": "CNY",
  6717. "unit": "元/每百万tokens",
  6718. "label": "32k<input<=128k"
  6719. },
  6720. {
  6721. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-coder-next?serviceSite=asia-pacific-china",
  6722. "model_name": "qwen3-coder-next",
  6723. "tier_min": 128000.0,
  6724. "tier_max": 256000.0,
  6725. "tier_unit": "tokens",
  6726. "input_price": 2.5,
  6727. "output_price": 10.0,
  6728. "currency": "CNY",
  6729. "unit": "元/每百万tokens",
  6730. "label": "128k<input<=256k"
  6731. },
  6732. {
  6733. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-coder-plus?serviceSite=asia-pacific-china",
  6734. "model_name": "qwen3-coder-plus",
  6735. "tier_min": 256000.0,
  6736. "tier_max": null,
  6737. "tier_unit": "tokens",
  6738. "input_price": 20.0,
  6739. "output_price": 200.0,
  6740. "currency": "CNY",
  6741. "unit": "元/每百万tokens",
  6742. "label": "256k<input"
  6743. },
  6744. {
  6745. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-coder-plus?serviceSite=asia-pacific-china",
  6746. "model_name": "qwen3-coder-plus",
  6747. "tier_min": 0.0,
  6748. "tier_max": 32000.0,
  6749. "tier_unit": "tokens",
  6750. "input_price": 4.0,
  6751. "output_price": 16.0,
  6752. "currency": "CNY",
  6753. "unit": "元/每百万tokens",
  6754. "label": "input<=32k"
  6755. },
  6756. {
  6757. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-coder-plus?serviceSite=asia-pacific-china",
  6758. "model_name": "qwen3-coder-plus",
  6759. "tier_min": 32000.0,
  6760. "tier_max": 128000.0,
  6761. "tier_unit": "tokens",
  6762. "input_price": 6.0,
  6763. "output_price": 24.0,
  6764. "currency": "CNY",
  6765. "unit": "元/每百万tokens",
  6766. "label": "32k<input<=128k"
  6767. },
  6768. {
  6769. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-coder-plus?serviceSite=asia-pacific-china",
  6770. "model_name": "qwen3-coder-plus",
  6771. "tier_min": 128000.0,
  6772. "tier_max": 256000.0,
  6773. "tier_unit": "tokens",
  6774. "input_price": 10.0,
  6775. "output_price": 40.0,
  6776. "currency": "CNY",
  6777. "unit": "元/每百万tokens",
  6778. "label": "128k<input<=256k"
  6779. },
  6780. {
  6781. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-max?serviceSite=asia-pacific-china",
  6782. "model_name": "qwen3-max",
  6783. "tier_min": 0.0,
  6784. "tier_max": 32000.0,
  6785. "tier_unit": "tokens",
  6786. "input_price": 2.5,
  6787. "output_price": 10.0,
  6788. "currency": "CNY",
  6789. "unit": "元/每百万tokens",
  6790. "label": "input<=32k"
  6791. },
  6792. {
  6793. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-max?serviceSite=asia-pacific-china",
  6794. "model_name": "qwen3-max",
  6795. "tier_min": 32000.0,
  6796. "tier_max": 128000.0,
  6797. "tier_unit": "tokens",
  6798. "input_price": 4.0,
  6799. "output_price": 16.0,
  6800. "currency": "CNY",
  6801. "unit": "元/每百万tokens",
  6802. "label": "32k<input<=128k"
  6803. },
  6804. {
  6805. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-max?serviceSite=asia-pacific-china",
  6806. "model_name": "qwen3-max",
  6807. "tier_min": 128000.0,
  6808. "tier_max": 256000.0,
  6809. "tier_unit": "tokens",
  6810. "input_price": 7.0,
  6811. "output_price": 28.0,
  6812. "currency": "CNY",
  6813. "unit": "元/每百万tokens",
  6814. "label": "128k<input<=256k"
  6815. },
  6816. {
  6817. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-omni-flash-realtime?serviceSite=asia-pacific-china",
  6818. "model_name": "qwen3-omni-flash-realtime",
  6819. "tier_min": null,
  6820. "tier_max": null,
  6821. "tier_unit": null,
  6822. "input_price": 2.2,
  6823. "output_price": null,
  6824. "currency": "CNY",
  6825. "unit": "元/每百万tokens",
  6826. "label": "输入:文本"
  6827. },
  6828. {
  6829. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-omni-flash-realtime?serviceSite=asia-pacific-china",
  6830. "model_name": "qwen3-omni-flash-realtime",
  6831. "tier_min": null,
  6832. "tier_max": null,
  6833. "tier_unit": null,
  6834. "input_price": 18.9,
  6835. "output_price": null,
  6836. "currency": "CNY",
  6837. "unit": "元/每百万tokens",
  6838. "label": "输入:音频"
  6839. },
  6840. {
  6841. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-omni-flash-realtime?serviceSite=asia-pacific-china",
  6842. "model_name": "qwen3-omni-flash-realtime",
  6843. "tier_min": null,
  6844. "tier_max": null,
  6845. "tier_unit": null,
  6846. "input_price": 3.9,
  6847. "output_price": null,
  6848. "currency": "CNY",
  6849. "unit": "元/每百万tokens",
  6850. "label": "输入:图片/视频"
  6851. },
  6852. {
  6853. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-omni-flash-realtime?serviceSite=asia-pacific-china",
  6854. "model_name": "qwen3-omni-flash-realtime",
  6855. "tier_min": null,
  6856. "tier_max": null,
  6857. "tier_unit": null,
  6858. "input_price": 8.3,
  6859. "output_price": null,
  6860. "currency": "CNY",
  6861. "unit": "元/每百万tokens",
  6862. "label": "输出:文本(输入仅包含文本时)"
  6863. },
  6864. {
  6865. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-omni-flash-realtime?serviceSite=asia-pacific-china",
  6866. "model_name": "qwen3-omni-flash-realtime",
  6867. "tier_min": null,
  6868. "tier_max": null,
  6869. "tier_unit": null,
  6870. "input_price": 75.1,
  6871. "output_price": null,
  6872. "currency": "CNY",
  6873. "unit": "元/每百万tokens",
  6874. "label": "输出:文本+音频(输出的文本不计费)"
  6875. },
  6876. {
  6877. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-omni-flash-realtime?serviceSite=asia-pacific-china",
  6878. "model_name": "qwen3-omni-flash-realtime",
  6879. "tier_min": null,
  6880. "tier_max": null,
  6881. "tier_unit": null,
  6882. "input_price": 15.2,
  6883. "output_price": null,
  6884. "currency": "CNY",
  6885. "unit": "元/每百万tokens",
  6886. "label": "输出:文本(输入包含图片/音频/视频时)"
  6887. },
  6888. {
  6889. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-omni-flash?serviceSite=asia-pacific-china",
  6890. "model_name": "qwen3-omni-flash",
  6891. "tier_min": null,
  6892. "tier_max": null,
  6893. "tier_unit": null,
  6894. "input_price": 1.8,
  6895. "output_price": null,
  6896. "currency": "CNY",
  6897. "unit": "元/每百万tokens",
  6898. "label": "输入:文本"
  6899. },
  6900. {
  6901. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-omni-flash?serviceSite=asia-pacific-china",
  6902. "model_name": "qwen3-omni-flash",
  6903. "tier_min": null,
  6904. "tier_max": null,
  6905. "tier_unit": null,
  6906. "input_price": 15.8,
  6907. "output_price": null,
  6908. "currency": "CNY",
  6909. "unit": "元/每百万tokens",
  6910. "label": "输入:音频"
  6911. },
  6912. {
  6913. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-omni-flash?serviceSite=asia-pacific-china",
  6914. "model_name": "qwen3-omni-flash",
  6915. "tier_min": null,
  6916. "tier_max": null,
  6917. "tier_unit": null,
  6918. "input_price": 3.3,
  6919. "output_price": null,
  6920. "currency": "CNY",
  6921. "unit": "元/每百万tokens",
  6922. "label": "输入:图片/视频"
  6923. },
  6924. {
  6925. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-omni-flash?serviceSite=asia-pacific-china",
  6926. "model_name": "qwen3-omni-flash",
  6927. "tier_min": null,
  6928. "tier_max": null,
  6929. "tier_unit": null,
  6930. "input_price": 6.9,
  6931. "output_price": null,
  6932. "currency": "CNY",
  6933. "unit": "元/每百万tokens",
  6934. "label": "输出:文本(输入仅包含文本时)"
  6935. },
  6936. {
  6937. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-omni-flash?serviceSite=asia-pacific-china",
  6938. "model_name": "qwen3-omni-flash",
  6939. "tier_min": null,
  6940. "tier_max": null,
  6941. "tier_unit": null,
  6942. "input_price": 62.6,
  6943. "output_price": null,
  6944. "currency": "CNY",
  6945. "unit": "元/每百万tokens",
  6946. "label": "输出:文本+音频(输出的文本不计费)"
  6947. },
  6948. {
  6949. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-omni-flash?serviceSite=asia-pacific-china",
  6950. "model_name": "qwen3-omni-flash",
  6951. "tier_min": null,
  6952. "tier_max": null,
  6953. "tier_unit": null,
  6954. "input_price": 12.7,
  6955. "output_price": null,
  6956. "currency": "CNY",
  6957. "unit": "元/每百万tokens",
  6958. "label": "输出:文本(输入包含图片/音频/视频时)"
  6959. },
  6960. {
  6961. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-rerank?serviceSite=asia-pacific-china",
  6962. "model_name": "qwen3-rerank",
  6963. "tier_min": null,
  6964. "tier_max": null,
  6965. "tier_unit": null,
  6966. "input_price": 0.5,
  6967. "output_price": null,
  6968. "currency": "CNY",
  6969. "unit": "元/每百万tokens",
  6970. "label": "文本输入"
  6971. },
  6972. {
  6973. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-tts-flash-realtime?serviceSite=asia-pacific-china",
  6974. "model_name": "qwen3-tts-flash-realtime",
  6975. "tier_min": null,
  6976. "tier_max": null,
  6977. "tier_unit": null,
  6978. "input_price": 1.0,
  6979. "output_price": null,
  6980. "currency": "CNY",
  6981. "unit": "元/每万字符",
  6982. "label": "语音合成"
  6983. },
  6984. {
  6985. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-tts-flash?serviceSite=asia-pacific-china",
  6986. "model_name": "qwen3-tts-flash",
  6987. "tier_min": null,
  6988. "tier_max": null,
  6989. "tier_unit": null,
  6990. "input_price": 0.8,
  6991. "output_price": null,
  6992. "currency": "CNY",
  6993. "unit": "元/每万字符",
  6994. "label": "语音合成"
  6995. },
  6996. {
  6997. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-vl-embedding?serviceSite=asia-pacific-china",
  6998. "model_name": "qwen3-vl-embedding",
  6999. "tier_min": null,
  7000. "tier_max": null,
  7001. "tier_unit": null,
  7002. "input_price": 1.8,
  7003. "output_price": null,
  7004. "currency": "CNY",
  7005. "unit": "元/每百万tokens",
  7006. "label": "图片输入"
  7007. },
  7008. {
  7009. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-vl-embedding?serviceSite=asia-pacific-china",
  7010. "model_name": "qwen3-vl-embedding",
  7011. "tier_min": null,
  7012. "tier_max": null,
  7013. "tier_unit": null,
  7014. "input_price": 0.7,
  7015. "output_price": null,
  7016. "currency": "CNY",
  7017. "unit": "元/每百万tokens",
  7018. "label": "文本输入"
  7019. },
  7020. {
  7021. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-vl-flash?serviceSite=asia-pacific-china",
  7022. "model_name": "qwen3-vl-flash",
  7023. "tier_min": 0.0,
  7024. "tier_max": 32000.0,
  7025. "tier_unit": "tokens",
  7026. "input_price": 0.15,
  7027. "output_price": 1.5,
  7028. "currency": "CNY",
  7029. "unit": "元/每百万tokens",
  7030. "label": "input<=32k"
  7031. },
  7032. {
  7033. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-vl-flash?serviceSite=asia-pacific-china",
  7034. "model_name": "qwen3-vl-flash",
  7035. "tier_min": 32000.0,
  7036. "tier_max": 128000.0,
  7037. "tier_unit": "tokens",
  7038. "input_price": 0.3,
  7039. "output_price": 3.0,
  7040. "currency": "CNY",
  7041. "unit": "元/每百万tokens",
  7042. "label": "32k<input<=128k"
  7043. },
  7044. {
  7045. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-vl-flash?serviceSite=asia-pacific-china",
  7046. "model_name": "qwen3-vl-flash",
  7047. "tier_min": 128000.0,
  7048. "tier_max": 256000.0,
  7049. "tier_unit": "tokens",
  7050. "input_price": 0.6,
  7051. "output_price": 6.0,
  7052. "currency": "CNY",
  7053. "unit": "元/每百万tokens",
  7054. "label": "128k<input<=256k"
  7055. },
  7056. {
  7057. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-vl-plus?serviceSite=asia-pacific-china",
  7058. "model_name": "qwen3-vl-plus",
  7059. "tier_min": 0.0,
  7060. "tier_max": 32000.0,
  7061. "tier_unit": "tokens",
  7062. "input_price": 1.0,
  7063. "output_price": 10.0,
  7064. "currency": "CNY",
  7065. "unit": "元/每百万tokens",
  7066. "label": "input<=32k"
  7067. },
  7068. {
  7069. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-vl-plus?serviceSite=asia-pacific-china",
  7070. "model_name": "qwen3-vl-plus",
  7071. "tier_min": 32000.0,
  7072. "tier_max": 128000.0,
  7073. "tier_unit": "tokens",
  7074. "input_price": 1.5,
  7075. "output_price": 15.0,
  7076. "currency": "CNY",
  7077. "unit": "元/每百万tokens",
  7078. "label": "32k<input<=128k"
  7079. },
  7080. {
  7081. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-vl-plus?serviceSite=asia-pacific-china",
  7082. "model_name": "qwen3-vl-plus",
  7083. "tier_min": 128000.0,
  7084. "tier_max": 256000.0,
  7085. "tier_unit": "tokens",
  7086. "input_price": 3.0,
  7087. "output_price": 30.0,
  7088. "currency": "CNY",
  7089. "unit": "元/每百万tokens",
  7090. "label": "128k<input<=256k"
  7091. },
  7092. {
  7093. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-vl-rerank?serviceSite=asia-pacific-china",
  7094. "model_name": "qwen3-vl-rerank",
  7095. "tier_min": null,
  7096. "tier_max": null,
  7097. "tier_unit": null,
  7098. "input_price": 1.8,
  7099. "output_price": null,
  7100. "currency": "CNY",
  7101. "unit": "元/每百万tokens",
  7102. "label": "图片输入"
  7103. },
  7104. {
  7105. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-vl-rerank?serviceSite=asia-pacific-china",
  7106. "model_name": "qwen3-vl-rerank",
  7107. "tier_min": null,
  7108. "tier_max": null,
  7109. "tier_unit": null,
  7110. "input_price": 0.7,
  7111. "output_price": null,
  7112. "currency": "CNY",
  7113. "unit": "元/每百万tokens",
  7114. "label": "文本输入"
  7115. },
  7116. {
  7117. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-coder-plus?serviceSite=asia-pacific-china",
  7118. "model_name": "qwen-coder-plus",
  7119. "tier_min": null,
  7120. "tier_max": null,
  7121. "tier_unit": null,
  7122. "input_price": 3.5,
  7123. "output_price": 7.0,
  7124. "currency": "CNY",
  7125. "unit": "元/每百万tokens",
  7126. "label": "输入/输出"
  7127. },
  7128. {
  7129. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-coder-turbo?serviceSite=asia-pacific-china",
  7130. "model_name": "qwen-coder-turbo",
  7131. "tier_min": null,
  7132. "tier_max": null,
  7133. "tier_unit": null,
  7134. "input_price": 2.0,
  7135. "output_price": 6.0,
  7136. "currency": "CNY",
  7137. "unit": "元/每百万tokens",
  7138. "label": "输入/输出"
  7139. },
  7140. {
  7141. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-deep-research?serviceSite=asia-pacific-china",
  7142. "model_name": "qwen-deep-research",
  7143. "tier_min": null,
  7144. "tier_max": null,
  7145. "tier_unit": null,
  7146. "input_price": 54.0,
  7147. "output_price": 163.0,
  7148. "currency": "CNY",
  7149. "unit": "元/每百万tokens",
  7150. "label": "输入/输出"
  7151. },
  7152. {
  7153. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-doc-turbo?serviceSite=asia-pacific-china",
  7154. "model_name": "qwen-doc-turbo",
  7155. "tier_min": null,
  7156. "tier_max": null,
  7157. "tier_unit": null,
  7158. "input_price": 0.6,
  7159. "output_price": 1.0,
  7160. "currency": "CNY",
  7161. "unit": "元/每百万tokens",
  7162. "label": "输入/输出"
  7163. },
  7164. {
  7165. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-flash?serviceSite=asia-pacific-china",
  7166. "model_name": "qwen-flash",
  7167. "tier_min": 256000.0,
  7168. "tier_max": null,
  7169. "tier_unit": "tokens",
  7170. "input_price": 1.2,
  7171. "output_price": 12.0,
  7172. "currency": "CNY",
  7173. "unit": "元/每百万tokens",
  7174. "label": "256k<input"
  7175. },
  7176. {
  7177. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-flash?serviceSite=asia-pacific-china",
  7178. "model_name": "qwen-flash",
  7179. "tier_min": 0.0,
  7180. "tier_max": 128000.0,
  7181. "tier_unit": "tokens",
  7182. "input_price": 0.15,
  7183. "output_price": 1.5,
  7184. "currency": "CNY",
  7185. "unit": "元/每百万tokens",
  7186. "label": "input<=128k"
  7187. },
  7188. {
  7189. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-flash?serviceSite=asia-pacific-china",
  7190. "model_name": "qwen-flash",
  7191. "tier_min": 128000.0,
  7192. "tier_max": 256000.0,
  7193. "tier_unit": "tokens",
  7194. "input_price": 0.6,
  7195. "output_price": 6.0,
  7196. "currency": "CNY",
  7197. "unit": "元/每百万tokens",
  7198. "label": "128k<input<=256k"
  7199. },
  7200. {
  7201. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-image-2.0-pro?serviceSite=asia-pacific-china",
  7202. "model_name": "qwen-image-2.0-pro",
  7203. "tier_min": null,
  7204. "tier_max": null,
  7205. "tier_unit": null,
  7206. "input_price": 0.0,
  7207. "output_price": 0.5,
  7208. "currency": "CNY",
  7209. "unit": "元/每张",
  7210. "label": "图片生成"
  7211. },
  7212. {
  7213. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-image-2.0?serviceSite=asia-pacific-china",
  7214. "model_name": "qwen-image-2.0",
  7215. "tier_min": null,
  7216. "tier_max": null,
  7217. "tier_unit": null,
  7218. "input_price": 0.0,
  7219. "output_price": 0.2,
  7220. "currency": "CNY",
  7221. "unit": "元/每张",
  7222. "label": "图片生成"
  7223. },
  7224. {
  7225. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-image-edit-plus?serviceSite=asia-pacific-china",
  7226. "model_name": "qwen-image-edit-plus",
  7227. "tier_min": null,
  7228. "tier_max": null,
  7229. "tier_unit": null,
  7230. "input_price": 0.0,
  7231. "output_price": 0.2,
  7232. "currency": "CNY",
  7233. "unit": "元/每张",
  7234. "label": "图片生成"
  7235. },
  7236. {
  7237. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-image-edit?serviceSite=asia-pacific-china",
  7238. "model_name": "qwen-image-edit",
  7239. "tier_min": null,
  7240. "tier_max": null,
  7241. "tier_unit": null,
  7242. "input_price": 0.0,
  7243. "output_price": 0.3,
  7244. "currency": "CNY",
  7245. "unit": "元/每张",
  7246. "label": "图片生成"
  7247. },
  7248. {
  7249. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-image-max?serviceSite=asia-pacific-china",
  7250. "model_name": "qwen-image-max",
  7251. "tier_min": null,
  7252. "tier_max": null,
  7253. "tier_unit": null,
  7254. "input_price": 0.0,
  7255. "output_price": 0.5,
  7256. "currency": "CNY",
  7257. "unit": "元/每张",
  7258. "label": "图片生成"
  7259. },
  7260. {
  7261. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-image-plus?serviceSite=asia-pacific-china",
  7262. "model_name": "qwen-image-plus",
  7263. "tier_min": null,
  7264. "tier_max": null,
  7265. "tier_unit": null,
  7266. "input_price": 0.0,
  7267. "output_price": 0.2,
  7268. "currency": "CNY",
  7269. "unit": "元/每张",
  7270. "label": "图片生成"
  7271. },
  7272. {
  7273. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-image?serviceSite=asia-pacific-china",
  7274. "model_name": "qwen-image",
  7275. "tier_min": null,
  7276. "tier_max": null,
  7277. "tier_unit": null,
  7278. "input_price": 0.0,
  7279. "output_price": 0.25,
  7280. "currency": "CNY",
  7281. "unit": "元/每张",
  7282. "label": "图片生成"
  7283. },
  7284. {
  7285. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-long-latest?serviceSite=asia-pacific-china",
  7286. "model_name": "qwen-long-latest",
  7287. "tier_min": null,
  7288. "tier_max": null,
  7289. "tier_unit": null,
  7290. "input_price": 0.5,
  7291. "output_price": 2.0,
  7292. "currency": "CNY",
  7293. "unit": "元/每百万tokens",
  7294. "label": "输入/输出"
  7295. },
  7296. {
  7297. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-long?serviceSite=asia-pacific-china",
  7298. "model_name": "qwen-long",
  7299. "tier_min": null,
  7300. "tier_max": null,
  7301. "tier_unit": null,
  7302. "input_price": 0.5,
  7303. "output_price": 2.0,
  7304. "currency": "CNY",
  7305. "unit": "元/每百万tokens",
  7306. "label": "输入/输出"
  7307. },
  7308. {
  7309. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-max-latest?serviceSite=asia-pacific-china",
  7310. "model_name": "qwen-max-latest",
  7311. "tier_min": null,
  7312. "tier_max": null,
  7313. "tier_unit": null,
  7314. "input_price": 2.4,
  7315. "output_price": 9.6,
  7316. "currency": "CNY",
  7317. "unit": "元/每百万tokens",
  7318. "label": "输入/输出"
  7319. },
  7320. {
  7321. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-max?serviceSite=asia-pacific-china",
  7322. "model_name": "qwen-max",
  7323. "tier_min": null,
  7324. "tier_max": null,
  7325. "tier_unit": null,
  7326. "input_price": 2.4,
  7327. "output_price": 9.6,
  7328. "currency": "CNY",
  7329. "unit": "元/每百万tokens",
  7330. "label": "输入/输出"
  7331. },
  7332. {
  7333. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-mt-flash?serviceSite=asia-pacific-china",
  7334. "model_name": "qwen-mt-flash",
  7335. "tier_min": null,
  7336. "tier_max": null,
  7337. "tier_unit": null,
  7338. "input_price": 0.7,
  7339. "output_price": 1.95,
  7340. "currency": "CNY",
  7341. "unit": "元/每百万tokens",
  7342. "label": "输入/输出"
  7343. },
  7344. {
  7345. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-mt-image?serviceSite=asia-pacific-china",
  7346. "model_name": "qwen-mt-image",
  7347. "tier_min": null,
  7348. "tier_max": null,
  7349. "tier_unit": null,
  7350. "input_price": 0.0,
  7351. "output_price": 0.003,
  7352. "currency": "CNY",
  7353. "unit": "元/每张",
  7354. "label": "图片生成"
  7355. },
  7356. {
  7357. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-mt-lite?serviceSite=asia-pacific-china",
  7358. "model_name": "qwen-mt-lite",
  7359. "tier_min": null,
  7360. "tier_max": null,
  7361. "tier_unit": null,
  7362. "input_price": 0.6,
  7363. "output_price": 1.6,
  7364. "currency": "CNY",
  7365. "unit": "元/每百万tokens",
  7366. "label": "输入/输出"
  7367. },
  7368. {
  7369. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-mt-plus?serviceSite=asia-pacific-china",
  7370. "model_name": "qwen-mt-plus",
  7371. "tier_min": null,
  7372. "tier_max": null,
  7373. "tier_unit": null,
  7374. "input_price": 1.8,
  7375. "output_price": 5.4,
  7376. "currency": "CNY",
  7377. "unit": "元/每百万tokens",
  7378. "label": "输入/输出"
  7379. },
  7380. {
  7381. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-mt-turbo?serviceSite=asia-pacific-china",
  7382. "model_name": "qwen-mt-turbo",
  7383. "tier_min": null,
  7384. "tier_max": null,
  7385. "tier_unit": null,
  7386. "input_price": 0.7,
  7387. "output_price": 1.95,
  7388. "currency": "CNY",
  7389. "unit": "元/每百万tokens",
  7390. "label": "输入/输出"
  7391. },
  7392. {
  7393. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-plus-latest?serviceSite=asia-pacific-china",
  7394. "model_name": "qwen-plus-latest",
  7395. "tier_min": 256000.0,
  7396. "tier_max": null,
  7397. "tier_unit": "tokens",
  7398. "input_price": 4.8,
  7399. "output_price": 48.0,
  7400. "currency": "CNY",
  7401. "unit": "元/每百万tokens",
  7402. "label": "256k<input"
  7403. },
  7404. {
  7405. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-plus-latest?serviceSite=asia-pacific-china",
  7406. "model_name": "qwen-plus-latest",
  7407. "tier_min": 0.0,
  7408. "tier_max": 128000.0,
  7409. "tier_unit": "tokens",
  7410. "input_price": 0.8,
  7411. "output_price": 2.0,
  7412. "currency": "CNY",
  7413. "unit": "元/每百万tokens",
  7414. "label": "input<=128k"
  7415. },
  7416. {
  7417. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-plus-latest?serviceSite=asia-pacific-china",
  7418. "model_name": "qwen-plus-latest",
  7419. "tier_min": 128000.0,
  7420. "tier_max": 256000.0,
  7421. "tier_unit": "tokens",
  7422. "input_price": 2.4,
  7423. "output_price": 20.0,
  7424. "currency": "CNY",
  7425. "unit": "元/每百万tokens",
  7426. "label": "128k<input<=256k"
  7427. },
  7428. {
  7429. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-plus?serviceSite=asia-pacific-china",
  7430. "model_name": "qwen-plus",
  7431. "tier_min": 256000.0,
  7432. "tier_max": null,
  7433. "tier_unit": "tokens",
  7434. "input_price": 4.8,
  7435. "output_price": 48.0,
  7436. "currency": "CNY",
  7437. "unit": "元/每百万tokens",
  7438. "label": "256k<input"
  7439. },
  7440. {
  7441. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-plus?serviceSite=asia-pacific-china",
  7442. "model_name": "qwen-plus",
  7443. "tier_min": 0.0,
  7444. "tier_max": 128000.0,
  7445. "tier_unit": "tokens",
  7446. "input_price": 0.8,
  7447. "output_price": 2.0,
  7448. "currency": "CNY",
  7449. "unit": "元/每百万tokens",
  7450. "label": "input<=128k"
  7451. },
  7452. {
  7453. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-plus?serviceSite=asia-pacific-china",
  7454. "model_name": "qwen-plus",
  7455. "tier_min": 128000.0,
  7456. "tier_max": 256000.0,
  7457. "tier_unit": "tokens",
  7458. "input_price": 2.4,
  7459. "output_price": 20.0,
  7460. "currency": "CNY",
  7461. "unit": "元/每百万tokens",
  7462. "label": "128k<input<=256k"
  7463. },
  7464. {
  7465. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-vl-max?serviceSite=asia-pacific-china",
  7466. "model_name": "qwen-vl-max",
  7467. "tier_min": null,
  7468. "tier_max": null,
  7469. "tier_unit": null,
  7470. "input_price": 1.6,
  7471. "output_price": 4.0,
  7472. "currency": "CNY",
  7473. "unit": "元/每百万tokens",
  7474. "label": "输入/输出"
  7475. },
  7476. {
  7477. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-vl-ocr-latest?serviceSite=asia-pacific-china",
  7478. "model_name": "qwen-vl-ocr-latest",
  7479. "tier_min": null,
  7480. "tier_max": null,
  7481. "tier_unit": null,
  7482. "input_price": 0.3,
  7483. "output_price": 0.5,
  7484. "currency": "CNY",
  7485. "unit": "元/每百万tokens",
  7486. "label": "输入/输出"
  7487. },
  7488. {
  7489. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-vl-ocr?serviceSite=asia-pacific-china",
  7490. "model_name": "qwen-vl-ocr",
  7491. "tier_min": null,
  7492. "tier_max": null,
  7493. "tier_unit": null,
  7494. "input_price": 0.3,
  7495. "output_price": 0.5,
  7496. "currency": "CNY",
  7497. "unit": "元/每百万tokens",
  7498. "label": "输入/输出"
  7499. },
  7500. {
  7501. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/text-embedding-v2?serviceSite=asia-pacific-china",
  7502. "model_name": "text-embedding-v2",
  7503. "tier_min": null,
  7504. "tier_max": null,
  7505. "tier_unit": null,
  7506. "input_price": 0.7,
  7507. "output_price": null,
  7508. "currency": "CNY",
  7509. "unit": "元/每百万tokens",
  7510. "label": "文本输入"
  7511. },
  7512. {
  7513. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/text-embedding-v3?serviceSite=asia-pacific-china",
  7514. "model_name": "text-embedding-v3",
  7515. "tier_min": null,
  7516. "tier_max": null,
  7517. "tier_unit": null,
  7518. "input_price": 0.5,
  7519. "output_price": null,
  7520. "currency": "CNY",
  7521. "unit": "元/每百万tokens",
  7522. "label": "文本输入"
  7523. },
  7524. {
  7525. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/text-embedding-v4?serviceSite=asia-pacific-china",
  7526. "model_name": "text-embedding-v4",
  7527. "tier_min": null,
  7528. "tier_max": null,
  7529. "tier_unit": null,
  7530. "input_price": 0.5,
  7531. "output_price": null,
  7532. "currency": "CNY",
  7533. "unit": "元/每百万tokens",
  7534. "label": "文本输入"
  7535. },
  7536. {
  7537. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/tongyi-embedding-vision-plus?serviceSite=asia-pacific-china",
  7538. "model_name": "tongyi-embedding-vision-plus",
  7539. "tier_min": null,
  7540. "tier_max": null,
  7541. "tier_unit": null,
  7542. "input_price": 0.5,
  7543. "output_price": null,
  7544. "currency": "CNY",
  7545. "unit": "元/每百万tokens",
  7546. "label": "图片输入"
  7547. },
  7548. {
  7549. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/wan2.2-s2v?serviceSite=asia-pacific-china",
  7550. "model_name": "wan2.2-s2v",
  7551. "tier_min": 0.0,
  7552. "tier_max": 480.0,
  7553. "tier_unit": "seconds",
  7554. "input_price": 0.0,
  7555. "output_price": 0.5,
  7556. "currency": "CNY",
  7557. "unit": "元/每秒",
  7558. "label": "视频生成(480P)"
  7559. },
  7560. {
  7561. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/wan2.2-s2v?serviceSite=asia-pacific-china",
  7562. "model_name": "wan2.2-s2v",
  7563. "tier_min": 481.0,
  7564. "tier_max": 720.0,
  7565. "tier_unit": "seconds",
  7566. "input_price": 0.0,
  7567. "output_price": 0.9,
  7568. "currency": "CNY",
  7569. "unit": "元/每秒",
  7570. "label": "视频生成(720P)"
  7571. },
  7572. {
  7573. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/wan2.5-i2i-preview?serviceSite=asia-pacific-china",
  7574. "model_name": "wan2.5-i2i-preview",
  7575. "tier_min": null,
  7576. "tier_max": null,
  7577. "tier_unit": null,
  7578. "input_price": 0.0,
  7579. "output_price": 0.2,
  7580. "currency": "CNY",
  7581. "unit": "元/每张",
  7582. "label": "图片生成"
  7583. },
  7584. {
  7585. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/wan2.5-i2v-preview?serviceSite=asia-pacific-china",
  7586. "model_name": "wan2.5-i2v-preview",
  7587. "tier_min": 0.0,
  7588. "tier_max": 480.0,
  7589. "tier_unit": "seconds",
  7590. "input_price": 0.0,
  7591. "output_price": 0.3,
  7592. "currency": "CNY",
  7593. "unit": "元/每秒",
  7594. "label": "视频生成(480P)"
  7595. },
  7596. {
  7597. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/wan2.5-i2v-preview?serviceSite=asia-pacific-china",
  7598. "model_name": "wan2.5-i2v-preview",
  7599. "tier_min": 481.0,
  7600. "tier_max": 720.0,
  7601. "tier_unit": "seconds",
  7602. "input_price": 0.0,
  7603. "output_price": 0.6,
  7604. "currency": "CNY",
  7605. "unit": "元/每秒",
  7606. "label": "视频生成(720P)"
  7607. },
  7608. {
  7609. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/wan2.5-i2v-preview?serviceSite=asia-pacific-china",
  7610. "model_name": "wan2.5-i2v-preview",
  7611. "tier_min": 721.0,
  7612. "tier_max": 1080.0,
  7613. "tier_unit": "seconds",
  7614. "input_price": 0.0,
  7615. "output_price": 1.0,
  7616. "currency": "CNY",
  7617. "unit": "元/每秒",
  7618. "label": "视频生成(1080P)"
  7619. },
  7620. {
  7621. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/wan2.5-t2i-preview?serviceSite=asia-pacific-china",
  7622. "model_name": "wan2.5-t2i-preview",
  7623. "tier_min": null,
  7624. "tier_max": null,
  7625. "tier_unit": null,
  7626. "input_price": 0.0,
  7627. "output_price": 0.2,
  7628. "currency": "CNY",
  7629. "unit": "元/每张",
  7630. "label": "图片生成"
  7631. },
  7632. {
  7633. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/wan2.5-t2v-preview?serviceSite=asia-pacific-china",
  7634. "model_name": "wan2.5-t2v-preview",
  7635. "tier_min": 0.0,
  7636. "tier_max": 480.0,
  7637. "tier_unit": "seconds",
  7638. "input_price": 0.0,
  7639. "output_price": 0.3,
  7640. "currency": "CNY",
  7641. "unit": "元/每秒",
  7642. "label": "视频生成(480P)"
  7643. },
  7644. {
  7645. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/wan2.5-t2v-preview?serviceSite=asia-pacific-china",
  7646. "model_name": "wan2.5-t2v-preview",
  7647. "tier_min": 481.0,
  7648. "tier_max": 720.0,
  7649. "tier_unit": "seconds",
  7650. "input_price": 0.0,
  7651. "output_price": 0.6,
  7652. "currency": "CNY",
  7653. "unit": "元/每秒",
  7654. "label": "视频生成(720P)"
  7655. },
  7656. {
  7657. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/wan2.5-t2v-preview?serviceSite=asia-pacific-china",
  7658. "model_name": "wan2.5-t2v-preview",
  7659. "tier_min": 721.0,
  7660. "tier_max": 1080.0,
  7661. "tier_unit": "seconds",
  7662. "input_price": 0.0,
  7663. "output_price": 1.0,
  7664. "currency": "CNY",
  7665. "unit": "元/每秒",
  7666. "label": "视频生成(1080P)"
  7667. },
  7668. {
  7669. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/wan2.6-i2v?serviceSite=asia-pacific-china",
  7670. "model_name": "wan2.6-i2v",
  7671. "tier_min": 0.0,
  7672. "tier_max": 720.0,
  7673. "tier_unit": "seconds",
  7674. "input_price": 0.0,
  7675. "output_price": 0.6,
  7676. "currency": "CNY",
  7677. "unit": "元/每秒",
  7678. "label": "视频生成(720P)"
  7679. },
  7680. {
  7681. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/wan2.6-i2v?serviceSite=asia-pacific-china",
  7682. "model_name": "wan2.6-i2v",
  7683. "tier_min": 721.0,
  7684. "tier_max": 1080.0,
  7685. "tier_unit": "seconds",
  7686. "input_price": 0.0,
  7687. "output_price": 1.0,
  7688. "currency": "CNY",
  7689. "unit": "元/每秒",
  7690. "label": "视频生成(1080P)"
  7691. },
  7692. {
  7693. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/wan2.6-image?serviceSite=asia-pacific-china",
  7694. "model_name": "wan2.6-image",
  7695. "tier_min": null,
  7696. "tier_max": null,
  7697. "tier_unit": null,
  7698. "input_price": 0.0,
  7699. "output_price": 0.2,
  7700. "currency": "CNY",
  7701. "unit": "元/每张",
  7702. "label": "图片生成"
  7703. },
  7704. {
  7705. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/wan2.6-r2v?serviceSite=asia-pacific-china",
  7706. "model_name": "wan2.6-r2v",
  7707. "tier_min": 0.0,
  7708. "tier_max": 720.0,
  7709. "tier_unit": "seconds",
  7710. "input_price": 0.0,
  7711. "output_price": 0.6,
  7712. "currency": "CNY",
  7713. "unit": "元/每秒",
  7714. "label": "视频生成(720P)"
  7715. },
  7716. {
  7717. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/wan2.6-r2v?serviceSite=asia-pacific-china",
  7718. "model_name": "wan2.6-r2v",
  7719. "tier_min": 721.0,
  7720. "tier_max": 1080.0,
  7721. "tier_unit": "seconds",
  7722. "input_price": 0.0,
  7723. "output_price": 1.0,
  7724. "currency": "CNY",
  7725. "unit": "元/每秒",
  7726. "label": "视频生成(1080P)"
  7727. },
  7728. {
  7729. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/wan2.6-t2i?serviceSite=asia-pacific-china",
  7730. "model_name": "wan2.6-t2i",
  7731. "tier_min": null,
  7732. "tier_max": null,
  7733. "tier_unit": null,
  7734. "input_price": 0.0,
  7735. "output_price": 0.2,
  7736. "currency": "CNY",
  7737. "unit": "元/每张",
  7738. "label": "图片生成"
  7739. },
  7740. {
  7741. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/wan2.6-t2v?serviceSite=asia-pacific-china",
  7742. "model_name": "wan2.6-t2v",
  7743. "tier_min": 0.0,
  7744. "tier_max": 720.0,
  7745. "tier_unit": "seconds",
  7746. "input_price": 0.0,
  7747. "output_price": 0.6,
  7748. "currency": "CNY",
  7749. "unit": "元/每秒",
  7750. "label": "视频生成(720P)"
  7751. },
  7752. {
  7753. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/wan2.6-t2v?serviceSite=asia-pacific-china",
  7754. "model_name": "wan2.6-t2v",
  7755. "tier_min": 721.0,
  7756. "tier_max": 1080.0,
  7757. "tier_unit": "seconds",
  7758. "input_price": 0.0,
  7759. "output_price": 1.0,
  7760. "currency": "CNY",
  7761. "unit": "元/每秒",
  7762. "label": "视频生成(1080P)"
  7763. }
  7764. ],
  7765. "discounted_prices": [
  7766. {
  7767. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/cosyvoice-clone-v1?serviceSite=asia-pacific-china",
  7768. "model_name": "cosyvoice-clone-v1",
  7769. "tier_min": null,
  7770. "tier_max": null,
  7771. "tier_unit": null,
  7772. "input_price": 2.0,
  7773. "output_price": null,
  7774. "currency": "CNY",
  7775. "unit": "元/每万字符",
  7776. "label": "语音合成",
  7777. "discount": 1.0
  7778. },
  7779. {
  7780. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/cosyvoice-v3-flash?serviceSite=asia-pacific-china",
  7781. "model_name": "cosyvoice-v3-flash",
  7782. "tier_min": null,
  7783. "tier_max": null,
  7784. "tier_unit": null,
  7785. "input_price": 1.0,
  7786. "output_price": null,
  7787. "currency": "CNY",
  7788. "unit": "元/每万字符",
  7789. "label": "语音合成",
  7790. "discount": 1.0
  7791. },
  7792. {
  7793. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/cosyvoice-v3-plus?serviceSite=asia-pacific-china",
  7794. "model_name": "cosyvoice-v3-plus",
  7795. "tier_min": null,
  7796. "tier_max": null,
  7797. "tier_unit": null,
  7798. "input_price": 2.0,
  7799. "output_price": null,
  7800. "currency": "CNY",
  7801. "unit": "元/每万字符",
  7802. "label": "语音合成",
  7803. "discount": 1.0
  7804. },
  7805. {
  7806. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/deepseek-r1-0528?serviceSite=asia-pacific-china",
  7807. "model_name": "deepseek-r1-0528",
  7808. "tier_min": null,
  7809. "tier_max": null,
  7810. "tier_unit": null,
  7811. "input_price": 4.0,
  7812. "output_price": 16.0,
  7813. "currency": "CNY",
  7814. "unit": "元/每百万tokens",
  7815. "label": "输入/输出",
  7816. "discount": 1.0
  7817. },
  7818. {
  7819. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/deepseek-r1-distill-qwen-14b?serviceSite=asia-pacific-china",
  7820. "model_name": "deepseek-r1-distill-qwen-14b",
  7821. "tier_min": null,
  7822. "tier_max": null,
  7823. "tier_unit": null,
  7824. "input_price": 1.0,
  7825. "output_price": 3.0,
  7826. "currency": "CNY",
  7827. "unit": "元/每百万tokens",
  7828. "label": "输入/输出",
  7829. "discount": 1.0
  7830. },
  7831. {
  7832. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/deepseek-r1-distill-qwen-32b?serviceSite=asia-pacific-china",
  7833. "model_name": "deepseek-r1-distill-qwen-32b",
  7834. "tier_min": null,
  7835. "tier_max": null,
  7836. "tier_unit": null,
  7837. "input_price": 2.0,
  7838. "output_price": 6.0,
  7839. "currency": "CNY",
  7840. "unit": "元/每百万tokens",
  7841. "label": "输入/输出",
  7842. "discount": 1.0
  7843. },
  7844. {
  7845. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/deepseek-r1-distill-qwen-7b?serviceSite=asia-pacific-china",
  7846. "model_name": "deepseek-r1-distill-qwen-7b",
  7847. "tier_min": null,
  7848. "tier_max": null,
  7849. "tier_unit": null,
  7850. "input_price": 0.5,
  7851. "output_price": 1.0,
  7852. "currency": "CNY",
  7853. "unit": "元/每百万tokens",
  7854. "label": "输入/输出",
  7855. "discount": 1.0
  7856. },
  7857. {
  7858. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/deepseek-r1?serviceSite=asia-pacific-china",
  7859. "model_name": "deepseek-r1",
  7860. "tier_min": null,
  7861. "tier_max": null,
  7862. "tier_unit": null,
  7863. "input_price": 4.0,
  7864. "output_price": 16.0,
  7865. "currency": "CNY",
  7866. "unit": "元/每百万tokens",
  7867. "label": "输入/输出",
  7868. "discount": 1.0
  7869. },
  7870. {
  7871. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/deepseek-v3.1?serviceSite=asia-pacific-china",
  7872. "model_name": "deepseek-v3.1",
  7873. "tier_min": null,
  7874. "tier_max": null,
  7875. "tier_unit": null,
  7876. "input_price": 4.0,
  7877. "output_price": 12.0,
  7878. "currency": "CNY",
  7879. "unit": "元/每百万tokens",
  7880. "label": "输入/输出",
  7881. "discount": 1.0
  7882. },
  7883. {
  7884. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/deepseek-v3.2-exp?serviceSite=asia-pacific-china",
  7885. "model_name": "deepseek-v3.2-exp",
  7886. "tier_min": null,
  7887. "tier_max": null,
  7888. "tier_unit": null,
  7889. "input_price": 2.0,
  7890. "output_price": 3.0,
  7891. "currency": "CNY",
  7892. "unit": "元/每百万tokens",
  7893. "label": "输入/输出",
  7894. "discount": 1.0
  7895. },
  7896. {
  7897. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/deepseek-v3.2?serviceSite=asia-pacific-china",
  7898. "model_name": "deepseek-v3.2",
  7899. "tier_min": null,
  7900. "tier_max": null,
  7901. "tier_unit": null,
  7902. "input_price": 2.0,
  7903. "output_price": 3.0,
  7904. "currency": "CNY",
  7905. "unit": "元/每百万tokens",
  7906. "label": "输入/输出",
  7907. "discount": 1.0
  7908. },
  7909. {
  7910. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/deepseek-v3?serviceSite=asia-pacific-china",
  7911. "model_name": "deepseek-v3",
  7912. "tier_min": null,
  7913. "tier_max": null,
  7914. "tier_unit": null,
  7915. "input_price": 2.0,
  7916. "output_price": 8.0,
  7917. "currency": "CNY",
  7918. "unit": "元/每百万tokens",
  7919. "label": "输入/输出",
  7920. "discount": 1.0
  7921. },
  7922. {
  7923. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/fun-asr-mtl?serviceSite=asia-pacific-china",
  7924. "model_name": "fun-asr-mtl",
  7925. "tier_min": null,
  7926. "tier_max": null,
  7927. "tier_unit": null,
  7928. "input_price": 0.0,
  7929. "output_price": 0.00022,
  7930. "currency": "CNY",
  7931. "unit": "元/每秒",
  7932. "label": "音频时长",
  7933. "discount": 1.0
  7934. },
  7935. {
  7936. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/fun-asr-realtime?serviceSite=asia-pacific-china",
  7937. "model_name": "fun-asr-realtime",
  7938. "tier_min": null,
  7939. "tier_max": null,
  7940. "tier_unit": null,
  7941. "input_price": 0.0,
  7942. "output_price": 0.00033,
  7943. "currency": "CNY",
  7944. "unit": "元/每秒",
  7945. "label": "音频时长",
  7946. "discount": 1.0
  7947. },
  7948. {
  7949. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/fun-asr?serviceSite=asia-pacific-china",
  7950. "model_name": "fun-asr",
  7951. "tier_min": null,
  7952. "tier_max": null,
  7953. "tier_unit": null,
  7954. "input_price": 0.0,
  7955. "output_price": 0.00022,
  7956. "currency": "CNY",
  7957. "unit": "元/每秒",
  7958. "label": "音频时长",
  7959. "discount": 1.0
  7960. },
  7961. {
  7962. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/glm-5.1?serviceSite=asia-pacific-china",
  7963. "model_name": "glm-5.1",
  7964. "tier_min": 0.0,
  7965. "tier_max": 32000.0,
  7966. "tier_unit": "tokens",
  7967. "input_price": 6.0,
  7968. "output_price": 24.0,
  7969. "currency": "CNY",
  7970. "unit": "元/每百万tokens",
  7971. "label": "input<=32k",
  7972. "discount": 1.0
  7973. },
  7974. {
  7975. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/glm-5.1?serviceSite=asia-pacific-china",
  7976. "model_name": "glm-5.1",
  7977. "tier_min": 32000.0,
  7978. "tier_max": 200000.0,
  7979. "tier_unit": "tokens",
  7980. "input_price": 8.0,
  7981. "output_price": 28.0,
  7982. "currency": "CNY",
  7983. "unit": "元/每百万tokens",
  7984. "label": "32k<input<=200k",
  7985. "discount": 1.0
  7986. },
  7987. {
  7988. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/glm-5?serviceSite=asia-pacific-china",
  7989. "model_name": "glm-5",
  7990. "tier_min": 0.0,
  7991. "tier_max": 32000.0,
  7992. "tier_unit": "tokens",
  7993. "input_price": 4.0,
  7994. "output_price": 18.0,
  7995. "currency": "CNY",
  7996. "unit": "元/每百万tokens",
  7997. "label": "input<=32k",
  7998. "discount": 1.0
  7999. },
  8000. {
  8001. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/glm-5?serviceSite=asia-pacific-china",
  8002. "model_name": "glm-5",
  8003. "tier_min": 32000.0,
  8004. "tier_max": 200000.0,
  8005. "tier_unit": "tokens",
  8006. "input_price": 6.0,
  8007. "output_price": 22.0,
  8008. "currency": "CNY",
  8009. "unit": "元/每百万tokens",
  8010. "label": "32k<input<=200k",
  8011. "discount": 1.0
  8012. },
  8013. {
  8014. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/gte-rerank-v2?serviceSite=asia-pacific-china",
  8015. "model_name": "gte-rerank-v2",
  8016. "tier_min": null,
  8017. "tier_max": null,
  8018. "tier_unit": null,
  8019. "input_price": 0.8,
  8020. "output_price": null,
  8021. "currency": "CNY",
  8022. "unit": "元/每百万tokens",
  8023. "label": "文本输入",
  8024. "discount": 1.0
  8025. },
  8026. {
  8027. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/kimi-k2.5?serviceSite=asia-pacific-china",
  8028. "model_name": "kimi-k2.5",
  8029. "tier_min": null,
  8030. "tier_max": null,
  8031. "tier_unit": null,
  8032. "input_price": 4.0,
  8033. "output_price": 21.0,
  8034. "currency": "CNY",
  8035. "unit": "元/每百万tokens",
  8036. "label": "输入/输出",
  8037. "discount": 1.0
  8038. },
  8039. {
  8040. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/MiniMax-M2.5?serviceSite=asia-pacific-china",
  8041. "model_name": "MiniMax-M2.5",
  8042. "tier_min": null,
  8043. "tier_max": null,
  8044. "tier_unit": null,
  8045. "input_price": 2.1,
  8046. "output_price": 8.4,
  8047. "currency": "CNY",
  8048. "unit": "元/每百万tokens",
  8049. "label": "输入/输出",
  8050. "discount": 1.0
  8051. },
  8052. {
  8053. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/paraformer-realtime-v1?serviceSite=asia-pacific-china",
  8054. "model_name": "paraformer-realtime-v1",
  8055. "tier_min": null,
  8056. "tier_max": null,
  8057. "tier_unit": null,
  8058. "input_price": 0.0,
  8059. "output_price": 0.00024,
  8060. "currency": "CNY",
  8061. "unit": "元/每秒",
  8062. "label": "音频时长",
  8063. "discount": 1.0
  8064. },
  8065. {
  8066. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/paraformer-realtime-v2?serviceSite=asia-pacific-china",
  8067. "model_name": "paraformer-realtime-v2",
  8068. "tier_min": null,
  8069. "tier_max": null,
  8070. "tier_unit": null,
  8071. "input_price": 0.0,
  8072. "output_price": 0.00024,
  8073. "currency": "CNY",
  8074. "unit": "元/每秒",
  8075. "label": "音频时长",
  8076. "discount": 1.0
  8077. },
  8078. {
  8079. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/paraformer-v1?serviceSite=asia-pacific-china",
  8080. "model_name": "paraformer-v1",
  8081. "tier_min": null,
  8082. "tier_max": null,
  8083. "tier_unit": null,
  8084. "input_price": 0.0,
  8085. "output_price": 0.00008,
  8086. "currency": "CNY",
  8087. "unit": "元/每秒",
  8088. "label": "音频时长",
  8089. "discount": 1.0
  8090. },
  8091. {
  8092. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/paraformer-v2?serviceSite=asia-pacific-china",
  8093. "model_name": "paraformer-v2",
  8094. "tier_min": null,
  8095. "tier_max": null,
  8096. "tier_unit": null,
  8097. "input_price": 0.0,
  8098. "output_price": 0.00008,
  8099. "currency": "CNY",
  8100. "unit": "元/每秒",
  8101. "label": "音频时长",
  8102. "discount": 1.0
  8103. },
  8104. {
  8105. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen2.5-vl-embedding?serviceSite=asia-pacific-china",
  8106. "model_name": "qwen2.5-vl-embedding",
  8107. "tier_min": null,
  8108. "tier_max": null,
  8109. "tier_unit": null,
  8110. "input_price": 1.8,
  8111. "output_price": null,
  8112. "currency": "CNY",
  8113. "unit": "元/每百万tokens",
  8114. "label": "图片输入",
  8115. "discount": 1.0
  8116. },
  8117. {
  8118. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen2.5-vl-embedding?serviceSite=asia-pacific-china",
  8119. "model_name": "qwen2.5-vl-embedding",
  8120. "tier_min": null,
  8121. "tier_max": null,
  8122. "tier_unit": null,
  8123. "input_price": 0.7,
  8124. "output_price": null,
  8125. "currency": "CNY",
  8126. "unit": "元/每百万tokens",
  8127. "label": "文本输入",
  8128. "discount": 1.0
  8129. },
  8130. {
  8131. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3.5-flash?serviceSite=asia-pacific-china",
  8132. "model_name": "qwen3.5-flash",
  8133. "tier_min": 256000.0,
  8134. "tier_max": null,
  8135. "tier_unit": "tokens",
  8136. "input_price": 1.2,
  8137. "output_price": 12.0,
  8138. "currency": "CNY",
  8139. "unit": "元/每百万tokens",
  8140. "label": "256k<input",
  8141. "discount": 1.0
  8142. },
  8143. {
  8144. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3.5-flash?serviceSite=asia-pacific-china",
  8145. "model_name": "qwen3.5-flash",
  8146. "tier_min": 0.0,
  8147. "tier_max": 128000.0,
  8148. "tier_unit": "tokens",
  8149. "input_price": 0.2,
  8150. "output_price": 2.0,
  8151. "currency": "CNY",
  8152. "unit": "元/每百万tokens",
  8153. "label": "input<=128k",
  8154. "discount": 1.0
  8155. },
  8156. {
  8157. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3.5-flash?serviceSite=asia-pacific-china",
  8158. "model_name": "qwen3.5-flash",
  8159. "tier_min": 128000.0,
  8160. "tier_max": 256000.0,
  8161. "tier_unit": "tokens",
  8162. "input_price": 0.8,
  8163. "output_price": 8.0,
  8164. "currency": "CNY",
  8165. "unit": "元/每百万tokens",
  8166. "label": "128k<input<=256k",
  8167. "discount": 1.0
  8168. },
  8169. {
  8170. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3.5-plus?serviceSite=asia-pacific-china",
  8171. "model_name": "qwen3.5-plus",
  8172. "tier_min": 256000.0,
  8173. "tier_max": null,
  8174. "tier_unit": "tokens",
  8175. "input_price": 4.0,
  8176. "output_price": 24.0,
  8177. "currency": "CNY",
  8178. "unit": "元/每百万tokens",
  8179. "label": "256k<input",
  8180. "discount": 1.0
  8181. },
  8182. {
  8183. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3.5-plus?serviceSite=asia-pacific-china",
  8184. "model_name": "qwen3.5-plus",
  8185. "tier_min": 0.0,
  8186. "tier_max": 128000.0,
  8187. "tier_unit": "tokens",
  8188. "input_price": 0.8,
  8189. "output_price": 4.8,
  8190. "currency": "CNY",
  8191. "unit": "元/每百万tokens",
  8192. "label": "input<=128k",
  8193. "discount": 1.0
  8194. },
  8195. {
  8196. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3.5-plus?serviceSite=asia-pacific-china",
  8197. "model_name": "qwen3.5-plus",
  8198. "tier_min": 128000.0,
  8199. "tier_max": 256000.0,
  8200. "tier_unit": "tokens",
  8201. "input_price": 2.0,
  8202. "output_price": 12.0,
  8203. "currency": "CNY",
  8204. "unit": "元/每百万tokens",
  8205. "label": "128k<input<=256k",
  8206. "discount": 1.0
  8207. },
  8208. {
  8209. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3.6-plus?serviceSite=asia-pacific-china",
  8210. "model_name": "qwen3.6-plus",
  8211. "tier_min": 256000.0,
  8212. "tier_max": null,
  8213. "tier_unit": "tokens",
  8214. "input_price": 8.0,
  8215. "output_price": 48.0,
  8216. "currency": "CNY",
  8217. "unit": "元/每百万tokens",
  8218. "label": "256k<input",
  8219. "discount": 1.0
  8220. },
  8221. {
  8222. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3.6-plus?serviceSite=asia-pacific-china",
  8223. "model_name": "qwen3.6-plus",
  8224. "tier_min": 0.0,
  8225. "tier_max": 256000.0,
  8226. "tier_unit": "tokens",
  8227. "input_price": 2.0,
  8228. "output_price": 12.0,
  8229. "currency": "CNY",
  8230. "unit": "元/每百万tokens",
  8231. "label": "input<=256k",
  8232. "discount": 1.0
  8233. },
  8234. {
  8235. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-asr-flash-realtime?serviceSite=asia-pacific-china",
  8236. "model_name": "qwen3-asr-flash-realtime",
  8237. "tier_min": null,
  8238. "tier_max": null,
  8239. "tier_unit": null,
  8240. "input_price": 0.0,
  8241. "output_price": 0.00033,
  8242. "currency": "CNY",
  8243. "unit": "元/每秒",
  8244. "label": "音频时长",
  8245. "discount": 1.0
  8246. },
  8247. {
  8248. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-asr-flash?serviceSite=asia-pacific-china",
  8249. "model_name": "qwen3-asr-flash",
  8250. "tier_min": null,
  8251. "tier_max": null,
  8252. "tier_unit": null,
  8253. "input_price": 0.0,
  8254. "output_price": 0.00022,
  8255. "currency": "CNY",
  8256. "unit": "元/每秒",
  8257. "label": "音频时长",
  8258. "discount": 1.0
  8259. },
  8260. {
  8261. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-coder-flash?serviceSite=asia-pacific-china",
  8262. "model_name": "qwen3-coder-flash",
  8263. "tier_min": 256000.0,
  8264. "tier_max": null,
  8265. "tier_unit": "tokens",
  8266. "input_price": 5.0,
  8267. "output_price": 25.0,
  8268. "currency": "CNY",
  8269. "unit": "元/每百万tokens",
  8270. "label": "256k<input",
  8271. "discount": 1.0
  8272. },
  8273. {
  8274. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-coder-flash?serviceSite=asia-pacific-china",
  8275. "model_name": "qwen3-coder-flash",
  8276. "tier_min": 0.0,
  8277. "tier_max": 32000.0,
  8278. "tier_unit": "tokens",
  8279. "input_price": 1.0,
  8280. "output_price": 4.0,
  8281. "currency": "CNY",
  8282. "unit": "元/每百万tokens",
  8283. "label": "input<=32k",
  8284. "discount": 1.0
  8285. },
  8286. {
  8287. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-coder-flash?serviceSite=asia-pacific-china",
  8288. "model_name": "qwen3-coder-flash",
  8289. "tier_min": 32000.0,
  8290. "tier_max": 128000.0,
  8291. "tier_unit": "tokens",
  8292. "input_price": 1.5,
  8293. "output_price": 6.0,
  8294. "currency": "CNY",
  8295. "unit": "元/每百万tokens",
  8296. "label": "32k<input<=128k",
  8297. "discount": 1.0
  8298. },
  8299. {
  8300. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-coder-flash?serviceSite=asia-pacific-china",
  8301. "model_name": "qwen3-coder-flash",
  8302. "tier_min": 128000.0,
  8303. "tier_max": 256000.0,
  8304. "tier_unit": "tokens",
  8305. "input_price": 2.5,
  8306. "output_price": 10.0,
  8307. "currency": "CNY",
  8308. "unit": "元/每百万tokens",
  8309. "label": "128k<input<=256k",
  8310. "discount": 1.0
  8311. },
  8312. {
  8313. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-coder-next?serviceSite=asia-pacific-china",
  8314. "model_name": "qwen3-coder-next",
  8315. "tier_min": 0.0,
  8316. "tier_max": 32000.0,
  8317. "tier_unit": "tokens",
  8318. "input_price": 1.0,
  8319. "output_price": 4.0,
  8320. "currency": "CNY",
  8321. "unit": "元/每百万tokens",
  8322. "label": "input<=32k",
  8323. "discount": 1.0
  8324. },
  8325. {
  8326. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-coder-next?serviceSite=asia-pacific-china",
  8327. "model_name": "qwen3-coder-next",
  8328. "tier_min": 32000.0,
  8329. "tier_max": 128000.0,
  8330. "tier_unit": "tokens",
  8331. "input_price": 1.5,
  8332. "output_price": 6.0,
  8333. "currency": "CNY",
  8334. "unit": "元/每百万tokens",
  8335. "label": "32k<input<=128k",
  8336. "discount": 1.0
  8337. },
  8338. {
  8339. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-coder-next?serviceSite=asia-pacific-china",
  8340. "model_name": "qwen3-coder-next",
  8341. "tier_min": 128000.0,
  8342. "tier_max": 256000.0,
  8343. "tier_unit": "tokens",
  8344. "input_price": 2.5,
  8345. "output_price": 10.0,
  8346. "currency": "CNY",
  8347. "unit": "元/每百万tokens",
  8348. "label": "128k<input<=256k",
  8349. "discount": 1.0
  8350. },
  8351. {
  8352. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-coder-plus?serviceSite=asia-pacific-china",
  8353. "model_name": "qwen3-coder-plus",
  8354. "tier_min": 256000.0,
  8355. "tier_max": null,
  8356. "tier_unit": "tokens",
  8357. "input_price": 20.0,
  8358. "output_price": 200.0,
  8359. "currency": "CNY",
  8360. "unit": "元/每百万tokens",
  8361. "label": "256k<input",
  8362. "discount": 1.0
  8363. },
  8364. {
  8365. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-coder-plus?serviceSite=asia-pacific-china",
  8366. "model_name": "qwen3-coder-plus",
  8367. "tier_min": 0.0,
  8368. "tier_max": 32000.0,
  8369. "tier_unit": "tokens",
  8370. "input_price": 4.0,
  8371. "output_price": 16.0,
  8372. "currency": "CNY",
  8373. "unit": "元/每百万tokens",
  8374. "label": "input<=32k",
  8375. "discount": 1.0
  8376. },
  8377. {
  8378. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-coder-plus?serviceSite=asia-pacific-china",
  8379. "model_name": "qwen3-coder-plus",
  8380. "tier_min": 32000.0,
  8381. "tier_max": 128000.0,
  8382. "tier_unit": "tokens",
  8383. "input_price": 6.0,
  8384. "output_price": 24.0,
  8385. "currency": "CNY",
  8386. "unit": "元/每百万tokens",
  8387. "label": "32k<input<=128k",
  8388. "discount": 1.0
  8389. },
  8390. {
  8391. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-coder-plus?serviceSite=asia-pacific-china",
  8392. "model_name": "qwen3-coder-plus",
  8393. "tier_min": 128000.0,
  8394. "tier_max": 256000.0,
  8395. "tier_unit": "tokens",
  8396. "input_price": 10.0,
  8397. "output_price": 40.0,
  8398. "currency": "CNY",
  8399. "unit": "元/每百万tokens",
  8400. "label": "128k<input<=256k",
  8401. "discount": 1.0
  8402. },
  8403. {
  8404. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-max?serviceSite=asia-pacific-china",
  8405. "model_name": "qwen3-max",
  8406. "tier_min": 0.0,
  8407. "tier_max": 32000.0,
  8408. "tier_unit": "tokens",
  8409. "input_price": 2.5,
  8410. "output_price": 10.0,
  8411. "currency": "CNY",
  8412. "unit": "元/每百万tokens",
  8413. "label": "input<=32k",
  8414. "discount": 1.0
  8415. },
  8416. {
  8417. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-max?serviceSite=asia-pacific-china",
  8418. "model_name": "qwen3-max",
  8419. "tier_min": 32000.0,
  8420. "tier_max": 128000.0,
  8421. "tier_unit": "tokens",
  8422. "input_price": 4.0,
  8423. "output_price": 16.0,
  8424. "currency": "CNY",
  8425. "unit": "元/每百万tokens",
  8426. "label": "32k<input<=128k",
  8427. "discount": 1.0
  8428. },
  8429. {
  8430. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-max?serviceSite=asia-pacific-china",
  8431. "model_name": "qwen3-max",
  8432. "tier_min": 128000.0,
  8433. "tier_max": 256000.0,
  8434. "tier_unit": "tokens",
  8435. "input_price": 7.0,
  8436. "output_price": 28.0,
  8437. "currency": "CNY",
  8438. "unit": "元/每百万tokens",
  8439. "label": "128k<input<=256k",
  8440. "discount": 1.0
  8441. },
  8442. {
  8443. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-omni-flash-realtime?serviceSite=asia-pacific-china",
  8444. "model_name": "qwen3-omni-flash-realtime",
  8445. "tier_min": null,
  8446. "tier_max": null,
  8447. "tier_unit": null,
  8448. "input_price": 2.2,
  8449. "output_price": null,
  8450. "currency": "CNY",
  8451. "unit": "元/每百万tokens",
  8452. "label": "输入:文本",
  8453. "discount": 1.0
  8454. },
  8455. {
  8456. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-omni-flash-realtime?serviceSite=asia-pacific-china",
  8457. "model_name": "qwen3-omni-flash-realtime",
  8458. "tier_min": null,
  8459. "tier_max": null,
  8460. "tier_unit": null,
  8461. "input_price": 18.9,
  8462. "output_price": null,
  8463. "currency": "CNY",
  8464. "unit": "元/每百万tokens",
  8465. "label": "输入:音频",
  8466. "discount": 1.0
  8467. },
  8468. {
  8469. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-omni-flash-realtime?serviceSite=asia-pacific-china",
  8470. "model_name": "qwen3-omni-flash-realtime",
  8471. "tier_min": null,
  8472. "tier_max": null,
  8473. "tier_unit": null,
  8474. "input_price": 3.9,
  8475. "output_price": null,
  8476. "currency": "CNY",
  8477. "unit": "元/每百万tokens",
  8478. "label": "输入:图片/视频",
  8479. "discount": 1.0
  8480. },
  8481. {
  8482. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-omni-flash-realtime?serviceSite=asia-pacific-china",
  8483. "model_name": "qwen3-omni-flash-realtime",
  8484. "tier_min": null,
  8485. "tier_max": null,
  8486. "tier_unit": null,
  8487. "input_price": 8.3,
  8488. "output_price": null,
  8489. "currency": "CNY",
  8490. "unit": "元/每百万tokens",
  8491. "label": "输出:文本(输入仅包含文本时)",
  8492. "discount": 1.0
  8493. },
  8494. {
  8495. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-omni-flash-realtime?serviceSite=asia-pacific-china",
  8496. "model_name": "qwen3-omni-flash-realtime",
  8497. "tier_min": null,
  8498. "tier_max": null,
  8499. "tier_unit": null,
  8500. "input_price": 75.1,
  8501. "output_price": null,
  8502. "currency": "CNY",
  8503. "unit": "元/每百万tokens",
  8504. "label": "输出:文本+音频(输出的文本不计费)",
  8505. "discount": 1.0
  8506. },
  8507. {
  8508. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-omni-flash-realtime?serviceSite=asia-pacific-china",
  8509. "model_name": "qwen3-omni-flash-realtime",
  8510. "tier_min": null,
  8511. "tier_max": null,
  8512. "tier_unit": null,
  8513. "input_price": 15.2,
  8514. "output_price": null,
  8515. "currency": "CNY",
  8516. "unit": "元/每百万tokens",
  8517. "label": "输出:文本(输入包含图片/音频/视频时)",
  8518. "discount": 1.0
  8519. },
  8520. {
  8521. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-omni-flash?serviceSite=asia-pacific-china",
  8522. "model_name": "qwen3-omni-flash",
  8523. "tier_min": null,
  8524. "tier_max": null,
  8525. "tier_unit": null,
  8526. "input_price": 1.8,
  8527. "output_price": null,
  8528. "currency": "CNY",
  8529. "unit": "元/每百万tokens",
  8530. "label": "输入:文本",
  8531. "discount": 1.0
  8532. },
  8533. {
  8534. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-omni-flash?serviceSite=asia-pacific-china",
  8535. "model_name": "qwen3-omni-flash",
  8536. "tier_min": null,
  8537. "tier_max": null,
  8538. "tier_unit": null,
  8539. "input_price": 15.8,
  8540. "output_price": null,
  8541. "currency": "CNY",
  8542. "unit": "元/每百万tokens",
  8543. "label": "输入:音频",
  8544. "discount": 1.0
  8545. },
  8546. {
  8547. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-omni-flash?serviceSite=asia-pacific-china",
  8548. "model_name": "qwen3-omni-flash",
  8549. "tier_min": null,
  8550. "tier_max": null,
  8551. "tier_unit": null,
  8552. "input_price": 3.3,
  8553. "output_price": null,
  8554. "currency": "CNY",
  8555. "unit": "元/每百万tokens",
  8556. "label": "输入:图片/视频",
  8557. "discount": 1.0
  8558. },
  8559. {
  8560. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-omni-flash?serviceSite=asia-pacific-china",
  8561. "model_name": "qwen3-omni-flash",
  8562. "tier_min": null,
  8563. "tier_max": null,
  8564. "tier_unit": null,
  8565. "input_price": 6.9,
  8566. "output_price": null,
  8567. "currency": "CNY",
  8568. "unit": "元/每百万tokens",
  8569. "label": "输出:文本(输入仅包含文本时)",
  8570. "discount": 1.0
  8571. },
  8572. {
  8573. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-omni-flash?serviceSite=asia-pacific-china",
  8574. "model_name": "qwen3-omni-flash",
  8575. "tier_min": null,
  8576. "tier_max": null,
  8577. "tier_unit": null,
  8578. "input_price": 62.6,
  8579. "output_price": null,
  8580. "currency": "CNY",
  8581. "unit": "元/每百万tokens",
  8582. "label": "输出:文本+音频(输出的文本不计费)",
  8583. "discount": 1.0
  8584. },
  8585. {
  8586. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-omni-flash?serviceSite=asia-pacific-china",
  8587. "model_name": "qwen3-omni-flash",
  8588. "tier_min": null,
  8589. "tier_max": null,
  8590. "tier_unit": null,
  8591. "input_price": 12.7,
  8592. "output_price": null,
  8593. "currency": "CNY",
  8594. "unit": "元/每百万tokens",
  8595. "label": "输出:文本(输入包含图片/音频/视频时)",
  8596. "discount": 1.0
  8597. },
  8598. {
  8599. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-rerank?serviceSite=asia-pacific-china",
  8600. "model_name": "qwen3-rerank",
  8601. "tier_min": null,
  8602. "tier_max": null,
  8603. "tier_unit": null,
  8604. "input_price": 0.5,
  8605. "output_price": null,
  8606. "currency": "CNY",
  8607. "unit": "元/每百万tokens",
  8608. "label": "文本输入",
  8609. "discount": 1.0
  8610. },
  8611. {
  8612. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-tts-flash-realtime?serviceSite=asia-pacific-china",
  8613. "model_name": "qwen3-tts-flash-realtime",
  8614. "tier_min": null,
  8615. "tier_max": null,
  8616. "tier_unit": null,
  8617. "input_price": 1.0,
  8618. "output_price": null,
  8619. "currency": "CNY",
  8620. "unit": "元/每万字符",
  8621. "label": "语音合成",
  8622. "discount": 1.0
  8623. },
  8624. {
  8625. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-tts-flash?serviceSite=asia-pacific-china",
  8626. "model_name": "qwen3-tts-flash",
  8627. "tier_min": null,
  8628. "tier_max": null,
  8629. "tier_unit": null,
  8630. "input_price": 0.8,
  8631. "output_price": null,
  8632. "currency": "CNY",
  8633. "unit": "元/每万字符",
  8634. "label": "语音合成",
  8635. "discount": 1.0
  8636. },
  8637. {
  8638. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-vl-embedding?serviceSite=asia-pacific-china",
  8639. "model_name": "qwen3-vl-embedding",
  8640. "tier_min": null,
  8641. "tier_max": null,
  8642. "tier_unit": null,
  8643. "input_price": 1.8,
  8644. "output_price": null,
  8645. "currency": "CNY",
  8646. "unit": "元/每百万tokens",
  8647. "label": "图片输入",
  8648. "discount": 1.0
  8649. },
  8650. {
  8651. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-vl-embedding?serviceSite=asia-pacific-china",
  8652. "model_name": "qwen3-vl-embedding",
  8653. "tier_min": null,
  8654. "tier_max": null,
  8655. "tier_unit": null,
  8656. "input_price": 0.7,
  8657. "output_price": null,
  8658. "currency": "CNY",
  8659. "unit": "元/每百万tokens",
  8660. "label": "文本输入",
  8661. "discount": 1.0
  8662. },
  8663. {
  8664. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-vl-flash?serviceSite=asia-pacific-china",
  8665. "model_name": "qwen3-vl-flash",
  8666. "tier_min": 0.0,
  8667. "tier_max": 32000.0,
  8668. "tier_unit": "tokens",
  8669. "input_price": 0.15,
  8670. "output_price": 1.5,
  8671. "currency": "CNY",
  8672. "unit": "元/每百万tokens",
  8673. "label": "input<=32k",
  8674. "discount": 1.0
  8675. },
  8676. {
  8677. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-vl-flash?serviceSite=asia-pacific-china",
  8678. "model_name": "qwen3-vl-flash",
  8679. "tier_min": 32000.0,
  8680. "tier_max": 128000.0,
  8681. "tier_unit": "tokens",
  8682. "input_price": 0.3,
  8683. "output_price": 3.0,
  8684. "currency": "CNY",
  8685. "unit": "元/每百万tokens",
  8686. "label": "32k<input<=128k",
  8687. "discount": 1.0
  8688. },
  8689. {
  8690. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-vl-flash?serviceSite=asia-pacific-china",
  8691. "model_name": "qwen3-vl-flash",
  8692. "tier_min": 128000.0,
  8693. "tier_max": 256000.0,
  8694. "tier_unit": "tokens",
  8695. "input_price": 0.6,
  8696. "output_price": 6.0,
  8697. "currency": "CNY",
  8698. "unit": "元/每百万tokens",
  8699. "label": "128k<input<=256k",
  8700. "discount": 1.0
  8701. },
  8702. {
  8703. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-vl-plus?serviceSite=asia-pacific-china",
  8704. "model_name": "qwen3-vl-plus",
  8705. "tier_min": 0.0,
  8706. "tier_max": 32000.0,
  8707. "tier_unit": "tokens",
  8708. "input_price": 1.0,
  8709. "output_price": 10.0,
  8710. "currency": "CNY",
  8711. "unit": "元/每百万tokens",
  8712. "label": "input<=32k",
  8713. "discount": 1.0
  8714. },
  8715. {
  8716. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-vl-plus?serviceSite=asia-pacific-china",
  8717. "model_name": "qwen3-vl-plus",
  8718. "tier_min": 32000.0,
  8719. "tier_max": 128000.0,
  8720. "tier_unit": "tokens",
  8721. "input_price": 1.5,
  8722. "output_price": 15.0,
  8723. "currency": "CNY",
  8724. "unit": "元/每百万tokens",
  8725. "label": "32k<input<=128k",
  8726. "discount": 1.0
  8727. },
  8728. {
  8729. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-vl-plus?serviceSite=asia-pacific-china",
  8730. "model_name": "qwen3-vl-plus",
  8731. "tier_min": 128000.0,
  8732. "tier_max": 256000.0,
  8733. "tier_unit": "tokens",
  8734. "input_price": 3.0,
  8735. "output_price": 30.0,
  8736. "currency": "CNY",
  8737. "unit": "元/每百万tokens",
  8738. "label": "128k<input<=256k",
  8739. "discount": 1.0
  8740. },
  8741. {
  8742. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-vl-rerank?serviceSite=asia-pacific-china",
  8743. "model_name": "qwen3-vl-rerank",
  8744. "tier_min": null,
  8745. "tier_max": null,
  8746. "tier_unit": null,
  8747. "input_price": 1.8,
  8748. "output_price": null,
  8749. "currency": "CNY",
  8750. "unit": "元/每百万tokens",
  8751. "label": "图片输入",
  8752. "discount": 1.0
  8753. },
  8754. {
  8755. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen3-vl-rerank?serviceSite=asia-pacific-china",
  8756. "model_name": "qwen3-vl-rerank",
  8757. "tier_min": null,
  8758. "tier_max": null,
  8759. "tier_unit": null,
  8760. "input_price": 0.7,
  8761. "output_price": null,
  8762. "currency": "CNY",
  8763. "unit": "元/每百万tokens",
  8764. "label": "文本输入",
  8765. "discount": 1.0
  8766. },
  8767. {
  8768. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-coder-plus?serviceSite=asia-pacific-china",
  8769. "model_name": "qwen-coder-plus",
  8770. "tier_min": null,
  8771. "tier_max": null,
  8772. "tier_unit": null,
  8773. "input_price": 3.5,
  8774. "output_price": 7.0,
  8775. "currency": "CNY",
  8776. "unit": "元/每百万tokens",
  8777. "label": "输入/输出",
  8778. "discount": 1.0
  8779. },
  8780. {
  8781. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-coder-turbo?serviceSite=asia-pacific-china",
  8782. "model_name": "qwen-coder-turbo",
  8783. "tier_min": null,
  8784. "tier_max": null,
  8785. "tier_unit": null,
  8786. "input_price": 2.0,
  8787. "output_price": 6.0,
  8788. "currency": "CNY",
  8789. "unit": "元/每百万tokens",
  8790. "label": "输入/输出",
  8791. "discount": 1.0
  8792. },
  8793. {
  8794. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-deep-research?serviceSite=asia-pacific-china",
  8795. "model_name": "qwen-deep-research",
  8796. "tier_min": null,
  8797. "tier_max": null,
  8798. "tier_unit": null,
  8799. "input_price": 54.0,
  8800. "output_price": 163.0,
  8801. "currency": "CNY",
  8802. "unit": "元/每百万tokens",
  8803. "label": "输入/输出",
  8804. "discount": 1.0
  8805. },
  8806. {
  8807. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-doc-turbo?serviceSite=asia-pacific-china",
  8808. "model_name": "qwen-doc-turbo",
  8809. "tier_min": null,
  8810. "tier_max": null,
  8811. "tier_unit": null,
  8812. "input_price": 0.6,
  8813. "output_price": 1.0,
  8814. "currency": "CNY",
  8815. "unit": "元/每百万tokens",
  8816. "label": "输入/输出",
  8817. "discount": 1.0
  8818. },
  8819. {
  8820. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-flash?serviceSite=asia-pacific-china",
  8821. "model_name": "qwen-flash",
  8822. "tier_min": 256000.0,
  8823. "tier_max": null,
  8824. "tier_unit": "tokens",
  8825. "input_price": 1.2,
  8826. "output_price": 12.0,
  8827. "currency": "CNY",
  8828. "unit": "元/每百万tokens",
  8829. "label": "256k<input",
  8830. "discount": 1.0
  8831. },
  8832. {
  8833. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-flash?serviceSite=asia-pacific-china",
  8834. "model_name": "qwen-flash",
  8835. "tier_min": 0.0,
  8836. "tier_max": 128000.0,
  8837. "tier_unit": "tokens",
  8838. "input_price": 0.15,
  8839. "output_price": 1.5,
  8840. "currency": "CNY",
  8841. "unit": "元/每百万tokens",
  8842. "label": "input<=128k",
  8843. "discount": 1.0
  8844. },
  8845. {
  8846. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-flash?serviceSite=asia-pacific-china",
  8847. "model_name": "qwen-flash",
  8848. "tier_min": 128000.0,
  8849. "tier_max": 256000.0,
  8850. "tier_unit": "tokens",
  8851. "input_price": 0.6,
  8852. "output_price": 6.0,
  8853. "currency": "CNY",
  8854. "unit": "元/每百万tokens",
  8855. "label": "128k<input<=256k",
  8856. "discount": 1.0
  8857. },
  8858. {
  8859. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-image-2.0-pro?serviceSite=asia-pacific-china",
  8860. "model_name": "qwen-image-2.0-pro",
  8861. "tier_min": null,
  8862. "tier_max": null,
  8863. "tier_unit": null,
  8864. "input_price": 0.0,
  8865. "output_price": 0.5,
  8866. "currency": "CNY",
  8867. "unit": "元/每张",
  8868. "label": "图片生成",
  8869. "discount": 1.0
  8870. },
  8871. {
  8872. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-image-2.0?serviceSite=asia-pacific-china",
  8873. "model_name": "qwen-image-2.0",
  8874. "tier_min": null,
  8875. "tier_max": null,
  8876. "tier_unit": null,
  8877. "input_price": 0.0,
  8878. "output_price": 0.2,
  8879. "currency": "CNY",
  8880. "unit": "元/每张",
  8881. "label": "图片生成",
  8882. "discount": 1.0
  8883. },
  8884. {
  8885. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-image-edit-plus?serviceSite=asia-pacific-china",
  8886. "model_name": "qwen-image-edit-plus",
  8887. "tier_min": null,
  8888. "tier_max": null,
  8889. "tier_unit": null,
  8890. "input_price": 0.0,
  8891. "output_price": 0.2,
  8892. "currency": "CNY",
  8893. "unit": "元/每张",
  8894. "label": "图片生成",
  8895. "discount": 1.0
  8896. },
  8897. {
  8898. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-image-edit?serviceSite=asia-pacific-china",
  8899. "model_name": "qwen-image-edit",
  8900. "tier_min": null,
  8901. "tier_max": null,
  8902. "tier_unit": null,
  8903. "input_price": 0.0,
  8904. "output_price": 0.3,
  8905. "currency": "CNY",
  8906. "unit": "元/每张",
  8907. "label": "图片生成",
  8908. "discount": 1.0
  8909. },
  8910. {
  8911. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-image-max?serviceSite=asia-pacific-china",
  8912. "model_name": "qwen-image-max",
  8913. "tier_min": null,
  8914. "tier_max": null,
  8915. "tier_unit": null,
  8916. "input_price": 0.0,
  8917. "output_price": 0.5,
  8918. "currency": "CNY",
  8919. "unit": "元/每张",
  8920. "label": "图片生成",
  8921. "discount": 1.0
  8922. },
  8923. {
  8924. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-image-plus?serviceSite=asia-pacific-china",
  8925. "model_name": "qwen-image-plus",
  8926. "tier_min": null,
  8927. "tier_max": null,
  8928. "tier_unit": null,
  8929. "input_price": 0.0,
  8930. "output_price": 0.2,
  8931. "currency": "CNY",
  8932. "unit": "元/每张",
  8933. "label": "图片生成",
  8934. "discount": 1.0
  8935. },
  8936. {
  8937. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-image?serviceSite=asia-pacific-china",
  8938. "model_name": "qwen-image",
  8939. "tier_min": null,
  8940. "tier_max": null,
  8941. "tier_unit": null,
  8942. "input_price": 0.0,
  8943. "output_price": 0.25,
  8944. "currency": "CNY",
  8945. "unit": "元/每张",
  8946. "label": "图片生成",
  8947. "discount": 1.0
  8948. },
  8949. {
  8950. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-long-latest?serviceSite=asia-pacific-china",
  8951. "model_name": "qwen-long-latest",
  8952. "tier_min": null,
  8953. "tier_max": null,
  8954. "tier_unit": null,
  8955. "input_price": 0.5,
  8956. "output_price": 2.0,
  8957. "currency": "CNY",
  8958. "unit": "元/每百万tokens",
  8959. "label": "输入/输出",
  8960. "discount": 1.0
  8961. },
  8962. {
  8963. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-long?serviceSite=asia-pacific-china",
  8964. "model_name": "qwen-long",
  8965. "tier_min": null,
  8966. "tier_max": null,
  8967. "tier_unit": null,
  8968. "input_price": 0.5,
  8969. "output_price": 2.0,
  8970. "currency": "CNY",
  8971. "unit": "元/每百万tokens",
  8972. "label": "输入/输出",
  8973. "discount": 1.0
  8974. },
  8975. {
  8976. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-max-latest?serviceSite=asia-pacific-china",
  8977. "model_name": "qwen-max-latest",
  8978. "tier_min": null,
  8979. "tier_max": null,
  8980. "tier_unit": null,
  8981. "input_price": 2.4,
  8982. "output_price": 9.6,
  8983. "currency": "CNY",
  8984. "unit": "元/每百万tokens",
  8985. "label": "输入/输出",
  8986. "discount": 1.0
  8987. },
  8988. {
  8989. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-max?serviceSite=asia-pacific-china",
  8990. "model_name": "qwen-max",
  8991. "tier_min": null,
  8992. "tier_max": null,
  8993. "tier_unit": null,
  8994. "input_price": 2.4,
  8995. "output_price": 9.6,
  8996. "currency": "CNY",
  8997. "unit": "元/每百万tokens",
  8998. "label": "输入/输出",
  8999. "discount": 1.0
  9000. },
  9001. {
  9002. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-mt-flash?serviceSite=asia-pacific-china",
  9003. "model_name": "qwen-mt-flash",
  9004. "tier_min": null,
  9005. "tier_max": null,
  9006. "tier_unit": null,
  9007. "input_price": 0.7,
  9008. "output_price": 1.95,
  9009. "currency": "CNY",
  9010. "unit": "元/每百万tokens",
  9011. "label": "输入/输出",
  9012. "discount": 1.0
  9013. },
  9014. {
  9015. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-mt-image?serviceSite=asia-pacific-china",
  9016. "model_name": "qwen-mt-image",
  9017. "tier_min": null,
  9018. "tier_max": null,
  9019. "tier_unit": null,
  9020. "input_price": 0.0,
  9021. "output_price": 0.003,
  9022. "currency": "CNY",
  9023. "unit": "元/每张",
  9024. "label": "图片生成",
  9025. "discount": 1.0
  9026. },
  9027. {
  9028. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-mt-lite?serviceSite=asia-pacific-china",
  9029. "model_name": "qwen-mt-lite",
  9030. "tier_min": null,
  9031. "tier_max": null,
  9032. "tier_unit": null,
  9033. "input_price": 0.6,
  9034. "output_price": 1.6,
  9035. "currency": "CNY",
  9036. "unit": "元/每百万tokens",
  9037. "label": "输入/输出",
  9038. "discount": 1.0
  9039. },
  9040. {
  9041. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-mt-plus?serviceSite=asia-pacific-china",
  9042. "model_name": "qwen-mt-plus",
  9043. "tier_min": null,
  9044. "tier_max": null,
  9045. "tier_unit": null,
  9046. "input_price": 1.8,
  9047. "output_price": 5.4,
  9048. "currency": "CNY",
  9049. "unit": "元/每百万tokens",
  9050. "label": "输入/输出",
  9051. "discount": 1.0
  9052. },
  9053. {
  9054. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-mt-turbo?serviceSite=asia-pacific-china",
  9055. "model_name": "qwen-mt-turbo",
  9056. "tier_min": null,
  9057. "tier_max": null,
  9058. "tier_unit": null,
  9059. "input_price": 0.7,
  9060. "output_price": 1.95,
  9061. "currency": "CNY",
  9062. "unit": "元/每百万tokens",
  9063. "label": "输入/输出",
  9064. "discount": 1.0
  9065. },
  9066. {
  9067. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-plus-latest?serviceSite=asia-pacific-china",
  9068. "model_name": "qwen-plus-latest",
  9069. "tier_min": 256000.0,
  9070. "tier_max": null,
  9071. "tier_unit": "tokens",
  9072. "input_price": 4.8,
  9073. "output_price": 48.0,
  9074. "currency": "CNY",
  9075. "unit": "元/每百万tokens",
  9076. "label": "256k<input",
  9077. "discount": 1.0
  9078. },
  9079. {
  9080. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-plus-latest?serviceSite=asia-pacific-china",
  9081. "model_name": "qwen-plus-latest",
  9082. "tier_min": 0.0,
  9083. "tier_max": 128000.0,
  9084. "tier_unit": "tokens",
  9085. "input_price": 0.8,
  9086. "output_price": 2.0,
  9087. "currency": "CNY",
  9088. "unit": "元/每百万tokens",
  9089. "label": "input<=128k",
  9090. "discount": 1.0
  9091. },
  9092. {
  9093. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-plus-latest?serviceSite=asia-pacific-china",
  9094. "model_name": "qwen-plus-latest",
  9095. "tier_min": 128000.0,
  9096. "tier_max": 256000.0,
  9097. "tier_unit": "tokens",
  9098. "input_price": 2.4,
  9099. "output_price": 20.0,
  9100. "currency": "CNY",
  9101. "unit": "元/每百万tokens",
  9102. "label": "128k<input<=256k",
  9103. "discount": 1.0
  9104. },
  9105. {
  9106. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-plus?serviceSite=asia-pacific-china",
  9107. "model_name": "qwen-plus",
  9108. "tier_min": 256000.0,
  9109. "tier_max": null,
  9110. "tier_unit": "tokens",
  9111. "input_price": 4.8,
  9112. "output_price": 48.0,
  9113. "currency": "CNY",
  9114. "unit": "元/每百万tokens",
  9115. "label": "256k<input",
  9116. "discount": 1.0
  9117. },
  9118. {
  9119. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-plus?serviceSite=asia-pacific-china",
  9120. "model_name": "qwen-plus",
  9121. "tier_min": 0.0,
  9122. "tier_max": 128000.0,
  9123. "tier_unit": "tokens",
  9124. "input_price": 0.8,
  9125. "output_price": 2.0,
  9126. "currency": "CNY",
  9127. "unit": "元/每百万tokens",
  9128. "label": "input<=128k",
  9129. "discount": 1.0
  9130. },
  9131. {
  9132. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-plus?serviceSite=asia-pacific-china",
  9133. "model_name": "qwen-plus",
  9134. "tier_min": 128000.0,
  9135. "tier_max": 256000.0,
  9136. "tier_unit": "tokens",
  9137. "input_price": 2.4,
  9138. "output_price": 20.0,
  9139. "currency": "CNY",
  9140. "unit": "元/每百万tokens",
  9141. "label": "128k<input<=256k",
  9142. "discount": 1.0
  9143. },
  9144. {
  9145. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-vl-max?serviceSite=asia-pacific-china",
  9146. "model_name": "qwen-vl-max",
  9147. "tier_min": null,
  9148. "tier_max": null,
  9149. "tier_unit": null,
  9150. "input_price": 1.6,
  9151. "output_price": 4.0,
  9152. "currency": "CNY",
  9153. "unit": "元/每百万tokens",
  9154. "label": "输入/输出",
  9155. "discount": 1.0
  9156. },
  9157. {
  9158. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-vl-ocr-latest?serviceSite=asia-pacific-china",
  9159. "model_name": "qwen-vl-ocr-latest",
  9160. "tier_min": null,
  9161. "tier_max": null,
  9162. "tier_unit": null,
  9163. "input_price": 0.3,
  9164. "output_price": 0.5,
  9165. "currency": "CNY",
  9166. "unit": "元/每百万tokens",
  9167. "label": "输入/输出",
  9168. "discount": 1.0
  9169. },
  9170. {
  9171. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/qwen-vl-ocr?serviceSite=asia-pacific-china",
  9172. "model_name": "qwen-vl-ocr",
  9173. "tier_min": null,
  9174. "tier_max": null,
  9175. "tier_unit": null,
  9176. "input_price": 0.3,
  9177. "output_price": 0.5,
  9178. "currency": "CNY",
  9179. "unit": "元/每百万tokens",
  9180. "label": "输入/输出",
  9181. "discount": 1.0
  9182. },
  9183. {
  9184. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/text-embedding-v2?serviceSite=asia-pacific-china",
  9185. "model_name": "text-embedding-v2",
  9186. "tier_min": null,
  9187. "tier_max": null,
  9188. "tier_unit": null,
  9189. "input_price": 0.7,
  9190. "output_price": null,
  9191. "currency": "CNY",
  9192. "unit": "元/每百万tokens",
  9193. "label": "文本输入",
  9194. "discount": 1.0
  9195. },
  9196. {
  9197. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/text-embedding-v3?serviceSite=asia-pacific-china",
  9198. "model_name": "text-embedding-v3",
  9199. "tier_min": null,
  9200. "tier_max": null,
  9201. "tier_unit": null,
  9202. "input_price": 0.5,
  9203. "output_price": null,
  9204. "currency": "CNY",
  9205. "unit": "元/每百万tokens",
  9206. "label": "文本输入",
  9207. "discount": 1.0
  9208. },
  9209. {
  9210. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/text-embedding-v4?serviceSite=asia-pacific-china",
  9211. "model_name": "text-embedding-v4",
  9212. "tier_min": null,
  9213. "tier_max": null,
  9214. "tier_unit": null,
  9215. "input_price": 0.5,
  9216. "output_price": null,
  9217. "currency": "CNY",
  9218. "unit": "元/每百万tokens",
  9219. "label": "文本输入",
  9220. "discount": 1.0
  9221. },
  9222. {
  9223. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/tongyi-embedding-vision-plus?serviceSite=asia-pacific-china",
  9224. "model_name": "tongyi-embedding-vision-plus",
  9225. "tier_min": null,
  9226. "tier_max": null,
  9227. "tier_unit": null,
  9228. "input_price": 0.5,
  9229. "output_price": null,
  9230. "currency": "CNY",
  9231. "unit": "元/每百万tokens",
  9232. "label": "图片输入",
  9233. "discount": 1.0
  9234. },
  9235. {
  9236. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/wan2.2-s2v?serviceSite=asia-pacific-china",
  9237. "model_name": "wan2.2-s2v",
  9238. "tier_min": 0.0,
  9239. "tier_max": 480.0,
  9240. "tier_unit": "seconds",
  9241. "input_price": 0.0,
  9242. "output_price": 0.5,
  9243. "currency": "CNY",
  9244. "unit": "元/每秒",
  9245. "label": "视频生成(480P)",
  9246. "discount": 1.0
  9247. },
  9248. {
  9249. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/wan2.2-s2v?serviceSite=asia-pacific-china",
  9250. "model_name": "wan2.2-s2v",
  9251. "tier_min": 481.0,
  9252. "tier_max": 720.0,
  9253. "tier_unit": "seconds",
  9254. "input_price": 0.0,
  9255. "output_price": 0.9,
  9256. "currency": "CNY",
  9257. "unit": "元/每秒",
  9258. "label": "视频生成(720P)",
  9259. "discount": 1.0
  9260. },
  9261. {
  9262. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/wan2.5-i2i-preview?serviceSite=asia-pacific-china",
  9263. "model_name": "wan2.5-i2i-preview",
  9264. "tier_min": null,
  9265. "tier_max": null,
  9266. "tier_unit": null,
  9267. "input_price": 0.0,
  9268. "output_price": 0.2,
  9269. "currency": "CNY",
  9270. "unit": "元/每张",
  9271. "label": "图片生成",
  9272. "discount": 1.0
  9273. },
  9274. {
  9275. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/wan2.5-i2v-preview?serviceSite=asia-pacific-china",
  9276. "model_name": "wan2.5-i2v-preview",
  9277. "tier_min": 0.0,
  9278. "tier_max": 480.0,
  9279. "tier_unit": "seconds",
  9280. "input_price": 0.0,
  9281. "output_price": 0.3,
  9282. "currency": "CNY",
  9283. "unit": "元/每秒",
  9284. "label": "视频生成(480P)",
  9285. "discount": 1.0
  9286. },
  9287. {
  9288. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/wan2.5-i2v-preview?serviceSite=asia-pacific-china",
  9289. "model_name": "wan2.5-i2v-preview",
  9290. "tier_min": 481.0,
  9291. "tier_max": 720.0,
  9292. "tier_unit": "seconds",
  9293. "input_price": 0.0,
  9294. "output_price": 0.6,
  9295. "currency": "CNY",
  9296. "unit": "元/每秒",
  9297. "label": "视频生成(720P)",
  9298. "discount": 1.0
  9299. },
  9300. {
  9301. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/wan2.5-i2v-preview?serviceSite=asia-pacific-china",
  9302. "model_name": "wan2.5-i2v-preview",
  9303. "tier_min": 721.0,
  9304. "tier_max": 1080.0,
  9305. "tier_unit": "seconds",
  9306. "input_price": 0.0,
  9307. "output_price": 1.0,
  9308. "currency": "CNY",
  9309. "unit": "元/每秒",
  9310. "label": "视频生成(1080P)",
  9311. "discount": 1.0
  9312. },
  9313. {
  9314. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/wan2.5-t2i-preview?serviceSite=asia-pacific-china",
  9315. "model_name": "wan2.5-t2i-preview",
  9316. "tier_min": null,
  9317. "tier_max": null,
  9318. "tier_unit": null,
  9319. "input_price": 0.0,
  9320. "output_price": 0.2,
  9321. "currency": "CNY",
  9322. "unit": "元/每张",
  9323. "label": "图片生成",
  9324. "discount": 1.0
  9325. },
  9326. {
  9327. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/wan2.5-t2v-preview?serviceSite=asia-pacific-china",
  9328. "model_name": "wan2.5-t2v-preview",
  9329. "tier_min": 0.0,
  9330. "tier_max": 480.0,
  9331. "tier_unit": "seconds",
  9332. "input_price": 0.0,
  9333. "output_price": 0.3,
  9334. "currency": "CNY",
  9335. "unit": "元/每秒",
  9336. "label": "视频生成(480P)",
  9337. "discount": 1.0
  9338. },
  9339. {
  9340. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/wan2.5-t2v-preview?serviceSite=asia-pacific-china",
  9341. "model_name": "wan2.5-t2v-preview",
  9342. "tier_min": 481.0,
  9343. "tier_max": 720.0,
  9344. "tier_unit": "seconds",
  9345. "input_price": 0.0,
  9346. "output_price": 0.6,
  9347. "currency": "CNY",
  9348. "unit": "元/每秒",
  9349. "label": "视频生成(720P)",
  9350. "discount": 1.0
  9351. },
  9352. {
  9353. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/wan2.5-t2v-preview?serviceSite=asia-pacific-china",
  9354. "model_name": "wan2.5-t2v-preview",
  9355. "tier_min": 721.0,
  9356. "tier_max": 1080.0,
  9357. "tier_unit": "seconds",
  9358. "input_price": 0.0,
  9359. "output_price": 1.0,
  9360. "currency": "CNY",
  9361. "unit": "元/每秒",
  9362. "label": "视频生成(1080P)",
  9363. "discount": 1.0
  9364. },
  9365. {
  9366. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/wan2.6-i2v?serviceSite=asia-pacific-china",
  9367. "model_name": "wan2.6-i2v",
  9368. "tier_min": 0.0,
  9369. "tier_max": 720.0,
  9370. "tier_unit": "seconds",
  9371. "input_price": 0.0,
  9372. "output_price": 0.6,
  9373. "currency": "CNY",
  9374. "unit": "元/每秒",
  9375. "label": "视频生成(720P)",
  9376. "discount": 1.0
  9377. },
  9378. {
  9379. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/wan2.6-i2v?serviceSite=asia-pacific-china",
  9380. "model_name": "wan2.6-i2v",
  9381. "tier_min": 721.0,
  9382. "tier_max": 1080.0,
  9383. "tier_unit": "seconds",
  9384. "input_price": 0.0,
  9385. "output_price": 1.0,
  9386. "currency": "CNY",
  9387. "unit": "元/每秒",
  9388. "label": "视频生成(1080P)",
  9389. "discount": 1.0
  9390. },
  9391. {
  9392. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/wan2.6-image?serviceSite=asia-pacific-china",
  9393. "model_name": "wan2.6-image",
  9394. "tier_min": null,
  9395. "tier_max": null,
  9396. "tier_unit": null,
  9397. "input_price": 0.0,
  9398. "output_price": 0.2,
  9399. "currency": "CNY",
  9400. "unit": "元/每张",
  9401. "label": "图片生成",
  9402. "discount": 1.0
  9403. },
  9404. {
  9405. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/wan2.6-r2v?serviceSite=asia-pacific-china",
  9406. "model_name": "wan2.6-r2v",
  9407. "tier_min": 0.0,
  9408. "tier_max": 720.0,
  9409. "tier_unit": "seconds",
  9410. "input_price": 0.0,
  9411. "output_price": 0.6,
  9412. "currency": "CNY",
  9413. "unit": "元/每秒",
  9414. "label": "视频生成(720P)",
  9415. "discount": 1.0
  9416. },
  9417. {
  9418. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/wan2.6-r2v?serviceSite=asia-pacific-china",
  9419. "model_name": "wan2.6-r2v",
  9420. "tier_min": 721.0,
  9421. "tier_max": 1080.0,
  9422. "tier_unit": "seconds",
  9423. "input_price": 0.0,
  9424. "output_price": 1.0,
  9425. "currency": "CNY",
  9426. "unit": "元/每秒",
  9427. "label": "视频生成(1080P)",
  9428. "discount": 1.0
  9429. },
  9430. {
  9431. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/wan2.6-t2i?serviceSite=asia-pacific-china",
  9432. "model_name": "wan2.6-t2i",
  9433. "tier_min": null,
  9434. "tier_max": null,
  9435. "tier_unit": null,
  9436. "input_price": 0.0,
  9437. "output_price": 0.2,
  9438. "currency": "CNY",
  9439. "unit": "元/每张",
  9440. "label": "图片生成",
  9441. "discount": 1.0
  9442. },
  9443. {
  9444. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/wan2.6-t2v?serviceSite=asia-pacific-china",
  9445. "model_name": "wan2.6-t2v",
  9446. "tier_min": 0.0,
  9447. "tier_max": 720.0,
  9448. "tier_unit": "seconds",
  9449. "input_price": 0.0,
  9450. "output_price": 0.6,
  9451. "currency": "CNY",
  9452. "unit": "元/每秒",
  9453. "label": "视频生成(720P)",
  9454. "discount": 1.0
  9455. },
  9456. {
  9457. "url": "https://bailian.console.aliyun.com/cn-beijing?spm=5176.29619931.J_XNqYbJaEnpB5_cCJf7e6D.1.770b10d7fVCktz&tab=model#/model-market/detail/wan2.6-t2v?serviceSite=asia-pacific-china",
  9458. "model_name": "wan2.6-t2v",
  9459. "tier_min": 721.0,
  9460. "tier_max": 1080.0,
  9461. "tier_unit": "seconds",
  9462. "input_price": 0.0,
  9463. "output_price": 1.0,
  9464. "currency": "CNY",
  9465. "unit": "元/每秒",
  9466. "label": "视频生成(1080P)",
  9467. "discount": 1.0
  9468. }
  9469. ],
  9470. "types": [
  9471. {
  9472. "model_name": "cosyvoice-clone-v1",
  9473. "type": [
  9474. "语音合成"
  9475. ]
  9476. },
  9477. {
  9478. "model_name": "cosyvoice-v3-flash",
  9479. "type": [
  9480. "语音合成"
  9481. ]
  9482. },
  9483. {
  9484. "model_name": "cosyvoice-v3-plus",
  9485. "type": [
  9486. "语音合成"
  9487. ]
  9488. },
  9489. {
  9490. "model_name": "deepseek-r1-0528",
  9491. "type": []
  9492. },
  9493. {
  9494. "model_name": "deepseek-r1-distill-qwen-14b",
  9495. "type": [
  9496. "文本生成"
  9497. ]
  9498. },
  9499. {
  9500. "model_name": "deepseek-r1-distill-qwen-32b",
  9501. "type": [
  9502. "文本生成"
  9503. ]
  9504. },
  9505. {
  9506. "model_name": "deepseek-r1-distill-qwen-7b",
  9507. "type": [
  9508. "文本生成"
  9509. ]
  9510. },
  9511. {
  9512. "model_name": "deepseek-r1",
  9513. "type": []
  9514. },
  9515. {
  9516. "model_name": "deepseek-v3.1",
  9517. "type": [
  9518. "文本生成"
  9519. ]
  9520. },
  9521. {
  9522. "model_name": "deepseek-v3.2-exp",
  9523. "type": [
  9524. "文本生成"
  9525. ]
  9526. },
  9527. {
  9528. "model_name": "deepseek-v3.2",
  9529. "type": [
  9530. "文本生成"
  9531. ]
  9532. },
  9533. {
  9534. "model_name": "deepseek-v3",
  9535. "type": [
  9536. "文本生成"
  9537. ]
  9538. },
  9539. {
  9540. "model_name": "fun-asr-mtl",
  9541. "type": [
  9542. "语音识别"
  9543. ]
  9544. },
  9545. {
  9546. "model_name": "fun-asr-realtime",
  9547. "type": [
  9548. "实时语音识别"
  9549. ]
  9550. },
  9551. {
  9552. "model_name": "fun-asr",
  9553. "type": [
  9554. "语音识别"
  9555. ]
  9556. },
  9557. {
  9558. "model_name": "glm-5.1",
  9559. "type": [
  9560. "文本生成"
  9561. ]
  9562. },
  9563. {
  9564. "model_name": "glm-5",
  9565. "type": [
  9566. "文本生成"
  9567. ]
  9568. },
  9569. {
  9570. "model_name": "gte-rerank-v2",
  9571. "type": [
  9572. "向量模型"
  9573. ]
  9574. },
  9575. {
  9576. "model_name": "kimi-k2.5",
  9577. "type": [
  9578. "文本生成"
  9579. ]
  9580. },
  9581. {
  9582. "model_name": "MiniMax-M2.5",
  9583. "type": [
  9584. "文本生成"
  9585. ]
  9586. },
  9587. {
  9588. "model_name": "paraformer-realtime-v1",
  9589. "type": [
  9590. "实时语音识别"
  9591. ]
  9592. },
  9593. {
  9594. "model_name": "paraformer-realtime-v2",
  9595. "type": [
  9596. "实时语音识别"
  9597. ]
  9598. },
  9599. {
  9600. "model_name": "paraformer-v1",
  9601. "type": [
  9602. "语音识别"
  9603. ]
  9604. },
  9605. {
  9606. "model_name": "paraformer-v2",
  9607. "type": [
  9608. "语音识别"
  9609. ]
  9610. },
  9611. {
  9612. "model_name": "qwen2.5-vl-embedding",
  9613. "type": [
  9614. "多模态向量"
  9615. ]
  9616. },
  9617. {
  9618. "model_name": "qwen3.5-flash",
  9619. "type": [
  9620. "文本生成"
  9621. ]
  9622. },
  9623. {
  9624. "model_name": "qwen3.5-plus",
  9625. "type": [
  9626. "文本生成"
  9627. ]
  9628. },
  9629. {
  9630. "model_name": "qwen3.6-plus",
  9631. "type": [
  9632. "文本生成"
  9633. ]
  9634. },
  9635. {
  9636. "model_name": "qwen3-asr-flash-realtime",
  9637. "type": [
  9638. "实时语音识别"
  9639. ]
  9640. },
  9641. {
  9642. "model_name": "qwen3-asr-flash",
  9643. "type": [
  9644. "语音识别"
  9645. ]
  9646. },
  9647. {
  9648. "model_name": "qwen3-coder-flash",
  9649. "type": [
  9650. "文本生成"
  9651. ]
  9652. },
  9653. {
  9654. "model_name": "qwen3-coder-next",
  9655. "type": [
  9656. "文本生成"
  9657. ]
  9658. },
  9659. {
  9660. "model_name": "qwen3-coder-plus",
  9661. "type": [
  9662. "文本生成"
  9663. ]
  9664. },
  9665. {
  9666. "model_name": "qwen3-max",
  9667. "type": [
  9668. "文本生成"
  9669. ]
  9670. },
  9671. {
  9672. "model_name": "qwen3-omni-flash-realtime",
  9673. "type": []
  9674. },
  9675. {
  9676. "model_name": "qwen3-omni-flash",
  9677. "type": []
  9678. },
  9679. {
  9680. "model_name": "qwen3-rerank",
  9681. "type": [
  9682. "向量模型"
  9683. ]
  9684. },
  9685. {
  9686. "model_name": "qwen3-tts-flash-realtime",
  9687. "type": [
  9688. "语音合成"
  9689. ]
  9690. },
  9691. {
  9692. "model_name": "qwen3-tts-flash",
  9693. "type": [
  9694. "语音合成"
  9695. ]
  9696. },
  9697. {
  9698. "model_name": "qwen3-vl-embedding",
  9699. "type": [
  9700. "多模态向量"
  9701. ]
  9702. },
  9703. {
  9704. "model_name": "qwen3-vl-flash",
  9705. "type": []
  9706. },
  9707. {
  9708. "model_name": "qwen3-vl-plus",
  9709. "type": []
  9710. },
  9711. {
  9712. "model_name": "qwen3-vl-rerank",
  9713. "type": [
  9714. "向量模型"
  9715. ]
  9716. },
  9717. {
  9718. "model_name": "qwen-coder-plus",
  9719. "type": [
  9720. "文本生成"
  9721. ]
  9722. },
  9723. {
  9724. "model_name": "qwen-coder-turbo",
  9725. "type": [
  9726. "文本生成"
  9727. ]
  9728. },
  9729. {
  9730. "model_name": "qwen-deep-research",
  9731. "type": [
  9732. "文本生成"
  9733. ]
  9734. },
  9735. {
  9736. "model_name": "qwen-doc-turbo",
  9737. "type": [
  9738. "文本生成"
  9739. ]
  9740. },
  9741. {
  9742. "model_name": "qwen-flash",
  9743. "type": [
  9744. "文本生成"
  9745. ]
  9746. },
  9747. {
  9748. "model_name": "qwen-image-2.0-pro",
  9749. "type": [
  9750. "图像生成"
  9751. ]
  9752. },
  9753. {
  9754. "model_name": "qwen-image-2.0",
  9755. "type": [
  9756. "图像生成"
  9757. ]
  9758. },
  9759. {
  9760. "model_name": "qwen-image-edit-plus",
  9761. "type": [
  9762. "图像生成"
  9763. ]
  9764. },
  9765. {
  9766. "model_name": "qwen-image-edit",
  9767. "type": [
  9768. "图像生成"
  9769. ]
  9770. },
  9771. {
  9772. "model_name": "qwen-image-max",
  9773. "type": [
  9774. "图像生成"
  9775. ]
  9776. },
  9777. {
  9778. "model_name": "qwen-image-plus",
  9779. "type": [
  9780. "图像生成"
  9781. ]
  9782. },
  9783. {
  9784. "model_name": "qwen-image",
  9785. "type": [
  9786. "图像生成"
  9787. ]
  9788. },
  9789. {
  9790. "model_name": "qwen-long-latest",
  9791. "type": [
  9792. "文本生成"
  9793. ]
  9794. },
  9795. {
  9796. "model_name": "qwen-long",
  9797. "type": [
  9798. "文本生成"
  9799. ]
  9800. },
  9801. {
  9802. "model_name": "qwen-max-latest",
  9803. "type": [
  9804. "文本生成"
  9805. ]
  9806. },
  9807. {
  9808. "model_name": "qwen-max",
  9809. "type": [
  9810. "文本生成"
  9811. ]
  9812. },
  9813. {
  9814. "model_name": "qwen-mt-flash",
  9815. "type": [
  9816. "文本生成"
  9817. ]
  9818. },
  9819. {
  9820. "model_name": "qwen-mt-image",
  9821. "type": [
  9822. "图像生成"
  9823. ]
  9824. },
  9825. {
  9826. "model_name": "qwen-mt-lite",
  9827. "type": [
  9828. "文本生成"
  9829. ]
  9830. },
  9831. {
  9832. "model_name": "qwen-mt-plus",
  9833. "type": [
  9834. "文本生成"
  9835. ]
  9836. },
  9837. {
  9838. "model_name": "qwen-mt-turbo",
  9839. "type": [
  9840. "文本生成"
  9841. ]
  9842. },
  9843. {
  9844. "model_name": "qwen-plus-latest",
  9845. "type": [
  9846. "文本生成"
  9847. ]
  9848. },
  9849. {
  9850. "model_name": "qwen-plus",
  9851. "type": [
  9852. "文本生成"
  9853. ]
  9854. },
  9855. {
  9856. "model_name": "qwen-vl-max",
  9857. "type": []
  9858. },
  9859. {
  9860. "model_name": "qwen-vl-ocr-latest",
  9861. "type": []
  9862. },
  9863. {
  9864. "model_name": "qwen-vl-ocr",
  9865. "type": []
  9866. },
  9867. {
  9868. "model_name": "text-embedding-v2",
  9869. "type": [
  9870. "向量模型"
  9871. ]
  9872. },
  9873. {
  9874. "model_name": "text-embedding-v3",
  9875. "type": [
  9876. "向量模型"
  9877. ]
  9878. },
  9879. {
  9880. "model_name": "text-embedding-v4",
  9881. "type": [
  9882. "向量模型"
  9883. ]
  9884. },
  9885. {
  9886. "model_name": "tongyi-embedding-vision-plus",
  9887. "type": [
  9888. "多模态向量"
  9889. ]
  9890. },
  9891. {
  9892. "model_name": "wan2.2-s2v",
  9893. "type": [
  9894. "视频生成"
  9895. ]
  9896. },
  9897. {
  9898. "model_name": "wan2.5-i2i-preview",
  9899. "type": [
  9900. "图像生成"
  9901. ]
  9902. },
  9903. {
  9904. "model_name": "wan2.5-i2v-preview",
  9905. "type": [
  9906. "视频生成"
  9907. ]
  9908. },
  9909. {
  9910. "model_name": "wan2.5-t2i-preview",
  9911. "type": [
  9912. "图像生成"
  9913. ]
  9914. },
  9915. {
  9916. "model_name": "wan2.5-t2v-preview",
  9917. "type": [
  9918. "视频生成"
  9919. ]
  9920. },
  9921. {
  9922. "model_name": "wan2.6-i2v",
  9923. "type": [
  9924. "视频生成"
  9925. ]
  9926. },
  9927. {
  9928. "model_name": "wan2.6-image",
  9929. "type": [
  9930. "图像生成"
  9931. ]
  9932. },
  9933. {
  9934. "model_name": "wan2.6-r2v",
  9935. "type": [
  9936. "视频生成"
  9937. ]
  9938. },
  9939. {
  9940. "model_name": "wan2.6-t2i",
  9941. "type": [
  9942. "图像生成"
  9943. ]
  9944. },
  9945. {
  9946. "model_name": "wan2.6-t2v",
  9947. "type": [
  9948. "视频生成"
  9949. ]
  9950. }
  9951. ]
  9952. }