mycode-cli 0.1.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- mycode/__init__.py +1 -0
- mycode/cli/__init__.py +1 -0
- mycode/cli/chat.py +650 -0
- mycode/cli/main.py +245 -0
- mycode/cli/render.py +693 -0
- mycode/cli/runtime.py +271 -0
- mycode/cli/theme.py +109 -0
- mycode/core/__init__.py +30 -0
- mycode/core/agent.py +515 -0
- mycode/core/config.py +551 -0
- mycode/core/messages.py +166 -0
- mycode/core/models.py +144 -0
- mycode/core/models_catalog.json +2090 -0
- mycode/core/providers/__init__.py +86 -0
- mycode/core/providers/anthropic_like.py +366 -0
- mycode/core/providers/base.py +351 -0
- mycode/core/providers/gemini.py +321 -0
- mycode/core/providers/openai_chat.py +356 -0
- mycode/core/providers/openai_responses.py +326 -0
- mycode/core/session.py +537 -0
- mycode/core/system_prompt.md +10 -0
- mycode/core/system_prompt.py +319 -0
- mycode/core/tools.py +898 -0
- mycode/server/__init__.py +1 -0
- mycode/server/app.py +52 -0
- mycode/server/deps.py +29 -0
- mycode/server/routers/__init__.py +7 -0
- mycode/server/routers/chat.py +320 -0
- mycode/server/routers/sessions.py +77 -0
- mycode/server/routers/workspaces.py +92 -0
- mycode/server/run_manager.py +195 -0
- mycode/server/schemas.py +66 -0
- mycode/server/static/assets/EditDiff-C1ql7kft.js +12 -0
- mycode/server/static/assets/KaTeX_AMS-Regular-BQhdFMY1.woff2 +0 -0
- mycode/server/static/assets/KaTeX_AMS-Regular-DMm9YOAa.woff +0 -0
- mycode/server/static/assets/KaTeX_AMS-Regular-DRggAlZN.ttf +0 -0
- mycode/server/static/assets/KaTeX_Caligraphic-Bold-ATXxdsX0.ttf +0 -0
- mycode/server/static/assets/KaTeX_Caligraphic-Bold-BEiXGLvX.woff +0 -0
- mycode/server/static/assets/KaTeX_Caligraphic-Bold-Dq_IR9rO.woff2 +0 -0
- mycode/server/static/assets/KaTeX_Caligraphic-Regular-CTRA-rTL.woff +0 -0
- mycode/server/static/assets/KaTeX_Caligraphic-Regular-Di6jR-x-.woff2 +0 -0
- mycode/server/static/assets/KaTeX_Caligraphic-Regular-wX97UBjC.ttf +0 -0
- mycode/server/static/assets/KaTeX_Fraktur-Bold-BdnERNNW.ttf +0 -0
- mycode/server/static/assets/KaTeX_Fraktur-Bold-BsDP51OF.woff +0 -0
- mycode/server/static/assets/KaTeX_Fraktur-Bold-CL6g_b3V.woff2 +0 -0
- mycode/server/static/assets/KaTeX_Fraktur-Regular-CB_wures.ttf +0 -0
- mycode/server/static/assets/KaTeX_Fraktur-Regular-CTYiF6lA.woff2 +0 -0
- mycode/server/static/assets/KaTeX_Fraktur-Regular-Dxdc4cR9.woff +0 -0
- mycode/server/static/assets/KaTeX_Main-Bold-Cx986IdX.woff2 +0 -0
- mycode/server/static/assets/KaTeX_Main-Bold-Jm3AIy58.woff +0 -0
- mycode/server/static/assets/KaTeX_Main-Bold-waoOVXN0.ttf +0 -0
- mycode/server/static/assets/KaTeX_Main-BoldItalic-DxDJ3AOS.woff2 +0 -0
- mycode/server/static/assets/KaTeX_Main-BoldItalic-DzxPMmG6.ttf +0 -0
- mycode/server/static/assets/KaTeX_Main-BoldItalic-SpSLRI95.woff +0 -0
- mycode/server/static/assets/KaTeX_Main-Italic-3WenGoN9.ttf +0 -0
- mycode/server/static/assets/KaTeX_Main-Italic-BMLOBm91.woff +0 -0
- mycode/server/static/assets/KaTeX_Main-Italic-NWA7e6Wa.woff2 +0 -0
- mycode/server/static/assets/KaTeX_Main-Regular-B22Nviop.woff2 +0 -0
- mycode/server/static/assets/KaTeX_Main-Regular-Dr94JaBh.woff +0 -0
- mycode/server/static/assets/KaTeX_Main-Regular-ypZvNtVU.ttf +0 -0
- mycode/server/static/assets/KaTeX_Math-BoldItalic-B3XSjfu4.ttf +0 -0
- mycode/server/static/assets/KaTeX_Math-BoldItalic-CZnvNsCZ.woff2 +0 -0
- mycode/server/static/assets/KaTeX_Math-BoldItalic-iY-2wyZ7.woff +0 -0
- mycode/server/static/assets/KaTeX_Math-Italic-DA0__PXp.woff +0 -0
- mycode/server/static/assets/KaTeX_Math-Italic-flOr_0UB.ttf +0 -0
- mycode/server/static/assets/KaTeX_Math-Italic-t53AETM-.woff2 +0 -0
- mycode/server/static/assets/KaTeX_SansSerif-Bold-CFMepnvq.ttf +0 -0
- mycode/server/static/assets/KaTeX_SansSerif-Bold-D1sUS0GD.woff2 +0 -0
- mycode/server/static/assets/KaTeX_SansSerif-Bold-DbIhKOiC.woff +0 -0
- mycode/server/static/assets/KaTeX_SansSerif-Italic-C3H0VqGB.woff2 +0 -0
- mycode/server/static/assets/KaTeX_SansSerif-Italic-DN2j7dab.woff +0 -0
- mycode/server/static/assets/KaTeX_SansSerif-Italic-YYjJ1zSn.ttf +0 -0
- mycode/server/static/assets/KaTeX_SansSerif-Regular-BNo7hRIc.ttf +0 -0
- mycode/server/static/assets/KaTeX_SansSerif-Regular-CS6fqUqJ.woff +0 -0
- mycode/server/static/assets/KaTeX_SansSerif-Regular-DDBCnlJ7.woff2 +0 -0
- mycode/server/static/assets/KaTeX_Script-Regular-C5JkGWo-.ttf +0 -0
- mycode/server/static/assets/KaTeX_Script-Regular-D3wIWfF6.woff2 +0 -0
- mycode/server/static/assets/KaTeX_Script-Regular-D5yQViql.woff +0 -0
- mycode/server/static/assets/KaTeX_Size1-Regular-C195tn64.woff +0 -0
- mycode/server/static/assets/KaTeX_Size1-Regular-Dbsnue_I.ttf +0 -0
- mycode/server/static/assets/KaTeX_Size1-Regular-mCD8mA8B.woff2 +0 -0
- mycode/server/static/assets/KaTeX_Size2-Regular-B7gKUWhC.ttf +0 -0
- mycode/server/static/assets/KaTeX_Size2-Regular-Dy4dx90m.woff2 +0 -0
- mycode/server/static/assets/KaTeX_Size2-Regular-oD1tc_U0.woff +0 -0
- mycode/server/static/assets/KaTeX_Size3-Regular-CTq5MqoE.woff +0 -0
- mycode/server/static/assets/KaTeX_Size3-Regular-DgpXs0kz.ttf +0 -0
- mycode/server/static/assets/KaTeX_Size4-Regular-BF-4gkZK.woff +0 -0
- mycode/server/static/assets/KaTeX_Size4-Regular-DWFBv043.ttf +0 -0
- mycode/server/static/assets/KaTeX_Size4-Regular-Dl5lxZxV.woff2 +0 -0
- mycode/server/static/assets/KaTeX_Typewriter-Regular-C0xS9mPB.woff +0 -0
- mycode/server/static/assets/KaTeX_Typewriter-Regular-CO6r4hn1.woff2 +0 -0
- mycode/server/static/assets/KaTeX_Typewriter-Regular-D3Ib7_Hf.ttf +0 -0
- mycode/server/static/assets/abap-BdImnpbu.js +1 -0
- mycode/server/static/assets/actionscript-3-CoDkCxhg.js +1 -0
- mycode/server/static/assets/ada-bCR0ucgS.js +1 -0
- mycode/server/static/assets/andromeeda-C4gqWexZ.js +1 -0
- mycode/server/static/assets/angular-html-DA-rfuFy.js +1 -0
- mycode/server/static/assets/angular-ts-BrjP3tb8.js +1 -0
- mycode/server/static/assets/apache-Pmp26Uib.js +1 -0
- mycode/server/static/assets/apex-D8_7TLub.js +1 -0
- mycode/server/static/assets/apl-CORt7UWP.js +1 -0
- mycode/server/static/assets/applescript-Co6uUVPk.js +1 -0
- mycode/server/static/assets/ara-BRHolxvo.js +1 -0
- mycode/server/static/assets/asciidoc-Ve4PFQV2.js +1 -0
- mycode/server/static/assets/asm-D_Q5rh1f.js +1 -0
- mycode/server/static/assets/astro-HNnZUWAn.js +1 -0
- mycode/server/static/assets/aurora-x-D-2ljcwZ.js +1 -0
- mycode/server/static/assets/auto-render-xntwXHOX.js +261 -0
- mycode/server/static/assets/awk-DMzUqQB5.js +1 -0
- mycode/server/static/assets/ayu-dark-DYE7WIF3.js +1 -0
- mycode/server/static/assets/ayu-light-BA47KaF1.js +1 -0
- mycode/server/static/assets/ayu-mirage-32ctXXKs.js +1 -0
- mycode/server/static/assets/ballerina-BFfxhgS-.js +1 -0
- mycode/server/static/assets/bat-BkioyH1T.js +1 -0
- mycode/server/static/assets/beancount-k_qm7-4y.js +1 -0
- mycode/server/static/assets/berry-uYugtg8r.js +1 -0
- mycode/server/static/assets/bibtex-CHM0blh-.js +1 -0
- mycode/server/static/assets/bicep-Bmn6On1c.js +1 -0
- mycode/server/static/assets/bird2-BIv1doCn.js +1 -0
- mycode/server/static/assets/blade-BjGOyj-B.js +1 -0
- mycode/server/static/assets/bsl-BO_Y6i37.js +1 -0
- mycode/server/static/assets/c-BIGW1oBm.js +1 -0
- mycode/server/static/assets/c3-eo99z4R2.js +1 -0
- mycode/server/static/assets/cadence-Bv_4Rxtq.js +1 -0
- mycode/server/static/assets/cairo-KRGpt6FW.js +1 -0
- mycode/server/static/assets/catppuccin-frappe-DFWUc33u.js +1 -0
- mycode/server/static/assets/catppuccin-latte-C9dUb6Cb.js +1 -0
- mycode/server/static/assets/catppuccin-macchiato-DQyhUUbL.js +1 -0
- mycode/server/static/assets/catppuccin-mocha-D87Tk5Gz.js +1 -0
- mycode/server/static/assets/clarity-D53aC0YG.js +1 -0
- mycode/server/static/assets/clojure-P80f7IUj.js +1 -0
- mycode/server/static/assets/cmake-D1j8_8rp.js +1 -0
- mycode/server/static/assets/cobol-nBiQ_Alo.js +1 -0
- mycode/server/static/assets/codeowners-Bp6g37R7.js +1 -0
- mycode/server/static/assets/codeql-DsOJ9woJ.js +1 -0
- mycode/server/static/assets/coffee-Ch7k5sss.js +1 -0
- mycode/server/static/assets/common-lisp-Cg-RD9OK.js +1 -0
- mycode/server/static/assets/coq-DkFqJrB1.js +1 -0
- mycode/server/static/assets/cpp-CofmeUqb.js +1 -0
- mycode/server/static/assets/crystal-DNxU26gB.js +1 -0
- mycode/server/static/assets/csharp-COcwbKMJ.js +1 -0
- mycode/server/static/assets/css-CLj8gQPS.js +1 -0
- mycode/server/static/assets/csv-fuZLfV_i.js +1 -0
- mycode/server/static/assets/cue-D82EKSYY.js +1 -0
- mycode/server/static/assets/cypher-COkxafJQ.js +1 -0
- mycode/server/static/assets/d-85-TOEBH.js +1 -0
- mycode/server/static/assets/dark-plus-C3mMm8J8.js +1 -0
- mycode/server/static/assets/dart-bE4Kk8sk.js +1 -0
- mycode/server/static/assets/dax-CEL-wOlO.js +1 -0
- mycode/server/static/assets/desktop-BmXAJ9_W.js +1 -0
- mycode/server/static/assets/diff-D97Zzqfu.js +1 -0
- mycode/server/static/assets/docker-BcOcwvcX.js +1 -0
- mycode/server/static/assets/dotenv-Da5cRb03.js +1 -0
- mycode/server/static/assets/dracula-BzJJZx-M.js +1 -0
- mycode/server/static/assets/dracula-soft-BXkSAIEj.js +1 -0
- mycode/server/static/assets/dream-maker-BtqSS_iP.js +1 -0
- mycode/server/static/assets/edge-FbVlp4U3.js +1 -0
- mycode/server/static/assets/elixir-CkH2-t6x.js +1 -0
- mycode/server/static/assets/elm-DbKCFpqz.js +1 -0
- mycode/server/static/assets/emacs-lisp-CXvaQtF9.js +1 -0
- mycode/server/static/assets/erb-BYCe7drp.js +1 -0
- mycode/server/static/assets/erlang-DsQrWhSR.js +1 -0
- mycode/server/static/assets/everforest-dark-BgDCqdQA.js +1 -0
- mycode/server/static/assets/everforest-light-C8M2exoo.js +1 -0
- mycode/server/static/assets/fennel-BYunw83y.js +1 -0
- mycode/server/static/assets/fish-BvzEVeQv.js +1 -0
- mycode/server/static/assets/fluent-C4IJs8-o.js +1 -0
- mycode/server/static/assets/fortran-fixed-form-CkoXwp7k.js +1 -0
- mycode/server/static/assets/fortran-free-form-BxgE0vQu.js +1 -0
- mycode/server/static/assets/fsharp-CXgrBDvD.js +1 -0
- mycode/server/static/assets/gdresource-BOOCDP_w.js +1 -0
- mycode/server/static/assets/gdscript-C5YyOfLZ.js +1 -0
- mycode/server/static/assets/gdshader-DkwncUOv.js +1 -0
- mycode/server/static/assets/genie-D0YGMca9.js +1 -0
- mycode/server/static/assets/gherkin-DyxjwDmM.js +1 -0
- mycode/server/static/assets/git-commit-F4YmCXRG.js +1 -0
- mycode/server/static/assets/git-rebase-r7XF79zn.js +1 -0
- mycode/server/static/assets/github-dark-DHJKELXO.js +1 -0
- mycode/server/static/assets/github-dark-default-Cuk6v7N8.js +1 -0
- mycode/server/static/assets/github-dark-dimmed-DH5Ifo-i.js +1 -0
- mycode/server/static/assets/github-dark-high-contrast-E3gJ1_iC.js +1 -0
- mycode/server/static/assets/github-light-DAi9KRSo.js +1 -0
- mycode/server/static/assets/github-light-default-D7oLnXFd.js +1 -0
- mycode/server/static/assets/github-light-high-contrast-BfjtVDDH.js +1 -0
- mycode/server/static/assets/gleam-BspZqrRM.js +1 -0
- mycode/server/static/assets/glimmer-js-ByusRIyA.js +1 -0
- mycode/server/static/assets/glimmer-ts-BfAWNZQY.js +1 -0
- mycode/server/static/assets/glsl-DplSGwfg.js +1 -0
- mycode/server/static/assets/gn-n2N0HUVH.js +1 -0
- mycode/server/static/assets/gnuplot-DdkO51Og.js +1 -0
- mycode/server/static/assets/go-C27-OAKa.js +1 -0
- mycode/server/static/assets/graphql-ChdNCCLP.js +1 -0
- mycode/server/static/assets/groovy-gcz8RCvz.js +1 -0
- mycode/server/static/assets/gruvbox-dark-hard-CFHQjOhq.js +1 -0
- mycode/server/static/assets/gruvbox-dark-medium-GsRaNv29.js +1 -0
- mycode/server/static/assets/gruvbox-dark-soft-CVdnzihN.js +1 -0
- mycode/server/static/assets/gruvbox-light-hard-CH1njM8p.js +1 -0
- mycode/server/static/assets/gruvbox-light-medium-DRw_LuNl.js +1 -0
- mycode/server/static/assets/gruvbox-light-soft-hJgmCMqR.js +1 -0
- mycode/server/static/assets/hack-i7_Ulhet.js +1 -0
- mycode/server/static/assets/haml-D5jkg6IW.js +1 -0
- mycode/server/static/assets/handlebars-BpdQsYii.js +1 -0
- mycode/server/static/assets/haskell-Df6bDoY_.js +1 -0
- mycode/server/static/assets/haxe-CzTSHFRz.js +1 -0
- mycode/server/static/assets/hcl-BWvSN4gD.js +1 -0
- mycode/server/static/assets/hjson-D5-asLiD.js +1 -0
- mycode/server/static/assets/hlsl-D3lLCCz7.js +1 -0
- mycode/server/static/assets/horizon-BUw7H-hv.js +1 -0
- mycode/server/static/assets/horizon-bright-CUuTKBJd.js +1 -0
- mycode/server/static/assets/houston-DnULxvSX.js +1 -0
- mycode/server/static/assets/html-derivative-DlHx6ybY.js +1 -0
- mycode/server/static/assets/html-pp8916En.js +1 -0
- mycode/server/static/assets/http-jrhK8wxY.js +1 -0
- mycode/server/static/assets/hurl-irOxFIW8.js +1 -0
- mycode/server/static/assets/hxml-Bvhsp5Yf.js +1 -0
- mycode/server/static/assets/hy-DFXneXwc.js +1 -0
- mycode/server/static/assets/imba-DGztddWO.js +1 -0
- mycode/server/static/assets/index-B4e4WQPq.css +1 -0
- mycode/server/static/assets/index-C2xTNJGd.js +203 -0
- mycode/server/static/assets/ini-BEwlwnbL.js +1 -0
- mycode/server/static/assets/java-CylS5w8V.js +1 -0
- mycode/server/static/assets/javascript-wDzz0qaB.js +1 -0
- mycode/server/static/assets/jinja-f2NsQr07.js +1 -0
- mycode/server/static/assets/jison-wvAkD_A8.js +1 -0
- mycode/server/static/assets/json-Cp-IABpG.js +1 -0
- mycode/server/static/assets/json5-C9tS-k6U.js +1 -0
- mycode/server/static/assets/jsonc-Des-eS-w.js +1 -0
- mycode/server/static/assets/jsonl-DcaNXYhu.js +1 -0
- mycode/server/static/assets/jsonnet-DFQXde-d.js +1 -0
- mycode/server/static/assets/jssm-C2t-YnRu.js +1 -0
- mycode/server/static/assets/jsx-g9-lgVsj.js +1 -0
- mycode/server/static/assets/julia-CxzCAyBv.js +1 -0
- mycode/server/static/assets/just-VxiPbLrw.js +1 -0
- mycode/server/static/assets/kanagawa-dragon-CkXjmgJE.js +1 -0
- mycode/server/static/assets/kanagawa-lotus-CfQXZHmo.js +1 -0
- mycode/server/static/assets/kanagawa-wave-DWedfzmr.js +1 -0
- mycode/server/static/assets/katex-DnJR2-55.css +1 -0
- mycode/server/static/assets/kdl-DV7GczEv.js +1 -0
- mycode/server/static/assets/kotlin-BdnUsdx6.js +1 -0
- mycode/server/static/assets/kusto-wEQ09or8.js +1 -0
- mycode/server/static/assets/laserwave-DUszq2jm.js +1 -0
- mycode/server/static/assets/latex-CWtU0Tv5.js +1 -0
- mycode/server/static/assets/lean-BZvkOJ9d.js +1 -0
- mycode/server/static/assets/less-B1dDrJ26.js +1 -0
- mycode/server/static/assets/light-plus-B7mTdjB0.js +1 -0
- mycode/server/static/assets/liquid-C0sCDyMI.js +1 -0
- mycode/server/static/assets/llvm-DjAJT7YJ.js +1 -0
- mycode/server/static/assets/log-2UxHyX5q.js +1 -0
- mycode/server/static/assets/logo-BtOb2qkB.js +1 -0
- mycode/server/static/assets/lua-BaeVxFsk.js +1 -0
- mycode/server/static/assets/luau-C-HG3fhB.js +1 -0
- mycode/server/static/assets/make-CHLpvVh8.js +1 -0
- mycode/server/static/assets/markdown-Cvjx9yec.js +1 -0
- mycode/server/static/assets/marko-DjSrsDqO.js +1 -0
- mycode/server/static/assets/material-theme-D5KoaKCx.js +1 -0
- mycode/server/static/assets/material-theme-darker-BfHTSMKl.js +1 -0
- mycode/server/static/assets/material-theme-lighter-B0m2ddpp.js +1 -0
- mycode/server/static/assets/material-theme-ocean-CyktbL80.js +1 -0
- mycode/server/static/assets/material-theme-palenight-Csfq5Kiy.js +1 -0
- mycode/server/static/assets/matlab-D7o27uSR.js +1 -0
- mycode/server/static/assets/mdc-DTYItulj.js +1 -0
- mycode/server/static/assets/mdx-Cmh6b_Ma.js +1 -0
- mycode/server/static/assets/mermaid-mWjccvbQ.js +1 -0
- mycode/server/static/assets/min-dark-CafNBF8u.js +1 -0
- mycode/server/static/assets/min-light-CTRr51gU.js +1 -0
- mycode/server/static/assets/mipsasm-CKIfxQSi.js +1 -0
- mycode/server/static/assets/mojo-rZm6bMo-.js +1 -0
- mycode/server/static/assets/monokai-D4h5O-jR.js +1 -0
- mycode/server/static/assets/moonbit-_H4v1dQx.js +1 -0
- mycode/server/static/assets/move-IF9eRakj.js +1 -0
- mycode/server/static/assets/narrat-DRg8JJMk.js +1 -0
- mycode/server/static/assets/nextflow-C-mBbutL.js +1 -0
- mycode/server/static/assets/nextflow-groovy-vE_lwT2v.js +1 -0
- mycode/server/static/assets/nginx-BpAMiNFr.js +1 -0
- mycode/server/static/assets/night-owl-C39BiMTA.js +1 -0
- mycode/server/static/assets/night-owl-light-CMTm3GFP.js +1 -0
- mycode/server/static/assets/nim-BIad80T-.js +1 -0
- mycode/server/static/assets/nix-CwoSXNpI.js +1 -0
- mycode/server/static/assets/nord-Ddv68eIx.js +1 -0
- mycode/server/static/assets/nushell-Cz2AlsmD.js +1 -0
- mycode/server/static/assets/objective-c-DXmwc3jG.js +1 -0
- mycode/server/static/assets/objective-cpp-CLxacb5B.js +1 -0
- mycode/server/static/assets/ocaml-C0hk2d4L.js +1 -0
- mycode/server/static/assets/odin-BBf5iR-q.js +1 -0
- mycode/server/static/assets/one-dark-pro-DVMEJ2y_.js +1 -0
- mycode/server/static/assets/one-light-C3Wv6jpd.js +1 -0
- mycode/server/static/assets/openscad-C4EeE6gA.js +1 -0
- mycode/server/static/assets/pascal-D93ZcfNL.js +1 -0
- mycode/server/static/assets/perl-NvoQZIq0.js +1 -0
- mycode/server/static/assets/php-R6g_5hLQ.js +1 -0
- mycode/server/static/assets/pkl-u5AG7uiY.js +1 -0
- mycode/server/static/assets/plastic-3e1v2bzS.js +1 -0
- mycode/server/static/assets/plsql-ChMvpjG-.js +1 -0
- mycode/server/static/assets/po-BTJTHyun.js +1 -0
- mycode/server/static/assets/poimandres-CS3Unz2-.js +1 -0
- mycode/server/static/assets/polar-C0HS_06l.js +1 -0
- mycode/server/static/assets/postcss-CXtECtnM.js +1 -0
- mycode/server/static/assets/powerquery-CEu0bR-o.js +1 -0
- mycode/server/static/assets/powershell-Dpen1YoG.js +1 -0
- mycode/server/static/assets/prisma-Dd19v3D-.js +1 -0
- mycode/server/static/assets/prolog-CbFg5uaA.js +1 -0
- mycode/server/static/assets/proto-C7zT0LnQ.js +1 -0
- mycode/server/static/assets/pug-DKIMFp6K.js +1 -0
- mycode/server/static/assets/puppet-BMWR74SV.js +1 -0
- mycode/server/static/assets/purescript-CklMAg4u.js +1 -0
- mycode/server/static/assets/python-B6aJPvgy.js +1 -0
- mycode/server/static/assets/qml-3beO22l8.js +1 -0
- mycode/server/static/assets/qmldir-C8lEn-DE.js +1 -0
- mycode/server/static/assets/qss-IeuSbFQv.js +1 -0
- mycode/server/static/assets/r-Dspwwk_N.js +1 -0
- mycode/server/static/assets/racket-BqYA7rlc.js +1 -0
- mycode/server/static/assets/raku-DXvB9xmW.js +1 -0
- mycode/server/static/assets/razor-BDqjjVU7.js +1 -0
- mycode/server/static/assets/red-bN70gL4F.js +1 -0
- mycode/server/static/assets/reg-C-SQnVFl.js +1 -0
- mycode/server/static/assets/regexp-CDVJQ6XC.js +1 -0
- mycode/server/static/assets/rel-C3B-1QV4.js +1 -0
- mycode/server/static/assets/riscv-BM1_JUlF.js +1 -0
- mycode/server/static/assets/ron-D8l8udqQ.js +1 -0
- mycode/server/static/assets/rose-pine-dawn-DHQR4-dF.js +1 -0
- mycode/server/static/assets/rose-pine-moon-D4_iv3hh.js +1 -0
- mycode/server/static/assets/rose-pine-qdsjHGoJ.js +1 -0
- mycode/server/static/assets/rosmsg-BJDFO7_C.js +1 -0
- mycode/server/static/assets/rst-CRjBmOyv.js +1 -0
- mycode/server/static/assets/ruby-Wjq7vjNf.js +1 -0
- mycode/server/static/assets/rust-B1yitclQ.js +1 -0
- mycode/server/static/assets/sas-cz2c8ADy.js +1 -0
- mycode/server/static/assets/sass-Cj5Yp3dK.js +1 -0
- mycode/server/static/assets/scala-C151Ov-r.js +1 -0
- mycode/server/static/assets/scheme-C98Dy4si.js +1 -0
- mycode/server/static/assets/scss-D5BDwBP9.js +1 -0
- mycode/server/static/assets/sdbl-DVxCFoDh.js +1 -0
- mycode/server/static/assets/shaderlab-Dg9Lc6iA.js +1 -0
- mycode/server/static/assets/shellscript-Yzrsuije.js +1 -0
- mycode/server/static/assets/shellsession-BADoaaVG.js +1 -0
- mycode/server/static/assets/slack-dark-BthQWCQV.js +1 -0
- mycode/server/static/assets/slack-ochin-DqwNpetd.js +1 -0
- mycode/server/static/assets/smalltalk-BERRCDM3.js +1 -0
- mycode/server/static/assets/snazzy-light-Bw305WKR.js +1 -0
- mycode/server/static/assets/solarized-dark-DXbdFlpD.js +1 -0
- mycode/server/static/assets/solarized-light-L9t79GZl.js +1 -0
- mycode/server/static/assets/solidity-rGO070M0.js +1 -0
- mycode/server/static/assets/soy-8wufbnw4.js +1 -0
- mycode/server/static/assets/sparql-rVzFXLq3.js +1 -0
- mycode/server/static/assets/splunk-BtCnVYZw.js +1 -0
- mycode/server/static/assets/sql-BLtJtn59.js +1 -0
- mycode/server/static/assets/ssh-config-_ykCGR6B.js +1 -0
- mycode/server/static/assets/stata-BH5u7GGu.js +1 -0
- mycode/server/static/assets/stylus-BEDo0Tqx.js +1 -0
- mycode/server/static/assets/surrealql-Bq5Q-fJD.js +1 -0
- mycode/server/static/assets/svelte-Cy7k_4gC.js +1 -0
- mycode/server/static/assets/swift-D82vCrfD.js +1 -0
- mycode/server/static/assets/synthwave-84-CbfX1IO0.js +1 -0
- mycode/server/static/assets/system-verilog-CnnmHF94.js +1 -0
- mycode/server/static/assets/systemd-4A_iFExJ.js +1 -0
- mycode/server/static/assets/talonscript-CkByrt1z.js +1 -0
- mycode/server/static/assets/tasl-QIJgUcNo.js +1 -0
- mycode/server/static/assets/tcl-dwOrl1Do.js +1 -0
- mycode/server/static/assets/templ-DhtptRzy.js +1 -0
- mycode/server/static/assets/terraform-BETggiCN.js +1 -0
- mycode/server/static/assets/tex-idrVyKtj.js +1 -0
- mycode/server/static/assets/tokyo-night-hegEt444.js +1 -0
- mycode/server/static/assets/toml-vGWfd6FD.js +1 -0
- mycode/server/static/assets/ts-tags-DQrlYJgV.js +1 -0
- mycode/server/static/assets/tsv-B_m7g4N7.js +1 -0
- mycode/server/static/assets/tsx-COt5Ahok.js +1 -0
- mycode/server/static/assets/turtle-BsS91CYL.js +1 -0
- mycode/server/static/assets/twig-xg9kU7Mw.js +1 -0
- mycode/server/static/assets/typescript-BPQ3VLAy.js +1 -0
- mycode/server/static/assets/typespec-CAFt9gP4.js +1 -0
- mycode/server/static/assets/typst-DHCkPAjA.js +1 -0
- mycode/server/static/assets/v-BcVCzyr7.js +1 -0
- mycode/server/static/assets/vala-CsfeWuGM.js +1 -0
- mycode/server/static/assets/vb-D17OF-Vu.js +1 -0
- mycode/server/static/assets/verilog-BQ8w6xss.js +1 -0
- mycode/server/static/assets/vesper-DU1UobuO.js +1 -0
- mycode/server/static/assets/vhdl-CeAyd5Ju.js +1 -0
- mycode/server/static/assets/viml-CJc9bBzg.js +1 -0
- mycode/server/static/assets/vitesse-black-Bkuqu6BP.js +1 -0
- mycode/server/static/assets/vitesse-dark-D0r3Knsf.js +1 -0
- mycode/server/static/assets/vitesse-light-CVO1_9PV.js +1 -0
- mycode/server/static/assets/vue-D2xRrEX4.js +1 -0
- mycode/server/static/assets/vue-html-AaS7Mt5G.js +1 -0
- mycode/server/static/assets/vue-vine-BoDAl6tE.js +1 -0
- mycode/server/static/assets/vyper-CDx5xZoG.js +1 -0
- mycode/server/static/assets/wasm-CG6Dc4jp.js +1 -0
- mycode/server/static/assets/wasm-MzD3tlZU.js +1 -0
- mycode/server/static/assets/wenyan-BV7otONQ.js +1 -0
- mycode/server/static/assets/wgsl-Dx-B1_4e.js +1 -0
- mycode/server/static/assets/wikitext-BhOHFoWU.js +1 -0
- mycode/server/static/assets/wit-5i3qLPDT.js +1 -0
- mycode/server/static/assets/wolfram-lXgVvXCa.js +1 -0
- mycode/server/static/assets/xml-sdJ4AIDG.js +1 -0
- mycode/server/static/assets/xsl-CtQFsRM5.js +1 -0
- mycode/server/static/assets/yaml-Buea-lGh.js +1 -0
- mycode/server/static/assets/zenscript-DVFEvuxE.js +1 -0
- mycode/server/static/assets/zig-VOosw3JB.js +1 -0
- mycode/server/static/favicon_slashes.svg +12 -0
- mycode/server/static/index.html +35 -0
- mycode_cli-0.1.0.dist-info/METADATA +186 -0
- mycode_cli-0.1.0.dist-info/RECORD +404 -0
- mycode_cli-0.1.0.dist-info/WHEEL +4 -0
- mycode_cli-0.1.0.dist-info/entry_points.txt +2 -0
- mycode_cli-0.1.0.dist-info/licenses/LICENSE +21 -0
|
@@ -0,0 +1,2090 @@
|
|
|
1
|
+
{
|
|
2
|
+
"aihubmix": {
|
|
3
|
+
"Kimi-K2-0905": {
|
|
4
|
+
"context_window": 262144,
|
|
5
|
+
"max_output_tokens": 262144,
|
|
6
|
+
"supports_image_input": false,
|
|
7
|
+
"supports_reasoning": false
|
|
8
|
+
},
|
|
9
|
+
"claude-haiku-4-5": {
|
|
10
|
+
"context_window": 200000,
|
|
11
|
+
"max_output_tokens": 64000,
|
|
12
|
+
"supports_image_input": true,
|
|
13
|
+
"supports_reasoning": true
|
|
14
|
+
},
|
|
15
|
+
"claude-opus-4-1": {
|
|
16
|
+
"context_window": 200000,
|
|
17
|
+
"max_output_tokens": 32000,
|
|
18
|
+
"supports_image_input": true,
|
|
19
|
+
"supports_reasoning": true
|
|
20
|
+
},
|
|
21
|
+
"claude-opus-4-5": {
|
|
22
|
+
"context_window": 200000,
|
|
23
|
+
"max_output_tokens": 32000,
|
|
24
|
+
"supports_image_input": true,
|
|
25
|
+
"supports_reasoning": true
|
|
26
|
+
},
|
|
27
|
+
"claude-opus-4-6": {
|
|
28
|
+
"context_window": 200000,
|
|
29
|
+
"max_output_tokens": 128000,
|
|
30
|
+
"supports_image_input": true,
|
|
31
|
+
"supports_reasoning": true
|
|
32
|
+
},
|
|
33
|
+
"claude-opus-4-6-think": {
|
|
34
|
+
"context_window": 200000,
|
|
35
|
+
"max_output_tokens": 128000,
|
|
36
|
+
"supports_image_input": true,
|
|
37
|
+
"supports_reasoning": true
|
|
38
|
+
},
|
|
39
|
+
"claude-sonnet-4-5": {
|
|
40
|
+
"context_window": 200000,
|
|
41
|
+
"max_output_tokens": 64000,
|
|
42
|
+
"supports_image_input": true,
|
|
43
|
+
"supports_reasoning": true
|
|
44
|
+
},
|
|
45
|
+
"claude-sonnet-4-6": {
|
|
46
|
+
"context_window": 200000,
|
|
47
|
+
"max_output_tokens": 64000,
|
|
48
|
+
"supports_image_input": true,
|
|
49
|
+
"supports_reasoning": true
|
|
50
|
+
},
|
|
51
|
+
"claude-sonnet-4-6-think": {
|
|
52
|
+
"context_window": 200000,
|
|
53
|
+
"max_output_tokens": 64000,
|
|
54
|
+
"supports_image_input": true,
|
|
55
|
+
"supports_reasoning": true
|
|
56
|
+
},
|
|
57
|
+
"coding-glm-4.7": {
|
|
58
|
+
"context_window": 204800,
|
|
59
|
+
"max_output_tokens": 131072,
|
|
60
|
+
"supports_image_input": false,
|
|
61
|
+
"supports_reasoning": true
|
|
62
|
+
},
|
|
63
|
+
"coding-glm-4.7-free": {
|
|
64
|
+
"context_window": 204800,
|
|
65
|
+
"max_output_tokens": 131072,
|
|
66
|
+
"supports_image_input": false,
|
|
67
|
+
"supports_reasoning": true
|
|
68
|
+
},
|
|
69
|
+
"coding-glm-5-free": {
|
|
70
|
+
"context_window": 204800,
|
|
71
|
+
"max_output_tokens": 131072,
|
|
72
|
+
"supports_image_input": false,
|
|
73
|
+
"supports_reasoning": true
|
|
74
|
+
},
|
|
75
|
+
"coding-minimax-m2.1-free": {
|
|
76
|
+
"context_window": 204800,
|
|
77
|
+
"max_output_tokens": 131072,
|
|
78
|
+
"supports_image_input": false,
|
|
79
|
+
"supports_reasoning": true
|
|
80
|
+
},
|
|
81
|
+
"deepseek-v3.2": {
|
|
82
|
+
"context_window": 131000,
|
|
83
|
+
"max_output_tokens": 64000,
|
|
84
|
+
"supports_image_input": false,
|
|
85
|
+
"supports_reasoning": true
|
|
86
|
+
},
|
|
87
|
+
"deepseek-v3.2-fast": {
|
|
88
|
+
"context_window": 128000,
|
|
89
|
+
"max_output_tokens": 128000,
|
|
90
|
+
"supports_image_input": false,
|
|
91
|
+
"supports_reasoning": false
|
|
92
|
+
},
|
|
93
|
+
"deepseek-v3.2-think": {
|
|
94
|
+
"context_window": 131000,
|
|
95
|
+
"max_output_tokens": 64000,
|
|
96
|
+
"supports_image_input": false,
|
|
97
|
+
"supports_reasoning": true
|
|
98
|
+
},
|
|
99
|
+
"gemini-2.5-flash": {
|
|
100
|
+
"context_window": 1000000,
|
|
101
|
+
"max_output_tokens": 65000,
|
|
102
|
+
"supports_image_input": true,
|
|
103
|
+
"supports_reasoning": false
|
|
104
|
+
},
|
|
105
|
+
"gemini-2.5-pro": {
|
|
106
|
+
"context_window": 2000000,
|
|
107
|
+
"max_output_tokens": 65000,
|
|
108
|
+
"supports_image_input": true,
|
|
109
|
+
"supports_reasoning": true
|
|
110
|
+
},
|
|
111
|
+
"gemini-3-pro-preview": {
|
|
112
|
+
"context_window": 1000000,
|
|
113
|
+
"max_output_tokens": 65000,
|
|
114
|
+
"supports_image_input": true,
|
|
115
|
+
"supports_reasoning": true
|
|
116
|
+
},
|
|
117
|
+
"gemini-3-pro-preview-search": {
|
|
118
|
+
"context_window": 1000000,
|
|
119
|
+
"max_output_tokens": 65000,
|
|
120
|
+
"supports_image_input": true,
|
|
121
|
+
"supports_reasoning": true
|
|
122
|
+
},
|
|
123
|
+
"glm-4.6v": {
|
|
124
|
+
"context_window": 128000,
|
|
125
|
+
"max_output_tokens": 32768,
|
|
126
|
+
"supports_image_input": true,
|
|
127
|
+
"supports_reasoning": true
|
|
128
|
+
},
|
|
129
|
+
"glm-4.7": {
|
|
130
|
+
"context_window": 204800,
|
|
131
|
+
"max_output_tokens": 131072,
|
|
132
|
+
"supports_image_input": false,
|
|
133
|
+
"supports_reasoning": true
|
|
134
|
+
},
|
|
135
|
+
"glm-5": {
|
|
136
|
+
"context_window": 204800,
|
|
137
|
+
"max_output_tokens": 131072,
|
|
138
|
+
"supports_image_input": false,
|
|
139
|
+
"supports_reasoning": true
|
|
140
|
+
},
|
|
141
|
+
"gpt-4.1": {
|
|
142
|
+
"context_window": 1047576,
|
|
143
|
+
"max_output_tokens": 32768,
|
|
144
|
+
"supports_image_input": true,
|
|
145
|
+
"supports_reasoning": false
|
|
146
|
+
},
|
|
147
|
+
"gpt-4.1-mini": {
|
|
148
|
+
"context_window": 1047576,
|
|
149
|
+
"max_output_tokens": 32768,
|
|
150
|
+
"supports_image_input": true,
|
|
151
|
+
"supports_reasoning": false
|
|
152
|
+
},
|
|
153
|
+
"gpt-4.1-nano": {
|
|
154
|
+
"context_window": 1047576,
|
|
155
|
+
"max_output_tokens": 32768,
|
|
156
|
+
"supports_image_input": true,
|
|
157
|
+
"supports_reasoning": false
|
|
158
|
+
},
|
|
159
|
+
"gpt-4o": {
|
|
160
|
+
"context_window": 128000,
|
|
161
|
+
"max_output_tokens": 16384,
|
|
162
|
+
"supports_image_input": true,
|
|
163
|
+
"supports_reasoning": false
|
|
164
|
+
},
|
|
165
|
+
"gpt-5": {
|
|
166
|
+
"context_window": 400000,
|
|
167
|
+
"max_output_tokens": 128000,
|
|
168
|
+
"supports_image_input": true,
|
|
169
|
+
"supports_reasoning": true
|
|
170
|
+
},
|
|
171
|
+
"gpt-5-codex": {
|
|
172
|
+
"context_window": 400000,
|
|
173
|
+
"max_output_tokens": 128000,
|
|
174
|
+
"supports_image_input": true,
|
|
175
|
+
"supports_reasoning": true
|
|
176
|
+
},
|
|
177
|
+
"gpt-5-mini": {
|
|
178
|
+
"context_window": 200000,
|
|
179
|
+
"max_output_tokens": 64000,
|
|
180
|
+
"supports_image_input": true,
|
|
181
|
+
"supports_reasoning": true
|
|
182
|
+
},
|
|
183
|
+
"gpt-5-nano": {
|
|
184
|
+
"context_window": 128000,
|
|
185
|
+
"max_output_tokens": 16384,
|
|
186
|
+
"supports_image_input": true,
|
|
187
|
+
"supports_reasoning": false
|
|
188
|
+
},
|
|
189
|
+
"gpt-5-pro": {
|
|
190
|
+
"context_window": 400000,
|
|
191
|
+
"max_output_tokens": 128000,
|
|
192
|
+
"supports_image_input": true,
|
|
193
|
+
"supports_reasoning": true
|
|
194
|
+
},
|
|
195
|
+
"gpt-5.1": {
|
|
196
|
+
"context_window": 400000,
|
|
197
|
+
"max_output_tokens": 128000,
|
|
198
|
+
"supports_image_input": true,
|
|
199
|
+
"supports_reasoning": true
|
|
200
|
+
},
|
|
201
|
+
"gpt-5.1-codex": {
|
|
202
|
+
"context_window": 400000,
|
|
203
|
+
"max_output_tokens": 128000,
|
|
204
|
+
"supports_image_input": true,
|
|
205
|
+
"supports_reasoning": true
|
|
206
|
+
},
|
|
207
|
+
"gpt-5.1-codex-max": {
|
|
208
|
+
"context_window": 400000,
|
|
209
|
+
"max_output_tokens": 128000,
|
|
210
|
+
"supports_image_input": true,
|
|
211
|
+
"supports_reasoning": true
|
|
212
|
+
},
|
|
213
|
+
"gpt-5.1-codex-mini": {
|
|
214
|
+
"context_window": 400000,
|
|
215
|
+
"max_output_tokens": 128000,
|
|
216
|
+
"supports_image_input": true,
|
|
217
|
+
"supports_reasoning": true
|
|
218
|
+
},
|
|
219
|
+
"gpt-5.2": {
|
|
220
|
+
"context_window": 400000,
|
|
221
|
+
"max_output_tokens": 128000,
|
|
222
|
+
"supports_image_input": true,
|
|
223
|
+
"supports_reasoning": true
|
|
224
|
+
},
|
|
225
|
+
"gpt-5.2-codex": {
|
|
226
|
+
"context_window": 400000,
|
|
227
|
+
"max_output_tokens": 128000,
|
|
228
|
+
"supports_image_input": true,
|
|
229
|
+
"supports_reasoning": true
|
|
230
|
+
},
|
|
231
|
+
"kimi-k2.5": {
|
|
232
|
+
"context_window": 262144,
|
|
233
|
+
"max_output_tokens": 262144,
|
|
234
|
+
"supports_image_input": true,
|
|
235
|
+
"supports_reasoning": true
|
|
236
|
+
},
|
|
237
|
+
"minimax-m2.1": {
|
|
238
|
+
"context_window": 204800,
|
|
239
|
+
"max_output_tokens": 131072,
|
|
240
|
+
"supports_image_input": false,
|
|
241
|
+
"supports_reasoning": true
|
|
242
|
+
},
|
|
243
|
+
"minimax-m2.5": {
|
|
244
|
+
"context_window": 204800,
|
|
245
|
+
"max_output_tokens": 131072,
|
|
246
|
+
"supports_image_input": false,
|
|
247
|
+
"supports_reasoning": true
|
|
248
|
+
},
|
|
249
|
+
"o4-mini": {
|
|
250
|
+
"context_window": 200000,
|
|
251
|
+
"max_output_tokens": 65536,
|
|
252
|
+
"supports_image_input": false,
|
|
253
|
+
"supports_reasoning": true
|
|
254
|
+
},
|
|
255
|
+
"qwen3-235b-a22b-instruct-2507": {
|
|
256
|
+
"context_window": 262144,
|
|
257
|
+
"max_output_tokens": 262144,
|
|
258
|
+
"supports_image_input": false,
|
|
259
|
+
"supports_reasoning": false
|
|
260
|
+
},
|
|
261
|
+
"qwen3-235b-a22b-thinking-2507": {
|
|
262
|
+
"context_window": 262144,
|
|
263
|
+
"max_output_tokens": 262144,
|
|
264
|
+
"supports_image_input": false,
|
|
265
|
+
"supports_reasoning": true
|
|
266
|
+
},
|
|
267
|
+
"qwen3-coder-480b-a35b-instruct": {
|
|
268
|
+
"context_window": 262144,
|
|
269
|
+
"max_output_tokens": 131000,
|
|
270
|
+
"supports_image_input": false,
|
|
271
|
+
"supports_reasoning": false
|
|
272
|
+
},
|
|
273
|
+
"qwen3-coder-next": {
|
|
274
|
+
"context_window": 262144,
|
|
275
|
+
"max_output_tokens": 65536,
|
|
276
|
+
"supports_image_input": false,
|
|
277
|
+
"supports_reasoning": false
|
|
278
|
+
},
|
|
279
|
+
"qwen3-max-2026-01-23": {
|
|
280
|
+
"context_window": 262144,
|
|
281
|
+
"max_output_tokens": 65536,
|
|
282
|
+
"supports_image_input": false,
|
|
283
|
+
"supports_reasoning": false
|
|
284
|
+
},
|
|
285
|
+
"qwen3.5-plus": {
|
|
286
|
+
"context_window": 1000000,
|
|
287
|
+
"max_output_tokens": 65536,
|
|
288
|
+
"supports_image_input": true,
|
|
289
|
+
"supports_reasoning": true
|
|
290
|
+
}
|
|
291
|
+
},
|
|
292
|
+
"anthropic": {
|
|
293
|
+
"claude-3-5-haiku-20241022": {
|
|
294
|
+
"context_window": 200000,
|
|
295
|
+
"max_output_tokens": 8192,
|
|
296
|
+
"supports_image_input": true,
|
|
297
|
+
"supports_reasoning": false
|
|
298
|
+
},
|
|
299
|
+
"claude-3-5-haiku-latest": {
|
|
300
|
+
"context_window": 200000,
|
|
301
|
+
"max_output_tokens": 8192,
|
|
302
|
+
"supports_image_input": true,
|
|
303
|
+
"supports_reasoning": false
|
|
304
|
+
},
|
|
305
|
+
"claude-3-5-sonnet-20240620": {
|
|
306
|
+
"context_window": 200000,
|
|
307
|
+
"max_output_tokens": 8192,
|
|
308
|
+
"supports_image_input": true,
|
|
309
|
+
"supports_reasoning": false
|
|
310
|
+
},
|
|
311
|
+
"claude-3-5-sonnet-20241022": {
|
|
312
|
+
"context_window": 200000,
|
|
313
|
+
"max_output_tokens": 8192,
|
|
314
|
+
"supports_image_input": true,
|
|
315
|
+
"supports_reasoning": false
|
|
316
|
+
},
|
|
317
|
+
"claude-3-7-sonnet-20250219": {
|
|
318
|
+
"context_window": 200000,
|
|
319
|
+
"max_output_tokens": 64000,
|
|
320
|
+
"supports_image_input": true,
|
|
321
|
+
"supports_reasoning": true
|
|
322
|
+
},
|
|
323
|
+
"claude-3-7-sonnet-latest": {
|
|
324
|
+
"context_window": 200000,
|
|
325
|
+
"max_output_tokens": 64000,
|
|
326
|
+
"supports_image_input": true,
|
|
327
|
+
"supports_reasoning": true
|
|
328
|
+
},
|
|
329
|
+
"claude-3-haiku-20240307": {
|
|
330
|
+
"context_window": 200000,
|
|
331
|
+
"max_output_tokens": 4096,
|
|
332
|
+
"supports_image_input": true,
|
|
333
|
+
"supports_reasoning": false
|
|
334
|
+
},
|
|
335
|
+
"claude-3-opus-20240229": {
|
|
336
|
+
"context_window": 200000,
|
|
337
|
+
"max_output_tokens": 4096,
|
|
338
|
+
"supports_image_input": true,
|
|
339
|
+
"supports_reasoning": false
|
|
340
|
+
},
|
|
341
|
+
"claude-3-sonnet-20240229": {
|
|
342
|
+
"context_window": 200000,
|
|
343
|
+
"max_output_tokens": 4096,
|
|
344
|
+
"supports_image_input": true,
|
|
345
|
+
"supports_reasoning": false
|
|
346
|
+
},
|
|
347
|
+
"claude-haiku-4-5": {
|
|
348
|
+
"context_window": 200000,
|
|
349
|
+
"max_output_tokens": 64000,
|
|
350
|
+
"supports_image_input": true,
|
|
351
|
+
"supports_reasoning": true
|
|
352
|
+
},
|
|
353
|
+
"claude-haiku-4-5-20251001": {
|
|
354
|
+
"context_window": 200000,
|
|
355
|
+
"max_output_tokens": 64000,
|
|
356
|
+
"supports_image_input": true,
|
|
357
|
+
"supports_reasoning": true
|
|
358
|
+
},
|
|
359
|
+
"claude-opus-4-0": {
|
|
360
|
+
"context_window": 200000,
|
|
361
|
+
"max_output_tokens": 32000,
|
|
362
|
+
"supports_image_input": true,
|
|
363
|
+
"supports_reasoning": true
|
|
364
|
+
},
|
|
365
|
+
"claude-opus-4-1": {
|
|
366
|
+
"context_window": 200000,
|
|
367
|
+
"max_output_tokens": 32000,
|
|
368
|
+
"supports_image_input": true,
|
|
369
|
+
"supports_reasoning": true
|
|
370
|
+
},
|
|
371
|
+
"claude-opus-4-1-20250805": {
|
|
372
|
+
"context_window": 200000,
|
|
373
|
+
"max_output_tokens": 32000,
|
|
374
|
+
"supports_image_input": true,
|
|
375
|
+
"supports_reasoning": true
|
|
376
|
+
},
|
|
377
|
+
"claude-opus-4-20250514": {
|
|
378
|
+
"context_window": 200000,
|
|
379
|
+
"max_output_tokens": 32000,
|
|
380
|
+
"supports_image_input": true,
|
|
381
|
+
"supports_reasoning": true
|
|
382
|
+
},
|
|
383
|
+
"claude-opus-4-5": {
|
|
384
|
+
"context_window": 200000,
|
|
385
|
+
"max_output_tokens": 64000,
|
|
386
|
+
"supports_image_input": true,
|
|
387
|
+
"supports_reasoning": true
|
|
388
|
+
},
|
|
389
|
+
"claude-opus-4-5-20251101": {
|
|
390
|
+
"context_window": 200000,
|
|
391
|
+
"max_output_tokens": 64000,
|
|
392
|
+
"supports_image_input": true,
|
|
393
|
+
"supports_reasoning": true
|
|
394
|
+
},
|
|
395
|
+
"claude-opus-4-6": {
|
|
396
|
+
"context_window": 1000000,
|
|
397
|
+
"max_output_tokens": 128000,
|
|
398
|
+
"supports_image_input": true,
|
|
399
|
+
"supports_reasoning": true
|
|
400
|
+
},
|
|
401
|
+
"claude-sonnet-4-0": {
|
|
402
|
+
"context_window": 200000,
|
|
403
|
+
"max_output_tokens": 64000,
|
|
404
|
+
"supports_image_input": true,
|
|
405
|
+
"supports_reasoning": true
|
|
406
|
+
},
|
|
407
|
+
"claude-sonnet-4-20250514": {
|
|
408
|
+
"context_window": 200000,
|
|
409
|
+
"max_output_tokens": 64000,
|
|
410
|
+
"supports_image_input": true,
|
|
411
|
+
"supports_reasoning": true
|
|
412
|
+
},
|
|
413
|
+
"claude-sonnet-4-5": {
|
|
414
|
+
"context_window": 200000,
|
|
415
|
+
"max_output_tokens": 64000,
|
|
416
|
+
"supports_image_input": true,
|
|
417
|
+
"supports_reasoning": true
|
|
418
|
+
},
|
|
419
|
+
"claude-sonnet-4-5-20250929": {
|
|
420
|
+
"context_window": 200000,
|
|
421
|
+
"max_output_tokens": 64000,
|
|
422
|
+
"supports_image_input": true,
|
|
423
|
+
"supports_reasoning": true
|
|
424
|
+
},
|
|
425
|
+
"claude-sonnet-4-6": {
|
|
426
|
+
"context_window": 1000000,
|
|
427
|
+
"max_output_tokens": 64000,
|
|
428
|
+
"supports_image_input": true,
|
|
429
|
+
"supports_reasoning": true
|
|
430
|
+
}
|
|
431
|
+
},
|
|
432
|
+
"deepseek": {
|
|
433
|
+
"deepseek-chat": {
|
|
434
|
+
"context_window": 128000,
|
|
435
|
+
"max_output_tokens": 8192,
|
|
436
|
+
"supports_image_input": false,
|
|
437
|
+
"supports_reasoning": false
|
|
438
|
+
},
|
|
439
|
+
"deepseek-reasoner": {
|
|
440
|
+
"context_window": 128000,
|
|
441
|
+
"max_output_tokens": 64000,
|
|
442
|
+
"supports_image_input": false,
|
|
443
|
+
"supports_reasoning": true
|
|
444
|
+
}
|
|
445
|
+
},
|
|
446
|
+
"google": {
|
|
447
|
+
"gemini-1.5-flash": {
|
|
448
|
+
"context_window": 1000000,
|
|
449
|
+
"max_output_tokens": 8192,
|
|
450
|
+
"supports_image_input": true,
|
|
451
|
+
"supports_reasoning": false
|
|
452
|
+
},
|
|
453
|
+
"gemini-1.5-flash-8b": {
|
|
454
|
+
"context_window": 1000000,
|
|
455
|
+
"max_output_tokens": 8192,
|
|
456
|
+
"supports_image_input": true,
|
|
457
|
+
"supports_reasoning": false
|
|
458
|
+
},
|
|
459
|
+
"gemini-1.5-pro": {
|
|
460
|
+
"context_window": 1000000,
|
|
461
|
+
"max_output_tokens": 8192,
|
|
462
|
+
"supports_image_input": true,
|
|
463
|
+
"supports_reasoning": false
|
|
464
|
+
},
|
|
465
|
+
"gemini-2.0-flash": {
|
|
466
|
+
"context_window": 1048576,
|
|
467
|
+
"max_output_tokens": 8192,
|
|
468
|
+
"supports_image_input": true,
|
|
469
|
+
"supports_reasoning": false
|
|
470
|
+
},
|
|
471
|
+
"gemini-2.0-flash-lite": {
|
|
472
|
+
"context_window": 1048576,
|
|
473
|
+
"max_output_tokens": 8192,
|
|
474
|
+
"supports_image_input": true,
|
|
475
|
+
"supports_reasoning": false
|
|
476
|
+
},
|
|
477
|
+
"gemini-2.5-flash": {
|
|
478
|
+
"context_window": 1048576,
|
|
479
|
+
"max_output_tokens": 65536,
|
|
480
|
+
"supports_image_input": true,
|
|
481
|
+
"supports_reasoning": true
|
|
482
|
+
},
|
|
483
|
+
"gemini-2.5-flash-image": {
|
|
484
|
+
"context_window": 32768,
|
|
485
|
+
"max_output_tokens": 32768,
|
|
486
|
+
"supports_image_input": true,
|
|
487
|
+
"supports_reasoning": true
|
|
488
|
+
},
|
|
489
|
+
"gemini-2.5-flash-image-preview": {
|
|
490
|
+
"context_window": 32768,
|
|
491
|
+
"max_output_tokens": 32768,
|
|
492
|
+
"supports_image_input": true,
|
|
493
|
+
"supports_reasoning": true
|
|
494
|
+
},
|
|
495
|
+
"gemini-2.5-flash-lite": {
|
|
496
|
+
"context_window": 1048576,
|
|
497
|
+
"max_output_tokens": 65536,
|
|
498
|
+
"supports_image_input": true,
|
|
499
|
+
"supports_reasoning": true
|
|
500
|
+
},
|
|
501
|
+
"gemini-2.5-flash-lite-preview-06-17": {
|
|
502
|
+
"context_window": 1048576,
|
|
503
|
+
"max_output_tokens": 65536,
|
|
504
|
+
"supports_image_input": true,
|
|
505
|
+
"supports_reasoning": true
|
|
506
|
+
},
|
|
507
|
+
"gemini-2.5-flash-lite-preview-09-2025": {
|
|
508
|
+
"context_window": 1048576,
|
|
509
|
+
"max_output_tokens": 65536,
|
|
510
|
+
"supports_image_input": true,
|
|
511
|
+
"supports_reasoning": true
|
|
512
|
+
},
|
|
513
|
+
"gemini-2.5-flash-preview-04-17": {
|
|
514
|
+
"context_window": 1048576,
|
|
515
|
+
"max_output_tokens": 65536,
|
|
516
|
+
"supports_image_input": true,
|
|
517
|
+
"supports_reasoning": true
|
|
518
|
+
},
|
|
519
|
+
"gemini-2.5-flash-preview-05-20": {
|
|
520
|
+
"context_window": 1048576,
|
|
521
|
+
"max_output_tokens": 65536,
|
|
522
|
+
"supports_image_input": true,
|
|
523
|
+
"supports_reasoning": true
|
|
524
|
+
},
|
|
525
|
+
"gemini-2.5-flash-preview-09-2025": {
|
|
526
|
+
"context_window": 1048576,
|
|
527
|
+
"max_output_tokens": 65536,
|
|
528
|
+
"supports_image_input": true,
|
|
529
|
+
"supports_reasoning": true
|
|
530
|
+
},
|
|
531
|
+
"gemini-2.5-flash-preview-tts": {
|
|
532
|
+
"context_window": 8000,
|
|
533
|
+
"max_output_tokens": 16000,
|
|
534
|
+
"supports_image_input": false,
|
|
535
|
+
"supports_reasoning": false
|
|
536
|
+
},
|
|
537
|
+
"gemini-2.5-pro": {
|
|
538
|
+
"context_window": 1048576,
|
|
539
|
+
"max_output_tokens": 65536,
|
|
540
|
+
"supports_image_input": true,
|
|
541
|
+
"supports_reasoning": true
|
|
542
|
+
},
|
|
543
|
+
"gemini-2.5-pro-preview-05-06": {
|
|
544
|
+
"context_window": 1048576,
|
|
545
|
+
"max_output_tokens": 65536,
|
|
546
|
+
"supports_image_input": true,
|
|
547
|
+
"supports_reasoning": true
|
|
548
|
+
},
|
|
549
|
+
"gemini-2.5-pro-preview-06-05": {
|
|
550
|
+
"context_window": 1048576,
|
|
551
|
+
"max_output_tokens": 65536,
|
|
552
|
+
"supports_image_input": true,
|
|
553
|
+
"supports_reasoning": true
|
|
554
|
+
},
|
|
555
|
+
"gemini-2.5-pro-preview-tts": {
|
|
556
|
+
"context_window": 8000,
|
|
557
|
+
"max_output_tokens": 16000,
|
|
558
|
+
"supports_image_input": false,
|
|
559
|
+
"supports_reasoning": false
|
|
560
|
+
},
|
|
561
|
+
"gemini-3-flash-preview": {
|
|
562
|
+
"context_window": 1048576,
|
|
563
|
+
"max_output_tokens": 65536,
|
|
564
|
+
"supports_image_input": true,
|
|
565
|
+
"supports_reasoning": true
|
|
566
|
+
},
|
|
567
|
+
"gemini-3-pro-preview": {
|
|
568
|
+
"context_window": 1000000,
|
|
569
|
+
"max_output_tokens": 64000,
|
|
570
|
+
"supports_image_input": true,
|
|
571
|
+
"supports_reasoning": true
|
|
572
|
+
},
|
|
573
|
+
"gemini-3.1-flash-image-preview": {
|
|
574
|
+
"context_window": 131072,
|
|
575
|
+
"max_output_tokens": 32768,
|
|
576
|
+
"supports_image_input": true,
|
|
577
|
+
"supports_reasoning": true
|
|
578
|
+
},
|
|
579
|
+
"gemini-3.1-flash-lite-preview": {
|
|
580
|
+
"context_window": 1048576,
|
|
581
|
+
"max_output_tokens": 65536,
|
|
582
|
+
"supports_image_input": true,
|
|
583
|
+
"supports_reasoning": true
|
|
584
|
+
},
|
|
585
|
+
"gemini-3.1-pro-preview": {
|
|
586
|
+
"context_window": 1048576,
|
|
587
|
+
"max_output_tokens": 65536,
|
|
588
|
+
"supports_image_input": true,
|
|
589
|
+
"supports_reasoning": true
|
|
590
|
+
},
|
|
591
|
+
"gemini-3.1-pro-preview-customtools": {
|
|
592
|
+
"context_window": 1048576,
|
|
593
|
+
"max_output_tokens": 65536,
|
|
594
|
+
"supports_image_input": true,
|
|
595
|
+
"supports_reasoning": true
|
|
596
|
+
},
|
|
597
|
+
"gemini-embedding-001": {
|
|
598
|
+
"context_window": 2048,
|
|
599
|
+
"max_output_tokens": 3072,
|
|
600
|
+
"supports_image_input": false,
|
|
601
|
+
"supports_reasoning": false
|
|
602
|
+
},
|
|
603
|
+
"gemini-flash-latest": {
|
|
604
|
+
"context_window": 1048576,
|
|
605
|
+
"max_output_tokens": 65536,
|
|
606
|
+
"supports_image_input": true,
|
|
607
|
+
"supports_reasoning": true
|
|
608
|
+
},
|
|
609
|
+
"gemini-flash-lite-latest": {
|
|
610
|
+
"context_window": 1048576,
|
|
611
|
+
"max_output_tokens": 65536,
|
|
612
|
+
"supports_image_input": true,
|
|
613
|
+
"supports_reasoning": true
|
|
614
|
+
},
|
|
615
|
+
"gemini-live-2.5-flash": {
|
|
616
|
+
"context_window": 128000,
|
|
617
|
+
"max_output_tokens": 8000,
|
|
618
|
+
"supports_image_input": true,
|
|
619
|
+
"supports_reasoning": true
|
|
620
|
+
},
|
|
621
|
+
"gemini-live-2.5-flash-preview-native-audio": {
|
|
622
|
+
"context_window": 131072,
|
|
623
|
+
"max_output_tokens": 65536,
|
|
624
|
+
"supports_image_input": false,
|
|
625
|
+
"supports_reasoning": true
|
|
626
|
+
},
|
|
627
|
+
"gemma-3-12b-it": {
|
|
628
|
+
"context_window": 32768,
|
|
629
|
+
"max_output_tokens": 8192,
|
|
630
|
+
"supports_image_input": true,
|
|
631
|
+
"supports_reasoning": false
|
|
632
|
+
},
|
|
633
|
+
"gemma-3-27b-it": {
|
|
634
|
+
"context_window": 131072,
|
|
635
|
+
"max_output_tokens": 8192,
|
|
636
|
+
"supports_image_input": true,
|
|
637
|
+
"supports_reasoning": false
|
|
638
|
+
},
|
|
639
|
+
"gemma-3-4b-it": {
|
|
640
|
+
"context_window": 32768,
|
|
641
|
+
"max_output_tokens": 8192,
|
|
642
|
+
"supports_image_input": true,
|
|
643
|
+
"supports_reasoning": false
|
|
644
|
+
},
|
|
645
|
+
"gemma-3n-e2b-it": {
|
|
646
|
+
"context_window": 8192,
|
|
647
|
+
"max_output_tokens": 2000,
|
|
648
|
+
"supports_image_input": false,
|
|
649
|
+
"supports_reasoning": false
|
|
650
|
+
},
|
|
651
|
+
"gemma-3n-e4b-it": {
|
|
652
|
+
"context_window": 8192,
|
|
653
|
+
"max_output_tokens": 2000,
|
|
654
|
+
"supports_image_input": false,
|
|
655
|
+
"supports_reasoning": false
|
|
656
|
+
}
|
|
657
|
+
},
|
|
658
|
+
"minimax": {
|
|
659
|
+
"MiniMax-M2": {
|
|
660
|
+
"context_window": 196608,
|
|
661
|
+
"max_output_tokens": 128000,
|
|
662
|
+
"supports_image_input": false,
|
|
663
|
+
"supports_reasoning": true
|
|
664
|
+
},
|
|
665
|
+
"MiniMax-M2.1": {
|
|
666
|
+
"context_window": 204800,
|
|
667
|
+
"max_output_tokens": 131072,
|
|
668
|
+
"supports_image_input": false,
|
|
669
|
+
"supports_reasoning": true
|
|
670
|
+
},
|
|
671
|
+
"MiniMax-M2.5": {
|
|
672
|
+
"context_window": 204800,
|
|
673
|
+
"max_output_tokens": 131072,
|
|
674
|
+
"supports_image_input": false,
|
|
675
|
+
"supports_reasoning": true
|
|
676
|
+
},
|
|
677
|
+
"MiniMax-M2.5-highspeed": {
|
|
678
|
+
"context_window": 204800,
|
|
679
|
+
"max_output_tokens": 131072,
|
|
680
|
+
"supports_image_input": false,
|
|
681
|
+
"supports_reasoning": true
|
|
682
|
+
},
|
|
683
|
+
"MiniMax-M2.7": {
|
|
684
|
+
"context_window": 204800,
|
|
685
|
+
"max_output_tokens": 131072,
|
|
686
|
+
"supports_image_input": false,
|
|
687
|
+
"supports_reasoning": true
|
|
688
|
+
},
|
|
689
|
+
"MiniMax-M2.7-highspeed": {
|
|
690
|
+
"context_window": 204800,
|
|
691
|
+
"max_output_tokens": 131072,
|
|
692
|
+
"supports_image_input": false,
|
|
693
|
+
"supports_reasoning": true
|
|
694
|
+
}
|
|
695
|
+
},
|
|
696
|
+
"moonshotai": {
|
|
697
|
+
"kimi-k2-0711-preview": {
|
|
698
|
+
"context_window": 131072,
|
|
699
|
+
"max_output_tokens": 16384,
|
|
700
|
+
"supports_image_input": false,
|
|
701
|
+
"supports_reasoning": false
|
|
702
|
+
},
|
|
703
|
+
"kimi-k2-0905-preview": {
|
|
704
|
+
"context_window": 262144,
|
|
705
|
+
"max_output_tokens": 262144,
|
|
706
|
+
"supports_image_input": false,
|
|
707
|
+
"supports_reasoning": false
|
|
708
|
+
},
|
|
709
|
+
"kimi-k2-thinking": {
|
|
710
|
+
"context_window": 262144,
|
|
711
|
+
"max_output_tokens": 262144,
|
|
712
|
+
"supports_image_input": false,
|
|
713
|
+
"supports_reasoning": true
|
|
714
|
+
},
|
|
715
|
+
"kimi-k2-thinking-turbo": {
|
|
716
|
+
"context_window": 262144,
|
|
717
|
+
"max_output_tokens": 262144,
|
|
718
|
+
"supports_image_input": false,
|
|
719
|
+
"supports_reasoning": true
|
|
720
|
+
},
|
|
721
|
+
"kimi-k2-turbo-preview": {
|
|
722
|
+
"context_window": 262144,
|
|
723
|
+
"max_output_tokens": 262144,
|
|
724
|
+
"supports_image_input": false,
|
|
725
|
+
"supports_reasoning": false
|
|
726
|
+
},
|
|
727
|
+
"kimi-k2.5": {
|
|
728
|
+
"context_window": 262144,
|
|
729
|
+
"max_output_tokens": 262144,
|
|
730
|
+
"supports_image_input": true,
|
|
731
|
+
"supports_reasoning": true
|
|
732
|
+
}
|
|
733
|
+
},
|
|
734
|
+
"openai": {
|
|
735
|
+
"codex-mini-latest": {
|
|
736
|
+
"context_window": 200000,
|
|
737
|
+
"max_output_tokens": 100000,
|
|
738
|
+
"supports_image_input": false,
|
|
739
|
+
"supports_reasoning": true
|
|
740
|
+
},
|
|
741
|
+
"gpt-3.5-turbo": {
|
|
742
|
+
"context_window": 16385,
|
|
743
|
+
"max_output_tokens": 4096,
|
|
744
|
+
"supports_image_input": false,
|
|
745
|
+
"supports_reasoning": false
|
|
746
|
+
},
|
|
747
|
+
"gpt-4": {
|
|
748
|
+
"context_window": 8192,
|
|
749
|
+
"max_output_tokens": 8192,
|
|
750
|
+
"supports_image_input": false,
|
|
751
|
+
"supports_reasoning": false
|
|
752
|
+
},
|
|
753
|
+
"gpt-4-turbo": {
|
|
754
|
+
"context_window": 128000,
|
|
755
|
+
"max_output_tokens": 4096,
|
|
756
|
+
"supports_image_input": true,
|
|
757
|
+
"supports_reasoning": false
|
|
758
|
+
},
|
|
759
|
+
"gpt-4.1": {
|
|
760
|
+
"context_window": 1047576,
|
|
761
|
+
"max_output_tokens": 32768,
|
|
762
|
+
"supports_image_input": true,
|
|
763
|
+
"supports_reasoning": false
|
|
764
|
+
},
|
|
765
|
+
"gpt-4.1-mini": {
|
|
766
|
+
"context_window": 1047576,
|
|
767
|
+
"max_output_tokens": 32768,
|
|
768
|
+
"supports_image_input": true,
|
|
769
|
+
"supports_reasoning": false
|
|
770
|
+
},
|
|
771
|
+
"gpt-4.1-nano": {
|
|
772
|
+
"context_window": 1047576,
|
|
773
|
+
"max_output_tokens": 32768,
|
|
774
|
+
"supports_image_input": true,
|
|
775
|
+
"supports_reasoning": false
|
|
776
|
+
},
|
|
777
|
+
"gpt-4o": {
|
|
778
|
+
"context_window": 128000,
|
|
779
|
+
"max_output_tokens": 16384,
|
|
780
|
+
"supports_image_input": true,
|
|
781
|
+
"supports_reasoning": false
|
|
782
|
+
},
|
|
783
|
+
"gpt-4o-2024-05-13": {
|
|
784
|
+
"context_window": 128000,
|
|
785
|
+
"max_output_tokens": 4096,
|
|
786
|
+
"supports_image_input": true,
|
|
787
|
+
"supports_reasoning": false
|
|
788
|
+
},
|
|
789
|
+
"gpt-4o-2024-08-06": {
|
|
790
|
+
"context_window": 128000,
|
|
791
|
+
"max_output_tokens": 16384,
|
|
792
|
+
"supports_image_input": true,
|
|
793
|
+
"supports_reasoning": false
|
|
794
|
+
},
|
|
795
|
+
"gpt-4o-2024-11-20": {
|
|
796
|
+
"context_window": 128000,
|
|
797
|
+
"max_output_tokens": 16384,
|
|
798
|
+
"supports_image_input": true,
|
|
799
|
+
"supports_reasoning": false
|
|
800
|
+
},
|
|
801
|
+
"gpt-4o-mini": {
|
|
802
|
+
"context_window": 128000,
|
|
803
|
+
"max_output_tokens": 16384,
|
|
804
|
+
"supports_image_input": true,
|
|
805
|
+
"supports_reasoning": false
|
|
806
|
+
},
|
|
807
|
+
"gpt-5": {
|
|
808
|
+
"context_window": 400000,
|
|
809
|
+
"max_output_tokens": 128000,
|
|
810
|
+
"supports_image_input": true,
|
|
811
|
+
"supports_reasoning": true
|
|
812
|
+
},
|
|
813
|
+
"gpt-5-chat-latest": {
|
|
814
|
+
"context_window": 400000,
|
|
815
|
+
"max_output_tokens": 128000,
|
|
816
|
+
"supports_image_input": true,
|
|
817
|
+
"supports_reasoning": true
|
|
818
|
+
},
|
|
819
|
+
"gpt-5-codex": {
|
|
820
|
+
"context_window": 400000,
|
|
821
|
+
"max_output_tokens": 128000,
|
|
822
|
+
"supports_image_input": true,
|
|
823
|
+
"supports_reasoning": true
|
|
824
|
+
},
|
|
825
|
+
"gpt-5-mini": {
|
|
826
|
+
"context_window": 400000,
|
|
827
|
+
"max_output_tokens": 128000,
|
|
828
|
+
"supports_image_input": true,
|
|
829
|
+
"supports_reasoning": true
|
|
830
|
+
},
|
|
831
|
+
"gpt-5-nano": {
|
|
832
|
+
"context_window": 400000,
|
|
833
|
+
"max_output_tokens": 128000,
|
|
834
|
+
"supports_image_input": true,
|
|
835
|
+
"supports_reasoning": true
|
|
836
|
+
},
|
|
837
|
+
"gpt-5-pro": {
|
|
838
|
+
"context_window": 400000,
|
|
839
|
+
"max_output_tokens": 272000,
|
|
840
|
+
"supports_image_input": true,
|
|
841
|
+
"supports_reasoning": true
|
|
842
|
+
},
|
|
843
|
+
"gpt-5.1": {
|
|
844
|
+
"context_window": 400000,
|
|
845
|
+
"max_output_tokens": 128000,
|
|
846
|
+
"supports_image_input": true,
|
|
847
|
+
"supports_reasoning": true
|
|
848
|
+
},
|
|
849
|
+
"gpt-5.1-chat-latest": {
|
|
850
|
+
"context_window": 128000,
|
|
851
|
+
"max_output_tokens": 16384,
|
|
852
|
+
"supports_image_input": true,
|
|
853
|
+
"supports_reasoning": true
|
|
854
|
+
},
|
|
855
|
+
"gpt-5.1-codex": {
|
|
856
|
+
"context_window": 400000,
|
|
857
|
+
"max_output_tokens": 128000,
|
|
858
|
+
"supports_image_input": true,
|
|
859
|
+
"supports_reasoning": true
|
|
860
|
+
},
|
|
861
|
+
"gpt-5.1-codex-max": {
|
|
862
|
+
"context_window": 400000,
|
|
863
|
+
"max_output_tokens": 128000,
|
|
864
|
+
"supports_image_input": true,
|
|
865
|
+
"supports_reasoning": true
|
|
866
|
+
},
|
|
867
|
+
"gpt-5.1-codex-mini": {
|
|
868
|
+
"context_window": 400000,
|
|
869
|
+
"max_output_tokens": 128000,
|
|
870
|
+
"supports_image_input": true,
|
|
871
|
+
"supports_reasoning": true
|
|
872
|
+
},
|
|
873
|
+
"gpt-5.2": {
|
|
874
|
+
"context_window": 400000,
|
|
875
|
+
"max_output_tokens": 128000,
|
|
876
|
+
"supports_image_input": true,
|
|
877
|
+
"supports_reasoning": true
|
|
878
|
+
},
|
|
879
|
+
"gpt-5.2-chat-latest": {
|
|
880
|
+
"context_window": 128000,
|
|
881
|
+
"max_output_tokens": 16384,
|
|
882
|
+
"supports_image_input": true,
|
|
883
|
+
"supports_reasoning": true
|
|
884
|
+
},
|
|
885
|
+
"gpt-5.2-codex": {
|
|
886
|
+
"context_window": 400000,
|
|
887
|
+
"max_output_tokens": 128000,
|
|
888
|
+
"supports_image_input": true,
|
|
889
|
+
"supports_reasoning": true
|
|
890
|
+
},
|
|
891
|
+
"gpt-5.2-pro": {
|
|
892
|
+
"context_window": 400000,
|
|
893
|
+
"max_output_tokens": 128000,
|
|
894
|
+
"supports_image_input": true,
|
|
895
|
+
"supports_reasoning": true
|
|
896
|
+
},
|
|
897
|
+
"gpt-5.3-chat-latest": {
|
|
898
|
+
"context_window": 128000,
|
|
899
|
+
"max_output_tokens": 16384,
|
|
900
|
+
"supports_image_input": true,
|
|
901
|
+
"supports_reasoning": false
|
|
902
|
+
},
|
|
903
|
+
"gpt-5.3-codex": {
|
|
904
|
+
"context_window": 400000,
|
|
905
|
+
"max_output_tokens": 128000,
|
|
906
|
+
"supports_image_input": true,
|
|
907
|
+
"supports_reasoning": true
|
|
908
|
+
},
|
|
909
|
+
"gpt-5.3-codex-spark": {
|
|
910
|
+
"context_window": 128000,
|
|
911
|
+
"max_output_tokens": 32000,
|
|
912
|
+
"supports_image_input": true,
|
|
913
|
+
"supports_reasoning": true
|
|
914
|
+
},
|
|
915
|
+
"gpt-5.4": {
|
|
916
|
+
"context_window": 1050000,
|
|
917
|
+
"max_output_tokens": 128000,
|
|
918
|
+
"supports_image_input": true,
|
|
919
|
+
"supports_reasoning": true
|
|
920
|
+
},
|
|
921
|
+
"gpt-5.4-mini": {
|
|
922
|
+
"context_window": 400000,
|
|
923
|
+
"max_output_tokens": 128000,
|
|
924
|
+
"supports_image_input": true,
|
|
925
|
+
"supports_reasoning": true
|
|
926
|
+
},
|
|
927
|
+
"gpt-5.4-nano": {
|
|
928
|
+
"context_window": 400000,
|
|
929
|
+
"max_output_tokens": 128000,
|
|
930
|
+
"supports_image_input": true,
|
|
931
|
+
"supports_reasoning": true
|
|
932
|
+
},
|
|
933
|
+
"gpt-5.4-pro": {
|
|
934
|
+
"context_window": 1050000,
|
|
935
|
+
"max_output_tokens": 128000,
|
|
936
|
+
"supports_image_input": true,
|
|
937
|
+
"supports_reasoning": true
|
|
938
|
+
},
|
|
939
|
+
"o1": {
|
|
940
|
+
"context_window": 200000,
|
|
941
|
+
"max_output_tokens": 100000,
|
|
942
|
+
"supports_image_input": true,
|
|
943
|
+
"supports_reasoning": true
|
|
944
|
+
},
|
|
945
|
+
"o1-mini": {
|
|
946
|
+
"context_window": 128000,
|
|
947
|
+
"max_output_tokens": 65536,
|
|
948
|
+
"supports_image_input": false,
|
|
949
|
+
"supports_reasoning": true
|
|
950
|
+
},
|
|
951
|
+
"o1-preview": {
|
|
952
|
+
"context_window": 128000,
|
|
953
|
+
"max_output_tokens": 32768,
|
|
954
|
+
"supports_image_input": false,
|
|
955
|
+
"supports_reasoning": true
|
|
956
|
+
},
|
|
957
|
+
"o1-pro": {
|
|
958
|
+
"context_window": 200000,
|
|
959
|
+
"max_output_tokens": 100000,
|
|
960
|
+
"supports_image_input": true,
|
|
961
|
+
"supports_reasoning": true
|
|
962
|
+
},
|
|
963
|
+
"o3": {
|
|
964
|
+
"context_window": 200000,
|
|
965
|
+
"max_output_tokens": 100000,
|
|
966
|
+
"supports_image_input": true,
|
|
967
|
+
"supports_reasoning": true
|
|
968
|
+
},
|
|
969
|
+
"o3-deep-research": {
|
|
970
|
+
"context_window": 200000,
|
|
971
|
+
"max_output_tokens": 100000,
|
|
972
|
+
"supports_image_input": true,
|
|
973
|
+
"supports_reasoning": true
|
|
974
|
+
},
|
|
975
|
+
"o3-mini": {
|
|
976
|
+
"context_window": 200000,
|
|
977
|
+
"max_output_tokens": 100000,
|
|
978
|
+
"supports_image_input": false,
|
|
979
|
+
"supports_reasoning": true
|
|
980
|
+
},
|
|
981
|
+
"o3-pro": {
|
|
982
|
+
"context_window": 200000,
|
|
983
|
+
"max_output_tokens": 100000,
|
|
984
|
+
"supports_image_input": true,
|
|
985
|
+
"supports_reasoning": true
|
|
986
|
+
},
|
|
987
|
+
"o4-mini": {
|
|
988
|
+
"context_window": 200000,
|
|
989
|
+
"max_output_tokens": 100000,
|
|
990
|
+
"supports_image_input": true,
|
|
991
|
+
"supports_reasoning": true
|
|
992
|
+
},
|
|
993
|
+
"o4-mini-deep-research": {
|
|
994
|
+
"context_window": 200000,
|
|
995
|
+
"max_output_tokens": 100000,
|
|
996
|
+
"supports_image_input": true,
|
|
997
|
+
"supports_reasoning": true
|
|
998
|
+
},
|
|
999
|
+
"text-embedding-3-large": {
|
|
1000
|
+
"context_window": 8191,
|
|
1001
|
+
"max_output_tokens": 3072,
|
|
1002
|
+
"supports_image_input": false,
|
|
1003
|
+
"supports_reasoning": false
|
|
1004
|
+
},
|
|
1005
|
+
"text-embedding-3-small": {
|
|
1006
|
+
"context_window": 8191,
|
|
1007
|
+
"max_output_tokens": 1536,
|
|
1008
|
+
"supports_image_input": false,
|
|
1009
|
+
"supports_reasoning": false
|
|
1010
|
+
},
|
|
1011
|
+
"text-embedding-ada-002": {
|
|
1012
|
+
"context_window": 8192,
|
|
1013
|
+
"max_output_tokens": 1536,
|
|
1014
|
+
"supports_image_input": false,
|
|
1015
|
+
"supports_reasoning": false
|
|
1016
|
+
}
|
|
1017
|
+
},
|
|
1018
|
+
"openrouter": {
|
|
1019
|
+
"anthropic/claude-3.5-haiku": {
|
|
1020
|
+
"context_window": 200000,
|
|
1021
|
+
"max_output_tokens": 8192,
|
|
1022
|
+
"supports_image_input": true,
|
|
1023
|
+
"supports_reasoning": false
|
|
1024
|
+
},
|
|
1025
|
+
"anthropic/claude-3.7-sonnet": {
|
|
1026
|
+
"context_window": 200000,
|
|
1027
|
+
"max_output_tokens": 128000,
|
|
1028
|
+
"supports_image_input": true,
|
|
1029
|
+
"supports_reasoning": true
|
|
1030
|
+
},
|
|
1031
|
+
"anthropic/claude-haiku-4.5": {
|
|
1032
|
+
"context_window": 200000,
|
|
1033
|
+
"max_output_tokens": 64000,
|
|
1034
|
+
"supports_image_input": true,
|
|
1035
|
+
"supports_reasoning": true
|
|
1036
|
+
},
|
|
1037
|
+
"anthropic/claude-opus-4": {
|
|
1038
|
+
"context_window": 200000,
|
|
1039
|
+
"max_output_tokens": 32000,
|
|
1040
|
+
"supports_image_input": true,
|
|
1041
|
+
"supports_reasoning": true
|
|
1042
|
+
},
|
|
1043
|
+
"anthropic/claude-opus-4.1": {
|
|
1044
|
+
"context_window": 200000,
|
|
1045
|
+
"max_output_tokens": 32000,
|
|
1046
|
+
"supports_image_input": true,
|
|
1047
|
+
"supports_reasoning": true
|
|
1048
|
+
},
|
|
1049
|
+
"anthropic/claude-opus-4.5": {
|
|
1050
|
+
"context_window": 200000,
|
|
1051
|
+
"max_output_tokens": 32000,
|
|
1052
|
+
"supports_image_input": true,
|
|
1053
|
+
"supports_reasoning": true
|
|
1054
|
+
},
|
|
1055
|
+
"anthropic/claude-opus-4.6": {
|
|
1056
|
+
"context_window": 1000000,
|
|
1057
|
+
"max_output_tokens": 128000,
|
|
1058
|
+
"supports_image_input": true,
|
|
1059
|
+
"supports_reasoning": true
|
|
1060
|
+
},
|
|
1061
|
+
"anthropic/claude-sonnet-4": {
|
|
1062
|
+
"context_window": 200000,
|
|
1063
|
+
"max_output_tokens": 64000,
|
|
1064
|
+
"supports_image_input": true,
|
|
1065
|
+
"supports_reasoning": true
|
|
1066
|
+
},
|
|
1067
|
+
"anthropic/claude-sonnet-4.5": {
|
|
1068
|
+
"context_window": 1000000,
|
|
1069
|
+
"max_output_tokens": 64000,
|
|
1070
|
+
"supports_image_input": true,
|
|
1071
|
+
"supports_reasoning": true
|
|
1072
|
+
},
|
|
1073
|
+
"anthropic/claude-sonnet-4.6": {
|
|
1074
|
+
"context_window": 1000000,
|
|
1075
|
+
"max_output_tokens": 128000,
|
|
1076
|
+
"supports_image_input": true,
|
|
1077
|
+
"supports_reasoning": true
|
|
1078
|
+
},
|
|
1079
|
+
"arcee-ai/trinity-large-preview:free": {
|
|
1080
|
+
"context_window": 131072,
|
|
1081
|
+
"max_output_tokens": 131072,
|
|
1082
|
+
"supports_image_input": false,
|
|
1083
|
+
"supports_reasoning": false
|
|
1084
|
+
},
|
|
1085
|
+
"arcee-ai/trinity-mini:free": {
|
|
1086
|
+
"context_window": 131072,
|
|
1087
|
+
"max_output_tokens": 131072,
|
|
1088
|
+
"supports_image_input": false,
|
|
1089
|
+
"supports_reasoning": false
|
|
1090
|
+
},
|
|
1091
|
+
"black-forest-labs/flux.2-flex": {
|
|
1092
|
+
"context_window": 67344,
|
|
1093
|
+
"max_output_tokens": 67344,
|
|
1094
|
+
"supports_image_input": true,
|
|
1095
|
+
"supports_reasoning": false
|
|
1096
|
+
},
|
|
1097
|
+
"black-forest-labs/flux.2-klein-4b": {
|
|
1098
|
+
"context_window": 40960,
|
|
1099
|
+
"max_output_tokens": 40960,
|
|
1100
|
+
"supports_image_input": true,
|
|
1101
|
+
"supports_reasoning": false
|
|
1102
|
+
},
|
|
1103
|
+
"black-forest-labs/flux.2-max": {
|
|
1104
|
+
"context_window": 46864,
|
|
1105
|
+
"max_output_tokens": 46864,
|
|
1106
|
+
"supports_image_input": true,
|
|
1107
|
+
"supports_reasoning": false
|
|
1108
|
+
},
|
|
1109
|
+
"black-forest-labs/flux.2-pro": {
|
|
1110
|
+
"context_window": 46864,
|
|
1111
|
+
"max_output_tokens": 46864,
|
|
1112
|
+
"supports_image_input": true,
|
|
1113
|
+
"supports_reasoning": false
|
|
1114
|
+
},
|
|
1115
|
+
"bytedance-seed/seedream-4.5": {
|
|
1116
|
+
"context_window": 4096,
|
|
1117
|
+
"max_output_tokens": 4096,
|
|
1118
|
+
"supports_image_input": true,
|
|
1119
|
+
"supports_reasoning": false
|
|
1120
|
+
},
|
|
1121
|
+
"cognitivecomputations/dolphin-mistral-24b-venice-edition:free": {
|
|
1122
|
+
"context_window": 32768,
|
|
1123
|
+
"max_output_tokens": 32768,
|
|
1124
|
+
"supports_image_input": false,
|
|
1125
|
+
"supports_reasoning": false
|
|
1126
|
+
},
|
|
1127
|
+
"deepseek/deepseek-chat-v3-0324": {
|
|
1128
|
+
"context_window": 16384,
|
|
1129
|
+
"max_output_tokens": 8192,
|
|
1130
|
+
"supports_image_input": false,
|
|
1131
|
+
"supports_reasoning": false
|
|
1132
|
+
},
|
|
1133
|
+
"deepseek/deepseek-chat-v3.1": {
|
|
1134
|
+
"context_window": 163840,
|
|
1135
|
+
"max_output_tokens": 163840,
|
|
1136
|
+
"supports_image_input": false,
|
|
1137
|
+
"supports_reasoning": true
|
|
1138
|
+
},
|
|
1139
|
+
"deepseek/deepseek-r1-distill-llama-70b": {
|
|
1140
|
+
"context_window": 8192,
|
|
1141
|
+
"max_output_tokens": 8192,
|
|
1142
|
+
"supports_image_input": false,
|
|
1143
|
+
"supports_reasoning": true
|
|
1144
|
+
},
|
|
1145
|
+
"deepseek/deepseek-v3.1-terminus": {
|
|
1146
|
+
"context_window": 131072,
|
|
1147
|
+
"max_output_tokens": 65536,
|
|
1148
|
+
"supports_image_input": false,
|
|
1149
|
+
"supports_reasoning": true
|
|
1150
|
+
},
|
|
1151
|
+
"deepseek/deepseek-v3.1-terminus:exacto": {
|
|
1152
|
+
"context_window": 131072,
|
|
1153
|
+
"max_output_tokens": 65536,
|
|
1154
|
+
"supports_image_input": false,
|
|
1155
|
+
"supports_reasoning": true
|
|
1156
|
+
},
|
|
1157
|
+
"deepseek/deepseek-v3.2": {
|
|
1158
|
+
"context_window": 163840,
|
|
1159
|
+
"max_output_tokens": 65536,
|
|
1160
|
+
"supports_image_input": false,
|
|
1161
|
+
"supports_reasoning": true
|
|
1162
|
+
},
|
|
1163
|
+
"deepseek/deepseek-v3.2-speciale": {
|
|
1164
|
+
"context_window": 163840,
|
|
1165
|
+
"max_output_tokens": 65536,
|
|
1166
|
+
"supports_image_input": false,
|
|
1167
|
+
"supports_reasoning": true
|
|
1168
|
+
},
|
|
1169
|
+
"google/gemini-2.0-flash-001": {
|
|
1170
|
+
"context_window": 1048576,
|
|
1171
|
+
"max_output_tokens": 8192,
|
|
1172
|
+
"supports_image_input": true,
|
|
1173
|
+
"supports_reasoning": false
|
|
1174
|
+
},
|
|
1175
|
+
"google/gemini-2.5-flash": {
|
|
1176
|
+
"context_window": 1048576,
|
|
1177
|
+
"max_output_tokens": 65536,
|
|
1178
|
+
"supports_image_input": true,
|
|
1179
|
+
"supports_reasoning": true
|
|
1180
|
+
},
|
|
1181
|
+
"google/gemini-2.5-flash-lite": {
|
|
1182
|
+
"context_window": 1048576,
|
|
1183
|
+
"max_output_tokens": 65536,
|
|
1184
|
+
"supports_image_input": true,
|
|
1185
|
+
"supports_reasoning": true
|
|
1186
|
+
},
|
|
1187
|
+
"google/gemini-2.5-flash-lite-preview-09-2025": {
|
|
1188
|
+
"context_window": 1048576,
|
|
1189
|
+
"max_output_tokens": 65536,
|
|
1190
|
+
"supports_image_input": true,
|
|
1191
|
+
"supports_reasoning": true
|
|
1192
|
+
},
|
|
1193
|
+
"google/gemini-2.5-flash-preview-09-2025": {
|
|
1194
|
+
"context_window": 1048576,
|
|
1195
|
+
"max_output_tokens": 65536,
|
|
1196
|
+
"supports_image_input": true,
|
|
1197
|
+
"supports_reasoning": true
|
|
1198
|
+
},
|
|
1199
|
+
"google/gemini-2.5-pro": {
|
|
1200
|
+
"context_window": 1048576,
|
|
1201
|
+
"max_output_tokens": 65536,
|
|
1202
|
+
"supports_image_input": true,
|
|
1203
|
+
"supports_reasoning": true
|
|
1204
|
+
},
|
|
1205
|
+
"google/gemini-2.5-pro-preview-05-06": {
|
|
1206
|
+
"context_window": 1048576,
|
|
1207
|
+
"max_output_tokens": 65536,
|
|
1208
|
+
"supports_image_input": true,
|
|
1209
|
+
"supports_reasoning": true
|
|
1210
|
+
},
|
|
1211
|
+
"google/gemini-2.5-pro-preview-06-05": {
|
|
1212
|
+
"context_window": 1048576,
|
|
1213
|
+
"max_output_tokens": 65536,
|
|
1214
|
+
"supports_image_input": true,
|
|
1215
|
+
"supports_reasoning": true
|
|
1216
|
+
},
|
|
1217
|
+
"google/gemini-3-flash-preview": {
|
|
1218
|
+
"context_window": 1048576,
|
|
1219
|
+
"max_output_tokens": 65536,
|
|
1220
|
+
"supports_image_input": true,
|
|
1221
|
+
"supports_reasoning": true
|
|
1222
|
+
},
|
|
1223
|
+
"google/gemini-3-pro-preview": {
|
|
1224
|
+
"context_window": 1050000,
|
|
1225
|
+
"max_output_tokens": 66000,
|
|
1226
|
+
"supports_image_input": true,
|
|
1227
|
+
"supports_reasoning": true
|
|
1228
|
+
},
|
|
1229
|
+
"google/gemini-3.1-flash-lite-preview": {
|
|
1230
|
+
"context_window": 1048576,
|
|
1231
|
+
"max_output_tokens": 65536,
|
|
1232
|
+
"supports_image_input": true,
|
|
1233
|
+
"supports_reasoning": true
|
|
1234
|
+
},
|
|
1235
|
+
"google/gemini-3.1-pro-preview": {
|
|
1236
|
+
"context_window": 1048576,
|
|
1237
|
+
"max_output_tokens": 65536,
|
|
1238
|
+
"supports_image_input": true,
|
|
1239
|
+
"supports_reasoning": true
|
|
1240
|
+
},
|
|
1241
|
+
"google/gemini-3.1-pro-preview-customtools": {
|
|
1242
|
+
"context_window": 1048576,
|
|
1243
|
+
"max_output_tokens": 65536,
|
|
1244
|
+
"supports_image_input": true,
|
|
1245
|
+
"supports_reasoning": true
|
|
1246
|
+
},
|
|
1247
|
+
"google/gemma-2-9b-it": {
|
|
1248
|
+
"context_window": 8192,
|
|
1249
|
+
"max_output_tokens": 8192,
|
|
1250
|
+
"supports_image_input": false,
|
|
1251
|
+
"supports_reasoning": false
|
|
1252
|
+
},
|
|
1253
|
+
"google/gemma-3-12b-it": {
|
|
1254
|
+
"context_window": 131072,
|
|
1255
|
+
"max_output_tokens": 131072,
|
|
1256
|
+
"supports_image_input": true,
|
|
1257
|
+
"supports_reasoning": false
|
|
1258
|
+
},
|
|
1259
|
+
"google/gemma-3-12b-it:free": {
|
|
1260
|
+
"context_window": 32768,
|
|
1261
|
+
"max_output_tokens": 8192,
|
|
1262
|
+
"supports_image_input": true,
|
|
1263
|
+
"supports_reasoning": false
|
|
1264
|
+
},
|
|
1265
|
+
"google/gemma-3-27b-it": {
|
|
1266
|
+
"context_window": 96000,
|
|
1267
|
+
"max_output_tokens": 96000,
|
|
1268
|
+
"supports_image_input": true,
|
|
1269
|
+
"supports_reasoning": false
|
|
1270
|
+
},
|
|
1271
|
+
"google/gemma-3-27b-it:free": {
|
|
1272
|
+
"context_window": 131072,
|
|
1273
|
+
"max_output_tokens": 8192,
|
|
1274
|
+
"supports_image_input": true,
|
|
1275
|
+
"supports_reasoning": false
|
|
1276
|
+
},
|
|
1277
|
+
"google/gemma-3-4b-it": {
|
|
1278
|
+
"context_window": 96000,
|
|
1279
|
+
"max_output_tokens": 96000,
|
|
1280
|
+
"supports_image_input": true,
|
|
1281
|
+
"supports_reasoning": false
|
|
1282
|
+
},
|
|
1283
|
+
"google/gemma-3-4b-it:free": {
|
|
1284
|
+
"context_window": 32768,
|
|
1285
|
+
"max_output_tokens": 8192,
|
|
1286
|
+
"supports_image_input": true,
|
|
1287
|
+
"supports_reasoning": false
|
|
1288
|
+
},
|
|
1289
|
+
"google/gemma-3n-e2b-it:free": {
|
|
1290
|
+
"context_window": 8192,
|
|
1291
|
+
"max_output_tokens": 2000,
|
|
1292
|
+
"supports_image_input": false,
|
|
1293
|
+
"supports_reasoning": false
|
|
1294
|
+
},
|
|
1295
|
+
"google/gemma-3n-e4b-it": {
|
|
1296
|
+
"context_window": 32768,
|
|
1297
|
+
"max_output_tokens": 32768,
|
|
1298
|
+
"supports_image_input": false,
|
|
1299
|
+
"supports_reasoning": false
|
|
1300
|
+
},
|
|
1301
|
+
"google/gemma-3n-e4b-it:free": {
|
|
1302
|
+
"context_window": 8192,
|
|
1303
|
+
"max_output_tokens": 2000,
|
|
1304
|
+
"supports_image_input": false,
|
|
1305
|
+
"supports_reasoning": false
|
|
1306
|
+
},
|
|
1307
|
+
"inception/mercury": {
|
|
1308
|
+
"context_window": 128000,
|
|
1309
|
+
"max_output_tokens": 32000,
|
|
1310
|
+
"supports_image_input": false,
|
|
1311
|
+
"supports_reasoning": false
|
|
1312
|
+
},
|
|
1313
|
+
"inception/mercury-2": {
|
|
1314
|
+
"context_window": 128000,
|
|
1315
|
+
"max_output_tokens": 50000,
|
|
1316
|
+
"supports_image_input": false,
|
|
1317
|
+
"supports_reasoning": true
|
|
1318
|
+
},
|
|
1319
|
+
"inception/mercury-coder": {
|
|
1320
|
+
"context_window": 128000,
|
|
1321
|
+
"max_output_tokens": 32000,
|
|
1322
|
+
"supports_image_input": false,
|
|
1323
|
+
"supports_reasoning": false
|
|
1324
|
+
},
|
|
1325
|
+
"liquid/lfm-2.5-1.2b-instruct:free": {
|
|
1326
|
+
"context_window": 131072,
|
|
1327
|
+
"max_output_tokens": 32768,
|
|
1328
|
+
"supports_image_input": false,
|
|
1329
|
+
"supports_reasoning": false
|
|
1330
|
+
},
|
|
1331
|
+
"liquid/lfm-2.5-1.2b-thinking:free": {
|
|
1332
|
+
"context_window": 131072,
|
|
1333
|
+
"max_output_tokens": 32768,
|
|
1334
|
+
"supports_image_input": false,
|
|
1335
|
+
"supports_reasoning": true
|
|
1336
|
+
},
|
|
1337
|
+
"meta-llama/llama-3.2-11b-vision-instruct": {
|
|
1338
|
+
"context_window": 131072,
|
|
1339
|
+
"max_output_tokens": 8192,
|
|
1340
|
+
"supports_image_input": true,
|
|
1341
|
+
"supports_reasoning": false
|
|
1342
|
+
},
|
|
1343
|
+
"meta-llama/llama-3.2-3b-instruct:free": {
|
|
1344
|
+
"context_window": 131072,
|
|
1345
|
+
"max_output_tokens": 131072,
|
|
1346
|
+
"supports_image_input": true,
|
|
1347
|
+
"supports_reasoning": false
|
|
1348
|
+
},
|
|
1349
|
+
"meta-llama/llama-3.3-70b-instruct:free": {
|
|
1350
|
+
"context_window": 131072,
|
|
1351
|
+
"max_output_tokens": 131072,
|
|
1352
|
+
"supports_image_input": false,
|
|
1353
|
+
"supports_reasoning": false
|
|
1354
|
+
},
|
|
1355
|
+
"minimax/minimax-01": {
|
|
1356
|
+
"context_window": 1000000,
|
|
1357
|
+
"max_output_tokens": 1000000,
|
|
1358
|
+
"supports_image_input": true,
|
|
1359
|
+
"supports_reasoning": true
|
|
1360
|
+
},
|
|
1361
|
+
"minimax/minimax-m1": {
|
|
1362
|
+
"context_window": 1000000,
|
|
1363
|
+
"max_output_tokens": 40000,
|
|
1364
|
+
"supports_image_input": false,
|
|
1365
|
+
"supports_reasoning": true
|
|
1366
|
+
},
|
|
1367
|
+
"minimax/minimax-m2": {
|
|
1368
|
+
"context_window": 196600,
|
|
1369
|
+
"max_output_tokens": 118000,
|
|
1370
|
+
"supports_image_input": false,
|
|
1371
|
+
"supports_reasoning": true
|
|
1372
|
+
},
|
|
1373
|
+
"minimax/minimax-m2.1": {
|
|
1374
|
+
"context_window": 204800,
|
|
1375
|
+
"max_output_tokens": 131072,
|
|
1376
|
+
"supports_image_input": false,
|
|
1377
|
+
"supports_reasoning": true
|
|
1378
|
+
},
|
|
1379
|
+
"minimax/minimax-m2.5": {
|
|
1380
|
+
"context_window": 204800,
|
|
1381
|
+
"max_output_tokens": 131072,
|
|
1382
|
+
"supports_image_input": false,
|
|
1383
|
+
"supports_reasoning": true
|
|
1384
|
+
},
|
|
1385
|
+
"minimax/minimax-m2.7": {
|
|
1386
|
+
"context_window": 204800,
|
|
1387
|
+
"max_output_tokens": 131072,
|
|
1388
|
+
"supports_image_input": false,
|
|
1389
|
+
"supports_reasoning": true
|
|
1390
|
+
},
|
|
1391
|
+
"mistralai/codestral-2508": {
|
|
1392
|
+
"context_window": 256000,
|
|
1393
|
+
"max_output_tokens": 256000,
|
|
1394
|
+
"supports_image_input": false,
|
|
1395
|
+
"supports_reasoning": false
|
|
1396
|
+
},
|
|
1397
|
+
"mistralai/devstral-2512": {
|
|
1398
|
+
"context_window": 262144,
|
|
1399
|
+
"max_output_tokens": 262144,
|
|
1400
|
+
"supports_image_input": false,
|
|
1401
|
+
"supports_reasoning": false
|
|
1402
|
+
},
|
|
1403
|
+
"mistralai/devstral-medium-2507": {
|
|
1404
|
+
"context_window": 131072,
|
|
1405
|
+
"max_output_tokens": 131072,
|
|
1406
|
+
"supports_image_input": false,
|
|
1407
|
+
"supports_reasoning": false
|
|
1408
|
+
},
|
|
1409
|
+
"mistralai/devstral-small-2505": {
|
|
1410
|
+
"context_window": 128000,
|
|
1411
|
+
"max_output_tokens": 128000,
|
|
1412
|
+
"supports_image_input": false,
|
|
1413
|
+
"supports_reasoning": false
|
|
1414
|
+
},
|
|
1415
|
+
"mistralai/devstral-small-2507": {
|
|
1416
|
+
"context_window": 131072,
|
|
1417
|
+
"max_output_tokens": 131072,
|
|
1418
|
+
"supports_image_input": false,
|
|
1419
|
+
"supports_reasoning": false
|
|
1420
|
+
},
|
|
1421
|
+
"mistralai/mistral-medium-3": {
|
|
1422
|
+
"context_window": 131072,
|
|
1423
|
+
"max_output_tokens": 131072,
|
|
1424
|
+
"supports_image_input": true,
|
|
1425
|
+
"supports_reasoning": false
|
|
1426
|
+
},
|
|
1427
|
+
"mistralai/mistral-medium-3.1": {
|
|
1428
|
+
"context_window": 262144,
|
|
1429
|
+
"max_output_tokens": 262144,
|
|
1430
|
+
"supports_image_input": true,
|
|
1431
|
+
"supports_reasoning": false
|
|
1432
|
+
},
|
|
1433
|
+
"mistralai/mistral-small-2603": {
|
|
1434
|
+
"context_window": 262144,
|
|
1435
|
+
"max_output_tokens": 262144,
|
|
1436
|
+
"supports_image_input": true,
|
|
1437
|
+
"supports_reasoning": true
|
|
1438
|
+
},
|
|
1439
|
+
"mistralai/mistral-small-3.1-24b-instruct": {
|
|
1440
|
+
"context_window": 128000,
|
|
1441
|
+
"max_output_tokens": 8192,
|
|
1442
|
+
"supports_image_input": true,
|
|
1443
|
+
"supports_reasoning": false
|
|
1444
|
+
},
|
|
1445
|
+
"mistralai/mistral-small-3.2-24b-instruct": {
|
|
1446
|
+
"context_window": 96000,
|
|
1447
|
+
"max_output_tokens": 8192,
|
|
1448
|
+
"supports_image_input": true,
|
|
1449
|
+
"supports_reasoning": false
|
|
1450
|
+
},
|
|
1451
|
+
"moonshotai/kimi-k2": {
|
|
1452
|
+
"context_window": 131072,
|
|
1453
|
+
"max_output_tokens": 32768,
|
|
1454
|
+
"supports_image_input": false,
|
|
1455
|
+
"supports_reasoning": false
|
|
1456
|
+
},
|
|
1457
|
+
"moonshotai/kimi-k2-0905": {
|
|
1458
|
+
"context_window": 262144,
|
|
1459
|
+
"max_output_tokens": 16384,
|
|
1460
|
+
"supports_image_input": false,
|
|
1461
|
+
"supports_reasoning": false
|
|
1462
|
+
},
|
|
1463
|
+
"moonshotai/kimi-k2-0905:exacto": {
|
|
1464
|
+
"context_window": 262144,
|
|
1465
|
+
"max_output_tokens": 16384,
|
|
1466
|
+
"supports_image_input": false,
|
|
1467
|
+
"supports_reasoning": false
|
|
1468
|
+
},
|
|
1469
|
+
"moonshotai/kimi-k2-thinking": {
|
|
1470
|
+
"context_window": 262144,
|
|
1471
|
+
"max_output_tokens": 262144,
|
|
1472
|
+
"supports_image_input": false,
|
|
1473
|
+
"supports_reasoning": true
|
|
1474
|
+
},
|
|
1475
|
+
"moonshotai/kimi-k2.5": {
|
|
1476
|
+
"context_window": 262144,
|
|
1477
|
+
"max_output_tokens": 262144,
|
|
1478
|
+
"supports_image_input": true,
|
|
1479
|
+
"supports_reasoning": true
|
|
1480
|
+
},
|
|
1481
|
+
"moonshotai/kimi-k2:free": {
|
|
1482
|
+
"context_window": 32800,
|
|
1483
|
+
"max_output_tokens": 32800,
|
|
1484
|
+
"supports_image_input": false,
|
|
1485
|
+
"supports_reasoning": false
|
|
1486
|
+
},
|
|
1487
|
+
"nousresearch/hermes-3-llama-3.1-405b:free": {
|
|
1488
|
+
"context_window": 131072,
|
|
1489
|
+
"max_output_tokens": 131072,
|
|
1490
|
+
"supports_image_input": false,
|
|
1491
|
+
"supports_reasoning": true
|
|
1492
|
+
},
|
|
1493
|
+
"nousresearch/hermes-4-405b": {
|
|
1494
|
+
"context_window": 131072,
|
|
1495
|
+
"max_output_tokens": 131072,
|
|
1496
|
+
"supports_image_input": false,
|
|
1497
|
+
"supports_reasoning": true
|
|
1498
|
+
},
|
|
1499
|
+
"nousresearch/hermes-4-70b": {
|
|
1500
|
+
"context_window": 131072,
|
|
1501
|
+
"max_output_tokens": 131072,
|
|
1502
|
+
"supports_image_input": false,
|
|
1503
|
+
"supports_reasoning": true
|
|
1504
|
+
},
|
|
1505
|
+
"nvidia/nemotron-3-nano-30b-a3b:free": {
|
|
1506
|
+
"context_window": 256000,
|
|
1507
|
+
"max_output_tokens": 256000,
|
|
1508
|
+
"supports_image_input": false,
|
|
1509
|
+
"supports_reasoning": true
|
|
1510
|
+
},
|
|
1511
|
+
"nvidia/nemotron-3-super-120b-a12b": {
|
|
1512
|
+
"context_window": 262144,
|
|
1513
|
+
"max_output_tokens": 262144,
|
|
1514
|
+
"supports_image_input": false,
|
|
1515
|
+
"supports_reasoning": true
|
|
1516
|
+
},
|
|
1517
|
+
"nvidia/nemotron-3-super-120b-a12b:free": {
|
|
1518
|
+
"context_window": 262144,
|
|
1519
|
+
"max_output_tokens": 262144,
|
|
1520
|
+
"supports_image_input": false,
|
|
1521
|
+
"supports_reasoning": true
|
|
1522
|
+
},
|
|
1523
|
+
"nvidia/nemotron-nano-12b-v2-vl:free": {
|
|
1524
|
+
"context_window": 128000,
|
|
1525
|
+
"max_output_tokens": 128000,
|
|
1526
|
+
"supports_image_input": true,
|
|
1527
|
+
"supports_reasoning": true
|
|
1528
|
+
},
|
|
1529
|
+
"nvidia/nemotron-nano-9b-v2": {
|
|
1530
|
+
"context_window": 131072,
|
|
1531
|
+
"max_output_tokens": 131072,
|
|
1532
|
+
"supports_image_input": false,
|
|
1533
|
+
"supports_reasoning": true
|
|
1534
|
+
},
|
|
1535
|
+
"nvidia/nemotron-nano-9b-v2:free": {
|
|
1536
|
+
"context_window": 128000,
|
|
1537
|
+
"max_output_tokens": 128000,
|
|
1538
|
+
"supports_image_input": false,
|
|
1539
|
+
"supports_reasoning": true
|
|
1540
|
+
},
|
|
1541
|
+
"openai/gpt-4.1": {
|
|
1542
|
+
"context_window": 1047576,
|
|
1543
|
+
"max_output_tokens": 32768,
|
|
1544
|
+
"supports_image_input": true,
|
|
1545
|
+
"supports_reasoning": false
|
|
1546
|
+
},
|
|
1547
|
+
"openai/gpt-4.1-mini": {
|
|
1548
|
+
"context_window": 1047576,
|
|
1549
|
+
"max_output_tokens": 32768,
|
|
1550
|
+
"supports_image_input": true,
|
|
1551
|
+
"supports_reasoning": false
|
|
1552
|
+
},
|
|
1553
|
+
"openai/gpt-4o-mini": {
|
|
1554
|
+
"context_window": 128000,
|
|
1555
|
+
"max_output_tokens": 16384,
|
|
1556
|
+
"supports_image_input": true,
|
|
1557
|
+
"supports_reasoning": false
|
|
1558
|
+
},
|
|
1559
|
+
"openai/gpt-5": {
|
|
1560
|
+
"context_window": 400000,
|
|
1561
|
+
"max_output_tokens": 128000,
|
|
1562
|
+
"supports_image_input": true,
|
|
1563
|
+
"supports_reasoning": true
|
|
1564
|
+
},
|
|
1565
|
+
"openai/gpt-5-chat": {
|
|
1566
|
+
"context_window": 400000,
|
|
1567
|
+
"max_output_tokens": 128000,
|
|
1568
|
+
"supports_image_input": true,
|
|
1569
|
+
"supports_reasoning": true
|
|
1570
|
+
},
|
|
1571
|
+
"openai/gpt-5-codex": {
|
|
1572
|
+
"context_window": 400000,
|
|
1573
|
+
"max_output_tokens": 128000,
|
|
1574
|
+
"supports_image_input": true,
|
|
1575
|
+
"supports_reasoning": true
|
|
1576
|
+
},
|
|
1577
|
+
"openai/gpt-5-image": {
|
|
1578
|
+
"context_window": 400000,
|
|
1579
|
+
"max_output_tokens": 128000,
|
|
1580
|
+
"supports_image_input": true,
|
|
1581
|
+
"supports_reasoning": true
|
|
1582
|
+
},
|
|
1583
|
+
"openai/gpt-5-mini": {
|
|
1584
|
+
"context_window": 400000,
|
|
1585
|
+
"max_output_tokens": 128000,
|
|
1586
|
+
"supports_image_input": true,
|
|
1587
|
+
"supports_reasoning": true
|
|
1588
|
+
},
|
|
1589
|
+
"openai/gpt-5-nano": {
|
|
1590
|
+
"context_window": 400000,
|
|
1591
|
+
"max_output_tokens": 128000,
|
|
1592
|
+
"supports_image_input": true,
|
|
1593
|
+
"supports_reasoning": true
|
|
1594
|
+
},
|
|
1595
|
+
"openai/gpt-5-pro": {
|
|
1596
|
+
"context_window": 400000,
|
|
1597
|
+
"max_output_tokens": 272000,
|
|
1598
|
+
"supports_image_input": true,
|
|
1599
|
+
"supports_reasoning": true
|
|
1600
|
+
},
|
|
1601
|
+
"openai/gpt-5.1": {
|
|
1602
|
+
"context_window": 400000,
|
|
1603
|
+
"max_output_tokens": 128000,
|
|
1604
|
+
"supports_image_input": true,
|
|
1605
|
+
"supports_reasoning": true
|
|
1606
|
+
},
|
|
1607
|
+
"openai/gpt-5.1-chat": {
|
|
1608
|
+
"context_window": 128000,
|
|
1609
|
+
"max_output_tokens": 16384,
|
|
1610
|
+
"supports_image_input": true,
|
|
1611
|
+
"supports_reasoning": true
|
|
1612
|
+
},
|
|
1613
|
+
"openai/gpt-5.1-codex": {
|
|
1614
|
+
"context_window": 400000,
|
|
1615
|
+
"max_output_tokens": 128000,
|
|
1616
|
+
"supports_image_input": true,
|
|
1617
|
+
"supports_reasoning": true
|
|
1618
|
+
},
|
|
1619
|
+
"openai/gpt-5.1-codex-max": {
|
|
1620
|
+
"context_window": 400000,
|
|
1621
|
+
"max_output_tokens": 128000,
|
|
1622
|
+
"supports_image_input": true,
|
|
1623
|
+
"supports_reasoning": true
|
|
1624
|
+
},
|
|
1625
|
+
"openai/gpt-5.1-codex-mini": {
|
|
1626
|
+
"context_window": 400000,
|
|
1627
|
+
"max_output_tokens": 100000,
|
|
1628
|
+
"supports_image_input": true,
|
|
1629
|
+
"supports_reasoning": true
|
|
1630
|
+
},
|
|
1631
|
+
"openai/gpt-5.2": {
|
|
1632
|
+
"context_window": 400000,
|
|
1633
|
+
"max_output_tokens": 128000,
|
|
1634
|
+
"supports_image_input": true,
|
|
1635
|
+
"supports_reasoning": true
|
|
1636
|
+
},
|
|
1637
|
+
"openai/gpt-5.2-chat": {
|
|
1638
|
+
"context_window": 128000,
|
|
1639
|
+
"max_output_tokens": 16384,
|
|
1640
|
+
"supports_image_input": true,
|
|
1641
|
+
"supports_reasoning": true
|
|
1642
|
+
},
|
|
1643
|
+
"openai/gpt-5.2-codex": {
|
|
1644
|
+
"context_window": 400000,
|
|
1645
|
+
"max_output_tokens": 128000,
|
|
1646
|
+
"supports_image_input": true,
|
|
1647
|
+
"supports_reasoning": true
|
|
1648
|
+
},
|
|
1649
|
+
"openai/gpt-5.2-pro": {
|
|
1650
|
+
"context_window": 400000,
|
|
1651
|
+
"max_output_tokens": 128000,
|
|
1652
|
+
"supports_image_input": true,
|
|
1653
|
+
"supports_reasoning": true
|
|
1654
|
+
},
|
|
1655
|
+
"openai/gpt-5.3-codex": {
|
|
1656
|
+
"context_window": 400000,
|
|
1657
|
+
"max_output_tokens": 128000,
|
|
1658
|
+
"supports_image_input": true,
|
|
1659
|
+
"supports_reasoning": true
|
|
1660
|
+
},
|
|
1661
|
+
"openai/gpt-5.4": {
|
|
1662
|
+
"context_window": 1050000,
|
|
1663
|
+
"max_output_tokens": 128000,
|
|
1664
|
+
"supports_image_input": true,
|
|
1665
|
+
"supports_reasoning": true
|
|
1666
|
+
},
|
|
1667
|
+
"openai/gpt-5.4-mini": {
|
|
1668
|
+
"context_window": 400000,
|
|
1669
|
+
"max_output_tokens": 128000,
|
|
1670
|
+
"supports_image_input": true,
|
|
1671
|
+
"supports_reasoning": true
|
|
1672
|
+
},
|
|
1673
|
+
"openai/gpt-5.4-nano": {
|
|
1674
|
+
"context_window": 400000,
|
|
1675
|
+
"max_output_tokens": 128000,
|
|
1676
|
+
"supports_image_input": true,
|
|
1677
|
+
"supports_reasoning": false
|
|
1678
|
+
},
|
|
1679
|
+
"openai/gpt-5.4-pro": {
|
|
1680
|
+
"context_window": 1050000,
|
|
1681
|
+
"max_output_tokens": 128000,
|
|
1682
|
+
"supports_image_input": true,
|
|
1683
|
+
"supports_reasoning": true
|
|
1684
|
+
},
|
|
1685
|
+
"openai/gpt-oss-120b": {
|
|
1686
|
+
"context_window": 131072,
|
|
1687
|
+
"max_output_tokens": 32768,
|
|
1688
|
+
"supports_image_input": false,
|
|
1689
|
+
"supports_reasoning": true
|
|
1690
|
+
},
|
|
1691
|
+
"openai/gpt-oss-120b:exacto": {
|
|
1692
|
+
"context_window": 131072,
|
|
1693
|
+
"max_output_tokens": 32768,
|
|
1694
|
+
"supports_image_input": false,
|
|
1695
|
+
"supports_reasoning": true
|
|
1696
|
+
},
|
|
1697
|
+
"openai/gpt-oss-120b:free": {
|
|
1698
|
+
"context_window": 131072,
|
|
1699
|
+
"max_output_tokens": 32768,
|
|
1700
|
+
"supports_image_input": false,
|
|
1701
|
+
"supports_reasoning": true
|
|
1702
|
+
},
|
|
1703
|
+
"openai/gpt-oss-20b": {
|
|
1704
|
+
"context_window": 131072,
|
|
1705
|
+
"max_output_tokens": 32768,
|
|
1706
|
+
"supports_image_input": false,
|
|
1707
|
+
"supports_reasoning": true
|
|
1708
|
+
},
|
|
1709
|
+
"openai/gpt-oss-20b:free": {
|
|
1710
|
+
"context_window": 131072,
|
|
1711
|
+
"max_output_tokens": 32768,
|
|
1712
|
+
"supports_image_input": false,
|
|
1713
|
+
"supports_reasoning": true
|
|
1714
|
+
},
|
|
1715
|
+
"openai/gpt-oss-safeguard-20b": {
|
|
1716
|
+
"context_window": 131072,
|
|
1717
|
+
"max_output_tokens": 65536,
|
|
1718
|
+
"supports_image_input": false,
|
|
1719
|
+
"supports_reasoning": true
|
|
1720
|
+
},
|
|
1721
|
+
"openai/o4-mini": {
|
|
1722
|
+
"context_window": 200000,
|
|
1723
|
+
"max_output_tokens": 100000,
|
|
1724
|
+
"supports_image_input": true,
|
|
1725
|
+
"supports_reasoning": true
|
|
1726
|
+
},
|
|
1727
|
+
"openrouter/free": {
|
|
1728
|
+
"context_window": 200000,
|
|
1729
|
+
"max_output_tokens": 8000,
|
|
1730
|
+
"supports_image_input": true,
|
|
1731
|
+
"supports_reasoning": true
|
|
1732
|
+
},
|
|
1733
|
+
"prime-intellect/intellect-3": {
|
|
1734
|
+
"context_window": 131072,
|
|
1735
|
+
"max_output_tokens": 8192,
|
|
1736
|
+
"supports_image_input": false,
|
|
1737
|
+
"supports_reasoning": true
|
|
1738
|
+
},
|
|
1739
|
+
"qwen/qwen-2.5-coder-32b-instruct": {
|
|
1740
|
+
"context_window": 32768,
|
|
1741
|
+
"max_output_tokens": 8192,
|
|
1742
|
+
"supports_image_input": false,
|
|
1743
|
+
"supports_reasoning": false
|
|
1744
|
+
},
|
|
1745
|
+
"qwen/qwen2.5-vl-72b-instruct": {
|
|
1746
|
+
"context_window": 32768,
|
|
1747
|
+
"max_output_tokens": 8192,
|
|
1748
|
+
"supports_image_input": true,
|
|
1749
|
+
"supports_reasoning": false
|
|
1750
|
+
},
|
|
1751
|
+
"qwen/qwen3-235b-a22b-07-25": {
|
|
1752
|
+
"context_window": 262144,
|
|
1753
|
+
"max_output_tokens": 131072,
|
|
1754
|
+
"supports_image_input": false,
|
|
1755
|
+
"supports_reasoning": false
|
|
1756
|
+
},
|
|
1757
|
+
"qwen/qwen3-235b-a22b-thinking-2507": {
|
|
1758
|
+
"context_window": 262144,
|
|
1759
|
+
"max_output_tokens": 81920,
|
|
1760
|
+
"supports_image_input": false,
|
|
1761
|
+
"supports_reasoning": true
|
|
1762
|
+
},
|
|
1763
|
+
"qwen/qwen3-30b-a3b-instruct-2507": {
|
|
1764
|
+
"context_window": 262000,
|
|
1765
|
+
"max_output_tokens": 262000,
|
|
1766
|
+
"supports_image_input": false,
|
|
1767
|
+
"supports_reasoning": false
|
|
1768
|
+
},
|
|
1769
|
+
"qwen/qwen3-30b-a3b-thinking-2507": {
|
|
1770
|
+
"context_window": 262000,
|
|
1771
|
+
"max_output_tokens": 262000,
|
|
1772
|
+
"supports_image_input": false,
|
|
1773
|
+
"supports_reasoning": true
|
|
1774
|
+
},
|
|
1775
|
+
"qwen/qwen3-4b:free": {
|
|
1776
|
+
"context_window": 40960,
|
|
1777
|
+
"max_output_tokens": 40960,
|
|
1778
|
+
"supports_image_input": false,
|
|
1779
|
+
"supports_reasoning": true
|
|
1780
|
+
},
|
|
1781
|
+
"qwen/qwen3-coder": {
|
|
1782
|
+
"context_window": 262144,
|
|
1783
|
+
"max_output_tokens": 66536,
|
|
1784
|
+
"supports_image_input": false,
|
|
1785
|
+
"supports_reasoning": false
|
|
1786
|
+
},
|
|
1787
|
+
"qwen/qwen3-coder-30b-a3b-instruct": {
|
|
1788
|
+
"context_window": 160000,
|
|
1789
|
+
"max_output_tokens": 65536,
|
|
1790
|
+
"supports_image_input": false,
|
|
1791
|
+
"supports_reasoning": false
|
|
1792
|
+
},
|
|
1793
|
+
"qwen/qwen3-coder-flash": {
|
|
1794
|
+
"context_window": 128000,
|
|
1795
|
+
"max_output_tokens": 66536,
|
|
1796
|
+
"supports_image_input": false,
|
|
1797
|
+
"supports_reasoning": false
|
|
1798
|
+
},
|
|
1799
|
+
"qwen/qwen3-coder:exacto": {
|
|
1800
|
+
"context_window": 131072,
|
|
1801
|
+
"max_output_tokens": 32768,
|
|
1802
|
+
"supports_image_input": false,
|
|
1803
|
+
"supports_reasoning": false
|
|
1804
|
+
},
|
|
1805
|
+
"qwen/qwen3-coder:free": {
|
|
1806
|
+
"context_window": 262144,
|
|
1807
|
+
"max_output_tokens": 66536,
|
|
1808
|
+
"supports_image_input": false,
|
|
1809
|
+
"supports_reasoning": false
|
|
1810
|
+
},
|
|
1811
|
+
"qwen/qwen3-max": {
|
|
1812
|
+
"context_window": 262144,
|
|
1813
|
+
"max_output_tokens": 32768,
|
|
1814
|
+
"supports_image_input": false,
|
|
1815
|
+
"supports_reasoning": true
|
|
1816
|
+
},
|
|
1817
|
+
"qwen/qwen3-next-80b-a3b-instruct": {
|
|
1818
|
+
"context_window": 262144,
|
|
1819
|
+
"max_output_tokens": 262144,
|
|
1820
|
+
"supports_image_input": false,
|
|
1821
|
+
"supports_reasoning": false
|
|
1822
|
+
},
|
|
1823
|
+
"qwen/qwen3-next-80b-a3b-instruct:free": {
|
|
1824
|
+
"context_window": 262144,
|
|
1825
|
+
"max_output_tokens": 262144,
|
|
1826
|
+
"supports_image_input": false,
|
|
1827
|
+
"supports_reasoning": false
|
|
1828
|
+
},
|
|
1829
|
+
"qwen/qwen3-next-80b-a3b-thinking": {
|
|
1830
|
+
"context_window": 262144,
|
|
1831
|
+
"max_output_tokens": 262144,
|
|
1832
|
+
"supports_image_input": false,
|
|
1833
|
+
"supports_reasoning": true
|
|
1834
|
+
},
|
|
1835
|
+
"qwen/qwen3.5-397b-a17b": {
|
|
1836
|
+
"context_window": 262144,
|
|
1837
|
+
"max_output_tokens": 65536,
|
|
1838
|
+
"supports_image_input": true,
|
|
1839
|
+
"supports_reasoning": true
|
|
1840
|
+
},
|
|
1841
|
+
"qwen/qwen3.5-plus-02-15": {
|
|
1842
|
+
"context_window": 1000000,
|
|
1843
|
+
"max_output_tokens": 65536,
|
|
1844
|
+
"supports_image_input": true,
|
|
1845
|
+
"supports_reasoning": true
|
|
1846
|
+
},
|
|
1847
|
+
"qwen/qwen3.6-plus-preview:free": {
|
|
1848
|
+
"context_window": 1000000,
|
|
1849
|
+
"max_output_tokens": 65536,
|
|
1850
|
+
"supports_image_input": false,
|
|
1851
|
+
"supports_reasoning": true
|
|
1852
|
+
},
|
|
1853
|
+
"sourceful/riverflow-v2-fast-preview": {
|
|
1854
|
+
"context_window": 8192,
|
|
1855
|
+
"max_output_tokens": 8192,
|
|
1856
|
+
"supports_image_input": true,
|
|
1857
|
+
"supports_reasoning": false
|
|
1858
|
+
},
|
|
1859
|
+
"sourceful/riverflow-v2-max-preview": {
|
|
1860
|
+
"context_window": 8192,
|
|
1861
|
+
"max_output_tokens": 8192,
|
|
1862
|
+
"supports_image_input": true,
|
|
1863
|
+
"supports_reasoning": false
|
|
1864
|
+
},
|
|
1865
|
+
"sourceful/riverflow-v2-standard-preview": {
|
|
1866
|
+
"context_window": 8192,
|
|
1867
|
+
"max_output_tokens": 8192,
|
|
1868
|
+
"supports_image_input": true,
|
|
1869
|
+
"supports_reasoning": false
|
|
1870
|
+
},
|
|
1871
|
+
"stepfun/step-3.5-flash": {
|
|
1872
|
+
"context_window": 256000,
|
|
1873
|
+
"max_output_tokens": 256000,
|
|
1874
|
+
"supports_image_input": false,
|
|
1875
|
+
"supports_reasoning": true
|
|
1876
|
+
},
|
|
1877
|
+
"stepfun/step-3.5-flash:free": {
|
|
1878
|
+
"context_window": 256000,
|
|
1879
|
+
"max_output_tokens": 256000,
|
|
1880
|
+
"supports_image_input": false,
|
|
1881
|
+
"supports_reasoning": true
|
|
1882
|
+
},
|
|
1883
|
+
"x-ai/grok-3": {
|
|
1884
|
+
"context_window": 131072,
|
|
1885
|
+
"max_output_tokens": 8192,
|
|
1886
|
+
"supports_image_input": false,
|
|
1887
|
+
"supports_reasoning": false
|
|
1888
|
+
},
|
|
1889
|
+
"x-ai/grok-3-beta": {
|
|
1890
|
+
"context_window": 131072,
|
|
1891
|
+
"max_output_tokens": 8192,
|
|
1892
|
+
"supports_image_input": false,
|
|
1893
|
+
"supports_reasoning": false
|
|
1894
|
+
},
|
|
1895
|
+
"x-ai/grok-3-mini": {
|
|
1896
|
+
"context_window": 131072,
|
|
1897
|
+
"max_output_tokens": 8192,
|
|
1898
|
+
"supports_image_input": false,
|
|
1899
|
+
"supports_reasoning": true
|
|
1900
|
+
},
|
|
1901
|
+
"x-ai/grok-3-mini-beta": {
|
|
1902
|
+
"context_window": 131072,
|
|
1903
|
+
"max_output_tokens": 8192,
|
|
1904
|
+
"supports_image_input": false,
|
|
1905
|
+
"supports_reasoning": true
|
|
1906
|
+
},
|
|
1907
|
+
"x-ai/grok-4": {
|
|
1908
|
+
"context_window": 256000,
|
|
1909
|
+
"max_output_tokens": 64000,
|
|
1910
|
+
"supports_image_input": false,
|
|
1911
|
+
"supports_reasoning": true
|
|
1912
|
+
},
|
|
1913
|
+
"x-ai/grok-4-fast": {
|
|
1914
|
+
"context_window": 2000000,
|
|
1915
|
+
"max_output_tokens": 30000,
|
|
1916
|
+
"supports_image_input": true,
|
|
1917
|
+
"supports_reasoning": true
|
|
1918
|
+
},
|
|
1919
|
+
"x-ai/grok-4.1-fast": {
|
|
1920
|
+
"context_window": 2000000,
|
|
1921
|
+
"max_output_tokens": 30000,
|
|
1922
|
+
"supports_image_input": true,
|
|
1923
|
+
"supports_reasoning": true
|
|
1924
|
+
},
|
|
1925
|
+
"x-ai/grok-4.20-beta": {
|
|
1926
|
+
"context_window": 2000000,
|
|
1927
|
+
"max_output_tokens": 30000,
|
|
1928
|
+
"supports_image_input": true,
|
|
1929
|
+
"supports_reasoning": true
|
|
1930
|
+
},
|
|
1931
|
+
"x-ai/grok-4.20-multi-agent-beta": {
|
|
1932
|
+
"context_window": 2000000,
|
|
1933
|
+
"max_output_tokens": 30000,
|
|
1934
|
+
"supports_image_input": true,
|
|
1935
|
+
"supports_reasoning": true
|
|
1936
|
+
},
|
|
1937
|
+
"x-ai/grok-code-fast-1": {
|
|
1938
|
+
"context_window": 256000,
|
|
1939
|
+
"max_output_tokens": 10000,
|
|
1940
|
+
"supports_image_input": false,
|
|
1941
|
+
"supports_reasoning": true
|
|
1942
|
+
},
|
|
1943
|
+
"xiaomi/mimo-v2-flash": {
|
|
1944
|
+
"context_window": 262144,
|
|
1945
|
+
"max_output_tokens": 65536,
|
|
1946
|
+
"supports_image_input": false,
|
|
1947
|
+
"supports_reasoning": true
|
|
1948
|
+
},
|
|
1949
|
+
"xiaomi/mimo-v2-omni": {
|
|
1950
|
+
"context_window": 262144,
|
|
1951
|
+
"max_output_tokens": 65536,
|
|
1952
|
+
"supports_image_input": true,
|
|
1953
|
+
"supports_reasoning": true
|
|
1954
|
+
},
|
|
1955
|
+
"xiaomi/mimo-v2-pro": {
|
|
1956
|
+
"context_window": 1048576,
|
|
1957
|
+
"max_output_tokens": 65536,
|
|
1958
|
+
"supports_image_input": false,
|
|
1959
|
+
"supports_reasoning": true
|
|
1960
|
+
},
|
|
1961
|
+
"z-ai/glm-4.5": {
|
|
1962
|
+
"context_window": 128000,
|
|
1963
|
+
"max_output_tokens": 96000,
|
|
1964
|
+
"supports_image_input": false,
|
|
1965
|
+
"supports_reasoning": true
|
|
1966
|
+
},
|
|
1967
|
+
"z-ai/glm-4.5-air": {
|
|
1968
|
+
"context_window": 128000,
|
|
1969
|
+
"max_output_tokens": 96000,
|
|
1970
|
+
"supports_image_input": false,
|
|
1971
|
+
"supports_reasoning": true
|
|
1972
|
+
},
|
|
1973
|
+
"z-ai/glm-4.5-air:free": {
|
|
1974
|
+
"context_window": 128000,
|
|
1975
|
+
"max_output_tokens": 96000,
|
|
1976
|
+
"supports_image_input": false,
|
|
1977
|
+
"supports_reasoning": true
|
|
1978
|
+
},
|
|
1979
|
+
"z-ai/glm-4.5v": {
|
|
1980
|
+
"context_window": 64000,
|
|
1981
|
+
"max_output_tokens": 16384,
|
|
1982
|
+
"supports_image_input": true,
|
|
1983
|
+
"supports_reasoning": true
|
|
1984
|
+
},
|
|
1985
|
+
"z-ai/glm-4.6": {
|
|
1986
|
+
"context_window": 200000,
|
|
1987
|
+
"max_output_tokens": 128000,
|
|
1988
|
+
"supports_image_input": false,
|
|
1989
|
+
"supports_reasoning": true
|
|
1990
|
+
},
|
|
1991
|
+
"z-ai/glm-4.6:exacto": {
|
|
1992
|
+
"context_window": 200000,
|
|
1993
|
+
"max_output_tokens": 128000,
|
|
1994
|
+
"supports_image_input": false,
|
|
1995
|
+
"supports_reasoning": true
|
|
1996
|
+
},
|
|
1997
|
+
"z-ai/glm-4.7": {
|
|
1998
|
+
"context_window": 204800,
|
|
1999
|
+
"max_output_tokens": 131072,
|
|
2000
|
+
"supports_image_input": false,
|
|
2001
|
+
"supports_reasoning": true
|
|
2002
|
+
},
|
|
2003
|
+
"z-ai/glm-4.7-flash": {
|
|
2004
|
+
"context_window": 200000,
|
|
2005
|
+
"max_output_tokens": 65535,
|
|
2006
|
+
"supports_image_input": false,
|
|
2007
|
+
"supports_reasoning": true
|
|
2008
|
+
},
|
|
2009
|
+
"z-ai/glm-5": {
|
|
2010
|
+
"context_window": 202752,
|
|
2011
|
+
"max_output_tokens": 131000,
|
|
2012
|
+
"supports_image_input": false,
|
|
2013
|
+
"supports_reasoning": true
|
|
2014
|
+
},
|
|
2015
|
+
"z-ai/glm-5-turbo": {
|
|
2016
|
+
"context_window": 200000,
|
|
2017
|
+
"max_output_tokens": 131072,
|
|
2018
|
+
"supports_image_input": false,
|
|
2019
|
+
"supports_reasoning": true
|
|
2020
|
+
}
|
|
2021
|
+
},
|
|
2022
|
+
"zai": {
|
|
2023
|
+
"glm-4.5": {
|
|
2024
|
+
"context_window": 131072,
|
|
2025
|
+
"max_output_tokens": 98304,
|
|
2026
|
+
"supports_image_input": false,
|
|
2027
|
+
"supports_reasoning": true
|
|
2028
|
+
},
|
|
2029
|
+
"glm-4.5-air": {
|
|
2030
|
+
"context_window": 131072,
|
|
2031
|
+
"max_output_tokens": 98304,
|
|
2032
|
+
"supports_image_input": false,
|
|
2033
|
+
"supports_reasoning": true
|
|
2034
|
+
},
|
|
2035
|
+
"glm-4.5-flash": {
|
|
2036
|
+
"context_window": 131072,
|
|
2037
|
+
"max_output_tokens": 98304,
|
|
2038
|
+
"supports_image_input": false,
|
|
2039
|
+
"supports_reasoning": true
|
|
2040
|
+
},
|
|
2041
|
+
"glm-4.5v": {
|
|
2042
|
+
"context_window": 64000,
|
|
2043
|
+
"max_output_tokens": 16384,
|
|
2044
|
+
"supports_image_input": true,
|
|
2045
|
+
"supports_reasoning": true
|
|
2046
|
+
},
|
|
2047
|
+
"glm-4.6": {
|
|
2048
|
+
"context_window": 204800,
|
|
2049
|
+
"max_output_tokens": 131072,
|
|
2050
|
+
"supports_image_input": false,
|
|
2051
|
+
"supports_reasoning": true
|
|
2052
|
+
},
|
|
2053
|
+
"glm-4.6v": {
|
|
2054
|
+
"context_window": 128000,
|
|
2055
|
+
"max_output_tokens": 32768,
|
|
2056
|
+
"supports_image_input": true,
|
|
2057
|
+
"supports_reasoning": true
|
|
2058
|
+
},
|
|
2059
|
+
"glm-4.7": {
|
|
2060
|
+
"context_window": 204800,
|
|
2061
|
+
"max_output_tokens": 131072,
|
|
2062
|
+
"supports_image_input": false,
|
|
2063
|
+
"supports_reasoning": true
|
|
2064
|
+
},
|
|
2065
|
+
"glm-4.7-flash": {
|
|
2066
|
+
"context_window": 200000,
|
|
2067
|
+
"max_output_tokens": 131072,
|
|
2068
|
+
"supports_image_input": false,
|
|
2069
|
+
"supports_reasoning": true
|
|
2070
|
+
},
|
|
2071
|
+
"glm-4.7-flashx": {
|
|
2072
|
+
"context_window": 200000,
|
|
2073
|
+
"max_output_tokens": 131072,
|
|
2074
|
+
"supports_image_input": false,
|
|
2075
|
+
"supports_reasoning": true
|
|
2076
|
+
},
|
|
2077
|
+
"glm-5": {
|
|
2078
|
+
"context_window": 204800,
|
|
2079
|
+
"max_output_tokens": 131072,
|
|
2080
|
+
"supports_image_input": false,
|
|
2081
|
+
"supports_reasoning": true
|
|
2082
|
+
},
|
|
2083
|
+
"glm-5-turbo": {
|
|
2084
|
+
"context_window": 200000,
|
|
2085
|
+
"max_output_tokens": 131072,
|
|
2086
|
+
"supports_image_input": false,
|
|
2087
|
+
"supports_reasoning": true
|
|
2088
|
+
}
|
|
2089
|
+
}
|
|
2090
|
+
}
|