From 06bf6d087ab102c75508b06e671e9801d4e8b5fe Mon Sep 17 00:00:00 2001 From: Ed Zynda Date: Sun, 7 Jun 2026 14:06:05 +0300 Subject: [PATCH] feat(models): resolve SDK default URLs for all registered providers - Add sdkDefaultBaseURL map covering the 14 npm SDKs that ship a hard-coded baseURL (groq, cerebras, mistral, xai, perplexity, togetherai, deepinfra, cohere, v0, aihubmix, venice, merge-gateway, openrouter, vercel gateway), so providers whose models.dev entry omits the api field still auto-route correctly. - Extend npmToWireProtocol so these thin OpenAI-compatible wrappers route through fantasy's openaicompat provider. - Add resolveTemplatedAPIURL to substitute ${VAR} placeholders for cloudflare-workers-ai, databricks, snowflake-cortex from the env, with friendly errors that name the missing vars. - Wire amazon-bedrock and azure-cognitive-services aliases into the existing native handlers; add createGoogleVertexProvider for the google-vertex case. - Expose kit.ResolveProviderBaseURL in the public SDK so embedders can introspect the effective endpoint before instantiating a Kit. - Refresh embedded_models.json from models.dev (5113 -> 5121 models; 139 providers unchanged). --- go.sum | 73 +++++++++ internal/models/autoroute_test.go | 28 +++- internal/models/embedded_models.json | 2 +- internal/models/modelsdb.go | 69 ++++++++- internal/models/providers.go | 29 +++- internal/models/sdk_defaults.go | 170 +++++++++++++++++++++ internal/models/sdk_defaults_test.go | 214 +++++++++++++++++++++++++++ pkg/kit/models.go | 20 +++ 8 files changed, 589 insertions(+), 16 deletions(-) create mode 100644 internal/models/sdk_defaults.go create mode 100644 internal/models/sdk_defaults_test.go diff --git a/go.sum b/go.sum index 41bf09fa..289523f3 100644 --- a/go.sum +++ b/go.sum @@ -1,3 +1,4 @@ +cel.dev/expr v0.25.2/go.mod h1:hrXvqGP6G6gyx8UAHSHJ5RGk//1Oj5nXQ2NI02Nrsg4= charm.land/bubbles/v2 v2.1.0 h1:YSnNh5cPYlYjPxRrzs5VEn3vwhtEn3jVGRBT3M7/I0g= charm.land/bubbles/v2 v2.1.0/go.mod h1:l97h4hym2hvWBVfmJDtrEHHCtkIKeTEb3TTJ4ZOB3wY= charm.land/bubbletea/v2 v2.0.7 h1:7qw2tTAVar7m7klOPBYfTB0mniv/RuexsYwMRNxSeL0= @@ -8,6 +9,7 @@ charm.land/huh/v2 v2.0.3 h1:2cJsMqEPwSywGHvdlKsJyQKPtSJLVnFKyFbsYZTlLkU= charm.land/huh/v2 v2.0.3/go.mod h1:93eEveeeqn47MwiC3tf+2atZ2l7Is88rAtmZNZ8x9Wc= charm.land/lipgloss/v2 v2.0.3 h1:yM2zJ4Cf5Y51b7RHIwioil4ApI/aypFXXVHSwlM6RzU= charm.land/lipgloss/v2 v2.0.3/go.mod h1:7myLU9iG/3xluAWzpY/fSxYYHCgoKTie7laxk6ATwXA= +charm.land/x/vcr v0.1.1/go.mod h1:eByq2gqzWvcct/8XE2XO5KznoWEBiXH56+y2gphbltM= cloud.google.com/go v0.123.0 h1:2NAUJwPR47q+E35uaJeYoNhuNEM9kM8SjgRgdeOJUSE= cloud.google.com/go v0.123.0/go.mod h1:xBoMV08QcqUGuPW65Qfm1o9Y4zKZBpGS+7bImXLTAZU= cloud.google.com/go/auth v0.20.0 h1:kXTssoVb4azsVDoUiF8KvxAqrsQcQtB53DcSgta74CA= @@ -16,6 +18,11 @@ cloud.google.com/go/auth/oauth2adapt v0.2.8 h1:keo8NaayQZ6wimpNSmW5OPc283g65QNIi cloud.google.com/go/auth/oauth2adapt v0.2.8/go.mod h1:XQ9y31RkqZCcwJWNSx2Xvric3RrU88hAYYbjDWYDL+c= cloud.google.com/go/compute/metadata v0.9.0 h1:pDUj4QMoPejqq20dK0Pg2N4yG9zIkYGdBtwLoEkH9Zs= cloud.google.com/go/compute/metadata v0.9.0/go.mod h1:E0bWwX5wTnLPedCKqk3pJmVgCBSM6qQI1yTBdEb3C10= +cloud.google.com/go/iam v1.11.0/go.mod h1:KP+nKGugNJW4LcLx1uEZcq1ok5sQHFaQehQNl4QDgV4= +cloud.google.com/go/longrunning v0.5.6/go.mod h1:vUaDrWYOMKRuhiv6JBnn49YxCPz2Ayn9GqyjaBT8/mA= +cloud.google.com/go/monitoring v1.29.0/go.mod h1:72NOVjJXHY/HBfoLT0+qlCZBT059+9VXLeAnL2PeeVM= +cloud.google.com/go/storage v1.62.1/go.mod h1:cpYz/kRVZ+UQAF1uHeea10/9ewcRbxGoGNKsS9daSXA= +cloud.google.com/go/translate v1.10.3/go.mod h1:GW0vC1qvPtd3pgtypCv4k4U8B7EdgK9/QEF2aJEUovs= github.com/Azure/azure-sdk-for-go/sdk/azcore v1.21.1 h1:jHb/wfvRikGdxMXYV3QG/SzUOPYN9KEUUuC0Yd0/vC0= github.com/Azure/azure-sdk-for-go/sdk/azcore v1.21.1/go.mod h1:pzBXCYn05zvYIrwLgtK8Ap8QcjRg+0i76tMQdWN6wOk= github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.13.1 h1:Hk5QBxZQC1jb2Fwj6mpzme37xbCDdNTxU7O9eb5+LB4= @@ -24,14 +31,20 @@ github.com/Azure/azure-sdk-for-go/sdk/internal v1.12.0 h1:fhqpLE3UEXi9lPaBRpQ6Xu github.com/Azure/azure-sdk-for-go/sdk/internal v1.12.0/go.mod h1:7dCRMLwisfRH3dBupKeNCioWYUZ4SS09Z14H+7i8ZoY= github.com/AzureAD/microsoft-authentication-library-for-go v1.6.0 h1:XRzhVemXdgvJqCH0sFfrBUTnUJSBrBf7++ypk+twtRs= github.com/AzureAD/microsoft-authentication-library-for-go v1.6.0/go.mod h1:HKpQxkWaGLJ+D/5H8QRpyQXA1eKjxkFlOMwck5+33Jk= +github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.32.0/go.mod h1:RD2SsorTmYhF6HkTmDw7KmPYQk8OBYwTkuasChwv7R4= +github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric v0.56.0/go.mod h1:hEpiGU18xf70qb3jbTcIggWAiEfX/cOIVc2OTe4OegA= +github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.56.0/go.mod h1:6ZZMQhZKDvUvkJw2rc+oDP90tMMzuU/J+5HG1ZmPOmE= github.com/MakeNowJust/heredoc v1.0.0 h1:cXCdzVdstXyiTqTvfqk9SDHpKNjxuom+DOlyEeQ4pzQ= github.com/MakeNowJust/heredoc v1.0.0/go.mod h1:mG5amYoWBHf8vpLOuehzbGGw0EHxpZZ6lCpQ4fNJ8LE= +github.com/Rhymond/go-money v1.0.15/go.mod h1:iHvCuIvitxu2JIlAlhF0g9jHqjRSr+rpdOs7Omqlupg= github.com/alecthomas/assert/v2 v2.11.0 h1:2Q9r3ki8+JYXvGsDyBXwH3LcJ+WK5D0gc5E8vS6K3D0= github.com/alecthomas/assert/v2 v2.11.0/go.mod h1:Bze95FyfUr7x34QZrjL+XP+0qgp/zg8yS+TtBj1WA3k= github.com/alecthomas/chroma/v2 v2.26.1 h1:2X21EdxGZNv5GF9mG5u+uzc02GCFyGxbcBm3Grd9A78= github.com/alecthomas/chroma/v2 v2.26.1/go.mod h1:lxhRRa9H4hPmRLOOdYga4zkQIQjq3dtrrdwQeCfu78Y= github.com/alecthomas/repr v0.5.2 h1:SU73FTI9D1P5UNtvseffFSGmdNci/O6RsqzeXJtP0Qs= github.com/alecthomas/repr v0.5.2/go.mod h1:Fr0507jx4eOXV7AlPV6AVZLYrLIuIeSOWtW57eE/O/4= +github.com/ardanlabs/jinja v1.2.0/go.mod h1:aXXzlJfjA+T3XNKA/YT5ZtDq2VJxt5a5siZ8cl9B35Q= +github.com/ardanlabs/kronk v1.25.2/go.mod h1:b5Gg4jDqvHDklkeHNB8+7treZRxUiCFsV65zphrTloY= github.com/atotto/clipboard v0.1.4 h1:EH0zSVneZPSuFR11BlR9YppQTVDbh5+16AmcJi4g1z4= github.com/atotto/clipboard v0.1.4/go.mod h1:ZY9tmq7sm5xIbd9bOK4onWV4S6X0u6GY7Vn0Yu86PYI= github.com/aws/aws-sdk-go-v2 v1.41.8 h1:sRs7nG6/RiEBZ/K5UO2sNw0w40U02Nmz1VtARloTZXk= @@ -48,12 +61,16 @@ github.com/aws/aws-sdk-go-v2/internal/configsources v1.4.24 h1:u6kJU2i0va1AgtJsH github.com/aws/aws-sdk-go-v2/internal/configsources v1.4.24/go.mod h1:7GY+xLcXOFUpCkNwDReft9qOAVg54A4/AnjHIU7sSAY= github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.7.24 h1:Xhbcf3KugX6vX7SDyUK205Oicyfg7EGuvoVNyP5L6DM= github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.7.24/go.mod h1:rwDgb2HNOGZsnTHylOUedM7Vnl+bCfnXDqUNPsFWYfk= +github.com/aws/aws-sdk-go-v2/internal/ini v1.8.0/go.mod h1:8tu/lYfQfFe6IGnaOdrpVgEL2IrrDOf6/m9RQum4NkY= github.com/aws/aws-sdk-go-v2/internal/v4a v1.4.25 h1:54CTMmlJ71Rk2dYvM9qZOob+39wjlVja2zDLxCu69Ew= github.com/aws/aws-sdk-go-v2/internal/v4a v1.4.25/go.mod h1:BZaHqxsS9vN1fvV5EfEl0OBLOk5+AajWsMu6MjqnZB4= github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.13.9 h1:FLudkZLt5ci0ozzgkVo8BJGwvqNaZbTWb3UcucAateA= github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.13.9/go.mod h1:w7wZ/s9qK7c8g4al+UyoF1Sp/Z45UwMGcqIzLWVQHWk= +github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.9.15/go.mod h1:e3IzZvQ3kAWNykvE0Tr0RDZCMFInMvhku3qNpcIQXhM= github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.13.24 h1:CQW2FTrflfoslYWLf3fv7vG28Q219+v8YJS5QTQb2+Y= github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.13.24/go.mod h1:Xfx13T+u3nH6EEzgl9fBSO6nDRmze1FvnZNYkctQ2zw= +github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.19.23/go.mod h1:M8l3mwgx5ToK7wot2sBBce/ojzgnPzZXUV445gTSyE8= +github.com/aws/aws-sdk-go-v2/service/s3 v1.101.0/go.mod h1:L2dcoOgS2VSgbPLvpak2NyUPsO1TBN7M45Z4H7DlRc4= github.com/aws/aws-sdk-go-v2/service/signin v1.1.0 h1:yQo3eZ5qFaL1sJWqs1nL6j3yPHA2/R7c6tQ4T+0IO10= github.com/aws/aws-sdk-go-v2/service/signin v1.1.0/go.mod h1:3Zzou41Qt/ueXfIzHvTEjDNuR5IjCUBVF01SNhrt1e8= github.com/aws/aws-sdk-go-v2/service/sso v1.30.18 h1:ApLTFdAZfDhZSiY5uskwECKHkSNNF83y2Ru2r7SezWA= @@ -68,8 +85,14 @@ github.com/aymanbagabas/go-osc52/v2 v2.0.1 h1:HwpRHbFMcZLEVr42D4p7XBqjyuxQH5SMiE github.com/aymanbagabas/go-osc52/v2 v2.0.1/go.mod h1:uYgXzlJ7ZpABp8OJ+exZzJJhRNQ2ASbcXHWsFqH8hp8= github.com/aymanbagabas/go-udiff v0.4.1 h1:OEIrQ8maEeDBXQDoGCbbTTXYJMYRCRO1fnodZ12Gv5o= github.com/aymanbagabas/go-udiff v0.4.1/go.mod h1:0L9PGwj20lrtmEMeyw4WKJ/TMyDtvAoK9bf2u/mNo3w= +github.com/bahlo/generic-list-go v0.2.0/go.mod h1:2KvAjgMlE5NNynlg/5iLrrCCZ2+5xWbdbCW3pNTGyYg= +github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= +github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d/go.mod h1:6QX/PXZ00z/TKoufEY6K/a0k6AhaJrQKdFe6OfVXsa4= +github.com/bits-and-blooms/bitset v1.24.4/go.mod h1:7hO7Gc7Pp1vODcmWvKMRA9BNmbv6a/7QIWpPxHddWR8= +github.com/buger/jsonparser v1.1.1/go.mod h1:6RYKKt7H4d4+iWqouImQ9R2FZql3VbhNgx27UK13J/0= github.com/catppuccin/go v0.3.0 h1:d+0/YicIq+hSTo5oPuRi5kOpqkVA5tAsU6dNhvRu+aY= github.com/catppuccin/go v0.3.0/go.mod h1:8IHJuMGaUUjQM82qBrGNBv7LFq6JI3NnQCF6MOlZjpc= +github.com/cenkalti/backoff/v5 v5.0.3/go.mod h1:rkhZdG3JZukswDf7f0cwqPNk4K0sa+F97BxZthm/crw= github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/charmbracelet/anthropic-sdk-go v0.0.0-20260223140439-63879b0b8dab h1:J7XQLgl9sefgTnTGrmX3xqvp5o6MCiBzEjGv5igAlc4= @@ -120,6 +143,7 @@ github.com/charmbracelet/x/xpty v0.1.3 h1:eGSitii4suhzrISYH50ZfufV3v085BXQwIytcO github.com/charmbracelet/x/xpty v0.1.3/go.mod h1:poPYpWuLDBFCKmKLDnhBp51ATa0ooD8FhypRwEFtH3Y= github.com/clipperhouse/displaywidth v0.11.0 h1:lBc6kY44VFw+TDx4I8opi/EtL9m20WSEFgwIwO+UVM8= github.com/clipperhouse/displaywidth v0.11.0/go.mod h1:bkrFNkf81G8HyVqmKGxsPufD3JhNl3dSqnGhOoSD/o0= +github.com/clipperhouse/stringish v0.1.1/go.mod h1:v/WhFtE1q0ovMta2+m+UbpZ+2/HEXNWYXQgCt4hdOzA= github.com/clipperhouse/uax29/v2 v2.7.0 h1:+gs4oBZ2gPfVrKPthwbMzWZDaAFPGYK72F0NJv2v7Vk= github.com/clipperhouse/uax29/v2 v2.7.0/go.mod h1:EFJ2TJMRUaplDxHKj1qAEhCtQPW2tJSwu5BF98AuoVM= github.com/cncf/xds/go v0.0.0-20260202195803-dba9d589def2 h1:aBangftG7EVZoUb69Os8IaYg++6uMOdKK83QtkkvJik= @@ -137,11 +161,16 @@ github.com/dlclark/regexp2/v2 v2.1.1 h1:LCUGyd9Wf+r+VVOl8Ny38JTpWJcAsdVnCIuhhtth github.com/dlclark/regexp2/v2 v2.1.1/go.mod h1:avUrQvPaLz2DrFNHJF0taWAFFX2C1GMSSoeiqFjcBmU= github.com/dnaeon/go-vcr v1.2.0 h1:zHCHvJYTMh1N7xnV7zf1m1GPBF9Ad0Jk/whtQ1663qI= github.com/dnaeon/go-vcr v1.2.0/go.mod h1:R4UdLID7HZT3taECzJs4YgbbH6PIGXB6W/sc5OLb6RQ= +github.com/dromara/carbon/v2 v2.6.16/go.mod h1:NGo3reeV5vhWCYWcSqbJRZm46MEwyfYI5EJRdVFoLJo= github.com/dustin/go-humanize v1.0.1 h1:GzkhY7T5VNhEkwH0PVJgjz+fX1rhBrR7pRT3mDkpeCY= github.com/dustin/go-humanize v1.0.1/go.mod h1:Mu1zIs6XwVuF/gI1OepvI0qD18qycQx+mFykh5fBlto= +github.com/ebitengine/purego v0.10.0/go.mod h1:iIjxzd6CiRiOG0UyXP+V1+jWqUXVjPKLAI0mRfJZTmQ= +github.com/eliben/go-sentencepiece v0.6.0/go.mod h1:nNYk4aMzgBoI6QFp4LUG8Eu1uO9fHD9L5ZEre93o9+c= github.com/envoyproxy/go-control-plane v0.14.0 h1:hbG2kr4RuFj222B6+7T83thSPqLjwBIfQawTkC++2HA= +github.com/envoyproxy/go-control-plane v0.14.0/go.mod h1:NcS5X47pLl/hfqxU70yPwL9ZMkUlwlKxtAohpi2wBEU= github.com/envoyproxy/go-control-plane/envoy v1.37.0 h1:u3riX6BoYRfF4Dr7dwSOroNfdSbEPe9Yyl09/B6wBrQ= github.com/envoyproxy/go-control-plane/envoy v1.37.0/go.mod h1:DReE9MMrmecPy+YvQOAOHNYMALuowAnbjjEMkkWOi6A= +github.com/envoyproxy/go-control-plane/ratelimit v0.1.0/go.mod h1:Wk+tMFAFbCXaJPzVVHnPgRKdUdwW/KdbRt94AzgRee4= github.com/envoyproxy/protoc-gen-validate v1.3.3 h1:MVQghNeW+LZcmXe7SY1V36Z+WFMDjpqGAGacLe2T0ds= github.com/envoyproxy/protoc-gen-validate v1.3.3/go.mod h1:TsndJ/ngyIdQRhMcVVGDDHINPLWB7C82oDArY51KfB0= github.com/felixge/httpsnoop v1.0.4 h1:NFTV2Zj1bL4mc9sqWACXbQFVBBg2W3GPvqp8/ESS2Wg= @@ -150,6 +179,7 @@ github.com/frankban/quicktest v1.14.6 h1:7Xjx+VpznH+oBnejlPUj8oUpdxnVs4f8XU8WnHk github.com/frankban/quicktest v1.14.6/go.mod h1:4ptaffx2x8+WTWXmUCuVU6aPUX1/Mz7zb5vbUoiM6w0= github.com/fsnotify/fsnotify v1.10.1 h1:b0/UzAf9yR5rhf3RPm9gf3ehBPpf0oZKIjtpKrx59Ho= github.com/fsnotify/fsnotify v1.10.1/go.mod h1:TLheqan6HD6GBK6PrDWyDPBaEV8LspOxvPSjC+bVfgo= +github.com/go-jose/go-jose/v4 v4.1.4/go.mod h1:x4oUasVrzR7071A4TnHLGSPpNOm2a21K9Kf04k1rs08= github.com/go-json-experiment/json v0.0.0-20260520185125-572e7c383686 h1:NZBJxCpbHS1gzS6xAmyxbJznosZIIPk9IB42v62UvKA= github.com/go-json-experiment/json v0.0.0-20260520185125-572e7c383686/go.mod h1:tphK2c80bpPhMOI4v6bIc2xWywPfbqi1Z06+RcrMkDg= github.com/go-logfmt/logfmt v0.6.1 h1:4hvbpePJKnIzH1B+8OR/JPbTx37NktoI9LE2QZBBkvE= @@ -165,12 +195,17 @@ github.com/goccy/go-yaml v1.19.2 h1:PmFC1S6h8ljIz6gMRBopkjP1TVT7xuwrButHID66PoM= github.com/goccy/go-yaml v1.19.2/go.mod h1:XBurs7gK8ATbW4ZPGKgcbrY1Br56PdM69F7LkFRi1kA= github.com/golang-jwt/jwt/v5 v5.3.0 h1:pv4AsKCKKZuqlgs5sUmn4x8UlGa0kEVt/puTpKx9vvo= github.com/golang-jwt/jwt/v5 v5.3.0/go.mod h1:fxCRLWMO43lRc8nhHWY6LGqRcf+1gQWArsqaEUEa5bE= +github.com/golang/glog v1.2.5/go.mod h1:6AhwSGph0fcJtXVM/PEHPqZlFeoLxhs7/t5UDAwmO+w= +github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/protobuf v1.5.4 h1:i7eJL8qZTpSEXOPTxNKhASYpMn+8e5Q6AdndVa1dWek= github.com/golang/protobuf v1.5.4/go.mod h1:lnTiLA8Wa4RWRcIUkrtSVa5nRhsEGBg48fD6rSs7xps= +github.com/golang/snappy v0.0.4/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= github.com/google/go-cmp v0.7.0 h1:wk8382ETsv4JYUZwIsn6YpYiWiBsYLSJiTsyBybVuN8= github.com/google/go-cmp v0.7.0/go.mod h1:pXiqmnSA92OHEEa9HXL2W4E7lf9JzCmGVUdgjX3N/iU= +github.com/google/go-pkcs11 v0.3.0/go.mod h1:6eQoGcuNJpa7jnd5pMGdkSaQpNDYvPlXWMcjXXThLlY= github.com/google/jsonschema-go v0.4.3 h1:/DBOLZTfDow7pe2GmaJNhltueGTtDKICi8V8p+DQPd0= github.com/google/jsonschema-go v0.4.3/go.mod h1:r5quNTdLOYEz95Ru18zA0ydNbBuYoo9tgaYcxEYhJVE= +github.com/google/martian/v3 v3.3.3/go.mod h1:iEPrYcgCF7jA9OtScMFQyAlZZ4YXTKEtJ1E6RWzmBA0= github.com/google/s2a-go v0.1.9 h1:LGD7gtMgezd8a/Xak7mEWL0PjoTQFvpRudN895yqKW0= github.com/google/s2a-go v0.1.9/go.mod h1:YA0Ei2ZQL3acow2O62kdp9UlnvMmU7kA6Eutn0dXayM= github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0= @@ -181,14 +216,23 @@ github.com/googleapis/gax-go/v2 v2.22.0 h1:PjIWBpgGIVKGoCXuiCoP64altEJCj3/Ei+kSU github.com/googleapis/gax-go/v2 v2.22.0/go.mod h1:irWBbALSr0Sk3qlqb9SyJ1h68WjgeFuiOzI4Rqw5+aY= github.com/gorilla/websocket v1.5.3 h1:saDtZ6Pbx/0u+bgYQ3q96pZgCzfhKXGPqt7kZ72aNNg= github.com/gorilla/websocket v1.5.3/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE= +github.com/grpc-ecosystem/grpc-gateway/v2 v2.29.0/go.mod h1:Hyl3n6Twe1hvtd9XUXDec4pTvgMSEixRuQKPTMH2bNs= +github.com/hashicorp/aws-sdk-go-base/v2 v2.0.0-beta.72/go.mod h1:Vn+BBgKQHVQYdVQ4NZDICE1Brb+JfaONyDHr3q07oQc= +github.com/hashicorp/go-cleanhttp v0.5.2/go.mod h1:kO/YDlP8L1346E6Sodw+PrpBSV4/SoxCXGY6BqNFT48= +github.com/hashicorp/go-getter v1.8.6/go.mod h1:nVH12eOV2P58dIiL3rsU6Fh3wLeJEKBOJzhMmzlSWoo= +github.com/hashicorp/go-version v1.9.0/go.mod h1:fltr4n8CU8Ke44wwGCBoEymUuxUHl09ZGVZPK5anwXA= github.com/hexops/gotextdiff v1.0.3 h1:gitA9+qJrrTCsiCl7+kh75nPqQt1cx4ZkudSTLoUqJM= github.com/hexops/gotextdiff v1.0.3/go.mod h1:pSWU5MAI3yDq+fZBTazCSJysOMbxWL1BSow5/V2vxeg= +github.com/hybridgroup/yzma v1.13.0/go.mod h1:zrzMgv/KVQz23+s6l16b+vJ+9uJVBdWtGcGkwRTMeiQ= github.com/inconshreveable/mousetrap v1.1.0 h1:wN+x4NVGpMsO7ErUn/mUI3vEoE6Jt13X2s0bqwp9tc8= github.com/inconshreveable/mousetrap v1.1.0/go.mod h1:vpF70FUmC8bwa3OWnCshd2FqLfsEA9PFc4w1p2J65bw= github.com/indaco/herald v0.13.0 h1:+xVG9Fx5NpuWhwku/9IlRL6I009NnX4VUGKvlZHTRxU= github.com/indaco/herald v0.13.0/go.mod h1:T5g1+XLYvpjouhzAGHnAHDCKizhESkoV6+QPZ3DhgWA= github.com/indaco/herald-md v0.3.0 h1:hN1cKyrexPPM9PeHBsKuaWvIizSi/iYvM9yzRgtdb8M= github.com/indaco/herald-md v0.3.0/go.mod h1:RUHVaDSG45ymJjKyxpDwBocLXrZo93FB4OeYMsw9B9s= +github.com/invopop/jsonschema v0.13.0/go.mod h1:ffZ5Km5SWWRAIN6wbDXItl95euhFz2uON45H2qjYt+0= +github.com/joho/godotenv v1.5.1/go.mod h1:f4LDr5Voq0i2e/R5DDNOoa2zzDfwtkZa6DnEwAbqwq4= +github.com/jupiterrider/ffi v0.7.0/go.mod h1:9dauhpOfNqrqk28fxuu0kkdeFtT9Qr4vbfigiuIXN7c= github.com/kaptinlin/go-i18n v0.4.5 h1:9tIlo5A0RXth+yZJO2MG7Bhpu/X9PlzQnGz/qyYWNoY= github.com/kaptinlin/go-i18n v0.4.5/go.mod h1:mU/7BH4molY5lGZYBwBRKAaiJ70dWRHuqmQ0/pFLGno= github.com/kaptinlin/jsonpointer v0.4.25 h1:iJ197e8n+WwqaqBsa53FqG3rPJCg5oijyFXEXNWWC3E= @@ -197,6 +241,7 @@ github.com/kaptinlin/jsonschema v0.7.13 h1:kahVXTy/rURL0XJjyQ9WELm59wEmXi6IY0TWs github.com/kaptinlin/jsonschema v0.7.13/go.mod h1:Uh0aUBusnhXDCEXJ2oimL/hx7YTo7F+sKniE+tM0ERc= github.com/kaptinlin/messageformat-go v0.6.0 h1:D6jiXFsKW4/JG2CMddv/F6Rev9KVbCRKEzzV5QOAcpc= github.com/kaptinlin/messageformat-go v0.6.0/go.mod h1:NKjwS6e9u7DRhAK+vydjDDwJ7UbdHhYjk/yk2WPuZPs= +github.com/klauspost/compress v1.18.6/go.mod h1:cwPg85FWrGar70rWktvGQj8/hthj3wpl0PGDogxkrSQ= github.com/kr/pretty v0.3.1 h1:flRD4NNwYAUpkphVc1HcthR4KEIFJ65n8Mw5qdRn3LE= github.com/kr/pretty v0.3.1/go.mod h1:hoEshYVHaxMs3cyo3Yncou5ZscifuDolrwPKZanG3xk= github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= @@ -205,12 +250,14 @@ github.com/kylelemons/godebug v1.1.0 h1:RPNrshWIDI6G2gRW9EHilWtl7Z6Sb1BR0xunSBf0 github.com/kylelemons/godebug v1.1.0/go.mod h1:9/0rRGxNHcop5bhtWyNeEfOS8JIWk580+fNqagV/RAw= github.com/lucasb-eyer/go-colorful v1.4.0 h1:UtrWVfLdarDgc44HcS7pYloGHJUjHV/4FwW4TvVgFr4= github.com/lucasb-eyer/go-colorful v1.4.0/go.mod h1:R4dSotOR9KMtayYi1e77YzuveK+i7ruzyGqttikkLy0= +github.com/mailru/easyjson v0.7.7/go.mod h1:xzfreul335JAWq5oZzymOObrkdz5UnU4kGfJJLY9Nlc= github.com/mark3labs/mcp-go v0.54.1 h1:Ap/ptEB9FtWzFKM8NDsTA7QDxerQOC06eZigrTldVj0= github.com/mark3labs/mcp-go v0.54.1/go.mod h1:+8WclSK1ZUweCP3hvktSji8n8ABG/95QaEkeVE/Uwas= github.com/mattn/go-isatty v0.0.22 h1:j8l17JJ9i6VGPUFUYoTUKPSgKe/83EYU2zBC7YNKMw4= github.com/mattn/go-isatty v0.0.22/go.mod h1:ZXfXG4SQHsB/w3ZeOYbR0PrPwLy+n6xiMrJlRFqopa4= github.com/mattn/go-runewidth v0.0.24 h1:cpokDiIn0MGnhdHwuWnJBITySJ20QyNGnY2kR/ay2DU= github.com/mattn/go-runewidth v0.0.24/go.mod h1:XBkDxAl56ILZc9knddidhrOlY5R/pDhgLpndooCuJAs= +github.com/mitchellh/go-homedir v1.1.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0= github.com/mitchellh/hashstructure/v2 v2.0.2 h1:vGKWl0YJqUNxE8d+h8f6NJLcCJrgbhC4NcD46KavDd4= github.com/mitchellh/hashstructure/v2 v2.0.2/go.mod h1:MG3aRVU/N29oo/V/IhBX8GR/zz4kQkprJgF2EVszyDE= github.com/muesli/cancelreader v0.2.2 h1:3I4Kt4BQjOR54NavqnDogx/MIoWBFa0StPA8ELUXHmA= @@ -225,6 +272,7 @@ github.com/muesli/roff v0.1.0 h1:YD0lalCotmYuF5HhZliKWlIx7IEhiXeSfq7hNjFqGF8= github.com/muesli/roff v0.1.0/go.mod h1:pjAHQM9hdUUwm/krAfrLGgJkXJ+YuhtsfZ42kieB2Ig= github.com/muesli/termenv v0.16.0 h1:S5AlUN9dENB57rsbnkPyfdGuWIlkmzJjbFf0Tf5FWUc= github.com/muesli/termenv v0.16.0/go.mod h1:ZRfOIKPFDYQoDFF4Olj7/QJbW60Ol/kL1pU3VfY/Cnk= +github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822/go.mod h1:+n7T8mK8HuQTcFwEeznm/DIxMOiR9yIdICNftLE1DvQ= github.com/pelletier/go-toml/v2 v2.3.1 h1:MYEvvGnQjeNkRF1qUuGolNtNExTDwct51yp7olPtrEc= github.com/pelletier/go-toml/v2 v2.3.1/go.mod h1:2gIqNv+qfxSVS7cM2xJQKtLSTLUE9V8t9Stt+h56mCY= github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c h1:+mdjkGKdHQG3305AYmdv1U2eRNDiU2ErMBj1gwrq8eQ= @@ -233,6 +281,10 @@ github.com/planetscale/vtprotobuf v0.6.1-0.20240319094008-0393e58bdf10 h1:GFCKgm github.com/planetscale/vtprotobuf v0.6.1-0.20240319094008-0393e58bdf10/go.mod h1:t/avpk3KcrXxUnYOhZhMXJlSEyie6gQbtLq5NM3loB8= github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 h1:Jamvg5psRIccs7FGNTlIRMkT8wgtp5eCXdBlqhYGL6U= github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= +github.com/prometheus/client_golang v1.23.2/go.mod h1:Tb1a6LWHB3/SPIzCoaDXI4I8UHKeFTEQ1YCr+0Gyqmg= +github.com/prometheus/client_model v0.6.2/go.mod h1:y3m2F6Gdpfy6Ut/GBsUqTWZqCUvMVzSfMLjcu6wAwpE= +github.com/prometheus/common v0.67.5/go.mod h1:SjE/0MzDEEAyrdr5Gqc6G+sXI67maCxzaT3A2+HqjUw= +github.com/prometheus/procfs v0.20.1/go.mod h1:o9EMBZGRyvDrSPH1RqdxhojkuXstoe4UlK79eF5TGGo= github.com/rivo/uniseg v0.4.7 h1:WUdvkW8uEhrYfLC4ZzdpI2ztxP1I582+49Oc5Mq64VQ= github.com/rivo/uniseg v0.4.7/go.mod h1:FN3SvrM+Zdj16jyLfmOkMNblXMcoc8DfTHruCPUcx88= github.com/rogpeppe/go-internal v1.14.1 h1:UQB4HGPB6osV0SQTLymcB4TgvyWu6ZyliaW0tI/otEQ= @@ -240,8 +292,10 @@ github.com/rogpeppe/go-internal v1.14.1/go.mod h1:MaRKkUm5W0goXpeCfT7UZI6fk/L7L7 github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= github.com/sagikazarmark/locafero v0.12.0 h1:/NQhBAkUb4+fH1jivKHWusDYFjMOOKU88eegjfxfHb4= github.com/sagikazarmark/locafero v0.12.0/go.mod h1:sZh36u/YSZ918v0Io+U9ogLYQJ9tLLBmM4eneO6WwsI= +github.com/sahilm/fuzzy v0.1.1/go.mod h1:VFvziUEIMCrT6A6tw2RFIXPXXmzXbOsSHF0DOI8ZK9Y= github.com/santhosh-tekuri/jsonschema/v6 v6.0.2 h1:KRzFb2m7YtdldCEkzs6KqmJw4nqEVZGK7IN2kJkjTuQ= github.com/santhosh-tekuri/jsonschema/v6 v6.0.2/go.mod h1:JXeL+ps8p7/KNMjDQk3TCwPpBy0wYklyWTfbkIzdIFU= +github.com/sourcegraph/conc v0.3.1-0.20240121214520-5f936abd7ae8/go.mod h1:3n1Cwaq1E1/1lhQhtRK2ts/ZwZEhjcQeJQ1RuC6Q/8U= github.com/spf13/afero v1.15.0 h1:b/YBCLWAJdFWJTN9cLhiXXcD7mzKn9Dm86dNnfyQw1I= github.com/spf13/afero v1.15.0/go.mod h1:NC2ByUVxtQs4b3sIUphxK0NioZnmxgyCrfzeuq8lxMg= github.com/spf13/cast v1.10.0 h1:h2x0u2shc1QuLHfxi+cTJvs30+ZAHOGRic8uyGTDWxY= @@ -253,6 +307,7 @@ github.com/spf13/pflag v1.0.10 h1:4EBh2KAYBwaONj6b2Ye1GiHfwjqyROoF4RwYO+vPwFk= github.com/spf13/pflag v1.0.10/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg= github.com/spf13/viper v1.21.0 h1:x5S+0EU27Lbphp4UKm1C+1oQO+rKx36vfCoaVebLFSU= github.com/spf13/viper v1.21.0/go.mod h1:P0lhsswPGWD/1lZJ9ny3fYnVqxiegrlNrEmgLjbTCAY= +github.com/spiffe/go-spiffe/v2 v2.6.0/go.mod h1:gm2SeUoMZEtpnzPNs2Csc0D/gX33k1xIx7lEzqblHEs= github.com/stretchr/testify v1.11.1 h1:7s2iGBzp5EwR7/aIZr8ao5+dra3wiQyKjjFuvgVKu7U= github.com/stretchr/testify v1.11.1/go.mod h1:wZwfW3scLgRK+23gO65QZefKpKQRnfz6sD981Nm4B6U= github.com/subosito/gotenv v1.6.0 h1:9NlTDc1FTs4qu0DDq7AEtTPNw6SVm7uBMsUCUjABIf8= @@ -270,20 +325,27 @@ github.com/tidwall/sjson v1.2.5 h1:kLy8mja+1c9jlljvWTlSazM7cKDRfJuR/bOJhcY5NcY= github.com/tidwall/sjson v1.2.5/go.mod h1:Fvgq9kS/6ociJEDnK0Fk1cpYF4FIW6ZF7LAe+6jwd28= github.com/traefik/yaegi v0.16.1 h1:f1De3DVJqIDKmnasUF6MwmWv1dSEEat0wcpXhD2On3E= github.com/traefik/yaegi v0.16.1/go.mod h1:4eVhbPb3LnD2VigQjhYbEJ69vDRFdT2HQNrXx8eEwUY= +github.com/ulikunitz/xz v0.5.15/go.mod h1:nbz6k7qbPmH4IRqmfOplQw/tblSgqTqBwxkY0oWt/14= +github.com/wk8/go-ordered-map/v2 v2.1.8/go.mod h1:5nJHM5DyteebpVlHnWMV0rPz6Zp7+xBAnxjb1X5vnTw= github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e h1:JVG44RsyaB9T2KIHavMF/ppJZNG9ZpyihvCd0w101no= github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e/go.mod h1:RbqR21r5mrJuqunuUZ/Dhy/avygyECGrLceyNeo4LiM= github.com/yosida95/uritemplate/v3 v3.0.2 h1:Ed3Oyj9yrmi9087+NczuL5BwkIc4wvTb5zIM+UJPGz4= github.com/yosida95/uritemplate/v3 v3.0.2/go.mod h1:ILOh0sOhIJR3+L/8afwt/kE++YT040gmv5BQTMR2HP4= github.com/yuin/goldmark v1.8.2 h1:kEGpgqJXdgbkhcOgBxkC0X0PmoPG1ZyoZ117rDVp4zE= github.com/yuin/goldmark v1.8.2/go.mod h1:ip/1k0VRfGynBgxOz0yCqHrbZXhcjxyuS66Brc7iBKg= +github.com/zeebo/errs v1.4.0/go.mod h1:sgbWHsvVuTPHcqJJGQ1WhI5KbWlHYz+2+2C/LSEtCw4= +go.opencensus.io v0.24.0/go.mod h1:vNK8G9p7aAivkbmorf4v+7Hgx+Zs0yY+0fOtgBfjQKo= go.opentelemetry.io/auto/sdk v1.2.1 h1:jXsnJ4Lmnqd11kwkBV2LgLoFMZKizbCi5fNZ/ipaZ64= go.opentelemetry.io/auto/sdk v1.2.1/go.mod h1:KRTj+aOaElaLi+wW1kO/DZRXwkF4C5xPbEe3ZiIhN7Y= +go.opentelemetry.io/contrib/detectors/gcp v1.43.0/go.mod h1:RyaZMFY7yi1kAs45S6mbFGz8O8rqB0dTY14uzvG4LCs= go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.69.0 h1:2yEATaop1/a1I4psnSLgWVPLWwCzkqWakgJy7xTDVy0= go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.69.0/go.mod h1:D7J12YRapIekYyPWgGPlA/23pRmpSEZC5xJC/TTLI9U= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.69.0 h1:8tvICD4vSTOOsNrsI4Ljf6C+6UKvpTEH5XY3JMoyPoo= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.69.0/go.mod h1:z9+yiacE0IHRqM4qFfkbt/JYlmYXgss8GY/jXoNuPJI= go.opentelemetry.io/otel v1.44.0 h1:JjwHmHpA4iZ3wBxluu2fbbE7j4kqlE8jXyAyPXH7HqU= go.opentelemetry.io/otel v1.44.0/go.mod h1:BMgjTHL9WPRlRjL2oZCBTL4whCGtXch2H4BhOPIAyYc= +go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.43.0/go.mod h1:Vl1/iaggsuRlrHf/hfPJPvVag77kKyvrLeD10kpMl+A= +go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.43.0/go.mod h1:AGmbycVGEsRx9mXMZ75CsOyhSP6MFIcj/6dnG+vhVjk= go.opentelemetry.io/otel/metric v1.44.0 h1:1w0gILTcHdr3YI+ixLyjemwrVnsMURbTZFrSYCdDdmc= go.opentelemetry.io/otel/metric v1.44.0/go.mod h1:8O7hanEPBNgEMmybD3s2VBKcgWOCsA6tzHBPODAiquo= go.opentelemetry.io/otel/sdk v1.44.0 h1:nHYwb9lK+fJPU/dnT6s7W7Z8itMWyqrnVfbheVYrZ58= @@ -292,14 +354,18 @@ go.opentelemetry.io/otel/sdk/metric v1.44.0 h1:3LlKgI+VjbVsjNRFZJZAJ30WjXC5VkNRk go.opentelemetry.io/otel/sdk/metric v1.44.0/go.mod h1:5B5pMARnXxKhltooO4xUuCBorl65a4EpnTalObqOigA= go.opentelemetry.io/otel/trace v1.44.0 h1:jxF5CsGYCe74MCRx2X4g7WsY/VBKRqqpNvXlX/6gtIk= go.opentelemetry.io/otel/trace v1.44.0/go.mod h1:oLl1jrMQAVo6v3GAggN+1VH9VIz9iUSvW53sW1Q8PIE= +go.opentelemetry.io/proto/otlp v1.10.0/go.mod h1:/CV4QoCR/S9yaPj8utp3lvQPoqMtxXdzn7ozvvozVqk= +go.yaml.in/yaml/v2 v2.4.4/go.mod h1:gMZqIpDtDqOfM0uNfy0SkpRhvUryYH0Z6wdMYcacYXQ= go.yaml.in/yaml/v3 v3.0.4 h1:tfq32ie2Jv2UxXFdLJdh3jXuOzWiL1fo0bu/FbuKpbc= go.yaml.in/yaml/v3 v3.0.4/go.mod h1:DhzuOOF2ATzADvBadXxruRBLzYTpT36CKvDb3+aBEFg= +go.yaml.in/yaml/v4 v4.0.0-rc.3/go.mod h1:aZqd9kCMsGL7AuUv/m/PvWLdg5sjJsZ4oHDEnfPPfY0= golang.org/x/crypto v0.52.0 h1:RMs7fP2rXdep0CftQlK8Uf+kibLm7qkCcradZWYz988= golang.org/x/crypto v0.52.0/go.mod h1:1QgfPxDqh0T2M/elOJtp9RvuR95kVjir0e6/BvEmGbc= golang.org/x/exp v0.0.0-20260603202125-055de637280b h1:v1uXiEBHo8QA0LiGCo7UgHMzHT4Kdfpl2zmtH5vaP1Q= golang.org/x/exp v0.0.0-20260603202125-055de637280b/go.mod h1:d2fgXJLVs4dYDHUk5lwMIfzRzSrWCfGZb0ZqeLa/Vcw= golang.org/x/image v0.41.0 h1:8wS72eGJMJaBxK6okTzd4WaXumUlTVlb753MlsSvTCo= golang.org/x/image v0.41.0/go.mod h1:uIc348UZMSvS5Z65CVZ7iDPaNobNFEPeJ4kbqTOszmA= +golang.org/x/mod v0.36.0/go.mod h1:moc6ELqsWcOw5Ef3xVprK5ul/MvtVvkIXLziUOICjUQ= golang.org/x/net v0.55.0 h1:bcvxaJn3e1U6InsFWt1JUq1aSjnRxLzT2rtD2KfkDF8= golang.org/x/net v0.55.0/go.mod h1:L5U2KuzuOe1lY7Z+aWVIKK6qEeJXnXV9yzGA+WCHJww= golang.org/x/oauth2 v0.36.0 h1:peZ/1z27fi9hUOFCAZaHyrpWG5lwe0RJEEEeH0ThlIs= @@ -314,16 +380,21 @@ golang.org/x/text v0.37.0 h1:Cqjiwd9eSg8e0QAkyCaQTNHFIIzWtidPahFWR83rTrc= golang.org/x/text v0.37.0/go.mod h1:a5sjxXGs9hsn/AJVwuElvCAo9v8QYLzvavO5z2PiM38= golang.org/x/time v0.15.0 h1:bbrp8t3bGUeFOx08pvsMYRTCVSMk89u4tKbNOZbp88U= golang.org/x/time v0.15.0/go.mod h1:Y4YMaQmXwGQZoFaVFk4YpCt4FLQMYKZe9oeV/f4MSno= +golang.org/x/tools v0.45.0/go.mod h1:LuUGqqaXcXMEFEruIVJVm5mgDD8vww/z/SR1gQ4uE/0= +golang.org/x/tools/go/expect v0.1.1-deprecated/go.mod h1:eihoPOH+FgIqa3FpoTwguz/bVUSGBlGQU67vpBeOrBY= +golang.org/x/tools/go/packages/packagestest v0.1.1-deprecated/go.mod h1:RVAQXBGNv1ib0J382/DPCRS/BPnsGebyM1Gj5VSDpG8= gonum.org/v1/gonum v0.17.0 h1:VbpOemQlsSMrYmn7T2OUvQ4dqxQXU+ouZFQsZOx50z4= gonum.org/v1/gonum v0.17.0/go.mod h1:El3tOrEuMpv2UdMrbNlKEh9vd86bmQ6vqIcDwxEOc1E= google.golang.org/api v0.282.0 h1:WmJiSVqUnKqJCpJOx7YADbXaC+9DDsnGSfllFSj7R2I= google.golang.org/api v0.282.0/go.mod h1:6Wssta4c5n9qHq5CBhmlai5h/PUa1djdDAIhYEHyvcM= +google.golang.org/appengine v1.6.8/go.mod h1:1jJ3jBArFh5pcgW8gCtRJnepW8FzD1V44FJffLiz/Ds= google.golang.org/genai v1.58.0 h1:MNA3ZkRyr7MnRwZ9RNZ60p4+UMKV3yYRw6pyHq4pp0U= google.golang.org/genai v1.58.0/go.mod h1:A3kkl0nyBjyFlNjgxIwKq70julKbIxpSxqKO5gw/gmk= google.golang.org/genproto v0.0.0-20260504160031-60b97b32f348 h1:JjVGDZYWkJWZcxveJGzfkXC5myDVWAd4dZdgbzrDUv8= google.golang.org/genproto v0.0.0-20260504160031-60b97b32f348/go.mod h1:95PqD4xM+AdOcBGsmgfaofXsiA37uXDtDufVbntT3TU= google.golang.org/genproto/googleapis/api v0.0.0-20260504160031-60b97b32f348 h1:U8orV30l6KpDsi9dxU0CoJZGbjS8EEpw+6ba+XwGPQA= google.golang.org/genproto/googleapis/api v0.0.0-20260504160031-60b97b32f348/go.mod h1:Yzdzr5OOZFgSsEV2D/Xi9NL3bszpXFAg0hFJiRohcD8= +google.golang.org/genproto/googleapis/bytestream v0.0.0-20260523011958-0a33c5d7ca68/go.mod h1:6TABGosqSqU2l1+fJ3jdvOYPPVryeKybxYF0cCZkTBE= google.golang.org/genproto/googleapis/rpc v0.0.0-20260526163538-3dc84a4a5aaa h1:mZHHdPZl0dbGHCflZgAq/Q468DWVFcU2whhB2KAo8fk= google.golang.org/genproto/googleapis/rpc v0.0.0-20260526163538-3dc84a4a5aaa/go.mod h1:4Hqkh8ycfw05ld/3BWL7rJOSfebL2Q+DVDeRgYgxUU8= google.golang.org/grpc v1.81.1 h1:VnnIIZ88UzOOKLukQi+ImGz8O1Wdp8nAGGnvOfEIWQQ= @@ -333,6 +404,8 @@ google.golang.org/protobuf v1.36.11/go.mod h1:HTf+CrKn2C3g5S8VImy6tdcUvCska2kB7j gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk= gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q= +gopkg.in/dnaeon/go-vcr.v4 v4.0.6-0.20251110073552-01de4eb40290/go.mod h1:sbq5oMEcM4PXngbcNbHhzfCP9OdZodLhrbRYoyg09HY= +gopkg.in/ini.v1 v1.67.1/go.mod h1:x/cyOwCgZqOkJoDIJ3c1KNHMo10+nLGAhh+kn3Zizss= gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY= gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ= gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= diff --git a/internal/models/autoroute_test.go b/internal/models/autoroute_test.go index a463a8c1..0871103d 100644 --- a/internal/models/autoroute_test.go +++ b/internal/models/autoroute_test.go @@ -10,15 +10,31 @@ import ( ) // TestNpmToWireProtocol documents the wire protocols that the auto-router -// understands. Provider-specific bundles (azure, bedrock, vercel, openrouter, -// google-vertex*) are intentionally absent — they have native top-level cases -// in CreateProvider and never reach the auto-router. +// understands. Provider-specific bundles that need bespoke auth or URL +// templating (azure, bedrock, openrouter, google-vertex*, @ai-sdk/gateway) +// are intentionally absent — they have native top-level cases in +// CreateProvider and never reach the auto-router. func TestNpmToWireProtocol(t *testing.T) { want := map[string]wireProtocol{ "@ai-sdk/openai": wireOpenAI, "@ai-sdk/openai-compatible": wireOpenAI, "@ai-sdk/anthropic": wireAnthropic, "@ai-sdk/google": wireGoogle, + + // Thin OpenAI-compatible wrappers — routed via openaicompat using + // the SDK's hard-coded default base URL (sdkDefaultBaseURL). + "@ai-sdk/groq": wireOpenAI, + "@ai-sdk/cerebras": wireOpenAI, + "@ai-sdk/perplexity": wireOpenAI, + "@ai-sdk/togetherai": wireOpenAI, + "@ai-sdk/xai": wireOpenAI, + "@ai-sdk/deepinfra": wireOpenAI, + "@ai-sdk/mistral": wireOpenAI, + "@ai-sdk/cohere": wireOpenAI, + "@ai-sdk/vercel": wireOpenAI, + "@aihubmix/ai-sdk-provider": wireOpenAI, + "venice-ai-sdk-provider": wireOpenAI, + "merge-gateway-ai-sdk-provider": wireOpenAI, } for npm, wire := range want { if got := npmToWireProtocol[npm]; got != wire { @@ -26,15 +42,15 @@ func TestNpmToWireProtocol(t *testing.T) { } } - // Bundle packages must NOT be in the table (regression guard against the - // old npmToLLMProvider map that listed 10 entries but only handled 3). + // Bundle packages must NOT be in the table — they need bespoke auth or + // URL templating that the auto-router cannot satisfy. for _, npm := range []string{ "@ai-sdk/google-vertex", "@ai-sdk/google-vertex/anthropic", "@ai-sdk/amazon-bedrock", "@ai-sdk/azure", "@openrouter/ai-sdk-provider", - "@ai-sdk/vercel", + "@ai-sdk/gateway", } { if _, ok := npmToWireProtocol[npm]; ok { t.Errorf("npmToWireProtocol unexpectedly contains bundle package %q", npm) diff --git a/internal/models/embedded_models.json b/internal/models/embedded_models.json index 84b697f1..4ef6a9c3 100644 --- a/internal/models/embedded_models.json +++ b/internal/models/embedded_models.json @@ -1 +1 @@ -{"302ai":{"api":"https://api.302.ai/v1","doc":"https://doc.302.ai","env":["302AI_API_KEY"],"id":"302ai","models":{"MiniMax-M1":{"attachment":false,"cost":{"input":0.132,"output":1.254},"family":"minimax","id":"MiniMax-M1","last_updated":"2025-06-16","limit":{"context":1000000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M1","open_weights":false,"reasoning":false,"release_date":"2025-06-16","temperature":true,"tool_call":true},"MiniMax-M2":{"attachment":false,"cost":{"input":0.33,"output":1.32},"id":"MiniMax-M2","last_updated":"2025-10-26","limit":{"context":1000000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2","open_weights":false,"reasoning":false,"release_date":"2025-10-26","temperature":true,"tool_call":true},"MiniMax-M2.1":{"attachment":false,"cost":{"input":0.3,"output":1.2},"id":"MiniMax-M2.1","last_updated":"2025-12-19","limit":{"context":1000000,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2.1","open_weights":false,"reasoning":false,"release_date":"2025-12-19","temperature":true,"tool_call":true},"MiniMax-M2.7":{"attachment":false,"cost":{"input":0.3,"output":1.2},"id":"MiniMax-M2.7","last_updated":"2026-03-19","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2.7","open_weights":false,"reasoning":false,"release_date":"2026-03-19","temperature":true,"tool_call":true},"MiniMax-M2.7-highspeed":{"attachment":false,"cost":{"input":0.6,"output":4.8},"id":"MiniMax-M2.7-highspeed","last_updated":"2026-03-19","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2.7-highspeed","open_weights":false,"reasoning":false,"release_date":"2026-03-19","temperature":true,"tool_call":true},"chatgpt-4o-latest":{"attachment":true,"cost":{"input":5,"output":15},"family":"gpt","id":"chatgpt-4o-latest","knowledge":"2023-09","last_updated":"2024-08-08","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"chatgpt-4o-latest","open_weights":false,"reasoning":false,"release_date":"2024-08-08","temperature":true,"tool_call":false},"claude-3-5-haiku-20241022":{"attachment":true,"cost":{"input":0.8,"output":4},"family":"claude-haiku","id":"claude-3-5-haiku-20241022","knowledge":"2024-07-31","last_updated":"2024-10-22","limit":{"context":200000,"output":8192},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"claude-3-5-haiku-20241022","open_weights":false,"reasoning":false,"release_date":"2024-10-22","temperature":true,"tool_call":true},"claude-3-5-haiku-latest":{"attachment":true,"cost":{"input":0.8,"output":4},"family":"claude-haiku","id":"claude-3-5-haiku-latest","knowledge":"2024-07-31","last_updated":"2024-10-22","limit":{"context":200000,"output":8192},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"claude-3-5-haiku-latest","open_weights":false,"reasoning":false,"release_date":"2024-10-22","temperature":true,"tool_call":true},"claude-haiku-4-5":{"attachment":true,"cost":{"input":1,"output":5},"family":"claude-haiku","id":"claude-haiku-4-5","knowledge":"2025-02-28","last_updated":"2025-10-16","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"claude-haiku-4-5","open_weights":false,"reasoning":true,"release_date":"2025-10-16","temperature":true,"tool_call":true},"claude-haiku-4-5-20251001":{"attachment":true,"cost":{"input":1,"output":5},"family":"claude-haiku","id":"claude-haiku-4-5-20251001","knowledge":"2025-02-28","last_updated":"2025-10-16","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"claude-haiku-4-5-20251001","open_weights":false,"reasoning":true,"release_date":"2025-10-16","temperature":true,"tool_call":true},"claude-opus-4-1-20250805":{"attachment":true,"cost":{"input":15,"output":75},"family":"claude-opus","id":"claude-opus-4-1-20250805","knowledge":"2025-03-31","last_updated":"2025-08-05","limit":{"context":200000,"output":32000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"claude-opus-4-1-20250805","open_weights":false,"reasoning":true,"release_date":"2025-08-05","temperature":true,"tool_call":true},"claude-opus-4-1-20250805-thinking":{"attachment":true,"cost":{"input":15,"output":75},"id":"claude-opus-4-1-20250805-thinking","knowledge":"2025-03","last_updated":"2025-05-27","limit":{"context":200000,"output":32000},"modalities":{"input":["text","image"],"output":["text"]},"name":"claude-opus-4-1-20250805-thinking","open_weights":false,"reasoning":true,"release_date":"2025-05-27","temperature":true,"tool_call":true},"claude-opus-4-20250514":{"attachment":true,"cost":{"input":15,"output":75},"family":"claude-opus","id":"claude-opus-4-20250514","knowledge":"2025-03-31","last_updated":"2025-05-22","limit":{"context":200000,"output":32000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"claude-opus-4-20250514","open_weights":false,"reasoning":true,"release_date":"2025-05-22","temperature":true,"tool_call":true},"claude-opus-4-5":{"attachment":true,"cost":{"input":5,"output":25},"family":"claude-opus","id":"claude-opus-4-5","knowledge":"2025-03-31","last_updated":"2025-11-25","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"claude-opus-4-5","open_weights":false,"reasoning":true,"release_date":"2025-11-25","temperature":true,"tool_call":true},"claude-opus-4-5-20251101":{"attachment":true,"cost":{"input":5,"output":25},"family":"claude-opus","id":"claude-opus-4-5-20251101","knowledge":"2025-03-31","last_updated":"2025-11-25","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"claude-opus-4-5-20251101","open_weights":false,"reasoning":true,"release_date":"2025-11-25","temperature":true,"tool_call":true},"claude-opus-4-5-20251101-thinking":{"attachment":true,"cost":{"input":5,"output":25},"id":"claude-opus-4-5-20251101-thinking","knowledge":"2025-03","last_updated":"2025-11-25","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image"],"output":["text"]},"name":"claude-opus-4-5-20251101-thinking","open_weights":false,"reasoning":true,"release_date":"2025-11-25","temperature":true,"tool_call":true},"claude-opus-4-6":{"attachment":true,"cost":{"input":5,"output":25},"family":"claude-opus","id":"claude-opus-4-6","knowledge":"2025-05-31","last_updated":"2026-03-13","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"claude-opus-4-6","open_weights":false,"reasoning":true,"release_date":"2026-02-06","temperature":true,"tool_call":true},"claude-opus-4-6-thinking":{"attachment":true,"cost":{"input":5,"output":25},"id":"claude-opus-4-6-thinking","knowledge":"2025-05","last_updated":"2026-03-13","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"claude-opus-4-6-thinking","open_weights":false,"reasoning":true,"release_date":"2026-02-06","temperature":true,"tool_call":true},"claude-opus-4-7":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"context_over_200k":{"cache_read":1,"cache_write":12.5,"input":10,"output":37.5},"input":5,"output":25,"tiers":[{"cache_read":1,"cache_write":12.5,"input":10,"output":37.5,"tier":{"size":200000,"type":"context"}}]},"family":"claude-opus","id":"claude-opus-4-7","knowledge":"2026-01-31","last_updated":"2026-04-17","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"claude-opus-4-7","open_weights":false,"reasoning":true,"release_date":"2026-04-17","temperature":true,"tool_call":true},"claude-sonnet-4-20250514":{"attachment":true,"cost":{"input":3,"output":15},"family":"claude-sonnet","id":"claude-sonnet-4-20250514","knowledge":"2025-03-31","last_updated":"2025-05-22","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"claude-sonnet-4-20250514","open_weights":false,"reasoning":true,"release_date":"2025-05-22","temperature":true,"tool_call":true},"claude-sonnet-4-5":{"attachment":true,"cost":{"input":3,"output":15},"family":"claude-sonnet","id":"claude-sonnet-4-5","knowledge":"2025-07-31","last_updated":"2025-09-30","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"claude-sonnet-4-5","open_weights":false,"reasoning":true,"release_date":"2025-09-30","temperature":true,"tool_call":true},"claude-sonnet-4-5-20250929":{"attachment":true,"cost":{"input":3,"output":15},"family":"claude-sonnet","id":"claude-sonnet-4-5-20250929","knowledge":"2025-07-31","last_updated":"2025-09-30","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"claude-sonnet-4-5-20250929","open_weights":false,"reasoning":true,"release_date":"2025-09-30","temperature":true,"tool_call":true},"claude-sonnet-4-5-20250929-thinking":{"attachment":true,"cost":{"input":3,"output":15},"id":"claude-sonnet-4-5-20250929-thinking","knowledge":"2025-03","last_updated":"2025-09-30","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"claude-sonnet-4-5-20250929-thinking","open_weights":false,"reasoning":true,"release_date":"2025-09-30","temperature":true,"tool_call":true},"claude-sonnet-4-6":{"attachment":true,"cost":{"input":3,"output":15},"family":"claude-sonnet","id":"claude-sonnet-4-6","knowledge":"2025-08-31","last_updated":"2026-03-13","limit":{"context":1000000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"claude-sonnet-4-6","open_weights":false,"reasoning":true,"release_date":"2026-02-18","temperature":true,"tool_call":true},"claude-sonnet-4-6-thinking":{"attachment":true,"cost":{"input":3,"output":15},"id":"claude-sonnet-4-6-thinking","knowledge":"2025-08","last_updated":"2026-03-13","limit":{"context":1000000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"claude-sonnet-4-6-thinking","open_weights":false,"reasoning":true,"release_date":"2026-02-18","temperature":true,"tool_call":true},"deepseek-chat":{"attachment":false,"cost":{"input":0.29,"output":0.43},"family":"deepseek","id":"deepseek-chat","knowledge":"2024-07","last_updated":"2024-11-29","limit":{"context":128000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Deepseek-Chat","open_weights":false,"reasoning":false,"release_date":"2024-11-29","temperature":true,"tool_call":true},"deepseek-reasoner":{"attachment":false,"cost":{"input":0.29,"output":0.43},"family":"deepseek-thinking","id":"deepseek-reasoner","knowledge":"2024-07","last_updated":"2025-01-20","limit":{"context":128000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"Deepseek-Reasoner","open_weights":false,"reasoning":true,"release_date":"2025-01-20","temperature":true,"tool_call":true},"deepseek-v3.2":{"attachment":false,"cost":{"input":0.29,"output":0.43},"id":"deepseek-v3.2","knowledge":"2024-12","last_updated":"2025-12-01","limit":{"context":128000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"deepseek-v3.2","open_weights":false,"reasoning":false,"release_date":"2025-12-01","temperature":true,"tool_call":true},"deepseek-v3.2-thinking":{"attachment":false,"cost":{"input":0.29,"output":0.43},"id":"deepseek-v3.2-thinking","knowledge":"2024-12","last_updated":"2025-12-01","limit":{"context":128000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek-V3.2-Thinking","open_weights":false,"reasoning":true,"release_date":"2025-12-01","temperature":true,"tool_call":true},"doubao-seed-1-6-thinking-250715":{"attachment":true,"cost":{"input":0.121,"output":1.21},"id":"doubao-seed-1-6-thinking-250715","last_updated":"2025-07-15","limit":{"context":256000,"output":16000},"modalities":{"input":["text","image"],"output":["text"]},"name":"doubao-seed-1-6-thinking-250715","open_weights":false,"reasoning":true,"release_date":"2025-07-15","temperature":true,"tool_call":true},"doubao-seed-1-6-vision-250815":{"attachment":true,"cost":{"input":0.114,"output":1.143},"id":"doubao-seed-1-6-vision-250815","last_updated":"2025-09-30","limit":{"context":256000,"output":32000},"modalities":{"input":["text","image"],"output":["text"]},"name":"doubao-seed-1-6-vision-250815","open_weights":false,"reasoning":false,"release_date":"2025-09-30","temperature":true,"tool_call":true},"doubao-seed-1-8-251215":{"attachment":true,"cost":{"input":0.114,"output":0.286},"id":"doubao-seed-1-8-251215","last_updated":"2025-12-18","limit":{"context":224000,"output":64000},"modalities":{"input":["text","image"],"output":["text"]},"name":"doubao-seed-1-8-251215","open_weights":false,"reasoning":false,"release_date":"2025-12-18","temperature":true,"tool_call":true},"doubao-seed-code-preview-251028":{"attachment":true,"cost":{"input":0.17,"output":1.14},"id":"doubao-seed-code-preview-251028","last_updated":"2025-11-11","limit":{"context":256000,"output":32000},"modalities":{"input":["text","image"],"output":["text"]},"name":"doubao-seed-code-preview-251028","open_weights":false,"reasoning":false,"release_date":"2025-11-11","temperature":true,"tool_call":true},"gemini-2.0-flash-lite":{"attachment":true,"cost":{"input":0.075,"output":0.3},"family":"gemini-flash-lite","id":"gemini-2.0-flash-lite","knowledge":"2024-11","last_updated":"2025-06-16","limit":{"context":2000000,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"gemini-2.0-flash-lite","open_weights":false,"reasoning":false,"release_date":"2025-06-16","temperature":true,"tool_call":false},"gemini-2.5-flash":{"attachment":true,"cost":{"input":0.3,"output":2.5},"family":"gemini-flash","id":"gemini-2.5-flash","knowledge":"2025-01","last_updated":"2025-06-17","limit":{"context":1000000,"output":65536},"modalities":{"input":["text","image"],"output":["text"]},"name":"gemini-2.5-flash","open_weights":false,"reasoning":false,"release_date":"2025-06-17","temperature":true,"tool_call":true},"gemini-2.5-flash-image":{"attachment":true,"cost":{"input":0.3,"output":30},"id":"gemini-2.5-flash-image","knowledge":"2025-01","last_updated":"2025-10-08","limit":{"context":32768,"output":32768},"modalities":{"input":["text","image"],"output":["text"]},"name":"gemini-2.5-flash-image","open_weights":false,"reasoning":false,"release_date":"2025-10-08","temperature":true,"tool_call":false},"gemini-2.5-flash-lite-preview-09-2025":{"attachment":true,"cost":{"input":0.1,"output":0.4},"id":"gemini-2.5-flash-lite-preview-09-2025","knowledge":"2025-01","last_updated":"2025-09-26","limit":{"context":1000000,"output":65536},"modalities":{"input":["text","image"],"output":["text"]},"name":"gemini-2.5-flash-lite-preview-09-2025","open_weights":false,"reasoning":false,"release_date":"2025-09-26","temperature":true,"tool_call":true},"gemini-2.5-flash-nothink":{"attachment":true,"cost":{"input":0.3,"output":2.5},"family":"gemini-flash","id":"gemini-2.5-flash-nothink","knowledge":"2025-01","last_updated":"2025-06-24","limit":{"context":1000000,"output":65536},"modalities":{"input":["text","image"],"output":["text"]},"name":"gemini-2.5-flash-nothink","open_weights":false,"reasoning":false,"release_date":"2025-06-24","temperature":true,"tool_call":true},"gemini-2.5-flash-preview-09-2025":{"attachment":true,"cost":{"input":0.3,"output":2.5},"id":"gemini-2.5-flash-preview-09-2025","knowledge":"2025-01","last_updated":"2025-09-26","limit":{"context":1000000,"output":65536},"modalities":{"input":["text","image"],"output":["text"]},"name":"gemini-2.5-flash-preview-09-2025","open_weights":false,"reasoning":false,"release_date":"2025-09-26","temperature":true,"tool_call":true},"gemini-2.5-pro":{"attachment":true,"cost":{"input":1.25,"output":10},"family":"gemini-pro","id":"gemini-2.5-pro","knowledge":"2025-01","last_updated":"2025-06-17","limit":{"context":1000000,"output":65536},"modalities":{"input":["text","image"],"output":["text"]},"name":"gemini-2.5-pro","open_weights":false,"reasoning":false,"release_date":"2025-06-17","temperature":true,"tool_call":true},"gemini-3-flash-preview":{"attachment":true,"cost":{"input":0.5,"output":3},"id":"gemini-3-flash-preview","knowledge":"2025-06","last_updated":"2025-12-18","limit":{"context":1000000,"output":65536},"modalities":{"input":["text","image"],"output":["text"]},"name":"gemini-3-flash-preview","open_weights":false,"reasoning":false,"release_date":"2025-12-18","temperature":true,"tool_call":true},"gemini-3-pro-image-preview":{"attachment":true,"cost":{"input":2,"output":120},"id":"gemini-3-pro-image-preview","knowledge":"2025-06","last_updated":"2025-11-20","limit":{"context":32768,"output":64000},"modalities":{"input":["text","image"],"output":["text"]},"name":"gemini-3-pro-image-preview","open_weights":false,"reasoning":false,"release_date":"2025-11-20","temperature":true,"tool_call":false},"gemini-3-pro-preview":{"attachment":true,"cost":{"input":2,"output":12},"id":"gemini-3-pro-preview","knowledge":"2025-06","last_updated":"2025-11-19","limit":{"context":1000000,"output":64000},"modalities":{"input":["text","image"],"output":["text"]},"name":"gemini-3-pro-preview","open_weights":false,"reasoning":false,"release_date":"2025-11-19","temperature":true,"tool_call":true},"gemini-3.1-flash-image-preview":{"attachment":true,"cost":{"input":0.5,"output":60},"id":"gemini-3.1-flash-image-preview","knowledge":"2025-01","last_updated":"2026-02-27","limit":{"context":131072,"output":32768},"modalities":{"input":["text","image","pdf"],"output":["text","image"]},"name":"gemini-3.1-flash-image-preview","open_weights":false,"reasoning":false,"release_date":"2026-02-27","temperature":true,"tool_call":false},"glm-4.5":{"attachment":false,"cost":{"input":0.286,"output":1.142},"family":"glm","id":"glm-4.5","knowledge":"2025-04","last_updated":"2025-07-29","limit":{"context":131072,"output":98304},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4.5","open_weights":true,"reasoning":true,"release_date":"2025-07-29","temperature":true,"tool_call":true},"glm-4.5-air":{"attachment":false,"cost":{"input":0.1143,"output":0.286},"family":"glm-air","id":"glm-4.5-air","knowledge":"2025-04","last_updated":"2025-07-29","limit":{"context":131072,"output":98304},"modalities":{"input":["text"],"output":["text"]},"name":"glm-4.5-air","open_weights":true,"reasoning":true,"release_date":"2025-07-29","temperature":true,"tool_call":true},"glm-4.5-airx":{"attachment":false,"cost":{"input":0.572,"output":1.714},"family":"glm","id":"glm-4.5-airx","knowledge":"2025-04","last_updated":"2025-07-29","limit":{"context":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"glm-4.5-airx","open_weights":false,"reasoning":false,"release_date":"2025-07-29","temperature":true,"tool_call":true},"glm-4.5-x":{"attachment":false,"cost":{"input":1.143,"output":2.29},"family":"glm","id":"glm-4.5-x","knowledge":"2025-04","last_updated":"2025-07-29","limit":{"context":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"glm-4.5-x","open_weights":false,"reasoning":false,"release_date":"2025-07-29","temperature":true,"tool_call":true},"glm-4.5v":{"attachment":true,"cost":{"input":0.29,"output":0.86},"family":"glm","id":"glm-4.5v","knowledge":"2025-04","last_updated":"2025-08-12","limit":{"context":64000,"output":16384},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"GLM-4.5V","open_weights":true,"reasoning":true,"release_date":"2025-08-12","temperature":true,"tool_call":true},"glm-4.6":{"attachment":false,"cost":{"input":0.286,"output":1.142},"family":"glm","id":"glm-4.6","knowledge":"2025-04","last_updated":"2025-09-30","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"glm-4.6","open_weights":true,"reasoning":true,"release_date":"2025-09-30","temperature":true,"tool_call":true},"glm-4.6v":{"attachment":true,"cost":{"input":0.145,"output":0.43},"family":"glm","id":"glm-4.6v","knowledge":"2025-04","last_updated":"2025-12-08","limit":{"context":128000,"output":32768},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"GLM-4.6V","open_weights":true,"reasoning":true,"release_date":"2025-12-08","temperature":true,"tool_call":true},"glm-4.7":{"attachment":false,"cost":{"input":0.286,"output":1.142},"family":"glm","id":"glm-4.7","interleaved":{"field":"reasoning_content"},"knowledge":"2025-04","last_updated":"2025-12-22","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"glm-4.7","open_weights":true,"reasoning":true,"release_date":"2025-12-22","temperature":true,"tool_call":true},"glm-4.7-flashx":{"attachment":false,"cost":{"input":0.0715,"output":0.429},"family":"glm-flash","id":"glm-4.7-flashx","knowledge":"2025-04","last_updated":"2026-01-20","limit":{"context":200000,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"glm-4.7-flashx","open_weights":true,"reasoning":true,"release_date":"2026-01-20","temperature":true,"tool_call":true},"glm-5":{"attachment":false,"cost":{"input":0.6,"output":2.6},"family":"glm","id":"glm-5","interleaved":{"field":"reasoning_content"},"last_updated":"2026-02-12","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"glm-5","open_weights":true,"reasoning":true,"release_date":"2026-02-12","temperature":true,"tool_call":true},"glm-5-turbo":{"attachment":false,"cost":{"input":0.72,"output":3.2},"family":"glm","id":"glm-5-turbo","interleaved":{"field":"reasoning_content"},"last_updated":"2026-03-16","limit":{"context":200000,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"glm-5-turbo","open_weights":false,"reasoning":true,"release_date":"2026-03-16","structured_output":true,"temperature":true,"tool_call":true},"glm-5.1":{"attachment":false,"cost":{"input":0.86,"output":3.5},"family":"glm","id":"glm-5.1","interleaved":{"field":"reasoning_content"},"last_updated":"2026-04-10","limit":{"context":200000,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"glm-5.1","open_weights":false,"reasoning":true,"release_date":"2026-04-10","structured_output":true,"temperature":true,"tool_call":true},"glm-5v-turbo":{"attachment":true,"cost":{"input":0.72,"output":3.2},"family":"glm","id":"glm-5v-turbo","interleaved":{"field":"reasoning_content"},"last_updated":"2026-04-02","limit":{"context":200000,"output":131072},"modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"name":"GLM-5V-Turbo","open_weights":false,"reasoning":true,"release_date":"2026-04-02","temperature":true,"tool_call":true},"glm-for-coding":{"attachment":false,"cost":{"input":0.086,"output":0.343},"family":"glm","id":"glm-for-coding","last_updated":"2025-09-30","limit":{"context":200000,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"glm-for-coding","open_weights":false,"reasoning":true,"release_date":"2025-09-30","temperature":true,"tool_call":true},"gpt-4.1":{"attachment":true,"cost":{"input":2,"output":8},"family":"gpt","id":"gpt-4.1","knowledge":"2024-04","last_updated":"2025-04-14","limit":{"context":1047576,"output":32768},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"gpt-4.1","open_weights":false,"reasoning":false,"release_date":"2025-04-14","structured_output":true,"temperature":true,"tool_call":true},"gpt-4.1-mini":{"attachment":true,"cost":{"input":0.4,"output":1.6},"family":"gpt-mini","id":"gpt-4.1-mini","knowledge":"2024-04","last_updated":"2025-04-14","limit":{"context":1047576,"output":32768},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"gpt-4.1-mini","open_weights":false,"reasoning":false,"release_date":"2025-04-14","structured_output":true,"temperature":true,"tool_call":true},"gpt-4.1-nano":{"attachment":true,"cost":{"input":0.1,"output":0.4},"family":"gpt-nano","id":"gpt-4.1-nano","knowledge":"2024-04","last_updated":"2025-04-14","limit":{"context":1047576,"output":32768},"modalities":{"input":["text","image"],"output":["text"]},"name":"gpt-4.1-nano","open_weights":false,"reasoning":false,"release_date":"2025-04-14","structured_output":true,"temperature":true,"tool_call":true},"gpt-4o":{"attachment":true,"cost":{"input":2.5,"output":10},"family":"gpt","id":"gpt-4o","knowledge":"2023-09","last_updated":"2024-05-13","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"gpt-4o","open_weights":false,"reasoning":false,"release_date":"2024-05-13","structured_output":true,"temperature":true,"tool_call":true},"gpt-5":{"attachment":true,"cost":{"input":1.25,"output":10},"family":"gpt","id":"gpt-5","knowledge":"2024-09-30","last_updated":"2025-08-08","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"gpt-5","open_weights":false,"reasoning":true,"release_date":"2025-08-08","structured_output":true,"temperature":false,"tool_call":true},"gpt-5-mini":{"attachment":true,"cost":{"input":0.25,"output":2},"family":"gpt-mini","id":"gpt-5-mini","knowledge":"2024-05-30","last_updated":"2025-08-08","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"gpt-5-mini","open_weights":false,"reasoning":true,"release_date":"2025-08-08","structured_output":true,"temperature":false,"tool_call":true},"gpt-5-pro":{"attachment":true,"cost":{"input":15,"output":120},"family":"gpt-pro","id":"gpt-5-pro","knowledge":"2024-09-30","last_updated":"2025-10-08","limit":{"context":400000,"input":272000,"output":272000},"modalities":{"input":["text","image"],"output":["text"]},"name":"gpt-5-pro","open_weights":false,"reasoning":true,"release_date":"2025-10-08","structured_output":true,"temperature":false,"tool_call":true},"gpt-5-thinking":{"attachment":true,"cost":{"input":1.25,"output":10},"id":"gpt-5-thinking","knowledge":"2024-10","last_updated":"2025-08-08","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"gpt-5-thinking","open_weights":false,"reasoning":true,"release_date":"2025-08-08","temperature":true,"tool_call":true},"gpt-5.1":{"attachment":true,"cost":{"input":1.25,"output":10},"family":"gpt","id":"gpt-5.1","knowledge":"2024-09-30","last_updated":"2025-11-14","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"gpt-5.1","open_weights":false,"reasoning":true,"release_date":"2025-11-14","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.1-chat-latest":{"attachment":true,"cost":{"input":1.25,"output":10},"family":"gpt-codex","id":"gpt-5.1-chat-latest","knowledge":"2024-09-30","last_updated":"2025-11-14","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"gpt-5.1-chat-latest","open_weights":false,"reasoning":true,"release_date":"2025-11-14","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.2":{"attachment":true,"cost":{"input":1.75,"output":14},"family":"gpt","id":"gpt-5.2","knowledge":"2025-08-31","last_updated":"2025-12-12","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"gpt-5.2","open_weights":false,"reasoning":true,"release_date":"2025-12-12","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.2-chat-latest":{"attachment":true,"cost":{"input":1.75,"output":14},"family":"gpt-codex","id":"gpt-5.2-chat-latest","knowledge":"2025-08-31","last_updated":"2025-12-12","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"gpt-5.2-chat-latest","open_weights":false,"reasoning":true,"release_date":"2025-12-12","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.4":{"attachment":true,"cost":{"cache_read":0.25,"cache_write":0,"context_over_200k":{"input":5,"output":22.5},"input":2.5,"output":15,"tiers":[{"input":5,"output":22.5,"tier":{"size":272000,"type":"context"}}]},"family":"gpt","id":"gpt-5.4","knowledge":"2025-08-31","last_updated":"2026-03-05","limit":{"context":1050000,"input":922000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"gpt-5.4","open_weights":false,"reasoning":true,"release_date":"2026-03-05","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.4-mini":{"attachment":true,"cost":{"input":0.75,"output":4.5},"family":"gpt-mini","id":"gpt-5.4-mini","knowledge":"2025-08-31","last_updated":"2026-03-19","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"gpt-5.4-mini","open_weights":false,"reasoning":true,"release_date":"2026-03-19","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.4-mini-2026-03-17":{"attachment":true,"cost":{"input":0.75,"output":4.5},"family":"gpt-mini","id":"gpt-5.4-mini-2026-03-17","knowledge":"2025-08-31","last_updated":"2026-03-19","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"gpt-5.4-mini-2026-03-17","open_weights":false,"reasoning":true,"release_date":"2026-03-19","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.4-nano":{"attachment":true,"cost":{"input":0.2,"output":1.25},"family":"gpt-nano","id":"gpt-5.4-nano","knowledge":"2025-08-31","last_updated":"2026-03-19","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"gpt-5.4-nano","open_weights":false,"reasoning":true,"release_date":"2026-03-19","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.4-nano-2026-03-17":{"attachment":true,"cost":{"input":0.2,"output":1.25},"family":"gpt-nano","id":"gpt-5.4-nano-2026-03-17","knowledge":"2025-08-31","last_updated":"2026-03-19","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"gpt-5.4-nano-2026-03-17","open_weights":false,"reasoning":true,"release_date":"2026-03-19","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.4-pro":{"attachment":true,"cost":{"cache_read":0,"cache_write":0,"context_over_200k":{"input":60,"output":270},"input":30,"output":180,"tiers":[{"input":60,"output":270,"tier":{"size":272000,"type":"context"}}]},"family":"gpt-pro","id":"gpt-5.4-pro","knowledge":"2025-08-31","last_updated":"2026-03-05","limit":{"context":1050000,"input":922000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"gpt-5.4-pro","open_weights":false,"reasoning":true,"release_date":"2026-03-05","structured_output":false,"temperature":false,"tool_call":true},"grok-4-1-fast-non-reasoning":{"attachment":true,"cost":{"input":0.2,"output":0.5},"id":"grok-4-1-fast-non-reasoning","knowledge":"2025-06","last_updated":"2025-11-20","limit":{"context":2000000,"output":30000},"modalities":{"input":["text","image"],"output":["text"]},"name":"grok-4-1-fast-non-reasoning","open_weights":false,"reasoning":false,"release_date":"2025-11-20","temperature":true,"tool_call":true},"grok-4-1-fast-reasoning":{"attachment":true,"cost":{"input":0.2,"output":0.5},"id":"grok-4-1-fast-reasoning","knowledge":"2025-06","last_updated":"2025-11-20","limit":{"context":2000000,"output":30000},"modalities":{"input":["text","image"],"output":["text"]},"name":"grok-4-1-fast-reasoning","open_weights":false,"reasoning":true,"release_date":"2025-11-20","temperature":true,"tool_call":true},"grok-4-fast-non-reasoning":{"attachment":true,"cost":{"input":0.2,"output":0.5},"id":"grok-4-fast-non-reasoning","knowledge":"2025-06","last_updated":"2025-09-23","limit":{"context":2000000,"output":30000},"modalities":{"input":["text","image"],"output":["text"]},"name":"grok-4-fast-non-reasoning","open_weights":false,"reasoning":false,"release_date":"2025-09-23","temperature":true,"tool_call":true},"grok-4-fast-reasoning":{"attachment":true,"cost":{"input":0.2,"output":0.5},"id":"grok-4-fast-reasoning","knowledge":"2025-06","last_updated":"2025-09-23","limit":{"context":2000000,"output":30000},"modalities":{"input":["text","image"],"output":["text"]},"name":"grok-4-fast-reasoning","open_weights":false,"reasoning":true,"release_date":"2025-09-23","temperature":true,"tool_call":true},"grok-4.1":{"attachment":true,"cost":{"input":2,"output":10},"id":"grok-4.1","knowledge":"2025-06","last_updated":"2025-11-18","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image"],"output":["text"]},"name":"grok-4.1","open_weights":false,"reasoning":false,"release_date":"2025-11-18","temperature":true,"tool_call":true},"grok-4.20-beta-0309-non-reasoning":{"attachment":true,"cost":{"input":2,"output":6},"id":"grok-4.20-beta-0309-non-reasoning","last_updated":"2026-03-16","limit":{"context":2000000,"output":30000},"modalities":{"input":["text","image"],"output":["text"]},"name":"grok-4.20-beta-0309-non-reasoning","open_weights":false,"reasoning":false,"release_date":"2026-03-16","temperature":true,"tool_call":true},"grok-4.20-beta-0309-reasoning":{"attachment":true,"cost":{"input":2,"output":6},"id":"grok-4.20-beta-0309-reasoning","last_updated":"2026-03-16","limit":{"context":2000000,"output":30000},"modalities":{"input":["text","image"],"output":["text"]},"name":"grok-4.20-beta-0309-reasoning","open_weights":false,"reasoning":true,"release_date":"2026-03-16","temperature":true,"tool_call":true},"grok-4.20-multi-agent-beta-0309":{"attachment":true,"cost":{"input":2,"output":6},"id":"grok-4.20-multi-agent-beta-0309","last_updated":"2026-03-16","limit":{"context":2000000,"output":30000},"modalities":{"input":["text","image"],"output":["text"]},"name":"grok-4.20-multi-agent-beta-0309","open_weights":false,"reasoning":true,"release_date":"2026-03-16","temperature":true,"tool_call":true},"kimi-k2-0905-preview":{"attachment":false,"cost":{"input":0.632,"output":2.53},"id":"kimi-k2-0905-preview","knowledge":"2025-06","last_updated":"2025-09-05","limit":{"context":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"kimi-k2-0905-preview","open_weights":false,"reasoning":false,"release_date":"2025-09-05","temperature":true,"tool_call":true},"kimi-k2-thinking":{"attachment":false,"cost":{"input":0.575,"output":2.3},"id":"kimi-k2-thinking","knowledge":"2025-06","last_updated":"2025-09-05","limit":{"context":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"kimi-k2-thinking","open_weights":false,"reasoning":true,"release_date":"2025-09-05","temperature":true,"tool_call":true},"kimi-k2-thinking-turbo":{"attachment":false,"cost":{"input":1.265,"output":9.119},"id":"kimi-k2-thinking-turbo","knowledge":"2025-06","last_updated":"2025-09-05","limit":{"context":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"kimi-k2-thinking-turbo","open_weights":false,"reasoning":true,"release_date":"2025-09-05","temperature":true,"tool_call":true},"ministral-14b-2512":{"attachment":true,"cost":{"input":0.33,"output":0.33},"id":"ministral-14b-2512","knowledge":"2024-12","last_updated":"2025-12-16","limit":{"context":128000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"ministral-14b-2512","open_weights":false,"reasoning":false,"release_date":"2025-12-16","temperature":true,"tool_call":true},"mistral-large-2512":{"attachment":true,"cost":{"input":1.1,"output":3.3},"id":"mistral-large-2512","knowledge":"2024-12","last_updated":"2025-12-16","limit":{"context":128000,"output":262144},"modalities":{"input":["text","image"],"output":["text"]},"name":"mistral-large-2512","open_weights":false,"reasoning":false,"release_date":"2025-12-16","temperature":true,"tool_call":true},"qwen-flash":{"attachment":false,"cost":{"input":0.022,"output":0.22},"id":"qwen-flash","last_updated":"2025-07-28","limit":{"context":1000000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen-Flash","open_weights":false,"reasoning":false,"release_date":"2025-07-28","temperature":true,"tool_call":true},"qwen-max-latest":{"attachment":false,"cost":{"input":0.343,"output":1.372},"family":"qwen","id":"qwen-max-latest","knowledge":"2024-11","last_updated":"2025-01-25","limit":{"context":131072,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen-Max-Latest","open_weights":false,"reasoning":false,"release_date":"2024-04-03","temperature":true,"tool_call":true},"qwen-plus":{"attachment":false,"cost":{"input":0.12,"output":1.2},"family":"qwen","id":"qwen-plus","knowledge":"2024-10","last_updated":"2024-07-23","limit":{"context":1000000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen-Plus","open_weights":false,"reasoning":false,"release_date":"2024-07-23","temperature":true,"tool_call":true},"qwen3-235b-a22b":{"attachment":false,"cost":{"input":0.29,"output":2.86},"family":"qwen","id":"qwen3-235b-a22b","knowledge":"2025-04","last_updated":"2025-04-29","limit":{"context":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3-235B-A22B","open_weights":false,"reasoning":false,"release_date":"2025-04-29","temperature":true,"tool_call":true},"qwen3-235b-a22b-instruct-2507":{"attachment":false,"cost":{"input":0.29,"output":1.143},"id":"qwen3-235b-a22b-instruct-2507","knowledge":"2025-04","last_updated":"2025-07-30","limit":{"context":128000,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"qwen3-235b-a22b-instruct-2507","open_weights":false,"reasoning":false,"release_date":"2025-07-30","temperature":true,"tool_call":true},"qwen3-30b-a3b":{"attachment":false,"cost":{"input":0.11,"output":1.08},"family":"qwen","id":"qwen3-30b-a3b","knowledge":"2025-04","last_updated":"2025-04-29","limit":{"context":128000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3-30B-A3B","open_weights":false,"reasoning":false,"release_date":"2025-04-29","temperature":true,"tool_call":true},"qwen3-coder-480b-a35b-instruct":{"attachment":false,"cost":{"input":0.86,"output":3.43},"id":"qwen3-coder-480b-a35b-instruct","knowledge":"2025-04","last_updated":"2025-07-23","limit":{"context":262144,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"qwen3-coder-480b-a35b-instruct","open_weights":false,"reasoning":false,"release_date":"2025-07-23","temperature":true,"tool_call":true},"qwen3-max-2025-09-23":{"attachment":false,"cost":{"input":0.86,"output":3.43},"id":"qwen3-max-2025-09-23","knowledge":"2025-04","last_updated":"2025-09-24","limit":{"context":258048,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"qwen3-max-2025-09-23","open_weights":false,"reasoning":false,"release_date":"2025-09-24","temperature":true,"tool_call":true}},"name":"302.AI","npm":"@ai-sdk/openai-compatible"},"abacus":{"api":"https://routellm.abacus.ai/v1","doc":"https://abacus.ai/help/api","env":["ABACUS_API_KEY"],"id":"abacus","models":{"Qwen/QwQ-32B":{"attachment":false,"cost":{"input":0.4,"output":0.4},"family":"qwen","id":"Qwen/QwQ-32B","last_updated":"2024-11-28","limit":{"context":32768,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"QwQ 32B","open_weights":true,"reasoning":true,"release_date":"2024-11-28","temperature":true,"tool_call":true},"Qwen/Qwen2.5-72B-Instruct":{"attachment":false,"cost":{"input":0.11,"output":0.38},"family":"qwen","id":"Qwen/Qwen2.5-72B-Instruct","last_updated":"2024-09-19","limit":{"context":128000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen 2.5 72B Instruct","open_weights":true,"reasoning":false,"release_date":"2024-09-19","temperature":true,"tool_call":true},"Qwen/Qwen3-235B-A22B-Instruct-2507":{"attachment":false,"cost":{"input":0.13,"output":0.6},"family":"qwen","id":"Qwen/Qwen3-235B-A22B-Instruct-2507","last_updated":"2025-07-01","limit":{"context":262144,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 235B A22B Instruct","open_weights":true,"reasoning":true,"release_date":"2025-07-01","temperature":true,"tool_call":true},"Qwen/Qwen3-32B":{"attachment":false,"cost":{"input":0.09,"output":0.29},"family":"qwen","id":"Qwen/Qwen3-32B","last_updated":"2025-04-29","limit":{"context":128000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 32B","open_weights":true,"reasoning":true,"release_date":"2025-04-29","temperature":true,"tool_call":true},"Qwen/qwen3-coder-480b-a35b-instruct":{"attachment":false,"cost":{"input":0.29,"output":1.2},"family":"qwen","id":"Qwen/qwen3-coder-480b-a35b-instruct","last_updated":"2025-07-22","limit":{"context":262144,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Coder 480B A35B Instruct","open_weights":true,"reasoning":true,"release_date":"2025-07-22","temperature":true,"tool_call":true},"claude-3-7-sonnet-20250219":{"attachment":true,"cost":{"input":3,"output":15},"family":"claude-sonnet","id":"claude-3-7-sonnet-20250219","knowledge":"2024-10-31","last_updated":"2025-02-19","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 3.7","open_weights":false,"reasoning":true,"release_date":"2025-02-19","temperature":true,"tool_call":true},"claude-haiku-4-5-20251001":{"attachment":true,"cost":{"input":1,"output":5},"family":"claude-haiku","id":"claude-haiku-4-5-20251001","knowledge":"2025-02-28","last_updated":"2025-10-15","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Haiku 4.5","open_weights":false,"reasoning":true,"release_date":"2025-10-15","temperature":true,"tool_call":true},"claude-opus-4-1-20250805":{"attachment":true,"cost":{"input":15,"output":75},"family":"claude-opus","id":"claude-opus-4-1-20250805","last_updated":"2025-08-05","limit":{"context":200000,"output":32000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.1","open_weights":false,"reasoning":true,"release_date":"2025-08-05","temperature":true,"tool_call":true},"claude-opus-4-20250514":{"attachment":true,"cost":{"input":15,"output":75},"family":"claude-opus","id":"claude-opus-4-20250514","last_updated":"2025-05-14","limit":{"context":200000,"output":32000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4","open_weights":false,"reasoning":true,"release_date":"2025-05-14","temperature":true,"tool_call":true},"claude-opus-4-5-20251101":{"attachment":true,"cost":{"input":5,"output":25},"family":"claude-opus","id":"claude-opus-4-5-20251101","knowledge":"2025-03-31","last_updated":"2025-11-01","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.5","open_weights":false,"reasoning":true,"release_date":"2025-11-01","temperature":true,"tool_call":true},"claude-opus-4-6":{"attachment":true,"cost":{"input":5,"output":25},"family":"claude-opus","id":"claude-opus-4-6","knowledge":"2025-05-31","last_updated":"2026-02-05","limit":{"context":200000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.6","open_weights":false,"reasoning":true,"release_date":"2026-02-05","temperature":true,"tool_call":true},"claude-sonnet-4-20250514":{"attachment":true,"cost":{"input":3,"output":15},"family":"claude-sonnet","id":"claude-sonnet-4-20250514","last_updated":"2025-05-14","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 4","open_weights":false,"reasoning":true,"release_date":"2025-05-14","temperature":true,"tool_call":true},"claude-sonnet-4-5-20250929":{"attachment":true,"cost":{"input":3,"output":15},"family":"claude-sonnet","id":"claude-sonnet-4-5-20250929","knowledge":"2025-07-31","last_updated":"2025-09-29","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 4.5","open_weights":false,"reasoning":true,"release_date":"2025-09-29","temperature":true,"tool_call":true},"claude-sonnet-4-6":{"attachment":true,"cost":{"input":3,"output":15},"family":"claude-sonnet","id":"claude-sonnet-4-6","knowledge":"2025-08-31","last_updated":"2026-02-17","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 4.6","open_weights":false,"reasoning":true,"release_date":"2026-02-17","temperature":true,"tool_call":true},"deepseek-ai/DeepSeek-R1":{"attachment":false,"cost":{"input":3,"output":7},"family":"deepseek-thinking","id":"deepseek-ai/DeepSeek-R1","last_updated":"2025-01-20","limit":{"context":128000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek R1","open_weights":true,"reasoning":true,"release_date":"2025-01-20","temperature":true,"tool_call":true},"deepseek-ai/DeepSeek-V3.1-Terminus":{"attachment":false,"cost":{"input":0.27,"output":1},"family":"deepseek","id":"deepseek-ai/DeepSeek-V3.1-Terminus","last_updated":"2025-06-01","limit":{"context":128000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V3.1 Terminus","open_weights":true,"reasoning":true,"release_date":"2025-06-01","temperature":true,"tool_call":true},"deepseek-ai/DeepSeek-V3.2":{"attachment":false,"cost":{"input":0.27,"output":0.4},"family":"deepseek","id":"deepseek-ai/DeepSeek-V3.2","last_updated":"2025-06-15","limit":{"context":128000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V3.2","open_weights":true,"reasoning":true,"release_date":"2025-06-15","temperature":true,"tool_call":true},"deepseek/deepseek-v3.1":{"attachment":false,"cost":{"input":0.55,"output":1.66},"family":"deepseek","id":"deepseek/deepseek-v3.1","last_updated":"2025-01-20","limit":{"context":128000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V3.1","open_weights":true,"reasoning":true,"release_date":"2025-01-20","temperature":true,"tool_call":true},"gemini-2.5-flash":{"attachment":true,"cost":{"input":0.3,"output":2.5},"family":"gemini-flash","id":"gemini-2.5-flash","knowledge":"2025-01","last_updated":"2025-06-05","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"Gemini 2.5 Flash","open_weights":false,"reasoning":true,"release_date":"2025-03-20","temperature":true,"tool_call":true},"gemini-2.5-pro":{"attachment":true,"cost":{"input":1.25,"output":10},"family":"gemini-pro","id":"gemini-2.5-pro","knowledge":"2025-01","last_updated":"2025-03-25","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"Gemini 2.5 Pro","open_weights":false,"reasoning":true,"release_date":"2025-03-25","temperature":true,"tool_call":true},"gemini-3-flash-preview":{"attachment":true,"cost":{"input":0.5,"output":3},"family":"gemini-flash","id":"gemini-3-flash-preview","knowledge":"2025-01","last_updated":"2025-12-17","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"Gemini 3 Flash Preview","open_weights":false,"reasoning":true,"release_date":"2025-12-17","temperature":true,"tool_call":true},"gemini-3.1-flash-lite-preview":{"attachment":true,"cost":{"cache_read":0.025,"cache_write":1,"input":0.25,"output":1.5},"family":"gemini-flash","id":"gemini-3.1-flash-lite-preview","last_updated":"2026-03-01","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"Gemini 3.1 Flash Lite Preview","open_weights":false,"reasoning":true,"release_date":"2026-03-01","structured_output":true,"temperature":true,"tool_call":true},"gemini-3.1-pro-preview":{"attachment":true,"cost":{"input":2,"output":12},"family":"gemini-pro","id":"gemini-3.1-pro-preview","knowledge":"2025-01","last_updated":"2026-02-19","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"name":"Gemini 3.1 Pro Preview","open_weights":false,"reasoning":true,"release_date":"2026-02-19","structured_output":true,"temperature":true,"tool_call":true},"gpt-4.1":{"attachment":true,"cost":{"input":2,"output":8},"family":"gpt","id":"gpt-4.1","knowledge":"2024-04","last_updated":"2025-04-14","limit":{"context":1047576,"output":32768},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-4.1","open_weights":false,"reasoning":false,"release_date":"2025-04-14","temperature":true,"tool_call":true},"gpt-4.1-mini":{"attachment":true,"cost":{"input":0.4,"output":1.6},"family":"gpt","id":"gpt-4.1-mini","knowledge":"2024-04","last_updated":"2025-04-14","limit":{"context":1047576,"output":32768},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-4.1 Mini","open_weights":false,"reasoning":false,"release_date":"2025-04-14","temperature":true,"tool_call":true},"gpt-4.1-nano":{"attachment":true,"cost":{"input":0.1,"output":0.4},"family":"gpt","id":"gpt-4.1-nano","knowledge":"2024-04","last_updated":"2025-04-14","limit":{"context":1047576,"output":32768},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-4.1 Nano","open_weights":false,"reasoning":false,"release_date":"2025-04-14","temperature":true,"tool_call":true},"gpt-4o-2024-11-20":{"attachment":true,"cost":{"input":2.5,"output":10},"family":"gpt","id":"gpt-4o-2024-11-20","knowledge":"2024-10","last_updated":"2024-11-20","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image","audio"],"output":["text"]},"name":"GPT-4o (2024-11-20)","open_weights":false,"reasoning":false,"release_date":"2024-11-20","temperature":true,"tool_call":true},"gpt-4o-mini":{"attachment":true,"cost":{"input":0.15,"output":0.6},"family":"gpt","id":"gpt-4o-mini","knowledge":"2024-04","last_updated":"2024-07-18","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-4o Mini","open_weights":false,"reasoning":false,"release_date":"2024-07-18","temperature":true,"tool_call":true},"gpt-5":{"attachment":true,"cost":{"input":1.25,"output":10},"family":"gpt","id":"gpt-5","knowledge":"2024-09-30","last_updated":"2025-08-07","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5","open_weights":false,"reasoning":true,"release_date":"2025-08-07","temperature":false,"tool_call":true},"gpt-5-codex":{"attachment":false,"cost":{"input":1.25,"output":10},"family":"gpt","id":"gpt-5-codex","knowledge":"2024-09-30","last_updated":"2025-09-15","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5 Codex","open_weights":false,"reasoning":true,"release_date":"2025-09-15","structured_output":true,"temperature":false,"tool_call":true},"gpt-5-mini":{"attachment":true,"cost":{"input":0.25,"output":2},"family":"gpt-mini","id":"gpt-5-mini","knowledge":"2024-05-30","last_updated":"2025-08-07","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5 Mini","open_weights":false,"reasoning":true,"release_date":"2025-08-07","temperature":false,"tool_call":true},"gpt-5-nano":{"attachment":true,"cost":{"input":0.05,"output":0.4},"family":"gpt-nano","id":"gpt-5-nano","knowledge":"2024-05-30","last_updated":"2025-08-07","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5 Nano","open_weights":false,"reasoning":true,"release_date":"2025-08-07","temperature":false,"tool_call":true},"gpt-5.1":{"attachment":true,"cost":{"input":1.25,"output":10},"family":"gpt","id":"gpt-5.1","knowledge":"2024-09-30","last_updated":"2025-11-13","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.1","open_weights":false,"reasoning":true,"release_date":"2025-11-13","temperature":false,"tool_call":true},"gpt-5.1-chat-latest":{"attachment":true,"cost":{"input":1.25,"output":10},"family":"gpt","id":"gpt-5.1-chat-latest","knowledge":"2024-09-30","last_updated":"2025-11-13","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.1 Chat Latest","open_weights":false,"reasoning":true,"release_date":"2025-11-13","temperature":false,"tool_call":true},"gpt-5.1-codex":{"attachment":true,"cost":{"input":1.25,"output":10},"family":"gpt","id":"gpt-5.1-codex","knowledge":"2024-09-30","last_updated":"2025-11-13","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.1 Codex","open_weights":false,"reasoning":true,"release_date":"2025-11-13","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.1-codex-max":{"attachment":true,"cost":{"input":1.25,"output":10},"family":"gpt","id":"gpt-5.1-codex-max","knowledge":"2024-09-30","last_updated":"2025-11-13","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.1 Codex Max","open_weights":false,"reasoning":true,"release_date":"2025-11-13","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.2":{"attachment":true,"cost":{"input":1.75,"output":14},"family":"gpt","id":"gpt-5.2","knowledge":"2025-08-31","last_updated":"2025-12-11","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.2","open_weights":false,"reasoning":true,"release_date":"2025-12-11","temperature":false,"tool_call":true},"gpt-5.2-chat-latest":{"attachment":true,"cost":{"input":1.75,"output":14},"family":"gpt","id":"gpt-5.2-chat-latest","knowledge":"2024-09-30","last_updated":"2026-01-01","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.2 Chat Latest","open_weights":false,"reasoning":true,"release_date":"2026-01-01","temperature":true,"tool_call":true},"gpt-5.2-codex":{"attachment":true,"cost":{"input":1.75,"output":14},"family":"gpt","id":"gpt-5.2-codex","knowledge":"2025-08-31","last_updated":"2025-12-11","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5.2 Codex","open_weights":false,"reasoning":true,"release_date":"2025-12-11","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.3-chat-latest":{"attachment":true,"cost":{"input":1.75,"output":14},"family":"gpt","id":"gpt-5.3-chat-latest","last_updated":"2026-03-01","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.3 Chat Latest","open_weights":false,"reasoning":true,"release_date":"2026-03-01","temperature":true,"tool_call":true},"gpt-5.3-codex":{"attachment":true,"cost":{"input":1.75,"output":14},"family":"gpt","id":"gpt-5.3-codex","knowledge":"2025-08-31","last_updated":"2026-02-05","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5.3 Codex","open_weights":false,"reasoning":true,"release_date":"2026-02-05","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.3-codex-xhigh":{"attachment":true,"cost":{"input":1.75,"output":14},"family":"gpt","id":"gpt-5.3-codex-xhigh","knowledge":"2025-08-31","last_updated":"2026-02-05","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5.3 Codex XHigh","open_weights":false,"reasoning":true,"release_date":"2026-02-05","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.4":{"attachment":true,"cost":{"input":2.5,"output":15},"family":"gpt","id":"gpt-5.4","knowledge":"2025-08-31","last_updated":"2026-03-05","limit":{"context":1050000,"input":922000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.4","open_weights":false,"reasoning":true,"release_date":"2026-03-05","structured_output":true,"temperature":false,"tool_call":true},"grok-4-0709":{"attachment":true,"cost":{"input":3,"output":15},"family":"grok","id":"grok-4-0709","last_updated":"2025-07-09","limit":{"context":256000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"Grok 4","open_weights":false,"reasoning":true,"release_date":"2025-07-09","temperature":true,"tool_call":true},"grok-4-1-fast-non-reasoning":{"attachment":true,"cost":{"input":0.2,"output":0.5},"family":"grok","id":"grok-4-1-fast-non-reasoning","last_updated":"2025-11-17","limit":{"context":2000000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"Grok 4.1 Fast (Non-Reasoning)","open_weights":false,"reasoning":false,"release_date":"2025-11-17","temperature":true,"tool_call":true},"grok-4-fast-non-reasoning":{"attachment":true,"cost":{"input":0.2,"output":0.5},"family":"grok","id":"grok-4-fast-non-reasoning","last_updated":"2025-07-09","limit":{"context":2000000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"Grok 4 Fast (Non-Reasoning)","open_weights":false,"reasoning":false,"release_date":"2025-07-09","temperature":true,"tool_call":true},"grok-code-fast-1":{"attachment":true,"cost":{"input":0.2,"output":1.5},"family":"grok","id":"grok-code-fast-1","last_updated":"2025-09-01","limit":{"context":256000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"Grok Code Fast 1","open_weights":false,"reasoning":false,"release_date":"2025-09-01","temperature":true,"tool_call":true},"kimi-k2-turbo-preview":{"attachment":false,"cost":{"input":0.15,"output":8},"family":"kimi","id":"kimi-k2-turbo-preview","last_updated":"2025-07-08","limit":{"context":256000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Kimi K2 Turbo Preview","open_weights":false,"reasoning":false,"release_date":"2025-07-08","temperature":true,"tool_call":true},"kimi-k2.5":{"attachment":false,"cost":{"input":0.6,"output":3},"family":"kimi","id":"kimi-k2.5","knowledge":"2025-01","last_updated":"2026-01","limit":{"context":262144,"output":32768},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Kimi K2.5","open_weights":true,"reasoning":true,"release_date":"2026-01","structured_output":true,"temperature":true,"tool_call":true},"llama-3.3-70b-versatile":{"attachment":false,"cost":{"input":0.59,"output":0.79},"family":"llama","id":"llama-3.3-70b-versatile","last_updated":"2024-12-06","limit":{"context":128000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.3 70B Versatile","open_weights":true,"reasoning":false,"release_date":"2024-12-06","temperature":true,"tool_call":true},"meta-llama/Llama-4-Maverick-17B-128E-Instruct-FP8":{"attachment":true,"cost":{"input":0.14,"output":0.59},"family":"llama","id":"meta-llama/Llama-4-Maverick-17B-128E-Instruct-FP8","knowledge":"2024-08","last_updated":"2025-04-05","limit":{"context":1000000,"output":32768},"modalities":{"input":["text","image"],"output":["text"]},"name":"Llama 4 Maverick 17B 128E Instruct FP8","open_weights":true,"reasoning":false,"release_date":"2025-04-05","temperature":true,"tool_call":true},"meta-llama/Meta-Llama-3.1-405B-Instruct-Turbo":{"attachment":false,"cost":{"input":3.5,"output":3.5},"family":"llama","id":"meta-llama/Meta-Llama-3.1-405B-Instruct-Turbo","last_updated":"2024-07-23","limit":{"context":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.1 405B Instruct Turbo","open_weights":true,"reasoning":false,"release_date":"2024-07-23","temperature":true,"tool_call":true},"meta-llama/Meta-Llama-3.1-8B-Instruct":{"attachment":false,"cost":{"input":0.02,"output":0.05},"family":"llama","id":"meta-llama/Meta-Llama-3.1-8B-Instruct","last_updated":"2024-07-23","limit":{"context":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.1 8B Instruct","open_weights":true,"reasoning":false,"release_date":"2024-07-23","temperature":true,"tool_call":true},"o3":{"attachment":true,"cost":{"input":2,"output":8},"family":"o","id":"o3","knowledge":"2024-05","last_updated":"2025-04-16","limit":{"context":200000,"output":100000},"modalities":{"input":["text","image"],"output":["text"]},"name":"o3","open_weights":false,"reasoning":true,"release_date":"2025-04-16","temperature":false,"tool_call":true},"o3-mini":{"attachment":false,"cost":{"input":1.1,"output":4.4},"family":"o-mini","id":"o3-mini","knowledge":"2024-05","last_updated":"2025-01-29","limit":{"context":200000,"output":100000},"modalities":{"input":["text"],"output":["text"]},"name":"o3-mini","open_weights":false,"reasoning":true,"release_date":"2024-12-20","temperature":false,"tool_call":true},"o3-pro":{"attachment":true,"cost":{"input":20,"output":40},"family":"o-pro","id":"o3-pro","knowledge":"2024-05","last_updated":"2025-06-10","limit":{"context":200000,"output":100000},"modalities":{"input":["text","image"],"output":["text"]},"name":"o3-pro","open_weights":false,"reasoning":true,"release_date":"2025-06-10","temperature":false,"tool_call":true},"o4-mini":{"attachment":true,"cost":{"input":1.1,"output":4.4},"family":"o-mini","id":"o4-mini","knowledge":"2024-05","last_updated":"2025-04-16","limit":{"context":200000,"output":100000},"modalities":{"input":["text","image"],"output":["text"]},"name":"o4-mini","open_weights":false,"reasoning":true,"release_date":"2025-04-16","temperature":false,"tool_call":true},"openai/gpt-oss-120b":{"attachment":true,"cost":{"input":0.08,"output":0.44},"family":"gpt-oss","id":"openai/gpt-oss-120b","last_updated":"2025-08-05","limit":{"context":128000,"output":32768},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-OSS 120B","open_weights":true,"reasoning":true,"release_date":"2025-08-05","temperature":true,"tool_call":true},"qwen-2.5-coder-32b":{"attachment":false,"cost":{"input":0.79,"output":0.79},"family":"qwen","id":"qwen-2.5-coder-32b","last_updated":"2024-11-11","limit":{"context":128000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen 2.5 Coder 32B","open_weights":true,"reasoning":false,"release_date":"2024-11-11","temperature":true,"tool_call":true},"qwen3-max":{"attachment":false,"cost":{"input":1.2,"output":6},"family":"qwen","id":"qwen3-max","last_updated":"2025-05-28","limit":{"context":131072,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Max","open_weights":false,"reasoning":true,"release_date":"2025-05-28","temperature":true,"tool_call":true},"route-llm":{"attachment":true,"cost":{"input":3,"output":15},"family":"gpt","id":"route-llm","knowledge":"2024-10","last_updated":"2024-01-01","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"Route LLM","open_weights":false,"reasoning":false,"release_date":"2024-01-01","temperature":true,"tool_call":true},"zai-org/glm-4.5":{"attachment":false,"cost":{"input":0.6,"output":2.2},"family":"glm","id":"zai-org/glm-4.5","last_updated":"2025-07-28","limit":{"context":128000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4.5","open_weights":true,"reasoning":true,"release_date":"2025-07-28","temperature":true,"tool_call":true},"zai-org/glm-4.6":{"attachment":false,"cost":{"input":0.6,"output":2.2},"family":"glm","id":"zai-org/glm-4.6","last_updated":"2025-03-01","limit":{"context":128000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4.6","open_weights":true,"reasoning":false,"release_date":"2025-03-01","temperature":true,"tool_call":true},"zai-org/glm-4.7":{"attachment":false,"cost":{"input":0.6,"output":2.2},"family":"glm","id":"zai-org/glm-4.7","last_updated":"2025-06-01","limit":{"context":128000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4.7","open_weights":true,"reasoning":false,"release_date":"2025-06-01","temperature":true,"tool_call":true},"zai-org/glm-5":{"attachment":false,"cost":{"input":1,"output":3.2},"family":"glm","id":"zai-org/glm-5","last_updated":"2026-02-11","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-5","open_weights":true,"reasoning":true,"release_date":"2026-02-11","temperature":true,"tool_call":true}},"name":"Abacus","npm":"@ai-sdk/openai-compatible"},"abliteration-ai":{"api":"https://api.abliteration.ai/v1","doc":"https://docs.abliteration.ai/models","env":["ABLIT_KEY"],"id":"abliteration-ai","models":{"abliterated-model":{"attachment":true,"cost":{"input":3,"output":3},"id":"abliterated-model","last_updated":"2026-01-06","limit":{"context":150000,"input":150000,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Abliterated Model","open_weights":true,"reasoning":false,"release_date":"2026-01-06","structured_output":false,"temperature":true,"tool_call":true}},"name":"abliteration.ai","npm":"@ai-sdk/openai-compatible"},"aihubmix":{"doc":"https://docs.aihubmix.com","env":["AIHUBMIX_API_KEY"],"id":"aihubmix","models":{"alicloud-deepseek-v4-flash":{"attachment":false,"cost":{"cache_read":0.028,"input":0.14,"output":0.28},"family":"deepseek-flash","id":"alicloud-deepseek-v4-flash","interleaved":{"field":"reasoning_content"},"knowledge":"2025-05","last_updated":"2026-04-24","limit":{"context":1000000,"output":384000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V4 Flash (Alibaba Cloud)","open_weights":true,"reasoning":true,"release_date":"2026-04-24","structured_output":true,"temperature":true,"tool_call":true},"alicloud-deepseek-v4-pro":{"attachment":false,"cost":{"cache_read":0.13,"input":1.69,"output":3.38},"family":"deepseek-thinking","id":"alicloud-deepseek-v4-pro","interleaved":{"field":"reasoning_content"},"knowledge":"2025-05","last_updated":"2026-04-24","limit":{"context":1000000,"output":384000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V4 Pro (Alibaba Cloud)","open_weights":true,"reasoning":true,"release_date":"2026-04-24","structured_output":true,"temperature":true,"tool_call":true},"alicloud-glm-5.1":{"attachment":false,"cost":{"cache_read":0.169,"cache_write":1.05625,"input":0.84,"output":3.38},"family":"glm","id":"alicloud-glm-5.1","interleaved":{"field":"reasoning_content"},"last_updated":"2026-03-27","limit":{"context":200000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-5.1 (Alibaba Cloud)","open_weights":true,"reasoning":true,"release_date":"2026-03-27","structured_output":true,"temperature":true,"tool_call":true},"claude-opus-4-6":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"context_over_200k":{"cache_read":1,"cache_write":12.5,"input":10,"output":37.5},"input":5,"output":25,"tiers":[{"cache_read":1,"cache_write":12.5,"input":10,"output":37.5,"tier":{"size":200000,"type":"context"}}]},"family":"claude-opus","id":"claude-opus-4-6","interleaved":true,"knowledge":"2025-05-31","last_updated":"2026-03-13","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.6","open_weights":false,"reasoning":true,"release_date":"2026-02-05","structured_output":true,"temperature":true,"tool_call":true},"claude-opus-4-6-think":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"context_over_200k":{"cache_read":1,"cache_write":12.5,"input":10,"output":37.5},"input":5,"output":25,"tiers":[{"cache_read":1,"cache_write":12.5,"input":10,"output":37.5,"tier":{"size":200000,"type":"context"}}]},"family":"claude-opus","id":"claude-opus-4-6-think","interleaved":{"field":"reasoning_content"},"knowledge":"2025-05-31","last_updated":"2026-03-13","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.6 Thinking","open_weights":false,"reasoning":true,"release_date":"2026-02-05","structured_output":true,"temperature":true,"tool_call":true},"claude-opus-4-7":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"context_over_200k":{"cache_read":1,"cache_write":12.5,"input":10,"output":37.5},"input":5,"output":25,"tiers":[{"cache_read":1,"cache_write":12.5,"input":10,"output":37.5,"tier":{"size":200000,"type":"context"}}]},"family":"claude-opus","id":"claude-opus-4-7","interleaved":true,"knowledge":"2026-01-31","last_updated":"2026-04-16","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.7","open_weights":false,"reasoning":true,"release_date":"2026-04-16","structured_output":true,"temperature":false,"tool_call":true},"claude-opus-4-7-think":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"context_over_200k":{"cache_read":1,"cache_write":12.5,"input":10,"output":37.5},"input":5,"output":25,"tiers":[{"cache_read":1,"cache_write":12.5,"input":10,"output":37.5,"tier":{"size":200000,"type":"context"}}]},"family":"claude-opus","id":"claude-opus-4-7-think","interleaved":{"field":"reasoning_content"},"knowledge":"2026-01-31","last_updated":"2026-04-16","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.7 Thinking","open_weights":false,"reasoning":true,"release_date":"2026-04-16","structured_output":true,"temperature":false,"tool_call":true},"claude-sonnet-4-6":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"context_over_200k":{"cache_read":0.6,"cache_write":7.5,"input":6,"output":22.5},"input":3,"output":15,"tiers":[{"cache_read":0.6,"cache_write":7.5,"input":6,"output":22.5,"tier":{"size":200000,"type":"context"}}]},"family":"claude-sonnet","id":"claude-sonnet-4-6","interleaved":true,"knowledge":"2025-08-31","last_updated":"2026-03-13","limit":{"context":1000000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 4.6","open_weights":false,"reasoning":true,"release_date":"2026-02-17","structured_output":true,"temperature":true,"tool_call":true},"claude-sonnet-4-6-think":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"context_over_200k":{"cache_read":0.6,"cache_write":7.5,"input":6,"output":22.5},"input":3,"output":15,"tiers":[{"cache_read":0.6,"cache_write":7.5,"input":6,"output":22.5,"tier":{"size":200000,"type":"context"}}]},"family":"claude-sonnet","id":"claude-sonnet-4-6-think","interleaved":{"field":"reasoning_content"},"knowledge":"2025-08-31","last_updated":"2026-03-13","limit":{"context":1000000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 4.6 Thinking","open_weights":false,"reasoning":true,"release_date":"2026-02-17","structured_output":true,"temperature":true,"tool_call":true},"coding-glm-5.1":{"attachment":false,"cost":{"cache_read":0.013,"input":0.06,"output":0.22},"family":"glm","id":"coding-glm-5.1","interleaved":{"field":"reasoning_content"},"last_updated":"2026-04-11","limit":{"context":200000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"Coding GLM 5.1","open_weights":true,"reasoning":true,"release_date":"2026-04-11","structured_output":true,"temperature":true,"tool_call":true},"coding-glm-5.1-free":{"attachment":false,"cost":{"input":0,"output":0},"family":"glm-free","id":"coding-glm-5.1-free","interleaved":{"field":"reasoning_content"},"last_updated":"2026-04-11","limit":{"context":200000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"Coding GLM 5.1 (free)","open_weights":true,"reasoning":true,"release_date":"2026-04-11","structured_output":true,"temperature":true,"tool_call":true},"coding-minimax-m2.7":{"attachment":false,"cost":{"input":0.2,"output":0.2},"family":"minimax","id":"coding-minimax-m2.7","interleaved":{"field":"reasoning_content"},"last_updated":"2026-03-18","limit":{"context":204800,"output":128100},"modalities":{"input":["text"],"output":["text"]},"name":"Coding MiniMax M2.7","open_weights":true,"reasoning":true,"release_date":"2026-03-18","structured_output":true,"temperature":true,"tool_call":true},"coding-minimax-m2.7-free":{"attachment":false,"cost":{"input":0,"output":0},"family":"minimax-free","id":"coding-minimax-m2.7-free","interleaved":{"field":"reasoning_content"},"last_updated":"2026-03-18","limit":{"context":204800,"output":128100},"modalities":{"input":["text"],"output":["text"]},"name":"Coding MiniMax M2.7 (Free)","open_weights":true,"reasoning":true,"release_date":"2026-03-18","structured_output":true,"temperature":true,"tool_call":true},"coding-minimax-m2.7-highspeed":{"attachment":false,"cost":{"input":0.2,"output":0.2},"family":"minimax","id":"coding-minimax-m2.7-highspeed","interleaved":{"field":"reasoning_content"},"last_updated":"2026-03-18","limit":{"context":204800,"output":128100},"modalities":{"input":["text"],"output":["text"]},"name":"Coding MiniMax M2.7 Highspeed","open_weights":true,"reasoning":true,"release_date":"2026-03-18","structured_output":true,"temperature":true,"tool_call":true},"coding-xiaomi-mimo-v2.5":{"attachment":true,"cost":{"cache_read":0.016,"context_over_200k":{"cache_read":0.032,"input":0.16,"output":0.8},"input":0.08,"output":0.4,"tiers":[{"cache_read":0.032,"input":0.16,"output":0.8,"tier":{"size":256000,"type":"context"}}]},"family":"mimo-v2.5","id":"coding-xiaomi-mimo-v2.5","interleaved":{"field":"reasoning_content"},"knowledge":"2024-12","last_updated":"2026-05-13","limit":{"context":1048576,"output":131072},"modalities":{"input":["text","image","audio","video"],"output":["text"]},"name":"Coding Xiaomi MiMo-V2.5","open_weights":true,"reasoning":true,"release_date":"2026-04-22","temperature":true,"tool_call":true},"coding-xiaomi-mimo-v2.5-pro":{"attachment":false,"cost":{"cache_read":0.04,"context_over_200k":{"cache_read":0.08,"input":0.4,"output":1.2},"input":0.2,"output":0.6,"tiers":[{"cache_read":0.08,"input":0.4,"output":1.2,"tier":{"size":256000,"type":"context"}}]},"family":"mimo-v2.5-pro","id":"coding-xiaomi-mimo-v2.5-pro","interleaved":{"field":"reasoning_content"},"knowledge":"2024-12","last_updated":"2026-05-13","limit":{"context":1048576,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"Coding Xiaomi MiMo-V2.5-Pro","open_weights":true,"reasoning":true,"release_date":"2026-04-22","temperature":true,"tool_call":true},"deep-deepseek-v4-flash":{"attachment":false,"cost":{"cache_read":0.0308,"input":0.154,"output":0.308},"family":"deepseek-flash","id":"deep-deepseek-v4-flash","interleaved":{"field":"reasoning_content"},"knowledge":"2025-05","last_updated":"2026-04-24","limit":{"context":1000000,"output":384000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V4 Flash (DeepSeek)","open_weights":true,"reasoning":true,"release_date":"2026-04-24","structured_output":true,"temperature":true,"tool_call":true},"deep-deepseek-v4-pro":{"attachment":false,"cost":{"cache_read":0.004302,"input":0.478,"output":0.956},"family":"deepseek-thinking","id":"deep-deepseek-v4-pro","interleaved":{"field":"reasoning_content"},"knowledge":"2025-05","last_updated":"2026-04-24","limit":{"context":1000000,"output":384000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V4 Pro (DeepSeek)","open_weights":true,"reasoning":true,"release_date":"2026-04-24","structured_output":true,"temperature":true,"tool_call":true},"doubao-seed-2-0-code-preview":{"attachment":true,"cost":{"cache_read":0.09644,"input":0.48,"output":2.41,"tiers":[{"cache_read":0.144656,"input":0.72,"output":3.62,"tier":{"size":32000,"type":"context"}},{"cache_read":0.28932,"input":1.45,"output":7.23,"tier":{"size":128000,"type":"context"}}]},"family":"seed","id":"doubao-seed-2-0-code-preview","interleaved":{"field":"reasoning_content"},"last_updated":"2026-02-14","limit":{"context":256000,"output":128000},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Doubao Seed 2.0 Code Preview","open_weights":false,"reasoning":true,"release_date":"2026-02-14","structured_output":true,"temperature":true,"tool_call":true},"doubao-seed-2-0-lite-260428":{"attachment":true,"cost":{"cache_read":0.01692,"input":0.08,"input_audio":1.269,"output":0.51,"tiers":[{"cache_read":0.02536,"input":0.13,"input_audio":1.902,"output":0.76,"tier":{"size":32000,"type":"context"}},{"cache_read":0.05072,"input":0.25,"input_audio":3.804,"output":1.52,"tier":{"size":128000,"type":"context"}}]},"family":"seed","id":"doubao-seed-2-0-lite-260428","interleaved":{"field":"reasoning_content"},"last_updated":"2026-04-28","limit":{"context":256000,"output":128000},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Doubao Seed 2.0 Lite 260428","open_weights":false,"reasoning":true,"release_date":"2026-04-28","structured_output":true,"temperature":true,"tool_call":true},"doubao-seed-2-0-mini-260428":{"attachment":true,"cost":{"cache_read":0.00564,"input":0.03,"input_audio":0.423,"output":0.28,"tiers":[{"cache_read":0.01128,"input":0.06,"input_audio":0.846,"output":0.56,"tier":{"size":32000,"type":"context"}},{"cache_read":0.02256,"input":0.11,"input_audio":1.692,"output":1.13,"tier":{"size":128000,"type":"context"}}]},"family":"seed","id":"doubao-seed-2-0-mini-260428","interleaved":{"field":"reasoning_content"},"last_updated":"2026-04-28","limit":{"context":256000,"output":128000},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Doubao Seed 2.0 Mini 260428","open_weights":false,"reasoning":true,"release_date":"2026-04-28","structured_output":true,"temperature":true,"tool_call":true},"doubao-seed-2-0-pro":{"attachment":true,"cost":{"cache_read":0.09644,"input":0.48,"output":2.41,"tiers":[{"cache_read":0.144656,"input":0.72,"output":3.62,"tier":{"size":32000,"type":"context"}},{"cache_read":0.28932,"input":1.45,"output":7.23,"tier":{"size":128000,"type":"context"}}]},"family":"seed","id":"doubao-seed-2-0-pro","interleaved":{"field":"reasoning_content"},"last_updated":"2026-02-14","limit":{"context":256000,"output":128000},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Doubao Seed 2.0 Pro","open_weights":false,"reasoning":true,"release_date":"2026-02-14","structured_output":true,"temperature":true,"tool_call":true},"gemini-2.5-flash":{"attachment":true,"cost":{"cache_read":0.03,"input":0.3,"input_audio":1,"output":2.5},"family":"gemini-flash","id":"gemini-2.5-flash","knowledge":"2025-01","last_updated":"2025-06-05","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"Gemini 2.5 Flash","open_weights":false,"reasoning":true,"release_date":"2025-03-20","structured_output":true,"temperature":true,"tool_call":true},"gemini-2.5-pro":{"attachment":true,"cost":{"cache_read":0.125,"context_over_200k":{"cache_read":0.25,"input":2.5,"output":15},"input":1.25,"output":10,"tiers":[{"cache_read":0.25,"input":2.5,"output":15,"tier":{"size":200000,"type":"context"}}]},"family":"gemini-pro","id":"gemini-2.5-pro","knowledge":"2025-01","last_updated":"2025-06-05","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"Gemini 2.5 Pro","open_weights":false,"reasoning":true,"release_date":"2025-03-20","structured_output":true,"temperature":true,"tool_call":true},"gemini-3-flash-preview":{"attachment":true,"cost":{"cache_read":0.05,"context_over_200k":{"cache_read":0.05,"input":0.5,"output":3},"input":0.5,"output":3,"tiers":[{"cache_read":0.05,"input":0.5,"output":3,"tier":{"size":200000,"type":"context"}}]},"family":"gemini-flash","id":"gemini-3-flash-preview","knowledge":"2025-01","last_updated":"2025-12-17","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"Gemini 3 Flash Preview","open_weights":false,"reasoning":true,"release_date":"2025-12-17","structured_output":true,"temperature":true,"tool_call":true},"gemini-3.1-flash-lite":{"attachment":true,"cost":{"cache_read":0.025,"cache_write":1,"input":0.25,"output":1.5},"family":"gemini-flash-lite","id":"gemini-3.1-flash-lite","knowledge":"2025-01","last_updated":"2026-05-07","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"Gemini 3.1 Flash Lite","open_weights":false,"reasoning":true,"release_date":"2026-05-07","structured_output":true,"temperature":true,"tool_call":true},"gemini-3.1-pro-preview":{"attachment":true,"cost":{"cache_read":0.2,"context_over_200k":{"cache_read":0.4,"input":4,"output":18},"input":2,"output":12,"tiers":[{"cache_read":0.4,"input":4,"output":18,"tier":{"size":200000,"type":"context"}}]},"family":"gemini-pro","id":"gemini-3.1-pro-preview","knowledge":"2025-01","last_updated":"2026-02-19","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"Gemini 3.1 Pro Preview","open_weights":false,"reasoning":true,"release_date":"2026-02-19","structured_output":true,"temperature":true,"tool_call":true},"gemini-3.1-pro-preview-customtools":{"attachment":true,"cost":{"cache_read":0.2,"context_over_200k":{"cache_read":0.4,"input":4,"output":18},"input":2,"output":12,"tiers":[{"cache_read":0.4,"input":4,"output":18,"tier":{"size":200000,"type":"context"}}]},"family":"gemini-pro","id":"gemini-3.1-pro-preview-customtools","knowledge":"2025-01","last_updated":"2026-02-19","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"Gemini 3.1 Pro Preview Custom Tools","open_weights":false,"reasoning":true,"release_date":"2026-02-19","structured_output":true,"temperature":true,"tool_call":true},"glm-5v-turbo":{"attachment":true,"cost":{"cache_read":0.169008,"input":0.7042,"output":3.09848},"family":"glmv","id":"glm-5v-turbo","interleaved":{"field":"reasoning_content"},"last_updated":"2026-05-09","limit":{"context":200000,"output":128000},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"GLM 5 Vision Turbo","open_weights":false,"reasoning":true,"release_date":"2026-05-09","structured_output":true,"temperature":true,"tool_call":true},"gpt-5.1":{"attachment":true,"cost":{"cache_read":0.13,"input":1.25,"output":10},"family":"gpt","id":"gpt-5.1","knowledge":"2024-09-30","last_updated":"2025-11-13","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.1","open_weights":false,"reasoning":true,"release_date":"2025-11-13","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.1-codex":{"attachment":true,"cost":{"cache_read":0.125,"input":1.25,"output":10},"family":"gpt-codex","id":"gpt-5.1-codex","knowledge":"2024-09-30","last_updated":"2025-11-13","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.1 Codex","open_weights":false,"reasoning":true,"release_date":"2025-11-13","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.1-codex-mini":{"attachment":true,"cost":{"cache_read":0.025,"input":0.25,"output":2},"family":"gpt-codex","id":"gpt-5.1-codex-mini","knowledge":"2024-09-30","last_updated":"2025-11-13","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.1 Codex mini","open_weights":false,"reasoning":true,"release_date":"2025-11-13","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.2":{"attachment":true,"cost":{"cache_read":0.175,"input":1.75,"output":14},"family":"gpt","id":"gpt-5.2","knowledge":"2025-08-31","last_updated":"2025-12-11","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.2","open_weights":false,"reasoning":true,"release_date":"2025-12-11","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.2-codex":{"attachment":true,"cost":{"cache_read":0.175,"input":1.75,"output":14},"family":"gpt-codex","id":"gpt-5.2-codex","knowledge":"2025-08-31","last_updated":"2025-12-11","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5.2 Codex","open_weights":false,"reasoning":true,"release_date":"2025-12-11","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.3-codex":{"attachment":true,"cost":{"cache_read":0.175,"input":1.75,"output":14},"family":"gpt-codex","id":"gpt-5.3-codex","knowledge":"2025-08-31","last_updated":"2026-02-05","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5.3 Codex","open_weights":false,"reasoning":true,"release_date":"2026-02-05","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.4":{"attachment":true,"cost":{"cache_read":0.25,"context_over_200k":{"cache_read":0.5,"input":5,"output":22.5},"input":2.5,"output":15,"tiers":[{"cache_read":0.5,"input":5,"output":22.5,"tier":{"size":272000,"type":"context"}}]},"experimental":{"modes":{"fast":{"cost":{"cache_read":0.5,"input":5,"output":30},"provider":{"body":{"service_tier":"priority"}}}}},"family":"gpt","id":"gpt-5.4","knowledge":"2025-08-31","last_updated":"2026-03-05","limit":{"context":1050000,"input":922000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5.4","open_weights":false,"reasoning":true,"release_date":"2026-03-05","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.4-mini":{"attachment":true,"cost":{"cache_read":0.075,"input":0.75,"output":4.5},"experimental":{"modes":{"fast":{"cost":{"cache_read":0.15,"input":1.5,"output":9},"provider":{"body":{"service_tier":"priority"}}}}},"family":"gpt-mini","id":"gpt-5.4-mini","knowledge":"2025-08-31","last_updated":"2026-03-17","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.4 mini","open_weights":false,"reasoning":true,"release_date":"2026-03-17","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.5":{"attachment":true,"cost":{"cache_read":0.5,"context_over_200k":{"cache_read":1,"input":10,"output":45},"input":5,"output":30,"tiers":[{"cache_read":1,"input":10,"output":45,"tier":{"size":272000,"type":"context"}}]},"experimental":{"modes":{"fast":{"cost":{"cache_read":1.25,"input":12.5,"output":75},"provider":{"body":{"service_tier":"priority"}}}}},"family":"gpt","id":"gpt-5.5","knowledge":"2025-12-01","last_updated":"2026-04-23","limit":{"context":1050000,"input":922000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5.5","open_weights":false,"reasoning":true,"release_date":"2026-04-23","structured_output":true,"temperature":false,"tool_call":true},"grok-4.3":{"attachment":true,"cost":{"cache_read":0.2,"context_over_200k":{"cache_read":0.4,"input":2.5,"output":5},"input":1.25,"output":2.5,"tiers":[{"cache_read":0.4,"input":2.5,"output":5,"tier":{"size":200000,"type":"context"}}]},"family":"grok","id":"grok-4.3","last_updated":"2026-05-01","limit":{"context":1000000,"output":1000000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Grok 4.3","open_weights":false,"reasoning":true,"release_date":"2026-05-01","structured_output":true,"temperature":true,"tool_call":true},"kimi-k2.5":{"attachment":true,"cost":{"cache_read":0.1,"input":0.6,"output":3},"family":"kimi-k2.5","id":"kimi-k2.5","interleaved":{"field":"reasoning_content"},"knowledge":"2025-01","last_updated":"2026-01","limit":{"context":262144,"output":32768},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Kimi K2.5","open_weights":true,"reasoning":true,"release_date":"2026-01","structured_output":true,"temperature":false,"tool_call":true},"kimi-k2.6":{"attachment":true,"cost":{"cache_read":0.16,"input":0.95,"output":4},"family":"kimi-k2.6","id":"kimi-k2.6","interleaved":{"field":"reasoning_content"},"knowledge":"2025-01","last_updated":"2026-04-21","limit":{"context":262144,"output":32768},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Kimi K2.6","open_weights":true,"reasoning":true,"release_date":"2026-04-21","structured_output":true,"temperature":false,"tool_call":true},"minimax-m2.7":{"attachment":false,"cost":{"cache_read":0.06,"cache_write":0.375,"input":0.3,"output":1.2},"family":"minimax","id":"minimax-m2.7","interleaved":{"field":"reasoning_content"},"last_updated":"2026-03-18","limit":{"context":204800,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax M2.7","open_weights":true,"reasoning":true,"release_date":"2026-03-18","structured_output":true,"temperature":true,"tool_call":true},"qwen3.6-flash":{"attachment":true,"cost":{"cache_read":0.0169,"cache_write":0.21125,"context_over_200k":{"cache_read":0.0676,"cache_write":0.845,"input":0.68,"output":4.06},"input":0.17,"output":1.01,"tiers":[{"cache_read":0.0676,"cache_write":0.845,"input":0.68,"output":4.06,"tier":{"size":256000,"type":"context"}}]},"family":"qwen3.6","id":"qwen3.6-flash","interleaved":{"field":"reasoning_content"},"knowledge":"2025-04","last_updated":"2026-04-02","limit":{"context":991000,"output":64000},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.6 Flash","open_weights":false,"reasoning":true,"release_date":"2026-04-02","structured_output":true,"temperature":true,"tool_call":true},"qwen3.6-max-preview":{"attachment":false,"cost":{"cache_read":0.1268,"cache_write":1.585,"input":1.27,"output":7.61,"tiers":[{"cache_read":0.2112,"cache_write":2.64,"input":2.11,"output":12.67,"tier":{"size":128000,"type":"context"}}]},"family":"qwen3.6","id":"qwen3.6-max-preview","interleaved":{"field":"reasoning_content"},"knowledge":"2025-04","last_updated":"2026-05-09","limit":{"context":240000,"output":64000},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3.6 Max Preview","open_weights":false,"reasoning":true,"release_date":"2026-05-09","structured_output":true,"temperature":true,"tool_call":true},"qwen3.6-plus":{"attachment":true,"cost":{"cache_read":0.0282,"cache_write":0.3525,"context_over_200k":{"cache_read":0.1128,"cache_write":1.41,"input":1.13,"output":6.77},"input":0.28,"output":1.69,"tiers":[{"cache_read":0.1128,"cache_write":1.41,"input":1.13,"output":6.77,"tier":{"size":256000,"type":"context"}}]},"family":"qwen3.6","id":"qwen3.6-plus","interleaved":{"field":"reasoning_content"},"knowledge":"2025-04","last_updated":"2026-05-09","limit":{"context":991000,"output":64000},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.6 Plus","open_weights":false,"reasoning":true,"release_date":"2026-05-09","structured_output":true,"temperature":true,"tool_call":true},"xiaomi-mimo-v2.5":{"attachment":true,"cost":{"cache_read":0.088,"context_over_200k":{"cache_read":0.176,"input":0.88,"output":4.4},"input":0.44,"output":2.2,"tiers":[{"cache_read":0.176,"input":0.88,"output":4.4,"tier":{"size":256000,"type":"context"}}]},"family":"mimo-v2.5","id":"xiaomi-mimo-v2.5","interleaved":{"field":"reasoning_content"},"knowledge":"2024-12","last_updated":"2026-05-13","limit":{"context":1048576,"output":131072},"modalities":{"input":["text","image","audio","video"],"output":["text"]},"name":"Xiaomi MiMo-V2.5","open_weights":true,"reasoning":true,"release_date":"2026-04-22","temperature":true,"tool_call":true},"xiaomi-mimo-v2.5-free":{"attachment":true,"cost":{"cache_read":0,"input":0,"output":0},"family":"mimo-v2.5","id":"xiaomi-mimo-v2.5-free","interleaved":{"field":"reasoning_content"},"knowledge":"2024-12","last_updated":"2026-05-13","limit":{"context":1048576,"output":131072},"modalities":{"input":["text","image","audio","video"],"output":["text"]},"name":"Xiaomi MiMo-V2.5 (free)","open_weights":true,"reasoning":true,"release_date":"2026-04-22","temperature":true,"tool_call":true},"xiaomi-mimo-v2.5-pro":{"attachment":false,"cost":{"cache_read":0.22,"context_over_200k":{"cache_read":0.44,"input":2.2,"output":6.6},"input":1.1,"output":3.3,"tiers":[{"cache_read":0.44,"input":2.2,"output":6.6,"tier":{"size":256000,"type":"context"}}]},"family":"mimo-v2.5-pro","id":"xiaomi-mimo-v2.5-pro","interleaved":{"field":"reasoning_content"},"knowledge":"2024-12","last_updated":"2026-05-13","limit":{"context":1048576,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"Xiaomi MiMo-V2.5-Pro","open_weights":true,"reasoning":true,"release_date":"2026-04-22","temperature":true,"tool_call":true},"xiaomi-mimo-v2.5-pro-free":{"attachment":false,"cost":{"cache_read":0,"input":0,"output":0},"family":"mimo-v2.5-pro","id":"xiaomi-mimo-v2.5-pro-free","interleaved":{"field":"reasoning_content"},"knowledge":"2024-12","last_updated":"2026-05-13","limit":{"context":1048576,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"Xiaomi MiMo-V2.5-Pro (free)","open_weights":true,"reasoning":true,"release_date":"2026-04-22","temperature":true,"tool_call":true},"zai-glm-5.1":{"attachment":false,"cost":{"cache_read":0.183112,"input":0.845,"output":3.38},"family":"glm","id":"zai-glm-5.1","interleaved":{"field":"reasoning_content"},"last_updated":"2026-03-27","limit":{"context":200000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-5.1 (Z.ai)","open_weights":true,"reasoning":true,"release_date":"2026-03-27","structured_output":true,"temperature":true,"tool_call":true}},"name":"AIHubMix","npm":"@aihubmix/ai-sdk-provider"},"alibaba":{"api":"https://dashscope-intl.aliyuncs.com/compatible-mode/v1","doc":"https://www.alibabacloud.com/help/en/model-studio/models","env":["DASHSCOPE_API_KEY"],"id":"alibaba","models":{"qvq-max":{"attachment":false,"cost":{"input":1.2,"output":4.8},"family":"qvq","id":"qvq-max","knowledge":"2024-04","last_updated":"2025-03-25","limit":{"context":131072,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"QVQ Max","open_weights":false,"reasoning":true,"release_date":"2025-03-25","temperature":true,"tool_call":true},"qwen-flash":{"attachment":false,"cost":{"input":0.05,"output":0.4},"family":"qwen","id":"qwen-flash","knowledge":"2024-04","last_updated":"2025-07-28","limit":{"context":1000000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen Flash","open_weights":false,"reasoning":true,"release_date":"2025-07-28","temperature":true,"tool_call":true},"qwen-max":{"attachment":false,"cost":{"input":1.6,"output":6.4},"family":"qwen","id":"qwen-max","knowledge":"2024-04","last_updated":"2025-01-25","limit":{"context":32768,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen Max","open_weights":false,"reasoning":false,"release_date":"2024-04-03","temperature":true,"tool_call":true},"qwen-mt-plus":{"attachment":false,"cost":{"input":2.46,"output":7.37},"family":"qwen","id":"qwen-mt-plus","knowledge":"2024-04","last_updated":"2025-01","limit":{"context":16384,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen-MT Plus","open_weights":false,"reasoning":false,"release_date":"2025-01","temperature":true,"tool_call":false},"qwen-mt-turbo":{"attachment":false,"cost":{"input":0.16,"output":0.49},"family":"qwen","id":"qwen-mt-turbo","knowledge":"2024-04","last_updated":"2025-01","limit":{"context":16384,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen-MT Turbo","open_weights":false,"reasoning":false,"release_date":"2025-01","temperature":true,"tool_call":false},"qwen-omni-turbo":{"attachment":false,"cost":{"input":0.07,"input_audio":4.44,"output":0.27,"output_audio":8.89},"family":"qwen","id":"qwen-omni-turbo","knowledge":"2024-04","last_updated":"2025-03-26","limit":{"context":32768,"output":2048},"modalities":{"input":["text","image","audio","video"],"output":["text","audio"]},"name":"Qwen-Omni Turbo","open_weights":false,"reasoning":false,"release_date":"2025-01-19","temperature":true,"tool_call":true},"qwen-omni-turbo-realtime":{"attachment":false,"cost":{"input":0.27,"input_audio":4.44,"output":1.07,"output_audio":8.89},"family":"qwen","id":"qwen-omni-turbo-realtime","knowledge":"2024-04","last_updated":"2025-05-08","limit":{"context":32768,"output":2048},"modalities":{"input":["text","image","audio"],"output":["text","audio"]},"name":"Qwen-Omni Turbo Realtime","open_weights":false,"reasoning":false,"release_date":"2025-05-08","temperature":true,"tool_call":true},"qwen-plus":{"attachment":false,"cost":{"input":0.4,"output":1.2,"reasoning":4},"family":"qwen","id":"qwen-plus","knowledge":"2024-04","last_updated":"2025-09-11","limit":{"context":1000000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen Plus","open_weights":false,"reasoning":true,"release_date":"2024-01-25","temperature":true,"tool_call":true},"qwen-plus-character-ja":{"attachment":false,"cost":{"input":0.5,"output":1.4},"family":"qwen","id":"qwen-plus-character-ja","knowledge":"2024-04","last_updated":"2024-01","limit":{"context":8192,"output":512},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen Plus Character (Japanese)","open_weights":false,"reasoning":false,"release_date":"2024-01","temperature":true,"tool_call":true},"qwen-turbo":{"attachment":false,"cost":{"input":0.05,"output":0.2,"reasoning":0.5},"family":"qwen","id":"qwen-turbo","knowledge":"2024-04","last_updated":"2025-04-28","limit":{"context":1000000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen Turbo","open_weights":false,"reasoning":true,"release_date":"2024-11-01","temperature":true,"tool_call":true},"qwen-vl-max":{"attachment":false,"cost":{"input":0.8,"output":3.2},"family":"qwen","id":"qwen-vl-max","knowledge":"2024-04","last_updated":"2025-08-13","limit":{"context":131072,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen-VL Max","open_weights":false,"reasoning":false,"release_date":"2024-04-08","temperature":true,"tool_call":true},"qwen-vl-ocr":{"attachment":false,"cost":{"input":0.72,"output":0.72},"family":"qwen","id":"qwen-vl-ocr","knowledge":"2024-04","last_updated":"2025-04-13","limit":{"context":34096,"output":4096},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen-VL OCR","open_weights":false,"reasoning":false,"release_date":"2024-10-28","temperature":true,"tool_call":false},"qwen-vl-plus":{"attachment":false,"cost":{"input":0.21,"output":0.63},"family":"qwen","id":"qwen-vl-plus","knowledge":"2024-04","last_updated":"2025-08-15","limit":{"context":131072,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen-VL Plus","open_weights":false,"reasoning":false,"release_date":"2024-01-25","temperature":true,"tool_call":true},"qwen2-5-14b-instruct":{"attachment":false,"cost":{"input":0.35,"output":1.4},"family":"qwen","id":"qwen2-5-14b-instruct","knowledge":"2024-04","last_updated":"2024-09","limit":{"context":131072,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen2.5 14B Instruct","open_weights":true,"reasoning":false,"release_date":"2024-09","temperature":true,"tool_call":true},"qwen2-5-32b-instruct":{"attachment":false,"cost":{"input":0.7,"output":2.8},"family":"qwen","id":"qwen2-5-32b-instruct","knowledge":"2024-04","last_updated":"2024-09","limit":{"context":131072,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen2.5 32B Instruct","open_weights":true,"reasoning":false,"release_date":"2024-09","temperature":true,"tool_call":true},"qwen2-5-72b-instruct":{"attachment":false,"cost":{"input":1.4,"output":5.6},"family":"qwen","id":"qwen2-5-72b-instruct","knowledge":"2024-04","last_updated":"2024-09","limit":{"context":131072,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen2.5 72B Instruct","open_weights":true,"reasoning":false,"release_date":"2024-09","temperature":true,"tool_call":true},"qwen2-5-7b-instruct":{"attachment":false,"cost":{"input":0.175,"output":0.7},"family":"qwen","id":"qwen2-5-7b-instruct","knowledge":"2024-04","last_updated":"2024-09","limit":{"context":131072,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen2.5 7B Instruct","open_weights":true,"reasoning":false,"release_date":"2024-09","temperature":true,"tool_call":true},"qwen2-5-omni-7b":{"attachment":false,"cost":{"input":0.1,"input_audio":6.76,"output":0.4},"family":"qwen","id":"qwen2-5-omni-7b","knowledge":"2024-04","last_updated":"2024-12","limit":{"context":32768,"output":2048},"modalities":{"input":["text","image","audio","video"],"output":["text","audio"]},"name":"Qwen2.5-Omni 7B","open_weights":true,"reasoning":false,"release_date":"2024-12","temperature":true,"tool_call":true},"qwen2-5-vl-72b-instruct":{"attachment":false,"cost":{"input":2.8,"output":8.4},"family":"qwen","id":"qwen2-5-vl-72b-instruct","knowledge":"2024-04","last_updated":"2024-09","limit":{"context":131072,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen2.5-VL 72B Instruct","open_weights":true,"reasoning":false,"release_date":"2024-09","temperature":true,"tool_call":true},"qwen2-5-vl-7b-instruct":{"attachment":false,"cost":{"input":0.35,"output":1.05},"family":"qwen","id":"qwen2-5-vl-7b-instruct","knowledge":"2024-04","last_updated":"2024-09","limit":{"context":131072,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen2.5-VL 7B Instruct","open_weights":true,"reasoning":false,"release_date":"2024-09","temperature":true,"tool_call":true},"qwen3-14b":{"attachment":false,"cost":{"input":0.35,"output":1.4,"reasoning":4.2},"family":"qwen","id":"qwen3-14b","knowledge":"2025-04","last_updated":"2025-04","limit":{"context":131072,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 14B","open_weights":true,"reasoning":true,"release_date":"2025-04","temperature":true,"tool_call":true},"qwen3-235b-a22b":{"attachment":false,"cost":{"input":0.7,"output":2.8,"reasoning":8.4},"family":"qwen","id":"qwen3-235b-a22b","knowledge":"2025-04","last_updated":"2025-04","limit":{"context":131072,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 235B-A22B","open_weights":true,"reasoning":true,"release_date":"2025-04","temperature":true,"tool_call":true},"qwen3-32b":{"attachment":false,"cost":{"input":0.7,"output":2.8,"reasoning":8.4},"family":"qwen","id":"qwen3-32b","knowledge":"2025-04","last_updated":"2025-04","limit":{"context":131072,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 32B","open_weights":true,"reasoning":true,"release_date":"2025-04","temperature":true,"tool_call":true},"qwen3-8b":{"attachment":false,"cost":{"input":0.18,"output":0.7,"reasoning":2.1},"family":"qwen","id":"qwen3-8b","knowledge":"2025-04","last_updated":"2025-04","limit":{"context":131072,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 8B","open_weights":true,"reasoning":true,"release_date":"2025-04","temperature":true,"tool_call":true},"qwen3-asr-flash":{"attachment":false,"cost":{"input":0.035,"output":0.035},"family":"qwen","id":"qwen3-asr-flash","knowledge":"2024-04","last_updated":"2025-09-08","limit":{"context":53248,"output":4096},"modalities":{"input":["audio"],"output":["text"]},"name":"Qwen3-ASR Flash","open_weights":false,"reasoning":false,"release_date":"2025-09-08","temperature":false,"tool_call":false},"qwen3-coder-30b-a3b-instruct":{"attachment":false,"cost":{"input":0.45,"output":2.25},"family":"qwen","id":"qwen3-coder-30b-a3b-instruct","knowledge":"2025-04","last_updated":"2025-04","limit":{"context":262144,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3-Coder 30B-A3B Instruct","open_weights":true,"reasoning":false,"release_date":"2025-04","temperature":true,"tool_call":true},"qwen3-coder-480b-a35b-instruct":{"attachment":false,"cost":{"input":1.5,"output":7.5},"family":"qwen","id":"qwen3-coder-480b-a35b-instruct","knowledge":"2025-04","last_updated":"2025-04","limit":{"context":262144,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3-Coder 480B-A35B Instruct","open_weights":true,"reasoning":false,"release_date":"2025-04","temperature":true,"tool_call":true},"qwen3-coder-flash":{"attachment":false,"cost":{"input":0.3,"output":1.5},"family":"qwen","id":"qwen3-coder-flash","knowledge":"2025-04","last_updated":"2025-07-28","limit":{"context":1000000,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Coder Flash","open_weights":false,"reasoning":false,"release_date":"2025-07-28","temperature":true,"tool_call":true},"qwen3-coder-plus":{"attachment":false,"cost":{"input":1,"output":5},"family":"qwen","id":"qwen3-coder-plus","knowledge":"2025-04","last_updated":"2025-07-23","limit":{"context":1048576,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Coder Plus","open_weights":true,"reasoning":false,"release_date":"2025-07-23","temperature":true,"tool_call":true},"qwen3-livetranslate-flash-realtime":{"attachment":false,"cost":{"input":10,"input_audio":10,"output":10,"output_audio":38},"family":"qwen","id":"qwen3-livetranslate-flash-realtime","knowledge":"2024-04","last_updated":"2025-09-22","limit":{"context":53248,"output":4096},"modalities":{"input":["text","image","audio","video"],"output":["text","audio"]},"name":"Qwen3-LiveTranslate Flash Realtime","open_weights":false,"reasoning":false,"release_date":"2025-09-22","temperature":true,"tool_call":false},"qwen3-max":{"attachment":false,"cost":{"input":1.2,"output":6},"family":"qwen","id":"qwen3-max","knowledge":"2025-04","last_updated":"2025-09-23","limit":{"context":262144,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Max","open_weights":false,"reasoning":false,"release_date":"2025-09-23","temperature":true,"tool_call":true},"qwen3-next-80b-a3b-instruct":{"attachment":false,"cost":{"input":0.5,"output":2},"family":"qwen","id":"qwen3-next-80b-a3b-instruct","knowledge":"2025-04","last_updated":"2025-09","limit":{"context":131072,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3-Next 80B-A3B Instruct","open_weights":true,"reasoning":false,"release_date":"2025-09","temperature":true,"tool_call":true},"qwen3-next-80b-a3b-thinking":{"attachment":false,"cost":{"input":0.5,"output":6},"family":"qwen","id":"qwen3-next-80b-a3b-thinking","knowledge":"2025-04","last_updated":"2025-09","limit":{"context":131072,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3-Next 80B-A3B (Thinking)","open_weights":true,"reasoning":true,"release_date":"2025-09","temperature":true,"tool_call":true},"qwen3-omni-flash":{"attachment":false,"cost":{"input":0.43,"input_audio":3.81,"output":1.66,"output_audio":15.11},"family":"qwen","id":"qwen3-omni-flash","knowledge":"2024-04","last_updated":"2025-09-15","limit":{"context":65536,"output":16384},"modalities":{"input":["text","image","audio","video"],"output":["text","audio"]},"name":"Qwen3-Omni Flash","open_weights":false,"reasoning":true,"release_date":"2025-09-15","temperature":true,"tool_call":true},"qwen3-omni-flash-realtime":{"attachment":false,"cost":{"input":0.52,"input_audio":4.57,"output":1.99,"output_audio":18.13},"family":"qwen","id":"qwen3-omni-flash-realtime","knowledge":"2024-04","last_updated":"2025-09-15","limit":{"context":65536,"output":16384},"modalities":{"input":["text","image","audio","video"],"output":["text","audio"]},"name":"Qwen3-Omni Flash Realtime","open_weights":false,"reasoning":false,"release_date":"2025-09-15","temperature":true,"tool_call":true},"qwen3-vl-235b-a22b":{"attachment":false,"cost":{"input":0.7,"output":2.8,"reasoning":8.4},"family":"qwen","id":"qwen3-vl-235b-a22b","knowledge":"2025-04","last_updated":"2025-04","limit":{"context":131072,"output":32768},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen3-VL 235B-A22B","open_weights":true,"reasoning":true,"release_date":"2025-04","temperature":true,"tool_call":true},"qwen3-vl-30b-a3b":{"attachment":false,"cost":{"input":0.2,"output":0.8,"reasoning":2.4},"family":"qwen","id":"qwen3-vl-30b-a3b","knowledge":"2025-04","last_updated":"2025-04","limit":{"context":131072,"output":32768},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen3-VL 30B-A3B","open_weights":true,"reasoning":true,"release_date":"2025-04","temperature":true,"tool_call":true},"qwen3-vl-plus":{"attachment":false,"cost":{"input":0.2,"output":1.6,"reasoning":4.8},"family":"qwen","id":"qwen3-vl-plus","knowledge":"2025-04","last_updated":"2025-09-23","limit":{"context":262144,"output":32768},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen3-VL Plus","open_weights":false,"reasoning":true,"release_date":"2025-09-23","temperature":true,"tool_call":true},"qwen3.5-122b-a10b":{"attachment":true,"cost":{"input":0.4,"output":3.2},"family":"qwen","id":"qwen3.5-122b-a10b","last_updated":"2026-02-23","limit":{"context":262144,"output":65536},"modalities":{"input":["text","image","video","audio"],"output":["text"]},"name":"Qwen3.5 122B-A10B","open_weights":true,"reasoning":true,"release_date":"2026-02-23","structured_output":true,"temperature":true,"tool_call":true},"qwen3.5-27b":{"attachment":true,"cost":{"input":0.3,"output":2.4},"family":"qwen","id":"qwen3.5-27b","last_updated":"2026-02-23","limit":{"context":262144,"output":65536},"modalities":{"input":["text","image","video","audio"],"output":["text"]},"name":"Qwen3.5 27B","open_weights":true,"reasoning":true,"release_date":"2026-02-23","structured_output":true,"temperature":true,"tool_call":true},"qwen3.5-35b-a3b":{"attachment":true,"cost":{"input":0.25,"output":2},"family":"qwen","id":"qwen3.5-35b-a3b","last_updated":"2026-02-23","limit":{"context":262144,"output":65536},"modalities":{"input":["text","image","video","audio"],"output":["text"]},"name":"Qwen3.5 35B-A3B","open_weights":true,"reasoning":true,"release_date":"2026-02-23","structured_output":true,"temperature":true,"tool_call":true},"qwen3.5-397b-a17b":{"attachment":true,"cost":{"input":0.6,"output":3.6},"family":"qwen","id":"qwen3.5-397b-a17b","last_updated":"2026-02-15","limit":{"context":262144,"output":65536},"modalities":{"input":["text","image","video","audio"],"output":["text"]},"name":"Qwen3.5 397B-A17B","open_weights":true,"reasoning":true,"release_date":"2026-02-15","structured_output":true,"temperature":true,"tool_call":true},"qwen3.5-plus":{"attachment":false,"cost":{"input":0.4,"output":2.4,"reasoning":2.4},"family":"qwen","id":"qwen3.5-plus","knowledge":"2025-04","last_updated":"2026-02-16","limit":{"context":1000000,"output":65536},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.5 Plus","open_weights":false,"reasoning":true,"release_date":"2026-02-16","temperature":true,"tool_call":true},"qwen3.6-27b":{"attachment":true,"cost":{"input":0.6,"output":3.6},"family":"qwen","id":"qwen3.6-27b","last_updated":"2026-04-22","limit":{"context":262144,"output":65536},"modalities":{"input":["text","image","video","audio"],"output":["text"]},"name":"Qwen3.6 27B","open_weights":true,"reasoning":true,"release_date":"2026-04-22","structured_output":true,"temperature":true,"tool_call":true},"qwen3.6-35b-a3b":{"attachment":true,"cost":{"input":0.248,"output":1.485},"family":"qwen","id":"qwen3.6-35b-a3b","last_updated":"2026-04-17","limit":{"context":262144,"output":65536},"modalities":{"input":["text","image","video","audio"],"output":["text"]},"name":"Qwen3.6 35B-A3B","open_weights":true,"reasoning":true,"release_date":"2026-04-17","structured_output":true,"temperature":true,"tool_call":true},"qwen3.6-flash":{"attachment":true,"cost":{"cache_write":0.234375,"input":0.1875,"output":1.125},"family":"qwen3.6","id":"qwen3.6-flash","last_updated":"2026-04-27","limit":{"context":1000000,"output":65536},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.6 Flash","open_weights":false,"reasoning":true,"release_date":"2026-04-27","structured_output":true,"temperature":true,"tool_call":true},"qwen3.6-max-preview":{"attachment":false,"cost":{"cache_read":0.13,"cache_write":1.625,"input":1.3,"output":7.8},"family":"qwen","id":"qwen3.6-max-preview","knowledge":"2025-04","last_updated":"2026-04-20","limit":{"context":262144,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3.6 Max Preview","open_weights":false,"reasoning":true,"release_date":"2026-04-20","temperature":true,"tool_call":true},"qwen3.6-plus":{"attachment":false,"cost":{"cache_read":0.05,"cache_write":0.625,"context_over_200k":{"cache_read":0.2,"cache_write":2.5,"input":2,"output":6},"input":0.5,"output":3,"tiers":[{"cache_read":0.2,"cache_write":2.5,"input":2,"output":6,"tier":{"size":256000,"type":"context"}}]},"family":"qwen","id":"qwen3.6-plus","knowledge":"2025-04","last_updated":"2026-04-02","limit":{"context":1000000,"output":65536},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.6 Plus","open_weights":false,"reasoning":true,"release_date":"2026-04-02","temperature":true,"tool_call":true},"qwen3.7-max":{"attachment":false,"cost":{"cache_read":0.5,"cache_write":3.125,"input":2.5,"output":7.5},"family":"qwen","id":"qwen3.7-max","last_updated":"2026-05-21","limit":{"context":1000000,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3.7 Max","open_weights":false,"reasoning":true,"release_date":"2026-05-21","temperature":true,"tool_call":true},"qwen3.7-plus":{"attachment":false,"cost":{"cache_read":0.05,"cache_write":0.625,"input":0.5,"output":3,"tiers":[{"cache_read":0.2,"cache_write":2.5,"input":2,"output":6,"tier":{"size":128000,"type":"context"}}]},"family":"qwen","id":"qwen3.7-plus","knowledge":"2025-04","last_updated":"2026-06-02","limit":{"context":131072,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3.7 Plus","open_weights":false,"reasoning":true,"release_date":"2026-06-02","temperature":true,"tool_call":true},"qwq-plus":{"attachment":false,"cost":{"input":0.8,"output":2.4},"family":"qwen","id":"qwq-plus","knowledge":"2024-04","last_updated":"2025-03-05","limit":{"context":131072,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"QwQ Plus","open_weights":false,"reasoning":true,"release_date":"2025-03-05","temperature":true,"tool_call":true}},"name":"Alibaba","npm":"@ai-sdk/openai-compatible"},"alibaba-cn":{"api":"https://dashscope.aliyuncs.com/compatible-mode/v1","doc":"https://www.alibabacloud.com/help/en/model-studio/models","env":["DASHSCOPE_API_KEY"],"id":"alibaba-cn","models":{"MiniMax-M2.5":{"attachment":false,"cost":{"input":0.3,"output":1.2},"family":"minimax","id":"MiniMax-M2.5","interleaved":{"field":"reasoning_content"},"last_updated":"2026-02-12","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2.5","open_weights":true,"reasoning":true,"release_date":"2026-02-12","temperature":true,"tool_call":true},"MiniMax/MiniMax-M2.7":{"attachment":false,"cost":{"cache_read":0.06,"cache_write":0.375,"input":0.3,"output":1.2},"family":"minimax","id":"MiniMax/MiniMax-M2.7","last_updated":"2026-03-18","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2.7","open_weights":true,"reasoning":true,"release_date":"2026-03-18","temperature":true,"tool_call":true},"deepseek-r1":{"attachment":false,"cost":{"input":0.574,"output":2.294},"family":"deepseek-thinking","id":"deepseek-r1","last_updated":"2025-01-01","limit":{"context":131072,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek R1","open_weights":false,"reasoning":true,"release_date":"2025-01-01","temperature":true,"tool_call":true},"deepseek-r1-0528":{"attachment":false,"cost":{"input":0.574,"output":2.294},"family":"deepseek-thinking","id":"deepseek-r1-0528","last_updated":"2025-05-28","limit":{"context":131072,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek R1 0528","open_weights":false,"reasoning":true,"release_date":"2025-05-28","temperature":true,"tool_call":true},"deepseek-r1-distill-llama-70b":{"attachment":false,"cost":{"input":0.287,"output":0.861},"family":"deepseek-thinking","id":"deepseek-r1-distill-llama-70b","last_updated":"2025-01-01","limit":{"context":32768,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek R1 Distill Llama 70B","open_weights":false,"reasoning":true,"release_date":"2025-01-01","temperature":true,"tool_call":true},"deepseek-r1-distill-llama-8b":{"attachment":false,"cost":{"input":0,"output":0},"family":"deepseek-thinking","id":"deepseek-r1-distill-llama-8b","last_updated":"2025-01-01","limit":{"context":32768,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek R1 Distill Llama 8B","open_weights":false,"reasoning":true,"release_date":"2025-01-01","temperature":true,"tool_call":true},"deepseek-r1-distill-qwen-1-5b":{"attachment":false,"cost":{"input":0,"output":0},"family":"qwen","id":"deepseek-r1-distill-qwen-1-5b","last_updated":"2025-01-01","limit":{"context":32768,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek R1 Distill Qwen 1.5B","open_weights":false,"reasoning":true,"release_date":"2025-01-01","temperature":true,"tool_call":true},"deepseek-r1-distill-qwen-14b":{"attachment":false,"cost":{"input":0.144,"output":0.431},"family":"qwen","id":"deepseek-r1-distill-qwen-14b","last_updated":"2025-01-01","limit":{"context":32768,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek R1 Distill Qwen 14B","open_weights":false,"reasoning":true,"release_date":"2025-01-01","temperature":true,"tool_call":true},"deepseek-r1-distill-qwen-32b":{"attachment":false,"cost":{"input":0.287,"output":0.861},"family":"qwen","id":"deepseek-r1-distill-qwen-32b","last_updated":"2025-01-01","limit":{"context":32768,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek R1 Distill Qwen 32B","open_weights":false,"reasoning":true,"release_date":"2025-01-01","temperature":true,"tool_call":true},"deepseek-r1-distill-qwen-7b":{"attachment":false,"cost":{"input":0.072,"output":0.144},"family":"qwen","id":"deepseek-r1-distill-qwen-7b","last_updated":"2025-01-01","limit":{"context":32768,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek R1 Distill Qwen 7B","open_weights":false,"reasoning":true,"release_date":"2025-01-01","temperature":true,"tool_call":true},"deepseek-v3":{"attachment":false,"cost":{"input":0.287,"output":1.147},"family":"deepseek","id":"deepseek-v3","last_updated":"2024-12-01","limit":{"context":65536,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V3","open_weights":false,"reasoning":false,"release_date":"2024-12-01","temperature":true,"tool_call":true},"deepseek-v3-1":{"attachment":false,"cost":{"input":0.574,"output":1.721},"family":"deepseek","id":"deepseek-v3-1","last_updated":"2025-01-01","limit":{"context":131072,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V3.1","open_weights":false,"reasoning":false,"release_date":"2025-01-01","temperature":true,"tool_call":true},"deepseek-v3-2-exp":{"attachment":false,"cost":{"input":0.287,"output":0.431},"family":"deepseek","id":"deepseek-v3-2-exp","last_updated":"2025-01-01","limit":{"context":131072,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V3.2 Exp","open_weights":false,"reasoning":false,"release_date":"2025-01-01","temperature":true,"tool_call":true},"deepseek-v4-flash":{"attachment":false,"cost":{"cache_read":0.0028,"input":0.14,"output":0.28},"family":"deepseek-flash","id":"deepseek-v4-flash","interleaved":{"field":"reasoning_content"},"knowledge":"2025-05","last_updated":"2026-04-24","limit":{"context":1000000,"output":384000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V4 Flash","open_weights":true,"reasoning":true,"release_date":"2026-04-24","structured_output":true,"temperature":true,"tool_call":true},"deepseek-v4-pro":{"attachment":false,"cost":{"cache_read":0.003625,"input":0.435,"output":0.87},"family":"deepseek-thinking","id":"deepseek-v4-pro","interleaved":{"field":"reasoning_content"},"knowledge":"2025-05","last_updated":"2026-04-24","limit":{"context":1000000,"output":384000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V4 Pro","open_weights":true,"reasoning":true,"release_date":"2026-04-24","structured_output":true,"temperature":true,"tool_call":true},"glm-5":{"attachment":false,"cost":{"input":0.86,"output":3.15},"family":"glm","id":"glm-5","interleaved":{"field":"reasoning_content"},"last_updated":"2026-02-11","limit":{"context":202752,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-5","open_weights":false,"reasoning":true,"release_date":"2026-02-11","temperature":true,"tool_call":true},"glm-5.1":{"attachment":false,"cost":{"cache_read":0.17,"input":0.87,"output":3.48},"family":"glm","id":"glm-5.1","interleaved":{"field":"reasoning_content"},"last_updated":"2026-04-14","limit":{"context":202752,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-5.1","open_weights":true,"reasoning":true,"release_date":"2026-04-14","structured_output":true,"temperature":true,"tool_call":true},"kimi-k2-thinking":{"attachment":false,"cost":{"input":0.574,"output":2.294},"family":"kimi","id":"kimi-k2-thinking","interleaved":{"field":"reasoning_content"},"last_updated":"2025-11-06","limit":{"context":262144,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Moonshot Kimi K2 Thinking","open_weights":true,"reasoning":true,"release_date":"2025-11-06","structured_output":true,"temperature":true,"tool_call":true},"kimi-k2.5":{"attachment":false,"cost":{"input":0.574,"output":2.411},"family":"kimi","id":"kimi-k2.5","interleaved":{"field":"reasoning_content"},"knowledge":"2025-01","last_updated":"2026-01-27","limit":{"context":262144,"output":32768},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Moonshot Kimi K2.5","open_weights":true,"reasoning":true,"release_date":"2026-01-27","structured_output":false,"temperature":true,"tool_call":true},"kimi-k2.6":{"attachment":true,"cost":{"input":0.929,"output":3.858},"family":"kimi","id":"kimi-k2.6","interleaved":{"field":"reasoning_content"},"knowledge":"2025-01","last_updated":"2026-04-21","limit":{"context":262144,"output":16384},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Moonshot Kimi K2.6","open_weights":true,"reasoning":true,"release_date":"2026-04-21","structured_output":false,"temperature":true,"tool_call":true},"kimi/kimi-k2.5":{"attachment":false,"cost":{"cache_read":0.1,"input":0.6,"output":3},"family":"kimi","id":"kimi/kimi-k2.5","interleaved":{"field":"reasoning_content"},"knowledge":"2025-01","last_updated":"2026-01-27","limit":{"context":262144,"output":262144},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"kimi/kimi-k2.5","open_weights":true,"reasoning":true,"release_date":"2026-01-27","structured_output":true,"temperature":false,"tool_call":true},"moonshot-kimi-k2-instruct":{"attachment":false,"cost":{"input":0.574,"output":2.294},"family":"kimi","id":"moonshot-kimi-k2-instruct","last_updated":"2025-01-01","limit":{"context":131072,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Moonshot Kimi K2 Instruct","open_weights":true,"reasoning":false,"release_date":"2025-01-01","structured_output":false,"temperature":true,"tool_call":true},"qvq-max":{"attachment":false,"cost":{"input":1.147,"output":4.588},"family":"qvq","id":"qvq-max","knowledge":"2024-04","last_updated":"2025-03-25","limit":{"context":131072,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"QVQ Max","open_weights":false,"reasoning":true,"release_date":"2025-03-25","temperature":true,"tool_call":true},"qwen-deep-research":{"attachment":false,"cost":{"input":7.742,"output":23.367},"family":"qwen","id":"qwen-deep-research","knowledge":"2024-04","last_updated":"2024-01","limit":{"context":1000000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen Deep Research","open_weights":false,"reasoning":false,"release_date":"2024-01","temperature":true,"tool_call":true},"qwen-doc-turbo":{"attachment":false,"cost":{"input":0.087,"output":0.144},"family":"qwen","id":"qwen-doc-turbo","knowledge":"2024-04","last_updated":"2024-01","limit":{"context":131072,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen Doc Turbo","open_weights":false,"reasoning":false,"release_date":"2024-01","temperature":true,"tool_call":true},"qwen-flash":{"attachment":false,"cost":{"input":0.022,"output":0.216},"family":"qwen","id":"qwen-flash","knowledge":"2024-04","last_updated":"2025-07-28","limit":{"context":1000000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen Flash","open_weights":false,"reasoning":true,"release_date":"2025-07-28","temperature":true,"tool_call":true},"qwen-long":{"attachment":false,"cost":{"input":0.072,"output":0.287},"family":"qwen","id":"qwen-long","knowledge":"2024-04","last_updated":"2025-01-25","limit":{"context":10000000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen Long","open_weights":false,"reasoning":false,"release_date":"2025-01-25","temperature":true,"tool_call":true},"qwen-math-plus":{"attachment":false,"cost":{"input":0.574,"output":1.721},"family":"qwen","id":"qwen-math-plus","knowledge":"2024-04","last_updated":"2024-09-19","limit":{"context":4096,"output":3072},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen Math Plus","open_weights":false,"reasoning":false,"release_date":"2024-08-16","temperature":true,"tool_call":true},"qwen-math-turbo":{"attachment":false,"cost":{"input":0.287,"output":0.861},"family":"qwen","id":"qwen-math-turbo","knowledge":"2024-04","last_updated":"2024-09-19","limit":{"context":4096,"output":3072},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen Math Turbo","open_weights":false,"reasoning":false,"release_date":"2024-09-19","temperature":true,"tool_call":true},"qwen-max":{"attachment":false,"cost":{"input":0.345,"output":1.377},"family":"qwen","id":"qwen-max","knowledge":"2024-04","last_updated":"2025-01-25","limit":{"context":131072,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen Max","open_weights":false,"reasoning":false,"release_date":"2024-04-03","temperature":true,"tool_call":true},"qwen-mt-plus":{"attachment":false,"cost":{"input":0.259,"output":0.775},"family":"qwen","id":"qwen-mt-plus","knowledge":"2024-04","last_updated":"2025-01","limit":{"context":16384,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen-MT Plus","open_weights":false,"reasoning":false,"release_date":"2025-01","temperature":true,"tool_call":false},"qwen-mt-turbo":{"attachment":false,"cost":{"input":0.101,"output":0.28},"family":"qwen","id":"qwen-mt-turbo","knowledge":"2024-04","last_updated":"2025-01","limit":{"context":16384,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen-MT Turbo","open_weights":false,"reasoning":false,"release_date":"2025-01","temperature":true,"tool_call":false},"qwen-omni-turbo":{"attachment":false,"cost":{"input":0.058,"input_audio":3.584,"output":0.23,"output_audio":7.168},"family":"qwen","id":"qwen-omni-turbo","knowledge":"2024-04","last_updated":"2025-03-26","limit":{"context":32768,"output":2048},"modalities":{"input":["text","image","audio","video"],"output":["text","audio"]},"name":"Qwen-Omni Turbo","open_weights":false,"reasoning":false,"release_date":"2025-01-19","temperature":true,"tool_call":true},"qwen-omni-turbo-realtime":{"attachment":false,"cost":{"input":0.23,"input_audio":3.584,"output":0.918,"output_audio":7.168},"family":"qwen","id":"qwen-omni-turbo-realtime","knowledge":"2024-04","last_updated":"2025-05-08","limit":{"context":32768,"output":2048},"modalities":{"input":["text","image","audio"],"output":["text","audio"]},"name":"Qwen-Omni Turbo Realtime","open_weights":false,"reasoning":false,"release_date":"2025-05-08","temperature":true,"tool_call":true},"qwen-plus":{"attachment":false,"cost":{"input":0.115,"output":0.287,"reasoning":1.147},"family":"qwen","id":"qwen-plus","knowledge":"2024-04","last_updated":"2025-09-11","limit":{"context":1000000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen Plus","open_weights":false,"reasoning":true,"release_date":"2024-01-25","temperature":true,"tool_call":true},"qwen-plus-character":{"attachment":false,"cost":{"input":0.115,"output":0.287},"family":"qwen","id":"qwen-plus-character","knowledge":"2024-04","last_updated":"2024-01","limit":{"context":32768,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen Plus Character","open_weights":false,"reasoning":false,"release_date":"2024-01","temperature":true,"tool_call":true},"qwen-turbo":{"attachment":false,"cost":{"input":0.044,"output":0.087,"reasoning":0.431},"family":"qwen","id":"qwen-turbo","knowledge":"2024-04","last_updated":"2025-07-15","limit":{"context":1000000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen Turbo","open_weights":false,"reasoning":true,"release_date":"2024-11-01","temperature":true,"tool_call":true},"qwen-vl-max":{"attachment":false,"cost":{"input":0.23,"output":0.574},"family":"qwen","id":"qwen-vl-max","knowledge":"2024-04","last_updated":"2025-08-13","limit":{"context":131072,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen-VL Max","open_weights":false,"reasoning":false,"release_date":"2024-04-08","temperature":true,"tool_call":true},"qwen-vl-ocr":{"attachment":false,"cost":{"input":0.717,"output":0.717},"family":"qwen","id":"qwen-vl-ocr","knowledge":"2024-04","last_updated":"2025-04-13","limit":{"context":34096,"output":4096},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen-VL OCR","open_weights":false,"reasoning":false,"release_date":"2024-10-28","temperature":true,"tool_call":false},"qwen-vl-plus":{"attachment":false,"cost":{"input":0.115,"output":0.287},"family":"qwen","id":"qwen-vl-plus","knowledge":"2024-04","last_updated":"2025-08-15","limit":{"context":131072,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen-VL Plus","open_weights":false,"reasoning":false,"release_date":"2024-01-25","temperature":true,"tool_call":true},"qwen2-5-14b-instruct":{"attachment":false,"cost":{"input":0.144,"output":0.431},"family":"qwen","id":"qwen2-5-14b-instruct","knowledge":"2024-04","last_updated":"2024-09","limit":{"context":131072,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen2.5 14B Instruct","open_weights":true,"reasoning":false,"release_date":"2024-09","temperature":true,"tool_call":true},"qwen2-5-32b-instruct":{"attachment":false,"cost":{"input":0.287,"output":0.861},"family":"qwen","id":"qwen2-5-32b-instruct","knowledge":"2024-04","last_updated":"2024-09","limit":{"context":131072,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen2.5 32B Instruct","open_weights":true,"reasoning":false,"release_date":"2024-09","temperature":true,"tool_call":true},"qwen2-5-72b-instruct":{"attachment":false,"cost":{"input":0.574,"output":1.721},"family":"qwen","id":"qwen2-5-72b-instruct","knowledge":"2024-04","last_updated":"2024-09","limit":{"context":131072,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen2.5 72B Instruct","open_weights":true,"reasoning":false,"release_date":"2024-09","temperature":true,"tool_call":true},"qwen2-5-7b-instruct":{"attachment":false,"cost":{"input":0.072,"output":0.144},"family":"qwen","id":"qwen2-5-7b-instruct","knowledge":"2024-04","last_updated":"2024-09","limit":{"context":131072,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen2.5 7B Instruct","open_weights":true,"reasoning":false,"release_date":"2024-09","temperature":true,"tool_call":true},"qwen2-5-coder-32b-instruct":{"attachment":false,"cost":{"input":0.287,"output":0.861},"family":"qwen","id":"qwen2-5-coder-32b-instruct","knowledge":"2024-04","last_updated":"2024-11","limit":{"context":131072,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen2.5-Coder 32B Instruct","open_weights":true,"reasoning":false,"release_date":"2024-11","temperature":true,"tool_call":true},"qwen2-5-coder-7b-instruct":{"attachment":false,"cost":{"input":0.144,"output":0.287},"family":"qwen","id":"qwen2-5-coder-7b-instruct","knowledge":"2024-04","last_updated":"2024-11","limit":{"context":131072,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen2.5-Coder 7B Instruct","open_weights":true,"reasoning":false,"release_date":"2024-11","temperature":true,"tool_call":true},"qwen2-5-math-72b-instruct":{"attachment":false,"cost":{"input":0.574,"output":1.721},"family":"qwen","id":"qwen2-5-math-72b-instruct","knowledge":"2024-04","last_updated":"2024-09","limit":{"context":4096,"output":3072},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen2.5-Math 72B Instruct","open_weights":true,"reasoning":false,"release_date":"2024-09","temperature":true,"tool_call":true},"qwen2-5-math-7b-instruct":{"attachment":false,"cost":{"input":0.144,"output":0.287},"family":"qwen","id":"qwen2-5-math-7b-instruct","knowledge":"2024-04","last_updated":"2024-09","limit":{"context":4096,"output":3072},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen2.5-Math 7B Instruct","open_weights":true,"reasoning":false,"release_date":"2024-09","temperature":true,"tool_call":true},"qwen2-5-omni-7b":{"attachment":false,"cost":{"input":0.087,"input_audio":5.448,"output":0.345},"family":"qwen","id":"qwen2-5-omni-7b","knowledge":"2024-04","last_updated":"2024-12","limit":{"context":32768,"output":2048},"modalities":{"input":["text","image","audio","video"],"output":["text","audio"]},"name":"Qwen2.5-Omni 7B","open_weights":true,"reasoning":false,"release_date":"2024-12","temperature":true,"tool_call":true},"qwen2-5-vl-72b-instruct":{"attachment":false,"cost":{"input":2.294,"output":6.881},"family":"qwen","id":"qwen2-5-vl-72b-instruct","knowledge":"2024-04","last_updated":"2024-09","limit":{"context":131072,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen2.5-VL 72B Instruct","open_weights":true,"reasoning":false,"release_date":"2024-09","temperature":true,"tool_call":true},"qwen2-5-vl-7b-instruct":{"attachment":false,"cost":{"input":0.287,"output":0.717},"family":"qwen","id":"qwen2-5-vl-7b-instruct","knowledge":"2024-04","last_updated":"2024-09","limit":{"context":131072,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen2.5-VL 7B Instruct","open_weights":true,"reasoning":false,"release_date":"2024-09","temperature":true,"tool_call":true},"qwen3-14b":{"attachment":false,"cost":{"input":0.144,"output":0.574,"reasoning":1.434},"family":"qwen","id":"qwen3-14b","knowledge":"2025-04","last_updated":"2025-04","limit":{"context":131072,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 14B","open_weights":true,"reasoning":true,"release_date":"2025-04","temperature":true,"tool_call":true},"qwen3-235b-a22b":{"attachment":false,"cost":{"input":0.287,"output":1.147,"reasoning":2.868},"family":"qwen","id":"qwen3-235b-a22b","knowledge":"2025-04","last_updated":"2025-04","limit":{"context":131072,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 235B-A22B","open_weights":true,"reasoning":true,"release_date":"2025-04","temperature":true,"tool_call":true},"qwen3-32b":{"attachment":false,"cost":{"input":0.287,"output":1.147,"reasoning":2.868},"family":"qwen","id":"qwen3-32b","knowledge":"2025-04","last_updated":"2025-04","limit":{"context":131072,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 32B","open_weights":true,"reasoning":true,"release_date":"2025-04","temperature":true,"tool_call":true},"qwen3-8b":{"attachment":false,"cost":{"input":0.072,"output":0.287,"reasoning":0.717},"family":"qwen","id":"qwen3-8b","knowledge":"2025-04","last_updated":"2025-04","limit":{"context":131072,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 8B","open_weights":true,"reasoning":true,"release_date":"2025-04","temperature":true,"tool_call":true},"qwen3-asr-flash":{"attachment":false,"cost":{"input":0.032,"output":0.032},"family":"qwen","id":"qwen3-asr-flash","knowledge":"2024-04","last_updated":"2025-09-08","limit":{"context":53248,"output":4096},"modalities":{"input":["audio"],"output":["text"]},"name":"Qwen3-ASR Flash","open_weights":false,"reasoning":false,"release_date":"2025-09-08","temperature":false,"tool_call":false},"qwen3-coder-30b-a3b-instruct":{"attachment":false,"cost":{"input":0.216,"output":0.861},"family":"qwen","id":"qwen3-coder-30b-a3b-instruct","knowledge":"2025-04","last_updated":"2025-04","limit":{"context":262144,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3-Coder 30B-A3B Instruct","open_weights":true,"reasoning":false,"release_date":"2025-04","temperature":true,"tool_call":true},"qwen3-coder-480b-a35b-instruct":{"attachment":false,"cost":{"input":0.861,"output":3.441},"family":"qwen","id":"qwen3-coder-480b-a35b-instruct","knowledge":"2025-04","last_updated":"2025-04","limit":{"context":262144,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3-Coder 480B-A35B Instruct","open_weights":true,"reasoning":false,"release_date":"2025-04","temperature":true,"tool_call":true},"qwen3-coder-flash":{"attachment":false,"cost":{"input":0.144,"output":0.574},"family":"qwen","id":"qwen3-coder-flash","knowledge":"2025-04","last_updated":"2025-07-28","limit":{"context":1000000,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Coder Flash","open_weights":false,"reasoning":false,"release_date":"2025-07-28","temperature":true,"tool_call":true},"qwen3-coder-plus":{"attachment":false,"cost":{"input":1,"output":5},"family":"qwen","id":"qwen3-coder-plus","knowledge":"2025-04","last_updated":"2025-07-23","limit":{"context":1048576,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Coder Plus","open_weights":true,"reasoning":false,"release_date":"2025-07-23","temperature":true,"tool_call":true},"qwen3-max":{"attachment":false,"cost":{"input":0.861,"output":3.441},"family":"qwen","id":"qwen3-max","knowledge":"2025-04","last_updated":"2025-09-23","limit":{"context":262144,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Max","open_weights":false,"reasoning":false,"release_date":"2025-09-23","temperature":true,"tool_call":true},"qwen3-next-80b-a3b-instruct":{"attachment":false,"cost":{"input":0.144,"output":0.574},"family":"qwen","id":"qwen3-next-80b-a3b-instruct","knowledge":"2025-04","last_updated":"2025-09","limit":{"context":131072,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3-Next 80B-A3B Instruct","open_weights":true,"reasoning":false,"release_date":"2025-09","temperature":true,"tool_call":true},"qwen3-next-80b-a3b-thinking":{"attachment":false,"cost":{"input":0.144,"output":1.434},"family":"qwen","id":"qwen3-next-80b-a3b-thinking","knowledge":"2025-04","last_updated":"2025-09","limit":{"context":131072,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3-Next 80B-A3B (Thinking)","open_weights":true,"reasoning":true,"release_date":"2025-09","temperature":true,"tool_call":true},"qwen3-omni-flash":{"attachment":false,"cost":{"input":0.058,"input_audio":3.584,"output":0.23,"output_audio":7.168},"family":"qwen","id":"qwen3-omni-flash","knowledge":"2024-04","last_updated":"2025-09-15","limit":{"context":65536,"output":16384},"modalities":{"input":["text","image","audio","video"],"output":["text","audio"]},"name":"Qwen3-Omni Flash","open_weights":false,"reasoning":true,"release_date":"2025-09-15","temperature":true,"tool_call":true},"qwen3-omni-flash-realtime":{"attachment":false,"cost":{"input":0.23,"input_audio":3.584,"output":0.918,"output_audio":7.168},"family":"qwen","id":"qwen3-omni-flash-realtime","knowledge":"2024-04","last_updated":"2025-09-15","limit":{"context":65536,"output":16384},"modalities":{"input":["text","image","audio"],"output":["text","audio"]},"name":"Qwen3-Omni Flash Realtime","open_weights":false,"reasoning":false,"release_date":"2025-09-15","temperature":true,"tool_call":true},"qwen3-vl-235b-a22b":{"attachment":false,"cost":{"input":0.286705,"output":1.14682,"reasoning":2.867051},"family":"qwen","id":"qwen3-vl-235b-a22b","knowledge":"2025-04","last_updated":"2025-04","limit":{"context":131072,"output":32768},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen3-VL 235B-A22B","open_weights":true,"reasoning":true,"release_date":"2025-04","temperature":true,"tool_call":true},"qwen3-vl-30b-a3b":{"attachment":false,"cost":{"input":0.108,"output":0.431,"reasoning":1.076},"family":"qwen","id":"qwen3-vl-30b-a3b","knowledge":"2025-04","last_updated":"2025-04","limit":{"context":131072,"output":32768},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen3-VL 30B-A3B","open_weights":true,"reasoning":true,"release_date":"2025-04","temperature":true,"tool_call":true},"qwen3-vl-plus":{"attachment":false,"cost":{"input":0.143353,"output":1.433525,"reasoning":4.300576},"family":"qwen","id":"qwen3-vl-plus","knowledge":"2025-04","last_updated":"2025-09-23","limit":{"context":262144,"output":32768},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen3-VL Plus","open_weights":false,"reasoning":true,"release_date":"2025-09-23","temperature":true,"tool_call":true},"qwen3.5-397b-a17b":{"attachment":false,"cost":{"input":0.43,"output":2.58,"reasoning":2.58},"family":"qwen","id":"qwen3.5-397b-a17b","knowledge":"2025-04","last_updated":"2026-02-16","limit":{"context":262144,"output":65536},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.5 397B-A17B","open_weights":true,"reasoning":true,"release_date":"2026-02-16","temperature":true,"tool_call":true},"qwen3.5-flash":{"attachment":true,"cost":{"input":0.172,"output":1.72,"reasoning":1.72},"family":"qwen","id":"qwen3.5-flash","knowledge":"2025-04","last_updated":"2026-02-23","limit":{"context":1000000,"output":65536},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.5 Flash","open_weights":false,"reasoning":true,"release_date":"2026-02-23","structured_output":true,"temperature":true,"tool_call":true},"qwen3.5-plus":{"attachment":false,"cost":{"input":0.573,"output":3.44,"reasoning":3.44},"family":"qwen","id":"qwen3.5-plus","knowledge":"2025-04","last_updated":"2026-02-16","limit":{"context":1000000,"output":65536},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.5 Plus","open_weights":false,"reasoning":true,"release_date":"2026-02-16","temperature":true,"tool_call":true},"qwen3.6-flash":{"attachment":true,"cost":{"cache_write":0.234375,"input":0.1875,"output":1.125},"family":"qwen3.6","id":"qwen3.6-flash","last_updated":"2026-04-27","limit":{"context":1000000,"output":65536},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.6 Flash","open_weights":false,"reasoning":true,"release_date":"2026-04-27","structured_output":true,"temperature":true,"tool_call":true},"qwen3.6-max-preview":{"attachment":false,"cost":{"cache_read":0.132,"input":1.32,"output":7.9},"family":"qwen","id":"qwen3.6-max-preview","last_updated":"2026-04-21","limit":{"context":245800,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3.6 Max Preview","open_weights":false,"reasoning":true,"release_date":"2026-04-20","structured_output":true,"temperature":true,"tool_call":true},"qwen3.6-plus":{"attachment":false,"cost":{"cache_read":0.05,"cache_write":0.625,"context_over_200k":{"cache_read":0.2,"cache_write":2.5,"input":2,"output":6},"input":0.5,"output":3,"tiers":[{"cache_read":0.2,"cache_write":2.5,"input":2,"output":6,"tier":{"size":256000,"type":"context"}}]},"family":"qwen","id":"qwen3.6-plus","knowledge":"2025-04","last_updated":"2026-04-02","limit":{"context":1000000,"output":65536},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.6 Plus","open_weights":false,"reasoning":true,"release_date":"2026-04-02","temperature":true,"tool_call":true},"qwen3.7-max":{"attachment":false,"cost":{"cache_read":0.5,"cache_write":3.125,"input":2.5,"output":7.5},"family":"qwen","id":"qwen3.7-max","last_updated":"2026-05-21","limit":{"context":1000000,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3.7 Max","open_weights":false,"reasoning":true,"release_date":"2026-05-21","temperature":true,"tool_call":true},"qwen3.7-plus":{"attachment":false,"cost":{"cache_read":0.05,"cache_write":0.625,"input":0.5,"output":3,"tiers":[{"cache_read":0.2,"cache_write":2.5,"input":2,"output":6,"tier":{"size":128000,"type":"context"}}]},"family":"qwen","id":"qwen3.7-plus","knowledge":"2025-04","last_updated":"2026-06-02","limit":{"context":131072,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3.7 Plus","open_weights":false,"reasoning":true,"release_date":"2026-06-02","temperature":true,"tool_call":true},"qwq-32b":{"attachment":false,"cost":{"input":0.287,"output":0.861},"family":"qwen","id":"qwq-32b","knowledge":"2024-04","last_updated":"2024-12","limit":{"context":131072,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"QwQ 32B","open_weights":true,"reasoning":true,"release_date":"2024-12","temperature":true,"tool_call":true},"qwq-plus":{"attachment":false,"cost":{"input":0.23,"output":0.574},"family":"qwen","id":"qwq-plus","knowledge":"2024-04","last_updated":"2025-03-05","limit":{"context":131072,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"QwQ Plus","open_weights":false,"reasoning":true,"release_date":"2025-03-05","temperature":true,"tool_call":true},"siliconflow/deepseek-r1-0528":{"attachment":false,"cost":{"input":0.5,"output":2.18},"family":"deepseek-thinking","id":"siliconflow/deepseek-r1-0528","last_updated":"2025-11-25","limit":{"context":163840,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"siliconflow/deepseek-r1-0528","open_weights":false,"reasoning":true,"release_date":"2025-05-28","structured_output":true,"temperature":true,"tool_call":true},"siliconflow/deepseek-v3-0324":{"attachment":false,"cost":{"input":0.25,"output":1},"family":"deepseek","id":"siliconflow/deepseek-v3-0324","last_updated":"2025-11-25","limit":{"context":163840,"output":163840},"modalities":{"input":["text"],"output":["text"]},"name":"siliconflow/deepseek-v3-0324","open_weights":false,"reasoning":false,"release_date":"2024-12-26","structured_output":true,"temperature":true,"tool_call":true},"siliconflow/deepseek-v3.1-terminus":{"attachment":false,"cost":{"input":0.27,"output":1},"family":"deepseek","id":"siliconflow/deepseek-v3.1-terminus","last_updated":"2025-11-25","limit":{"context":163840,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"siliconflow/deepseek-v3.1-terminus","open_weights":false,"reasoning":true,"release_date":"2025-09-29","structured_output":true,"temperature":true,"tool_call":true},"siliconflow/deepseek-v3.2":{"attachment":false,"cost":{"input":0.27,"output":0.42},"family":"deepseek","id":"siliconflow/deepseek-v3.2","last_updated":"2025-12-03","limit":{"context":163840,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"siliconflow/deepseek-v3.2","open_weights":false,"reasoning":true,"release_date":"2025-12-03","structured_output":true,"temperature":true,"tool_call":true},"tongyi-intent-detect-v3":{"attachment":false,"cost":{"input":0.058,"output":0.144},"family":"yi","id":"tongyi-intent-detect-v3","knowledge":"2024-04","last_updated":"2024-01","limit":{"context":8192,"output":1024},"modalities":{"input":["text"],"output":["text"]},"name":"Tongyi Intent Detect V3","open_weights":false,"reasoning":false,"release_date":"2024-01","temperature":true,"tool_call":false}},"name":"Alibaba (China)","npm":"@ai-sdk/openai-compatible"},"alibaba-coding-plan":{"api":"https://coding-intl.dashscope.aliyuncs.com/v1","doc":"https://www.alibabacloud.com/help/en/model-studio/coding-plan","env":["ALIBABA_CODING_PLAN_API_KEY"],"id":"alibaba-coding-plan","models":{"MiniMax-M2.5":{"attachment":false,"cost":{"cache_read":0,"cache_write":0,"input":0,"output":0},"family":"minimax","id":"MiniMax-M2.5","interleaved":{"field":"reasoning_content"},"last_updated":"2026-02-12","limit":{"context":196608,"input":196601,"output":24576},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2.5","open_weights":true,"reasoning":true,"release_date":"2026-02-12","temperature":true,"tool_call":true},"glm-4.7":{"attachment":false,"cost":{"cache_read":0,"cache_write":0,"input":0,"output":0},"family":"glm","id":"glm-4.7","interleaved":{"field":"reasoning_content"},"knowledge":"2025-04","last_updated":"2025-12-22","limit":{"context":202752,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4.7","open_weights":true,"reasoning":true,"release_date":"2025-12-22","temperature":true,"tool_call":true},"glm-5":{"attachment":false,"cost":{"cache_read":0,"cache_write":0,"input":0,"output":0},"family":"glm","id":"glm-5","interleaved":{"field":"reasoning_content"},"last_updated":"2026-02-11","limit":{"context":202752,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-5","open_weights":false,"reasoning":true,"release_date":"2026-02-11","temperature":true,"tool_call":true},"kimi-k2.5":{"attachment":true,"cost":{"cache_read":0,"cache_write":0,"input":0,"output":0},"family":"kimi","id":"kimi-k2.5","interleaved":{"field":"reasoning_content"},"knowledge":"2025-01","last_updated":"2026-01-27","limit":{"context":262144,"output":32768},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Kimi K2.5","open_weights":true,"reasoning":true,"release_date":"2026-01-27","temperature":true,"tool_call":true},"qwen3-coder-next":{"attachment":false,"cost":{"cache_read":0,"cache_write":0,"input":0,"output":0},"family":"qwen","id":"qwen3-coder-next","last_updated":"2026-02-03","limit":{"context":262144,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Coder Next","open_weights":true,"reasoning":false,"release_date":"2026-02-03","structured_output":true,"temperature":true,"tool_call":true},"qwen3-coder-plus":{"attachment":false,"cost":{"cache_read":0,"cache_write":0,"input":0,"output":0},"family":"qwen","id":"qwen3-coder-plus","knowledge":"2025-04","last_updated":"2025-07-23","limit":{"context":1000000,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Coder Plus","open_weights":true,"reasoning":false,"release_date":"2025-07-23","temperature":true,"tool_call":true},"qwen3-max-2026-01-23":{"attachment":false,"cost":{"cache_read":0,"cache_write":0,"input":0,"output":0},"family":"qwen","id":"qwen3-max-2026-01-23","knowledge":"2025-04","last_updated":"2026-01-23","limit":{"context":262144,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Max","open_weights":false,"reasoning":false,"release_date":"2026-01-23","temperature":true,"tool_call":true},"qwen3.5-plus":{"attachment":false,"cost":{"cache_read":0,"cache_write":0,"input":0,"output":0},"family":"qwen","id":"qwen3.5-plus","knowledge":"2025-04","last_updated":"2026-02-16","limit":{"context":1000000,"output":65536},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.5 Plus","open_weights":false,"reasoning":true,"release_date":"2026-02-16","temperature":true,"tool_call":true},"qwen3.6-flash":{"attachment":true,"cost":{"cache_write":0.234375,"input":0.1875,"output":1.125},"family":"qwen3.6","id":"qwen3.6-flash","last_updated":"2026-04-27","limit":{"context":1000000,"output":65536},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.6 Flash","open_weights":false,"reasoning":true,"release_date":"2026-04-27","structured_output":true,"temperature":true,"tool_call":true},"qwen3.6-plus":{"attachment":false,"cost":{"cache_read":0,"cache_write":0,"input":0,"output":0},"family":"qwen","id":"qwen3.6-plus","knowledge":"2025-04","last_updated":"2026-04-02","limit":{"context":1000000,"output":65536},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.6 Plus","open_weights":false,"reasoning":true,"release_date":"2026-04-02","temperature":true,"tool_call":true},"qwen3.7-max":{"attachment":false,"cost":{"cache_read":0.5,"cache_write":3.125,"input":2.5,"output":7.5},"family":"qwen","id":"qwen3.7-max","last_updated":"2026-05-21","limit":{"context":1000000,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3.7 Max","open_weights":false,"reasoning":true,"release_date":"2026-05-21","temperature":true,"tool_call":true}},"name":"Alibaba Coding Plan","npm":"@ai-sdk/openai-compatible"},"alibaba-coding-plan-cn":{"api":"https://coding.dashscope.aliyuncs.com/v1","doc":"https://help.aliyun.com/zh/model-studio/coding-plan","env":["ALIBABA_CODING_PLAN_API_KEY"],"id":"alibaba-coding-plan-cn","models":{"MiniMax-M2.5":{"attachment":false,"cost":{"cache_read":0,"cache_write":0,"input":0,"output":0},"family":"minimax","id":"MiniMax-M2.5","interleaved":{"field":"reasoning_content"},"last_updated":"2026-02-12","limit":{"context":196608,"output":24576},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2.5","open_weights":true,"reasoning":true,"release_date":"2026-02-12","temperature":true,"tool_call":true},"glm-4.7":{"attachment":false,"cost":{"cache_read":0,"cache_write":0,"input":0,"output":0},"family":"glm","id":"glm-4.7","interleaved":{"field":"reasoning_content"},"knowledge":"2025-04","last_updated":"2025-12-22","limit":{"context":202752,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4.7","open_weights":true,"reasoning":true,"release_date":"2025-12-22","temperature":true,"tool_call":true},"glm-5":{"attachment":false,"cost":{"cache_read":0,"cache_write":0,"input":0,"output":0},"family":"glm","id":"glm-5","interleaved":{"field":"reasoning_content"},"last_updated":"2026-02-11","limit":{"context":202752,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-5","open_weights":false,"reasoning":true,"release_date":"2026-02-11","temperature":true,"tool_call":true},"kimi-k2.5":{"attachment":true,"cost":{"cache_read":0,"cache_write":0,"input":0,"output":0},"family":"kimi","id":"kimi-k2.5","interleaved":{"field":"reasoning_content"},"knowledge":"2025-01","last_updated":"2026-01-27","limit":{"context":262144,"output":32768},"modalities":{"input":["text","image"],"output":["text"]},"name":"Kimi K2.5","open_weights":true,"reasoning":true,"release_date":"2026-01-27","temperature":true,"tool_call":true},"qwen3-coder-next":{"attachment":false,"cost":{"cache_read":0,"cache_write":0,"input":0,"output":0},"family":"qwen","id":"qwen3-coder-next","last_updated":"2026-02-03","limit":{"context":262144,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Coder Next","open_weights":true,"reasoning":false,"release_date":"2026-02-03","structured_output":true,"temperature":true,"tool_call":true},"qwen3-coder-plus":{"attachment":false,"cost":{"cache_read":0,"cache_write":0,"input":0,"output":0},"family":"qwen","id":"qwen3-coder-plus","knowledge":"2025-04","last_updated":"2025-07-23","limit":{"context":1000000,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Coder Plus","open_weights":true,"reasoning":false,"release_date":"2025-07-23","temperature":true,"tool_call":true},"qwen3-max-2026-01-23":{"attachment":false,"cost":{"cache_read":0,"cache_write":0,"input":0,"output":0},"family":"qwen","id":"qwen3-max-2026-01-23","knowledge":"2025-04","last_updated":"2026-01-23","limit":{"context":262144,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Max","open_weights":false,"reasoning":false,"release_date":"2026-01-23","temperature":true,"tool_call":true},"qwen3.5-plus":{"attachment":false,"cost":{"cache_read":0,"cache_write":0,"input":0,"output":0},"family":"qwen","id":"qwen3.5-plus","knowledge":"2025-04","last_updated":"2026-02-16","limit":{"context":1000000,"output":65536},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen3.5 Plus","open_weights":false,"reasoning":true,"release_date":"2026-02-16","temperature":true,"tool_call":true},"qwen3.6-flash":{"attachment":true,"cost":{"cache_write":0.234375,"input":0.1875,"output":1.125},"family":"qwen3.6","id":"qwen3.6-flash","last_updated":"2026-04-27","limit":{"context":1000000,"output":65536},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.6 Flash","open_weights":false,"reasoning":true,"release_date":"2026-04-27","structured_output":true,"temperature":true,"tool_call":true},"qwen3.6-plus":{"attachment":false,"cost":{"cache_read":0,"cache_write":0,"input":0,"output":0},"family":"qwen","id":"qwen3.6-plus","knowledge":"2025-04","last_updated":"2026-04-02","limit":{"context":1000000,"output":65536},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.6 Plus","open_weights":false,"reasoning":true,"release_date":"2026-04-02","temperature":true,"tool_call":true},"qwen3.7-max":{"attachment":false,"cost":{"cache_read":0.5,"cache_write":3.125,"input":2.5,"output":7.5},"family":"qwen","id":"qwen3.7-max","last_updated":"2026-05-21","limit":{"context":1000000,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3.7 Max","open_weights":false,"reasoning":true,"release_date":"2026-05-21","temperature":true,"tool_call":true}},"name":"Alibaba Coding Plan (China)","npm":"@ai-sdk/openai-compatible"},"alibaba-token-plan":{"api":"https://token-plan.ap-southeast-1.maas.aliyuncs.com/compatible-mode/v1","doc":"https://www.alibabacloud.com/help/en/model-studio/token-plan-overview","env":["ALIBABA_TOKEN_PLAN_API_KEY"],"id":"alibaba-token-plan","models":{"MiniMax-M2.5":{"attachment":false,"cost":{"cache_read":0,"cache_write":0,"input":0,"output":0},"family":"minimax","id":"MiniMax-M2.5","interleaved":{"field":"reasoning_content"},"last_updated":"2026-02-12","limit":{"context":196608,"input":196601,"output":24576},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2.5","open_weights":true,"reasoning":true,"release_date":"2026-02-12","temperature":true,"tool_call":true},"deepseek-v3.2":{"attachment":false,"cost":{"input":0,"output":0},"family":"deepseek","id":"deepseek-v3.2","knowledge":"2025-01","last_updated":"2025-12-05","limit":{"context":131072,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V3.2","open_weights":true,"reasoning":true,"release_date":"2025-12-03","structured_output":true,"temperature":true,"tool_call":true},"deepseek-v4-flash":{"attachment":false,"cost":{"cache_read":0,"input":0,"output":0},"family":"deepseek-flash","id":"deepseek-v4-flash","interleaved":{"field":"reasoning_content"},"knowledge":"2025-05","last_updated":"2026-04-24","limit":{"context":1000000,"output":384000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V4 Flash","open_weights":true,"reasoning":true,"release_date":"2026-04-24","structured_output":true,"temperature":true,"tool_call":true},"deepseek-v4-pro":{"attachment":false,"cost":{"cache_read":0,"input":0,"output":0},"family":"deepseek-thinking","id":"deepseek-v4-pro","interleaved":{"field":"reasoning_content"},"knowledge":"2025-05","last_updated":"2026-04-24","limit":{"context":1000000,"output":384000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V4 Pro","open_weights":true,"reasoning":true,"release_date":"2026-04-24","structured_output":true,"temperature":true,"tool_call":true},"glm-5":{"attachment":false,"cost":{"cache_read":0,"cache_write":0,"input":0,"output":0},"family":"glm","id":"glm-5","interleaved":{"field":"reasoning_content"},"last_updated":"2026-02-11","limit":{"context":202752,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-5","open_weights":false,"reasoning":true,"release_date":"2026-02-11","temperature":true,"tool_call":true},"glm-5.1":{"attachment":false,"cost":{"cache_read":0,"cache_write":0,"input":0,"output":0},"family":"glm","id":"glm-5.1","interleaved":{"field":"reasoning_content"},"last_updated":"2026-03-27","limit":{"context":202752,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-5.1","open_weights":false,"reasoning":true,"release_date":"2026-03-27","structured_output":true,"temperature":true,"tool_call":true},"kimi-k2.5":{"attachment":true,"cost":{"cache_read":0,"cache_write":0,"input":0,"output":0},"family":"kimi","id":"kimi-k2.5","interleaved":{"field":"reasoning_content"},"knowledge":"2025-01","last_updated":"2026-01","limit":{"context":262144,"output":32768},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Kimi K2.5","open_weights":true,"reasoning":true,"release_date":"2026-01","temperature":true,"tool_call":true},"kimi-k2.6":{"attachment":true,"cost":{"cache_read":0,"cache_write":0,"input":0,"output":0},"family":"kimi","id":"kimi-k2.6","interleaved":{"field":"reasoning_content"},"knowledge":"2025-01","last_updated":"2026-04-21","limit":{"context":262144,"output":16384},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Kimi K2.6","open_weights":true,"reasoning":true,"release_date":"2026-04-21","temperature":true,"tool_call":true},"qwen-image-2.0":{"attachment":false,"cost":{"input":0,"output":0},"family":"qwen","id":"qwen-image-2.0","last_updated":"2026-03-03","limit":{"context":8192,"output":0},"modalities":{"input":["text"],"output":["image"]},"name":"Qwen Image 2.0","open_weights":false,"reasoning":false,"release_date":"2026-03-03","temperature":true,"tool_call":false},"qwen-image-2.0-pro":{"attachment":false,"cost":{"input":0,"output":0},"family":"qwen","id":"qwen-image-2.0-pro","last_updated":"2026-03-03","limit":{"context":8192,"output":0},"modalities":{"input":["text"],"output":["image"]},"name":"Qwen Image 2.0 Pro","open_weights":false,"reasoning":false,"release_date":"2026-03-03","temperature":true,"tool_call":false},"qwen3.6-flash":{"attachment":true,"cost":{"cache_read":0,"cache_write":0,"input":0,"output":0},"family":"qwen3.6","id":"qwen3.6-flash","last_updated":"2026-04-27","limit":{"context":1000000,"output":65536},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.6 Flash","open_weights":false,"reasoning":true,"release_date":"2026-04-27","structured_output":true,"temperature":true,"tool_call":true},"qwen3.6-plus":{"attachment":false,"cost":{"cache_read":0,"cache_write":0,"input":0,"output":0},"family":"qwen","id":"qwen3.6-plus","knowledge":"2025-04","last_updated":"2026-04-02","limit":{"context":1000000,"output":65536},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.6 Plus","open_weights":false,"reasoning":true,"release_date":"2026-04-02","temperature":true,"tool_call":true},"qwen3.7-max":{"attachment":false,"cost":{"cache_read":0,"cache_write":0,"input":0,"output":0},"family":"qwen","id":"qwen3.7-max","last_updated":"2026-05-21","limit":{"context":1000000,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3.7 Max","open_weights":false,"reasoning":true,"release_date":"2026-05-21","temperature":true,"tool_call":true},"wan2.7-image":{"attachment":false,"cost":{"input":0,"output":0},"id":"wan2.7-image","last_updated":"2026-05-29","limit":{"context":8192,"output":0},"modalities":{"input":["text"],"output":["image"]},"name":"Wan2.7 Image","open_weights":false,"reasoning":false,"release_date":"2026-05-29","temperature":true,"tool_call":false},"wan2.7-image-pro":{"attachment":false,"cost":{"input":0,"output":0},"id":"wan2.7-image-pro","last_updated":"2026-05-29","limit":{"context":8192,"output":0},"modalities":{"input":["text"],"output":["image"]},"name":"Wan2.7 Image Pro","open_weights":false,"reasoning":false,"release_date":"2026-05-29","temperature":true,"tool_call":false}},"name":"Alibaba Token Plan","npm":"@ai-sdk/openai-compatible"},"amazon-bedrock":{"doc":"https://docs.aws.amazon.com/bedrock/latest/userguide/models-supported.html","env":["AWS_ACCESS_KEY_ID","AWS_SECRET_ACCESS_KEY","AWS_REGION","AWS_BEARER_TOKEN_BEDROCK"],"id":"amazon-bedrock","models":{"amazon.nova-2-lite-v1:0":{"attachment":false,"cost":{"input":0.33,"output":2.75},"family":"nova","id":"amazon.nova-2-lite-v1:0","last_updated":"2024-12-01","limit":{"context":128000,"output":4096},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Nova 2 Lite","open_weights":false,"reasoning":false,"release_date":"2024-12-01","temperature":true,"tool_call":true},"amazon.nova-lite-v1:0":{"attachment":true,"cost":{"cache_read":0.015,"input":0.06,"output":0.24},"family":"nova-lite","id":"amazon.nova-lite-v1:0","knowledge":"2024-10","last_updated":"2024-12-03","limit":{"context":300000,"output":8192},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Nova Lite","open_weights":false,"reasoning":false,"release_date":"2024-12-03","temperature":true,"tool_call":true},"amazon.nova-micro-v1:0":{"attachment":false,"cost":{"cache_read":0.00875,"input":0.035,"output":0.14},"family":"nova-micro","id":"amazon.nova-micro-v1:0","knowledge":"2024-10","last_updated":"2024-12-03","limit":{"context":128000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Nova Micro","open_weights":false,"reasoning":false,"release_date":"2024-12-03","temperature":true,"tool_call":true},"amazon.nova-pro-v1:0":{"attachment":true,"cost":{"cache_read":0.2,"input":0.8,"output":3.2},"family":"nova-pro","id":"amazon.nova-pro-v1:0","knowledge":"2024-10","last_updated":"2024-12-03","limit":{"context":300000,"output":8192},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Nova Pro","open_weights":false,"reasoning":false,"release_date":"2024-12-03","temperature":true,"tool_call":true},"anthropic.claude-haiku-4-5-20251001-v1:0":{"attachment":true,"cost":{"cache_read":0.1,"cache_write":1.25,"input":1,"output":5},"family":"claude-haiku","id":"anthropic.claude-haiku-4-5-20251001-v1:0","knowledge":"2025-02-28","last_updated":"2025-10-15","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Haiku 4.5","open_weights":false,"reasoning":true,"release_date":"2025-10-15","structured_output":true,"temperature":true,"tool_call":true},"anthropic.claude-opus-4-1-20250805-v1:0":{"attachment":true,"cost":{"cache_read":1.5,"cache_write":18.75,"input":15,"output":75},"family":"claude-opus","id":"anthropic.claude-opus-4-1-20250805-v1:0","knowledge":"2025-03-31","last_updated":"2025-08-05","limit":{"context":200000,"output":32000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.1","open_weights":false,"reasoning":true,"release_date":"2025-08-05","temperature":true,"tool_call":true},"anthropic.claude-opus-4-5-20251101-v1:0":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"input":5,"output":25},"family":"claude-opus","id":"anthropic.claude-opus-4-5-20251101-v1:0","knowledge":"2025-03-31","last_updated":"2025-08-01","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.5","open_weights":false,"reasoning":true,"release_date":"2025-11-24","structured_output":true,"temperature":true,"tool_call":true},"anthropic.claude-opus-4-6-v1":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"input":5,"output":25},"family":"claude-opus","id":"anthropic.claude-opus-4-6-v1","knowledge":"2025-05-31","last_updated":"2026-03-13","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.6","open_weights":false,"reasoning":true,"release_date":"2026-02-05","structured_output":true,"temperature":true,"tool_call":true},"anthropic.claude-opus-4-7":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"input":5,"output":25},"family":"claude-opus","id":"anthropic.claude-opus-4-7","knowledge":"2026-01-31","last_updated":"2026-04-16","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.7","open_weights":false,"reasoning":true,"release_date":"2026-04-16","temperature":false,"tool_call":true},"anthropic.claude-opus-4-8":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"input":5,"output":25},"family":"claude-opus","id":"anthropic.claude-opus-4-8","last_updated":"2026-05-28","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.8","open_weights":false,"reasoning":true,"release_date":"2026-05-28","temperature":false,"tool_call":true},"anthropic.claude-sonnet-4-5-20250929-v1:0":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"input":3,"output":15},"family":"claude-sonnet","id":"anthropic.claude-sonnet-4-5-20250929-v1:0","knowledge":"2025-07-31","last_updated":"2025-09-29","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 4.5","open_weights":false,"reasoning":true,"release_date":"2025-09-29","structured_output":true,"temperature":true,"tool_call":true},"anthropic.claude-sonnet-4-6":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"input":3,"output":15},"family":"claude-sonnet","id":"anthropic.claude-sonnet-4-6","knowledge":"2025-08-31","last_updated":"2026-03-13","limit":{"context":1000000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 4.6","open_weights":false,"reasoning":true,"release_date":"2026-02-17","structured_output":true,"temperature":true,"tool_call":true},"au.anthropic.claude-haiku-4-5-20251001-v1:0":{"attachment":true,"cost":{"cache_read":0.1,"cache_write":1.25,"input":1,"output":5},"family":"claude-haiku","id":"au.anthropic.claude-haiku-4-5-20251001-v1:0","knowledge":"2025-02-28","last_updated":"2025-10-15","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Haiku 4.5 (AU)","open_weights":false,"reasoning":true,"release_date":"2025-10-15","structured_output":true,"temperature":true,"tool_call":true},"au.anthropic.claude-opus-4-6-v1":{"attachment":true,"cost":{"cache_read":1.65,"cache_write":20.625,"input":16.5,"output":82.5},"family":"claude-opus","id":"au.anthropic.claude-opus-4-6-v1","knowledge":"2025-05","last_updated":"2026-02-05","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"AU Anthropic Claude Opus 4.6","open_weights":false,"reasoning":true,"release_date":"2026-02-05","structured_output":true,"temperature":true,"tool_call":true},"au.anthropic.claude-opus-4-8":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"input":5,"output":25},"family":"claude-opus","id":"au.anthropic.claude-opus-4-8","last_updated":"2026-05-28","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.8 (AU)","open_weights":false,"reasoning":true,"release_date":"2026-05-28","temperature":false,"tool_call":true},"au.anthropic.claude-sonnet-4-5-20250929-v1:0":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"input":3,"output":15},"family":"claude-sonnet","id":"au.anthropic.claude-sonnet-4-5-20250929-v1:0","knowledge":"2025-07-31","last_updated":"2025-09-29","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 4.5 (AU)","open_weights":false,"reasoning":true,"release_date":"2025-09-29","structured_output":true,"temperature":true,"tool_call":true},"au.anthropic.claude-sonnet-4-6":{"attachment":true,"cost":{"cache_read":0.33,"cache_write":4.125,"input":3.3,"output":16.5},"family":"claude-sonnet","id":"au.anthropic.claude-sonnet-4-6","knowledge":"2025-08","last_updated":"2026-02-17","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"AU Anthropic Claude Sonnet 4.6","open_weights":false,"reasoning":true,"release_date":"2026-02-17","structured_output":true,"temperature":true,"tool_call":true},"deepseek.r1-v1:0":{"attachment":false,"cost":{"input":1.35,"output":5.4},"family":"deepseek-thinking","id":"deepseek.r1-v1:0","knowledge":"2024-07","last_updated":"2025-05-29","limit":{"context":128000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek-R1","open_weights":false,"reasoning":true,"release_date":"2025-01-20","temperature":true,"tool_call":true},"deepseek.v3-v1:0":{"attachment":false,"cost":{"input":0.58,"output":1.68},"family":"deepseek","id":"deepseek.v3-v1:0","knowledge":"2024-07","last_updated":"2025-09-18","limit":{"context":163840,"output":81920},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek-V3.1","open_weights":true,"reasoning":true,"release_date":"2025-09-18","structured_output":true,"temperature":true,"tool_call":true},"deepseek.v3.2":{"attachment":false,"cost":{"input":0.62,"output":1.85},"family":"deepseek","id":"deepseek.v3.2","knowledge":"2024-07","last_updated":"2026-02-06","limit":{"context":163840,"output":81920},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek-V3.2","open_weights":true,"reasoning":true,"release_date":"2026-02-06","structured_output":true,"temperature":true,"tool_call":true},"eu.anthropic.claude-haiku-4-5-20251001-v1:0":{"attachment":true,"cost":{"cache_read":0.1,"cache_write":1.25,"input":1,"output":5},"family":"claude-haiku","id":"eu.anthropic.claude-haiku-4-5-20251001-v1:0","knowledge":"2025-02-28","last_updated":"2025-10-15","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Haiku 4.5 (EU)","open_weights":false,"reasoning":true,"release_date":"2025-10-15","structured_output":true,"temperature":true,"tool_call":true},"eu.anthropic.claude-opus-4-5-20251101-v1:0":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"input":5,"output":25},"family":"claude-opus","id":"eu.anthropic.claude-opus-4-5-20251101-v1:0","knowledge":"2025-03-31","last_updated":"2025-08-01","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.5 (EU)","open_weights":false,"reasoning":true,"release_date":"2025-11-24","structured_output":true,"temperature":true,"tool_call":true},"eu.anthropic.claude-opus-4-6-v1":{"attachment":true,"cost":{"cache_read":0.55,"cache_write":6.875,"input":5.5,"output":27.5},"family":"claude-opus","id":"eu.anthropic.claude-opus-4-6-v1","knowledge":"2025-05-31","last_updated":"2026-03-13","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.6 (EU)","open_weights":false,"reasoning":true,"release_date":"2026-02-05","structured_output":true,"temperature":true,"tool_call":true},"eu.anthropic.claude-opus-4-7":{"attachment":true,"cost":{"cache_read":0.55,"cache_write":6.875,"input":5.5,"output":27.5},"family":"claude-opus","id":"eu.anthropic.claude-opus-4-7","knowledge":"2026-01-31","last_updated":"2026-04-16","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.7 (EU)","open_weights":false,"reasoning":true,"release_date":"2026-04-16","temperature":false,"tool_call":true},"eu.anthropic.claude-opus-4-8":{"attachment":true,"cost":{"cache_read":0.55,"cache_write":6.875,"input":5.5,"output":27.5},"family":"claude-opus","id":"eu.anthropic.claude-opus-4-8","last_updated":"2026-05-28","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.8 (EU)","open_weights":false,"reasoning":true,"release_date":"2026-05-28","temperature":false,"tool_call":true},"eu.anthropic.claude-sonnet-4-5-20250929-v1:0":{"attachment":true,"cost":{"cache_read":0.33,"cache_write":4.125,"input":3.3,"output":16.5},"family":"claude-sonnet","id":"eu.anthropic.claude-sonnet-4-5-20250929-v1:0","knowledge":"2025-07-31","last_updated":"2025-09-29","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 4.5 (EU)","open_weights":false,"reasoning":true,"release_date":"2025-09-29","structured_output":true,"temperature":true,"tool_call":true},"eu.anthropic.claude-sonnet-4-6":{"attachment":true,"cost":{"cache_read":0.33,"cache_write":4.125,"input":3.3,"output":16.5},"family":"claude-sonnet","id":"eu.anthropic.claude-sonnet-4-6","knowledge":"2025-08-31","last_updated":"2026-03-13","limit":{"context":1000000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 4.6 (EU)","open_weights":false,"reasoning":true,"release_date":"2026-02-17","structured_output":true,"temperature":true,"tool_call":true},"global.anthropic.claude-haiku-4-5-20251001-v1:0":{"attachment":true,"cost":{"cache_read":0.1,"cache_write":1.25,"input":1,"output":5},"family":"claude-haiku","id":"global.anthropic.claude-haiku-4-5-20251001-v1:0","knowledge":"2025-02-28","last_updated":"2025-10-15","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Haiku 4.5 (Global)","open_weights":false,"reasoning":true,"release_date":"2025-10-15","structured_output":true,"temperature":true,"tool_call":true},"global.anthropic.claude-opus-4-5-20251101-v1:0":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"input":5,"output":25},"family":"claude-opus","id":"global.anthropic.claude-opus-4-5-20251101-v1:0","knowledge":"2025-03-31","last_updated":"2025-08-01","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.5 (Global)","open_weights":false,"reasoning":true,"release_date":"2025-11-24","structured_output":true,"temperature":true,"tool_call":true},"global.anthropic.claude-opus-4-6-v1":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"input":5,"output":25},"family":"claude-opus","id":"global.anthropic.claude-opus-4-6-v1","knowledge":"2025-05-31","last_updated":"2026-03-13","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.6 (Global)","open_weights":false,"reasoning":true,"release_date":"2026-02-05","structured_output":true,"temperature":true,"tool_call":true},"global.anthropic.claude-opus-4-7":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"input":5,"output":25},"family":"claude-opus","id":"global.anthropic.claude-opus-4-7","knowledge":"2026-01-31","last_updated":"2026-04-16","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.7 (Global)","open_weights":false,"reasoning":true,"release_date":"2026-04-16","temperature":false,"tool_call":true},"global.anthropic.claude-opus-4-8":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"input":5,"output":25},"family":"claude-opus","id":"global.anthropic.claude-opus-4-8","last_updated":"2026-05-28","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.8 (Global)","open_weights":false,"reasoning":true,"release_date":"2026-05-28","temperature":false,"tool_call":true},"global.anthropic.claude-sonnet-4-5-20250929-v1:0":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"input":3,"output":15},"family":"claude-sonnet","id":"global.anthropic.claude-sonnet-4-5-20250929-v1:0","knowledge":"2025-07-31","last_updated":"2025-09-29","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 4.5 (Global)","open_weights":false,"reasoning":true,"release_date":"2025-09-29","structured_output":true,"temperature":true,"tool_call":true},"global.anthropic.claude-sonnet-4-6":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"input":3,"output":15},"family":"claude-sonnet","id":"global.anthropic.claude-sonnet-4-6","knowledge":"2025-08-31","last_updated":"2026-03-13","limit":{"context":1000000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 4.6 (Global)","open_weights":false,"reasoning":true,"release_date":"2026-02-17","structured_output":true,"temperature":true,"tool_call":true},"google.gemma-3-12b-it":{"attachment":false,"cost":{"input":0.049999999999999996,"output":0.09999999999999999},"family":"gemma","id":"google.gemma-3-12b-it","knowledge":"2024-12","last_updated":"2024-12-01","limit":{"context":131072,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Google Gemma 3 12B","open_weights":false,"reasoning":false,"release_date":"2024-12-01","structured_output":true,"temperature":true,"tool_call":false},"google.gemma-3-27b-it":{"attachment":true,"cost":{"input":0.12,"output":0.2},"family":"gemma","id":"google.gemma-3-27b-it","knowledge":"2025-07","last_updated":"2025-07-27","limit":{"context":202752,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Google Gemma 3 27B Instruct","open_weights":true,"reasoning":false,"release_date":"2025-07-27","structured_output":true,"temperature":true,"tool_call":true},"google.gemma-3-4b-it":{"attachment":false,"cost":{"input":0.04,"output":0.08},"family":"gemma","id":"google.gemma-3-4b-it","last_updated":"2024-12-01","limit":{"context":128000,"output":4096},"modalities":{"input":["text","image"],"output":["text"]},"name":"Gemma 3 4B IT","open_weights":false,"reasoning":false,"release_date":"2024-12-01","temperature":true,"tool_call":true},"jp.anthropic.claude-opus-4-7":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"input":5,"output":25},"family":"claude-opus","id":"jp.anthropic.claude-opus-4-7","knowledge":"2026-01-31","last_updated":"2026-04-16","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.7 (JP)","open_weights":false,"reasoning":true,"release_date":"2026-04-16","temperature":false,"tool_call":true},"jp.anthropic.claude-opus-4-8":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"input":5,"output":25},"family":"claude-opus","id":"jp.anthropic.claude-opus-4-8","last_updated":"2026-05-28","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.8 (JP)","open_weights":false,"reasoning":true,"release_date":"2026-05-28","temperature":false,"tool_call":true},"jp.anthropic.claude-sonnet-4-5-20250929-v1:0":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"input":3,"output":15},"family":"claude-sonnet","id":"jp.anthropic.claude-sonnet-4-5-20250929-v1:0","knowledge":"2025-07-31","last_updated":"2025-09-29","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 4.5 (JP)","open_weights":false,"reasoning":true,"release_date":"2025-09-29","structured_output":true,"temperature":true,"tool_call":true},"jp.anthropic.claude-sonnet-4-6":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"input":3,"output":15},"family":"claude-sonnet","id":"jp.anthropic.claude-sonnet-4-6","knowledge":"2025-08-31","last_updated":"2026-03-13","limit":{"context":1000000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 4.6 (JP)","open_weights":false,"reasoning":true,"release_date":"2026-02-17","structured_output":true,"temperature":true,"tool_call":true},"meta.llama3-1-70b-instruct-v1:0":{"attachment":false,"cost":{"input":0.72,"output":0.72},"family":"llama","id":"meta.llama3-1-70b-instruct-v1:0","knowledge":"2023-12","last_updated":"2024-07-23","limit":{"context":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.1 70B Instruct","open_weights":true,"reasoning":false,"release_date":"2024-07-23","temperature":true,"tool_call":true},"meta.llama3-1-8b-instruct-v1:0":{"attachment":false,"cost":{"input":0.22,"output":0.22},"family":"llama","id":"meta.llama3-1-8b-instruct-v1:0","knowledge":"2023-12","last_updated":"2024-07-23","limit":{"context":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.1 8B Instruct","open_weights":true,"reasoning":false,"release_date":"2024-07-23","temperature":true,"tool_call":true},"meta.llama3-3-70b-instruct-v1:0":{"attachment":false,"cost":{"input":0.72,"output":0.72},"family":"llama","id":"meta.llama3-3-70b-instruct-v1:0","knowledge":"2023-12","last_updated":"2024-12-06","limit":{"context":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.3 70B Instruct","open_weights":true,"reasoning":false,"release_date":"2024-12-06","temperature":true,"tool_call":true},"meta.llama4-maverick-17b-instruct-v1:0":{"attachment":true,"cost":{"input":0.24,"output":0.97},"family":"llama","id":"meta.llama4-maverick-17b-instruct-v1:0","knowledge":"2024-08","last_updated":"2025-04-05","limit":{"context":1000000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"Llama 4 Maverick 17B Instruct","open_weights":true,"reasoning":false,"release_date":"2025-04-05","temperature":true,"tool_call":true},"meta.llama4-scout-17b-instruct-v1:0":{"attachment":true,"cost":{"input":0.17,"output":0.66},"family":"llama","id":"meta.llama4-scout-17b-instruct-v1:0","knowledge":"2024-08","last_updated":"2025-04-05","limit":{"context":3500000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"Llama 4 Scout 17B Instruct","open_weights":true,"reasoning":false,"release_date":"2025-04-05","temperature":true,"tool_call":true},"minimax.minimax-m2":{"attachment":false,"cost":{"input":0.3,"output":1.2},"family":"minimax","id":"minimax.minimax-m2","last_updated":"2025-10-27","limit":{"context":204608,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax M2","open_weights":true,"reasoning":true,"release_date":"2025-10-27","structured_output":false,"temperature":true,"tool_call":true},"minimax.minimax-m2.1":{"attachment":false,"cost":{"input":0.3,"output":1.2},"family":"minimax","id":"minimax.minimax-m2.1","last_updated":"2025-12-23","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax M2.1","open_weights":true,"reasoning":true,"release_date":"2025-12-23","structured_output":false,"temperature":true,"tool_call":true},"minimax.minimax-m2.5":{"attachment":false,"cost":{"input":0.3,"output":1.2},"family":"minimax","id":"minimax.minimax-m2.5","last_updated":"2026-03-18","limit":{"context":196608,"output":98304},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax M2.5","open_weights":true,"reasoning":true,"release_date":"2026-03-18","structured_output":false,"temperature":true,"tool_call":true},"mistral.devstral-2-123b":{"attachment":false,"cost":{"input":0.4,"output":2},"family":"devstral","id":"mistral.devstral-2-123b","last_updated":"2026-02-17","limit":{"context":256000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Devstral 2 123B","open_weights":true,"reasoning":false,"release_date":"2026-02-17","structured_output":true,"temperature":true,"tool_call":true},"mistral.magistral-small-2509":{"attachment":false,"cost":{"input":0.5,"output":1.5},"family":"magistral","id":"mistral.magistral-small-2509","last_updated":"2025-12-02","limit":{"context":128000,"output":40000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Magistral Small 1.2","open_weights":true,"reasoning":true,"release_date":"2025-12-02","structured_output":true,"temperature":true,"tool_call":true},"mistral.ministral-3-14b-instruct":{"attachment":false,"cost":{"input":0.2,"output":0.2},"family":"ministral","id":"mistral.ministral-3-14b-instruct","last_updated":"2024-12-01","limit":{"context":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Ministral 14B 3.0","open_weights":false,"reasoning":false,"release_date":"2024-12-01","structured_output":true,"temperature":true,"tool_call":true},"mistral.ministral-3-3b-instruct":{"attachment":false,"cost":{"input":0.1,"output":0.1},"family":"ministral","id":"mistral.ministral-3-3b-instruct","last_updated":"2025-12-02","limit":{"context":256000,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Ministral 3 3B","open_weights":true,"reasoning":false,"release_date":"2025-12-02","structured_output":true,"temperature":true,"tool_call":true},"mistral.ministral-3-8b-instruct":{"attachment":false,"cost":{"input":0.15,"output":0.15},"family":"ministral","id":"mistral.ministral-3-8b-instruct","last_updated":"2024-12-01","limit":{"context":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Ministral 3 8B","open_weights":false,"reasoning":false,"release_date":"2024-12-01","structured_output":true,"temperature":true,"tool_call":true},"mistral.mistral-large-3-675b-instruct":{"attachment":false,"cost":{"input":0.5,"output":1.5},"family":"mistral","id":"mistral.mistral-large-3-675b-instruct","last_updated":"2025-12-02","limit":{"context":256000,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Mistral Large 3","open_weights":true,"reasoning":false,"release_date":"2025-12-02","structured_output":true,"temperature":true,"tool_call":true},"mistral.pixtral-large-2502-v1:0":{"attachment":false,"cost":{"input":2,"output":6},"family":"mistral","id":"mistral.pixtral-large-2502-v1:0","last_updated":"2025-04-08","limit":{"context":128000,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Pixtral Large (25.02)","open_weights":false,"reasoning":false,"release_date":"2025-04-08","temperature":true,"tool_call":true},"mistral.voxtral-mini-3b-2507":{"attachment":false,"cost":{"input":0.04,"output":0.04},"family":"mistral","id":"mistral.voxtral-mini-3b-2507","last_updated":"2024-12-01","limit":{"context":128000,"output":4096},"modalities":{"input":["audio","text"],"output":["text"]},"name":"Voxtral Mini 3B 2507","open_weights":false,"reasoning":false,"release_date":"2024-12-01","structured_output":true,"temperature":true,"tool_call":true},"mistral.voxtral-small-24b-2507":{"attachment":true,"cost":{"input":0.15,"output":0.35},"family":"mistral","id":"mistral.voxtral-small-24b-2507","last_updated":"2025-07-01","limit":{"context":32000,"output":8192},"modalities":{"input":["text","audio"],"output":["text"]},"name":"Voxtral Small 24B 2507","open_weights":true,"reasoning":false,"release_date":"2025-07-01","structured_output":true,"temperature":true,"tool_call":true},"moonshot.kimi-k2-thinking":{"attachment":false,"cost":{"input":0.6,"output":2.5},"family":"kimi-thinking","id":"moonshot.kimi-k2-thinking","interleaved":true,"last_updated":"2025-12-02","limit":{"context":262143,"output":16000},"modalities":{"input":["text"],"output":["text"]},"name":"Kimi K2 Thinking","open_weights":true,"reasoning":true,"release_date":"2025-12-02","structured_output":true,"temperature":true,"tool_call":true},"moonshotai.kimi-k2.5":{"attachment":false,"cost":{"input":0.6,"output":3},"family":"kimi","id":"moonshotai.kimi-k2.5","interleaved":true,"last_updated":"2026-02-06","limit":{"context":262143,"output":16000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Kimi K2.5","open_weights":true,"reasoning":true,"release_date":"2026-02-06","structured_output":true,"temperature":true,"tool_call":true},"nvidia.nemotron-nano-12b-v2":{"attachment":false,"cost":{"input":0.2,"output":0.6},"family":"nemotron","id":"nvidia.nemotron-nano-12b-v2","last_updated":"2024-12-01","limit":{"context":128000,"output":4096},"modalities":{"input":["text","image"],"output":["text"]},"name":"NVIDIA Nemotron Nano 12B v2 VL BF16","open_weights":false,"reasoning":false,"release_date":"2024-12-01","structured_output":true,"temperature":true,"tool_call":true},"nvidia.nemotron-nano-3-30b":{"attachment":false,"cost":{"input":0.06,"output":0.24},"family":"nemotron","id":"nvidia.nemotron-nano-3-30b","last_updated":"2025-12-23","limit":{"context":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"NVIDIA Nemotron Nano 3 30B","open_weights":true,"reasoning":true,"release_date":"2025-12-23","structured_output":true,"temperature":true,"tool_call":true},"nvidia.nemotron-nano-9b-v2":{"attachment":false,"cost":{"input":0.06,"output":0.23},"family":"nemotron","id":"nvidia.nemotron-nano-9b-v2","last_updated":"2024-12-01","limit":{"context":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"NVIDIA Nemotron Nano 9B v2","open_weights":false,"reasoning":false,"release_date":"2024-12-01","structured_output":true,"temperature":true,"tool_call":true},"nvidia.nemotron-super-3-120b":{"attachment":false,"cost":{"input":0.15,"output":0.65},"family":"nemotron","id":"nvidia.nemotron-super-3-120b","last_updated":"2026-03-11","limit":{"context":262144,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"NVIDIA Nemotron 3 Super 120B A12B","open_weights":true,"reasoning":true,"release_date":"2026-03-11","structured_output":true,"temperature":true,"tool_call":true},"openai.gpt-oss-120b-1:0":{"attachment":false,"cost":{"input":0.15,"output":0.6},"family":"gpt-oss","id":"openai.gpt-oss-120b-1:0","last_updated":"2025-08-05","limit":{"context":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"gpt-oss-120b","open_weights":false,"reasoning":false,"release_date":"2025-08-05","structured_output":true,"temperature":true,"tool_call":true},"openai.gpt-oss-20b-1:0":{"attachment":false,"cost":{"input":0.07,"output":0.3},"family":"gpt-oss","id":"openai.gpt-oss-20b-1:0","last_updated":"2025-08-05","limit":{"context":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"gpt-oss-20b","open_weights":false,"reasoning":false,"release_date":"2025-08-05","structured_output":true,"temperature":true,"tool_call":true},"openai.gpt-oss-safeguard-120b":{"attachment":false,"cost":{"input":0.15,"output":0.6},"family":"gpt-oss","id":"openai.gpt-oss-safeguard-120b","last_updated":"2025-10-29","limit":{"context":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"GPT OSS Safeguard 120B","open_weights":false,"reasoning":false,"release_date":"2025-10-29","structured_output":true,"temperature":true,"tool_call":true},"openai.gpt-oss-safeguard-20b":{"attachment":false,"cost":{"input":0.07,"output":0.2},"family":"gpt-oss","id":"openai.gpt-oss-safeguard-20b","last_updated":"2025-10-29","limit":{"context":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"GPT OSS Safeguard 20B","open_weights":false,"reasoning":false,"release_date":"2025-10-29","structured_output":true,"temperature":true,"tool_call":true},"qwen.qwen3-235b-a22b-2507-v1:0":{"attachment":false,"cost":{"input":0.22,"output":0.88},"family":"qwen","id":"qwen.qwen3-235b-a22b-2507-v1:0","knowledge":"2024-04","last_updated":"2025-09-18","limit":{"context":262144,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 235B A22B 2507","open_weights":true,"reasoning":false,"release_date":"2025-09-18","structured_output":true,"temperature":true,"tool_call":true},"qwen.qwen3-32b-v1:0":{"attachment":false,"cost":{"input":0.15,"output":0.6},"family":"qwen","id":"qwen.qwen3-32b-v1:0","knowledge":"2024-04","last_updated":"2025-09-18","limit":{"context":16384,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 32B (dense)","open_weights":true,"reasoning":true,"release_date":"2025-09-18","structured_output":true,"temperature":true,"tool_call":true},"qwen.qwen3-coder-30b-a3b-v1:0":{"attachment":false,"cost":{"input":0.15,"output":0.6},"family":"qwen","id":"qwen.qwen3-coder-30b-a3b-v1:0","knowledge":"2024-04","last_updated":"2025-09-18","limit":{"context":262144,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Coder 30B A3B Instruct","open_weights":false,"reasoning":false,"release_date":"2025-09-18","structured_output":true,"temperature":true,"tool_call":true},"qwen.qwen3-coder-480b-a35b-v1:0":{"attachment":false,"cost":{"input":0.22,"output":1.8},"family":"qwen","id":"qwen.qwen3-coder-480b-a35b-v1:0","knowledge":"2024-04","last_updated":"2025-09-18","limit":{"context":131072,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Coder 480B A35B Instruct","open_weights":true,"reasoning":false,"release_date":"2025-09-18","structured_output":true,"temperature":true,"tool_call":true},"qwen.qwen3-coder-next":{"attachment":false,"cost":{"input":0.22,"output":1.8},"family":"qwen","id":"qwen.qwen3-coder-next","last_updated":"2026-02-06","limit":{"context":131072,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Coder Next","open_weights":true,"reasoning":true,"release_date":"2026-02-06","structured_output":true,"temperature":true,"tool_call":true},"qwen.qwen3-next-80b-a3b":{"attachment":false,"cost":{"input":0.14,"output":1.4},"family":"qwen","id":"qwen.qwen3-next-80b-a3b","last_updated":"2025-11-25","limit":{"context":262000,"output":262000},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen/Qwen3-Next-80B-A3B-Instruct","open_weights":false,"reasoning":false,"release_date":"2025-09-18","structured_output":true,"temperature":true,"tool_call":true},"qwen.qwen3-vl-235b-a22b":{"attachment":true,"cost":{"input":0.3,"output":1.5},"family":"qwen","id":"qwen.qwen3-vl-235b-a22b","last_updated":"2025-11-25","limit":{"context":262000,"output":262000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen/Qwen3-VL-235B-A22B-Instruct","open_weights":false,"reasoning":false,"release_date":"2025-10-04","structured_output":true,"temperature":true,"tool_call":true},"us.anthropic.claude-haiku-4-5-20251001-v1:0":{"attachment":true,"cost":{"cache_read":0.1,"cache_write":1.25,"input":1,"output":5},"family":"claude-haiku","id":"us.anthropic.claude-haiku-4-5-20251001-v1:0","knowledge":"2025-02-28","last_updated":"2025-10-15","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Haiku 4.5 (US)","open_weights":false,"reasoning":true,"release_date":"2025-10-15","structured_output":true,"temperature":true,"tool_call":true},"us.anthropic.claude-opus-4-1-20250805-v1:0":{"attachment":true,"cost":{"cache_read":1.5,"cache_write":18.75,"input":15,"output":75},"family":"claude-opus","id":"us.anthropic.claude-opus-4-1-20250805-v1:0","knowledge":"2025-03-31","last_updated":"2025-08-05","limit":{"context":200000,"output":32000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.1 (US)","open_weights":false,"reasoning":true,"release_date":"2025-08-05","temperature":true,"tool_call":true},"us.anthropic.claude-opus-4-5-20251101-v1:0":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"input":5,"output":25},"family":"claude-opus","id":"us.anthropic.claude-opus-4-5-20251101-v1:0","knowledge":"2025-03-31","last_updated":"2025-08-01","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.5 (US)","open_weights":false,"reasoning":true,"release_date":"2025-11-24","structured_output":true,"temperature":true,"tool_call":true},"us.anthropic.claude-opus-4-6-v1":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"input":5,"output":25},"family":"claude-opus","id":"us.anthropic.claude-opus-4-6-v1","knowledge":"2025-05-31","last_updated":"2026-03-13","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.6 (US)","open_weights":false,"reasoning":true,"release_date":"2026-02-05","structured_output":true,"temperature":true,"tool_call":true},"us.anthropic.claude-opus-4-7":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"input":5,"output":25},"family":"claude-opus","id":"us.anthropic.claude-opus-4-7","knowledge":"2026-01-31","last_updated":"2026-04-16","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.7 (US)","open_weights":false,"reasoning":true,"release_date":"2026-04-16","temperature":false,"tool_call":true},"us.anthropic.claude-opus-4-8":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"input":5,"output":25},"family":"claude-opus","id":"us.anthropic.claude-opus-4-8","last_updated":"2026-05-28","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.8 (US)","open_weights":false,"reasoning":true,"release_date":"2026-05-28","temperature":false,"tool_call":true},"us.anthropic.claude-sonnet-4-5-20250929-v1:0":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"input":3,"output":15},"family":"claude-sonnet","id":"us.anthropic.claude-sonnet-4-5-20250929-v1:0","knowledge":"2025-07-31","last_updated":"2025-09-29","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 4.5 (US)","open_weights":false,"reasoning":true,"release_date":"2025-09-29","structured_output":true,"temperature":true,"tool_call":true},"us.anthropic.claude-sonnet-4-6":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"input":3,"output":15},"family":"claude-sonnet","id":"us.anthropic.claude-sonnet-4-6","knowledge":"2025-08-31","last_updated":"2026-03-13","limit":{"context":1000000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 4.6 (US)","open_weights":false,"reasoning":true,"release_date":"2026-02-17","structured_output":true,"temperature":true,"tool_call":true},"us.deepseek.r1-v1:0":{"attachment":false,"cost":{"input":1.35,"output":5.4},"family":"deepseek-thinking","id":"us.deepseek.r1-v1:0","knowledge":"2024-07","last_updated":"2025-05-29","limit":{"context":128000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek-R1 (US)","open_weights":false,"reasoning":true,"release_date":"2025-01-20","temperature":true,"tool_call":true},"us.meta.llama4-maverick-17b-instruct-v1:0":{"attachment":true,"cost":{"input":0.24,"output":0.97},"family":"llama","id":"us.meta.llama4-maverick-17b-instruct-v1:0","knowledge":"2024-08","last_updated":"2025-04-05","limit":{"context":1000000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"Llama 4 Maverick 17B Instruct (US)","open_weights":true,"reasoning":false,"release_date":"2025-04-05","temperature":true,"tool_call":true},"us.meta.llama4-scout-17b-instruct-v1:0":{"attachment":true,"cost":{"input":0.17,"output":0.66},"family":"llama","id":"us.meta.llama4-scout-17b-instruct-v1:0","knowledge":"2024-08","last_updated":"2025-04-05","limit":{"context":3500000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"Llama 4 Scout 17B Instruct (US)","open_weights":true,"reasoning":false,"release_date":"2025-04-05","temperature":true,"tool_call":true},"writer.palmyra-x4-v1:0":{"attachment":false,"cost":{"input":2.5,"output":10},"family":"palmyra","id":"writer.palmyra-x4-v1:0","last_updated":"2025-04-28","limit":{"context":122880,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Palmyra X4","open_weights":false,"reasoning":true,"release_date":"2025-04-28","temperature":true,"tool_call":true},"writer.palmyra-x5-v1:0":{"attachment":false,"cost":{"input":0.6,"output":6},"family":"palmyra","id":"writer.palmyra-x5-v1:0","last_updated":"2025-04-28","limit":{"context":1040000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Palmyra X5","open_weights":false,"reasoning":true,"release_date":"2025-04-28","temperature":true,"tool_call":true},"zai.glm-4.7":{"attachment":false,"cost":{"input":0.6,"output":2.2},"family":"glm","id":"zai.glm-4.7","interleaved":{"field":"reasoning_content"},"knowledge":"2025-04","last_updated":"2025-12-22","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4.7","open_weights":true,"reasoning":true,"release_date":"2025-12-22","structured_output":true,"temperature":true,"tool_call":true},"zai.glm-4.7-flash":{"attachment":false,"cost":{"input":0.07,"output":0.4},"family":"glm-flash","id":"zai.glm-4.7-flash","knowledge":"2025-04","last_updated":"2026-01-19","limit":{"context":200000,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4.7-Flash","open_weights":true,"reasoning":true,"release_date":"2026-01-19","structured_output":true,"temperature":true,"tool_call":true},"zai.glm-5":{"attachment":false,"cost":{"input":1,"output":3.2},"family":"glm","id":"zai.glm-5","interleaved":{"field":"reasoning_content"},"last_updated":"2026-03-18","limit":{"context":202752,"output":101376},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-5","open_weights":true,"reasoning":true,"release_date":"2026-03-18","structured_output":true,"temperature":true,"tool_call":true}},"name":"Amazon Bedrock","npm":"@ai-sdk/amazon-bedrock"},"ambient":{"api":"https://api.ambient.xyz/v1","doc":"https://ambient.xyz","env":["AMBIENT_API_KEY"],"id":"ambient","models":{"moonshotai/kimi-k2.6":{"attachment":true,"cost":{"cache_read":0.2,"cache_write":0,"input":0.95,"output":4},"family":"kimi-k2.6","id":"moonshotai/kimi-k2.6","interleaved":{"field":"reasoning_content"},"knowledge":"2025-01","last_updated":"2026-04-21","limit":{"context":262144,"output":262144},"modalities":{"input":["text","image"],"output":["text"]},"name":"Kimi K2.6","open_weights":true,"reasoning":true,"release_date":"2026-04-21","structured_output":true,"temperature":true,"tool_call":true},"zai-org/GLM-5.1-FP8":{"attachment":false,"cost":{"cache_read":0,"cache_write":0,"input":1.4,"output":4.4},"family":"glm","id":"zai-org/GLM-5.1-FP8","interleaved":{"field":"reasoning_content"},"last_updated":"2026-03-27","limit":{"context":202752,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-5.1","open_weights":false,"reasoning":true,"release_date":"2026-03-27","structured_output":true,"temperature":true,"tool_call":true}},"name":"Ambient","npm":"@ai-sdk/openai-compatible"},"anthropic":{"doc":"https://docs.anthropic.com/en/docs/about-claude/models","env":["ANTHROPIC_API_KEY"],"id":"anthropic","models":{"claude-3-5-haiku-20241022":{"attachment":true,"cost":{"cache_read":0.08,"cache_write":1,"input":0.8,"output":4},"family":"claude-haiku","id":"claude-3-5-haiku-20241022","knowledge":"2024-07-31","last_updated":"2024-10-22","limit":{"context":200000,"output":8192},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Haiku 3.5","open_weights":false,"reasoning":false,"release_date":"2024-10-22","status":"deprecated","temperature":true,"tool_call":true},"claude-3-5-haiku-latest":{"attachment":true,"cost":{"cache_read":0.08,"cache_write":1,"input":0.8,"output":4},"family":"claude-haiku","id":"claude-3-5-haiku-latest","knowledge":"2024-07-31","last_updated":"2024-10-22","limit":{"context":200000,"output":8192},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Haiku 3.5 (latest)","open_weights":false,"reasoning":false,"release_date":"2024-10-22","temperature":true,"tool_call":true},"claude-3-5-sonnet-20240620":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"input":3,"output":15},"family":"claude-sonnet","id":"claude-3-5-sonnet-20240620","knowledge":"2024-04-30","last_updated":"2024-06-20","limit":{"context":200000,"output":8192},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 3.5","open_weights":false,"reasoning":false,"release_date":"2024-06-20","status":"deprecated","temperature":true,"tool_call":true},"claude-3-5-sonnet-20241022":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"input":3,"output":15},"family":"claude-sonnet","id":"claude-3-5-sonnet-20241022","knowledge":"2024-04-30","last_updated":"2024-10-22","limit":{"context":200000,"output":8192},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 3.5 v2","open_weights":false,"reasoning":false,"release_date":"2024-10-22","status":"deprecated","temperature":true,"tool_call":true},"claude-3-7-sonnet-20250219":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"input":3,"output":15},"family":"claude-sonnet","id":"claude-3-7-sonnet-20250219","knowledge":"2024-10-31","last_updated":"2025-02-19","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 3.7","open_weights":false,"reasoning":true,"reasoning_options":[{"min":1024,"type":"budget_tokens"}],"release_date":"2025-02-19","status":"deprecated","temperature":true,"tool_call":true},"claude-3-haiku-20240307":{"attachment":true,"cost":{"cache_read":0.03,"cache_write":0.3,"input":0.25,"output":1.25},"family":"claude-haiku","id":"claude-3-haiku-20240307","knowledge":"2023-08-31","last_updated":"2024-03-13","limit":{"context":200000,"output":4096},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Haiku 3","open_weights":false,"reasoning":false,"release_date":"2024-03-13","status":"deprecated","temperature":true,"tool_call":true},"claude-3-opus-20240229":{"attachment":true,"cost":{"cache_read":1.5,"cache_write":18.75,"input":15,"output":75},"family":"claude-opus","id":"claude-3-opus-20240229","knowledge":"2023-08-31","last_updated":"2024-02-29","limit":{"context":200000,"output":4096},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 3","open_weights":false,"reasoning":false,"release_date":"2024-02-29","status":"deprecated","temperature":true,"tool_call":true},"claude-3-sonnet-20240229":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":0.3,"input":3,"output":15},"family":"claude-sonnet","id":"claude-3-sonnet-20240229","knowledge":"2023-08-31","last_updated":"2024-03-04","limit":{"context":200000,"output":4096},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 3","open_weights":false,"reasoning":false,"release_date":"2024-03-04","status":"deprecated","temperature":true,"tool_call":true},"claude-haiku-4-5":{"attachment":true,"cost":{"cache_read":0.1,"cache_write":1.25,"input":1,"output":5},"family":"claude-haiku","id":"claude-haiku-4-5","knowledge":"2025-02-28","last_updated":"2025-10-15","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Haiku 4.5 (latest)","open_weights":false,"reasoning":true,"reasoning_options":[{"min":1024,"type":"budget_tokens"}],"release_date":"2025-10-15","temperature":true,"tool_call":true},"claude-haiku-4-5-20251001":{"attachment":true,"cost":{"cache_read":0.1,"cache_write":1.25,"input":1,"output":5},"family":"claude-haiku","id":"claude-haiku-4-5-20251001","knowledge":"2025-02-28","last_updated":"2025-10-15","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Haiku 4.5","open_weights":false,"reasoning":true,"reasoning_options":[{"min":1024,"type":"budget_tokens"}],"release_date":"2025-10-15","temperature":true,"tool_call":true},"claude-opus-4-0":{"attachment":true,"cost":{"cache_read":1.5,"cache_write":18.75,"input":15,"output":75},"family":"claude-opus","id":"claude-opus-4-0","knowledge":"2025-03-31","last_updated":"2025-05-22","limit":{"context":200000,"output":32000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4 (latest)","open_weights":false,"reasoning":true,"reasoning_options":[{"min":1024,"type":"budget_tokens"}],"release_date":"2025-05-22","temperature":true,"tool_call":true},"claude-opus-4-1":{"attachment":true,"cost":{"cache_read":1.5,"cache_write":18.75,"input":15,"output":75},"family":"claude-opus","id":"claude-opus-4-1","knowledge":"2025-03-31","last_updated":"2025-08-05","limit":{"context":200000,"output":32000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.1 (latest)","open_weights":false,"reasoning":true,"reasoning_options":[{"min":1024,"type":"budget_tokens"}],"release_date":"2025-08-05","temperature":true,"tool_call":true},"claude-opus-4-1-20250805":{"attachment":true,"cost":{"cache_read":1.5,"cache_write":18.75,"input":15,"output":75},"family":"claude-opus","id":"claude-opus-4-1-20250805","knowledge":"2025-03-31","last_updated":"2025-08-05","limit":{"context":200000,"output":32000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.1","open_weights":false,"reasoning":true,"reasoning_options":[{"min":1024,"type":"budget_tokens"}],"release_date":"2025-08-05","temperature":true,"tool_call":true},"claude-opus-4-20250514":{"attachment":true,"cost":{"cache_read":1.5,"cache_write":18.75,"input":15,"output":75},"family":"claude-opus","id":"claude-opus-4-20250514","knowledge":"2025-03-31","last_updated":"2025-05-22","limit":{"context":200000,"output":32000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4","open_weights":false,"reasoning":true,"reasoning_options":[{"min":1024,"type":"budget_tokens"}],"release_date":"2025-05-22","temperature":true,"tool_call":true},"claude-opus-4-5":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"input":5,"output":25},"family":"claude-opus","id":"claude-opus-4-5","knowledge":"2025-03-31","last_updated":"2025-11-24","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.5 (latest)","open_weights":false,"reasoning":true,"reasoning_options":[{"type":"effort","values":["low","medium","high"]},{"min":1024,"type":"budget_tokens"}],"release_date":"2025-11-24","temperature":true,"tool_call":true},"claude-opus-4-5-20251101":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"input":5,"output":25},"family":"claude-opus","id":"claude-opus-4-5-20251101","knowledge":"2025-03-31","last_updated":"2025-11-01","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.5","open_weights":false,"reasoning":true,"reasoning_options":[{"type":"effort","values":["low","medium","high"]},{"min":1024,"type":"budget_tokens"}],"release_date":"2025-11-01","temperature":true,"tool_call":true},"claude-opus-4-6":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"input":5,"output":25},"experimental":{"modes":{"fast":{"cost":{"cache_read":3,"cache_write":37.5,"input":30,"output":150},"provider":{"body":{"speed":"fast"},"headers":{"anthropic-beta":"fast-mode-2026-02-01"}}}}},"family":"claude-opus","id":"claude-opus-4-6","knowledge":"2025-05-31","last_updated":"2026-03-13","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.6","open_weights":false,"reasoning":true,"reasoning_options":[{"type":"effort","values":["low","medium","high","max"]},{"min":1024,"type":"budget_tokens"}],"release_date":"2026-02-05","temperature":true,"tool_call":true},"claude-opus-4-7":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"input":5,"output":25},"experimental":{"modes":{"fast":{"cost":{"cache_read":3,"cache_write":37.5,"input":30,"output":150},"provider":{"body":{"speed":"fast"},"headers":{"anthropic-beta":"fast-mode-2026-02-01"}}}}},"family":"claude-opus","id":"claude-opus-4-7","knowledge":"2026-01-31","last_updated":"2026-04-16","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.7","open_weights":false,"reasoning":true,"reasoning_options":[{"type":"effort","values":["low","medium","high","xhigh","max"]}],"release_date":"2026-04-16","temperature":false,"tool_call":true},"claude-opus-4-8":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"input":5,"output":25},"experimental":{"modes":{"fast":{"cost":{"cache_read":1,"cache_write":12.5,"input":10,"output":50},"provider":{"body":{"speed":"fast"},"headers":{"anthropic-beta":"fast-mode-2026-02-01"}}}}},"family":"claude-opus","id":"claude-opus-4-8","last_updated":"2026-05-28","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.8","open_weights":false,"reasoning":true,"reasoning_options":[{"type":"effort","values":["low","medium","high","xhigh","max"]}],"release_date":"2026-05-28","temperature":false,"tool_call":true},"claude-sonnet-4-0":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"input":3,"output":15},"family":"claude-sonnet","id":"claude-sonnet-4-0","knowledge":"2025-03-31","last_updated":"2025-05-22","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 4 (latest)","open_weights":false,"reasoning":true,"reasoning_options":[{"min":1024,"type":"budget_tokens"}],"release_date":"2025-05-22","temperature":true,"tool_call":true},"claude-sonnet-4-20250514":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"input":3,"output":15},"family":"claude-sonnet","id":"claude-sonnet-4-20250514","knowledge":"2025-03-31","last_updated":"2025-05-22","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 4","open_weights":false,"reasoning":true,"reasoning_options":[{"min":1024,"type":"budget_tokens"}],"release_date":"2025-05-22","temperature":true,"tool_call":true},"claude-sonnet-4-5":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"input":3,"output":15},"family":"claude-sonnet","id":"claude-sonnet-4-5","knowledge":"2025-07-31","last_updated":"2025-09-29","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 4.5 (latest)","open_weights":false,"reasoning":true,"reasoning_options":[{"min":1024,"type":"budget_tokens"}],"release_date":"2025-09-29","temperature":true,"tool_call":true},"claude-sonnet-4-5-20250929":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"input":3,"output":15},"family":"claude-sonnet","id":"claude-sonnet-4-5-20250929","knowledge":"2025-07-31","last_updated":"2025-09-29","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 4.5","open_weights":false,"reasoning":true,"reasoning_options":[{"min":1024,"type":"budget_tokens"}],"release_date":"2025-09-29","temperature":true,"tool_call":true},"claude-sonnet-4-6":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"input":3,"output":15},"family":"claude-sonnet","id":"claude-sonnet-4-6","knowledge":"2025-08-31","last_updated":"2026-03-13","limit":{"context":1000000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 4.6","open_weights":false,"reasoning":true,"reasoning_options":[{"type":"effort","values":["low","medium","high","max"]},{"min":1024,"type":"budget_tokens"}],"release_date":"2026-02-17","temperature":true,"tool_call":true}},"name":"Anthropic","npm":"@ai-sdk/anthropic"},"anyapi":{"api":"https://api.anyapi.ai/v1","doc":"https://docs.anyapi.ai","env":["ANYAPI_API_KEY"],"id":"anyapi","models":{"anthropic/claude-haiku-4-5":{"attachment":true,"family":"claude-haiku","id":"anthropic/claude-haiku-4-5","knowledge":"2025-02-28","last_updated":"2025-10-15","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Haiku 4.5 (latest)","open_weights":false,"reasoning":true,"release_date":"2025-10-15","temperature":true,"tool_call":true},"anthropic/claude-opus-4-6":{"attachment":true,"experimental":{"modes":{"fast":{"cost":{"cache_read":3,"cache_write":37.5,"input":30,"output":150},"provider":{"body":{"speed":"fast"},"headers":{"anthropic-beta":"fast-mode-2026-02-01"}}}}},"family":"claude-opus","id":"anthropic/claude-opus-4-6","knowledge":"2025-05-31","last_updated":"2026-03-13","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.6","open_weights":false,"reasoning":true,"release_date":"2026-02-05","temperature":true,"tool_call":true},"anthropic/claude-opus-4-7":{"attachment":true,"experimental":{"modes":{"fast":{"cost":{"cache_read":3,"cache_write":37.5,"input":30,"output":150},"provider":{"body":{"speed":"fast"},"headers":{"anthropic-beta":"fast-mode-2026-02-01"}}}}},"family":"claude-opus","id":"anthropic/claude-opus-4-7","knowledge":"2026-01-31","last_updated":"2026-04-16","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.7","open_weights":false,"reasoning":true,"release_date":"2026-04-16","temperature":false,"tool_call":true},"anthropic/claude-sonnet-4-5":{"attachment":true,"family":"claude-sonnet","id":"anthropic/claude-sonnet-4-5","knowledge":"2025-07-31","last_updated":"2025-09-29","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 4.5 (latest)","open_weights":false,"reasoning":true,"release_date":"2025-09-29","temperature":true,"tool_call":true},"anthropic/claude-sonnet-4-6":{"attachment":true,"family":"claude-sonnet","id":"anthropic/claude-sonnet-4-6","knowledge":"2025-08-31","last_updated":"2026-03-13","limit":{"context":1000000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 4.6","open_weights":false,"reasoning":true,"release_date":"2026-02-17","temperature":true,"tool_call":true},"cohere/command-r-plus-08-2024":{"attachment":false,"family":"command-r","id":"cohere/command-r-plus-08-2024","knowledge":"2024-06-01","last_updated":"2024-08-30","limit":{"context":128000,"output":4000},"modalities":{"input":["text"],"output":["text"]},"name":"Command R+","open_weights":true,"reasoning":false,"release_date":"2024-08-30","temperature":true,"tool_call":true},"deepseek/deepseek-chat":{"attachment":true,"family":"deepseek","id":"deepseek/deepseek-chat","knowledge":"2025-09","last_updated":"2026-02-28","limit":{"context":1000000,"output":384000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek Chat","open_weights":true,"reasoning":false,"release_date":"2025-12-01","temperature":true,"tool_call":true},"deepseek/deepseek-r1":{"attachment":true,"family":"deepseek-thinking","id":"deepseek/deepseek-r1","interleaved":{"field":"reasoning_content"},"knowledge":"2025-09","last_updated":"2026-02-28","limit":{"context":1000000,"output":384000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek Reasoner","open_weights":true,"reasoning":true,"release_date":"2025-12-01","temperature":true,"tool_call":true},"deepseek/deepseek-v4-flash":{"attachment":false,"family":"deepseek-flash","id":"deepseek/deepseek-v4-flash","interleaved":{"field":"reasoning_content"},"knowledge":"2025-05","last_updated":"2026-04-24","limit":{"context":1000000,"output":384000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V4 Flash","open_weights":true,"reasoning":true,"release_date":"2026-04-24","structured_output":true,"temperature":true,"tool_call":true},"deepseek/deepseek-v4-pro":{"attachment":false,"family":"deepseek-thinking","id":"deepseek/deepseek-v4-pro","interleaved":{"field":"reasoning_content"},"knowledge":"2025-05","last_updated":"2026-04-24","limit":{"context":1000000,"output":384000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V4 Pro","open_weights":true,"reasoning":true,"release_date":"2026-04-24","structured_output":true,"temperature":true,"tool_call":true},"google/gemini-2.5-flash":{"attachment":true,"family":"gemini-flash","id":"google/gemini-2.5-flash","knowledge":"2025-01","last_updated":"2025-06-05","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"Gemini 2.5 Flash","open_weights":false,"reasoning":true,"release_date":"2025-03-20","structured_output":true,"temperature":true,"tool_call":true},"google/gemini-2.5-flash-lite":{"attachment":true,"family":"gemini-flash-lite","id":"google/gemini-2.5-flash-lite","knowledge":"2025-01","last_updated":"2025-06-17","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"Gemini 2.5 Flash-Lite","open_weights":false,"reasoning":true,"release_date":"2025-06-17","structured_output":true,"temperature":true,"tool_call":true},"google/gemini-2.5-pro":{"attachment":true,"family":"gemini-pro","id":"google/gemini-2.5-pro","knowledge":"2025-01","last_updated":"2025-06-05","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"Gemini 2.5 Pro","open_weights":false,"reasoning":true,"release_date":"2025-03-20","structured_output":true,"temperature":true,"tool_call":true},"google/gemini-3-flash-preview":{"attachment":true,"family":"gemini-flash","id":"google/gemini-3-flash-preview","knowledge":"2025-01","last_updated":"2025-12-17","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"name":"Gemini 3 Flash Preview","open_weights":false,"reasoning":true,"release_date":"2025-12-17","structured_output":true,"temperature":true,"tool_call":true},"google/gemini-3-pro-preview":{"attachment":true,"family":"gemini-pro","id":"google/gemini-3-pro-preview","knowledge":"2025-01","last_updated":"2025-11-18","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"name":"Gemini 3 Pro Preview","open_weights":false,"reasoning":true,"release_date":"2025-11-18","structured_output":true,"temperature":true,"tool_call":true},"mistralai/devstral-2512":{"attachment":false,"family":"devstral","id":"mistralai/devstral-2512","knowledge":"2025-12","last_updated":"2025-12-09","limit":{"context":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Devstral 2","open_weights":true,"reasoning":false,"release_date":"2025-12-09","status":"deprecated","temperature":true,"tool_call":true},"mistralai/mistral-large-2512":{"attachment":true,"family":"mistral-large","id":"mistralai/mistral-large-2512","knowledge":"2024-11","last_updated":"2025-12-02","limit":{"context":262144,"output":262144},"modalities":{"input":["text","image"],"output":["text"]},"name":"Mistral Large 3","open_weights":true,"reasoning":false,"release_date":"2024-11-01","temperature":true,"tool_call":true},"openai/gpt-4.1":{"attachment":true,"family":"gpt","id":"openai/gpt-4.1","knowledge":"2024-04","last_updated":"2025-04-14","limit":{"context":1047576,"output":32768},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-4.1","open_weights":false,"reasoning":false,"release_date":"2025-04-14","structured_output":true,"temperature":true,"tool_call":true},"openai/gpt-4.1-mini":{"attachment":true,"family":"gpt-mini","id":"openai/gpt-4.1-mini","knowledge":"2024-04","last_updated":"2025-04-14","limit":{"context":1047576,"output":32768},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-4.1 mini","open_weights":false,"reasoning":false,"release_date":"2025-04-14","structured_output":true,"temperature":true,"tool_call":true},"openai/gpt-5":{"attachment":true,"family":"gpt","id":"openai/gpt-5","knowledge":"2024-09-30","last_updated":"2025-08-07","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5","open_weights":false,"reasoning":true,"release_date":"2025-08-07","structured_output":true,"temperature":false,"tool_call":true},"openai/gpt-5-mini":{"attachment":true,"family":"gpt-mini","id":"openai/gpt-5-mini","knowledge":"2024-05-30","last_updated":"2025-08-07","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5 Mini","open_weights":false,"reasoning":true,"release_date":"2025-08-07","structured_output":true,"temperature":false,"tool_call":true},"openai/gpt-5.1":{"attachment":true,"family":"gpt","id":"openai/gpt-5.1","knowledge":"2024-09-30","last_updated":"2025-11-13","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.1","open_weights":false,"reasoning":true,"release_date":"2025-11-13","structured_output":true,"temperature":false,"tool_call":true},"openai/gpt-5.2":{"attachment":true,"family":"gpt","id":"openai/gpt-5.2","knowledge":"2025-08-31","last_updated":"2025-12-11","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.2","open_weights":false,"reasoning":true,"release_date":"2025-12-11","structured_output":true,"temperature":false,"tool_call":true},"openai/gpt-5.4":{"attachment":true,"experimental":{"modes":{"fast":{"cost":{"cache_read":0.5,"input":5,"output":30},"provider":{"body":{"service_tier":"priority"}}}}},"family":"gpt","id":"openai/gpt-5.4","knowledge":"2025-08-31","last_updated":"2026-03-05","limit":{"context":1050000,"input":922000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5.4","open_weights":false,"reasoning":true,"release_date":"2026-03-05","structured_output":true,"temperature":false,"tool_call":true},"openai/o3":{"attachment":true,"family":"o","id":"openai/o3","knowledge":"2024-05","last_updated":"2025-04-16","limit":{"context":200000,"output":100000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"o3","open_weights":false,"reasoning":true,"release_date":"2025-04-16","structured_output":true,"temperature":false,"tool_call":true},"openai/o3-mini":{"attachment":false,"family":"o-mini","id":"openai/o3-mini","knowledge":"2024-05","last_updated":"2025-01-29","limit":{"context":200000,"output":100000},"modalities":{"input":["text"],"output":["text"]},"name":"o3-mini","open_weights":false,"reasoning":true,"release_date":"2024-12-20","structured_output":true,"temperature":false,"tool_call":true},"openai/o4-mini":{"attachment":true,"family":"o-mini","id":"openai/o4-mini","knowledge":"2024-05","last_updated":"2025-04-16","limit":{"context":200000,"output":100000},"modalities":{"input":["text","image"],"output":["text"]},"name":"o4-mini","open_weights":false,"reasoning":true,"release_date":"2025-04-16","structured_output":true,"temperature":false,"tool_call":true},"perplexity/sonar-pro":{"attachment":true,"family":"sonar-pro","id":"perplexity/sonar-pro","knowledge":"2025-09-01","last_updated":"2025-09-01","limit":{"context":200000,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Sonar Pro","open_weights":false,"reasoning":false,"release_date":"2024-01-01","temperature":true,"tool_call":false},"perplexity/sonar-reasoning-pro":{"attachment":true,"family":"sonar-reasoning","id":"perplexity/sonar-reasoning-pro","knowledge":"2025-09-01","last_updated":"2025-09-01","limit":{"context":128000,"output":4096},"modalities":{"input":["text","image"],"output":["text"]},"name":"Sonar Reasoning Pro","open_weights":false,"reasoning":true,"release_date":"2024-01-01","temperature":true,"tool_call":false},"xai/grok-4.3":{"attachment":true,"family":"grok","id":"xai/grok-4.3","last_updated":"2026-04-17","limit":{"context":1000000,"output":30000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Grok 4.3","open_weights":false,"reasoning":true,"release_date":"2026-04-17","temperature":true,"tool_call":true}},"name":"AnyAPI","npm":"@ai-sdk/openai-compatible"},"atomic-chat":{"api":"http://127.0.0.1:1337/v1","doc":"https://atomic.chat","env":["ATOMIC_CHAT_API_KEY"],"id":"atomic-chat","models":{"Meta-Llama-3_1-8B-Instruct-GGUF":{"attachment":false,"cost":{"input":0,"output":0},"family":"llama","id":"Meta-Llama-3_1-8B-Instruct-GGUF","last_updated":"2024-07-23","limit":{"context":131072,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Meta Llama 3.1 8B Instruct (GGUF)","open_weights":true,"reasoning":false,"release_date":"2024-07-23","temperature":true,"tool_call":true},"Qwen3_5-9B-MLX-4bit":{"attachment":true,"cost":{"input":0,"output":0},"family":"qwen","id":"Qwen3_5-9B-MLX-4bit","last_updated":"2026-04-04","limit":{"context":32768,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen 3.5 9B (MLX 4-bit)","open_weights":true,"reasoning":false,"release_date":"2026-03-05","temperature":true,"tool_call":true},"Qwen3_5-9B-Q4_K_M":{"attachment":true,"cost":{"input":0,"output":0},"family":"qwen","id":"Qwen3_5-9B-Q4_K_M","last_updated":"2026-04-04","limit":{"context":32768,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen 3.5 9B (Q4_K_M)","open_weights":true,"reasoning":false,"release_date":"2026-03-05","temperature":true,"tool_call":true},"gemma-4-E4B-it-IQ4_XS":{"attachment":false,"cost":{"input":0,"output":0},"family":"gemma","id":"gemma-4-E4B-it-IQ4_XS","last_updated":"2026-04-02","limit":{"context":32768,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Gemma 4 E4B Instruct (IQ4_XS)","open_weights":true,"reasoning":false,"release_date":"2026-04-02","temperature":true,"tool_call":false},"gemma-4-E4B-it-MLX-4bit":{"attachment":false,"cost":{"input":0,"output":0},"family":"gemma","id":"gemma-4-E4B-it-MLX-4bit","last_updated":"2026-04-02","limit":{"context":32768,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Gemma 4 E4B Instruct (MLX 4-bit)","open_weights":true,"reasoning":false,"release_date":"2026-04-02","temperature":true,"tool_call":false}},"name":"Atomic Chat","npm":"@ai-sdk/openai-compatible"},"auriko":{"api":"https://api.auriko.ai/v1","doc":"https://docs.auriko.ai","env":["AURIKO_API_KEY"],"id":"auriko","models":{"claude-opus-4-6":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"input":5,"output":25},"family":"claude-opus","id":"claude-opus-4-6","knowledge":"2025-05-31","last_updated":"2026-03-13","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.6","open_weights":false,"reasoning":true,"release_date":"2026-02-05","temperature":true,"tool_call":true},"claude-opus-4-7":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"input":5,"output":25},"experimental":{"modes":{"fast":{"cost":{"cache_read":3,"cache_write":37.5,"input":30,"output":150},"provider":{"body":{"speed":"fast"},"headers":{"anthropic-beta":"fast-mode-2026-02-01"}}}}},"family":"claude-opus","id":"claude-opus-4-7","knowledge":"2026-01-31","last_updated":"2026-04-16","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.7","open_weights":false,"reasoning":true,"release_date":"2026-04-16","temperature":false,"tool_call":true},"claude-sonnet-4-6":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"input":3,"output":15},"family":"claude-sonnet","id":"claude-sonnet-4-6","knowledge":"2025-08-31","last_updated":"2026-03-13","limit":{"context":1000000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 4.6","open_weights":false,"reasoning":true,"release_date":"2026-02-17","temperature":true,"tool_call":true},"deepseek-v4-flash":{"attachment":false,"cost":{"cache_read":0.0028,"input":0.14,"output":0.28},"family":"deepseek-flash","id":"deepseek-v4-flash","interleaved":{"field":"reasoning_content"},"knowledge":"2025-05","last_updated":"2026-04-24","limit":{"context":1000000,"output":384000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V4 Flash","open_weights":true,"reasoning":true,"release_date":"2026-04-24","structured_output":true,"temperature":true,"tool_call":true},"deepseek-v4-pro":{"attachment":false,"cost":{"cache_read":0.003625,"input":0.435,"output":0.87},"family":"deepseek-thinking","id":"deepseek-v4-pro","interleaved":{"field":"reasoning_content"},"knowledge":"2025-05","last_updated":"2026-04-24","limit":{"context":1000000,"output":384000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V4 Pro","open_weights":true,"reasoning":true,"release_date":"2026-04-24","structured_output":true,"temperature":true,"tool_call":true},"gemini-2.5-flash":{"attachment":true,"cost":{"cache_read":0.03,"input":0.3,"output":2.5},"family":"gemini-flash","id":"gemini-2.5-flash","knowledge":"2025-01","last_updated":"2025-06-05","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"Gemini 2.5 Flash","open_weights":false,"reasoning":true,"release_date":"2025-03-20","structured_output":true,"temperature":true,"tool_call":true},"gemini-2.5-pro":{"attachment":true,"cost":{"cache_read":0.125,"context_over_200k":{"cache_read":0.25,"input":2.5,"output":15},"input":1.25,"output":10,"tiers":[{"cache_read":0.25,"input":2.5,"output":15,"tier":{"size":200000,"type":"context"}}]},"family":"gemini-pro","id":"gemini-2.5-pro","knowledge":"2025-01","last_updated":"2025-06-05","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"Gemini 2.5 Pro","open_weights":false,"reasoning":true,"release_date":"2025-03-20","structured_output":true,"temperature":true,"tool_call":true},"gemini-3.1-pro-preview":{"attachment":true,"cost":{"cache_read":0.2,"context_over_200k":{"cache_read":0.4,"input":4,"output":18},"input":2,"output":12,"tiers":[{"cache_read":0.4,"input":4,"output":18,"tier":{"size":200000,"type":"context"}}]},"family":"gemini-pro","id":"gemini-3.1-pro-preview","knowledge":"2025-01","last_updated":"2026-02-19","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"name":"Gemini 3.1 Pro Preview","open_weights":false,"reasoning":true,"release_date":"2026-02-19","structured_output":true,"temperature":true,"tool_call":true},"glm-5.1":{"attachment":false,"cost":{"cache_read":0.26,"input":1.4,"output":4.4},"family":"glm","id":"glm-5.1","interleaved":{"field":"reasoning_content"},"last_updated":"2026-03-27","limit":{"context":200000,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-5.1","open_weights":false,"reasoning":true,"release_date":"2026-03-27","structured_output":true,"temperature":true,"tool_call":true},"grok-4.3":{"attachment":true,"cost":{"cache_read":0.2,"context_over_200k":{"cache_read":0.4,"input":2.5,"output":5},"input":1.25,"output":2.5,"tiers":[{"cache_read":0.4,"input":2.5,"output":5,"tier":{"size":200000,"type":"context"}}]},"family":"grok","id":"grok-4.3","last_updated":"2026-04-17","limit":{"context":1000000,"output":30000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Grok 4.3","open_weights":false,"reasoning":true,"release_date":"2026-04-17","temperature":true,"tool_call":true},"kimi-k2.5":{"attachment":false,"cost":{"input":0.5,"output":2.8},"family":"kimi-k2.5","id":"kimi-k2.5","interleaved":{"field":"reasoning_content"},"knowledge":"2025-01","last_updated":"2026-01","limit":{"context":262144,"output":262144},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Kimi K2.5","open_weights":true,"reasoning":true,"release_date":"2026-01","structured_output":true,"temperature":false,"tool_call":true},"kimi-k2.6":{"attachment":true,"cost":{"cache_read":0.16,"input":0.95,"output":4},"family":"kimi-k2.6","id":"kimi-k2.6","interleaved":{"field":"reasoning_content"},"knowledge":"2025-01","last_updated":"2026-04-21","limit":{"context":262144,"output":262144},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Kimi K2.6","open_weights":true,"reasoning":true,"release_date":"2026-04-21","structured_output":true,"temperature":true,"tool_call":true},"minimax-m2-7":{"attachment":false,"cost":{"cache_write":0.375,"input":0.3,"output":1.2},"family":"minimax","id":"minimax-m2-7","last_updated":"2026-03-18","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2.7","open_weights":true,"reasoning":true,"release_date":"2026-03-18","temperature":true,"tool_call":true},"minimax-m2-7-highspeed":{"attachment":false,"cost":{"cache_write":0.375,"input":0.6,"output":2.4},"family":"minimax","id":"minimax-m2-7-highspeed","last_updated":"2026-03-18","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2.7-highspeed","open_weights":true,"reasoning":true,"release_date":"2026-03-18","temperature":true,"tool_call":true},"qwen-3.6-plus":{"attachment":false,"cost":{"cache_read":0.1,"context_over_200k":{"cache_read":0.2,"cache_write":2.5,"input":2,"output":6},"input":0.5,"output":3,"tiers":[{"cache_read":0.2,"cache_write":2.5,"input":2,"output":6,"tier":{"size":256000,"type":"context"}}]},"family":"qwen","id":"qwen-3.6-plus","knowledge":"2025-04","last_updated":"2026-04-02","limit":{"context":1000000,"output":65536},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.6 Plus","open_weights":false,"reasoning":true,"release_date":"2026-04-02","temperature":true,"tool_call":true}},"name":"Auriko","npm":"@ai-sdk/openai-compatible"},"azure":{"doc":"https://learn.microsoft.com/en-us/azure/ai-services/openai/concepts/models","env":["AZURE_RESOURCE_NAME","AZURE_API_KEY"],"id":"azure","models":{"claude-haiku-4-5":{"attachment":true,"cost":{"cache_read":0.1,"cache_write":1.25,"input":1,"output":5},"family":"claude-haiku","id":"claude-haiku-4-5","knowledge":"2025-02-31","last_updated":"2025-11-18","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Haiku 4.5","open_weights":false,"provider":{"api":"https://${AZURE_RESOURCE_NAME}.services.ai.azure.com/anthropic/v1","npm":"@ai-sdk/anthropic"},"reasoning":true,"release_date":"2025-11-18","structured_output":true,"temperature":true,"tool_call":true},"claude-opus-4-1":{"attachment":true,"cost":{"cache_read":1.5,"cache_write":18.75,"input":15,"output":75},"family":"claude-opus","id":"claude-opus-4-1","knowledge":"2025-03-31","last_updated":"2025-11-18","limit":{"context":200000,"output":32000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.1","open_weights":false,"provider":{"api":"https://${AZURE_RESOURCE_NAME}.services.ai.azure.com/anthropic/v1","npm":"@ai-sdk/anthropic"},"reasoning":true,"release_date":"2025-11-18","structured_output":true,"temperature":true,"tool_call":true},"claude-opus-4-5":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"input":5,"output":25},"family":"claude-opus","id":"claude-opus-4-5","knowledge":"2025-03-31","last_updated":"2025-08-01","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.5","open_weights":false,"provider":{"api":"https://${AZURE_RESOURCE_NAME}.services.ai.azure.com/anthropic/v1","npm":"@ai-sdk/anthropic"},"reasoning":true,"release_date":"2025-11-24","temperature":true,"tool_call":true},"claude-opus-4-6":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"context_over_200k":{"cache_read":1,"cache_write":12.5,"input":10,"output":37.5},"input":5,"output":25,"tiers":[{"cache_read":1,"cache_write":12.5,"input":10,"output":37.5,"tier":{"size":200000,"type":"context"}}]},"family":"claude-opus","id":"claude-opus-4-6","knowledge":"2025-05-31","last_updated":"2026-02-05","limit":{"context":200000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.6","open_weights":false,"provider":{"api":"https://${AZURE_RESOURCE_NAME}.services.ai.azure.com/anthropic/v1","npm":"@ai-sdk/anthropic"},"reasoning":true,"release_date":"2026-02-05","temperature":true,"tool_call":true},"claude-sonnet-4-5":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"input":3,"output":15},"family":"claude-sonnet","id":"claude-sonnet-4-5","knowledge":"2025-07-31","last_updated":"2025-11-18","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 4.5","open_weights":false,"provider":{"api":"https://${AZURE_RESOURCE_NAME}.services.ai.azure.com/anthropic/v1","npm":"@ai-sdk/anthropic"},"reasoning":true,"release_date":"2025-11-18","structured_output":true,"temperature":true,"tool_call":true},"claude-sonnet-4-6":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"input":3,"output":15},"family":"claude-sonnet","id":"claude-sonnet-4-6","knowledge":"2025-08-31","last_updated":"2026-03-13","limit":{"context":1000000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 4.6","open_weights":false,"provider":{"api":"https://${AZURE_RESOURCE_NAME}.services.ai.azure.com/anthropic/v1","npm":"@ai-sdk/anthropic"},"reasoning":true,"release_date":"2026-02-17","structured_output":true,"temperature":true,"tool_call":true},"codestral-2501":{"attachment":false,"cost":{"input":0.3,"output":0.9},"family":"codestral","id":"codestral-2501","knowledge":"2024-03","last_updated":"2025-01-01","limit":{"context":256000,"output":256000},"modalities":{"input":["text"],"output":["text"]},"name":"Codestral 25.01","open_weights":false,"reasoning":false,"release_date":"2025-01-01","temperature":true,"tool_call":true},"codex-mini":{"attachment":true,"cost":{"cache_read":0.375,"input":1.5,"output":6},"family":"gpt-codex-mini","id":"codex-mini","knowledge":"2024-04","last_updated":"2025-05-16","limit":{"context":200000,"output":100000},"modalities":{"input":["text"],"output":["text"]},"name":"Codex Mini","open_weights":false,"reasoning":true,"release_date":"2025-05-16","temperature":false,"tool_call":true},"cohere-command-a":{"attachment":false,"cost":{"input":2.5,"output":10},"family":"command-a","id":"cohere-command-a","knowledge":"2024-06-01","last_updated":"2025-03-13","limit":{"context":256000,"output":8000},"modalities":{"input":["text"],"output":["text"]},"name":"Command A","open_weights":true,"reasoning":true,"release_date":"2025-03-13","temperature":true,"tool_call":true},"cohere-command-r-08-2024":{"attachment":false,"cost":{"input":0.15,"output":0.6},"family":"command-r","id":"cohere-command-r-08-2024","knowledge":"2024-06-01","last_updated":"2024-08-30","limit":{"context":128000,"output":4000},"modalities":{"input":["text"],"output":["text"]},"name":"Command R","open_weights":true,"reasoning":false,"release_date":"2024-08-30","temperature":true,"tool_call":true},"cohere-command-r-plus-08-2024":{"attachment":false,"cost":{"input":2.5,"output":10},"family":"command-r","id":"cohere-command-r-plus-08-2024","knowledge":"2024-06-01","last_updated":"2024-08-30","limit":{"context":128000,"output":4000},"modalities":{"input":["text"],"output":["text"]},"name":"Command R+","open_weights":true,"reasoning":false,"release_date":"2024-08-30","temperature":true,"tool_call":true},"cohere-embed-v-4-0":{"attachment":true,"cost":{"input":0.12,"output":0},"family":"cohere-embed","id":"cohere-embed-v-4-0","last_updated":"2025-04-15","limit":{"context":128000,"output":1536},"modalities":{"input":["text","image"],"output":["text"]},"name":"Embed v4","open_weights":true,"reasoning":false,"release_date":"2025-04-15","temperature":false,"tool_call":false},"cohere-embed-v3-english":{"attachment":false,"cost":{"input":0.1,"output":0},"family":"cohere-embed","id":"cohere-embed-v3-english","last_updated":"2023-11-07","limit":{"context":512,"output":1024},"modalities":{"input":["text"],"output":["text"]},"name":"Embed v3 English","open_weights":true,"reasoning":false,"release_date":"2023-11-07","temperature":false,"tool_call":false},"cohere-embed-v3-multilingual":{"attachment":false,"cost":{"input":0.1,"output":0},"family":"cohere-embed","id":"cohere-embed-v3-multilingual","last_updated":"2023-11-07","limit":{"context":512,"output":1024},"modalities":{"input":["text"],"output":["text"]},"name":"Embed v3 Multilingual","open_weights":true,"reasoning":false,"release_date":"2023-11-07","temperature":false,"tool_call":false},"deepseek-r1":{"attachment":false,"cost":{"input":1.35,"output":5.4},"family":"deepseek-thinking","id":"deepseek-r1","knowledge":"2024-07","last_updated":"2025-01-20","limit":{"context":163840,"output":163840},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek-R1","open_weights":true,"reasoning":true,"release_date":"2025-01-20","temperature":true,"tool_call":false},"deepseek-r1-0528":{"attachment":false,"cost":{"input":1.35,"output":5.4},"family":"deepseek-thinking","id":"deepseek-r1-0528","knowledge":"2024-07","last_updated":"2025-05-28","limit":{"context":163840,"output":163840},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek-R1-0528","open_weights":true,"reasoning":true,"release_date":"2025-05-28","temperature":true,"tool_call":true},"deepseek-v3-0324":{"attachment":false,"cost":{"input":1.14,"output":4.56},"family":"deepseek","id":"deepseek-v3-0324","knowledge":"2024-07","last_updated":"2025-03-24","limit":{"context":131072,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek-V3-0324","open_weights":true,"reasoning":false,"release_date":"2025-03-24","temperature":true,"tool_call":true},"deepseek-v3.1":{"attachment":false,"cost":{"input":0.56,"output":1.68},"family":"deepseek","id":"deepseek-v3.1","knowledge":"2024-07","last_updated":"2025-08-21","limit":{"context":131072,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek-V3.1","open_weights":true,"reasoning":true,"release_date":"2025-08-21","temperature":true,"tool_call":true},"deepseek-v3.2":{"attachment":false,"cost":{"input":0.58,"output":1.68},"family":"deepseek","id":"deepseek-v3.2","knowledge":"2024-07","last_updated":"2025-12-01","limit":{"context":128000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek-V3.2","open_weights":true,"reasoning":true,"release_date":"2025-12-01","temperature":true,"tool_call":true},"deepseek-v3.2-speciale":{"attachment":false,"cost":{"input":0.58,"output":1.68},"family":"deepseek","id":"deepseek-v3.2-speciale","knowledge":"2024-07","last_updated":"2025-12-01","limit":{"context":128000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek-V3.2-Speciale","open_weights":true,"reasoning":true,"release_date":"2025-12-01","temperature":true,"tool_call":false},"gpt-3.5-turbo-0125":{"attachment":false,"cost":{"input":0.5,"output":1.5},"family":"gpt","id":"gpt-3.5-turbo-0125","knowledge":"2021-08","last_updated":"2024-01-25","limit":{"context":16384,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"GPT-3.5 Turbo 0125","open_weights":false,"reasoning":false,"release_date":"2024-01-25","temperature":true,"tool_call":false},"gpt-3.5-turbo-0301":{"attachment":false,"cost":{"input":1.5,"output":2},"family":"gpt","id":"gpt-3.5-turbo-0301","knowledge":"2021-08","last_updated":"2023-03-01","limit":{"context":4096,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"GPT-3.5 Turbo 0301","open_weights":false,"reasoning":false,"release_date":"2023-03-01","temperature":true,"tool_call":false},"gpt-3.5-turbo-0613":{"attachment":false,"cost":{"input":3,"output":4},"family":"gpt","id":"gpt-3.5-turbo-0613","knowledge":"2021-08","last_updated":"2023-06-13","limit":{"context":16384,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"GPT-3.5 Turbo 0613","open_weights":false,"reasoning":false,"release_date":"2023-06-13","temperature":true,"tool_call":false},"gpt-3.5-turbo-1106":{"attachment":false,"cost":{"input":1,"output":2},"family":"gpt","id":"gpt-3.5-turbo-1106","knowledge":"2021-08","last_updated":"2023-11-06","limit":{"context":16384,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"GPT-3.5 Turbo 1106","open_weights":false,"reasoning":false,"release_date":"2023-11-06","temperature":true,"tool_call":false},"gpt-3.5-turbo-instruct":{"attachment":false,"cost":{"input":1.5,"output":2},"family":"gpt","id":"gpt-3.5-turbo-instruct","knowledge":"2021-08","last_updated":"2023-09-21","limit":{"context":4096,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"GPT-3.5 Turbo Instruct","open_weights":false,"reasoning":false,"release_date":"2023-09-21","temperature":true,"tool_call":false},"gpt-4":{"attachment":false,"cost":{"input":60,"output":120},"family":"gpt","id":"gpt-4","knowledge":"2023-11","last_updated":"2023-03-14","limit":{"context":8192,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"GPT-4","open_weights":false,"reasoning":false,"release_date":"2023-03-14","temperature":true,"tool_call":true},"gpt-4-32k":{"attachment":false,"cost":{"input":60,"output":120},"family":"gpt","id":"gpt-4-32k","knowledge":"2023-11","last_updated":"2023-03-14","limit":{"context":32768,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"GPT-4 32K","open_weights":false,"reasoning":false,"release_date":"2023-03-14","temperature":true,"tool_call":true},"gpt-4-turbo":{"attachment":true,"cost":{"input":10,"output":30},"family":"gpt","id":"gpt-4-turbo","knowledge":"2023-12","last_updated":"2024-04-09","limit":{"context":128000,"output":4096},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-4 Turbo","open_weights":false,"reasoning":false,"release_date":"2023-11-06","temperature":true,"tool_call":true},"gpt-4-turbo-vision":{"attachment":true,"cost":{"input":10,"output":30},"family":"gpt","id":"gpt-4-turbo-vision","knowledge":"2023-11","last_updated":"2024-04-09","limit":{"context":128000,"output":4096},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-4 Turbo Vision","open_weights":false,"reasoning":false,"release_date":"2023-11-06","temperature":true,"tool_call":true},"gpt-4.1":{"attachment":true,"cost":{"cache_read":0.5,"input":2,"output":8},"family":"gpt","id":"gpt-4.1","knowledge":"2024-04","last_updated":"2025-04-14","limit":{"context":1047576,"output":32768},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-4.1","open_weights":false,"reasoning":false,"release_date":"2025-04-14","temperature":true,"tool_call":true},"gpt-4.1-mini":{"attachment":true,"cost":{"cache_read":0.1,"input":0.4,"output":1.6},"family":"gpt-mini","id":"gpt-4.1-mini","knowledge":"2024-04","last_updated":"2025-04-14","limit":{"context":1047576,"output":32768},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-4.1 mini","open_weights":false,"reasoning":false,"release_date":"2025-04-14","temperature":true,"tool_call":true},"gpt-4.1-nano":{"attachment":true,"cost":{"cache_read":0.025,"input":0.1,"output":0.4},"family":"gpt-nano","id":"gpt-4.1-nano","knowledge":"2024-04","last_updated":"2025-04-14","limit":{"context":1047576,"output":32768},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-4.1 nano","open_weights":false,"reasoning":false,"release_date":"2025-04-14","temperature":true,"tool_call":true},"gpt-4o":{"attachment":true,"cost":{"cache_read":1.25,"input":2.5,"output":10},"family":"gpt","id":"gpt-4o","knowledge":"2023-09","last_updated":"2024-08-06","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-4o","open_weights":false,"reasoning":false,"release_date":"2024-05-13","temperature":true,"tool_call":true},"gpt-4o-mini":{"attachment":true,"cost":{"cache_read":0.075,"input":0.15,"output":0.6},"family":"gpt-mini","id":"gpt-4o-mini","knowledge":"2023-09","last_updated":"2024-07-18","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-4o mini","open_weights":false,"reasoning":false,"release_date":"2024-07-18","temperature":true,"tool_call":true},"gpt-5":{"attachment":true,"cost":{"cache_read":0.13,"input":1.25,"output":10},"family":"gpt","id":"gpt-5","knowledge":"2024-09-30","last_updated":"2025-08-07","limit":{"context":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5","open_weights":false,"reasoning":true,"release_date":"2025-08-07","temperature":false,"tool_call":true},"gpt-5-chat":{"attachment":true,"cost":{"cache_read":0.13,"input":1.25,"output":10},"family":"gpt-codex","id":"gpt-5-chat","knowledge":"2024-10-24","last_updated":"2025-08-07","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5 Chat","open_weights":false,"reasoning":true,"release_date":"2025-08-07","temperature":false,"tool_call":false},"gpt-5-codex":{"attachment":false,"cost":{"cache_read":0.13,"input":1.25,"output":10},"family":"gpt-codex","id":"gpt-5-codex","knowledge":"2024-09-30","last_updated":"2025-09-15","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5-Codex","open_weights":false,"reasoning":true,"release_date":"2025-09-15","temperature":false,"tool_call":true},"gpt-5-mini":{"attachment":true,"cost":{"cache_read":0.03,"input":0.25,"output":2},"family":"gpt-mini","id":"gpt-5-mini","knowledge":"2024-05-30","last_updated":"2025-08-07","limit":{"context":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5 Mini","open_weights":false,"reasoning":true,"release_date":"2025-08-07","temperature":false,"tool_call":true},"gpt-5-nano":{"attachment":true,"cost":{"cache_read":0.01,"input":0.05,"output":0.4},"family":"gpt-nano","id":"gpt-5-nano","knowledge":"2024-05-30","last_updated":"2025-08-07","limit":{"context":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5 Nano","open_weights":false,"reasoning":true,"release_date":"2025-08-07","temperature":false,"tool_call":true},"gpt-5-pro":{"attachment":true,"cost":{"input":15,"output":120},"family":"gpt-pro","id":"gpt-5-pro","knowledge":"2024-09-30","last_updated":"2025-10-06","limit":{"context":400000,"output":272000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5 Pro","open_weights":false,"reasoning":true,"release_date":"2025-10-06","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.1":{"attachment":true,"cost":{"cache_read":0.125,"input":1.25,"output":10},"family":"gpt","id":"gpt-5.1","knowledge":"2024-09-30","last_updated":"2025-11-14","limit":{"context":272000,"output":128000},"modalities":{"input":["text","image","audio"],"output":["text","image","audio"]},"name":"GPT-5.1","open_weights":false,"reasoning":true,"release_date":"2025-11-14","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.1-chat":{"attachment":true,"cost":{"cache_read":0.125,"input":1.25,"output":10},"family":"gpt-codex","id":"gpt-5.1-chat","knowledge":"2024-09-30","last_updated":"2025-11-14","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image","audio"],"output":["text","image","audio"]},"name":"GPT-5.1 Chat","open_weights":false,"reasoning":true,"release_date":"2025-11-14","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.1-codex":{"attachment":false,"cost":{"cache_read":0.125,"input":1.25,"output":10},"family":"gpt-codex","id":"gpt-5.1-codex","knowledge":"2024-09-30","last_updated":"2025-11-14","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image","audio"],"output":["text","image","audio"]},"name":"GPT-5.1 Codex","open_weights":false,"reasoning":true,"release_date":"2025-11-14","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.1-codex-max":{"attachment":true,"cost":{"cache_read":0.125,"input":1.25,"output":10},"family":"gpt-codex","id":"gpt-5.1-codex-max","knowledge":"2024-09-30","last_updated":"2025-11-13","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.1 Codex Max","open_weights":false,"reasoning":true,"release_date":"2025-11-13","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.1-codex-mini":{"attachment":false,"cost":{"cache_read":0.025,"input":0.25,"output":2},"family":"gpt-codex","id":"gpt-5.1-codex-mini","knowledge":"2024-09-30","last_updated":"2025-11-14","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.1 Codex Mini","open_weights":false,"reasoning":true,"release_date":"2025-11-14","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.2":{"attachment":true,"cost":{"cache_read":0.125,"input":1.75,"output":14},"family":"gpt","id":"gpt-5.2","knowledge":"2025-08-31","last_updated":"2025-12-11","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.2","open_weights":false,"reasoning":true,"release_date":"2025-12-11","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.2-chat":{"attachment":true,"cost":{"cache_read":0.175,"input":1.75,"output":14},"family":"gpt-codex","id":"gpt-5.2-chat","knowledge":"2025-08-31","last_updated":"2025-12-11","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.2 Chat","open_weights":false,"reasoning":true,"release_date":"2025-12-11","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.2-codex":{"attachment":false,"cost":{"cache_read":0.175,"input":1.75,"output":14},"family":"gpt-codex","id":"gpt-5.2-codex","knowledge":"2025-08-31","last_updated":"2026-01-14","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.2 Codex","open_weights":false,"reasoning":true,"release_date":"2026-01-14","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.3-chat":{"attachment":true,"cost":{"cache_read":0.175,"input":1.75,"output":14},"family":"gpt-codex","id":"gpt-5.3-chat","knowledge":"2025-08-31","last_updated":"2026-03-03","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.3 Chat","open_weights":false,"reasoning":true,"release_date":"2026-03-03","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.3-codex":{"attachment":false,"cost":{"cache_read":0.175,"input":1.75,"output":14},"family":"gpt-codex","id":"gpt-5.3-codex","knowledge":"2025-08-31","last_updated":"2026-02-24","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.3 Codex","open_weights":false,"reasoning":true,"release_date":"2026-02-24","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.4":{"attachment":true,"cost":{"cache_read":0.25,"context_over_200k":{"cache_read":0.5,"input":5,"output":22.5},"input":2.5,"output":15,"tiers":[{"cache_read":0.5,"input":5,"output":22.5,"tier":{"size":272000,"type":"context"}}]},"family":"gpt","id":"gpt-5.4","knowledge":"2025-08-31","last_updated":"2026-03-05","limit":{"context":1050000,"input":922000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5.4","open_weights":false,"reasoning":true,"release_date":"2026-03-05","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.4-mini":{"attachment":true,"cost":{"cache_read":0.075,"input":0.75,"output":4.5},"family":"gpt-mini","id":"gpt-5.4-mini","knowledge":"2025-08-31","last_updated":"2026-03-17","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5.4 Mini","open_weights":false,"reasoning":true,"release_date":"2026-03-17","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.4-nano":{"attachment":true,"cost":{"cache_read":0.02,"input":0.2,"output":1.25},"family":"gpt-nano","id":"gpt-5.4-nano","knowledge":"2025-08-31","last_updated":"2026-03-17","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5.4 Nano","open_weights":false,"reasoning":true,"release_date":"2026-03-17","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.4-pro":{"attachment":true,"cost":{"context_over_200k":{"input":60,"output":270},"input":30,"output":180,"tiers":[{"input":60,"output":270,"tier":{"size":272000,"type":"context"}}]},"family":"gpt-pro","id":"gpt-5.4-pro","knowledge":"2025-08-31","last_updated":"2026-03-05","limit":{"context":1050000,"input":922000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.4 Pro","open_weights":false,"reasoning":true,"release_date":"2026-03-05","structured_output":false,"temperature":false,"tool_call":true},"gpt-5.5":{"attachment":true,"cost":{"cache_read":0.5,"context_over_200k":{"cache_read":1,"input":10,"output":45},"input":5,"output":30,"tiers":[{"cache_read":1,"input":10,"output":45,"tier":{"size":272000,"type":"context"}}]},"family":"gpt","id":"gpt-5.5","knowledge":"2025-12-01","last_updated":"2026-04-24","limit":{"context":1050000,"input":922000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5.5","open_weights":false,"reasoning":true,"release_date":"2026-04-24","structured_output":true,"temperature":false,"tool_call":true},"grok-4-1-fast-non-reasoning":{"attachment":true,"cost":{"cache_read":0.05,"input":0.2,"output":0.5},"family":"grok","id":"grok-4-1-fast-non-reasoning","last_updated":"2025-06-27","limit":{"context":128000,"input":128000,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Grok 4.1 Fast (Non-Reasoning)","open_weights":false,"reasoning":false,"release_date":"2025-06-27","status":"beta","temperature":true,"tool_call":true},"grok-4-1-fast-reasoning":{"attachment":true,"cost":{"cache_read":0.05,"input":0.2,"output":0.5},"family":"grok","id":"grok-4-1-fast-reasoning","last_updated":"2025-06-27","limit":{"context":128000,"input":128000,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Grok 4.1 Fast (Reasoning)","open_weights":false,"reasoning":true,"release_date":"2025-06-27","status":"beta","temperature":true,"tool_call":true},"grok-4-20-non-reasoning":{"attachment":false,"cost":{"input":2,"output":6},"family":"grok","id":"grok-4-20-non-reasoning","knowledge":"2025-09","last_updated":"2026-04-08","limit":{"context":262000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Grok 4.20 (Non-Reasoning)","open_weights":false,"reasoning":false,"release_date":"2026-04-08","status":"beta","temperature":true,"tool_call":true},"grok-4-20-reasoning":{"attachment":false,"cost":{"input":2,"output":6},"family":"grok","id":"grok-4-20-reasoning","knowledge":"2025-09","last_updated":"2026-04-08","limit":{"context":262000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Grok 4.20 (Reasoning)","open_weights":false,"reasoning":true,"release_date":"2026-04-08","status":"beta","temperature":true,"tool_call":true},"grok-4-fast-reasoning":{"attachment":true,"cost":{"cache_read":0.05,"input":0.2,"output":0.5},"family":"grok","id":"grok-4-fast-reasoning","knowledge":"2025-07","last_updated":"2025-09-19","limit":{"context":2000000,"output":30000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Grok 4 Fast (Reasoning)","open_weights":false,"reasoning":true,"release_date":"2025-09-19","temperature":true,"tool_call":true},"kimi-k2-thinking":{"attachment":false,"cost":{"cache_read":0.15,"input":0.6,"output":2.5},"family":"kimi-thinking","id":"kimi-k2-thinking","interleaved":true,"knowledge":"2024-08","last_updated":"2025-12-02","limit":{"context":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Kimi K2 Thinking","open_weights":true,"reasoning":true,"release_date":"2025-11-06","temperature":true,"tool_call":true},"kimi-k2.5":{"attachment":false,"cost":{"input":0.6,"output":3},"family":"kimi","id":"kimi-k2.5","interleaved":true,"knowledge":"2025-01","last_updated":"2026-02-06","limit":{"context":262144,"output":262144},"modalities":{"input":["text","image"],"output":["text"]},"name":"Kimi K2.5","open_weights":true,"provider":{"api":"https://${AZURE_RESOURCE_NAME}.services.ai.azure.com/models","npm":"@ai-sdk/openai-compatible","shape":"completions"},"reasoning":true,"release_date":"2026-02-06","structured_output":true,"temperature":true,"tool_call":true},"kimi-k2.6":{"attachment":false,"cost":{"input":0.95,"output":4},"family":"kimi","id":"kimi-k2.6","interleaved":true,"knowledge":"2025-01","last_updated":"2026-04-22","limit":{"context":262144,"output":262144},"modalities":{"input":["text","image"],"output":["text"]},"name":"Kimi K2.6","open_weights":true,"provider":{"api":"https://${AZURE_RESOURCE_NAME}.services.ai.azure.com/models","npm":"@ai-sdk/openai-compatible","shape":"completions"},"reasoning":true,"release_date":"2026-04-22","structured_output":true,"temperature":true,"tool_call":true},"llama-3.2-11b-vision-instruct":{"attachment":true,"cost":{"input":0.37,"output":0.37},"family":"llama","id":"llama-3.2-11b-vision-instruct","knowledge":"2023-12","last_updated":"2024-09-25","limit":{"context":128000,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Llama-3.2-11B-Vision-Instruct","open_weights":true,"reasoning":false,"release_date":"2024-09-25","temperature":true,"tool_call":true},"llama-3.2-90b-vision-instruct":{"attachment":true,"cost":{"input":2.04,"output":2.04},"family":"llama","id":"llama-3.2-90b-vision-instruct","knowledge":"2023-12","last_updated":"2024-09-25","limit":{"context":128000,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Llama-3.2-90B-Vision-Instruct","open_weights":true,"reasoning":false,"release_date":"2024-09-25","temperature":true,"tool_call":true},"llama-3.3-70b-instruct":{"attachment":false,"cost":{"input":0.71,"output":0.71},"family":"llama","id":"llama-3.3-70b-instruct","knowledge":"2023-12","last_updated":"2024-12-06","limit":{"context":128000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Llama-3.3-70B-Instruct","open_weights":true,"reasoning":false,"release_date":"2024-12-06","temperature":true,"tool_call":true},"llama-4-maverick-17b-128e-instruct-fp8":{"attachment":true,"cost":{"input":0.25,"output":1},"family":"llama","id":"llama-4-maverick-17b-128e-instruct-fp8","knowledge":"2024-08","last_updated":"2025-04-05","limit":{"context":128000,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Llama 4 Maverick 17B 128E Instruct FP8","open_weights":true,"reasoning":false,"release_date":"2025-04-05","temperature":true,"tool_call":true},"llama-4-scout-17b-16e-instruct":{"attachment":true,"cost":{"input":0.2,"output":0.78},"family":"llama","id":"llama-4-scout-17b-16e-instruct","knowledge":"2024-08","last_updated":"2025-04-05","limit":{"context":128000,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Llama 4 Scout 17B 16E Instruct","open_weights":true,"reasoning":false,"release_date":"2025-04-05","temperature":true,"tool_call":true},"mai-ds-r1":{"attachment":false,"cost":{"input":1.35,"output":5.4},"family":"mai","id":"mai-ds-r1","knowledge":"2024-06","last_updated":"2025-01-20","limit":{"context":128000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"MAI-DS-R1","open_weights":false,"reasoning":true,"release_date":"2025-01-20","temperature":true,"tool_call":false},"meta-llama-3-70b-instruct":{"attachment":false,"cost":{"input":2.68,"output":3.54},"family":"llama","id":"meta-llama-3-70b-instruct","knowledge":"2023-12","last_updated":"2024-04-18","limit":{"context":8192,"output":2048},"modalities":{"input":["text"],"output":["text"]},"name":"Meta-Llama-3-70B-Instruct","open_weights":true,"reasoning":false,"release_date":"2024-04-18","temperature":true,"tool_call":false},"meta-llama-3-8b-instruct":{"attachment":false,"cost":{"input":0.3,"output":0.61},"family":"llama","id":"meta-llama-3-8b-instruct","knowledge":"2023-12","last_updated":"2024-04-18","limit":{"context":8192,"output":2048},"modalities":{"input":["text"],"output":["text"]},"name":"Meta-Llama-3-8B-Instruct","open_weights":true,"reasoning":false,"release_date":"2024-04-18","temperature":true,"tool_call":false},"meta-llama-3.1-405b-instruct":{"attachment":false,"cost":{"input":5.33,"output":16},"family":"llama","id":"meta-llama-3.1-405b-instruct","knowledge":"2023-12","last_updated":"2024-07-23","limit":{"context":128000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Meta-Llama-3.1-405B-Instruct","open_weights":true,"reasoning":false,"release_date":"2024-07-23","temperature":true,"tool_call":true},"meta-llama-3.1-70b-instruct":{"attachment":false,"cost":{"input":2.68,"output":3.54},"family":"llama","id":"meta-llama-3.1-70b-instruct","knowledge":"2023-12","last_updated":"2024-07-23","limit":{"context":128000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Meta-Llama-3.1-70B-Instruct","open_weights":true,"reasoning":false,"release_date":"2024-07-23","temperature":true,"tool_call":true},"meta-llama-3.1-8b-instruct":{"attachment":false,"cost":{"input":0.3,"output":0.61},"family":"llama","id":"meta-llama-3.1-8b-instruct","knowledge":"2023-12","last_updated":"2024-07-23","limit":{"context":128000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Meta-Llama-3.1-8B-Instruct","open_weights":true,"reasoning":false,"release_date":"2024-07-23","temperature":true,"tool_call":true},"ministral-3b":{"attachment":false,"cost":{"input":0.04,"output":0.04},"family":"ministral","id":"ministral-3b","knowledge":"2024-03","last_updated":"2024-10-22","limit":{"context":128000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Ministral 3B","open_weights":true,"reasoning":false,"release_date":"2024-10-22","temperature":true,"tool_call":true},"mistral-large-2411":{"attachment":false,"cost":{"input":2,"output":6},"family":"mistral-large","id":"mistral-large-2411","knowledge":"2024-09","last_updated":"2024-11-01","limit":{"context":128000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Mistral Large 24.11","open_weights":false,"reasoning":false,"release_date":"2024-11-01","temperature":true,"tool_call":true},"mistral-medium-2505":{"attachment":true,"cost":{"input":0.4,"output":2},"family":"mistral-medium","id":"mistral-medium-2505","knowledge":"2025-05","last_updated":"2025-05-07","limit":{"context":128000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Mistral Medium 3","open_weights":false,"reasoning":false,"release_date":"2025-05-07","temperature":true,"tool_call":true},"mistral-nemo":{"attachment":false,"cost":{"input":0.15,"output":0.15},"family":"mistral-nemo","id":"mistral-nemo","knowledge":"2024-07","last_updated":"2024-07-18","limit":{"context":128000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"Mistral Nemo","open_weights":true,"reasoning":false,"release_date":"2024-07-18","temperature":true,"tool_call":true},"mistral-small-2503":{"attachment":true,"cost":{"input":0.1,"output":0.3},"family":"mistral-small","id":"mistral-small-2503","knowledge":"2024-09","last_updated":"2025-03-01","limit":{"context":128000,"output":32768},"modalities":{"input":["text","image"],"output":["text"]},"name":"Mistral Small 3.1","open_weights":false,"reasoning":false,"release_date":"2025-03-01","temperature":true,"tool_call":true},"model-router":{"attachment":true,"cost":{"input":0.14,"output":0},"family":"model-router","id":"model-router","last_updated":"2025-11-18","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"Model Router","open_weights":false,"reasoning":false,"release_date":"2025-05-19","tool_call":true},"o1":{"attachment":false,"cost":{"cache_read":7.5,"input":15,"output":60},"family":"o","id":"o1","knowledge":"2023-09","last_updated":"2024-12-05","limit":{"context":200000,"output":100000},"modalities":{"input":["text","image"],"output":["text"]},"name":"o1","open_weights":false,"reasoning":true,"release_date":"2024-12-05","temperature":false,"tool_call":true},"o1-mini":{"attachment":false,"cost":{"cache_read":0.55,"input":1.1,"output":4.4},"family":"o-mini","id":"o1-mini","knowledge":"2023-09","last_updated":"2024-09-12","limit":{"context":128000,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"o1-mini","open_weights":false,"reasoning":true,"release_date":"2024-09-12","temperature":false,"tool_call":true},"o1-preview":{"attachment":false,"cost":{"cache_read":8.25,"input":16.5,"output":66},"family":"o","id":"o1-preview","knowledge":"2023-09","last_updated":"2024-09-12","limit":{"context":128000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"o1-preview","open_weights":false,"reasoning":true,"release_date":"2024-09-12","temperature":false,"tool_call":true},"o3":{"attachment":true,"cost":{"cache_read":0.5,"input":2,"output":8},"family":"o","id":"o3","knowledge":"2024-05","last_updated":"2025-04-16","limit":{"context":200000,"output":100000},"modalities":{"input":["text","image"],"output":["text"]},"name":"o3","open_weights":false,"reasoning":true,"release_date":"2025-04-16","temperature":false,"tool_call":true},"o3-mini":{"attachment":false,"cost":{"cache_read":0.55,"input":1.1,"output":4.4},"family":"o-mini","id":"o3-mini","knowledge":"2024-05","last_updated":"2025-01-29","limit":{"context":200000,"output":100000},"modalities":{"input":["text"],"output":["text"]},"name":"o3-mini","open_weights":false,"reasoning":true,"release_date":"2024-12-20","temperature":false,"tool_call":true},"o4-mini":{"attachment":true,"cost":{"cache_read":0.275,"input":1.1,"output":4.4},"family":"o-mini","id":"o4-mini","knowledge":"2024-05","last_updated":"2025-04-16","limit":{"context":200000,"output":100000},"modalities":{"input":["text","image"],"output":["text"]},"name":"o4-mini","open_weights":false,"reasoning":true,"release_date":"2025-04-16","temperature":false,"tool_call":true},"phi-3-medium-128k-instruct":{"attachment":false,"cost":{"input":0.17,"output":0.68},"family":"phi","id":"phi-3-medium-128k-instruct","knowledge":"2023-10","last_updated":"2024-04-23","limit":{"context":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Phi-3-medium-instruct (128k)","open_weights":true,"reasoning":false,"release_date":"2024-04-23","temperature":true,"tool_call":false},"phi-3-medium-4k-instruct":{"attachment":false,"cost":{"input":0.17,"output":0.68},"family":"phi","id":"phi-3-medium-4k-instruct","knowledge":"2023-10","last_updated":"2024-04-23","limit":{"context":4096,"output":1024},"modalities":{"input":["text"],"output":["text"]},"name":"Phi-3-medium-instruct (4k)","open_weights":true,"reasoning":false,"release_date":"2024-04-23","temperature":true,"tool_call":false},"phi-3-mini-128k-instruct":{"attachment":false,"cost":{"input":0.13,"output":0.52},"family":"phi","id":"phi-3-mini-128k-instruct","knowledge":"2023-10","last_updated":"2024-04-23","limit":{"context":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Phi-3-mini-instruct (128k)","open_weights":true,"reasoning":false,"release_date":"2024-04-23","temperature":true,"tool_call":false},"phi-3-mini-4k-instruct":{"attachment":false,"cost":{"input":0.13,"output":0.52},"family":"phi","id":"phi-3-mini-4k-instruct","knowledge":"2023-10","last_updated":"2024-04-23","limit":{"context":4096,"output":1024},"modalities":{"input":["text"],"output":["text"]},"name":"Phi-3-mini-instruct (4k)","open_weights":true,"reasoning":false,"release_date":"2024-04-23","temperature":true,"tool_call":false},"phi-3-small-128k-instruct":{"attachment":false,"cost":{"input":0.15,"output":0.6},"family":"phi","id":"phi-3-small-128k-instruct","knowledge":"2023-10","last_updated":"2024-04-23","limit":{"context":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Phi-3-small-instruct (128k)","open_weights":true,"reasoning":false,"release_date":"2024-04-23","temperature":true,"tool_call":false},"phi-3-small-8k-instruct":{"attachment":false,"cost":{"input":0.15,"output":0.6},"family":"phi","id":"phi-3-small-8k-instruct","knowledge":"2023-10","last_updated":"2024-04-23","limit":{"context":8192,"output":2048},"modalities":{"input":["text"],"output":["text"]},"name":"Phi-3-small-instruct (8k)","open_weights":true,"reasoning":false,"release_date":"2024-04-23","temperature":true,"tool_call":false},"phi-3.5-mini-instruct":{"attachment":false,"cost":{"input":0.13,"output":0.52},"family":"phi","id":"phi-3.5-mini-instruct","knowledge":"2023-10","last_updated":"2024-08-20","limit":{"context":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Phi-3.5-mini-instruct","open_weights":true,"reasoning":false,"release_date":"2024-08-20","temperature":true,"tool_call":false},"phi-3.5-moe-instruct":{"attachment":false,"cost":{"input":0.16,"output":0.64},"family":"phi","id":"phi-3.5-moe-instruct","knowledge":"2023-10","last_updated":"2024-08-20","limit":{"context":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Phi-3.5-MoE-instruct","open_weights":true,"reasoning":false,"release_date":"2024-08-20","temperature":true,"tool_call":false},"phi-4":{"attachment":false,"cost":{"input":0.125,"output":0.5},"family":"phi","id":"phi-4","knowledge":"2023-10","last_updated":"2024-12-11","limit":{"context":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Phi-4","open_weights":true,"reasoning":false,"release_date":"2024-12-11","temperature":true,"tool_call":false},"phi-4-mini":{"attachment":false,"cost":{"input":0.075,"output":0.3},"family":"phi","id":"phi-4-mini","knowledge":"2023-10","last_updated":"2024-12-11","limit":{"context":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Phi-4-mini","open_weights":true,"reasoning":false,"release_date":"2024-12-11","temperature":true,"tool_call":true},"phi-4-mini-reasoning":{"attachment":false,"cost":{"input":0.075,"output":0.3},"family":"phi","id":"phi-4-mini-reasoning","knowledge":"2023-10","last_updated":"2024-12-11","limit":{"context":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Phi-4-mini-reasoning","open_weights":true,"reasoning":true,"release_date":"2024-12-11","temperature":true,"tool_call":true},"phi-4-multimodal":{"attachment":true,"cost":{"input":0.08,"input_audio":4,"output":0.32},"family":"phi","id":"phi-4-multimodal","knowledge":"2023-10","last_updated":"2024-12-11","limit":{"context":128000,"output":4096},"modalities":{"input":["text","image","audio"],"output":["text"]},"name":"Phi-4-multimodal","open_weights":true,"reasoning":false,"release_date":"2024-12-11","temperature":true,"tool_call":false},"phi-4-reasoning":{"attachment":false,"cost":{"input":0.125,"output":0.5},"family":"phi","id":"phi-4-reasoning","knowledge":"2023-10","last_updated":"2024-12-11","limit":{"context":32000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Phi-4-reasoning","open_weights":true,"reasoning":true,"release_date":"2024-12-11","temperature":true,"tool_call":false},"phi-4-reasoning-plus":{"attachment":false,"cost":{"input":0.125,"output":0.5},"family":"phi","id":"phi-4-reasoning-plus","knowledge":"2023-10","last_updated":"2024-12-11","limit":{"context":32000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Phi-4-reasoning-plus","open_weights":true,"reasoning":true,"release_date":"2024-12-11","temperature":true,"tool_call":false},"text-embedding-3-large":{"attachment":false,"cost":{"input":0.13,"output":0},"family":"text-embedding","id":"text-embedding-3-large","last_updated":"2024-01-25","limit":{"context":8191,"output":3072},"modalities":{"input":["text"],"output":["text"]},"name":"text-embedding-3-large","open_weights":false,"reasoning":false,"release_date":"2024-01-25","tool_call":false},"text-embedding-3-small":{"attachment":false,"cost":{"input":0.02,"output":0},"family":"text-embedding","id":"text-embedding-3-small","last_updated":"2024-01-25","limit":{"context":8191,"output":1536},"modalities":{"input":["text"],"output":["text"]},"name":"text-embedding-3-small","open_weights":false,"reasoning":false,"release_date":"2024-01-25","tool_call":false},"text-embedding-ada-002":{"attachment":false,"cost":{"input":0.1,"output":0},"family":"text-embedding","id":"text-embedding-ada-002","last_updated":"2022-12-15","limit":{"context":8192,"output":1536},"modalities":{"input":["text"],"output":["text"]},"name":"text-embedding-ada-002","open_weights":false,"reasoning":false,"release_date":"2022-12-15","tool_call":false}},"name":"Azure","npm":"@ai-sdk/azure"},"azure-cognitive-services":{"doc":"https://learn.microsoft.com/en-us/azure/ai-services/openai/concepts/models","env":["AZURE_COGNITIVE_SERVICES_RESOURCE_NAME","AZURE_COGNITIVE_SERVICES_API_KEY"],"id":"azure-cognitive-services","models":{"claude-haiku-4-5":{"attachment":true,"cost":{"cache_read":0.1,"cache_write":1.25,"input":1,"output":5},"family":"claude-haiku","id":"claude-haiku-4-5","knowledge":"2025-02-31","last_updated":"2025-11-18","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Haiku 4.5","open_weights":false,"provider":{"api":"https://${AZURE_COGNITIVE_SERVICES_RESOURCE_NAME}.services.ai.azure.com/anthropic/v1","npm":"@ai-sdk/anthropic"},"reasoning":true,"release_date":"2025-11-18","structured_output":true,"temperature":true,"tool_call":true},"claude-opus-4-1":{"attachment":true,"cost":{"cache_read":1.5,"cache_write":18.75,"input":15,"output":75},"family":"claude-opus","id":"claude-opus-4-1","knowledge":"2025-03-31","last_updated":"2025-11-18","limit":{"context":200000,"output":32000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.1","open_weights":false,"provider":{"api":"https://${AZURE_COGNITIVE_SERVICES_RESOURCE_NAME}.services.ai.azure.com/anthropic/v1","npm":"@ai-sdk/anthropic"},"reasoning":true,"release_date":"2025-11-18","structured_output":true,"temperature":true,"tool_call":true},"claude-opus-4-5":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"input":5,"output":25},"family":"claude-opus","id":"claude-opus-4-5","knowledge":"2025-03-31","last_updated":"2025-08-01","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.5","open_weights":false,"provider":{"api":"https://${AZURE_COGNITIVE_SERVICES_RESOURCE_NAME}.services.ai.azure.com/anthropic/v1","npm":"@ai-sdk/anthropic"},"reasoning":true,"release_date":"2025-11-24","temperature":true,"tool_call":true},"claude-opus-4-6":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"context_over_200k":{"cache_read":1,"cache_write":12.5,"input":10,"output":37.5},"input":5,"output":25,"tiers":[{"cache_read":1,"cache_write":12.5,"input":10,"output":37.5,"tier":{"size":200000,"type":"context"}}]},"family":"claude-opus","id":"claude-opus-4-6","knowledge":"2025-05-31","last_updated":"2026-02-05","limit":{"context":200000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.6","open_weights":false,"provider":{"api":"https://${AZURE_COGNITIVE_SERVICES_RESOURCE_NAME}.services.ai.azure.com/anthropic/v1","npm":"@ai-sdk/anthropic"},"reasoning":true,"release_date":"2026-02-05","temperature":true,"tool_call":true},"claude-sonnet-4-5":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"input":3,"output":15},"family":"claude-sonnet","id":"claude-sonnet-4-5","knowledge":"2025-07-31","last_updated":"2025-11-18","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 4.5","open_weights":false,"provider":{"api":"https://${AZURE_COGNITIVE_SERVICES_RESOURCE_NAME}.services.ai.azure.com/anthropic/v1","npm":"@ai-sdk/anthropic"},"reasoning":true,"release_date":"2025-11-18","structured_output":true,"temperature":true,"tool_call":true},"codestral-2501":{"attachment":false,"cost":{"input":0.3,"output":0.9},"family":"codestral","id":"codestral-2501","knowledge":"2024-03","last_updated":"2025-01-01","limit":{"context":256000,"output":256000},"modalities":{"input":["text"],"output":["text"]},"name":"Codestral 25.01","open_weights":false,"reasoning":false,"release_date":"2025-01-01","temperature":true,"tool_call":true},"codex-mini":{"attachment":true,"cost":{"cache_read":0.375,"input":1.5,"output":6},"family":"gpt-codex-mini","id":"codex-mini","knowledge":"2024-04","last_updated":"2025-05-16","limit":{"context":200000,"output":100000},"modalities":{"input":["text"],"output":["text"]},"name":"Codex Mini","open_weights":false,"reasoning":true,"release_date":"2025-05-16","temperature":false,"tool_call":true},"cohere-command-a":{"attachment":false,"cost":{"input":2.5,"output":10},"family":"command-a","id":"cohere-command-a","knowledge":"2024-06-01","last_updated":"2025-03-13","limit":{"context":256000,"output":8000},"modalities":{"input":["text"],"output":["text"]},"name":"Command A","open_weights":true,"reasoning":true,"release_date":"2025-03-13","temperature":true,"tool_call":true},"cohere-command-r-08-2024":{"attachment":false,"cost":{"input":0.15,"output":0.6},"family":"command-r","id":"cohere-command-r-08-2024","knowledge":"2024-06-01","last_updated":"2024-08-30","limit":{"context":128000,"output":4000},"modalities":{"input":["text"],"output":["text"]},"name":"Command R","open_weights":true,"reasoning":false,"release_date":"2024-08-30","temperature":true,"tool_call":true},"cohere-command-r-plus-08-2024":{"attachment":false,"cost":{"input":2.5,"output":10},"family":"command-r","id":"cohere-command-r-plus-08-2024","knowledge":"2024-06-01","last_updated":"2024-08-30","limit":{"context":128000,"output":4000},"modalities":{"input":["text"],"output":["text"]},"name":"Command R+","open_weights":true,"reasoning":false,"release_date":"2024-08-30","temperature":true,"tool_call":true},"cohere-embed-v-4-0":{"attachment":true,"cost":{"input":0.12,"output":0},"family":"cohere-embed","id":"cohere-embed-v-4-0","last_updated":"2025-04-15","limit":{"context":128000,"output":1536},"modalities":{"input":["text","image"],"output":["text"]},"name":"Embed v4","open_weights":true,"reasoning":false,"release_date":"2025-04-15","temperature":false,"tool_call":false},"cohere-embed-v3-english":{"attachment":false,"cost":{"input":0.1,"output":0},"family":"cohere-embed","id":"cohere-embed-v3-english","last_updated":"2023-11-07","limit":{"context":512,"output":1024},"modalities":{"input":["text"],"output":["text"]},"name":"Embed v3 English","open_weights":true,"reasoning":false,"release_date":"2023-11-07","temperature":false,"tool_call":false},"cohere-embed-v3-multilingual":{"attachment":false,"cost":{"input":0.1,"output":0},"family":"cohere-embed","id":"cohere-embed-v3-multilingual","last_updated":"2023-11-07","limit":{"context":512,"output":1024},"modalities":{"input":["text"],"output":["text"]},"name":"Embed v3 Multilingual","open_weights":true,"reasoning":false,"release_date":"2023-11-07","temperature":false,"tool_call":false},"deepseek-r1":{"attachment":false,"cost":{"input":1.35,"output":5.4},"family":"deepseek-thinking","id":"deepseek-r1","knowledge":"2024-07","last_updated":"2025-01-20","limit":{"context":163840,"output":163840},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek-R1","open_weights":true,"reasoning":true,"release_date":"2025-01-20","temperature":true,"tool_call":false},"deepseek-r1-0528":{"attachment":false,"cost":{"input":1.35,"output":5.4},"family":"deepseek-thinking","id":"deepseek-r1-0528","knowledge":"2024-07","last_updated":"2025-05-28","limit":{"context":163840,"output":163840},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek-R1-0528","open_weights":true,"reasoning":true,"release_date":"2025-05-28","temperature":true,"tool_call":true},"deepseek-v3-0324":{"attachment":false,"cost":{"input":1.14,"output":4.56},"family":"deepseek","id":"deepseek-v3-0324","knowledge":"2024-07","last_updated":"2025-03-24","limit":{"context":131072,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek-V3-0324","open_weights":true,"reasoning":false,"release_date":"2025-03-24","temperature":true,"tool_call":true},"deepseek-v3.1":{"attachment":false,"cost":{"input":0.56,"output":1.68},"family":"deepseek","id":"deepseek-v3.1","knowledge":"2024-07","last_updated":"2025-08-21","limit":{"context":131072,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek-V3.1","open_weights":true,"reasoning":true,"release_date":"2025-08-21","temperature":true,"tool_call":true},"deepseek-v3.2":{"attachment":false,"cost":{"input":0.58,"output":1.68},"family":"deepseek","id":"deepseek-v3.2","knowledge":"2024-07","last_updated":"2025-12-01","limit":{"context":128000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek-V3.2","open_weights":true,"reasoning":true,"release_date":"2025-12-01","temperature":true,"tool_call":true},"deepseek-v3.2-speciale":{"attachment":false,"cost":{"input":0.58,"output":1.68},"family":"deepseek","id":"deepseek-v3.2-speciale","knowledge":"2024-07","last_updated":"2025-12-01","limit":{"context":128000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek-V3.2-Speciale","open_weights":true,"reasoning":true,"release_date":"2025-12-01","temperature":true,"tool_call":false},"gpt-3.5-turbo-0125":{"attachment":false,"cost":{"input":0.5,"output":1.5},"family":"gpt","id":"gpt-3.5-turbo-0125","knowledge":"2021-08","last_updated":"2024-01-25","limit":{"context":16384,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"GPT-3.5 Turbo 0125","open_weights":false,"reasoning":false,"release_date":"2024-01-25","temperature":true,"tool_call":false},"gpt-3.5-turbo-0301":{"attachment":false,"cost":{"input":1.5,"output":2},"family":"gpt","id":"gpt-3.5-turbo-0301","knowledge":"2021-08","last_updated":"2023-03-01","limit":{"context":4096,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"GPT-3.5 Turbo 0301","open_weights":false,"reasoning":false,"release_date":"2023-03-01","temperature":true,"tool_call":false},"gpt-3.5-turbo-0613":{"attachment":false,"cost":{"input":3,"output":4},"family":"gpt","id":"gpt-3.5-turbo-0613","knowledge":"2021-08","last_updated":"2023-06-13","limit":{"context":16384,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"GPT-3.5 Turbo 0613","open_weights":false,"reasoning":false,"release_date":"2023-06-13","temperature":true,"tool_call":false},"gpt-3.5-turbo-1106":{"attachment":false,"cost":{"input":1,"output":2},"family":"gpt","id":"gpt-3.5-turbo-1106","knowledge":"2021-08","last_updated":"2023-11-06","limit":{"context":16384,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"GPT-3.5 Turbo 1106","open_weights":false,"reasoning":false,"release_date":"2023-11-06","temperature":true,"tool_call":false},"gpt-3.5-turbo-instruct":{"attachment":false,"cost":{"input":1.5,"output":2},"family":"gpt","id":"gpt-3.5-turbo-instruct","knowledge":"2021-08","last_updated":"2023-09-21","limit":{"context":4096,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"GPT-3.5 Turbo Instruct","open_weights":false,"reasoning":false,"release_date":"2023-09-21","temperature":true,"tool_call":false},"gpt-4":{"attachment":false,"cost":{"input":60,"output":120},"family":"gpt","id":"gpt-4","knowledge":"2023-11","last_updated":"2023-03-14","limit":{"context":8192,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"GPT-4","open_weights":false,"reasoning":false,"release_date":"2023-03-14","temperature":true,"tool_call":true},"gpt-4-32k":{"attachment":false,"cost":{"input":60,"output":120},"family":"gpt","id":"gpt-4-32k","knowledge":"2023-11","last_updated":"2023-03-14","limit":{"context":32768,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"GPT-4 32K","open_weights":false,"reasoning":false,"release_date":"2023-03-14","temperature":true,"tool_call":true},"gpt-4-turbo":{"attachment":true,"cost":{"input":10,"output":30},"family":"gpt","id":"gpt-4-turbo","knowledge":"2023-12","last_updated":"2024-04-09","limit":{"context":128000,"output":4096},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-4 Turbo","open_weights":false,"reasoning":false,"release_date":"2023-11-06","temperature":true,"tool_call":true},"gpt-4-turbo-vision":{"attachment":true,"cost":{"input":10,"output":30},"family":"gpt","id":"gpt-4-turbo-vision","knowledge":"2023-11","last_updated":"2024-04-09","limit":{"context":128000,"output":4096},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-4 Turbo Vision","open_weights":false,"reasoning":false,"release_date":"2023-11-06","temperature":true,"tool_call":true},"gpt-4.1":{"attachment":true,"cost":{"cache_read":0.5,"input":2,"output":8},"family":"gpt","id":"gpt-4.1","knowledge":"2024-04","last_updated":"2025-04-14","limit":{"context":1047576,"output":32768},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-4.1","open_weights":false,"reasoning":false,"release_date":"2025-04-14","temperature":true,"tool_call":true},"gpt-4.1-mini":{"attachment":true,"cost":{"cache_read":0.1,"input":0.4,"output":1.6},"family":"gpt-mini","id":"gpt-4.1-mini","knowledge":"2024-04","last_updated":"2025-04-14","limit":{"context":1047576,"output":32768},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-4.1 mini","open_weights":false,"reasoning":false,"release_date":"2025-04-14","temperature":true,"tool_call":true},"gpt-4.1-nano":{"attachment":true,"cost":{"cache_read":0.025,"input":0.1,"output":0.4},"family":"gpt-nano","id":"gpt-4.1-nano","knowledge":"2024-04","last_updated":"2025-04-14","limit":{"context":1047576,"output":32768},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-4.1 nano","open_weights":false,"reasoning":false,"release_date":"2025-04-14","temperature":true,"tool_call":true},"gpt-4o":{"attachment":true,"cost":{"cache_read":1.25,"input":2.5,"output":10},"family":"gpt","id":"gpt-4o","knowledge":"2023-09","last_updated":"2024-08-06","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-4o","open_weights":false,"reasoning":false,"release_date":"2024-05-13","temperature":true,"tool_call":true},"gpt-4o-mini":{"attachment":true,"cost":{"cache_read":0.075,"input":0.15,"output":0.6},"family":"gpt-mini","id":"gpt-4o-mini","knowledge":"2023-09","last_updated":"2024-07-18","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-4o mini","open_weights":false,"reasoning":false,"release_date":"2024-07-18","temperature":true,"tool_call":true},"gpt-5":{"attachment":true,"cost":{"cache_read":0.13,"input":1.25,"output":10},"family":"gpt","id":"gpt-5","knowledge":"2024-09-30","last_updated":"2025-08-07","limit":{"context":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5","open_weights":false,"reasoning":true,"release_date":"2025-08-07","temperature":false,"tool_call":true},"gpt-5-chat":{"attachment":true,"cost":{"cache_read":0.13,"input":1.25,"output":10},"family":"gpt-codex","id":"gpt-5-chat","knowledge":"2024-10-24","last_updated":"2025-08-07","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5 Chat","open_weights":false,"reasoning":true,"release_date":"2025-08-07","temperature":false,"tool_call":false},"gpt-5-codex":{"attachment":false,"cost":{"cache_read":0.13,"input":1.25,"output":10},"family":"gpt-codex","id":"gpt-5-codex","knowledge":"2024-09-30","last_updated":"2025-09-15","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5-Codex","open_weights":false,"reasoning":true,"release_date":"2025-09-15","temperature":false,"tool_call":true},"gpt-5-mini":{"attachment":true,"cost":{"cache_read":0.03,"input":0.25,"output":2},"family":"gpt-mini","id":"gpt-5-mini","knowledge":"2024-05-30","last_updated":"2025-08-07","limit":{"context":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5 Mini","open_weights":false,"reasoning":true,"release_date":"2025-08-07","temperature":false,"tool_call":true},"gpt-5-nano":{"attachment":true,"cost":{"cache_read":0.01,"input":0.05,"output":0.4},"family":"gpt-nano","id":"gpt-5-nano","knowledge":"2024-05-30","last_updated":"2025-08-07","limit":{"context":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5 Nano","open_weights":false,"reasoning":true,"release_date":"2025-08-07","temperature":false,"tool_call":true},"gpt-5-pro":{"attachment":true,"cost":{"input":15,"output":120},"family":"gpt-pro","id":"gpt-5-pro","knowledge":"2024-09-30","last_updated":"2025-10-06","limit":{"context":400000,"output":272000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5 Pro","open_weights":false,"reasoning":true,"release_date":"2025-10-06","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.1":{"attachment":true,"cost":{"cache_read":0.125,"input":1.25,"output":10},"family":"gpt","id":"gpt-5.1","knowledge":"2024-09-30","last_updated":"2025-11-14","limit":{"context":272000,"output":128000},"modalities":{"input":["text","image","audio"],"output":["text","image","audio"]},"name":"GPT-5.1","open_weights":false,"reasoning":true,"release_date":"2025-11-14","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.1-chat":{"attachment":true,"cost":{"cache_read":0.125,"input":1.25,"output":10},"family":"gpt-codex","id":"gpt-5.1-chat","knowledge":"2024-09-30","last_updated":"2025-11-14","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image","audio"],"output":["text","image","audio"]},"name":"GPT-5.1 Chat","open_weights":false,"reasoning":true,"release_date":"2025-11-14","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.1-codex":{"attachment":false,"cost":{"cache_read":0.125,"input":1.25,"output":10},"family":"gpt-codex","id":"gpt-5.1-codex","knowledge":"2024-09-30","last_updated":"2025-11-14","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image","audio"],"output":["text","image","audio"]},"name":"GPT-5.1 Codex","open_weights":false,"reasoning":true,"release_date":"2025-11-14","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.1-codex-mini":{"attachment":false,"cost":{"cache_read":0.025,"input":0.25,"output":2},"family":"gpt-codex","id":"gpt-5.1-codex-mini","knowledge":"2024-09-30","last_updated":"2025-11-14","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.1 Codex Mini","open_weights":false,"reasoning":true,"release_date":"2025-11-14","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.2":{"attachment":true,"cost":{"cache_read":0.125,"input":1.75,"output":14},"family":"gpt","id":"gpt-5.2","knowledge":"2025-08-31","last_updated":"2025-12-11","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.2","open_weights":false,"reasoning":true,"release_date":"2025-12-11","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.2-chat":{"attachment":true,"cost":{"cache_read":0.175,"input":1.75,"output":14},"family":"gpt-codex","id":"gpt-5.2-chat","knowledge":"2025-08-31","last_updated":"2025-12-11","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.2 Chat","open_weights":false,"reasoning":true,"release_date":"2025-12-11","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.2-codex":{"attachment":false,"cost":{"cache_read":0.175,"input":1.75,"output":14},"family":"gpt-codex","id":"gpt-5.2-codex","knowledge":"2025-08-31","last_updated":"2026-01-14","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.2 Codex","open_weights":false,"reasoning":true,"release_date":"2026-01-14","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.3-codex":{"attachment":false,"cost":{"cache_read":0.175,"input":1.75,"output":14},"family":"gpt-codex","id":"gpt-5.3-codex","knowledge":"2025-08-31","last_updated":"2026-02-24","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.3 Codex","open_weights":false,"reasoning":true,"release_date":"2026-02-24","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.4":{"attachment":true,"cost":{"cache_read":0.25,"context_over_200k":{"cache_read":0.5,"input":5,"output":22.5},"input":2.5,"output":15,"tiers":[{"cache_read":0.5,"input":5,"output":22.5,"tier":{"size":272000,"type":"context"}}]},"family":"gpt","id":"gpt-5.4","knowledge":"2025-08-31","last_updated":"2026-03-05","limit":{"context":1050000,"input":922000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5.4","open_weights":false,"reasoning":true,"release_date":"2026-03-05","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.4-mini":{"attachment":true,"cost":{"cache_read":0.075,"input":0.75,"output":4.5},"family":"gpt-mini","id":"gpt-5.4-mini","knowledge":"2025-08-31","last_updated":"2026-03-17","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5.4 Mini","open_weights":false,"reasoning":true,"release_date":"2026-03-17","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.4-nano":{"attachment":true,"cost":{"cache_read":0.02,"input":0.2,"output":1.25},"family":"gpt-nano","id":"gpt-5.4-nano","knowledge":"2025-08-31","last_updated":"2026-03-17","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5.4 Nano","open_weights":false,"reasoning":true,"release_date":"2026-03-17","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.4-pro":{"attachment":true,"cost":{"context_over_200k":{"input":60,"output":270},"input":30,"output":180,"tiers":[{"input":60,"output":270,"tier":{"size":272000,"type":"context"}}]},"family":"gpt-pro","id":"gpt-5.4-pro","knowledge":"2025-08-31","last_updated":"2026-03-05","limit":{"context":1050000,"input":922000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.4 Pro","open_weights":false,"reasoning":true,"release_date":"2026-03-05","structured_output":false,"temperature":false,"tool_call":true},"gpt-5.5":{"attachment":true,"cost":{"cache_read":0.5,"context_over_200k":{"cache_read":1,"input":10,"output":45},"input":5,"output":30,"tiers":[{"cache_read":1,"input":10,"output":45,"tier":{"size":272000,"type":"context"}}]},"family":"gpt","id":"gpt-5.5","knowledge":"2025-12-01","last_updated":"2026-04-24","limit":{"context":1050000,"input":922000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5.5","open_weights":false,"reasoning":true,"release_date":"2026-04-24","structured_output":true,"temperature":false,"tool_call":true},"grok-4-fast-reasoning":{"attachment":true,"cost":{"cache_read":0.05,"input":0.2,"output":0.5},"family":"grok","id":"grok-4-fast-reasoning","knowledge":"2025-07","last_updated":"2025-09-19","limit":{"context":2000000,"output":30000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Grok 4 Fast (Reasoning)","open_weights":false,"reasoning":true,"release_date":"2025-09-19","temperature":true,"tool_call":true},"kimi-k2-thinking":{"attachment":false,"cost":{"cache_read":0.15,"input":0.6,"output":2.5},"family":"kimi-thinking","id":"kimi-k2-thinking","interleaved":true,"knowledge":"2024-08","last_updated":"2025-12-02","limit":{"context":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Kimi K2 Thinking","open_weights":true,"reasoning":true,"release_date":"2025-11-06","temperature":true,"tool_call":true},"kimi-k2.5":{"attachment":false,"cost":{"input":0.6,"output":3},"family":"kimi","id":"kimi-k2.5","interleaved":true,"knowledge":"2025-01","last_updated":"2026-02-06","limit":{"context":262144,"output":262144},"modalities":{"input":["text","image"],"output":["text"]},"name":"Kimi K2.5","open_weights":true,"provider":{"api":"https://${AZURE_RESOURCE_NAME}.services.ai.azure.com/models","npm":"@ai-sdk/openai-compatible","shape":"completions"},"reasoning":true,"release_date":"2026-02-06","structured_output":true,"temperature":true,"tool_call":true},"kimi-k2.6":{"attachment":false,"cost":{"input":0.95,"output":4},"family":"kimi","id":"kimi-k2.6","interleaved":true,"knowledge":"2025-01","last_updated":"2026-04-22","limit":{"context":262144,"output":262144},"modalities":{"input":["text","image"],"output":["text"]},"name":"Kimi K2.6","open_weights":true,"provider":{"api":"https://${AZURE_RESOURCE_NAME}.services.ai.azure.com/models","npm":"@ai-sdk/openai-compatible","shape":"completions"},"reasoning":true,"release_date":"2026-04-22","structured_output":true,"temperature":true,"tool_call":true},"llama-3.2-11b-vision-instruct":{"attachment":true,"cost":{"input":0.37,"output":0.37},"family":"llama","id":"llama-3.2-11b-vision-instruct","knowledge":"2023-12","last_updated":"2024-09-25","limit":{"context":128000,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Llama-3.2-11B-Vision-Instruct","open_weights":true,"reasoning":false,"release_date":"2024-09-25","temperature":true,"tool_call":true},"llama-3.2-90b-vision-instruct":{"attachment":true,"cost":{"input":2.04,"output":2.04},"family":"llama","id":"llama-3.2-90b-vision-instruct","knowledge":"2023-12","last_updated":"2024-09-25","limit":{"context":128000,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Llama-3.2-90B-Vision-Instruct","open_weights":true,"reasoning":false,"release_date":"2024-09-25","temperature":true,"tool_call":true},"llama-3.3-70b-instruct":{"attachment":false,"cost":{"input":0.71,"output":0.71},"family":"llama","id":"llama-3.3-70b-instruct","knowledge":"2023-12","last_updated":"2024-12-06","limit":{"context":128000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Llama-3.3-70B-Instruct","open_weights":true,"reasoning":false,"release_date":"2024-12-06","temperature":true,"tool_call":true},"llama-4-maverick-17b-128e-instruct-fp8":{"attachment":true,"cost":{"input":0.25,"output":1},"family":"llama","id":"llama-4-maverick-17b-128e-instruct-fp8","knowledge":"2024-08","last_updated":"2025-04-05","limit":{"context":128000,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Llama 4 Maverick 17B 128E Instruct FP8","open_weights":true,"reasoning":false,"release_date":"2025-04-05","temperature":true,"tool_call":true},"llama-4-scout-17b-16e-instruct":{"attachment":true,"cost":{"input":0.2,"output":0.78},"family":"llama","id":"llama-4-scout-17b-16e-instruct","knowledge":"2024-08","last_updated":"2025-04-05","limit":{"context":128000,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Llama 4 Scout 17B 16E Instruct","open_weights":true,"reasoning":false,"release_date":"2025-04-05","temperature":true,"tool_call":true},"mai-ds-r1":{"attachment":false,"cost":{"input":1.35,"output":5.4},"family":"mai","id":"mai-ds-r1","knowledge":"2024-06","last_updated":"2025-01-20","limit":{"context":128000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"MAI-DS-R1","open_weights":false,"reasoning":true,"release_date":"2025-01-20","temperature":true,"tool_call":false},"meta-llama-3-70b-instruct":{"attachment":false,"cost":{"input":2.68,"output":3.54},"family":"llama","id":"meta-llama-3-70b-instruct","knowledge":"2023-12","last_updated":"2024-04-18","limit":{"context":8192,"output":2048},"modalities":{"input":["text"],"output":["text"]},"name":"Meta-Llama-3-70B-Instruct","open_weights":true,"reasoning":false,"release_date":"2024-04-18","temperature":true,"tool_call":false},"meta-llama-3-8b-instruct":{"attachment":false,"cost":{"input":0.3,"output":0.61},"family":"llama","id":"meta-llama-3-8b-instruct","knowledge":"2023-12","last_updated":"2024-04-18","limit":{"context":8192,"output":2048},"modalities":{"input":["text"],"output":["text"]},"name":"Meta-Llama-3-8B-Instruct","open_weights":true,"reasoning":false,"release_date":"2024-04-18","temperature":true,"tool_call":false},"meta-llama-3.1-405b-instruct":{"attachment":false,"cost":{"input":5.33,"output":16},"family":"llama","id":"meta-llama-3.1-405b-instruct","knowledge":"2023-12","last_updated":"2024-07-23","limit":{"context":128000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Meta-Llama-3.1-405B-Instruct","open_weights":true,"reasoning":false,"release_date":"2024-07-23","temperature":true,"tool_call":true},"meta-llama-3.1-70b-instruct":{"attachment":false,"cost":{"input":2.68,"output":3.54},"family":"llama","id":"meta-llama-3.1-70b-instruct","knowledge":"2023-12","last_updated":"2024-07-23","limit":{"context":128000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Meta-Llama-3.1-70B-Instruct","open_weights":true,"reasoning":false,"release_date":"2024-07-23","temperature":true,"tool_call":true},"meta-llama-3.1-8b-instruct":{"attachment":false,"cost":{"input":0.3,"output":0.61},"family":"llama","id":"meta-llama-3.1-8b-instruct","knowledge":"2023-12","last_updated":"2024-07-23","limit":{"context":128000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Meta-Llama-3.1-8B-Instruct","open_weights":true,"reasoning":false,"release_date":"2024-07-23","temperature":true,"tool_call":true},"ministral-3b":{"attachment":false,"cost":{"input":0.04,"output":0.04},"family":"ministral","id":"ministral-3b","knowledge":"2024-03","last_updated":"2024-10-22","limit":{"context":128000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Ministral 3B","open_weights":true,"reasoning":false,"release_date":"2024-10-22","temperature":true,"tool_call":true},"mistral-large-2411":{"attachment":false,"cost":{"input":2,"output":6},"family":"mistral-large","id":"mistral-large-2411","knowledge":"2024-09","last_updated":"2024-11-01","limit":{"context":128000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Mistral Large 24.11","open_weights":false,"reasoning":false,"release_date":"2024-11-01","temperature":true,"tool_call":true},"mistral-medium-2505":{"attachment":true,"cost":{"input":0.4,"output":2},"family":"mistral-medium","id":"mistral-medium-2505","knowledge":"2025-05","last_updated":"2025-05-07","limit":{"context":128000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Mistral Medium 3","open_weights":false,"reasoning":false,"release_date":"2025-05-07","temperature":true,"tool_call":true},"mistral-nemo":{"attachment":false,"cost":{"input":0.15,"output":0.15},"family":"mistral-nemo","id":"mistral-nemo","knowledge":"2024-07","last_updated":"2024-07-18","limit":{"context":128000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"Mistral Nemo","open_weights":true,"reasoning":false,"release_date":"2024-07-18","temperature":true,"tool_call":true},"mistral-small-2503":{"attachment":true,"cost":{"input":0.1,"output":0.3},"family":"mistral-small","id":"mistral-small-2503","knowledge":"2024-09","last_updated":"2025-03-01","limit":{"context":128000,"output":32768},"modalities":{"input":["text","image"],"output":["text"]},"name":"Mistral Small 3.1","open_weights":false,"reasoning":false,"release_date":"2025-03-01","temperature":true,"tool_call":true},"model-router":{"attachment":true,"cost":{"input":0.14,"output":0},"family":"model-router","id":"model-router","last_updated":"2025-11-18","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"Model Router","open_weights":false,"reasoning":false,"release_date":"2025-05-19","tool_call":true},"o1":{"attachment":false,"cost":{"cache_read":7.5,"input":15,"output":60},"family":"o","id":"o1","knowledge":"2023-09","last_updated":"2024-12-05","limit":{"context":200000,"output":100000},"modalities":{"input":["text","image"],"output":["text"]},"name":"o1","open_weights":false,"reasoning":true,"release_date":"2024-12-05","temperature":false,"tool_call":true},"o1-mini":{"attachment":false,"cost":{"cache_read":0.55,"input":1.1,"output":4.4},"family":"o-mini","id":"o1-mini","knowledge":"2023-09","last_updated":"2024-09-12","limit":{"context":128000,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"o1-mini","open_weights":false,"reasoning":true,"release_date":"2024-09-12","temperature":false,"tool_call":true},"o1-preview":{"attachment":false,"cost":{"cache_read":8.25,"input":16.5,"output":66},"family":"o","id":"o1-preview","knowledge":"2023-09","last_updated":"2024-09-12","limit":{"context":128000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"o1-preview","open_weights":false,"reasoning":true,"release_date":"2024-09-12","temperature":false,"tool_call":true},"o3":{"attachment":true,"cost":{"cache_read":0.5,"input":2,"output":8},"family":"o","id":"o3","knowledge":"2024-05","last_updated":"2025-04-16","limit":{"context":200000,"output":100000},"modalities":{"input":["text","image"],"output":["text"]},"name":"o3","open_weights":false,"reasoning":true,"release_date":"2025-04-16","temperature":false,"tool_call":true},"o3-mini":{"attachment":false,"cost":{"cache_read":0.55,"input":1.1,"output":4.4},"family":"o-mini","id":"o3-mini","knowledge":"2024-05","last_updated":"2025-01-29","limit":{"context":200000,"output":100000},"modalities":{"input":["text"],"output":["text"]},"name":"o3-mini","open_weights":false,"reasoning":true,"release_date":"2024-12-20","temperature":false,"tool_call":true},"o4-mini":{"attachment":true,"cost":{"cache_read":0.275,"input":1.1,"output":4.4},"family":"o-mini","id":"o4-mini","knowledge":"2024-05","last_updated":"2025-04-16","limit":{"context":200000,"output":100000},"modalities":{"input":["text","image"],"output":["text"]},"name":"o4-mini","open_weights":false,"reasoning":true,"release_date":"2025-04-16","temperature":false,"tool_call":true},"phi-3-medium-128k-instruct":{"attachment":false,"cost":{"input":0.17,"output":0.68},"family":"phi","id":"phi-3-medium-128k-instruct","knowledge":"2023-10","last_updated":"2024-04-23","limit":{"context":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Phi-3-medium-instruct (128k)","open_weights":true,"reasoning":false,"release_date":"2024-04-23","temperature":true,"tool_call":false},"phi-3-medium-4k-instruct":{"attachment":false,"cost":{"input":0.17,"output":0.68},"family":"phi","id":"phi-3-medium-4k-instruct","knowledge":"2023-10","last_updated":"2024-04-23","limit":{"context":4096,"output":1024},"modalities":{"input":["text"],"output":["text"]},"name":"Phi-3-medium-instruct (4k)","open_weights":true,"reasoning":false,"release_date":"2024-04-23","temperature":true,"tool_call":false},"phi-3-mini-128k-instruct":{"attachment":false,"cost":{"input":0.13,"output":0.52},"family":"phi","id":"phi-3-mini-128k-instruct","knowledge":"2023-10","last_updated":"2024-04-23","limit":{"context":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Phi-3-mini-instruct (128k)","open_weights":true,"reasoning":false,"release_date":"2024-04-23","temperature":true,"tool_call":false},"phi-3-mini-4k-instruct":{"attachment":false,"cost":{"input":0.13,"output":0.52},"family":"phi","id":"phi-3-mini-4k-instruct","knowledge":"2023-10","last_updated":"2024-04-23","limit":{"context":4096,"output":1024},"modalities":{"input":["text"],"output":["text"]},"name":"Phi-3-mini-instruct (4k)","open_weights":true,"reasoning":false,"release_date":"2024-04-23","temperature":true,"tool_call":false},"phi-3-small-128k-instruct":{"attachment":false,"cost":{"input":0.15,"output":0.6},"family":"phi","id":"phi-3-small-128k-instruct","knowledge":"2023-10","last_updated":"2024-04-23","limit":{"context":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Phi-3-small-instruct (128k)","open_weights":true,"reasoning":false,"release_date":"2024-04-23","temperature":true,"tool_call":false},"phi-3-small-8k-instruct":{"attachment":false,"cost":{"input":0.15,"output":0.6},"family":"phi","id":"phi-3-small-8k-instruct","knowledge":"2023-10","last_updated":"2024-04-23","limit":{"context":8192,"output":2048},"modalities":{"input":["text"],"output":["text"]},"name":"Phi-3-small-instruct (8k)","open_weights":true,"reasoning":false,"release_date":"2024-04-23","temperature":true,"tool_call":false},"phi-3.5-mini-instruct":{"attachment":false,"cost":{"input":0.13,"output":0.52},"family":"phi","id":"phi-3.5-mini-instruct","knowledge":"2023-10","last_updated":"2024-08-20","limit":{"context":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Phi-3.5-mini-instruct","open_weights":true,"reasoning":false,"release_date":"2024-08-20","temperature":true,"tool_call":false},"phi-3.5-moe-instruct":{"attachment":false,"cost":{"input":0.16,"output":0.64},"family":"phi","id":"phi-3.5-moe-instruct","knowledge":"2023-10","last_updated":"2024-08-20","limit":{"context":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Phi-3.5-MoE-instruct","open_weights":true,"reasoning":false,"release_date":"2024-08-20","temperature":true,"tool_call":false},"phi-4":{"attachment":false,"cost":{"input":0.125,"output":0.5},"family":"phi","id":"phi-4","knowledge":"2023-10","last_updated":"2024-12-11","limit":{"context":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Phi-4","open_weights":true,"reasoning":false,"release_date":"2024-12-11","temperature":true,"tool_call":false},"phi-4-mini":{"attachment":false,"cost":{"input":0.075,"output":0.3},"family":"phi","id":"phi-4-mini","knowledge":"2023-10","last_updated":"2024-12-11","limit":{"context":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Phi-4-mini","open_weights":true,"reasoning":false,"release_date":"2024-12-11","temperature":true,"tool_call":true},"phi-4-mini-reasoning":{"attachment":false,"cost":{"input":0.075,"output":0.3},"family":"phi","id":"phi-4-mini-reasoning","knowledge":"2023-10","last_updated":"2024-12-11","limit":{"context":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Phi-4-mini-reasoning","open_weights":true,"reasoning":true,"release_date":"2024-12-11","temperature":true,"tool_call":true},"phi-4-multimodal":{"attachment":true,"cost":{"input":0.08,"input_audio":4,"output":0.32},"family":"phi","id":"phi-4-multimodal","knowledge":"2023-10","last_updated":"2024-12-11","limit":{"context":128000,"output":4096},"modalities":{"input":["text","image","audio"],"output":["text"]},"name":"Phi-4-multimodal","open_weights":true,"reasoning":false,"release_date":"2024-12-11","temperature":true,"tool_call":false},"phi-4-reasoning":{"attachment":false,"cost":{"input":0.125,"output":0.5},"family":"phi","id":"phi-4-reasoning","knowledge":"2023-10","last_updated":"2024-12-11","limit":{"context":32000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Phi-4-reasoning","open_weights":true,"reasoning":true,"release_date":"2024-12-11","temperature":true,"tool_call":false},"phi-4-reasoning-plus":{"attachment":false,"cost":{"input":0.125,"output":0.5},"family":"phi","id":"phi-4-reasoning-plus","knowledge":"2023-10","last_updated":"2024-12-11","limit":{"context":32000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Phi-4-reasoning-plus","open_weights":true,"reasoning":true,"release_date":"2024-12-11","temperature":true,"tool_call":false},"text-embedding-3-large":{"attachment":false,"cost":{"input":0.13,"output":0},"family":"text-embedding","id":"text-embedding-3-large","last_updated":"2024-01-25","limit":{"context":8191,"output":3072},"modalities":{"input":["text"],"output":["text"]},"name":"text-embedding-3-large","open_weights":false,"reasoning":false,"release_date":"2024-01-25","tool_call":false},"text-embedding-3-small":{"attachment":false,"cost":{"input":0.02,"output":0},"family":"text-embedding","id":"text-embedding-3-small","last_updated":"2024-01-25","limit":{"context":8191,"output":1536},"modalities":{"input":["text"],"output":["text"]},"name":"text-embedding-3-small","open_weights":false,"reasoning":false,"release_date":"2024-01-25","tool_call":false},"text-embedding-ada-002":{"attachment":false,"cost":{"input":0.1,"output":0},"family":"text-embedding","id":"text-embedding-ada-002","last_updated":"2022-12-15","limit":{"context":8192,"output":1536},"modalities":{"input":["text"],"output":["text"]},"name":"text-embedding-ada-002","open_weights":false,"reasoning":false,"release_date":"2022-12-15","tool_call":false}},"name":"Azure Cognitive Services","npm":"@ai-sdk/azure"},"bailing":{"api":"https://api.tbox.cn/api/llm/v1/chat/completions","doc":"https://alipaytbox.yuque.com/sxs0ba/ling/intro","env":["BAILING_API_TOKEN"],"id":"bailing","models":{"Ling-1T":{"attachment":false,"cost":{"input":0.57,"output":2.29},"family":"ling","id":"Ling-1T","knowledge":"2024-06","last_updated":"2025-10","limit":{"context":128000,"output":32000},"modalities":{"input":["text"],"output":["text"]},"name":"Ling-1T","open_weights":true,"reasoning":false,"release_date":"2025-10","temperature":true,"tool_call":true},"Ring-1T":{"attachment":false,"cost":{"input":0.57,"output":2.29},"family":"ring","id":"Ring-1T","knowledge":"2024-06","last_updated":"2025-10","limit":{"context":128000,"output":32000},"modalities":{"input":["text"],"output":["text"]},"name":"Ring-1T","open_weights":true,"reasoning":true,"release_date":"2025-10","temperature":true,"tool_call":false}},"name":"Bailing","npm":"@ai-sdk/openai-compatible"},"baseten":{"api":"https://inference.baseten.co/v1","doc":"https://docs.baseten.co/development/model-apis/overview","env":["BASETEN_API_KEY"],"id":"baseten","models":{"MiniMaxAI/MiniMax-M2.5":{"attachment":false,"cost":{"input":0.3,"output":1.2},"family":"minimax","id":"MiniMaxAI/MiniMax-M2.5","interleaved":{"field":"reasoning_content"},"knowledge":"2026-01","last_updated":"2026-02-12","limit":{"context":204000,"output":204000},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2.5","open_weights":true,"reasoning":true,"release_date":"2026-02-12","temperature":true,"tool_call":true},"deepseek-ai/DeepSeek-V3-0324":{"attachment":false,"cost":{"input":0.77,"output":0.77},"family":"deepseek","id":"deepseek-ai/DeepSeek-V3-0324","knowledge":"2024-12","last_updated":"2025-03-24","limit":{"context":164000,"output":131000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V3 0324","open_weights":true,"reasoning":false,"release_date":"2025-03-24","temperature":true,"tool_call":true},"deepseek-ai/DeepSeek-V3.1":{"attachment":false,"cost":{"input":0.5,"output":1.5},"family":"deepseek","id":"deepseek-ai/DeepSeek-V3.1","last_updated":"2025-08-25","limit":{"context":164000,"output":131000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V3.1","open_weights":true,"reasoning":true,"release_date":"2025-08-25","temperature":true,"tool_call":true},"deepseek-ai/DeepSeek-V3.2":{"attachment":false,"cost":{"input":0.3,"output":0.45},"family":"deepseek","id":"deepseek-ai/DeepSeek-V3.2","interleaved":{"field":"reasoning_content"},"knowledge":"2025-10","last_updated":"2026-03-06","limit":{"context":163800,"output":131100},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V3.2","open_weights":true,"reasoning":true,"release_date":"2025-12-01","status":"deprecated","temperature":true,"tool_call":true},"deepseek-ai/DeepSeek-V4-Pro":{"attachment":false,"cost":{"cache_read":0.15,"input":1.74,"output":3.48},"family":"deepseek-thinking","id":"deepseek-ai/DeepSeek-V4-Pro","interleaved":{"field":"reasoning_content"},"knowledge":"2025-05","last_updated":"2026-04-24","limit":{"context":1000000,"output":384000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V4 Pro","open_weights":true,"reasoning":true,"release_date":"2026-04-24","structured_output":true,"temperature":true,"tool_call":true},"moonshotai/Kimi-K2-Instruct-0905":{"attachment":false,"cost":{"input":0.6,"output":2.5},"family":"kimi","id":"moonshotai/Kimi-K2-Instruct-0905","knowledge":"2025-08","last_updated":"2026-03-06","limit":{"context":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Kimi K2 Instruct 0905","open_weights":true,"reasoning":false,"release_date":"2025-09-05","status":"deprecated","temperature":true,"tool_call":true},"moonshotai/Kimi-K2-Thinking":{"attachment":false,"cost":{"input":0.6,"output":2.5},"family":"kimi-thinking","id":"moonshotai/Kimi-K2-Thinking","interleaved":{"field":"reasoning_content"},"knowledge":"2024-08","last_updated":"2026-03-06","limit":{"context":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Kimi K2 Thinking","open_weights":true,"reasoning":true,"release_date":"2025-11-06","status":"deprecated","temperature":true,"tool_call":true},"moonshotai/Kimi-K2.5":{"attachment":true,"cost":{"input":0.6,"output":3},"family":"kimi","id":"moonshotai/Kimi-K2.5","interleaved":{"field":"reasoning_content"},"knowledge":"2025-12","last_updated":"2026-02-12","limit":{"context":262144,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Kimi K2.5","open_weights":true,"reasoning":true,"release_date":"2026-01-30","temperature":true,"tool_call":true},"moonshotai/Kimi-K2.6":{"attachment":true,"cost":{"cache_read":0.16,"input":0.95,"output":4},"family":"kimi-k2.6","id":"moonshotai/Kimi-K2.6","interleaved":{"field":"reasoning_content"},"knowledge":"2025-01","last_updated":"2026-04-21","limit":{"context":262144,"output":262144},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Kimi K2.6","open_weights":true,"reasoning":true,"release_date":"2026-04-21","structured_output":true,"temperature":true,"tool_call":true},"nvidia/Nemotron-120B-A12B":{"attachment":false,"cost":{"input":0.3,"output":0.75},"family":"nemotron","id":"nvidia/Nemotron-120B-A12B","interleaved":{"field":"reasoning_content"},"knowledge":"2026-02","last_updated":"2026-03-11","limit":{"context":262144,"output":32678},"modalities":{"input":["text"],"output":["text"]},"name":"Nemotron 3 Super","open_weights":true,"reasoning":true,"release_date":"2026-03-11","temperature":true,"tool_call":true},"openai/gpt-oss-120b":{"attachment":false,"cost":{"input":0.1,"output":0.5},"family":"gpt-oss","id":"openai/gpt-oss-120b","knowledge":"2025-08","last_updated":"2025-08-05","limit":{"context":128000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"GPT OSS 120B","open_weights":true,"reasoning":true,"release_date":"2025-08-05","temperature":true,"tool_call":true},"zai-org/GLM-4.6":{"attachment":false,"cost":{"input":0.6,"output":2.2},"family":"glm","id":"zai-org/GLM-4.6","knowledge":"2025-08-31","last_updated":"2025-09-16","limit":{"context":200000,"output":200000},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 4.6","open_weights":true,"reasoning":false,"release_date":"2025-09-16","temperature":true,"tool_call":true},"zai-org/GLM-4.7":{"attachment":false,"cost":{"input":0.6,"output":2.2},"family":"glm","id":"zai-org/GLM-4.7","interleaved":{"field":"reasoning_content"},"knowledge":"2025-04","last_updated":"2025-12-22","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4.7","open_weights":true,"reasoning":true,"release_date":"2025-12-22","temperature":true,"tool_call":true},"zai-org/GLM-5":{"attachment":false,"cost":{"input":0.95,"output":3.15},"family":"glm","id":"zai-org/GLM-5","interleaved":{"field":"reasoning_content"},"knowledge":"2026-01","last_updated":"2026-02-12","limit":{"context":202752,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-5","open_weights":true,"reasoning":true,"release_date":"2026-02-12","temperature":true,"tool_call":true}},"name":"Baseten","npm":"@ai-sdk/openai-compatible"},"berget":{"api":"https://api.berget.ai/v1","doc":"https://api.berget.ai","env":["BERGET_API_KEY"],"id":"berget","models":{"google/gemma-4-31B-it":{"attachment":true,"cost":{"input":0.275,"output":0.55},"family":"gemma","id":"google/gemma-4-31B-it","knowledge":"2025-12","last_updated":"2026-04-02","limit":{"context":128000,"output":8192},"modalities":{"input":["audio","image","text","video"],"output":["text"]},"name":"Gemma 4 31B Instruct","open_weights":true,"reasoning":true,"release_date":"2026-04-02","structured_output":true,"temperature":true,"tool_call":true},"meta-llama/Llama-3.3-70B-Instruct":{"attachment":false,"cost":{"input":0.99,"output":0.99},"family":"llama","id":"meta-llama/Llama-3.3-70B-Instruct","knowledge":"2023-12","last_updated":"2025-04-27","limit":{"context":128000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.3 70B Instruct","open_weights":true,"reasoning":true,"release_date":"2025-04-27","structured_output":true,"temperature":true,"tool_call":true},"mistralai/Mistral-Medium-3.5-128B":{"attachment":true,"cost":{"input":1.65,"output":5.5},"family":"mistral-medium","id":"mistralai/Mistral-Medium-3.5-128B","knowledge":"2026-04","last_updated":"2026-04-29","limit":{"context":262144,"output":131072},"modalities":{"input":["image","text"],"output":["text"]},"name":"Mistral Medium 3.5 128B","open_weights":true,"reasoning":true,"release_date":"2026-04-29","structured_output":true,"temperature":true,"tool_call":true},"mistralai/Mistral-Small-3.2-24B-Instruct-2506":{"attachment":false,"cost":{"input":0.33,"output":0.33},"family":"mistral-small","id":"mistralai/Mistral-Small-3.2-24B-Instruct-2506","knowledge":"2025-09","last_updated":"2025-10-01","limit":{"context":32000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Mistral Small 3.2 24B Instruct 2506","open_weights":true,"reasoning":true,"release_date":"2025-10-01","structured_output":true,"temperature":true,"tool_call":true},"moonshotai/Kimi-K2.6":{"attachment":true,"cost":{"cache_read":0.16,"input":0.83,"output":3.85},"family":"kimi-k2.6","id":"moonshotai/Kimi-K2.6","interleaved":{"field":"reasoning_content"},"knowledge":"2025-01","last_updated":"2026-05-07","limit":{"context":262144,"output":262144},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Kimi K2.6","open_weights":true,"reasoning":true,"release_date":"2026-05-07","structured_output":true,"temperature":true,"tool_call":true},"openai/gpt-oss-120b":{"attachment":false,"cost":{"input":0.44,"output":0.99},"family":"gpt-oss","id":"openai/gpt-oss-120b","knowledge":"2025-08","last_updated":"2025-08-05","limit":{"context":128000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"GPT-OSS-120B","open_weights":true,"reasoning":true,"release_date":"2025-08-05","structured_output":true,"temperature":true,"tool_call":true},"zai-org/GLM-4.7":{"attachment":false,"cost":{"input":0.77,"output":2.75},"family":"glm","id":"zai-org/GLM-4.7","knowledge":"2025-12","last_updated":"2026-01-19","limit":{"context":128000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 4.7","open_weights":true,"reasoning":true,"release_date":"2026-01-19","structured_output":true,"temperature":true,"tool_call":true}},"name":"Berget.AI","npm":"@ai-sdk/openai-compatible"},"cerebras":{"doc":"https://inference-docs.cerebras.ai/models/overview","env":["CEREBRAS_API_KEY"],"id":"cerebras","models":{"gpt-oss-120b":{"attachment":false,"cost":{"input":0.25,"output":0.69},"family":"gpt-oss","id":"gpt-oss-120b","last_updated":"2025-08-05","limit":{"context":131072,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"GPT OSS 120B","open_weights":true,"reasoning":true,"release_date":"2025-08-05","temperature":true,"tool_call":true},"llama3.1-8b":{"attachment":false,"cost":{"input":0.1,"output":0.1},"family":"llama","id":"llama3.1-8b","knowledge":"2023-12","last_updated":"2025-01-01","limit":{"context":32000,"output":8000},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.1 8B","open_weights":true,"reasoning":false,"release_date":"2025-01-01","temperature":true,"tool_call":true},"zai-glm-4.7":{"attachment":false,"cost":{"cache_read":0,"cache_write":0,"input":2.25,"output":2.75},"id":"zai-glm-4.7","last_updated":"2026-01-10","limit":{"context":131072,"output":40000},"modalities":{"input":["text"],"output":["text"]},"name":"Z.AI GLM-4.7","open_weights":true,"reasoning":false,"release_date":"2026-01-10","temperature":true,"tool_call":true}},"name":"Cerebras","npm":"@ai-sdk/cerebras"},"chutes":{"api":"https://llm.chutes.ai/v1","doc":"https://llm.chutes.ai/v1/models","env":["CHUTES_API_KEY"],"id":"chutes","models":{"MiniMaxAI/MiniMax-M2.5-TEE":{"attachment":false,"cost":{"cache_read":0.075,"input":0.15,"output":1.2},"family":"minimax","id":"MiniMaxAI/MiniMax-M2.5-TEE","interleaved":{"field":"reasoning_content"},"last_updated":"2026-04-25","limit":{"context":196608,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax M2.5 TEE","open_weights":true,"reasoning":true,"release_date":"2026-02-15","structured_output":true,"temperature":true,"tool_call":true},"NousResearch/DeepHermes-3-Mistral-24B-Preview":{"attachment":false,"cost":{"cache_read":0.01225,"input":0.0245,"output":0.0978},"family":"nousresearch","id":"NousResearch/DeepHermes-3-Mistral-24B-Preview","last_updated":"2026-04-25","limit":{"context":32768,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"DeepHermes 3 Mistral 24B Preview","open_weights":true,"reasoning":false,"release_date":"2025-12-29","structured_output":true,"temperature":true,"tool_call":true},"NousResearch/Hermes-4-14B":{"attachment":false,"cost":{"cache_read":0.0068,"input":0.0136,"output":0.0543},"family":"nousresearch","id":"NousResearch/Hermes-4-14B","interleaved":{"field":"reasoning_content"},"last_updated":"2026-04-25","limit":{"context":40960,"output":40960},"modalities":{"input":["text"],"output":["text"]},"name":"Hermes 4 14B","open_weights":true,"reasoning":true,"release_date":"2025-12-29","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen2.5-72B-Instruct":{"attachment":false,"cost":{"cache_read":0.14945,"input":0.2989,"output":1.1957},"family":"qwen","id":"Qwen/Qwen2.5-72B-Instruct","last_updated":"2026-04-25","limit":{"context":32768,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen2.5 72B Instruct","open_weights":true,"reasoning":false,"release_date":"2025-12-29","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen2.5-Coder-32B-Instruct":{"attachment":false,"cost":{"cache_read":0.0136,"input":0.0272,"output":0.1087},"family":"qwen","id":"Qwen/Qwen2.5-Coder-32B-Instruct","last_updated":"2026-04-25","limit":{"context":32768,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen2.5 Coder 32B Instruct","open_weights":true,"reasoning":false,"release_date":"2025-12-29","structured_output":true,"temperature":true,"tool_call":false},"Qwen/Qwen2.5-VL-32B-Instruct":{"attachment":true,"cost":{"cache_read":0.02715,"input":0.0543,"output":0.2174},"family":"qwen","id":"Qwen/Qwen2.5-VL-32B-Instruct","last_updated":"2026-04-25","limit":{"context":16384,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen2.5 VL 32B Instruct","open_weights":true,"reasoning":false,"release_date":"2025-12-29","structured_output":true,"temperature":true,"tool_call":false},"Qwen/Qwen3-235B-A22B-Instruct-2507-TEE":{"attachment":false,"cost":{"cache_read":0.05,"input":0.1,"output":0.6},"family":"qwen","id":"Qwen/Qwen3-235B-A22B-Instruct-2507-TEE","last_updated":"2026-04-25","limit":{"context":262144,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 235B A22B Instruct 2507 TEE","open_weights":true,"reasoning":false,"release_date":"2025-12-29","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen3-235B-A22B-Thinking-2507":{"attachment":false,"cost":{"cache_read":0.055,"input":0.11,"output":0.6},"family":"qwen","id":"Qwen/Qwen3-235B-A22B-Thinking-2507","interleaved":{"field":"reasoning_content"},"last_updated":"2026-04-25","limit":{"context":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 235B A22B Thinking 2507","open_weights":true,"reasoning":true,"release_date":"2025-12-29","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen3-30B-A3B":{"attachment":false,"cost":{"cache_read":0.03,"input":0.06,"output":0.22},"family":"qwen","id":"Qwen/Qwen3-30B-A3B","interleaved":{"field":"reasoning_content"},"last_updated":"2026-04-25","limit":{"context":40960,"output":40960},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 30B A3B","open_weights":true,"reasoning":true,"release_date":"2025-12-29","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen3-32B-TEE":{"attachment":false,"cost":{"cache_read":0.04,"input":0.08,"output":0.24},"family":"qwen","id":"Qwen/Qwen3-32B-TEE","last_updated":"2026-04-25","limit":{"context":40960,"output":40960},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 32B TEE","open_weights":true,"reasoning":true,"release_date":"2026-04-25","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen3-Coder-Next-TEE":{"attachment":false,"cost":{"cache_read":0.06,"input":0.12,"output":0.75},"family":"qwen","id":"Qwen/Qwen3-Coder-Next-TEE","last_updated":"2026-04-25","limit":{"context":262144,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Coder Next TEE","open_weights":true,"reasoning":false,"release_date":"2026-04-25","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen3-Next-80B-A3B-Instruct":{"attachment":false,"cost":{"cache_read":0.05,"input":0.1,"output":0.8},"family":"qwen","id":"Qwen/Qwen3-Next-80B-A3B-Instruct","last_updated":"2026-04-25","limit":{"context":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Next 80B A3B Instruct","open_weights":true,"reasoning":false,"release_date":"2025-12-29","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen3.5-397B-A17B-TEE":{"attachment":true,"cost":{"cache_read":0.195,"input":0.39,"output":2.34},"family":"qwen","id":"Qwen/Qwen3.5-397B-A17B-TEE","interleaved":{"field":"reasoning_content"},"last_updated":"2026-04-25","limit":{"context":262144,"output":65536},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen3.5 397B A17B TEE","open_weights":true,"reasoning":true,"release_date":"2026-02-18","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen3.6-27B-TEE":{"attachment":true,"cost":{"cache_read":0.0975,"input":0.195,"output":1.56},"family":"qwen","id":"Qwen/Qwen3.6-27B-TEE","last_updated":"2026-04-25","limit":{"context":262144,"output":65536},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen3.6 27B TEE","open_weights":true,"reasoning":true,"release_date":"2026-04-25","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen3Guard-Gen-0.6B":{"attachment":false,"cost":{"cache_read":0.005,"input":0.01,"output":0.0109},"family":"qwen","id":"Qwen/Qwen3Guard-Gen-0.6B","last_updated":"2026-04-25","limit":{"context":32768,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3Guard Gen 0.6B","open_weights":true,"reasoning":false,"release_date":"2025-12-29","temperature":true,"tool_call":false},"XiaomiMiMo/MiMo-V2-Flash-TEE":{"attachment":false,"cost":{"cache_read":0.045,"input":0.09,"output":0.29},"family":"mimo","id":"XiaomiMiMo/MiMo-V2-Flash-TEE","last_updated":"2026-04-25","limit":{"context":262144,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"MiMo V2 Flash TEE","open_weights":true,"reasoning":false,"release_date":"2026-04-25","structured_output":true,"temperature":true,"tool_call":true},"deepseek-ai/DeepSeek-R1-0528-TEE":{"attachment":false,"cost":{"cache_read":0.225,"input":0.45,"output":2.15},"family":"deepseek-thinking","id":"deepseek-ai/DeepSeek-R1-0528-TEE","interleaved":{"field":"reasoning_content"},"last_updated":"2026-04-25","limit":{"context":163840,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek R1 0528 TEE","open_weights":true,"reasoning":true,"release_date":"2025-12-29","structured_output":true,"temperature":true,"tool_call":true},"deepseek-ai/DeepSeek-R1-Distill-Llama-70B":{"attachment":false,"cost":{"cache_read":0.0136,"input":0.0272,"output":0.1087},"family":"deepseek-thinking","id":"deepseek-ai/DeepSeek-R1-Distill-Llama-70B","interleaved":{"field":"reasoning_content"},"last_updated":"2026-04-25","limit":{"context":131072,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek R1 Distill Llama 70B","open_weights":true,"reasoning":true,"release_date":"2025-12-29","structured_output":true,"temperature":true,"tool_call":true},"deepseek-ai/DeepSeek-V3-0324-TEE":{"attachment":false,"cost":{"cache_read":0.125,"input":0.25,"output":1},"family":"deepseek","id":"deepseek-ai/DeepSeek-V3-0324-TEE","last_updated":"2026-04-25","limit":{"context":163840,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V3 0324 TEE","open_weights":true,"reasoning":false,"release_date":"2025-12-29","structured_output":true,"temperature":true,"tool_call":true},"deepseek-ai/DeepSeek-V3.1-TEE":{"attachment":false,"cost":{"cache_read":0.135,"input":0.27,"output":1},"family":"deepseek","id":"deepseek-ai/DeepSeek-V3.1-TEE","interleaved":{"field":"reasoning_content"},"last_updated":"2026-04-25","limit":{"context":163840,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V3.1 TEE","open_weights":true,"reasoning":true,"release_date":"2025-12-29","structured_output":true,"temperature":true,"tool_call":true},"deepseek-ai/DeepSeek-V3.2-TEE":{"attachment":false,"cost":{"cache_read":0.14,"input":0.28,"output":0.42},"family":"deepseek","id":"deepseek-ai/DeepSeek-V3.2-TEE","interleaved":{"field":"reasoning_content"},"last_updated":"2026-04-25","limit":{"context":131072,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V3.2 TEE","open_weights":true,"reasoning":true,"release_date":"2025-12-29","structured_output":true,"temperature":true,"tool_call":true},"google/gemma-4-31B-turbo-TEE":{"attachment":true,"cost":{"cache_read":0.065,"input":0.13,"output":0.38},"family":"gemma","id":"google/gemma-4-31B-turbo-TEE","last_updated":"2026-04-25","limit":{"context":131072,"output":65536},"modalities":{"input":["text","image"],"output":["text"]},"name":"gemma 4 31B turbo TEE","open_weights":true,"reasoning":true,"release_date":"2026-04-25","structured_output":true,"temperature":true,"tool_call":true},"moonshotai/Kimi-K2.5-TEE":{"attachment":true,"cost":{"cache_read":0.22,"input":0.44,"output":2},"family":"kimi","id":"moonshotai/Kimi-K2.5-TEE","interleaved":{"field":"reasoning_content"},"knowledge":"2024-10","last_updated":"2026-04-25","limit":{"context":262144,"output":65535},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Kimi K2.5 TEE","open_weights":true,"reasoning":true,"release_date":"2026-01-27","structured_output":true,"temperature":true,"tool_call":true},"moonshotai/Kimi-K2.6-TEE":{"attachment":true,"cost":{"cache_read":0.475,"input":0.95,"output":4},"family":"kimi","id":"moonshotai/Kimi-K2.6-TEE","interleaved":{"field":"reasoning_content"},"knowledge":"2025-12","last_updated":"2026-04-25","limit":{"context":262144,"output":65535},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Kimi K2.6 TEE","open_weights":true,"reasoning":true,"release_date":"2026-04-20","structured_output":true,"temperature":true,"tool_call":true},"openai/gpt-oss-120b-TEE":{"attachment":false,"cost":{"cache_read":0.045,"input":0.09,"output":0.36},"family":"gpt-oss","id":"openai/gpt-oss-120b-TEE","interleaved":{"field":"reasoning_content"},"last_updated":"2026-04-25","limit":{"context":131072,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"gpt oss 120b TEE","open_weights":true,"reasoning":true,"release_date":"2025-12-29","structured_output":true,"temperature":true,"tool_call":true},"rednote-hilab/dots.ocr":{"attachment":true,"cost":{"cache_read":0.005,"input":0.01,"output":0.0109},"family":"rednote","id":"rednote-hilab/dots.ocr","last_updated":"2026-04-25","limit":{"context":131072,"output":131072},"modalities":{"input":["text","image"],"output":["text"]},"name":"dots.ocr","open_weights":true,"reasoning":false,"release_date":"2025-12-29","structured_output":true,"temperature":true,"tool_call":false},"tngtech/DeepSeek-TNG-R1T2-Chimera-TEE":{"attachment":false,"cost":{"cache_read":0.15,"input":0.3,"output":1.1},"family":"deepseek","id":"tngtech/DeepSeek-TNG-R1T2-Chimera-TEE","last_updated":"2026-04-25","limit":{"context":163840,"output":163840},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek TNG R1T2 Chimera TEE","open_weights":true,"reasoning":true,"release_date":"2026-04-25","structured_output":true,"temperature":true,"tool_call":true},"unsloth/Llama-3.2-1B-Instruct":{"attachment":false,"cost":{"cache_read":0.005,"input":0.01,"output":0.0109},"family":"unsloth","id":"unsloth/Llama-3.2-1B-Instruct","last_updated":"2026-04-25","limit":{"context":16384,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.2 1B Instruct","open_weights":true,"reasoning":false,"release_date":"2026-01-27","temperature":true,"tool_call":false},"unsloth/Llama-3.2-3B-Instruct":{"attachment":false,"cost":{"cache_read":0.005,"input":0.01,"output":0.0136},"family":"unsloth","id":"unsloth/Llama-3.2-3B-Instruct","last_updated":"2026-04-25","limit":{"context":16384,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.2 3B Instruct","open_weights":true,"reasoning":false,"release_date":"2025-02-12","temperature":true,"tool_call":false},"unsloth/Mistral-Nemo-Instruct-2407":{"attachment":false,"cost":{"cache_read":0.01,"input":0.02,"output":0.04},"family":"unsloth","id":"unsloth/Mistral-Nemo-Instruct-2407","last_updated":"2026-04-25","limit":{"context":131072,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"Mistral Nemo Instruct 2407","open_weights":true,"reasoning":false,"release_date":"2025-12-29","structured_output":true,"temperature":true,"tool_call":false},"unsloth/gemma-3-12b-it":{"attachment":true,"cost":{"cache_read":0.015,"input":0.03,"output":0.1},"family":"unsloth","id":"unsloth/gemma-3-12b-it","last_updated":"2026-04-25","limit":{"context":131072,"output":131072},"modalities":{"input":["text","image"],"output":["text"]},"name":"gemma 3 12b it","open_weights":true,"reasoning":false,"release_date":"2025-12-29","temperature":true,"tool_call":false},"unsloth/gemma-3-27b-it":{"attachment":true,"cost":{"cache_read":0.0136,"input":0.0272,"output":0.1087},"family":"unsloth","id":"unsloth/gemma-3-27b-it","last_updated":"2026-04-25","limit":{"context":128000,"output":65536},"modalities":{"input":["text","image"],"output":["text"]},"name":"gemma 3 27b it","open_weights":true,"reasoning":false,"release_date":"2025-12-29","structured_output":true,"temperature":true,"tool_call":true},"unsloth/gemma-3-4b-it":{"attachment":true,"cost":{"cache_read":0.005,"input":0.01,"output":0.0272},"family":"unsloth","id":"unsloth/gemma-3-4b-it","last_updated":"2026-04-25","limit":{"context":96000,"output":96000},"modalities":{"input":["text","image"],"output":["text"]},"name":"gemma 3 4b it","open_weights":true,"reasoning":false,"release_date":"2025-12-29","structured_output":true,"temperature":true,"tool_call":false},"zai-org/GLM-4.6V":{"attachment":true,"cost":{"cache_read":0.15,"input":0.3,"output":0.9},"family":"glm","id":"zai-org/GLM-4.6V","interleaved":{"field":"reasoning_content"},"last_updated":"2026-04-25","limit":{"context":131072,"output":65536},"modalities":{"input":["text","image"],"output":["text"]},"name":"GLM 4.6V","open_weights":true,"reasoning":true,"release_date":"2025-12-29","structured_output":true,"temperature":true,"tool_call":true},"zai-org/GLM-4.7-FP8":{"attachment":false,"cost":{"cache_read":0.14945,"input":0.2989,"output":1.1957},"family":"glm","id":"zai-org/GLM-4.7-FP8","last_updated":"2026-04-25","limit":{"context":202752,"output":65535},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 4.7 FP8","open_weights":true,"reasoning":true,"release_date":"2026-01-27","structured_output":true,"temperature":true,"tool_call":true},"zai-org/GLM-4.7-TEE":{"attachment":false,"cost":{"cache_read":0.195,"input":0.39,"output":1.75},"family":"glm","id":"zai-org/GLM-4.7-TEE","interleaved":{"field":"reasoning_content"},"last_updated":"2026-04-25","limit":{"context":202752,"output":65535},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 4.7 TEE","open_weights":true,"reasoning":true,"release_date":"2025-12-29","structured_output":true,"temperature":true,"tool_call":true},"zai-org/GLM-5-TEE":{"attachment":false,"cost":{"cache_read":0.475,"input":0.95,"output":2.55},"family":"glm","id":"zai-org/GLM-5-TEE","interleaved":{"field":"reasoning_content"},"last_updated":"2026-04-25","limit":{"context":202752,"output":65535},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 5 TEE","open_weights":true,"reasoning":true,"release_date":"2026-02-14","structured_output":true,"temperature":true,"tool_call":true},"zai-org/GLM-5-Turbo":{"attachment":false,"cost":{"cache_read":0.24455,"input":0.4891,"output":1.9565},"family":"glm","id":"zai-org/GLM-5-Turbo","interleaved":{"field":"reasoning_content"},"last_updated":"2026-04-25","limit":{"context":202752,"output":65535},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 5 Turbo","open_weights":true,"reasoning":true,"release_date":"2026-03-11","structured_output":true,"temperature":true,"tool_call":true},"zai-org/GLM-5.1-TEE":{"attachment":false,"cost":{"cache_read":0.525,"input":1.05,"output":3.5},"family":"glm","id":"zai-org/GLM-5.1-TEE","interleaved":{"field":"reasoning_content"},"last_updated":"2026-04-25","limit":{"context":202752,"output":65535},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 5.1 TEE","open_weights":true,"reasoning":true,"release_date":"2026-04-08","structured_output":true,"temperature":true,"tool_call":true}},"name":"Chutes","npm":"@ai-sdk/openai-compatible"},"clarifai":{"api":"https://api.clarifai.com/v2/ext/openai/v1","doc":"https://docs.clarifai.com/compute/inference/","env":["CLARIFAI_PAT"],"id":"clarifai","models":{"arcee_ai/AFM/models/trinity-mini":{"attachment":false,"cost":{"input":0.045,"output":0.15},"family":"trinity-mini","id":"arcee_ai/AFM/models/trinity-mini","knowledge":"2024-10","last_updated":"2026-02-25","limit":{"context":131072,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"Trinity Mini","open_weights":true,"reasoning":true,"release_date":"2025-12","temperature":true,"tool_call":true},"clarifai/main/models/mm-poly-8b":{"attachment":true,"cost":{"input":0.658,"output":1.11},"family":"mm-poly","id":"clarifai/main/models/mm-poly-8b","last_updated":"2026-02-25","limit":{"context":32768,"output":4096},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"MM Poly 8B","open_weights":false,"reasoning":false,"release_date":"2025-06","temperature":true,"tool_call":false},"deepseek-ai/deepseek-ocr/models/DeepSeek-OCR":{"attachment":true,"cost":{"input":0.2,"output":0.7},"family":"deepseek","id":"deepseek-ai/deepseek-ocr/models/DeepSeek-OCR","last_updated":"2026-02-25","limit":{"context":8192,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"DeepSeek OCR","open_weights":true,"reasoning":false,"release_date":"2025-10-20","temperature":true,"tool_call":false},"minimaxai/chat-completion/models/MiniMax-M2_5-high-throughput":{"attachment":false,"cost":{"input":0.3,"output":1.2},"family":"minimax","id":"minimaxai/chat-completion/models/MiniMax-M2_5-high-throughput","last_updated":"2026-02-25","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2.5 High Throughput","open_weights":true,"reasoning":true,"release_date":"2026-02-12","temperature":true,"tool_call":true},"mistralai/completion/models/Ministral-3-14B-Reasoning-2512":{"attachment":true,"cost":{"input":2.5,"output":1.7},"family":"ministral","id":"mistralai/completion/models/Ministral-3-14B-Reasoning-2512","knowledge":"2025-12","last_updated":"2025-12-12","limit":{"context":262144,"output":262144},"modalities":{"input":["text","image"],"output":["text"]},"name":"Ministral 3 14B Reasoning 2512","open_weights":true,"reasoning":true,"release_date":"2025-12-01","temperature":true,"tool_call":true},"mistralai/completion/models/Ministral-3-3B-Reasoning-2512":{"attachment":true,"cost":{"input":1.039,"output":0.54825},"family":"ministral","id":"mistralai/completion/models/Ministral-3-3B-Reasoning-2512","last_updated":"2026-02-25","limit":{"context":262144,"output":262144},"modalities":{"input":["text","image"],"output":["text"]},"name":"Ministral 3 3B Reasoning 2512","open_weights":true,"reasoning":true,"release_date":"2025-12","temperature":true,"tool_call":true},"moonshotai/chat-completion/models/Kimi-K2_6":{"attachment":true,"cost":{"input":0.95,"output":4},"family":"kimi-k2.6","id":"moonshotai/chat-completion/models/Kimi-K2_6","interleaved":{"field":"reasoning_content"},"knowledge":"2025-01","last_updated":"2026-04-21","limit":{"context":262144,"output":262144},"modalities":{"input":["text","image"],"output":["text"]},"name":"Kimi K2.6","open_weights":true,"reasoning":true,"release_date":"2026-04-21","structured_output":true,"temperature":true,"tool_call":true},"openai/chat-completion/models/gpt-oss-120b-high-throughput":{"attachment":false,"cost":{"input":0.09,"output":0.36},"family":"gpt-oss","id":"openai/chat-completion/models/gpt-oss-120b-high-throughput","last_updated":"2026-02-25","limit":{"context":131072,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"GPT OSS 120B High Throughput","open_weights":true,"reasoning":true,"release_date":"2025-08-05","temperature":true,"tool_call":true},"openai/chat-completion/models/gpt-oss-20b":{"attachment":false,"cost":{"input":0.045,"output":0.18},"family":"gpt-oss","id":"openai/chat-completion/models/gpt-oss-20b","last_updated":"2025-12-12","limit":{"context":131072,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"GPT OSS 20B","open_weights":true,"reasoning":true,"release_date":"2025-08-05","temperature":true,"tool_call":true},"qwen/qwenCoder/models/Qwen3-Coder-30B-A3B-Instruct":{"attachment":false,"cost":{"input":0.11458,"output":0.74812},"family":"qwen","id":"qwen/qwenCoder/models/Qwen3-Coder-30B-A3B-Instruct","knowledge":"2025-04","last_updated":"2026-02-12","limit":{"context":262144,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Coder 30B A3B Instruct","open_weights":true,"reasoning":false,"release_date":"2025-07-31","temperature":true,"tool_call":true},"qwen/qwenLM/models/Qwen3-30B-A3B-Instruct-2507":{"attachment":false,"cost":{"input":0.3,"output":0.5},"family":"qwen","id":"qwen/qwenLM/models/Qwen3-30B-A3B-Instruct-2507","last_updated":"2026-02-25","limit":{"context":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 30B A3B Instruct 2507","open_weights":true,"reasoning":false,"release_date":"2025-07-30","structured_output":true,"temperature":true,"tool_call":true},"qwen/qwenLM/models/Qwen3-30B-A3B-Thinking-2507":{"attachment":false,"cost":{"input":0.36,"output":1.3},"family":"qwen","id":"qwen/qwenLM/models/Qwen3-30B-A3B-Thinking-2507","last_updated":"2026-02-25","limit":{"context":262144,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 30B A3B Thinking 2507","open_weights":true,"reasoning":true,"release_date":"2025-07-31","structured_output":true,"temperature":true,"tool_call":true}},"name":"Clarifai","npm":"@ai-sdk/openai-compatible"},"claudinio":{"api":"https://api.claudin.io/v1","doc":"https://claudin.io","env":["CLAUDINIO_API_KEY"],"id":"claudinio","models":{"claudinio":{"attachment":true,"cost":{"cache_read":0.15,"input":0.5,"output":2},"id":"claudinio","knowledge":"2026-05","last_updated":"2026-06-02","limit":{"context":256000,"output":64000},"modalities":{"input":["text","image","audio","video"],"output":["text"]},"name":"Claudinio","open_weights":false,"reasoning":true,"release_date":"2026-05-12","tool_call":true}},"name":"Claudinio","npm":"@ai-sdk/openai-compatible"},"cloudferro-sherlock":{"api":"https://api-sherlock.cloudferro.com/openai/v1/","doc":"https://docs.sherlock.cloudferro.com/","env":["CLOUDFERRO_SHERLOCK_API_KEY"],"id":"cloudferro-sherlock","models":{"MiniMaxAI/MiniMax-M2.5":{"attachment":false,"cost":{"input":0.3,"output":1.2},"family":"minimax","id":"MiniMaxAI/MiniMax-M2.5","knowledge":"2026-01","last_updated":"2026-03-05","limit":{"context":196000,"input":180000,"output":16000},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2.5","open_weights":true,"reasoning":true,"release_date":"2026-03-05","structured_output":true,"temperature":true,"tool_call":true},"meta-llama/Llama-3.3-70B-Instruct":{"attachment":false,"cost":{"input":2.92,"output":2.92},"family":"llama","id":"meta-llama/Llama-3.3-70B-Instruct","knowledge":"2024-10-09","last_updated":"2024-12-06","limit":{"context":70000,"output":70000},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.3 70B Instruct","open_weights":true,"reasoning":false,"release_date":"2024-12-06","temperature":true,"tool_call":true},"openai/gpt-oss-120b":{"attachment":false,"cost":{"input":2.92,"output":2.92},"family":"gpt-oss","id":"openai/gpt-oss-120b","last_updated":"2025-08-28","limit":{"context":131000,"output":131000},"modalities":{"input":["text"],"output":["text"]},"name":"OpenAI GPT OSS 120B","open_weights":true,"reasoning":true,"release_date":"2025-08-28","structured_output":true,"temperature":true,"tool_call":true},"speakleash/Bielik-11B-v2.6-Instruct":{"attachment":false,"cost":{"input":0.67,"output":0.67},"id":"speakleash/Bielik-11B-v2.6-Instruct","knowledge":"2025-03","last_updated":"2025-03-13","limit":{"context":32000,"output":32000},"modalities":{"input":["text"],"output":["text"]},"name":"Bielik 11B v2.6 Instruct","open_weights":true,"reasoning":false,"release_date":"2025-03-13","structured_output":true,"temperature":true,"tool_call":true},"speakleash/Bielik-11B-v3.0-Instruct":{"attachment":false,"cost":{"input":0.67,"output":0.67},"id":"speakleash/Bielik-11B-v3.0-Instruct","knowledge":"2025-03","last_updated":"2025-03-13","limit":{"context":32000,"output":32000},"modalities":{"input":["text"],"output":["text"]},"name":"Bielik 11B v3.0 Instruct","open_weights":true,"reasoning":false,"release_date":"2025-03-13","structured_output":true,"temperature":true,"tool_call":true}},"name":"CloudFerro Sherlock","npm":"@ai-sdk/openai-compatible"},"cloudflare-ai-gateway":{"doc":"https://developers.cloudflare.com/ai-gateway/","env":["CLOUDFLARE_API_TOKEN","CLOUDFLARE_ACCOUNT_ID","CLOUDFLARE_GATEWAY_ID"],"id":"cloudflare-ai-gateway","models":{"anthropic/claude-3-5-haiku":{"attachment":true,"cost":{"cache_read":0.08,"cache_write":1,"input":0.8,"output":4},"family":"claude-haiku","id":"anthropic/claude-3-5-haiku","knowledge":"2024-07-31","last_updated":"2024-10-22","limit":{"context":200000,"output":8192},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Haiku 3.5 (latest)","open_weights":false,"reasoning":false,"release_date":"2024-10-22","temperature":true,"tool_call":true},"anthropic/claude-3-haiku":{"attachment":true,"cost":{"cache_read":0.03,"cache_write":0.3,"input":0.25,"output":1.25},"family":"claude-haiku","id":"anthropic/claude-3-haiku","knowledge":"2023-08-31","last_updated":"2024-03-13","limit":{"context":200000,"output":4096},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Haiku 3","open_weights":false,"reasoning":false,"release_date":"2024-03-13","temperature":true,"tool_call":true},"anthropic/claude-3-opus":{"attachment":true,"cost":{"cache_read":1.5,"cache_write":18.75,"input":15,"output":75},"family":"claude-opus","id":"anthropic/claude-3-opus","knowledge":"2023-08-31","last_updated":"2024-02-29","limit":{"context":200000,"output":4096},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 3","open_weights":false,"reasoning":false,"release_date":"2024-02-29","temperature":true,"tool_call":true},"anthropic/claude-3-sonnet":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":0.3,"input":3,"output":15},"family":"claude-sonnet","id":"anthropic/claude-3-sonnet","knowledge":"2023-08-31","last_updated":"2024-03-04","limit":{"context":200000,"output":4096},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 3","open_weights":false,"reasoning":false,"release_date":"2024-03-04","temperature":true,"tool_call":true},"anthropic/claude-3.5-haiku":{"attachment":true,"cost":{"cache_read":0.08,"cache_write":1,"input":0.8,"output":4},"family":"claude-haiku","id":"anthropic/claude-3.5-haiku","knowledge":"2024-07-31","last_updated":"2024-10-22","limit":{"context":200000,"output":8192},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Haiku 3.5 (latest)","open_weights":false,"reasoning":false,"release_date":"2024-10-22","temperature":true,"tool_call":true},"anthropic/claude-3.5-sonnet":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"input":3,"output":15},"family":"claude-sonnet","id":"anthropic/claude-3.5-sonnet","knowledge":"2024-04-30","last_updated":"2024-10-22","limit":{"context":200000,"output":8192},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 3.5 v2","open_weights":false,"reasoning":false,"release_date":"2024-10-22","temperature":true,"tool_call":true},"anthropic/claude-haiku-4-5":{"attachment":true,"cost":{"cache_read":0.1,"cache_write":1.25,"input":1,"output":5},"family":"claude-haiku","id":"anthropic/claude-haiku-4-5","knowledge":"2025-02-28","last_updated":"2025-10-15","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Haiku 4.5 (latest)","open_weights":false,"reasoning":true,"release_date":"2025-10-15","temperature":true,"tool_call":true},"anthropic/claude-opus-4":{"attachment":true,"cost":{"cache_read":1.5,"cache_write":18.75,"input":15,"output":75},"family":"claude-opus","id":"anthropic/claude-opus-4","knowledge":"2025-03-31","last_updated":"2025-05-22","limit":{"context":200000,"output":32000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4 (latest)","open_weights":false,"reasoning":true,"release_date":"2025-05-22","temperature":true,"tool_call":true},"anthropic/claude-opus-4-1":{"attachment":true,"cost":{"cache_read":1.5,"cache_write":18.75,"input":15,"output":75},"family":"claude-opus","id":"anthropic/claude-opus-4-1","knowledge":"2025-03-31","last_updated":"2025-08-05","limit":{"context":200000,"output":32000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.1 (latest)","open_weights":false,"reasoning":true,"release_date":"2025-08-05","temperature":true,"tool_call":true},"anthropic/claude-opus-4-5":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"input":5,"output":25},"family":"claude-opus","id":"anthropic/claude-opus-4-5","knowledge":"2025-03-31","last_updated":"2025-11-24","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.5 (latest)","open_weights":false,"reasoning":true,"release_date":"2025-11-24","temperature":true,"tool_call":true},"anthropic/claude-opus-4-6":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"context_over_200k":{"cache_read":1,"cache_write":12.5,"input":10,"output":37.5},"input":5,"output":25,"tiers":[{"cache_read":1,"cache_write":12.5,"input":10,"output":37.5,"tier":{"size":200000,"type":"context"}}]},"family":"claude-opus","id":"anthropic/claude-opus-4-6","knowledge":"2025-05-31","last_updated":"2026-02-05","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.6 (latest)","open_weights":false,"reasoning":true,"release_date":"2026-02-05","temperature":true,"tool_call":true},"anthropic/claude-opus-4-7":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"input":5,"output":25},"family":"claude-opus","id":"anthropic/claude-opus-4-7","knowledge":"2026-01","last_updated":"2026-04-16","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.7","open_weights":false,"provider":{"npm":"@ai-sdk/anthropic"},"reasoning":true,"release_date":"2026-04-16","temperature":false,"tool_call":true},"anthropic/claude-opus-4-8":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"input":5,"output":25},"family":"claude-opus","id":"anthropic/claude-opus-4-8","last_updated":"2026-05-28","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.8","open_weights":false,"reasoning":true,"release_date":"2026-05-28","temperature":false,"tool_call":true},"anthropic/claude-sonnet-4":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"input":3,"output":15},"family":"claude-sonnet","id":"anthropic/claude-sonnet-4","knowledge":"2025-03-31","last_updated":"2025-05-22","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 4 (latest)","open_weights":false,"reasoning":true,"release_date":"2025-05-22","temperature":true,"tool_call":true},"anthropic/claude-sonnet-4-5":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"input":3,"output":15},"family":"claude-sonnet","id":"anthropic/claude-sonnet-4-5","knowledge":"2025-07-31","last_updated":"2025-09-29","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 4.5 (latest)","open_weights":false,"reasoning":true,"release_date":"2025-09-29","temperature":true,"tool_call":true},"anthropic/claude-sonnet-4-6":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"context_over_200k":{"cache_read":0.6,"cache_write":7.5,"input":6,"output":22.5},"input":3,"output":15,"tiers":[{"cache_read":0.6,"cache_write":7.5,"input":6,"output":22.5,"tier":{"size":200000,"type":"context"}}]},"family":"claude-sonnet","id":"anthropic/claude-sonnet-4-6","interleaved":true,"knowledge":"2025-08-31","last_updated":"2026-02-17","limit":{"context":1000000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 4.6","open_weights":false,"provider":{"npm":"ai-gateway-provider"},"reasoning":true,"release_date":"2026-02-17","temperature":true,"tool_call":true},"openai/gpt-3.5-turbo":{"attachment":false,"cost":{"cache_read":1.25,"input":0.5,"output":1.5},"family":"gpt","id":"openai/gpt-3.5-turbo","knowledge":"2021-09-01","last_updated":"2023-11-06","limit":{"context":16385,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"GPT-3.5-turbo","open_weights":false,"reasoning":false,"release_date":"2023-03-01","structured_output":false,"temperature":true,"tool_call":false},"openai/gpt-4":{"attachment":true,"cost":{"input":30,"output":60},"family":"gpt","id":"openai/gpt-4","knowledge":"2023-11","last_updated":"2024-04-09","limit":{"context":8192,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"GPT-4","open_weights":false,"reasoning":false,"release_date":"2023-11-06","structured_output":false,"temperature":true,"tool_call":true},"openai/gpt-4-turbo":{"attachment":true,"cost":{"input":10,"output":30},"family":"gpt","id":"openai/gpt-4-turbo","knowledge":"2023-12","last_updated":"2024-04-09","limit":{"context":128000,"output":4096},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-4 Turbo","open_weights":false,"reasoning":false,"release_date":"2023-11-06","structured_output":false,"temperature":true,"tool_call":true},"openai/gpt-4o":{"attachment":true,"cost":{"cache_read":1.25,"input":2.5,"output":10},"family":"gpt","id":"openai/gpt-4o","knowledge":"2023-09","last_updated":"2024-08-06","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-4o","open_weights":false,"reasoning":false,"release_date":"2024-05-13","structured_output":true,"temperature":true,"tool_call":true},"openai/gpt-4o-mini":{"attachment":true,"cost":{"cache_read":0.08,"input":0.15,"output":0.6},"family":"gpt-mini","id":"openai/gpt-4o-mini","knowledge":"2023-09","last_updated":"2024-07-18","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-4o mini","open_weights":false,"reasoning":false,"release_date":"2024-07-18","structured_output":true,"temperature":true,"tool_call":true},"openai/gpt-5.1":{"attachment":true,"cost":{"cache_read":0.13,"input":1.25,"output":10},"family":"gpt","id":"openai/gpt-5.1","knowledge":"2024-09-30","last_updated":"2025-11-13","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.1","open_weights":false,"reasoning":true,"release_date":"2025-11-13","temperature":false,"tool_call":true},"openai/gpt-5.1-codex":{"attachment":true,"cost":{"cache_read":0.125,"input":1.25,"output":10},"family":"gpt-codex","id":"openai/gpt-5.1-codex","knowledge":"2024-09-30","last_updated":"2025-11-13","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.1 Codex","open_weights":false,"reasoning":true,"release_date":"2025-11-13","structured_output":true,"temperature":false,"tool_call":true},"openai/gpt-5.2":{"attachment":true,"cost":{"cache_read":0.175,"input":1.75,"output":14},"family":"gpt","id":"openai/gpt-5.2","knowledge":"2025-08-31","last_updated":"2025-12-11","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.2","open_weights":false,"reasoning":true,"release_date":"2025-12-11","temperature":false,"tool_call":true},"openai/gpt-5.2-codex":{"attachment":true,"cost":{"cache_read":0.175,"input":1.75,"output":14},"family":"gpt-codex","id":"openai/gpt-5.2-codex","knowledge":"2025-08-31","last_updated":"2025-12-11","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5.2 Codex","open_weights":false,"provider":{"npm":"ai-gateway-provider"},"reasoning":true,"release_date":"2025-12-11","structured_output":true,"temperature":false,"tool_call":true},"openai/gpt-5.3-codex":{"attachment":true,"cost":{"cache_read":0.175,"input":1.75,"output":14},"family":"gpt-codex","id":"openai/gpt-5.3-codex","knowledge":"2025-08-31","last_updated":"2026-02-05","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5.3 Codex","open_weights":false,"provider":{"npm":"ai-gateway-provider"},"reasoning":true,"release_date":"2026-02-05","structured_output":true,"temperature":false,"tool_call":true},"openai/gpt-5.4":{"attachment":true,"cost":{"cache_read":0.25,"input":2.5,"output":15},"family":"gpt","id":"openai/gpt-5.4","knowledge":"2025-08-31","last_updated":"2026-03-05","limit":{"context":1050000,"input":922000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5.4","open_weights":false,"provider":{"npm":"ai-gateway-provider"},"reasoning":true,"release_date":"2026-03-05","structured_output":true,"temperature":false,"tool_call":true},"openai/gpt-5.5":{"attachment":true,"cost":{"cache_read":0.5,"context_over_200k":{"cache_read":1,"input":10,"output":45},"input":5,"output":30,"tiers":[{"cache_read":1,"input":10,"output":45,"tier":{"size":272000,"type":"context"}}]},"family":"gpt","id":"openai/gpt-5.5","knowledge":"2025-12-01","last_updated":"2026-04-23","limit":{"context":1050000,"input":922000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5.5","open_weights":false,"reasoning":true,"release_date":"2026-04-23","structured_output":true,"temperature":false,"tool_call":true},"openai/o1":{"attachment":true,"cost":{"cache_read":7.5,"input":15,"output":60},"family":"o","id":"openai/o1","knowledge":"2023-09","last_updated":"2024-12-05","limit":{"context":200000,"output":100000},"modalities":{"input":["text","image"],"output":["text"]},"name":"o1","open_weights":false,"reasoning":true,"release_date":"2024-12-05","structured_output":true,"temperature":false,"tool_call":true},"openai/o3":{"attachment":true,"cost":{"cache_read":0.5,"input":2,"output":8},"family":"o","id":"openai/o3","knowledge":"2024-05","last_updated":"2025-04-16","limit":{"context":200000,"output":100000},"modalities":{"input":["text","image"],"output":["text"]},"name":"o3","open_weights":false,"reasoning":true,"release_date":"2025-04-16","structured_output":true,"temperature":false,"tool_call":true},"openai/o3-mini":{"attachment":false,"cost":{"cache_read":0.55,"input":1.1,"output":4.4},"family":"o-mini","id":"openai/o3-mini","knowledge":"2024-05","last_updated":"2025-01-29","limit":{"context":200000,"output":100000},"modalities":{"input":["text"],"output":["text"]},"name":"o3-mini","open_weights":false,"reasoning":true,"release_date":"2024-12-20","structured_output":true,"temperature":false,"tool_call":true},"openai/o3-pro":{"attachment":true,"cost":{"input":20,"output":80},"family":"o-pro","id":"openai/o3-pro","knowledge":"2024-05","last_updated":"2025-06-10","limit":{"context":200000,"output":100000},"modalities":{"input":["text","image"],"output":["text"]},"name":"o3-pro","open_weights":false,"reasoning":true,"release_date":"2025-06-10","structured_output":true,"temperature":false,"tool_call":true},"openai/o4-mini":{"attachment":true,"cost":{"cache_read":0.28,"input":1.1,"output":4.4},"family":"o-mini","id":"openai/o4-mini","knowledge":"2024-05","last_updated":"2025-04-16","limit":{"context":200000,"output":100000},"modalities":{"input":["text","image"],"output":["text"]},"name":"o4-mini","open_weights":false,"reasoning":true,"release_date":"2025-04-16","structured_output":true,"temperature":false,"tool_call":true},"workers-ai/@cf/ai4bharat/indictrans2-en-indic-1B":{"attachment":false,"cost":{"input":0.34,"output":0.34},"family":"indictrans","id":"workers-ai/@cf/ai4bharat/indictrans2-en-indic-1B","last_updated":"2025-09-25","limit":{"context":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"IndicTrans2 EN-Indic 1B","open_weights":false,"reasoning":false,"release_date":"2025-09-25","temperature":true,"tool_call":false},"workers-ai/@cf/aisingapore/gemma-sea-lion-v4-27b-it":{"attachment":false,"cost":{"input":0.35,"output":0.56},"family":"gemma","id":"workers-ai/@cf/aisingapore/gemma-sea-lion-v4-27b-it","last_updated":"2025-09-25","limit":{"context":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Gemma SEA-LION v4 27B IT","open_weights":false,"reasoning":false,"release_date":"2025-09-25","temperature":true,"tool_call":false},"workers-ai/@cf/baai/bge-base-en-v1.5":{"attachment":false,"cost":{"input":0.067,"output":0},"family":"bge","id":"workers-ai/@cf/baai/bge-base-en-v1.5","last_updated":"2025-04-03","limit":{"context":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"BGE Base EN v1.5","open_weights":false,"reasoning":false,"release_date":"2025-04-03","temperature":true,"tool_call":false},"workers-ai/@cf/baai/bge-large-en-v1.5":{"attachment":false,"cost":{"input":0.2,"output":0},"family":"bge","id":"workers-ai/@cf/baai/bge-large-en-v1.5","last_updated":"2025-04-03","limit":{"context":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"BGE Large EN v1.5","open_weights":false,"reasoning":false,"release_date":"2025-04-03","temperature":true,"tool_call":false},"workers-ai/@cf/baai/bge-m3":{"attachment":false,"cost":{"input":0.012,"output":0},"family":"bge","id":"workers-ai/@cf/baai/bge-m3","last_updated":"2025-04-03","limit":{"context":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"BGE M3","open_weights":false,"reasoning":false,"release_date":"2025-04-03","temperature":true,"tool_call":false},"workers-ai/@cf/baai/bge-reranker-base":{"attachment":false,"cost":{"input":0.0031,"output":0},"family":"bge","id":"workers-ai/@cf/baai/bge-reranker-base","last_updated":"2025-04-09","limit":{"context":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"BGE Reranker Base","open_weights":false,"reasoning":false,"release_date":"2025-04-09","temperature":true,"tool_call":false},"workers-ai/@cf/baai/bge-small-en-v1.5":{"attachment":false,"cost":{"input":0.02,"output":0},"family":"bge","id":"workers-ai/@cf/baai/bge-small-en-v1.5","last_updated":"2025-04-03","limit":{"context":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"BGE Small EN v1.5","open_weights":false,"reasoning":false,"release_date":"2025-04-03","temperature":true,"tool_call":false},"workers-ai/@cf/deepgram/aura-2-en":{"attachment":false,"cost":{"input":0,"output":0},"family":"aura","id":"workers-ai/@cf/deepgram/aura-2-en","last_updated":"2025-11-14","limit":{"context":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Deepgram Aura 2 (EN)","open_weights":false,"reasoning":false,"release_date":"2025-11-14","temperature":true,"tool_call":false},"workers-ai/@cf/deepgram/aura-2-es":{"attachment":false,"cost":{"input":0,"output":0},"family":"aura","id":"workers-ai/@cf/deepgram/aura-2-es","last_updated":"2025-11-14","limit":{"context":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Deepgram Aura 2 (ES)","open_weights":false,"reasoning":false,"release_date":"2025-11-14","temperature":true,"tool_call":false},"workers-ai/@cf/deepgram/nova-3":{"attachment":false,"cost":{"input":0,"output":0},"family":"nova","id":"workers-ai/@cf/deepgram/nova-3","last_updated":"2025-11-14","limit":{"context":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Deepgram Nova 3","open_weights":false,"reasoning":false,"release_date":"2025-11-14","temperature":true,"tool_call":false},"workers-ai/@cf/deepseek-ai/deepseek-r1-distill-qwen-32b":{"attachment":false,"cost":{"input":0.5,"output":4.88},"family":"deepseek-thinking","id":"workers-ai/@cf/deepseek-ai/deepseek-r1-distill-qwen-32b","last_updated":"2025-04-03","limit":{"context":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek R1 Distill Qwen 32B","open_weights":false,"reasoning":false,"release_date":"2025-04-03","temperature":true,"tool_call":false},"workers-ai/@cf/facebook/bart-large-cnn":{"attachment":false,"cost":{"input":0,"output":0},"family":"bart","id":"workers-ai/@cf/facebook/bart-large-cnn","last_updated":"2025-04-09","limit":{"context":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"BART Large CNN","open_weights":false,"reasoning":false,"release_date":"2025-04-09","temperature":true,"tool_call":false},"workers-ai/@cf/google/gemma-3-12b-it":{"attachment":false,"cost":{"input":0.35,"output":0.56},"family":"gemma","id":"workers-ai/@cf/google/gemma-3-12b-it","last_updated":"2025-04-11","limit":{"context":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Gemma 3 12B IT","open_weights":false,"reasoning":false,"release_date":"2025-04-11","temperature":true,"tool_call":false},"workers-ai/@cf/huggingface/distilbert-sst-2-int8":{"attachment":false,"cost":{"input":0.026,"output":0},"family":"distilbert","id":"workers-ai/@cf/huggingface/distilbert-sst-2-int8","last_updated":"2025-04-03","limit":{"context":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"DistilBERT SST-2 INT8","open_weights":false,"reasoning":false,"release_date":"2025-04-03","temperature":true,"tool_call":false},"workers-ai/@cf/ibm-granite/granite-4.0-h-micro":{"attachment":false,"cost":{"input":0.017,"output":0.11},"family":"granite","id":"workers-ai/@cf/ibm-granite/granite-4.0-h-micro","last_updated":"2025-10-15","limit":{"context":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"IBM Granite 4.0 H Micro","open_weights":false,"reasoning":false,"release_date":"2025-10-15","temperature":true,"tool_call":false},"workers-ai/@cf/meta/llama-2-7b-chat-fp16":{"attachment":false,"cost":{"input":0.56,"output":6.67},"family":"llama","id":"workers-ai/@cf/meta/llama-2-7b-chat-fp16","last_updated":"2025-04-03","limit":{"context":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 2 7B Chat FP16","open_weights":false,"reasoning":false,"release_date":"2025-04-03","temperature":true,"tool_call":false},"workers-ai/@cf/meta/llama-3-8b-instruct":{"attachment":false,"cost":{"input":0.28,"output":0.83},"family":"llama","id":"workers-ai/@cf/meta/llama-3-8b-instruct","last_updated":"2025-04-03","limit":{"context":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3 8B Instruct","open_weights":false,"reasoning":false,"release_date":"2025-04-03","temperature":true,"tool_call":false},"workers-ai/@cf/meta/llama-3-8b-instruct-awq":{"attachment":false,"cost":{"input":0.12,"output":0.27},"family":"llama","id":"workers-ai/@cf/meta/llama-3-8b-instruct-awq","last_updated":"2025-04-03","limit":{"context":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3 8B Instruct AWQ","open_weights":false,"reasoning":false,"release_date":"2025-04-03","temperature":true,"tool_call":false},"workers-ai/@cf/meta/llama-3.1-8b-instruct":{"attachment":false,"cost":{"input":0.28,"output":0.8299999999999998},"family":"llama","id":"workers-ai/@cf/meta/llama-3.1-8b-instruct","last_updated":"2025-04-03","limit":{"context":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.1 8B Instruct","open_weights":false,"reasoning":false,"release_date":"2025-04-03","temperature":true,"tool_call":false},"workers-ai/@cf/meta/llama-3.1-8b-instruct-awq":{"attachment":false,"cost":{"input":0.12,"output":0.27},"family":"llama","id":"workers-ai/@cf/meta/llama-3.1-8b-instruct-awq","last_updated":"2025-04-03","limit":{"context":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.1 8B Instruct AWQ","open_weights":false,"reasoning":false,"release_date":"2025-04-03","temperature":true,"tool_call":false},"workers-ai/@cf/meta/llama-3.1-8b-instruct-fp8":{"attachment":false,"cost":{"input":0.15,"output":0.29},"family":"llama","id":"workers-ai/@cf/meta/llama-3.1-8b-instruct-fp8","last_updated":"2025-04-03","limit":{"context":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.1 8B Instruct FP8","open_weights":false,"reasoning":false,"release_date":"2025-04-03","temperature":true,"tool_call":false},"workers-ai/@cf/meta/llama-3.2-11b-vision-instruct":{"attachment":false,"cost":{"input":0.049,"output":0.68},"family":"llama","id":"workers-ai/@cf/meta/llama-3.2-11b-vision-instruct","last_updated":"2025-04-03","limit":{"context":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.2 11B Vision Instruct","open_weights":false,"reasoning":false,"release_date":"2025-04-03","temperature":true,"tool_call":false},"workers-ai/@cf/meta/llama-3.2-1b-instruct":{"attachment":false,"cost":{"input":0.027,"output":0.2},"family":"llama","id":"workers-ai/@cf/meta/llama-3.2-1b-instruct","last_updated":"2025-04-03","limit":{"context":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.2 1B Instruct","open_weights":false,"reasoning":false,"release_date":"2025-04-03","temperature":true,"tool_call":false},"workers-ai/@cf/meta/llama-3.2-3b-instruct":{"attachment":false,"cost":{"input":0.051,"output":0.34},"family":"llama","id":"workers-ai/@cf/meta/llama-3.2-3b-instruct","last_updated":"2025-04-03","limit":{"context":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.2 3B Instruct","open_weights":false,"reasoning":false,"release_date":"2025-04-03","temperature":true,"tool_call":false},"workers-ai/@cf/meta/llama-3.3-70b-instruct-fp8-fast":{"attachment":false,"cost":{"input":0.29,"output":2.25},"family":"llama","id":"workers-ai/@cf/meta/llama-3.3-70b-instruct-fp8-fast","last_updated":"2025-04-03","limit":{"context":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.3 70B Instruct FP8 Fast","open_weights":false,"reasoning":false,"release_date":"2025-04-03","temperature":true,"tool_call":false},"workers-ai/@cf/meta/llama-4-scout-17b-16e-instruct":{"attachment":false,"cost":{"input":0.27,"output":0.85},"family":"llama","id":"workers-ai/@cf/meta/llama-4-scout-17b-16e-instruct","last_updated":"2025-04-16","limit":{"context":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 4 Scout 17B 16E Instruct","open_weights":false,"reasoning":false,"release_date":"2025-04-16","temperature":true,"tool_call":false},"workers-ai/@cf/meta/llama-guard-3-8b":{"attachment":false,"cost":{"input":0.48,"output":0.03},"family":"llama","id":"workers-ai/@cf/meta/llama-guard-3-8b","last_updated":"2025-04-03","limit":{"context":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Llama Guard 3 8B","open_weights":false,"reasoning":false,"release_date":"2025-04-03","temperature":true,"tool_call":false},"workers-ai/@cf/meta/m2m100-1.2b":{"attachment":false,"cost":{"input":0.34,"output":0.34},"family":"m2m","id":"workers-ai/@cf/meta/m2m100-1.2b","last_updated":"2025-04-03","limit":{"context":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"M2M100 1.2B","open_weights":false,"reasoning":false,"release_date":"2025-04-03","temperature":true,"tool_call":false},"workers-ai/@cf/mistral/mistral-7b-instruct-v0.1":{"attachment":false,"cost":{"input":0.11,"output":0.19},"family":"mistral","id":"workers-ai/@cf/mistral/mistral-7b-instruct-v0.1","last_updated":"2025-04-03","limit":{"context":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Mistral 7B Instruct v0.1","open_weights":false,"reasoning":false,"release_date":"2025-04-03","temperature":true,"tool_call":false},"workers-ai/@cf/mistralai/mistral-small-3.1-24b-instruct":{"attachment":false,"cost":{"input":0.35,"output":0.56},"family":"mistral-small","id":"workers-ai/@cf/mistralai/mistral-small-3.1-24b-instruct","last_updated":"2025-04-11","limit":{"context":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Mistral Small 3.1 24B Instruct","open_weights":false,"reasoning":false,"release_date":"2025-04-11","temperature":true,"tool_call":false},"workers-ai/@cf/moonshotai/kimi-k2.5":{"attachment":true,"cost":{"cache_read":0.1,"input":0.6,"output":3},"family":"kimi","id":"workers-ai/@cf/moonshotai/kimi-k2.5","interleaved":{"field":"reasoning_content"},"knowledge":"2025-01","last_updated":"2026-01-27","limit":{"context":256000,"output":256000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Kimi K2.5","open_weights":true,"reasoning":true,"release_date":"2026-01-27","structured_output":true,"temperature":true,"tool_call":true},"workers-ai/@cf/moonshotai/kimi-k2.6":{"attachment":true,"cost":{"cache_read":0.16,"input":0.95,"output":4},"family":"kimi","id":"workers-ai/@cf/moonshotai/kimi-k2.6","interleaved":{"field":"reasoning_content"},"knowledge":"2025-01","last_updated":"2026-04-20","limit":{"context":256000,"output":256000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Kimi K2.6","open_weights":true,"reasoning":true,"release_date":"2026-04-20","structured_output":true,"temperature":true,"tool_call":true},"workers-ai/@cf/myshell-ai/melotts":{"attachment":false,"cost":{"input":0,"output":0},"family":"melotts","id":"workers-ai/@cf/myshell-ai/melotts","last_updated":"2025-11-14","limit":{"context":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"MyShell MeloTTS","open_weights":false,"reasoning":false,"release_date":"2025-11-14","temperature":true,"tool_call":false},"workers-ai/@cf/nvidia/nemotron-3-120b-a12b":{"attachment":false,"cost":{"input":0.5,"output":1.5},"family":"nemotron","id":"workers-ai/@cf/nvidia/nemotron-3-120b-a12b","interleaved":{"field":"reasoning_content"},"last_updated":"2026-03-11","limit":{"context":256000,"output":256000},"modalities":{"input":["text"],"output":["text"]},"name":"Nemotron 3 Super 120B","open_weights":true,"reasoning":true,"release_date":"2026-03-11","temperature":true,"tool_call":true},"workers-ai/@cf/openai/gpt-oss-120b":{"attachment":false,"cost":{"input":0.35,"output":0.75},"id":"workers-ai/@cf/openai/gpt-oss-120b","last_updated":"2025-08-05","limit":{"context":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"GPT OSS 120B","open_weights":false,"reasoning":false,"release_date":"2025-08-05","temperature":true,"tool_call":false},"workers-ai/@cf/openai/gpt-oss-20b":{"attachment":false,"cost":{"input":0.2,"output":0.3},"id":"workers-ai/@cf/openai/gpt-oss-20b","last_updated":"2025-08-05","limit":{"context":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"GPT OSS 20B","open_weights":false,"reasoning":false,"release_date":"2025-08-05","temperature":true,"tool_call":false},"workers-ai/@cf/pfnet/plamo-embedding-1b":{"attachment":false,"cost":{"input":0.019,"output":0},"family":"plamo","id":"workers-ai/@cf/pfnet/plamo-embedding-1b","last_updated":"2025-09-25","limit":{"context":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"PLaMo Embedding 1B","open_weights":false,"reasoning":false,"release_date":"2025-09-25","temperature":true,"tool_call":false},"workers-ai/@cf/pipecat-ai/smart-turn-v2":{"attachment":false,"cost":{"input":0,"output":0},"family":"smart-turn","id":"workers-ai/@cf/pipecat-ai/smart-turn-v2","last_updated":"2025-11-14","limit":{"context":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Pipecat Smart Turn v2","open_weights":false,"reasoning":false,"release_date":"2025-11-14","temperature":true,"tool_call":false},"workers-ai/@cf/qwen/qwen2.5-coder-32b-instruct":{"attachment":false,"cost":{"input":0.66,"output":1},"family":"qwen","id":"workers-ai/@cf/qwen/qwen2.5-coder-32b-instruct","last_updated":"2025-04-11","limit":{"context":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen 2.5 Coder 32B Instruct","open_weights":false,"reasoning":false,"release_date":"2025-04-11","temperature":true,"tool_call":false},"workers-ai/@cf/qwen/qwen3-30b-a3b-fp8":{"attachment":false,"cost":{"input":0.051,"output":0.34},"family":"qwen","id":"workers-ai/@cf/qwen/qwen3-30b-a3b-fp8","last_updated":"2025-11-14","limit":{"context":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 30B A3B FP8","open_weights":false,"reasoning":false,"release_date":"2025-11-14","temperature":true,"tool_call":false},"workers-ai/@cf/qwen/qwen3-embedding-0.6b":{"attachment":false,"cost":{"input":0.012,"output":0},"family":"qwen","id":"workers-ai/@cf/qwen/qwen3-embedding-0.6b","last_updated":"2025-11-14","limit":{"context":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Embedding 0.6B","open_weights":false,"reasoning":false,"release_date":"2025-11-14","temperature":true,"tool_call":false},"workers-ai/@cf/qwen/qwq-32b":{"attachment":false,"cost":{"input":0.66,"output":1},"family":"qwen","id":"workers-ai/@cf/qwen/qwq-32b","last_updated":"2025-04-11","limit":{"context":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"QwQ 32B","open_weights":false,"reasoning":false,"release_date":"2025-04-11","temperature":true,"tool_call":false},"workers-ai/@cf/zai-org/glm-4.7-flash":{"attachment":false,"cost":{"input":0.06,"output":0.4},"family":"glm-flash","id":"workers-ai/@cf/zai-org/glm-4.7-flash","knowledge":"2025-04","last_updated":"2026-01-19","limit":{"context":131072,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4.7-Flash","open_weights":true,"reasoning":true,"release_date":"2026-01-19","temperature":true,"tool_call":true}},"name":"Cloudflare AI Gateway","npm":"ai-gateway-provider"},"cloudflare-workers-ai":{"api":"https://api.cloudflare.com/client/v4/accounts/${CLOUDFLARE_ACCOUNT_ID}/ai/v1","doc":"https://developers.cloudflare.com/workers-ai/models/","env":["CLOUDFLARE_ACCOUNT_ID","CLOUDFLARE_API_KEY"],"id":"cloudflare-workers-ai","models":{"@cf/aisingapore/gemma-sea-lion-v4-27b-it":{"attachment":false,"cost":{"input":0.351,"output":0.555},"family":"gemma","id":"@cf/aisingapore/gemma-sea-lion-v4-27b-it","last_updated":"2025-09-23","limit":{"context":128000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"Gemma Sea Lion V4 27B It","open_weights":true,"reasoning":false,"release_date":"2025-09-23","structured_output":false,"temperature":true,"tool_call":false},"@cf/deepseek-ai/deepseek-r1-distill-qwen-32b":{"attachment":false,"cost":{"input":0.497,"output":4.881},"family":"deepseek","id":"@cf/deepseek-ai/deepseek-r1-distill-qwen-32b","last_updated":"2025-01-22","limit":{"context":80000,"output":80000},"modalities":{"input":["text"],"output":["text"]},"name":"Deepseek R1 Distill Qwen 32B","open_weights":true,"reasoning":true,"release_date":"2025-01-22","structured_output":false,"temperature":true,"tool_call":false},"@cf/google/gemma-4-26b-a4b-it":{"attachment":true,"cost":{"input":0.1,"output":0.3},"family":"gemma","id":"@cf/google/gemma-4-26b-a4b-it","last_updated":"2025-12-15","limit":{"context":256000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"Gemma 4 26B A4B IT","open_weights":true,"reasoning":true,"release_date":"2025-12-15","structured_output":true,"temperature":true,"tool_call":true},"@cf/ibm-granite/granite-4.0-h-micro":{"attachment":false,"cost":{"input":0.017,"output":0.112},"family":"granite","id":"@cf/ibm-granite/granite-4.0-h-micro","last_updated":"2025-10-07","limit":{"context":131000,"output":131000},"modalities":{"input":["text"],"output":["text"]},"name":"Granite 4.0 H Micro","open_weights":true,"reasoning":false,"release_date":"2025-10-07","structured_output":false,"temperature":true,"tool_call":true},"@cf/meta/llama-3.1-8b-instruct-fp8":{"attachment":false,"cost":{"input":0.152,"output":0.287},"family":"llama","id":"@cf/meta/llama-3.1-8b-instruct-fp8","last_updated":"2024-07-25","limit":{"context":32000,"output":32000},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.1 8B Instruct fp8","open_weights":true,"reasoning":false,"release_date":"2024-07-25","structured_output":false,"temperature":true,"tool_call":false},"@cf/meta/llama-3.2-11b-vision-instruct":{"attachment":true,"cost":{"input":0.0485,"output":0.676},"family":"llama","id":"@cf/meta/llama-3.2-11b-vision-instruct","last_updated":"2024-09-25","limit":{"context":128000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Llama 3.2 11B Vision Instruct","open_weights":true,"reasoning":false,"release_date":"2024-09-25","structured_output":false,"temperature":true,"tool_call":false},"@cf/meta/llama-3.2-1b-instruct":{"attachment":false,"cost":{"input":0.027,"output":0.201},"family":"llama","id":"@cf/meta/llama-3.2-1b-instruct","last_updated":"2024-09-25","limit":{"context":60000,"output":60000},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.2 1B Instruct","open_weights":true,"reasoning":false,"release_date":"2024-09-25","structured_output":false,"temperature":true,"tool_call":false},"@cf/meta/llama-3.2-3b-instruct":{"attachment":false,"cost":{"input":0.0509,"output":0.335},"family":"llama","id":"@cf/meta/llama-3.2-3b-instruct","last_updated":"2024-09-25","limit":{"context":80000,"output":80000},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.2 3B Instruct","open_weights":true,"reasoning":false,"release_date":"2024-09-25","structured_output":false,"temperature":true,"tool_call":false},"@cf/meta/llama-3.3-70b-instruct-fp8-fast":{"attachment":false,"cost":{"input":0.293,"output":2.253},"family":"llama","id":"@cf/meta/llama-3.3-70b-instruct-fp8-fast","last_updated":"2024-12-06","limit":{"context":24000,"output":24000},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.3 70B Instruct fp8 Fast","open_weights":true,"reasoning":false,"release_date":"2024-12-06","structured_output":false,"temperature":true,"tool_call":true},"@cf/meta/llama-4-scout-17b-16e-instruct":{"attachment":true,"cost":{"input":0.27,"output":0.85},"family":"llama","id":"@cf/meta/llama-4-scout-17b-16e-instruct","last_updated":"2025-04-16","limit":{"context":131000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"Llama 4 Scout 17B 16E Instruct","open_weights":true,"reasoning":false,"release_date":"2025-04-16","structured_output":false,"temperature":true,"tool_call":true},"@cf/meta/llama-guard-3-8b":{"attachment":false,"cost":{"input":0.484,"output":0.03},"family":"llama","id":"@cf/meta/llama-guard-3-8b","last_updated":"2025-01-22","limit":{"context":131072,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"Llama Guard 3 8B","open_weights":true,"reasoning":false,"release_date":"2025-01-22","structured_output":false,"temperature":true,"tool_call":false},"@cf/mistralai/mistral-small-3.1-24b-instruct":{"attachment":false,"cost":{"input":0.351,"output":0.555},"family":"mistral-small","id":"@cf/mistralai/mistral-small-3.1-24b-instruct","last_updated":"2025-03-18","limit":{"context":128000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"Mistral Small 3.1 24B Instruct","open_weights":true,"reasoning":false,"release_date":"2025-03-18","structured_output":false,"temperature":true,"tool_call":true},"@cf/moonshotai/kimi-k2.6":{"attachment":true,"cost":{"cache_read":0.16,"input":0.95,"output":4},"family":"kimi","id":"@cf/moonshotai/kimi-k2.6","interleaved":{"field":"reasoning_content"},"knowledge":"2025-01","last_updated":"2026-04-20","limit":{"context":262144,"output":256000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Kimi K2.6","open_weights":true,"reasoning":true,"release_date":"2026-04-20","structured_output":true,"temperature":true,"tool_call":true},"@cf/nvidia/nemotron-3-120b-a12b":{"attachment":false,"cost":{"input":0.5,"output":1.5},"family":"nemotron","id":"@cf/nvidia/nemotron-3-120b-a12b","interleaved":{"field":"reasoning_content"},"last_updated":"2026-03-11","limit":{"context":256000,"output":256000},"modalities":{"input":["text"],"output":["text"]},"name":"Nemotron 3 Super 120B","open_weights":true,"reasoning":true,"release_date":"2026-03-11","structured_output":true,"temperature":true,"tool_call":true},"@cf/openai/gpt-oss-120b":{"attachment":false,"cost":{"input":0.35,"output":0.75},"family":"gpt-oss","id":"@cf/openai/gpt-oss-120b","last_updated":"2025-08-05","limit":{"context":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"GPT OSS 120B","open_weights":true,"reasoning":true,"release_date":"2025-08-05","structured_output":true,"temperature":true,"tool_call":true},"@cf/openai/gpt-oss-20b":{"attachment":false,"cost":{"input":0.2,"output":0.3},"family":"gpt-oss","id":"@cf/openai/gpt-oss-20b","last_updated":"2025-08-05","limit":{"context":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"GPT OSS 20B","open_weights":true,"reasoning":true,"release_date":"2025-08-05","structured_output":true,"temperature":true,"tool_call":true},"@cf/qwen/qwen2.5-coder-32b-instruct":{"attachment":false,"cost":{"input":0.66,"output":1},"family":"qwen","id":"@cf/qwen/qwen2.5-coder-32b-instruct","last_updated":"2025-02-27","limit":{"context":32768,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen2.5 Coder 32B Instruct","open_weights":true,"reasoning":false,"release_date":"2025-02-27","structured_output":false,"temperature":true,"tool_call":false},"@cf/qwen/qwen3-30b-a3b-fp8":{"attachment":false,"cost":{"input":0.0509,"output":0.335},"family":"qwen","id":"@cf/qwen/qwen3-30b-a3b-fp8","last_updated":"2025-04-30","limit":{"context":32768,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 30B A3b fp8","open_weights":true,"reasoning":true,"release_date":"2025-04-30","structured_output":false,"temperature":true,"tool_call":true},"@cf/qwen/qwq-32b":{"attachment":false,"cost":{"input":0.66,"output":1},"family":"qwen","id":"@cf/qwen/qwq-32b","last_updated":"2025-03-05","limit":{"context":24000,"output":24000},"modalities":{"input":["text"],"output":["text"]},"name":"Qwq 32B","open_weights":true,"reasoning":true,"release_date":"2025-03-05","structured_output":false,"temperature":true,"tool_call":false},"@cf/zai-org/glm-4.7-flash":{"attachment":false,"cost":{"input":0.0605,"output":0.4},"family":"glm-flash","id":"@cf/zai-org/glm-4.7-flash","knowledge":"2025-04","last_updated":"2026-01-19","limit":{"context":131072,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4.7-Flash","open_weights":true,"reasoning":true,"release_date":"2026-01-19","structured_output":true,"temperature":true,"tool_call":true}},"name":"Cloudflare Workers AI","npm":"@ai-sdk/openai-compatible"},"cohere":{"doc":"https://docs.cohere.com/docs/models","env":["COHERE_API_KEY"],"id":"cohere","models":{"c4ai-aya-expanse-32b":{"attachment":false,"id":"c4ai-aya-expanse-32b","last_updated":"2024-10-24","limit":{"context":128000,"output":4000},"modalities":{"input":["text"],"output":["text"]},"name":"Aya Expanse 32B","open_weights":true,"reasoning":false,"release_date":"2024-10-24","temperature":true,"tool_call":false},"c4ai-aya-expanse-8b":{"attachment":false,"id":"c4ai-aya-expanse-8b","last_updated":"2024-10-24","limit":{"context":8000,"output":4000},"modalities":{"input":["text"],"output":["text"]},"name":"Aya Expanse 8B","open_weights":true,"reasoning":false,"release_date":"2024-10-24","temperature":true,"tool_call":false},"c4ai-aya-vision-32b":{"attachment":true,"id":"c4ai-aya-vision-32b","last_updated":"2025-05-14","limit":{"context":16000,"output":4000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Aya Vision 32B","open_weights":true,"reasoning":false,"release_date":"2025-03-04","temperature":true,"tool_call":false},"c4ai-aya-vision-8b":{"attachment":true,"id":"c4ai-aya-vision-8b","last_updated":"2025-05-14","limit":{"context":16000,"output":4000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Aya Vision 8B","open_weights":true,"reasoning":false,"release_date":"2025-03-04","temperature":true,"tool_call":false},"command-a-03-2025":{"attachment":false,"cost":{"input":2.5,"output":10},"family":"command-a","id":"command-a-03-2025","knowledge":"2024-06-01","last_updated":"2025-03-13","limit":{"context":256000,"output":8000},"modalities":{"input":["text"],"output":["text"]},"name":"Command A","open_weights":true,"reasoning":false,"release_date":"2025-03-13","temperature":true,"tool_call":true},"command-a-reasoning-08-2025":{"attachment":false,"cost":{"input":2.5,"output":10},"family":"command-a","id":"command-a-reasoning-08-2025","knowledge":"2024-06-01","last_updated":"2025-08-21","limit":{"context":256000,"output":32000},"modalities":{"input":["text"],"output":["text"]},"name":"Command A Reasoning","open_weights":true,"reasoning":true,"reasoning_options":[{"type":"toggle"},{"min":1,"type":"budget_tokens"}],"release_date":"2025-08-21","temperature":true,"tool_call":true},"command-a-translate-08-2025":{"attachment":false,"cost":{"input":2.5,"output":10},"family":"command-a","id":"command-a-translate-08-2025","knowledge":"2024-06-01","last_updated":"2025-08-28","limit":{"context":8000,"output":8000},"modalities":{"input":["text"],"output":["text"]},"name":"Command A Translate","open_weights":true,"reasoning":false,"release_date":"2025-08-28","temperature":true,"tool_call":true},"command-a-vision-07-2025":{"attachment":false,"cost":{"input":2.5,"output":10},"family":"command-a","id":"command-a-vision-07-2025","knowledge":"2024-06-01","last_updated":"2025-07-31","limit":{"context":128000,"output":8000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Command A Vision","open_weights":true,"reasoning":false,"release_date":"2025-07-31","temperature":true,"tool_call":false},"command-r-08-2024":{"attachment":false,"cost":{"input":0.15,"output":0.6},"family":"command-r","id":"command-r-08-2024","knowledge":"2024-06-01","last_updated":"2024-08-30","limit":{"context":128000,"output":4000},"modalities":{"input":["text"],"output":["text"]},"name":"Command R","open_weights":true,"reasoning":false,"release_date":"2024-08-30","temperature":true,"tool_call":true},"command-r-plus-08-2024":{"attachment":false,"cost":{"input":2.5,"output":10},"family":"command-r","id":"command-r-plus-08-2024","knowledge":"2024-06-01","last_updated":"2024-08-30","limit":{"context":128000,"output":4000},"modalities":{"input":["text"],"output":["text"]},"name":"Command R+","open_weights":true,"reasoning":false,"release_date":"2024-08-30","temperature":true,"tool_call":true},"command-r7b-12-2024":{"attachment":false,"cost":{"input":0.0375,"output":0.15},"family":"command-r","id":"command-r7b-12-2024","knowledge":"2024-06-01","last_updated":"2024-02-27","limit":{"context":128000,"output":4000},"modalities":{"input":["text"],"output":["text"]},"name":"Command R7B","open_weights":true,"reasoning":false,"release_date":"2024-02-27","temperature":true,"tool_call":true},"command-r7b-arabic-02-2025":{"attachment":false,"cost":{"input":0.0375,"output":0.15},"family":"command-r","id":"command-r7b-arabic-02-2025","knowledge":"2024-06-01","last_updated":"2025-02-27","limit":{"context":128000,"output":4000},"modalities":{"input":["text"],"output":["text"]},"name":"Command R7B Arabic","open_weights":true,"reasoning":false,"release_date":"2025-02-27","temperature":true,"tool_call":true}},"name":"Cohere","npm":"@ai-sdk/cohere"},"cortecs":{"api":"https://api.cortecs.ai/v1","doc":"https://api.cortecs.ai/v1/models","env":["CORTECS_API_KEY"],"id":"cortecs","models":{"claude-4-5-sonnet":{"attachment":true,"cost":{"input":3.259,"output":16.296},"family":"claude-sonnet","id":"claude-4-5-sonnet","knowledge":"2025-07-31","last_updated":"2025-09-29","limit":{"context":200000,"output":200000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude 4.5 Sonnet","open_weights":false,"reasoning":true,"release_date":"2025-09-29","temperature":true,"tool_call":true},"claude-4-6-sonnet":{"attachment":true,"cost":{"input":3.59,"output":17.92},"family":"claude-sonnet","id":"claude-4-6-sonnet","knowledge":"2025-08-31","last_updated":"2026-03-13","limit":{"context":1000000,"output":1000000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 4.6","open_weights":false,"reasoning":true,"release_date":"2026-02-17","temperature":true,"tool_call":true},"claude-haiku-4-5":{"attachment":true,"cost":{"input":1.09,"output":5.43},"family":"claude-haiku","id":"claude-haiku-4-5","knowledge":"2025-02-28","last_updated":"2025-10-15","limit":{"context":200000,"output":200000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Haiku 4.5","open_weights":false,"reasoning":true,"release_date":"2025-10-15","temperature":true,"tool_call":true},"claude-opus4-5":{"attachment":true,"cost":{"input":5.98,"output":29.89},"family":"claude-opus","id":"claude-opus4-5","knowledge":"2025-03-31","last_updated":"2025-11-24","limit":{"context":200000,"output":200000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.5","open_weights":false,"reasoning":true,"release_date":"2025-11-24","temperature":true,"tool_call":true},"claude-opus4-6":{"attachment":true,"cost":{"input":5.98,"output":29.89},"family":"claude-opus","id":"claude-opus4-6","knowledge":"2025-05-31","last_updated":"2026-03-13","limit":{"context":1000000,"output":1000000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.6","open_weights":false,"reasoning":true,"release_date":"2026-02-05","temperature":true,"tool_call":true},"claude-opus4-7":{"attachment":true,"cost":{"cache_read":0.56,"cache_write":6.99,"input":5.6,"output":27.99},"family":"claude-opus","id":"claude-opus4-7","knowledge":"2026-01-31","last_updated":"2026-04-16","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.7","open_weights":false,"reasoning":true,"release_date":"2026-04-16","temperature":false,"tool_call":true},"claude-sonnet-4":{"attachment":false,"cost":{"input":3.307,"output":16.536},"family":"claude-sonnet","id":"claude-sonnet-4","knowledge":"2025-03","last_updated":"2025-05-22","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 4","open_weights":false,"reasoning":false,"release_date":"2025-05-22","temperature":true,"tool_call":true},"codestral-2508":{"attachment":false,"cost":{"cache_read":0.03,"input":0.3,"output":0.9},"family":"mistral","id":"codestral-2508","knowledge":"2025-03","last_updated":"2025-07-30","limit":{"context":256000,"output":256000},"modalities":{"input":["text"],"output":["text"]},"name":"Codestral 2508","open_weights":true,"reasoning":false,"release_date":"2025-07-30","temperature":true,"tool_call":true},"deepseek-r1-0528":{"attachment":false,"cost":{"input":0.585,"output":2.307},"family":"deepseek-thinking","id":"deepseek-r1-0528","knowledge":"2024-07","last_updated":"2025-05-28","limit":{"context":164000,"output":164000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek R1 0528","open_weights":true,"reasoning":true,"release_date":"2025-05-28","temperature":true,"tool_call":true},"deepseek-v3-0324":{"attachment":false,"cost":{"input":0.551,"output":1.654},"family":"deepseek","id":"deepseek-v3-0324","knowledge":"2024-07","last_updated":"2025-03-24","limit":{"context":128000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V3 0324","open_weights":true,"reasoning":false,"release_date":"2025-03-24","temperature":true,"tool_call":true},"deepseek-v3.2":{"attachment":false,"cost":{"input":0.266,"output":0.444},"family":"deepseek","id":"deepseek-v3.2","knowledge":"2024-07","last_updated":"2025-12-01","limit":{"context":163840,"output":163840},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V3.2","open_weights":true,"reasoning":true,"release_date":"2025-12-01","temperature":true,"tool_call":true},"deepseek-v4-flash":{"attachment":false,"cost":{"cache_read":0.0028,"input":0.133,"output":0.266},"family":"deepseek-flash","id":"deepseek-v4-flash","interleaved":{"field":"reasoning_content"},"knowledge":"2025-05","last_updated":"2026-04-24","limit":{"context":1048576,"output":384000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V4 Flash","open_weights":true,"reasoning":true,"release_date":"2026-04-24","temperature":true,"tool_call":true},"deepseek-v4-pro":{"attachment":false,"cost":{"cache_read":0.003625,"input":1.553,"output":3.106},"family":"deepseek-thinking","id":"deepseek-v4-pro","interleaved":{"field":"reasoning_content"},"knowledge":"2025-05","last_updated":"2026-04-24","limit":{"context":1048576,"output":384000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V4 Pro","open_weights":true,"reasoning":true,"release_date":"2026-04-24","temperature":true,"tool_call":true},"devstral-2512":{"attachment":false,"cost":{"input":0,"output":0},"id":"devstral-2512","knowledge":"2025-12","last_updated":"2025-12-09","limit":{"context":262000,"output":262000},"modalities":{"input":["text"],"output":["text"]},"name":"Devstral 2 2512","open_weights":true,"reasoning":false,"release_date":"2025-12-09","temperature":true,"tool_call":true},"devstral-small-2512":{"attachment":false,"cost":{"input":0,"output":0},"id":"devstral-small-2512","knowledge":"2025-12","last_updated":"2025-12-09","limit":{"context":262000,"output":262000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Devstral Small 2 2512","open_weights":true,"reasoning":false,"release_date":"2025-12-09","temperature":true,"tool_call":true},"gemini-2.5-pro":{"attachment":false,"cost":{"input":1.654,"output":11.024},"family":"gemini-pro","id":"gemini-2.5-pro","knowledge":"2025-01","last_updated":"2025-06-17","limit":{"context":1048576,"output":65535},"modalities":{"input":["text","image"],"output":["text"]},"name":"Gemini 2.5 Pro","open_weights":false,"reasoning":false,"release_date":"2025-03-20","temperature":true,"tool_call":true},"glm-4.5":{"attachment":false,"cost":{"input":0.67,"output":2.46},"family":"glm","id":"glm-4.5","interleaved":{"field":"reasoning_content"},"knowledge":"2025-04","last_updated":"2025-07-29","limit":{"context":131072,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 4.5","open_weights":true,"reasoning":true,"release_date":"2025-07-29","temperature":true,"tool_call":true},"glm-4.5-air":{"attachment":false,"cost":{"input":0.22,"output":1.34},"family":"glm-air","id":"glm-4.5-air","knowledge":"2025-04","last_updated":"2025-08-01","limit":{"context":131072,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 4.5 Air","open_weights":true,"reasoning":true,"release_date":"2025-08-01","temperature":true,"tool_call":true},"glm-4.7":{"attachment":false,"cost":{"input":0.45,"output":2.23},"family":"glm","id":"glm-4.7","interleaved":{"field":"reasoning_content"},"knowledge":"2025-04","last_updated":"2025-12-22","limit":{"context":198000,"output":198000},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 4.7","open_weights":true,"reasoning":true,"release_date":"2025-12-22","temperature":true,"tool_call":true},"glm-4.7-flash":{"attachment":false,"cost":{"input":0.09,"output":0.53},"family":"glm","id":"glm-4.7-flash","interleaved":{"field":"reasoning_content"},"knowledge":"2025-04","last_updated":"2025-08-08","limit":{"context":203000,"output":203000},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4.7-Flash","open_weights":true,"reasoning":true,"release_date":"2025-08-08","temperature":true,"tool_call":true},"glm-5":{"attachment":false,"cost":{"input":1.08,"output":3.44},"family":"glm","id":"glm-5","interleaved":{"field":"reasoning_content"},"last_updated":"2026-02-11","limit":{"context":202752,"output":202752},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 5","open_weights":true,"reasoning":true,"release_date":"2026-02-11","temperature":true,"tool_call":true},"glm-5.1":{"attachment":false,"cost":{"cache_read":0.24,"input":1.31,"output":4.1},"family":"glm","id":"glm-5.1","interleaved":{"field":"reasoning_content"},"last_updated":"2026-04-14","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-5.1","open_weights":true,"reasoning":true,"release_date":"2026-04-14","structured_output":true,"temperature":true,"tool_call":true},"gpt-4.1":{"attachment":false,"cost":{"input":2.354,"output":9.417},"family":"gpt","id":"gpt-4.1","knowledge":"2024-06","last_updated":"2025-04-14","limit":{"context":1047576,"output":32768},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT 4.1","open_weights":false,"reasoning":false,"release_date":"2025-04-14","temperature":true,"tool_call":true},"gpt-oss-120b":{"attachment":false,"cost":{"input":0,"output":0},"family":"gpt-oss","id":"gpt-oss-120b","knowledge":"2024-01","last_updated":"2025-08-05","limit":{"context":128000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"GPT Oss 120b","open_weights":true,"reasoning":false,"release_date":"2025-08-05","temperature":true,"tool_call":true},"hermes-4-70b":{"attachment":false,"cost":{"input":0.116,"output":0.358},"id":"hermes-4-70b","knowledge":"2023-12","last_updated":"2025-08-26","limit":{"context":128000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"Hermes 4 70B","open_weights":true,"reasoning":true,"release_date":"2025-08-26","temperature":true,"tool_call":true},"intellect-3":{"attachment":true,"cost":{"input":0.219,"output":1.202},"id":"intellect-3","knowledge":"2025-11","last_updated":"2025-11-26","limit":{"context":128000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"INTELLECT 3","open_weights":true,"reasoning":true,"release_date":"2025-11-26","temperature":true,"tool_call":true},"kimi-k2-instruct":{"attachment":false,"cost":{"input":0.551,"output":2.646},"family":"kimi","id":"kimi-k2-instruct","knowledge":"2024-07","last_updated":"2025-09-05","limit":{"context":131000,"output":131000},"modalities":{"input":["text"],"output":["text"]},"name":"Kimi K2 Instruct","open_weights":true,"reasoning":false,"release_date":"2025-07-11","temperature":true,"tool_call":true},"kimi-k2-thinking":{"attachment":true,"cost":{"input":0.656,"output":2.731},"id":"kimi-k2-thinking","interleaved":{"field":"reasoning_content"},"knowledge":"2025-12","last_updated":"2025-12-08","limit":{"context":262000,"output":262000},"modalities":{"input":["text"],"output":["text"]},"name":"Kimi K2 Thinking","open_weights":true,"reasoning":true,"release_date":"2025-12-08","temperature":true,"tool_call":true},"kimi-k2.5":{"attachment":false,"cost":{"input":0.55,"output":2.76},"family":"kimi-thinking","id":"kimi-k2.5","interleaved":{"field":"reasoning_content"},"knowledge":"2025-01","last_updated":"2026-01-27","limit":{"context":256000,"output":256000},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Kimi K2.5","open_weights":true,"reasoning":true,"release_date":"2026-01-27","temperature":true,"tool_call":true},"kimi-k2.6":{"attachment":false,"cost":{"cache_read":0.2,"input":0.81,"output":3.54},"family":"kimi-thinking","id":"kimi-k2.6","interleaved":{"field":"reasoning_content"},"last_updated":"2026-04-17","limit":{"context":256000,"output":256000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Kimi K2.6","open_weights":true,"reasoning":true,"release_date":"2026-04-17","temperature":true,"tool_call":true},"llama-3.1-405b-instruct":{"attachment":false,"cost":{"input":0,"output":0},"family":"llama","id":"llama-3.1-405b-instruct","knowledge":"2023-12","last_updated":"2024-07-23","limit":{"context":128000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.1 405B Instruct","open_weights":true,"reasoning":false,"release_date":"2024-07-23","temperature":true,"tool_call":true},"llama-3.3-70b-instruct":{"attachment":false,"cost":{"input":0.089,"output":0.275},"family":"llama","id":"llama-3.3-70b-instruct","knowledge":"2023-12","last_updated":"2024-12-06","limit":{"context":131000,"output":131000},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.3 70B Instruct","open_weights":true,"reasoning":true,"release_date":"2024-12-06","temperature":true,"tool_call":true},"minimax-m2":{"attachment":false,"cost":{"input":0.39,"output":1.57},"family":"minimax","id":"minimax-m2","interleaved":{"field":"reasoning_content"},"knowledge":"2024-11","last_updated":"2025-10-27","limit":{"context":400000,"output":400000},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2","open_weights":true,"reasoning":true,"release_date":"2025-10-27","temperature":true,"tool_call":true},"minimax-m2.1":{"attachment":false,"cost":{"input":0.34,"output":1.34},"family":"minimax","id":"minimax-m2.1","interleaved":{"field":"reasoning_content"},"last_updated":"2025-12-23","limit":{"context":196000,"output":196000},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2.1","open_weights":true,"reasoning":true,"release_date":"2025-12-23","temperature":true,"tool_call":true},"minimax-m2.5":{"attachment":false,"cost":{"input":0.32,"output":1.18},"family":"minimax","id":"minimax-m2.5","interleaved":{"field":"reasoning_content"},"last_updated":"2026-02-12","limit":{"context":196608,"output":196608},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2.5","open_weights":true,"reasoning":true,"release_date":"2026-02-12","temperature":true,"tool_call":true},"minimax-m2.7":{"attachment":false,"cost":{"input":0.47,"output":1.4},"family":"minimax","id":"minimax-m2.7","last_updated":"2026-03-18","limit":{"context":202752,"output":196072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-m2.7","open_weights":true,"reasoning":true,"release_date":"2026-03-18","structured_output":true,"temperature":true,"tool_call":true},"mistral-large-2512":{"attachment":true,"cost":{"cache_read":0.05,"input":0.5,"output":1.5},"family":"mistral-large","id":"mistral-large-2512","knowledge":"2025-12","last_updated":"2025-12-01","limit":{"context":256000,"output":256000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Mistral Large 3 2512","open_weights":true,"reasoning":false,"release_date":"2025-12-01","temperature":true,"tool_call":true},"mixtral-8x7B-instruct-v0.1":{"attachment":false,"cost":{"input":0.438,"output":0.68},"id":"mixtral-8x7B-instruct-v0.1","knowledge":"2023-09","last_updated":"2023-12-11","limit":{"context":32000,"output":32000},"modalities":{"input":["text"],"output":["text"]},"name":"Mixtral 8x7B Instruct v0.1","open_weights":true,"reasoning":true,"release_date":"2023-12-11","temperature":true,"tool_call":false},"nemotron-3-super-120b-a12b":{"attachment":false,"cost":{"input":0.266,"output":0.799},"id":"nemotron-3-super-120b-a12b","knowledge":"2025-12","last_updated":"2026-03-11","limit":{"context":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Nemotron 3 Super 120B A12B","open_weights":true,"reasoning":true,"release_date":"2026-03-11","temperature":true,"tool_call":true},"nova-pro-v1":{"attachment":false,"cost":{"input":1.016,"output":4.061},"family":"nova-pro","id":"nova-pro-v1","knowledge":"2024-04","last_updated":"2024-12-03","limit":{"context":300000,"output":5000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Nova Pro 1.0","open_weights":false,"reasoning":false,"release_date":"2024-12-03","temperature":true,"tool_call":true},"qwen-2.5-72b-instruct":{"attachment":false,"cost":{"input":0.062,"output":0.231},"family":"qwen","id":"qwen-2.5-72b-instruct","knowledge":"2024-06","last_updated":"2024-09-19","limit":{"context":33000,"output":33000},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen2.5 72B Instruct","open_weights":true,"reasoning":false,"release_date":"2024-09-19","temperature":true,"tool_call":true},"qwen3-235b-a22b-instruct-2507":{"attachment":false,"cost":{"input":0.062,"output":0.408},"family":"qwen","id":"qwen3-235b-a22b-instruct-2507","knowledge":"2025-04","last_updated":"2025-07-23","limit":{"context":131000,"output":131000},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 235B A22B Instruct 2507","open_weights":true,"reasoning":true,"release_date":"2025-07-23","temperature":true,"tool_call":true},"qwen3-32b":{"attachment":false,"cost":{"input":0.099,"output":0.33},"family":"qwen","id":"qwen3-32b","knowledge":"2024-12","last_updated":"2025-04-29","limit":{"context":16384,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 32B","open_weights":true,"reasoning":false,"release_date":"2025-04-29","temperature":true,"tool_call":true},"qwen3-coder-30b-a3b-instruct":{"attachment":false,"cost":{"input":0.053,"output":0.222},"family":"qwen","id":"qwen3-coder-30b-a3b-instruct","knowledge":"2025-04","last_updated":"2025-07-31","limit":{"context":262000,"output":262000},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Coder 30B A3B Instruct","open_weights":true,"reasoning":true,"release_date":"2025-07-31","temperature":true,"tool_call":true},"qwen3-coder-480b-a35b-instruct":{"attachment":false,"cost":{"input":0.441,"output":1.984},"family":"qwen","id":"qwen3-coder-480b-a35b-instruct","knowledge":"2025-01","last_updated":"2025-07-25","limit":{"context":262000,"output":262000},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Coder 480B A35B Instruct","open_weights":true,"reasoning":false,"release_date":"2025-07-25","temperature":true,"tool_call":true},"qwen3-coder-next":{"attachment":false,"cost":{"input":0.158,"output":0.84},"family":"qwen","id":"qwen3-coder-next","knowledge":"2025-04","last_updated":"2026-02-04","limit":{"context":256000,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Coder Next 80B","open_weights":true,"reasoning":true,"release_date":"2026-02-04","temperature":true,"tool_call":true},"qwen3-next-80b-a3b-thinking":{"attachment":false,"cost":{"input":0.164,"output":1.311},"id":"qwen3-next-80b-a3b-thinking","knowledge":"2025-04","last_updated":"2025-09-11","limit":{"context":128000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Next 80B A3B Thinking","open_weights":true,"reasoning":true,"release_date":"2025-09-11","temperature":true,"tool_call":true},"qwen3.5-122b-a10b":{"attachment":false,"cost":{"input":0.444,"output":3.106},"family":"qwen","id":"qwen3.5-122b-a10b","knowledge":"2026-01","last_updated":"2026-02-24","limit":{"context":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3.5 122B A10B","open_weights":true,"reasoning":true,"release_date":"2026-02-24","temperature":true,"tool_call":true},"qwen3.5-397b-a17b":{"attachment":false,"cost":{"input":0.6,"output":3.6},"family":"qwen","id":"qwen3.5-397b-a17b","knowledge":"2026-01","last_updated":"2026-02-16","limit":{"context":250000,"output":250000},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3.5 397B A17B","open_weights":true,"reasoning":true,"release_date":"2026-02-16","temperature":true,"tool_call":true}},"name":"Cortecs","npm":"@ai-sdk/openai-compatible"},"crof":{"api":"https://crof.ai/v1","doc":"https://crof.ai/docs","env":["CROF_API_KEY"],"id":"crof","models":{"deepseek-v3.2":{"attachment":false,"cost":{"cache_read":0.04,"input":0.18,"output":0.35},"family":"deepseek","id":"deepseek-v3.2","last_updated":"2025-07-22","limit":{"context":163840,"output":163840},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V3.2","open_weights":false,"reasoning":false,"release_date":"2025-07-22","temperature":true,"tool_call":true},"deepseek-v4-flash":{"attachment":false,"cost":{"cache_read":0.003,"input":0.12,"output":0.21},"family":"deepseek-flash","id":"deepseek-v4-flash","interleaved":{"field":"reasoning_content"},"knowledge":"2025-05","last_updated":"2026-04-24","limit":{"context":1000000,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V4 Flash","open_weights":true,"provider":{"npm":"@ai-sdk/openai-compatible"},"reasoning":true,"release_date":"2026-04-24","structured_output":true,"temperature":true,"tool_call":true},"deepseek-v4-pro":{"attachment":false,"cost":{"cache_read":0.003,"input":0.35,"output":0.8},"family":"deepseek-thinking","id":"deepseek-v4-pro","interleaved":{"field":"reasoning_content"},"knowledge":"2025-05","last_updated":"2026-04-24","limit":{"context":1000000,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V4 Pro","open_weights":true,"provider":{"npm":"@ai-sdk/openai-compatible"},"reasoning":true,"release_date":"2026-04-24","structured_output":true,"temperature":true,"tool_call":true},"deepseek-v4-pro-lightning":{"attachment":false,"cost":{"cache_read":0.02,"input":0.8,"output":1.6},"family":"deepseek-thinking","id":"deepseek-v4-pro-lightning","interleaved":{"field":"reasoning_content"},"knowledge":"2025-05","last_updated":"2026-04-24","limit":{"context":1000000,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V4 Pro","open_weights":true,"provider":{"npm":"@ai-sdk/openai-compatible"},"reasoning":true,"release_date":"2026-04-24","structured_output":true,"temperature":true,"tool_call":true},"gemma-4-31b-it":{"attachment":true,"cost":{"cache_read":0.02,"input":0.1,"output":0.3},"family":"gemma","id":"gemma-4-31b-it","last_updated":"2026-04-02","limit":{"context":262144,"output":262144},"modalities":{"input":["text","image"],"output":["text"]},"name":"Gemma 4 31B IT","open_weights":true,"provider":{"npm":"@ai-sdk/openai-compatible"},"reasoning":true,"release_date":"2026-04-02","structured_output":true,"temperature":true,"tool_call":true},"glm-4.7":{"attachment":false,"cost":{"cache_read":0.05,"cache_write":0,"input":0.25,"output":1.1},"family":"glm","id":"glm-4.7","interleaved":{"field":"reasoning_content"},"knowledge":"2025-04","last_updated":"2025-12-22","limit":{"context":202752,"output":202752},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4.7","open_weights":true,"provider":{"npm":"@ai-sdk/openai-compatible"},"reasoning":true,"release_date":"2025-12-22","temperature":true,"tool_call":true},"glm-4.7-flash":{"attachment":false,"cost":{"cache_read":0.008,"cache_write":0,"input":0.04,"output":0.3},"family":"glm-flash","id":"glm-4.7-flash","knowledge":"2025-04","last_updated":"2026-01-19","limit":{"context":202752,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4.7-Flash","open_weights":true,"provider":{"npm":"@ai-sdk/openai-compatible"},"reasoning":true,"release_date":"2026-01-19","temperature":true,"tool_call":true},"glm-5":{"attachment":false,"cost":{"cache_read":0.1,"cache_write":0,"input":0.48,"output":1.9},"family":"glm","id":"glm-5","interleaved":{"field":"reasoning_content"},"last_updated":"2026-02-11","limit":{"context":202752,"output":202752},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-5","open_weights":true,"provider":{"npm":"@ai-sdk/openai-compatible"},"reasoning":true,"release_date":"2026-02-11","temperature":true,"tool_call":true},"glm-5.1":{"attachment":false,"cost":{"cache_read":0.08,"cache_write":0,"input":0.45,"output":2.15},"family":"glm","id":"glm-5.1","interleaved":{"field":"reasoning_content"},"last_updated":"2026-03-27","limit":{"context":202752,"output":202752},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-5.1","open_weights":false,"provider":{"npm":"@ai-sdk/openai-compatible"},"reasoning":true,"release_date":"2026-03-27","structured_output":true,"temperature":true,"tool_call":true},"greg-1":{"attachment":false,"cost":{"cache_read":0.02,"input":0.1,"output":0.3},"id":"greg-1","last_updated":"2026-01-27","limit":{"context":229376,"output":229376},"modalities":{"input":["text"],"output":["text"]},"name":"Greg 1 Normal","open_weights":false,"reasoning":false,"release_date":"2026-01-27","temperature":true,"tool_call":false},"greg-1-mini":{"attachment":false,"cost":{"cache_read":0.01,"input":0.07,"output":0.15},"id":"greg-1-mini","last_updated":"2026-01-27","limit":{"context":229376,"output":229376},"modalities":{"input":["text"],"output":["text"]},"name":"Greg 1 Mini","open_weights":false,"reasoning":false,"release_date":"2026-01-27","temperature":true,"tool_call":false},"greg-1-super":{"attachment":false,"cost":{"cache_read":0.2,"input":1,"output":5},"id":"greg-1-super","last_updated":"2026-01-27","limit":{"context":229376,"output":229376},"modalities":{"input":["text"],"output":["text"]},"name":"Greg 1 Super","open_weights":false,"reasoning":false,"release_date":"2026-01-27","temperature":true,"tool_call":false},"greg-rp":{"attachment":false,"cost":{"cache_read":0.02,"input":0.1,"output":0.3},"id":"greg-rp","last_updated":"2026-01-27","limit":{"context":229376,"output":229376},"modalities":{"input":["text"],"output":["text"]},"name":"Greg (Roleplay)","open_weights":false,"reasoning":false,"release_date":"2026-01-27","temperature":true,"tool_call":false},"kimi-k2.5":{"attachment":false,"cost":{"cache_read":0.07,"input":0.35,"output":1.7},"family":"kimi-k2.5","id":"kimi-k2.5","interleaved":{"field":"reasoning_content"},"knowledge":"2025-01","last_updated":"2026-01","limit":{"context":262144,"output":262144},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Kimi K2.5","open_weights":true,"provider":{"npm":"@ai-sdk/openai-compatible"},"reasoning":true,"release_date":"2026-01","structured_output":true,"temperature":false,"tool_call":true},"kimi-k2.5-lightning":{"attachment":false,"cost":{"cache_read":0.2,"input":1,"output":3},"family":"kimi-k2.5","id":"kimi-k2.5-lightning","interleaved":{"field":"reasoning_content"},"last_updated":"2026-02-06","limit":{"context":131072,"output":32768},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Kimi K2.5 (Lightning)","open_weights":true,"reasoning":true,"release_date":"2026-02-06","structured_output":true,"temperature":false,"tool_call":true},"kimi-k2.6":{"attachment":true,"cost":{"cache_read":0.05,"input":0.5,"output":1.99},"family":"kimi-k2.6","id":"kimi-k2.6","interleaved":{"field":"reasoning_content"},"knowledge":"2025-01","last_updated":"2026-04-21","limit":{"context":262144,"output":262144},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Kimi K2.6","open_weights":true,"provider":{"npm":"@ai-sdk/openai-compatible"},"reasoning":true,"release_date":"2026-04-21","structured_output":true,"temperature":true,"tool_call":true},"mimo-v2.5-pro":{"attachment":false,"cost":{"cache_read":0.003,"context_over_200k":{"cache_read":0.4,"input":2,"output":6},"input":0.4,"output":0.8,"tiers":[{"cache_read":0.4,"input":2,"output":6,"tier":{"size":256000,"type":"context"}}]},"family":"mimo","id":"mimo-v2.5-pro","interleaved":{"field":"reasoning_content"},"knowledge":"2024-12","last_updated":"2026-04-22","limit":{"context":1048576,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiMo-V2.5-Pro","open_weights":true,"provider":{"npm":"@ai-sdk/openai-compatible"},"reasoning":true,"release_date":"2026-04-22","temperature":true,"tool_call":true},"minimax-m2.5":{"attachment":false,"cost":{"cache_read":0.02,"cache_write":0.375,"input":0.11,"output":0.95},"family":"minimax","id":"minimax-m2.5","last_updated":"2026-02-12","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2.5","open_weights":true,"provider":{"npm":"@ai-sdk/openai-compatible"},"reasoning":false,"release_date":"2026-02-12","temperature":true,"tool_call":true},"qwen3.5-397b-a17b":{"attachment":true,"cost":{"cache_read":0.07,"input":0.35,"output":1.75},"family":"qwen","id":"qwen3.5-397b-a17b","last_updated":"2026-02-15","limit":{"context":262144,"output":262144},"modalities":{"input":["text","image","video","audio"],"output":["text"]},"name":"Qwen3.5 397B-A17B","open_weights":true,"provider":{"npm":"@ai-sdk/openai-compatible"},"reasoning":true,"release_date":"2026-02-15","structured_output":true,"temperature":true,"tool_call":true},"qwen3.5-9b":{"attachment":true,"cost":{"cache_read":0.008,"input":0.04,"output":0.15},"family":"qwen","id":"qwen3.5-9b","interleaved":{"field":"reasoning_content"},"last_updated":"2026-03-13","limit":{"context":262144,"output":262144},"modalities":{"input":["text","image","video","audio"],"output":["text"]},"name":"Qwen3.5 9B","open_weights":true,"reasoning":true,"release_date":"2026-03-13","structured_output":true,"temperature":true,"tool_call":true},"qwen3.6-27b":{"attachment":true,"cost":{"cache_read":0.04,"input":0.2,"output":1.5},"family":"qwen","id":"qwen3.6-27b","last_updated":"2026-04-22","limit":{"context":262144,"output":262144},"modalities":{"input":["text","image","video","audio"],"output":["text"]},"name":"Qwen3.6 27B","open_weights":true,"provider":{"npm":"@ai-sdk/openai-compatible"},"reasoning":true,"release_date":"2026-04-22","structured_output":true,"temperature":true,"tool_call":true}},"name":"CrofAI","npm":"@ai-sdk/openai-compatible"},"databricks":{"api":"https://${DATABRICKS_HOST}/ai-gateway/mlflow/v1","doc":"https://docs.databricks.com/aws/en/machine-learning/foundation-models/","env":["DATABRICKS_HOST","DATABRICKS_TOKEN"],"id":"databricks","models":{"databricks-claude-haiku-4-5":{"attachment":true,"cost":{"cache_read":0.1,"cache_write":1.25,"input":1,"output":5},"family":"claude-haiku","id":"databricks-claude-haiku-4-5","knowledge":"2025-02-28","last_updated":"2025-10-15","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Haiku 4.5 (latest)","open_weights":false,"reasoning":true,"release_date":"2025-10-15","temperature":true,"tool_call":true},"databricks-claude-opus-4-1":{"attachment":true,"cost":{"cache_read":1.5,"cache_write":18.75,"input":15,"output":75},"family":"claude-opus","id":"databricks-claude-opus-4-1","knowledge":"2025-03-31","last_updated":"2025-08-05","limit":{"context":200000,"output":32000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.1 (latest)","open_weights":false,"reasoning":true,"release_date":"2025-08-05","temperature":true,"tool_call":true},"databricks-claude-opus-4-5":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"input":5,"output":25},"family":"claude-opus","id":"databricks-claude-opus-4-5","knowledge":"2025-03-31","last_updated":"2025-11-24","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.5 (latest)","open_weights":false,"reasoning":true,"release_date":"2025-11-24","temperature":true,"tool_call":true},"databricks-claude-opus-4-6":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"input":5,"output":25},"experimental":{"modes":{"fast":{"cost":{"cache_read":3,"cache_write":37.5,"input":30,"output":150},"provider":{"body":{"speed":"fast"},"headers":{"anthropic-beta":"fast-mode-2026-02-01"}}}}},"family":"claude-opus","id":"databricks-claude-opus-4-6","knowledge":"2025-05-31","last_updated":"2026-03-13","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.6","open_weights":false,"reasoning":true,"release_date":"2026-02-05","temperature":true,"tool_call":true},"databricks-claude-opus-4-7":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"input":5,"output":25},"experimental":{"modes":{"fast":{"cost":{"cache_read":3,"cache_write":37.5,"input":30,"output":150},"provider":{"body":{"speed":"fast"},"headers":{"anthropic-beta":"fast-mode-2026-02-01"}}}}},"family":"claude-opus","id":"databricks-claude-opus-4-7","knowledge":"2026-01-31","last_updated":"2026-04-16","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.7","open_weights":false,"reasoning":true,"release_date":"2026-04-16","temperature":false,"tool_call":true},"databricks-claude-sonnet-4":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"input":3,"output":15},"family":"claude-sonnet","id":"databricks-claude-sonnet-4","knowledge":"2025-07-31","last_updated":"2025-09-29","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 4.5","open_weights":false,"reasoning":true,"release_date":"2025-09-29","temperature":true,"tool_call":true},"databricks-claude-sonnet-4-5":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"input":3,"output":15},"family":"claude-sonnet","id":"databricks-claude-sonnet-4-5","knowledge":"2025-07-31","last_updated":"2025-09-29","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 4.5 (latest)","open_weights":false,"reasoning":true,"release_date":"2025-09-29","temperature":true,"tool_call":true},"databricks-claude-sonnet-4-6":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"input":3,"output":15},"family":"claude-sonnet","id":"databricks-claude-sonnet-4-6","knowledge":"2025-08-31","last_updated":"2026-03-13","limit":{"context":1000000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 4.6","open_weights":false,"reasoning":true,"release_date":"2026-02-17","temperature":true,"tool_call":true},"databricks-gemini-2-5-flash":{"attachment":true,"cost":{"cache_read":0.03,"input":0.3,"input_audio":1,"output":2.5},"family":"gemini-flash","id":"databricks-gemini-2-5-flash","knowledge":"2025-01","last_updated":"2025-06-05","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"Gemini 2.5 Flash","open_weights":false,"reasoning":true,"release_date":"2025-03-20","structured_output":true,"temperature":true,"tool_call":true},"databricks-gemini-2-5-pro":{"attachment":true,"cost":{"cache_read":0.125,"context_over_200k":{"cache_read":0.25,"input":2.5,"output":15},"input":1.25,"output":10,"tiers":[{"cache_read":0.25,"input":2.5,"output":15,"tier":{"size":200000,"type":"context"}}]},"family":"gemini-pro","id":"databricks-gemini-2-5-pro","knowledge":"2025-01","last_updated":"2025-06-05","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"Gemini 2.5 Pro","open_weights":false,"reasoning":true,"release_date":"2025-03-20","structured_output":true,"temperature":true,"tool_call":true},"databricks-gemini-3-1-flash-lite":{"attachment":true,"cost":{"cache_read":0.025,"input":0.25,"input_audio":0.5,"output":1.5},"family":"gemini-flash-lite","id":"databricks-gemini-3-1-flash-lite","knowledge":"2025-01","last_updated":"2026-03-03","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"name":"Gemini 3.1 Flash Lite Preview","open_weights":false,"reasoning":true,"release_date":"2026-03-03","structured_output":true,"temperature":true,"tool_call":true},"databricks-gemini-3-1-pro":{"attachment":true,"cost":{"cache_read":0.2,"context_over_200k":{"cache_read":0.4,"input":4,"output":18},"input":2,"output":12,"tiers":[{"cache_read":0.4,"input":4,"output":18,"tier":{"size":200000,"type":"context"}}]},"family":"gemini-pro","id":"databricks-gemini-3-1-pro","knowledge":"2025-01","last_updated":"2026-02-19","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"name":"Gemini 3.1 Pro Preview Custom Tools","open_weights":false,"reasoning":true,"release_date":"2026-02-19","structured_output":true,"temperature":true,"tool_call":true},"databricks-gemini-3-flash":{"attachment":true,"cost":{"cache_read":0.05,"input":0.5,"input_audio":1,"output":3},"family":"gemini-flash","id":"databricks-gemini-3-flash","knowledge":"2025-01","last_updated":"2025-12-17","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"name":"Gemini 3 Flash Preview","open_weights":false,"reasoning":true,"release_date":"2025-12-17","structured_output":true,"temperature":true,"tool_call":true},"databricks-gemini-3-pro":{"attachment":true,"cost":{"cache_read":0.2,"context_over_200k":{"cache_read":0.4,"input":4,"output":18},"input":2,"output":12,"tiers":[{"cache_read":0.4,"input":4,"output":18,"tier":{"size":200000,"type":"context"}}]},"family":"gemini-pro","id":"databricks-gemini-3-pro","knowledge":"2025-01","last_updated":"2025-11-18","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"name":"Gemini 3 Pro Preview","open_weights":false,"reasoning":true,"release_date":"2025-11-18","structured_output":true,"temperature":true,"tool_call":true},"databricks-gpt-5":{"attachment":true,"cost":{"cache_read":0.125,"input":1.25,"output":10},"family":"gpt","id":"databricks-gpt-5","knowledge":"2024-09-30","last_updated":"2025-08-07","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5","open_weights":false,"reasoning":true,"release_date":"2025-08-07","structured_output":true,"temperature":false,"tool_call":true},"databricks-gpt-5-1":{"attachment":true,"cost":{"cache_read":0.125,"input":1.25,"output":10},"family":"gpt","id":"databricks-gpt-5-1","knowledge":"2024-09-30","last_updated":"2025-11-13","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.1","open_weights":false,"reasoning":true,"release_date":"2025-11-13","structured_output":true,"temperature":false,"tool_call":true},"databricks-gpt-5-2":{"attachment":true,"cost":{"cache_read":0.175,"input":1.75,"output":14},"family":"gpt","id":"databricks-gpt-5-2","knowledge":"2025-08-31","last_updated":"2025-12-11","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.2","open_weights":false,"reasoning":true,"release_date":"2025-12-11","structured_output":true,"temperature":false,"tool_call":true},"databricks-gpt-5-4":{"attachment":true,"cost":{"cache_read":0.25,"context_over_200k":{"cache_read":0.5,"input":5,"output":22.5},"input":2.5,"output":15,"tiers":[{"cache_read":0.5,"input":5,"output":22.5,"tier":{"size":272000,"type":"context"}}]},"experimental":{"modes":{"fast":{"cost":{"cache_read":0.5,"input":5,"output":30},"provider":{"body":{"service_tier":"priority"}}}}},"family":"gpt","id":"databricks-gpt-5-4","knowledge":"2025-08-31","last_updated":"2026-03-05","limit":{"context":1050000,"input":922000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5.4","open_weights":false,"reasoning":true,"release_date":"2026-03-05","structured_output":true,"temperature":false,"tool_call":true},"databricks-gpt-5-4-mini":{"attachment":true,"cost":{"cache_read":0.075,"input":0.75,"output":4.5},"experimental":{"modes":{"fast":{"cost":{"cache_read":0.15,"input":1.5,"output":9},"provider":{"body":{"service_tier":"priority"}}}}},"family":"gpt-mini","id":"databricks-gpt-5-4-mini","knowledge":"2025-08-31","last_updated":"2026-03-17","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.4 mini","open_weights":false,"reasoning":true,"release_date":"2026-03-17","structured_output":true,"temperature":false,"tool_call":true},"databricks-gpt-5-4-nano":{"attachment":true,"cost":{"cache_read":0.02,"input":0.2,"output":1.25},"family":"gpt-nano","id":"databricks-gpt-5-4-nano","knowledge":"2025-08-31","last_updated":"2026-03-17","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.4 nano","open_weights":false,"reasoning":true,"release_date":"2026-03-17","structured_output":true,"temperature":false,"tool_call":true},"databricks-gpt-5-5":{"attachment":true,"cost":{"cache_read":0.5,"context_over_200k":{"cache_read":1,"input":10,"output":45},"input":5,"output":30,"tiers":[{"cache_read":1,"input":10,"output":45,"tier":{"size":272000,"type":"context"}}]},"experimental":{"modes":{"fast":{"cost":{"cache_read":1.25,"input":12.5,"output":75},"provider":{"body":{"service_tier":"priority"}}}}},"family":"gpt","id":"databricks-gpt-5-5","knowledge":"2025-12-01","last_updated":"2026-04-23","limit":{"context":1050000,"input":922000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5.5","open_weights":false,"reasoning":true,"release_date":"2026-04-23","structured_output":true,"temperature":false,"tool_call":true},"databricks-gpt-5-mini":{"attachment":true,"cost":{"cache_read":0.025,"input":0.25,"output":2},"family":"gpt-mini","id":"databricks-gpt-5-mini","knowledge":"2024-05-30","last_updated":"2025-08-07","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5 Mini","open_weights":false,"reasoning":true,"release_date":"2025-08-07","structured_output":true,"temperature":false,"tool_call":true},"databricks-gpt-5-nano":{"attachment":true,"cost":{"cache_read":0.005,"input":0.05,"output":0.4},"family":"gpt-nano","id":"databricks-gpt-5-nano","knowledge":"2024-05-30","last_updated":"2025-08-07","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5 Nano","open_weights":false,"reasoning":true,"release_date":"2025-08-07","structured_output":true,"temperature":false,"tool_call":true},"databricks-gpt-oss-120b":{"attachment":false,"cost":{"input":0.072,"output":0.28},"family":"gpt-oss","id":"databricks-gpt-oss-120b","last_updated":"2025-08-05","limit":{"context":131072,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"GPT OSS 120B","open_weights":true,"reasoning":true,"release_date":"2025-08-05","structured_output":true,"temperature":true,"tool_call":true},"databricks-gpt-oss-20b":{"attachment":false,"cost":{"input":0.05,"output":0.2},"family":"gpt-oss","id":"databricks-gpt-oss-20b","last_updated":"2025-08-05","limit":{"context":131072,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"GPT OSS 20B","open_weights":true,"reasoning":true,"release_date":"2025-08-05","structured_output":true,"temperature":true,"tool_call":true}},"name":"Databricks","npm":"@ai-sdk/openai-compatible"},"deepinfra":{"doc":"https://deepinfra.com/models","env":["DEEPINFRA_API_KEY"],"id":"deepinfra","models":{"MiniMaxAI/MiniMax-M2":{"attachment":false,"cost":{"input":0.254,"output":1.02},"family":"minimax","id":"MiniMaxAI/MiniMax-M2","interleaved":{"field":"reasoning_content"},"knowledge":"2024-10","last_updated":"2025-11-13","limit":{"context":262144,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax M2","open_weights":true,"reasoning":true,"release_date":"2025-11-13","temperature":true,"tool_call":true},"MiniMaxAI/MiniMax-M2.1":{"attachment":false,"cost":{"input":0.28,"output":1.2},"id":"MiniMaxAI/MiniMax-M2.1","interleaved":{"field":"reasoning_content"},"knowledge":"2025-06","last_updated":"2025-12-23","limit":{"context":196608,"output":196608},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax M2.1","open_weights":true,"reasoning":true,"release_date":"2025-12-23","temperature":true,"tool_call":true},"MiniMaxAI/MiniMax-M2.5":{"attachment":false,"cost":{"cache_read":0.03,"cache_write":0.375,"input":0.27,"output":0.95},"family":"minimax","id":"MiniMaxAI/MiniMax-M2.5","interleaved":{"field":"reasoning_content"},"knowledge":"2025-06","last_updated":"2026-02-12","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax M2.5","open_weights":true,"reasoning":true,"release_date":"2026-02-12","temperature":true,"tool_call":true},"Qwen/Qwen3-Coder-480B-A35B-Instruct":{"attachment":false,"cost":{"input":0.4,"output":1.6},"family":"qwen","id":"Qwen/Qwen3-Coder-480B-A35B-Instruct","knowledge":"2025-04","last_updated":"2025-07-23","limit":{"context":262144,"output":66536},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Coder 480B A35B Instruct","open_weights":true,"reasoning":false,"release_date":"2025-07-23","temperature":true,"tool_call":true},"Qwen/Qwen3-Coder-480B-A35B-Instruct-Turbo":{"attachment":false,"cost":{"input":0.3,"output":1.2},"family":"qwen","id":"Qwen/Qwen3-Coder-480B-A35B-Instruct-Turbo","knowledge":"2025-04","last_updated":"2025-07-23","limit":{"context":262144,"output":66536},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Coder 480B A35B Instruct Turbo","open_weights":true,"reasoning":false,"release_date":"2025-07-23","temperature":true,"tool_call":true},"Qwen/Qwen3.5-35B-A3B":{"attachment":true,"cost":{"input":0.2,"output":0.95},"family":"qwen","id":"Qwen/Qwen3.5-35B-A3B","knowledge":"2025-01","last_updated":"2026-04-20","limit":{"context":262144,"output":81920},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen 3.5 35B A3B","open_weights":true,"reasoning":true,"release_date":"2026-02-01","temperature":true,"tool_call":true},"Qwen/Qwen3.5-397B-A17B":{"attachment":true,"cost":{"input":0.54,"output":3.4},"family":"qwen","id":"Qwen/Qwen3.5-397B-A17B","knowledge":"2025-01","last_updated":"2026-04-20","limit":{"context":262144,"output":81920},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen 3.5 397B A17B","open_weights":true,"reasoning":true,"release_date":"2026-02-01","temperature":true,"tool_call":true},"Qwen/Qwen3.6-35B-A3B":{"attachment":true,"cost":{"input":0.2,"output":1},"family":"qwen","id":"Qwen/Qwen3.6-35B-A3B","last_updated":"2026-04-01","limit":{"context":262144,"output":81920},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.6 35B A3B","open_weights":true,"reasoning":true,"release_date":"2026-04-01","temperature":true,"tool_call":true},"XiaomiMiMo/MiMo-V2.5":{"attachment":true,"cost":{"cache_read":0.08,"context_over_200k":{"cache_read":0.16,"input":0.8,"output":4},"input":0.4,"output":2,"tiers":[{"cache_read":0.16,"input":0.8,"output":4,"tier":{"size":256000,"type":"context"}}]},"family":"mimo","id":"XiaomiMiMo/MiMo-V2.5","interleaved":{"field":"reasoning_content"},"knowledge":"2024-12","last_updated":"2026-04-22","limit":{"context":262144,"output":16384},"modalities":{"input":["text","image","audio","video"],"output":["text"]},"name":"MiMo-V2.5","open_weights":true,"reasoning":true,"release_date":"2026-04-22","temperature":true,"tool_call":true},"XiaomiMiMo/MiMo-V2.5-Pro":{"attachment":false,"cost":{"cache_read":0.2,"context_over_200k":{"cache_read":0.4,"input":2,"output":6},"input":1,"output":3,"tiers":[{"cache_read":0.4,"input":2,"output":6,"tier":{"size":256000,"type":"context"}}]},"family":"mimo","id":"XiaomiMiMo/MiMo-V2.5-Pro","interleaved":{"field":"reasoning_content"},"knowledge":"2024-12","last_updated":"2026-04-22","limit":{"context":1048576,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"MiMo-V2.5-Pro","open_weights":true,"reasoning":true,"release_date":"2026-04-22","temperature":true,"tool_call":true},"anthropic/claude-3-7-sonnet-latest":{"attachment":true,"cost":{"cache_read":0.33,"input":3.3,"output":16.5},"family":"claude-sonnet","id":"anthropic/claude-3-7-sonnet-latest","knowledge":"2024-10-31","last_updated":"2025-03-13","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Claude Sonnet 3.7 (Latest)","open_weights":false,"reasoning":true,"release_date":"2025-03-13","temperature":true,"tool_call":true},"anthropic/claude-4-opus":{"attachment":true,"cost":{"input":16.5,"output":82.5},"family":"claude-opus","id":"anthropic/claude-4-opus","knowledge":"2025-03-31","last_updated":"2025-06-12","limit":{"context":200000,"output":32000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Claude Opus 4","open_weights":false,"reasoning":true,"release_date":"2025-06-12","temperature":true,"tool_call":true},"deepseek-ai/DeepSeek-R1-0528":{"attachment":false,"cost":{"cache_read":0.35,"input":0.5,"output":2.15},"id":"deepseek-ai/DeepSeek-R1-0528","interleaved":{"field":"reasoning_content"},"knowledge":"2024-07","last_updated":"2025-05-28","limit":{"context":163840,"output":64000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek-R1-0528","open_weights":false,"reasoning":true,"release_date":"2025-05-28","temperature":true,"tool_call":false},"deepseek-ai/DeepSeek-V3.2":{"attachment":false,"cost":{"cache_read":0.13,"input":0.26,"output":0.38},"id":"deepseek-ai/DeepSeek-V3.2","interleaved":{"field":"reasoning_content"},"knowledge":"2024-12","last_updated":"2025-12-02","limit":{"context":163840,"output":64000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek-V3.2","open_weights":false,"reasoning":true,"release_date":"2025-12-02","temperature":true,"tool_call":true},"deepseek-ai/DeepSeek-V4-Flash":{"attachment":false,"cost":{"cache_read":0.02,"input":0.1,"output":0.2},"family":"deepseek-flash","id":"deepseek-ai/DeepSeek-V4-Flash","interleaved":{"field":"reasoning_content"},"knowledge":"2025-05","last_updated":"2026-04-24","limit":{"context":1048576,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V4 Flash","open_weights":true,"reasoning":true,"release_date":"2026-04-24","structured_output":true,"temperature":true,"tool_call":true},"deepseek-ai/DeepSeek-V4-Pro":{"attachment":false,"cost":{"cache_read":0.1,"input":1.3,"output":2.6},"family":"deepseek-thinking","id":"deepseek-ai/DeepSeek-V4-Pro","interleaved":{"field":"reasoning_content"},"knowledge":"2025-05","last_updated":"2026-04-24","limit":{"context":1048576,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V4 Pro","open_weights":true,"reasoning":true,"release_date":"2026-04-24","structured_output":true,"temperature":true,"tool_call":true},"google/gemma-4-26B-A4B-it":{"attachment":true,"cost":{"input":0.07,"output":0.34},"family":"gemma","id":"google/gemma-4-26B-A4B-it","last_updated":"2026-04-02","limit":{"context":262144,"output":32768},"modalities":{"input":["text","image"],"output":["text"]},"name":"Gemma 4 26B A4B IT","open_weights":true,"reasoning":true,"release_date":"2026-04-02","structured_output":true,"temperature":true,"tool_call":true},"google/gemma-4-31B-it":{"attachment":true,"cost":{"input":0.13,"output":0.38},"family":"gemma","id":"google/gemma-4-31B-it","last_updated":"2026-04-02","limit":{"context":262144,"output":32768},"modalities":{"input":["text","image"],"output":["text"]},"name":"Gemma 4 31B IT","open_weights":true,"reasoning":true,"release_date":"2026-04-02","structured_output":true,"temperature":true,"tool_call":true},"meta-llama/Llama-3.1-70B-Instruct":{"attachment":false,"cost":{"input":0.4,"output":0.4},"family":"llama","id":"meta-llama/Llama-3.1-70B-Instruct","last_updated":"2024-07-23","limit":{"context":131072,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.1 70B","open_weights":true,"reasoning":false,"release_date":"2024-07-23","tool_call":true},"meta-llama/Llama-3.1-70B-Instruct-Turbo":{"attachment":false,"cost":{"input":0.4,"output":0.4},"family":"llama","id":"meta-llama/Llama-3.1-70B-Instruct-Turbo","last_updated":"2024-07-23","limit":{"context":131072,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.1 70B Turbo","open_weights":true,"reasoning":false,"release_date":"2024-07-23","tool_call":true},"meta-llama/Llama-3.1-8B-Instruct":{"attachment":false,"cost":{"input":0.02,"output":0.05},"family":"llama","id":"meta-llama/Llama-3.1-8B-Instruct","last_updated":"2024-07-23","limit":{"context":131072,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.1 8B","open_weights":true,"reasoning":false,"release_date":"2024-07-23","tool_call":true},"meta-llama/Llama-3.1-8B-Instruct-Turbo":{"attachment":false,"cost":{"input":0.02,"output":0.03},"family":"llama","id":"meta-llama/Llama-3.1-8B-Instruct-Turbo","last_updated":"2024-07-23","limit":{"context":131072,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.1 8B Turbo","open_weights":true,"reasoning":false,"release_date":"2024-07-23","tool_call":true},"meta-llama/Llama-3.3-70B-Instruct-Turbo":{"attachment":false,"cost":{"input":0.1,"output":0.32},"family":"llama","id":"meta-llama/Llama-3.3-70B-Instruct-Turbo","last_updated":"2024-12-06","limit":{"context":131072,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.3 70B Turbo","open_weights":true,"reasoning":false,"release_date":"2024-12-06","tool_call":true},"meta-llama/Llama-4-Maverick-17B-128E-Instruct-FP8":{"attachment":false,"cost":{"input":0.15,"output":0.6},"family":"llama","id":"meta-llama/Llama-4-Maverick-17B-128E-Instruct-FP8","last_updated":"2025-04-05","limit":{"context":1000000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"Llama 4 Maverick 17B FP8","open_weights":true,"reasoning":false,"release_date":"2025-04-05","tool_call":true},"meta-llama/Llama-4-Scout-17B-16E-Instruct":{"attachment":false,"cost":{"input":0.08,"output":0.3},"family":"llama","id":"meta-llama/Llama-4-Scout-17B-16E-Instruct","last_updated":"2025-04-05","limit":{"context":10000000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"Llama 4 Scout 17B","open_weights":true,"reasoning":false,"release_date":"2025-04-05","tool_call":true},"moonshotai/Kimi-K2-Instruct":{"attachment":false,"cost":{"input":0.5,"output":2},"family":"kimi","id":"moonshotai/Kimi-K2-Instruct","knowledge":"2024-10","last_updated":"2025-07-11","limit":{"context":131072,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Kimi K2","open_weights":true,"reasoning":false,"release_date":"2025-07-11","temperature":true,"tool_call":true},"moonshotai/Kimi-K2-Instruct-0905":{"attachment":false,"cost":{"cache_read":0.15,"input":0.4,"output":2},"family":"kimi","id":"moonshotai/Kimi-K2-Instruct-0905","knowledge":"2024-10","last_updated":"2025-09-05","limit":{"context":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Kimi K2 0905","open_weights":true,"reasoning":false,"release_date":"2025-09-05","temperature":true,"tool_call":true},"moonshotai/Kimi-K2-Thinking":{"attachment":false,"cost":{"input":0.47,"output":2},"family":"kimi-thinking","id":"moonshotai/Kimi-K2-Thinking","interleaved":{"field":"reasoning_content"},"knowledge":"2024-10","last_updated":"2025-11-07","limit":{"context":131072,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Kimi K2 Thinking","open_weights":true,"reasoning":true,"release_date":"2025-11-06","temperature":true,"tool_call":true},"moonshotai/Kimi-K2.5":{"attachment":true,"cost":{"input":0.5,"output":2.8},"family":"kimi","id":"moonshotai/Kimi-K2.5","interleaved":{"field":"reasoning_content"},"knowledge":"2025-01","last_updated":"2026-01-27","limit":{"context":262144,"output":32768},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Kimi K2.5","open_weights":true,"reasoning":true,"release_date":"2026-01-27","structured_output":true,"temperature":true,"tool_call":true},"moonshotai/Kimi-K2.6":{"attachment":true,"cost":{"cache_read":0.15,"input":0.75,"output":3.5},"family":"kimi","id":"moonshotai/Kimi-K2.6","interleaved":{"field":"reasoning_content"},"knowledge":"2024-04","last_updated":"2026-04-21","limit":{"context":262144,"output":16384},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Kimi K2.6","open_weights":true,"reasoning":true,"release_date":"2026-04-21","structured_output":true,"temperature":true,"tool_call":true},"openai/gpt-oss-120b":{"attachment":false,"cost":{"input":0.05,"output":0.24},"family":"gpt-oss","id":"openai/gpt-oss-120b","last_updated":"2025-08-05","limit":{"context":131072,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"GPT OSS 120B","open_weights":true,"reasoning":true,"release_date":"2025-08-05","temperature":true,"tool_call":true},"openai/gpt-oss-20b":{"attachment":false,"cost":{"input":0.03,"output":0.14},"family":"gpt-oss","id":"openai/gpt-oss-20b","last_updated":"2025-08-05","limit":{"context":131072,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"GPT OSS 20B","open_weights":true,"reasoning":true,"release_date":"2025-08-05","temperature":true,"tool_call":true},"zai-org/GLM-4.5":{"attachment":false,"cost":{"input":0.6,"output":2.2},"family":"glm","id":"zai-org/GLM-4.5","knowledge":"2025-04","last_updated":"2025-07-28","limit":{"context":131072,"output":98304},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4.5","open_weights":true,"reasoning":false,"release_date":"2025-07-28","status":"deprecated","temperature":true,"tool_call":true},"zai-org/GLM-4.6":{"attachment":false,"cost":{"cache_read":0.08,"input":0.43,"output":1.74},"family":"glm","id":"zai-org/GLM-4.6","interleaved":{"field":"reasoning_content"},"knowledge":"2025-04","last_updated":"2025-09-30","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4.6","open_weights":true,"reasoning":true,"release_date":"2025-09-30","temperature":true,"tool_call":true},"zai-org/GLM-4.6V":{"attachment":true,"cost":{"input":0.3,"output":0.9},"family":"glm","id":"zai-org/GLM-4.6V","interleaved":{"field":"reasoning_content"},"knowledge":"2025-04","last_updated":"2025-09-30","limit":{"context":204800,"output":131072},"modalities":{"input":["text","image"],"output":["text"]},"name":"GLM-4.6V","open_weights":true,"reasoning":true,"release_date":"2025-09-30","temperature":true,"tool_call":true},"zai-org/GLM-4.7":{"attachment":false,"cost":{"cache_read":0.08,"input":0.43,"output":1.75},"family":"glm","id":"zai-org/GLM-4.7","interleaved":{"field":"reasoning_content"},"knowledge":"2025-04","last_updated":"2025-12-22","limit":{"context":202752,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4.7","open_weights":true,"reasoning":true,"release_date":"2025-12-22","temperature":true,"tool_call":true},"zai-org/GLM-4.7-Flash":{"attachment":false,"cost":{"input":0.06,"output":0.4},"family":"glm-flash","id":"zai-org/GLM-4.7-Flash","interleaved":{"field":"reasoning_content"},"knowledge":"2025-04","last_updated":"2026-01-19","limit":{"context":202752,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4.7-Flash","open_weights":true,"reasoning":true,"release_date":"2026-01-19","temperature":true,"tool_call":true},"zai-org/GLM-5":{"attachment":false,"cost":{"cache_read":0.16,"input":0.8,"output":2.56},"family":"glm","id":"zai-org/GLM-5","interleaved":{"field":"reasoning_content"},"knowledge":"2025-12","last_updated":"2026-02-12","limit":{"context":202752,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-5","open_weights":true,"reasoning":true,"release_date":"2026-02-12","temperature":true,"tool_call":true},"zai-org/GLM-5.1":{"attachment":false,"cost":{"cache_read":0.26,"input":1.4,"output":4.4},"family":"glm","id":"zai-org/GLM-5.1","interleaved":{"field":"reasoning_content"},"knowledge":"2025-04","last_updated":"2026-04-07","limit":{"context":202752,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-5.1","open_weights":true,"reasoning":true,"release_date":"2026-04-07","structured_output":true,"temperature":true,"tool_call":true}},"name":"Deep Infra","npm":"@ai-sdk/deepinfra"},"deepseek":{"api":"https://api.deepseek.com","doc":"https://api-docs.deepseek.com/quick_start/pricing","env":["DEEPSEEK_API_KEY"],"id":"deepseek","models":{"deepseek-chat":{"attachment":true,"cost":{"cache_read":0.028,"input":0.14,"output":0.28},"family":"deepseek","id":"deepseek-chat","knowledge":"2025-09","last_updated":"2026-02-28","limit":{"context":1000000,"output":384000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek Chat","open_weights":true,"reasoning":false,"release_date":"2025-12-01","temperature":true,"tool_call":true},"deepseek-reasoner":{"attachment":true,"cost":{"cache_read":0.028,"input":0.14,"output":0.28},"family":"deepseek-thinking","id":"deepseek-reasoner","interleaved":{"field":"reasoning_content"},"knowledge":"2025-09","last_updated":"2026-02-28","limit":{"context":1000000,"output":384000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek Reasoner","open_weights":true,"reasoning":true,"release_date":"2025-12-01","temperature":true,"tool_call":true},"deepseek-v4-flash":{"attachment":false,"cost":{"cache_read":0.0028,"input":0.14,"output":0.28},"family":"deepseek-flash","id":"deepseek-v4-flash","interleaved":{"field":"reasoning_content"},"knowledge":"2025-05","last_updated":"2026-04-24","limit":{"context":1000000,"output":384000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V4 Flash","open_weights":true,"reasoning":true,"reasoning_options":[{"type":"toggle"},{"type":"effort","values":["high","max"]}],"release_date":"2026-04-24","structured_output":true,"temperature":true,"tool_call":true},"deepseek-v4-pro":{"attachment":false,"cost":{"cache_read":0.003625,"input":0.435,"output":0.87},"family":"deepseek-thinking","id":"deepseek-v4-pro","interleaved":{"field":"reasoning_content"},"knowledge":"2025-05","last_updated":"2026-04-24","limit":{"context":1000000,"output":384000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V4 Pro","open_weights":true,"reasoning":true,"reasoning_options":[{"type":"toggle"},{"type":"effort","values":["high","max"]}],"release_date":"2026-04-24","structured_output":true,"temperature":true,"tool_call":true}},"name":"DeepSeek","npm":"@ai-sdk/openai-compatible"},"digitalocean":{"api":"https://inference.do-ai.run/v1","doc":"https://docs.digitalocean.com/products/gradient-ai-platform/details/models/","env":["DIGITALOCEAN_ACCESS_TOKEN"],"id":"digitalocean","models":{"alibaba-qwen3-32b":{"attachment":false,"cost":{"input":0.25,"output":0.55},"family":"qwen","id":"alibaba-qwen3-32b","last_updated":"2026-04-16","limit":{"context":131000,"output":40960},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3-32B","open_weights":true,"reasoning":true,"release_date":"2025-04-30","structured_output":true,"temperature":true,"tool_call":true},"all-mini-lm-l6-v2":{"attachment":false,"cost":{"input":0.009,"output":0},"family":"text-embedding","id":"all-mini-lm-l6-v2","last_updated":"2026-04-16","limit":{"context":256,"output":384},"modalities":{"input":["text"],"output":["text"]},"name":"All-MiniLM-L6-v2","open_weights":true,"reasoning":false,"release_date":"2021-08-30","temperature":false,"tool_call":false},"anthropic-claude-3-opus":{"attachment":true,"cost":{"cache_read":1.5,"cache_write":18.75,"input":15,"output":75},"family":"claude-opus","id":"anthropic-claude-3-opus","knowledge":"2023-08","last_updated":"2024-02-29","limit":{"context":200000,"output":4096},"modalities":{"input":["text","image"],"output":["text"]},"name":"Claude 3 Opus","open_weights":false,"reasoning":false,"release_date":"2024-02-29","status":"deprecated","temperature":true,"tool_call":true},"anthropic-claude-3.5-haiku":{"attachment":false,"cost":{"cache_read":0.08,"cache_write":1,"input":0.8,"output":4},"family":"claude-haiku","id":"anthropic-claude-3.5-haiku","knowledge":"2024-07","last_updated":"2024-11-05","limit":{"context":200000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Claude 3.5 Haiku","open_weights":false,"reasoning":false,"release_date":"2024-11-05","status":"deprecated","temperature":true,"tool_call":true},"anthropic-claude-3.5-sonnet":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"input":3,"output":15},"family":"claude-sonnet","id":"anthropic-claude-3.5-sonnet","knowledge":"2024-04","last_updated":"2024-10-22","limit":{"context":200000,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Claude 3.5 Sonnet","open_weights":false,"reasoning":false,"release_date":"2024-06-20","status":"deprecated","temperature":true,"tool_call":true},"anthropic-claude-3.7-sonnet":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"input":3,"output":15},"family":"claude-sonnet","id":"anthropic-claude-3.7-sonnet","knowledge":"2024-11","last_updated":"2025-02-24","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Claude 3.7 Sonnet","open_weights":false,"reasoning":true,"release_date":"2025-02-24","status":"deprecated","temperature":true,"tool_call":true},"anthropic-claude-4.1-opus":{"attachment":true,"cost":{"cache_read":1.5,"cache_write":18.75,"input":15,"output":75},"family":"claude-opus","id":"anthropic-claude-4.1-opus","knowledge":"2025-03-31","last_updated":"2025-08-05","limit":{"context":200000,"output":32000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.1","open_weights":false,"reasoning":true,"release_date":"2025-08-05","temperature":true,"tool_call":true},"anthropic-claude-4.5-haiku":{"attachment":true,"cost":{"cache_read":1,"cache_write":1.25,"input":1,"output":5},"family":"claude-haiku","id":"anthropic-claude-4.5-haiku","knowledge":"2025-02-28","last_updated":"2025-10-15","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Claude Haiku 4.5","open_weights":false,"reasoning":true,"release_date":"2025-10-15","temperature":true,"tool_call":true},"anthropic-claude-4.5-sonnet":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"context_over_200k":{"cache_read":0.3,"cache_write":3.75,"input":6,"output":22.5},"input":3,"output":15,"tiers":[{"cache_read":0.3,"cache_write":3.75,"input":6,"output":22.5,"tier":{"size":200000,"type":"context"}}]},"family":"claude-sonnet","id":"anthropic-claude-4.5-sonnet","knowledge":"2025-07-31","last_updated":"2025-09-29","limit":{"context":1000000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 4.5","open_weights":false,"reasoning":true,"release_date":"2025-09-29","temperature":true,"tool_call":true},"anthropic-claude-4.6-sonnet":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"context_over_200k":{"cache_read":0.3,"cache_write":3.75,"input":6,"output":22.5},"input":3,"output":15,"tiers":[{"cache_read":0.3,"cache_write":3.75,"input":6,"output":22.5,"tier":{"size":200000,"type":"context"}}]},"family":"claude-sonnet","id":"anthropic-claude-4.6-sonnet","knowledge":"2025-08-31","last_updated":"2026-03-13","limit":{"context":1000000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 4.6","open_weights":false,"reasoning":true,"release_date":"2026-02-17","temperature":true,"tool_call":true},"anthropic-claude-haiku-4.5":{"attachment":true,"cost":{"cache_read":1,"cache_write":1.25,"input":1,"output":5},"family":"claude-haiku","id":"anthropic-claude-haiku-4.5","knowledge":"2025-02-28","last_updated":"2025-10-15","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Haiku 4.5","open_weights":false,"reasoning":true,"release_date":"2025-10-15","temperature":true,"tool_call":true},"anthropic-claude-opus-4":{"attachment":true,"cost":{"cache_read":1.5,"cache_write":18.75,"input":15,"output":75},"family":"claude-opus","id":"anthropic-claude-opus-4","knowledge":"2025-03-31","last_updated":"2025-05-22","limit":{"context":200000,"output":32000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4","open_weights":false,"reasoning":true,"release_date":"2025-05-22","temperature":true,"tool_call":true},"anthropic-claude-opus-4.5":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"input":5,"output":25},"family":"claude-opus","id":"anthropic-claude-opus-4.5","knowledge":"2025-03-31","last_updated":"2025-11-24","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.5","open_weights":false,"reasoning":true,"release_date":"2025-11-24","temperature":true,"tool_call":true},"anthropic-claude-opus-4.6":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"context_over_200k":{"cache_read":0.5,"cache_write":6.25,"input":10,"output":37.5},"input":5,"output":25,"tiers":[{"cache_read":0.5,"cache_write":6.25,"input":10,"output":37.5,"tier":{"size":200000,"type":"context"}}]},"family":"claude-opus","id":"anthropic-claude-opus-4.6","knowledge":"2025-05-31","last_updated":"2026-03-13","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.6","open_weights":false,"reasoning":true,"release_date":"2026-02-05","temperature":true,"tool_call":true},"anthropic-claude-opus-4.7":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"input":5,"output":25},"family":"claude-opus","id":"anthropic-claude-opus-4.7","knowledge":"2026-01-31","last_updated":"2026-04-16","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.7","open_weights":false,"reasoning":true,"release_date":"2026-04-16","temperature":false,"tool_call":true},"anthropic-claude-opus-4.8":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"input":5,"output":25},"family":"claude-opus","id":"anthropic-claude-opus-4.8","last_updated":"2026-05-29","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Claude Opus 4.8","open_weights":false,"reasoning":true,"release_date":"2026-05-28","temperature":true,"tool_call":true},"anthropic-claude-sonnet-4":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"context_over_200k":{"cache_read":0.3,"cache_write":3.75,"input":6,"output":22.5},"input":3,"output":15,"tiers":[{"cache_read":0.3,"cache_write":3.75,"input":6,"output":22.5,"tier":{"size":200000,"type":"context"}}]},"family":"claude-sonnet","id":"anthropic-claude-sonnet-4","knowledge":"2025-03-31","last_updated":"2025-05-22","limit":{"context":1000000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 4","open_weights":false,"reasoning":true,"release_date":"2025-05-22","temperature":true,"tool_call":true},"arcee-trinity-large-thinking":{"attachment":false,"cost":{"cache_read":0.06,"input":0.25,"output":0.9},"family":"trinity","id":"arcee-trinity-large-thinking","last_updated":"2026-04-16","limit":{"context":256000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"Trinity Large Thinking","open_weights":true,"reasoning":true,"release_date":"2026-04-02","status":"beta","temperature":true,"tool_call":true},"bge-m3":{"attachment":false,"cost":{"input":0.02,"output":0},"family":"bge","id":"bge-m3","last_updated":"2026-04-30","limit":{"context":8192,"output":1024},"modalities":{"input":["text"],"output":["text"]},"name":"BGE M3","open_weights":true,"reasoning":false,"release_date":"2024-01-30","temperature":false,"tool_call":false},"bge-reranker-v2-m3":{"attachment":false,"cost":{"input":0.01,"output":0},"family":"bge","id":"bge-reranker-v2-m3","last_updated":"2026-04-30","limit":{"context":8192,"output":1},"modalities":{"input":["text"],"output":["text"]},"name":"BGE Reranker v2 M3","open_weights":true,"reasoning":false,"release_date":"2024-03-12","temperature":false,"tool_call":false},"deepseek-3.2":{"attachment":false,"cost":{"input":0.5,"output":1.6},"family":"deepseek","id":"deepseek-3.2","interleaved":{"field":"reasoning_content"},"knowledge":"2024-12","last_updated":"2026-04-30","limit":{"context":128000,"output":64000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V3.2","open_weights":true,"reasoning":true,"release_date":"2025-12-02","temperature":true,"tool_call":true},"deepseek-4-flash":{"attachment":false,"family":"deepseek","id":"deepseek-4-flash","last_updated":"2026-05-29","limit":{"context":262144,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Deepseek V4 Flash","open_weights":false,"reasoning":false,"release_date":"2026-05-27","temperature":true,"tool_call":true},"deepseek-r1-distill-llama-70b":{"attachment":false,"cost":{"input":0.99,"output":0.99},"family":"deepseek-thinking","id":"deepseek-r1-distill-llama-70b","last_updated":"2025-01-30","limit":{"context":131072,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek R1 Distill Llama 70B","open_weights":true,"reasoning":true,"release_date":"2025-01-30","structured_output":true,"temperature":true,"tool_call":true},"deepseek-v3":{"attachment":false,"family":"deepseek","id":"deepseek-v3","knowledge":"2024-07","last_updated":"2025-03-24","limit":{"context":163840,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V3","open_weights":true,"reasoning":false,"release_date":"2024-12-26","temperature":true,"tool_call":true},"deepseek-v4-pro":{"attachment":false,"cost":{"input":1.74,"output":3.48},"family":"deepseek-thinking","id":"deepseek-v4-pro","interleaved":{"field":"reasoning_content"},"knowledge":"2025-05","last_updated":"2026-04-24","limit":{"context":1048576,"output":393216},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V4 Pro","open_weights":true,"reasoning":true,"release_date":"2026-04-24","structured_output":true,"temperature":true,"tool_call":true},"e5-large-v2":{"attachment":false,"cost":{"input":0.02,"output":0},"family":"text-embedding","id":"e5-large-v2","last_updated":"2026-04-30","limit":{"context":512,"output":1024},"modalities":{"input":["text"],"output":["text"]},"name":"E5 Large v2","open_weights":true,"reasoning":false,"release_date":"2023-05-19","temperature":false,"tool_call":false},"fal-ai/elevenlabs/tts/multilingual-v2":{"attachment":false,"family":"elevenlabs","id":"fal-ai/elevenlabs/tts/multilingual-v2","last_updated":"2026-04-16","limit":{"context":0,"output":0},"modalities":{"input":["text"],"output":["audio"]},"name":"ElevenLabs Multilingual TTS v2","open_weights":false,"reasoning":false,"release_date":"2023-08-22","temperature":false,"tool_call":false},"fal-ai/fast-sdxl":{"attachment":false,"family":"stable-diffusion","id":"fal-ai/fast-sdxl","last_updated":"2026-04-16","limit":{"context":0,"output":0},"modalities":{"input":["text"],"output":["image"]},"name":"Fast SDXL","open_weights":true,"reasoning":false,"release_date":"2023-07-26","temperature":false,"tool_call":false},"fal-ai/flux/schnell":{"attachment":false,"family":"flux","id":"fal-ai/flux/schnell","last_updated":"2026-04-16","limit":{"context":0,"output":0},"modalities":{"input":["text"],"output":["image"]},"name":"FLUX.1 [schnell]","open_weights":true,"reasoning":false,"release_date":"2024-08-01","temperature":false,"tool_call":false},"fal-ai/stable-audio-25/text-to-audio":{"attachment":false,"id":"fal-ai/stable-audio-25/text-to-audio","last_updated":"2026-04-16","limit":{"context":0,"output":0},"modalities":{"input":["text"],"output":["audio"]},"name":"Stable Audio 2.5 (Text-to-Audio)","open_weights":false,"reasoning":false,"release_date":"2025-10-08","temperature":false,"tool_call":false},"gemma-4-31B-it":{"attachment":true,"cost":{"input":0.18,"output":0.5},"family":"gemma","id":"gemma-4-31B-it","last_updated":"2026-04-30","limit":{"context":256000,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Gemma 4 31B","open_weights":true,"reasoning":false,"release_date":"2026-04-22","structured_output":true,"temperature":true,"tool_call":true},"glm-5":{"attachment":false,"cost":{"input":1,"output":3.2},"family":"glm","id":"glm-5","interleaved":{"field":"reasoning_content"},"last_updated":"2026-04-16","limit":{"context":202752,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 5","open_weights":true,"reasoning":true,"release_date":"2026-02-11","tool_call":true},"gte-large-en-v1.5":{"attachment":false,"cost":{"input":0.09,"output":0},"family":"text-embedding","id":"gte-large-en-v1.5","last_updated":"2026-04-16","limit":{"context":8192,"output":1024},"modalities":{"input":["text"],"output":["text"]},"name":"GTE Large (v1.5)","open_weights":true,"reasoning":false,"release_date":"2024-03-27","temperature":false,"tool_call":false},"kimi-k2.5":{"attachment":false,"cost":{"input":0.5,"output":2.7},"family":"kimi","id":"kimi-k2.5","interleaved":{"field":"reasoning_content"},"knowledge":"2025-01","last_updated":"2026-04-16","limit":{"context":262144,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Kimi K2.5","open_weights":true,"reasoning":true,"release_date":"2026-01","structured_output":true,"temperature":false,"tool_call":true},"kimi-k2.6":{"attachment":true,"cost":{"input":0.95,"output":4},"family":"kimi","id":"kimi-k2.6","interleaved":{"field":"reasoning_content"},"knowledge":"2025-01","last_updated":"2026-04-21","limit":{"context":262144,"output":262144},"modalities":{"input":["text","image"],"output":["text"]},"name":"Kimi K2.6","open_weights":true,"reasoning":true,"release_date":"2026-04-21","structured_output":true,"temperature":false,"tool_call":true},"llama-4-maverick":{"attachment":true,"cost":{"input":0.25,"output":0.87},"family":"llama","id":"llama-4-maverick","knowledge":"2024-08","last_updated":"2026-04-30","limit":{"context":1000000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"Llama 4 Maverick 17B 128E Instruct","open_weights":true,"reasoning":false,"release_date":"2025-04-05","structured_output":true,"temperature":true,"tool_call":true},"llama3-8b-instruct":{"attachment":false,"cost":{"input":0.198,"output":0.198},"family":"llama","id":"llama3-8b-instruct","knowledge":"2023-12","last_updated":"2024-07-23","limit":{"context":131072,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.1 Instruct (8B)","open_weights":true,"reasoning":false,"release_date":"2024-07-23","temperature":true,"tool_call":true},"llama3.3-70b-instruct":{"attachment":false,"cost":{"input":0.65,"output":0.65},"family":"llama","id":"llama3.3-70b-instruct","knowledge":"2023-12","last_updated":"2024-12-06","limit":{"context":128000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.3 Instruct 70B","open_weights":true,"reasoning":false,"release_date":"2024-12-06","temperature":true,"tool_call":true},"minimax-m2.5":{"attachment":false,"cost":{"input":0.3,"output":1.2},"family":"minimax-m2.5","id":"minimax-m2.5","knowledge":"2025-08","last_updated":"2026-04-16","limit":{"context":204800,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax M2.5","open_weights":true,"reasoning":true,"release_date":"2026-02-12","status":"beta","temperature":true,"tool_call":true},"ministral-3-8b-instruct-2512":{"attachment":true,"family":"ministral","id":"ministral-3-8b-instruct-2512","last_updated":"2025-12-15","limit":{"context":262144,"output":262144},"modalities":{"input":["text","image"],"output":["text"]},"name":"Ministral 3 8B","open_weights":true,"reasoning":false,"release_date":"2025-12-15","temperature":true,"tool_call":true},"mistral-3-14B":{"attachment":false,"cost":{"input":0.2,"output":0.2},"family":"ministral","id":"mistral-3-14B","last_updated":"2026-04-30","limit":{"context":262144,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"Ministral 3 14B Instruct","open_weights":true,"reasoning":false,"release_date":"2025-12-15","structured_output":true,"temperature":true,"tool_call":true},"mistral-7b-instruct-v0.3":{"attachment":false,"family":"mistral","id":"mistral-7b-instruct-v0.3","last_updated":"2024-05-22","limit":{"context":32768,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Mistral 7B Instruct v0.3","open_weights":true,"reasoning":false,"release_date":"2024-05-22","temperature":true,"tool_call":true},"mistral-nemo-instruct-2407":{"attachment":false,"cost":{"input":0.3,"output":0.3},"family":"mistral","id":"mistral-nemo-instruct-2407","last_updated":"2024-07-18","limit":{"context":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Mistral Nemo Instruct","open_weights":true,"reasoning":false,"release_date":"2024-07-18","status":"deprecated","temperature":true,"tool_call":true},"multi-qa-mpnet-base-dot-v1":{"attachment":false,"cost":{"input":0.009,"output":0},"family":"text-embedding","id":"multi-qa-mpnet-base-dot-v1","last_updated":"2026-04-16","limit":{"context":512,"output":768},"modalities":{"input":["text"],"output":["text"]},"name":"Multi-QA-mpnet-base-dot-v1","open_weights":true,"reasoning":false,"release_date":"2021-08-30","temperature":false,"tool_call":false},"nemotron-3-nano-30b":{"attachment":false,"family":"nemotron","id":"nemotron-3-nano-30b","last_updated":"2025-04-14","limit":{"context":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Nemotron 3 Nano 30B A3B","open_weights":true,"reasoning":true,"release_date":"2025-04-14","temperature":true,"tool_call":true},"nemotron-3-nano-omni":{"attachment":true,"cost":{"input":0.5,"output":0.9},"family":"nemotron","id":"nemotron-3-nano-omni","last_updated":"2026-04-30","limit":{"context":65536,"output":65536},"modalities":{"input":["text","image","video","audio"],"output":["text"]},"name":"Nemotron Nano 3 Omni","open_weights":true,"reasoning":true,"release_date":"2026-04-28","structured_output":true,"temperature":true,"tool_call":true},"nemotron-nano-12b-v2-vl":{"attachment":true,"cost":{"input":0.2,"output":0.6},"family":"nemotron","id":"nemotron-nano-12b-v2-vl","knowledge":"2024-10","last_updated":"2026-04-30","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"Nemotron Nano 12B v2 VL","open_weights":true,"reasoning":true,"release_date":"2025-12-01","temperature":true,"tool_call":true},"nvidia-nemotron-3-super-120b":{"attachment":false,"cost":{"input":0.3,"output":0.65},"family":"nemotron","id":"nvidia-nemotron-3-super-120b","knowledge":"2026-02","last_updated":"2026-04-16","limit":{"context":256000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Nemotron-3-Super-120B","open_weights":true,"reasoning":true,"release_date":"2026-03-11","status":"beta","structured_output":true,"temperature":true,"tool_call":true},"openai-gpt-4.1":{"attachment":true,"cost":{"cache_read":0.5,"input":2,"output":8},"family":"gpt","id":"openai-gpt-4.1","knowledge":"2024-04","last_updated":"2025-04-14","limit":{"context":1047576,"output":32768},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-4.1","open_weights":false,"reasoning":false,"release_date":"2025-04-14","structured_output":true,"temperature":true,"tool_call":true},"openai-gpt-4o":{"attachment":true,"cost":{"cache_read":1.25,"input":2.5,"output":10},"family":"gpt","id":"openai-gpt-4o","knowledge":"2023-09","last_updated":"2024-08-06","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-4o","open_weights":false,"reasoning":false,"release_date":"2024-05-13","structured_output":true,"temperature":true,"tool_call":true},"openai-gpt-4o-mini":{"attachment":true,"cost":{"cache_read":0.075,"input":0.15,"output":0.6},"family":"gpt-mini","id":"openai-gpt-4o-mini","knowledge":"2023-09","last_updated":"2024-07-18","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-4o mini","open_weights":false,"reasoning":false,"release_date":"2024-07-18","structured_output":true,"temperature":true,"tool_call":true},"openai-gpt-5":{"attachment":true,"cost":{"cache_read":0.125,"input":1.25,"output":10},"family":"gpt","id":"openai-gpt-5","knowledge":"2024-09-30","last_updated":"2025-08-07","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5","open_weights":false,"reasoning":true,"release_date":"2025-08-07","structured_output":true,"temperature":false,"tool_call":true},"openai-gpt-5-mini":{"attachment":true,"cost":{"cache_read":0.025,"input":0.25,"output":2},"family":"gpt-mini","id":"openai-gpt-5-mini","knowledge":"2024-05-30","last_updated":"2025-08-07","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5 mini","open_weights":false,"reasoning":true,"release_date":"2025-08-07","structured_output":true,"temperature":false,"tool_call":true},"openai-gpt-5-nano":{"attachment":true,"cost":{"cache_read":0.005,"input":0.05,"output":0.4},"family":"gpt-nano","id":"openai-gpt-5-nano","knowledge":"2024-05-30","last_updated":"2025-08-07","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5 nano","open_weights":false,"reasoning":true,"release_date":"2025-08-07","structured_output":true,"temperature":false,"tool_call":true},"openai-gpt-5.1-codex-max":{"attachment":true,"cost":{"cache_read":0.125,"input":1.25,"output":10},"family":"gpt-codex","id":"openai-gpt-5.1-codex-max","knowledge":"2024-09-30","last_updated":"2025-11-13","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.1 Codex Max","open_weights":false,"reasoning":true,"release_date":"2025-11-13","structured_output":true,"temperature":false,"tool_call":true},"openai-gpt-5.2":{"attachment":true,"cost":{"cache_read":0.175,"input":1.75,"output":14},"family":"gpt","id":"openai-gpt-5.2","knowledge":"2025-08-31","last_updated":"2025-12-11","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.2","open_weights":false,"reasoning":true,"release_date":"2025-12-11","structured_output":true,"temperature":false,"tool_call":true},"openai-gpt-5.2-pro":{"attachment":true,"cost":{"input":21,"output":168},"family":"gpt-pro","id":"openai-gpt-5.2-pro","knowledge":"2025-08-31","last_updated":"2025-12-11","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.2 pro","open_weights":false,"reasoning":true,"release_date":"2025-12-11","temperature":false,"tool_call":true},"openai-gpt-5.3-codex":{"attachment":true,"cost":{"cache_read":0.175,"input":1.75,"output":14},"family":"gpt-codex","id":"openai-gpt-5.3-codex","knowledge":"2025-08-31","last_updated":"2026-02-05","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5.3 Codex","open_weights":false,"reasoning":true,"release_date":"2026-02-05","structured_output":true,"temperature":false,"tool_call":true},"openai-gpt-5.4":{"attachment":true,"cost":{"cache_read":0.25,"input":2.5,"output":15},"family":"gpt","id":"openai-gpt-5.4","knowledge":"2025-08-31","last_updated":"2026-03-05","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5.4","open_weights":false,"reasoning":true,"release_date":"2026-03-05","structured_output":true,"temperature":false,"tool_call":true},"openai-gpt-5.4-mini":{"attachment":true,"cost":{"cache_read":0.075,"input":0.75,"output":4.5},"family":"gpt-mini","id":"openai-gpt-5.4-mini","knowledge":"2025-08-31","last_updated":"2026-03-17","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.4 mini","open_weights":false,"reasoning":true,"release_date":"2026-03-17","structured_output":true,"temperature":false,"tool_call":true},"openai-gpt-5.4-nano":{"attachment":true,"cost":{"cache_read":0.02,"input":0.2,"output":1.25},"family":"gpt-nano","id":"openai-gpt-5.4-nano","knowledge":"2025-08-31","last_updated":"2026-03-17","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.4 nano","open_weights":false,"reasoning":true,"release_date":"2026-03-17","structured_output":true,"temperature":false,"tool_call":true},"openai-gpt-5.4-pro":{"attachment":true,"cost":{"input":30,"output":180},"family":"gpt-pro","id":"openai-gpt-5.4-pro","knowledge":"2025-08-31","last_updated":"2026-03-05","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.4 pro","open_weights":false,"reasoning":true,"release_date":"2026-03-05","temperature":false,"tool_call":true},"openai-gpt-5.5":{"attachment":true,"cost":{"cache_read":0.5,"context_over_200k":{"cache_read":1,"input":10,"output":45},"input":5,"output":30,"tiers":[{"cache_read":1,"input":10,"output":45,"tier":{"size":272000,"type":"context"}}]},"family":"gpt","id":"openai-gpt-5.5","knowledge":"2025-12-01","last_updated":"2026-04-30","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5.5","open_weights":false,"reasoning":true,"release_date":"2026-04-23","structured_output":true,"temperature":false,"tool_call":true},"openai-gpt-image-1":{"attachment":true,"cost":{"cache_read":1.25,"input":5,"output":40},"family":"gpt-image","id":"openai-gpt-image-1","last_updated":"2025-04-24","limit":{"context":0,"output":0},"modalities":{"input":["text","image"],"output":["image"]},"name":"GPT Image 1","open_weights":false,"reasoning":false,"release_date":"2025-04-24","temperature":false,"tool_call":false},"openai-gpt-image-1.5":{"attachment":true,"cost":{"cache_read":1,"input":5,"output":10},"family":"gpt-image","id":"openai-gpt-image-1.5","last_updated":"2025-11-25","limit":{"context":0,"output":0},"modalities":{"input":["text","image"],"output":["image"]},"name":"GPT Image 1.5","open_weights":false,"reasoning":false,"release_date":"2025-11-25","temperature":false,"tool_call":false},"openai-gpt-image-2":{"attachment":true,"family":"gpt-image","id":"openai-gpt-image-2","last_updated":"2025-04-24","limit":{"context":0,"output":0},"modalities":{"input":["text","image"],"output":["image"]},"name":"GPT Image 2","open_weights":false,"reasoning":false,"release_date":"2025-04-24","temperature":false,"tool_call":false},"openai-gpt-oss-120b":{"attachment":false,"cost":{"input":0.1,"output":0.7},"family":"gpt-oss","id":"openai-gpt-oss-120b","interleaved":{"field":"reasoning_content"},"knowledge":"2024-06","last_updated":"2026-04-16","limit":{"context":131072,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"gpt-oss-120b","open_weights":true,"reasoning":true,"release_date":"2025-08-05","structured_output":true,"temperature":true,"tool_call":true},"openai-gpt-oss-20b":{"attachment":false,"cost":{"input":0.05,"output":0.45},"family":"gpt-oss","id":"openai-gpt-oss-20b","knowledge":"2024-06","last_updated":"2026-04-16","limit":{"context":131072,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"gpt-oss-20b","open_weights":true,"reasoning":true,"release_date":"2025-08-05","structured_output":true,"temperature":true,"tool_call":true},"openai-o1":{"attachment":true,"cost":{"cache_read":7.5,"input":15,"output":60},"family":"o","id":"openai-o1","knowledge":"2023-09","last_updated":"2024-12-05","limit":{"context":200000,"output":100000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"o1","open_weights":false,"reasoning":true,"release_date":"2024-12-05","structured_output":true,"temperature":false,"tool_call":true},"openai-o3":{"attachment":true,"cost":{"cache_read":0.5,"input":2,"output":8},"family":"o","id":"openai-o3","knowledge":"2024-05","last_updated":"2025-04-16","limit":{"context":200000,"output":100000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"o3","open_weights":false,"reasoning":true,"release_date":"2025-04-16","structured_output":true,"temperature":false,"tool_call":true},"openai-o3-mini":{"attachment":false,"cost":{"cache_read":0.55,"input":1.1,"output":4.4},"family":"o-mini","id":"openai-o3-mini","knowledge":"2024-05","last_updated":"2025-01-29","limit":{"context":200000,"output":100000},"modalities":{"input":["text"],"output":["text"]},"name":"o3-mini","open_weights":false,"reasoning":true,"release_date":"2024-12-20","structured_output":true,"temperature":false,"tool_call":true},"qwen-2.5-14b-instruct":{"attachment":false,"family":"qwen","id":"qwen-2.5-14b-instruct","knowledge":"2024-09","last_updated":"2024-09-19","limit":{"context":131072,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen 2.5 14B Instruct","open_weights":true,"reasoning":false,"release_date":"2024-09-19","temperature":true,"tool_call":true},"qwen3-coder-flash":{"attachment":false,"cost":{"input":0.45,"output":1.7},"family":"qwen","id":"qwen3-coder-flash","knowledge":"2025-04","last_updated":"2026-04-30","limit":{"context":262144,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Coder Flash","open_weights":true,"reasoning":false,"release_date":"2025-07-28","temperature":true,"tool_call":true},"qwen3-embedding-0.6b":{"attachment":false,"cost":{"input":0.04,"output":0},"family":"text-embedding","id":"qwen3-embedding-0.6b","last_updated":"2026-04-16","limit":{"context":8000,"output":1024},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Embedding 0.6B","open_weights":true,"reasoning":false,"release_date":"2025-06-03","status":"beta","temperature":false,"tool_call":false},"qwen3-tts-voicedesign":{"attachment":false,"family":"qwen","id":"qwen3-tts-voicedesign","last_updated":"2026-04-30","limit":{"context":32768,"output":1},"modalities":{"input":["text"],"output":["audio"]},"name":"Qwen3 TTS VoiceDesign","open_weights":true,"reasoning":false,"release_date":"2026-04-21","temperature":false,"tool_call":false},"qwen3.5-397b-a17b":{"attachment":false,"cost":{"input":0.55,"output":3.5},"family":"qwen3.5","id":"qwen3.5-397b-a17b","last_updated":"2026-04-30","limit":{"context":262144,"output":81920},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen 3.5 397B A17B","open_weights":true,"reasoning":true,"release_date":"2026-02-15","structured_output":true,"temperature":true,"tool_call":true},"stable-diffusion-3.5-large":{"attachment":false,"cost":{"input":0.08,"output":0},"family":"stable-diffusion","id":"stable-diffusion-3.5-large","last_updated":"2026-04-30","limit":{"context":256,"output":1},"modalities":{"input":["text"],"output":["image"]},"name":"Stable Diffusion 3.5 Large","open_weights":true,"reasoning":false,"release_date":"2024-10-22","temperature":false,"tool_call":false},"wan2-2-t2v-a14b":{"attachment":false,"cost":{"input":0.6,"output":0},"id":"wan2-2-t2v-a14b","last_updated":"2026-04-30","limit":{"context":100,"output":1},"modalities":{"input":["text"],"output":["video"]},"name":"Wan2.2-T2V-A14B","open_weights":true,"reasoning":false,"release_date":"2025-07-28","temperature":false,"tool_call":false}},"name":"DigitalOcean","npm":"@ai-sdk/openai-compatible"},"dinference":{"api":"https://api.dinference.com/v1","doc":"https://dinference.com","env":["DINFERENCE_API_KEY"],"id":"dinference","models":{"glm-4.7":{"attachment":false,"cost":{"input":0.45,"output":1.65},"family":"glm","id":"glm-4.7","interleaved":{"field":"reasoning_content"},"knowledge":"2025-04","last_updated":"2025-12-22","limit":{"context":200000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4.7","open_weights":true,"reasoning":true,"release_date":"2025-12-22","temperature":true,"tool_call":true},"glm-5":{"attachment":false,"cost":{"input":0.75,"output":2.4},"family":"glm","id":"glm-5","interleaved":{"field":"reasoning_content"},"last_updated":"2026-02-11","limit":{"context":200000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-5","open_weights":true,"reasoning":true,"release_date":"2026-02-11","temperature":true,"tool_call":true},"glm-5.1":{"attachment":false,"cost":{"input":1.25,"output":3.89},"family":"glm","id":"glm-5.1","interleaved":{"field":"reasoning_content"},"last_updated":"2026-03-27","limit":{"context":200000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-5.1","open_weights":false,"reasoning":true,"release_date":"2026-03-27","structured_output":true,"temperature":true,"tool_call":true},"gpt-oss-120b":{"attachment":false,"cost":{"input":0.0675,"output":0.27},"id":"gpt-oss-120b","last_updated":"2025-08","limit":{"context":131072,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"GPT OSS 120B","open_weights":true,"reasoning":false,"release_date":"2025-08","temperature":true,"tool_call":true},"minimax-m2.5":{"attachment":false,"cost":{"input":0.22,"output":0.88},"family":"minimax","id":"minimax-m2.5","last_updated":"2026-02-12","limit":{"context":200000,"output":32000},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2.5","open_weights":true,"reasoning":true,"release_date":"2026-02-12","temperature":true,"tool_call":true}},"name":"DInference","npm":"@ai-sdk/openai-compatible"},"drun":{"api":"https://chat.d.run/v1","doc":"https://www.d.run","env":["DRUN_API_KEY"],"id":"drun","models":{"public/deepseek-r1":{"attachment":false,"cost":{"input":0.55,"output":2.2},"family":"deepseek-thinking","id":"public/deepseek-r1","interleaved":{"field":"reasoning_content"},"knowledge":"2024-12","last_updated":"2025-01-20","limit":{"context":131072,"output":32000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek R1","open_weights":true,"reasoning":true,"release_date":"2025-01-20","temperature":true,"tool_call":true},"public/deepseek-v3":{"attachment":false,"cost":{"input":0.28,"output":1.1},"family":"deepseek","id":"public/deepseek-v3","knowledge":"2024-07","last_updated":"2024-12-26","limit":{"context":131072,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V3","open_weights":true,"reasoning":false,"release_date":"2024-12-26","temperature":true,"tool_call":true},"public/minimax-m25":{"attachment":false,"cost":{"input":0.29,"output":1.16},"family":"minimax","id":"public/minimax-m25","interleaved":{"field":"reasoning_details"},"last_updated":"2025-03-01","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax M2.5","open_weights":false,"reasoning":true,"release_date":"2025-03-01","temperature":true,"tool_call":true}},"name":"D.Run (China)","npm":"@ai-sdk/openai-compatible"},"evroc":{"api":"https://models.think.evroc.com/v1","doc":"https://docs.evroc.com/products/think/overview.html","env":["EVROC_API_KEY"],"id":"evroc","models":{"KBLab/kb-whisper-large":{"attachment":false,"cost":{"input":0.00236,"output":0.00236,"output_audio":2.36},"family":"whisper","id":"KBLab/kb-whisper-large","last_updated":"2024-10-01","limit":{"context":448,"output":448},"modalities":{"input":["audio"],"output":["text"]},"name":"KB Whisper","open_weights":true,"reasoning":false,"release_date":"2024-10-01","tool_call":false},"Qwen/Qwen3-30B-A3B-Instruct-2507-FP8":{"attachment":false,"cost":{"input":0.35,"output":1.42},"family":"qwen","id":"Qwen/Qwen3-30B-A3B-Instruct-2507-FP8","last_updated":"2025-07-30","limit":{"context":64000,"output":64000},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 30B 2507","open_weights":true,"reasoning":false,"release_date":"2025-07-30","tool_call":true},"Qwen/Qwen3-Embedding-8B":{"attachment":false,"cost":{"input":0.12,"output":0.12},"family":"text-embedding","id":"Qwen/Qwen3-Embedding-8B","last_updated":"2025-07-30","limit":{"context":40960,"output":40960},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Embedding 8B","open_weights":true,"reasoning":false,"release_date":"2025-07-30","tool_call":false},"Qwen/Qwen3-VL-30B-A3B-Instruct":{"attachment":false,"cost":{"input":0.24,"output":0.94},"family":"qwen","id":"Qwen/Qwen3-VL-30B-A3B-Instruct","last_updated":"2025-07-30","limit":{"context":100000,"output":100000},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3 VL 30B","open_weights":true,"reasoning":false,"release_date":"2025-07-30","tool_call":true},"intfloat/multilingual-e5-large-instruct":{"attachment":false,"cost":{"input":0.12,"output":0.12},"family":"text-embedding","id":"intfloat/multilingual-e5-large-instruct","last_updated":"2024-06-01","limit":{"context":512,"output":512},"modalities":{"input":["text"],"output":["text"]},"name":"E5 Multi-Lingual Large Embeddings 0.6B","open_weights":true,"reasoning":false,"release_date":"2024-06-01","tool_call":false},"microsoft/Phi-4-multimodal-instruct":{"attachment":false,"cost":{"input":0.24,"output":0.47},"family":"phi","id":"microsoft/Phi-4-multimodal-instruct","last_updated":"2025-01-01","limit":{"context":32000,"output":32000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Phi-4 15B","open_weights":true,"reasoning":false,"release_date":"2025-01-01","tool_call":false},"mistralai/Magistral-Small-2509":{"attachment":false,"cost":{"input":0.59,"output":2.36},"family":"magistral-small","id":"mistralai/Magistral-Small-2509","last_updated":"2025-06-01","limit":{"context":131072,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"Magistral Small 1.2 24B","open_weights":true,"reasoning":false,"release_date":"2025-06-01","tool_call":false},"mistralai/Voxtral-Small-24B-2507":{"attachment":false,"cost":{"input":0.00236,"output":0.00236,"output_audio":2.36},"family":"voxtral","id":"mistralai/Voxtral-Small-24B-2507","last_updated":"2025-03-01","limit":{"context":32000,"output":32000},"modalities":{"input":["audio","text"],"output":["text"]},"name":"Voxtral Small 24B","open_weights":true,"reasoning":false,"release_date":"2025-03-01","tool_call":false},"mistralai/devstral-small-2-24b-instruct-2512":{"attachment":false,"cost":{"input":0.12,"output":0.47},"family":"devstral","id":"mistralai/devstral-small-2-24b-instruct-2512","last_updated":"2025-12-01","limit":{"context":32768,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Devstral Small 2 24B Instruct 2512","open_weights":true,"reasoning":false,"release_date":"2025-12-01","tool_call":true},"moonshotai/Kimi-K2.5":{"attachment":false,"cost":{"input":1.47,"output":5.9},"family":"kimi","id":"moonshotai/Kimi-K2.5","interleaved":{"field":"reasoning_content"},"last_updated":"2026-01-27","limit":{"context":262144,"output":262144},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Kimi K2.5","open_weights":true,"reasoning":true,"release_date":"2026-01-27","tool_call":true},"nvidia/Llama-3.3-70B-Instruct-FP8":{"attachment":false,"cost":{"input":1.18,"output":1.18},"family":"llama","id":"nvidia/Llama-3.3-70B-Instruct-FP8","last_updated":"2024-12-01","limit":{"context":131072,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.3 70B","open_weights":true,"reasoning":false,"release_date":"2024-12-01","tool_call":false},"openai/gpt-oss-120b":{"attachment":false,"cost":{"input":0.24,"output":0.94},"family":"gpt-oss","id":"openai/gpt-oss-120b","last_updated":"2025-08-05","limit":{"context":65536,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"GPT OSS 120B","open_weights":true,"reasoning":true,"release_date":"2025-08-05","tool_call":true},"openai/whisper-large-v3":{"attachment":false,"cost":{"input":0.00236,"output":0.00236,"output_audio":2.36},"family":"whisper","id":"openai/whisper-large-v3","last_updated":"2024-10-01","limit":{"context":448,"output":4096},"modalities":{"input":["audio"],"output":["text"]},"name":"Whisper 3 Large","open_weights":true,"reasoning":false,"release_date":"2024-10-01","tool_call":false}},"name":"evroc","npm":"@ai-sdk/openai-compatible"},"fastrouter":{"api":"https://go.fastrouter.ai/api/v1","doc":"https://fastrouter.ai/models","env":["FASTROUTER_API_KEY"],"id":"fastrouter","models":{"anthropic/claude-opus-4.1":{"attachment":true,"cost":{"cache_read":1.5,"cache_write":18.75,"input":15,"output":75},"family":"claude-opus","id":"anthropic/claude-opus-4.1","knowledge":"2025-03-31","last_updated":"2025-08-05","limit":{"context":200000,"output":32000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.1","open_weights":false,"reasoning":true,"release_date":"2025-08-05","temperature":true,"tool_call":true},"anthropic/claude-sonnet-4":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"input":3,"output":15},"family":"claude-sonnet","id":"anthropic/claude-sonnet-4","knowledge":"2025-03-31","last_updated":"2025-05-22","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 4","open_weights":false,"reasoning":true,"release_date":"2025-05-22","temperature":true,"tool_call":true},"deepseek-ai/deepseek-r1-distill-llama-70b":{"attachment":false,"cost":{"input":0.03,"output":0.14},"family":"deepseek-thinking","id":"deepseek-ai/deepseek-r1-distill-llama-70b","knowledge":"2024-10","last_updated":"2025-01-23","limit":{"context":131072,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek R1 Distill Llama 70B","open_weights":true,"reasoning":true,"release_date":"2025-01-23","temperature":true,"tool_call":false},"google/gemini-2.5-flash":{"attachment":true,"cost":{"cache_read":0.0375,"input":0.3,"output":2.5},"family":"gemini-flash","id":"google/gemini-2.5-flash","knowledge":"2025-01","last_updated":"2025-06-17","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Gemini 2.5 Flash","open_weights":false,"reasoning":true,"release_date":"2025-06-17","temperature":true,"tool_call":true},"google/gemini-2.5-pro":{"attachment":true,"cost":{"cache_read":0.31,"input":1.25,"output":10},"family":"gemini-pro","id":"google/gemini-2.5-pro","knowledge":"2025-01","last_updated":"2025-06-17","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Gemini 2.5 Pro","open_weights":false,"reasoning":true,"release_date":"2025-06-17","temperature":true,"tool_call":true},"moonshotai/kimi-k2":{"attachment":false,"cost":{"input":0.55,"output":2.2},"family":"kimi","id":"moonshotai/kimi-k2","knowledge":"2024-10","last_updated":"2025-07-11","limit":{"context":131072,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Kimi K2","open_weights":true,"reasoning":false,"release_date":"2025-07-11","temperature":true,"tool_call":true},"openai/gpt-4.1":{"attachment":true,"cost":{"cache_read":0.5,"input":2,"output":8},"family":"gpt","id":"openai/gpt-4.1","knowledge":"2024-04","last_updated":"2025-04-14","limit":{"context":1047576,"output":32768},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-4.1","open_weights":false,"reasoning":false,"release_date":"2025-04-14","temperature":true,"tool_call":true},"openai/gpt-5":{"attachment":true,"cost":{"cache_read":0.125,"input":1.25,"output":10},"family":"gpt","id":"openai/gpt-5","knowledge":"2024-10-01","last_updated":"2025-08-07","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5","open_weights":false,"reasoning":true,"release_date":"2025-08-07","temperature":true,"tool_call":true},"openai/gpt-5-mini":{"attachment":true,"cost":{"cache_read":0.025,"input":0.25,"output":2},"family":"gpt-mini","id":"openai/gpt-5-mini","knowledge":"2024-10-01","last_updated":"2025-08-07","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5 Mini","open_weights":false,"reasoning":true,"release_date":"2025-08-07","temperature":true,"tool_call":true},"openai/gpt-5-nano":{"attachment":true,"cost":{"cache_read":0.005,"input":0.05,"output":0.4},"family":"gpt-nano","id":"openai/gpt-5-nano","knowledge":"2024-10-01","last_updated":"2025-08-07","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5 Nano","open_weights":false,"reasoning":true,"release_date":"2025-08-07","temperature":true,"tool_call":true},"openai/gpt-oss-120b":{"attachment":false,"cost":{"input":0.15,"output":0.6},"family":"gpt-oss","id":"openai/gpt-oss-120b","last_updated":"2025-08-05","limit":{"context":131072,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"GPT OSS 120B","open_weights":true,"reasoning":true,"release_date":"2025-08-05","temperature":true,"tool_call":true},"openai/gpt-oss-20b":{"attachment":false,"cost":{"input":0.05,"output":0.2},"family":"gpt-oss","id":"openai/gpt-oss-20b","last_updated":"2025-08-05","limit":{"context":131072,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"GPT OSS 20B","open_weights":true,"reasoning":true,"release_date":"2025-08-05","temperature":true,"tool_call":true},"qwen/qwen3-coder":{"attachment":false,"cost":{"input":0.3,"output":1.2},"family":"qwen","id":"qwen/qwen3-coder","knowledge":"2025-04","last_updated":"2025-07-23","limit":{"context":262144,"output":66536},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Coder","open_weights":true,"reasoning":false,"release_date":"2025-07-23","temperature":true,"tool_call":true},"x-ai/grok-4":{"attachment":false,"cost":{"cache_read":0.75,"cache_write":15,"input":3,"output":15},"family":"grok","id":"x-ai/grok-4","knowledge":"2025-07","last_updated":"2025-07-09","limit":{"context":256000,"output":64000},"modalities":{"input":["text"],"output":["text"]},"name":"Grok 4","open_weights":false,"reasoning":true,"release_date":"2025-07-09","temperature":true,"tool_call":true},"z-ai/glm-5":{"attachment":false,"cost":{"input":0.95,"output":3.15},"family":"glm","id":"z-ai/glm-5","interleaved":{"field":"reasoning_content"},"last_updated":"2026-02-11","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-5","open_weights":true,"reasoning":true,"release_date":"2026-02-11","temperature":true,"tool_call":true}},"name":"FastRouter","npm":"@ai-sdk/openai-compatible"},"firepass":{"api":"https://api.fireworks.ai/inference/v1/","doc":"https://docs.fireworks.ai/firepass","env":["FIREPASS_API_KEY"],"id":"firepass","models":{"accounts/fireworks/routers/kimi-k2p6-turbo":{"attachment":false,"cost":{"cache_read":0,"input":0,"output":0},"family":"kimi-thinking","id":"accounts/fireworks/routers/kimi-k2p6-turbo","interleaved":{"field":"reasoning_content"},"last_updated":"2026-04-17","limit":{"context":262000,"output":262000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Kimi K2.6 Turbo","open_weights":true,"reasoning":true,"release_date":"2026-04-17","temperature":true,"tool_call":true}},"name":"Fireworks (Firepass)","npm":"@ai-sdk/openai-compatible"},"fireworks-ai":{"api":"https://api.fireworks.ai/inference/v1/","doc":"https://fireworks.ai/docs/","env":["FIREWORKS_API_KEY"],"id":"fireworks-ai","models":{"accounts/fireworks/models/deepseek-v4-flash":{"attachment":false,"cost":{"cache_read":0.03,"input":0.14,"output":0.28},"family":"deepseek-flash","id":"accounts/fireworks/models/deepseek-v4-flash","interleaved":{"field":"reasoning_content"},"knowledge":"2025-05","last_updated":"2026-04-24","limit":{"context":1000000,"output":384000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V4 Flash","open_weights":true,"reasoning":true,"release_date":"2026-04-24","structured_output":true,"temperature":true,"tool_call":true},"accounts/fireworks/models/deepseek-v4-pro":{"attachment":false,"cost":{"cache_read":0.145,"input":1.74,"output":3.48},"family":"deepseek-thinking","id":"accounts/fireworks/models/deepseek-v4-pro","interleaved":{"field":"reasoning_content"},"knowledge":"2025-05","last_updated":"2026-04-24","limit":{"context":1000000,"output":384000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V4 Pro","open_weights":true,"reasoning":true,"release_date":"2026-04-24","structured_output":true,"temperature":true,"tool_call":true},"accounts/fireworks/models/glm-5p1":{"attachment":false,"cost":{"cache_read":0.26,"input":1.4,"output":4.4},"family":"glm","id":"accounts/fireworks/models/glm-5p1","interleaved":{"field":"reasoning_content"},"last_updated":"2026-04-01","limit":{"context":202800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 5.1","open_weights":true,"reasoning":true,"release_date":"2026-04-01","temperature":true,"tool_call":true},"accounts/fireworks/models/gpt-oss-120b":{"attachment":false,"cost":{"cache_read":0.015,"input":0.15,"output":0.6},"family":"gpt-oss","id":"accounts/fireworks/models/gpt-oss-120b","last_updated":"2025-08-05","limit":{"context":131072,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"GPT OSS 120B","open_weights":true,"reasoning":true,"release_date":"2025-08-05","temperature":true,"tool_call":true},"accounts/fireworks/models/gpt-oss-20b":{"attachment":false,"cost":{"cache_read":0.035,"input":0.07,"output":0.3},"family":"gpt-oss","id":"accounts/fireworks/models/gpt-oss-20b","last_updated":"2025-08-05","limit":{"context":131072,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"GPT OSS 20B","open_weights":true,"reasoning":true,"release_date":"2025-08-05","temperature":true,"tool_call":true},"accounts/fireworks/models/kimi-k2p5":{"attachment":false,"cost":{"cache_read":0.1,"input":0.6,"output":3},"family":"kimi-thinking","id":"accounts/fireworks/models/kimi-k2p5","interleaved":{"field":"reasoning_content"},"knowledge":"2025-01","last_updated":"2026-01-27","limit":{"context":256000,"output":256000},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Kimi K2.5","open_weights":true,"reasoning":true,"release_date":"2026-01-27","temperature":true,"tool_call":true},"accounts/fireworks/models/kimi-k2p6":{"attachment":false,"cost":{"cache_read":0.16,"input":0.95,"output":4},"family":"kimi-thinking","id":"accounts/fireworks/models/kimi-k2p6","interleaved":{"field":"reasoning_content"},"last_updated":"2026-04-17","limit":{"context":262000,"output":262000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Kimi K2.6","open_weights":true,"reasoning":true,"release_date":"2026-04-17","temperature":true,"tool_call":true},"accounts/fireworks/models/minimax-m2p5":{"attachment":false,"cost":{"cache_read":0.03,"input":0.3,"output":1.2},"family":"minimax","id":"accounts/fireworks/models/minimax-m2p5","interleaved":{"field":"reasoning_content"},"last_updated":"2026-02-12","limit":{"context":196608,"output":196608},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2.5","open_weights":true,"reasoning":true,"release_date":"2026-02-12","temperature":true,"tool_call":true},"accounts/fireworks/models/minimax-m2p7":{"attachment":false,"cost":{"cache_read":0.06,"input":0.3,"output":1.2},"family":"minimax","id":"accounts/fireworks/models/minimax-m2p7","interleaved":{"field":"reasoning_content"},"last_updated":"2026-04-12","limit":{"context":196608,"output":196608},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2.7","open_weights":true,"reasoning":true,"release_date":"2026-04-12","temperature":true,"tool_call":true},"accounts/fireworks/models/qwen3p6-plus":{"attachment":true,"cost":{"cache_read":0.1,"input":0.5,"output":3},"family":"qwen","id":"accounts/fireworks/models/qwen3p6-plus","last_updated":"2026-04-04","limit":{"context":262144,"output":65536},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen 3.6 Plus","open_weights":false,"reasoning":true,"release_date":"2026-04-04","temperature":true,"tool_call":true},"accounts/fireworks/routers/glm-5p1-fast":{"attachment":false,"cost":{"cache_read":0.52,"input":2.8,"output":8.8},"family":"glm","id":"accounts/fireworks/routers/glm-5p1-fast","interleaved":{"field":"reasoning_content"},"last_updated":"2026-04-01","limit":{"context":202800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 5.1 Fast","open_weights":true,"reasoning":true,"release_date":"2026-04-01","temperature":true,"tool_call":true},"accounts/fireworks/routers/kimi-k2p6-turbo":{"attachment":false,"cost":{"cache_read":0.3,"input":2,"output":8},"family":"kimi-thinking","id":"accounts/fireworks/routers/kimi-k2p6-turbo","interleaved":{"field":"reasoning_content"},"last_updated":"2026-04-17","limit":{"context":262000,"output":262000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Kimi K2.6 Turbo","open_weights":true,"reasoning":true,"release_date":"2026-04-17","temperature":true,"tool_call":true}},"name":"Fireworks AI","npm":"@ai-sdk/openai-compatible"},"friendli":{"api":"https://api.friendli.ai/serverless/v1","doc":"https://friendli.ai/docs/guides/serverless_endpoints/introduction","env":["FRIENDLI_TOKEN"],"id":"friendli","models":{"MiniMaxAI/MiniMax-M2.5":{"attachment":false,"cost":{"cache_read":0.06,"input":0.3,"output":1.2},"family":"minimax","id":"MiniMaxAI/MiniMax-M2.5","interleaved":{"field":"reasoning_content"},"last_updated":"2026-02-12","limit":{"context":196608,"output":196608},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2.5","open_weights":true,"reasoning":true,"release_date":"2026-02-12","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen3-235B-A22B-Instruct-2507":{"attachment":false,"cost":{"input":0.2,"output":0.8},"family":"qwen","id":"Qwen/Qwen3-235B-A22B-Instruct-2507","last_updated":"2026-01-29","limit":{"context":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 235B A22B Instruct 2507","open_weights":true,"reasoning":false,"release_date":"2025-07-29","structured_output":true,"temperature":true,"tool_call":true},"meta-llama/Llama-3.1-8B-Instruct":{"attachment":false,"cost":{"input":0.1,"output":0.1},"family":"llama","id":"meta-llama/Llama-3.1-8B-Instruct","last_updated":"2025-12-23","limit":{"context":131072,"output":8000},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.1 8B Instruct","open_weights":true,"reasoning":false,"release_date":"2024-08-01","structured_output":true,"temperature":true,"tool_call":true},"meta-llama/Llama-3.3-70B-Instruct":{"attachment":false,"cost":{"input":0.6,"output":0.6},"family":"llama","id":"meta-llama/Llama-3.3-70B-Instruct","last_updated":"2025-12-23","limit":{"context":131072,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.3 70B Instruct","open_weights":true,"reasoning":false,"release_date":"2024-08-01","structured_output":true,"temperature":true,"tool_call":true},"zai-org/GLM-5":{"attachment":false,"cost":{"cache_read":0.5,"input":1,"output":3.2},"family":"glm","id":"zai-org/GLM-5","interleaved":{"field":"reasoning_content"},"last_updated":"2026-02-12","limit":{"context":202752,"output":202752},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-5","open_weights":true,"reasoning":true,"release_date":"2026-02-12","structured_output":true,"temperature":true,"tool_call":true},"zai-org/GLM-5.1":{"attachment":false,"cost":{"cache_read":0.26,"input":1.4,"output":4.4},"family":"glm","id":"zai-org/GLM-5.1","interleaved":{"field":"reasoning_content"},"last_updated":"2026-04-07","limit":{"context":202752,"output":202752},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-5.1","open_weights":true,"reasoning":true,"release_date":"2026-04-07","structured_output":true,"temperature":true,"tool_call":true}},"name":"Friendli","npm":"@ai-sdk/openai-compatible"},"frogbot":{"api":"https://app.frogbot.ai/api/v1","doc":"https://docs.frogbot.ai","env":["FROGBOT_API_KEY"],"id":"frogbot","models":{"claude-haiku-4-5":{"attachment":true,"cost":{"cache_read":0.1,"cache_write":1.25,"input":1,"output":5},"family":"claude-haiku","id":"claude-haiku-4-5","knowledge":"2025-02-28","last_updated":"2025-10-15","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Haiku 4.5","open_weights":false,"reasoning":true,"release_date":"2025-10-15","temperature":true,"tool_call":true},"claude-opus-4-6":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"input":5,"output":25},"family":"claude-opus","id":"claude-opus-4-6","knowledge":"2025-05-31","last_updated":"2026-02-05","limit":{"context":200000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.6","open_weights":false,"reasoning":true,"release_date":"2026-02-05","temperature":true,"tool_call":true},"claude-opus-4-7":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"input":5,"output":25},"family":"claude-opus","id":"claude-opus-4-7","knowledge":"2026-01-31","last_updated":"2026-04-16","limit":{"context":200000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.7","open_weights":false,"reasoning":true,"release_date":"2026-04-16","temperature":false,"tool_call":true},"claude-sonnet-4-6":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"input":3,"output":15},"family":"claude-sonnet","id":"claude-sonnet-4-6","knowledge":"2025-08-31","last_updated":"2026-02-17","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 4.6","open_weights":false,"reasoning":true,"release_date":"2026-02-17","temperature":true,"tool_call":true},"deepseek-v4-pro":{"attachment":true,"cost":{"cache_read":0.14,"input":1.74,"output":3.48},"family":"deepseek","id":"deepseek-v4-pro","knowledge":"2026-01","last_updated":"2026-04-24","limit":{"context":128000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek v4 Pro","open_weights":false,"reasoning":false,"release_date":"2026-04-24","temperature":true,"tool_call":true},"gemini-2.5-flash":{"attachment":true,"cost":{"cache_read":0.075,"input":0.3,"output":2.5},"family":"gemini-flash","id":"gemini-2.5-flash","knowledge":"2025-01","last_updated":"2025-07-17","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"Gemini 2.5 Flash","open_weights":false,"reasoning":true,"release_date":"2025-07-17","temperature":true,"tool_call":true},"gemini-2.5-pro":{"attachment":true,"cost":{"cache_read":0.31,"input":1.25,"output":10},"family":"gemini-pro","id":"gemini-2.5-pro","knowledge":"2025-01","last_updated":"2025-06-05","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"Gemini 2.5 Pro","open_weights":false,"reasoning":true,"release_date":"2025-03-20","temperature":true,"tool_call":true},"gemini-3-1-pro-preview":{"attachment":true,"cost":{"cache_read":0.2,"input":2,"output":12},"family":"gemini-pro","id":"gemini-3-1-pro-preview","knowledge":"2026-01","last_updated":"2026-02-18","limit":{"context":1000000,"output":64000},"modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"name":"Gemini 3.1 Pro Preview","open_weights":false,"reasoning":true,"release_date":"2026-02-18","structured_output":true,"temperature":true,"tool_call":true},"gemini-3-flash-preview":{"attachment":true,"cost":{"cache_read":0.05,"input":0.5,"output":3},"family":"gemini-flash","id":"gemini-3-flash-preview","knowledge":"2025-01","last_updated":"2025-12-17","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"name":"Gemini 3 Flash Preview","open_weights":false,"reasoning":true,"release_date":"2025-12-17","structured_output":true,"temperature":true,"tool_call":true},"gpt-4o":{"attachment":true,"cost":{"cache_read":1.25,"input":2.5,"output":10},"family":"gpt","id":"gpt-4o","knowledge":"2023-09","last_updated":"2024-08-06","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-4o","open_weights":false,"reasoning":false,"release_date":"2024-05-13","structured_output":true,"temperature":true,"tool_call":true},"gpt-5-3-codex":{"attachment":true,"cost":{"cache_read":0.175,"input":1.75,"output":14},"family":"gpt","id":"gpt-5-3-codex","knowledge":"2026-01-31","last_updated":"2026-02-15","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.3 Codex","open_weights":false,"reasoning":true,"release_date":"2026-02-15","temperature":false,"tool_call":true},"gpt-5-4-mini":{"attachment":true,"cost":{"cache_read":0.075,"input":0.75,"output":4.5},"family":"gpt-mini","id":"gpt-5-4-mini","knowledge":"2025-08-31","last_updated":"2026-03-17","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.4 Mini","open_weights":false,"reasoning":true,"release_date":"2026-03-17","structured_output":true,"temperature":false,"tool_call":true},"gpt-5-4-nano":{"attachment":true,"cost":{"cache_read":0.02,"input":0.2,"output":1.25},"family":"gpt-nano","id":"gpt-5-4-nano","knowledge":"2024-05-30","last_updated":"2025-08-07","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.4 Nano","open_weights":false,"reasoning":true,"release_date":"2025-08-07","structured_output":true,"temperature":false,"tool_call":true},"gpt-5-5":{"attachment":true,"cost":{"cache_read":0.25,"input":2.5,"output":15},"family":"gpt","id":"gpt-5-5","knowledge":"2025-08-31","last_updated":"2026-03-05","limit":{"context":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.5","open_weights":false,"reasoning":true,"release_date":"2026-03-05","temperature":false,"tool_call":true},"gpt-oss-120b":{"attachment":false,"cost":{"input":0.15,"output":0.6},"family":"gpt-oss","id":"gpt-oss-120b","last_updated":"1970-01-01","limit":{"context":131072,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"GPT OSS 120B","open_weights":true,"reasoning":true,"release_date":"1970-01-01","structured_output":true,"temperature":true,"tool_call":true},"gpt-oss-20b":{"attachment":false,"cost":{"input":0.07,"output":0.2},"family":"gpt-oss","id":"gpt-oss-20b","last_updated":"1970-01-01","limit":{"context":131072,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"GPT OSS 20B","open_weights":true,"reasoning":true,"release_date":"1970-01-01","structured_output":true,"temperature":true,"tool_call":true},"grok-4-1-fast-non-reasoning":{"attachment":true,"cost":{"cache_read":0.05,"input":0.2,"output":0.5},"family":"grok","id":"grok-4-1-fast-non-reasoning","knowledge":"2025-11","last_updated":"2025-11-25","limit":{"context":2000000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Grok 4.1 Fast (Non-Reasoning)","open_weights":false,"reasoning":false,"release_date":"2025-11-25","temperature":true,"tool_call":true},"grok-4-1-fast-reasoning":{"attachment":true,"cost":{"cache_read":0.05,"input":0.2,"output":0.5},"family":"grok","id":"grok-4-1-fast-reasoning","knowledge":"2025-11","last_updated":"2025-11-25","limit":{"context":2000000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Grok 4.1 Fast (Reasoning)","open_weights":false,"reasoning":true,"release_date":"2025-11-25","temperature":true,"tool_call":true},"grok-4-3":{"attachment":true,"cost":{"cache_read":0.2,"input":1.25,"output":2.5},"family":"grok","id":"grok-4-3","knowledge":"2024-11","last_updated":"2026-04-30","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Grok 4.3","open_weights":false,"reasoning":true,"release_date":"2026-04-30","structured_output":true,"temperature":true,"tool_call":true},"grok-code-fast-1":{"attachment":false,"cost":{"cache_read":0.02,"input":0.2,"output":1.5},"family":"grok","id":"grok-code-fast-1","knowledge":"2023-10","last_updated":"2025-08-28","limit":{"context":256000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"Grok 4.1 Fast (Reasoning)","open_weights":false,"reasoning":true,"release_date":"2025-08-28","temperature":true,"tool_call":true},"kimi-k2-6":{"attachment":false,"cost":{"cache_read":0.16,"input":0.95,"output":4},"id":"kimi-k2-6","last_updated":"1970-01-01","limit":{"context":256000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Kimi-K2.6","open_weights":false,"reasoning":true,"release_date":"1970-01-01","structured_output":true,"temperature":true,"tool_call":true},"kimi-k2.5":{"attachment":false,"cost":{"cache_read":0.1,"input":0.6,"output":3},"id":"kimi-k2.5","last_updated":"1970-01-01","limit":{"context":256000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Kimi-K2.5","open_weights":false,"reasoning":true,"release_date":"1970-01-01","structured_output":true,"temperature":true,"tool_call":true},"minimax-m2-5":{"attachment":true,"cost":{"cache_read":0.03,"input":0.3,"output":1.2},"family":"minimax","id":"minimax-m2-5","knowledge":"2024-09","last_updated":"2025-02-22","limit":{"context":192000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2.5","open_weights":false,"reasoning":false,"release_date":"2025-01-15","temperature":true,"tool_call":true},"minimax-m2-7":{"attachment":true,"cost":{"cache_read":0.06,"input":0.3,"output":1.2},"family":"minimax","id":"minimax-m2-7","knowledge":"2024-09","last_updated":"2026-03-18","limit":{"context":192000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2.7","open_weights":false,"reasoning":false,"release_date":"2026-03-18","temperature":true,"tool_call":true},"qwen-3-6-plus":{"attachment":true,"cost":{"cache_read":0.1,"input":0.5,"output":3},"family":"qwen","id":"qwen-3-6-plus","last_updated":"2026-04-03","limit":{"context":1000000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Qwen 3.6 Plus","open_weights":false,"reasoning":true,"release_date":"2026-04-02","temperature":true,"tool_call":true},"zai-glm-5-1":{"attachment":true,"cost":{"cache_read":0.26,"input":1.4,"output":4.4},"family":"glm","id":"zai-glm-5-1","knowledge":"2024-10","last_updated":"2025-02-22","limit":{"context":198000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Z.AI GLM-5.1","open_weights":true,"reasoning":false,"release_date":"2025-01-20","temperature":true,"tool_call":true}},"name":"FrogBot","npm":"@ai-sdk/openai-compatible"},"github-copilot":{"api":"https://api.githubcopilot.com","doc":"https://docs.github.com/en/copilot","env":["GITHUB_TOKEN"],"id":"github-copilot","models":{"claude-haiku-4.5":{"attachment":true,"cost":{"cache_read":0.1,"cache_write":1.25,"input":1,"output":5},"family":"claude-haiku","id":"claude-haiku-4.5","knowledge":"2025-02-28","last_updated":"2025-10-15","limit":{"context":200000,"input":136000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Haiku 4.5 (latest)","open_weights":false,"reasoning":true,"release_date":"2025-10-15","temperature":true,"tool_call":true},"claude-opus-4.5":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"input":5,"output":25},"family":"claude-opus","id":"claude-opus-4.5","knowledge":"2025-03-31","last_updated":"2025-11-24","limit":{"context":200000,"input":168000,"output":32000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.5 (latest)","open_weights":false,"reasoning":true,"release_date":"2025-11-24","temperature":true,"tool_call":true},"claude-opus-4.6":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"input":5,"output":25},"experimental":{"modes":{"fast":{"cost":{"cache_read":3,"cache_write":37.5,"input":30,"output":150},"provider":{"body":{"speed":"fast"},"headers":{"anthropic-beta":"fast-mode-2026-02-01"}}}}},"family":"claude-opus","id":"claude-opus-4.6","knowledge":"2025-05-31","last_updated":"2026-03-13","limit":{"context":200000,"input":168000,"output":32000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.6","open_weights":false,"reasoning":true,"release_date":"2026-02-05","temperature":true,"tool_call":true},"claude-opus-4.7":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"input":5,"output":25},"experimental":{"modes":{"fast":{"cost":{"cache_read":3,"cache_write":37.5,"input":30,"output":150},"provider":{"body":{"speed":"fast"},"headers":{"anthropic-beta":"fast-mode-2026-02-01"}}}}},"family":"claude-opus","id":"claude-opus-4.7","knowledge":"2026-01-31","last_updated":"2026-04-16","limit":{"context":200000,"input":168000,"output":32000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.7","open_weights":false,"reasoning":true,"release_date":"2026-04-16","temperature":false,"tool_call":true},"claude-opus-4.8":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"input":5,"output":25},"experimental":{"modes":{"fast":{"cost":{"cache_read":1,"cache_write":12.5,"input":10,"output":50},"provider":{"body":{"speed":"fast"},"headers":{"anthropic-beta":"fast-mode-2026-02-01"}}}}},"family":"claude-opus","id":"claude-opus-4.8","last_updated":"2026-05-28","limit":{"context":200000,"input":168000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.8","open_weights":false,"reasoning":true,"release_date":"2026-05-28","temperature":false,"tool_call":true},"claude-sonnet-4":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"input":3,"output":15},"family":"claude-sonnet","id":"claude-sonnet-4","knowledge":"2025-03-31","last_updated":"2025-05-22","limit":{"context":216000,"input":128000,"output":16000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 4 (latest)","open_weights":false,"reasoning":true,"release_date":"2025-05-22","temperature":true,"tool_call":true},"claude-sonnet-4.5":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"input":3,"output":15},"family":"claude-sonnet","id":"claude-sonnet-4.5","knowledge":"2025-07-31","last_updated":"2025-09-29","limit":{"context":200000,"input":168000,"output":32000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 4.5 (latest)","open_weights":false,"reasoning":true,"release_date":"2025-09-29","temperature":true,"tool_call":true},"claude-sonnet-4.6":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"input":3,"output":15},"family":"claude-sonnet","id":"claude-sonnet-4.6","knowledge":"2025-08-31","last_updated":"2026-03-13","limit":{"context":200000,"input":168000,"output":32000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 4.6","open_weights":false,"reasoning":true,"release_date":"2026-02-17","temperature":true,"tool_call":true},"gemini-2.5-pro":{"attachment":true,"cost":{"cache_read":0.125,"context_over_200k":{"cache_read":0.25,"input":2.5,"output":15},"input":1.25,"output":10,"tiers":[{"cache_read":0.25,"input":2.5,"output":15,"tier":{"size":200000,"type":"context"}}]},"family":"gemini-pro","id":"gemini-2.5-pro","knowledge":"2025-01","last_updated":"2025-06-05","limit":{"context":128000,"input":128000,"output":64000},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"Gemini 2.5 Pro","open_weights":false,"reasoning":true,"release_date":"2025-03-20","structured_output":true,"temperature":true,"tool_call":true},"gemini-3-flash-preview":{"attachment":true,"cost":{"cache_read":0.05,"input":0.5,"input_audio":1,"output":3},"family":"gemini-flash","id":"gemini-3-flash-preview","knowledge":"2025-01","last_updated":"2025-12-17","limit":{"context":128000,"input":128000,"output":64000},"modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"name":"Gemini 3 Flash Preview","open_weights":false,"reasoning":true,"release_date":"2025-12-17","structured_output":true,"temperature":true,"tool_call":true},"gemini-3.1-pro-preview":{"attachment":true,"cost":{"cache_read":0.2,"context_over_200k":{"cache_read":0.4,"input":4,"output":18},"input":2,"output":12,"tiers":[{"cache_read":0.4,"input":4,"output":18,"tier":{"size":200000,"type":"context"}}]},"family":"gemini-pro","id":"gemini-3.1-pro-preview","knowledge":"2025-01","last_updated":"2026-02-19","limit":{"context":200000,"input":136000,"output":64000},"modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"name":"Gemini 3.1 Pro Preview","open_weights":false,"reasoning":true,"release_date":"2026-02-19","structured_output":true,"temperature":true,"tool_call":true},"gemini-3.5-flash":{"attachment":true,"cost":{"cache_read":0.15,"input":1.5,"input_audio":1.5,"output":9},"family":"gemini-flash","id":"gemini-3.5-flash","knowledge":"2025-01","last_updated":"2026-05-19","limit":{"context":200000,"input":128000,"output":64000},"modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"name":"Gemini 3.5 Flash","open_weights":false,"reasoning":true,"release_date":"2026-05-19","structured_output":true,"temperature":true,"tool_call":true},"gpt-4.1":{"attachment":true,"cost":{"cache_read":0.5,"input":2,"output":8},"family":"gpt","id":"gpt-4.1","knowledge":"2024-04","last_updated":"2025-04-14","limit":{"context":128000,"input":128000,"output":16384},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-4.1","open_weights":false,"reasoning":false,"release_date":"2025-04-14","structured_output":true,"temperature":true,"tool_call":true},"gpt-5-mini":{"attachment":true,"cost":{"cache_read":0.025,"input":0.25,"output":2},"family":"gpt-mini","id":"gpt-5-mini","knowledge":"2024-05-30","last_updated":"2025-08-07","limit":{"context":264000,"input":128000,"output":64000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5 Mini","open_weights":false,"reasoning":true,"release_date":"2025-08-07","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.2":{"attachment":true,"cost":{"cache_read":0.175,"input":1.75,"output":14},"family":"gpt","id":"gpt-5.2","knowledge":"2025-08-31","last_updated":"2025-12-11","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.2","open_weights":false,"reasoning":true,"release_date":"2025-12-11","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.2-codex":{"attachment":true,"cost":{"cache_read":0.175,"input":1.75,"output":14},"family":"gpt-codex","id":"gpt-5.2-codex","knowledge":"2025-08-31","last_updated":"2025-12-11","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5.2 Codex","open_weights":false,"reasoning":true,"release_date":"2025-12-11","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.3-codex":{"attachment":true,"cost":{"cache_read":0.175,"input":1.75,"output":14},"family":"gpt-codex","id":"gpt-5.3-codex","knowledge":"2025-08-31","last_updated":"2026-02-05","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5.3 Codex","open_weights":false,"reasoning":true,"release_date":"2026-02-05","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.4":{"attachment":true,"cost":{"cache_read":0.25,"context_over_200k":{"cache_read":0.5,"input":5,"output":22.5},"input":2.5,"output":15,"tiers":[{"cache_read":0.5,"input":5,"output":22.5,"tier":{"size":272000,"type":"context"}}]},"experimental":{"modes":{"fast":{"cost":{"cache_read":0.5,"input":5,"output":30},"provider":{"body":{"service_tier":"priority"}}}}},"family":"gpt","id":"gpt-5.4","knowledge":"2025-08-31","last_updated":"2026-03-05","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5.4","open_weights":false,"reasoning":true,"release_date":"2026-03-05","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.4-mini":{"attachment":true,"cost":{"cache_read":0.075,"input":0.75,"output":4.5},"experimental":{"modes":{"fast":{"cost":{"cache_read":0.15,"input":1.5,"output":9},"provider":{"body":{"service_tier":"priority"}}}}},"family":"gpt-mini","id":"gpt-5.4-mini","knowledge":"2025-08-31","last_updated":"2026-03-17","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.4 mini","open_weights":false,"reasoning":true,"release_date":"2026-03-17","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.4-nano":{"attachment":true,"cost":{"cache_read":0.02,"input":0.2,"output":1.25},"family":"gpt-nano","id":"gpt-5.4-nano","knowledge":"2025-08-31","last_updated":"2026-03-17","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.4 nano","open_weights":false,"reasoning":true,"release_date":"2026-03-17","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.5":{"attachment":true,"cost":{"cache_read":0.5,"context_over_200k":{"cache_read":1,"input":10,"output":45},"input":5,"output":30,"tiers":[{"cache_read":1,"input":10,"output":45,"tier":{"size":272000,"type":"context"}}]},"experimental":{"modes":{"fast":{"cost":{"cache_read":1.25,"input":12.5,"output":75},"provider":{"body":{"service_tier":"priority"}}}}},"family":"gpt","id":"gpt-5.5","knowledge":"2025-12-01","last_updated":"2026-04-23","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5.5","open_weights":false,"reasoning":true,"release_date":"2026-04-23","structured_output":true,"temperature":false,"tool_call":true},"raptor-mini":{"attachment":true,"cost":{"cache_read":0.025,"input":0.25,"output":2},"family":"gpt-mini","id":"raptor-mini","knowledge":"2024-05-30","last_updated":"2025-08-07","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Raptor mini","open_weights":false,"reasoning":true,"release_date":"2025-08-07","structured_output":true,"temperature":false,"tool_call":true}},"name":"GitHub Copilot","npm":"@ai-sdk/openai-compatible"},"github-models":{"api":"https://models.github.ai/inference","doc":"https://docs.github.com/en/github-models","env":["GITHUB_TOKEN"],"id":"github-models","models":{"ai21-labs/ai21-jamba-1.5-large":{"attachment":false,"cost":{"input":0,"output":0},"family":"jamba","id":"ai21-labs/ai21-jamba-1.5-large","knowledge":"2024-03","last_updated":"2024-08-29","limit":{"context":256000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"AI21 Jamba 1.5 Large","open_weights":false,"reasoning":true,"release_date":"2024-08-29","temperature":true,"tool_call":true},"ai21-labs/ai21-jamba-1.5-mini":{"attachment":false,"cost":{"input":0,"output":0},"family":"jamba","id":"ai21-labs/ai21-jamba-1.5-mini","knowledge":"2024-03","last_updated":"2024-08-29","limit":{"context":256000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"AI21 Jamba 1.5 Mini","open_weights":false,"reasoning":true,"release_date":"2024-08-29","temperature":true,"tool_call":true},"cohere/cohere-command-a":{"attachment":false,"cost":{"input":0,"output":0},"family":"command-a","id":"cohere/cohere-command-a","knowledge":"2024-03","last_updated":"2024-11-01","limit":{"context":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Cohere Command A","open_weights":false,"reasoning":true,"release_date":"2024-11-01","temperature":true,"tool_call":true},"cohere/cohere-command-r":{"attachment":false,"cost":{"input":0,"output":0},"family":"command-r","id":"cohere/cohere-command-r","knowledge":"2024-03","last_updated":"2024-08-01","limit":{"context":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Cohere Command R","open_weights":false,"reasoning":true,"release_date":"2024-03-11","temperature":true,"tool_call":true},"cohere/cohere-command-r-08-2024":{"attachment":false,"cost":{"input":0,"output":0},"family":"command-r","id":"cohere/cohere-command-r-08-2024","knowledge":"2024-03","last_updated":"2024-08-01","limit":{"context":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Cohere Command R 08-2024","open_weights":false,"reasoning":false,"release_date":"2024-08-01","temperature":true,"tool_call":true},"cohere/cohere-command-r-plus":{"attachment":false,"cost":{"input":0,"output":0},"family":"command-r","id":"cohere/cohere-command-r-plus","knowledge":"2024-03","last_updated":"2024-08-01","limit":{"context":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Cohere Command R+","open_weights":false,"reasoning":false,"release_date":"2024-04-04","temperature":true,"tool_call":true},"cohere/cohere-command-r-plus-08-2024":{"attachment":false,"cost":{"input":0,"output":0},"family":"command-r","id":"cohere/cohere-command-r-plus-08-2024","knowledge":"2024-03","last_updated":"2024-08-01","limit":{"context":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Cohere Command R+ 08-2024","open_weights":false,"reasoning":false,"release_date":"2024-08-01","temperature":true,"tool_call":true},"core42/jais-30b-chat":{"attachment":false,"cost":{"input":0,"output":0},"family":"jais","id":"core42/jais-30b-chat","knowledge":"2023-03","last_updated":"2023-08-30","limit":{"context":8192,"output":2048},"modalities":{"input":["text"],"output":["text"]},"name":"JAIS 30b Chat","open_weights":true,"reasoning":true,"release_date":"2023-08-30","temperature":true,"tool_call":true},"deepseek/deepseek-r1":{"attachment":false,"cost":{"input":0,"output":0},"family":"deepseek-thinking","id":"deepseek/deepseek-r1","knowledge":"2024-06","last_updated":"2025-01-20","limit":{"context":65536,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek-R1","open_weights":true,"reasoning":true,"release_date":"2025-01-20","temperature":true,"tool_call":true},"deepseek/deepseek-r1-0528":{"attachment":false,"cost":{"input":0,"output":0},"family":"deepseek-thinking","id":"deepseek/deepseek-r1-0528","knowledge":"2024-06","last_updated":"2025-05-28","limit":{"context":65536,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek-R1-0528","open_weights":true,"reasoning":true,"release_date":"2025-05-28","temperature":true,"tool_call":true},"deepseek/deepseek-v3-0324":{"attachment":false,"cost":{"input":0,"output":0},"family":"deepseek","id":"deepseek/deepseek-v3-0324","knowledge":"2024-06","last_updated":"2025-03-24","limit":{"context":128000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek-V3-0324","open_weights":true,"reasoning":true,"release_date":"2025-03-24","temperature":true,"tool_call":true},"meta/llama-3.2-11b-vision-instruct":{"attachment":false,"cost":{"input":0,"output":0},"family":"llama","id":"meta/llama-3.2-11b-vision-instruct","knowledge":"2023-12","last_updated":"2024-09-25","limit":{"context":128000,"output":8192},"modalities":{"input":["text","image","audio"],"output":["text"]},"name":"Llama-3.2-11B-Vision-Instruct","open_weights":true,"reasoning":true,"release_date":"2024-09-25","temperature":true,"tool_call":true},"meta/llama-3.2-90b-vision-instruct":{"attachment":false,"cost":{"input":0,"output":0},"family":"llama","id":"meta/llama-3.2-90b-vision-instruct","knowledge":"2023-12","last_updated":"2024-09-25","limit":{"context":128000,"output":8192},"modalities":{"input":["text","image","audio"],"output":["text"]},"name":"Llama-3.2-90B-Vision-Instruct","open_weights":true,"reasoning":true,"release_date":"2024-09-25","temperature":true,"tool_call":true},"meta/llama-3.3-70b-instruct":{"attachment":false,"cost":{"input":0,"output":0},"family":"llama","id":"meta/llama-3.3-70b-instruct","knowledge":"2023-12","last_updated":"2024-12-06","limit":{"context":128000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Llama-3.3-70B-Instruct","open_weights":true,"reasoning":true,"release_date":"2024-12-06","temperature":true,"tool_call":true},"meta/llama-4-maverick-17b-128e-instruct-fp8":{"attachment":false,"cost":{"input":0,"output":0},"family":"llama","id":"meta/llama-4-maverick-17b-128e-instruct-fp8","knowledge":"2024-12","last_updated":"2025-01-31","limit":{"context":128000,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Llama 4 Maverick 17B 128E Instruct FP8","open_weights":true,"reasoning":true,"release_date":"2025-01-31","temperature":true,"tool_call":true},"meta/llama-4-scout-17b-16e-instruct":{"attachment":false,"cost":{"input":0,"output":0},"family":"llama","id":"meta/llama-4-scout-17b-16e-instruct","knowledge":"2024-12","last_updated":"2025-01-31","limit":{"context":128000,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Llama 4 Scout 17B 16E Instruct","open_weights":true,"reasoning":true,"release_date":"2025-01-31","temperature":true,"tool_call":true},"meta/meta-llama-3-70b-instruct":{"attachment":false,"cost":{"input":0,"output":0},"family":"llama","id":"meta/meta-llama-3-70b-instruct","knowledge":"2023-12","last_updated":"2024-04-18","limit":{"context":8192,"output":2048},"modalities":{"input":["text"],"output":["text"]},"name":"Meta-Llama-3-70B-Instruct","open_weights":true,"reasoning":true,"release_date":"2024-04-18","temperature":true,"tool_call":true},"meta/meta-llama-3-8b-instruct":{"attachment":false,"cost":{"input":0,"output":0},"family":"llama","id":"meta/meta-llama-3-8b-instruct","knowledge":"2023-12","last_updated":"2024-04-18","limit":{"context":8192,"output":2048},"modalities":{"input":["text"],"output":["text"]},"name":"Meta-Llama-3-8B-Instruct","open_weights":true,"reasoning":true,"release_date":"2024-04-18","temperature":true,"tool_call":true},"meta/meta-llama-3.1-405b-instruct":{"attachment":false,"cost":{"input":0,"output":0},"family":"llama","id":"meta/meta-llama-3.1-405b-instruct","knowledge":"2023-12","last_updated":"2024-07-23","limit":{"context":128000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Meta-Llama-3.1-405B-Instruct","open_weights":true,"reasoning":true,"release_date":"2024-07-23","temperature":true,"tool_call":true},"meta/meta-llama-3.1-70b-instruct":{"attachment":false,"cost":{"input":0,"output":0},"family":"llama","id":"meta/meta-llama-3.1-70b-instruct","knowledge":"2023-12","last_updated":"2024-07-23","limit":{"context":128000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Meta-Llama-3.1-70B-Instruct","open_weights":true,"reasoning":true,"release_date":"2024-07-23","temperature":true,"tool_call":true},"meta/meta-llama-3.1-8b-instruct":{"attachment":false,"cost":{"input":0,"output":0},"family":"llama","id":"meta/meta-llama-3.1-8b-instruct","knowledge":"2023-12","last_updated":"2024-07-23","limit":{"context":128000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Meta-Llama-3.1-8B-Instruct","open_weights":true,"reasoning":true,"release_date":"2024-07-23","temperature":true,"tool_call":true},"microsoft/mai-ds-r1":{"attachment":false,"cost":{"input":0,"output":0},"family":"mai","id":"microsoft/mai-ds-r1","knowledge":"2024-06","last_updated":"2025-01-20","limit":{"context":65536,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"MAI-DS-R1","open_weights":false,"reasoning":true,"release_date":"2025-01-20","temperature":true,"tool_call":true},"microsoft/phi-3-medium-128k-instruct":{"attachment":false,"cost":{"input":0,"output":0},"family":"phi","id":"microsoft/phi-3-medium-128k-instruct","knowledge":"2023-10","last_updated":"2024-04-23","limit":{"context":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Phi-3-medium instruct (128k)","open_weights":true,"reasoning":true,"release_date":"2024-04-23","temperature":true,"tool_call":true},"microsoft/phi-3-medium-4k-instruct":{"attachment":false,"cost":{"input":0,"output":0},"family":"phi","id":"microsoft/phi-3-medium-4k-instruct","knowledge":"2023-10","last_updated":"2024-04-23","limit":{"context":4096,"output":1024},"modalities":{"input":["text"],"output":["text"]},"name":"Phi-3-medium instruct (4k)","open_weights":true,"reasoning":true,"release_date":"2024-04-23","temperature":true,"tool_call":true},"microsoft/phi-3-mini-128k-instruct":{"attachment":false,"cost":{"input":0,"output":0},"family":"phi","id":"microsoft/phi-3-mini-128k-instruct","knowledge":"2023-10","last_updated":"2024-04-23","limit":{"context":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Phi-3-mini instruct (128k)","open_weights":true,"reasoning":true,"release_date":"2024-04-23","temperature":true,"tool_call":true},"microsoft/phi-3-mini-4k-instruct":{"attachment":false,"cost":{"input":0,"output":0},"family":"phi","id":"microsoft/phi-3-mini-4k-instruct","knowledge":"2023-10","last_updated":"2024-04-23","limit":{"context":4096,"output":1024},"modalities":{"input":["text"],"output":["text"]},"name":"Phi-3-mini instruct (4k)","open_weights":true,"reasoning":true,"release_date":"2024-04-23","temperature":true,"tool_call":true},"microsoft/phi-3-small-128k-instruct":{"attachment":false,"cost":{"input":0,"output":0},"family":"phi","id":"microsoft/phi-3-small-128k-instruct","knowledge":"2023-10","last_updated":"2024-04-23","limit":{"context":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Phi-3-small instruct (128k)","open_weights":true,"reasoning":true,"release_date":"2024-04-23","temperature":true,"tool_call":true},"microsoft/phi-3-small-8k-instruct":{"attachment":false,"cost":{"input":0,"output":0},"family":"phi","id":"microsoft/phi-3-small-8k-instruct","knowledge":"2023-10","last_updated":"2024-04-23","limit":{"context":8192,"output":2048},"modalities":{"input":["text"],"output":["text"]},"name":"Phi-3-small instruct (8k)","open_weights":true,"reasoning":true,"release_date":"2024-04-23","temperature":true,"tool_call":true},"microsoft/phi-3.5-mini-instruct":{"attachment":false,"cost":{"input":0,"output":0},"family":"phi","id":"microsoft/phi-3.5-mini-instruct","knowledge":"2023-10","last_updated":"2024-08-20","limit":{"context":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Phi-3.5-mini instruct (128k)","open_weights":true,"reasoning":true,"release_date":"2024-08-20","temperature":true,"tool_call":true},"microsoft/phi-3.5-moe-instruct":{"attachment":false,"cost":{"input":0,"output":0},"family":"phi","id":"microsoft/phi-3.5-moe-instruct","knowledge":"2023-10","last_updated":"2024-08-20","limit":{"context":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Phi-3.5-MoE instruct (128k)","open_weights":true,"reasoning":true,"release_date":"2024-08-20","temperature":true,"tool_call":true},"microsoft/phi-3.5-vision-instruct":{"attachment":false,"cost":{"input":0,"output":0},"family":"phi","id":"microsoft/phi-3.5-vision-instruct","knowledge":"2023-10","last_updated":"2024-08-20","limit":{"context":128000,"output":4096},"modalities":{"input":["text","image"],"output":["text"]},"name":"Phi-3.5-vision instruct (128k)","open_weights":true,"reasoning":true,"release_date":"2024-08-20","temperature":true,"tool_call":true},"microsoft/phi-4":{"attachment":false,"cost":{"input":0,"output":0},"family":"phi","id":"microsoft/phi-4","knowledge":"2023-10","last_updated":"2024-12-11","limit":{"context":16000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Phi-4","open_weights":true,"reasoning":true,"release_date":"2024-12-11","temperature":true,"tool_call":true},"microsoft/phi-4-mini-instruct":{"attachment":false,"cost":{"input":0,"output":0},"family":"phi","id":"microsoft/phi-4-mini-instruct","knowledge":"2023-10","last_updated":"2024-12-11","limit":{"context":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Phi-4-mini-instruct","open_weights":true,"reasoning":true,"release_date":"2024-12-11","temperature":true,"tool_call":true},"microsoft/phi-4-mini-reasoning":{"attachment":false,"cost":{"input":0,"output":0},"family":"phi","id":"microsoft/phi-4-mini-reasoning","knowledge":"2023-10","last_updated":"2024-12-11","limit":{"context":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Phi-4-mini-reasoning","open_weights":true,"reasoning":true,"release_date":"2024-12-11","temperature":true,"tool_call":true},"microsoft/phi-4-multimodal-instruct":{"attachment":false,"cost":{"input":0,"output":0},"family":"phi","id":"microsoft/phi-4-multimodal-instruct","knowledge":"2023-10","last_updated":"2024-12-11","limit":{"context":128000,"output":4096},"modalities":{"input":["text","image","audio"],"output":["text"]},"name":"Phi-4-multimodal-instruct","open_weights":true,"reasoning":true,"release_date":"2024-12-11","temperature":true,"tool_call":true},"microsoft/phi-4-reasoning":{"attachment":false,"cost":{"input":0,"output":0},"family":"phi","id":"microsoft/phi-4-reasoning","knowledge":"2023-10","last_updated":"2024-12-11","limit":{"context":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Phi-4-Reasoning","open_weights":true,"reasoning":true,"release_date":"2024-12-11","temperature":true,"tool_call":true},"mistral-ai/codestral-2501":{"attachment":false,"cost":{"input":0,"output":0},"family":"codestral","id":"mistral-ai/codestral-2501","knowledge":"2024-03","last_updated":"2025-01-01","limit":{"context":32000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Codestral 25.01","open_weights":false,"reasoning":true,"release_date":"2025-01-01","temperature":true,"tool_call":true},"mistral-ai/ministral-3b":{"attachment":false,"cost":{"input":0,"output":0},"family":"ministral","id":"mistral-ai/ministral-3b","knowledge":"2024-03","last_updated":"2024-10-22","limit":{"context":128000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Ministral 3B","open_weights":true,"reasoning":true,"release_date":"2024-10-22","temperature":true,"tool_call":true},"mistral-ai/mistral-large-2411":{"attachment":false,"cost":{"input":0,"output":0},"family":"mistral-large","id":"mistral-ai/mistral-large-2411","knowledge":"2024-09","last_updated":"2024-11-01","limit":{"context":128000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Mistral Large 24.11","open_weights":false,"reasoning":true,"release_date":"2024-11-01","temperature":true,"tool_call":true},"mistral-ai/mistral-medium-2505":{"attachment":false,"cost":{"input":0,"output":0},"family":"mistral-medium","id":"mistral-ai/mistral-medium-2505","knowledge":"2024-09","last_updated":"2025-05-01","limit":{"context":128000,"output":32768},"modalities":{"input":["text","image"],"output":["text"]},"name":"Mistral Medium 3 (25.05)","open_weights":false,"reasoning":true,"release_date":"2025-05-01","temperature":true,"tool_call":true},"mistral-ai/mistral-nemo":{"attachment":false,"cost":{"input":0,"output":0},"family":"mistral-nemo","id":"mistral-ai/mistral-nemo","knowledge":"2024-03","last_updated":"2024-07-18","limit":{"context":128000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Mistral Nemo","open_weights":true,"reasoning":true,"release_date":"2024-07-18","temperature":true,"tool_call":true},"mistral-ai/mistral-small-2503":{"attachment":false,"cost":{"input":0,"output":0},"family":"mistral-small","id":"mistral-ai/mistral-small-2503","knowledge":"2024-09","last_updated":"2025-03-01","limit":{"context":128000,"output":32768},"modalities":{"input":["text","image"],"output":["text"]},"name":"Mistral Small 3.1","open_weights":false,"reasoning":true,"release_date":"2025-03-01","temperature":true,"tool_call":true},"openai/gpt-4.1":{"attachment":true,"cost":{"input":0,"output":0},"family":"gpt","id":"openai/gpt-4.1","knowledge":"2024-04","last_updated":"2025-04-14","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-4.1","open_weights":false,"reasoning":false,"release_date":"2025-04-14","temperature":true,"tool_call":true},"openai/gpt-4.1-mini":{"attachment":true,"cost":{"input":0,"output":0},"family":"gpt-mini","id":"openai/gpt-4.1-mini","knowledge":"2024-04","last_updated":"2025-04-14","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-4.1-mini","open_weights":false,"reasoning":false,"release_date":"2025-04-14","temperature":true,"tool_call":true},"openai/gpt-4.1-nano":{"attachment":true,"cost":{"input":0,"output":0},"family":"gpt-nano","id":"openai/gpt-4.1-nano","knowledge":"2024-04","last_updated":"2025-04-14","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-4.1-nano","open_weights":false,"reasoning":false,"release_date":"2025-04-14","temperature":true,"tool_call":true},"openai/gpt-4o":{"attachment":true,"cost":{"input":0,"output":0},"family":"gpt","id":"openai/gpt-4o","knowledge":"2023-10","last_updated":"2024-05-13","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image","audio"],"output":["text"]},"name":"GPT-4o","open_weights":false,"reasoning":false,"release_date":"2024-05-13","temperature":true,"tool_call":true},"openai/gpt-4o-mini":{"attachment":true,"cost":{"input":0,"output":0},"family":"gpt-mini","id":"openai/gpt-4o-mini","knowledge":"2023-10","last_updated":"2024-07-18","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image","audio"],"output":["text"]},"name":"GPT-4o mini","open_weights":false,"reasoning":false,"release_date":"2024-07-18","temperature":true,"tool_call":true},"openai/o1":{"attachment":false,"cost":{"input":0,"output":0},"family":"o","id":"openai/o1","knowledge":"2023-10","last_updated":"2024-12-17","limit":{"context":200000,"output":100000},"modalities":{"input":["text","image"],"output":["text"]},"name":"OpenAI o1","open_weights":false,"reasoning":true,"release_date":"2024-09-12","temperature":false,"tool_call":false},"openai/o1-mini":{"attachment":false,"cost":{"input":0,"output":0},"family":"o-mini","id":"openai/o1-mini","knowledge":"2023-10","last_updated":"2024-12-17","limit":{"context":128000,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"OpenAI o1-mini","open_weights":false,"reasoning":true,"release_date":"2024-09-12","temperature":false,"tool_call":false},"openai/o1-preview":{"attachment":false,"cost":{"input":0,"output":0},"family":"o","id":"openai/o1-preview","knowledge":"2023-10","last_updated":"2024-09-12","limit":{"context":128000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"OpenAI o1-preview","open_weights":false,"reasoning":true,"release_date":"2024-09-12","temperature":false,"tool_call":false},"openai/o3":{"attachment":false,"cost":{"input":0,"output":0},"family":"o","id":"openai/o3","knowledge":"2024-04","last_updated":"2025-01-31","limit":{"context":200000,"output":100000},"modalities":{"input":["text","image"],"output":["text"]},"name":"OpenAI o3","open_weights":false,"reasoning":true,"release_date":"2025-01-31","temperature":false,"tool_call":false},"openai/o3-mini":{"attachment":false,"cost":{"input":0,"output":0},"family":"o-mini","id":"openai/o3-mini","knowledge":"2024-04","last_updated":"2025-01-31","limit":{"context":200000,"output":100000},"modalities":{"input":["text"],"output":["text"]},"name":"OpenAI o3-mini","open_weights":false,"reasoning":true,"release_date":"2025-01-31","temperature":false,"tool_call":false},"openai/o4-mini":{"attachment":false,"cost":{"input":0,"output":0},"family":"o-mini","id":"openai/o4-mini","knowledge":"2024-04","last_updated":"2025-01-31","limit":{"context":200000,"output":100000},"modalities":{"input":["text","image"],"output":["text"]},"name":"OpenAI o4-mini","open_weights":false,"reasoning":true,"release_date":"2025-01-31","temperature":false,"tool_call":false},"xai/grok-3":{"attachment":false,"cost":{"input":0,"output":0},"family":"grok","id":"xai/grok-3","knowledge":"2024-10","last_updated":"2024-12-09","limit":{"context":128000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Grok 3","open_weights":false,"reasoning":true,"release_date":"2024-12-09","temperature":true,"tool_call":true},"xai/grok-3-mini":{"attachment":false,"cost":{"input":0,"output":0},"family":"grok","id":"xai/grok-3-mini","knowledge":"2024-10","last_updated":"2024-12-09","limit":{"context":128000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Grok 3 Mini","open_weights":false,"reasoning":true,"release_date":"2024-12-09","temperature":true,"tool_call":true}},"name":"GitHub Models","npm":"@ai-sdk/openai-compatible"},"gitlab":{"doc":"https://docs.gitlab.com/user/duo_agent_platform/","env":["GITLAB_TOKEN"],"id":"gitlab","models":{"duo-chat-gpt-5-1":{"attachment":true,"cost":{"input":0,"output":0},"family":"gpt","id":"duo-chat-gpt-5-1","knowledge":"2024-09-30","last_updated":"2026-01-22","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Agentic Chat (GPT-5.1)","open_weights":false,"reasoning":true,"release_date":"2026-01-22","structured_output":true,"temperature":false,"tool_call":true},"duo-chat-gpt-5-2":{"attachment":true,"cost":{"input":0,"output":0},"family":"gpt","id":"duo-chat-gpt-5-2","knowledge":"2025-08-31","last_updated":"2026-01-23","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Agentic Chat (GPT-5.2)","open_weights":false,"reasoning":true,"release_date":"2026-01-23","structured_output":true,"temperature":false,"tool_call":true},"duo-chat-gpt-5-2-codex":{"attachment":true,"cost":{"input":0,"output":0},"family":"gpt-codex","id":"duo-chat-gpt-5-2-codex","knowledge":"2025-08-31","last_updated":"2026-01-22","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Agentic Chat (GPT-5.2 Codex)","open_weights":false,"reasoning":true,"release_date":"2026-01-22","structured_output":true,"temperature":false,"tool_call":true},"duo-chat-gpt-5-3-codex":{"attachment":true,"cost":{"input":0,"output":0},"family":"gpt-codex","id":"duo-chat-gpt-5-3-codex","knowledge":"2025-08-31","last_updated":"2026-02-05","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Agentic Chat (GPT-5.3 Codex)","open_weights":false,"reasoning":true,"release_date":"2026-02-05","structured_output":true,"temperature":false,"tool_call":true},"duo-chat-gpt-5-4":{"attachment":true,"cost":{"input":0,"output":0},"family":"gpt","id":"duo-chat-gpt-5-4","knowledge":"2025-08-31","last_updated":"2026-03-05","limit":{"context":1050000,"input":922000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Agentic Chat (GPT-5.4)","open_weights":false,"reasoning":true,"release_date":"2026-03-05","structured_output":true,"temperature":false,"tool_call":true},"duo-chat-gpt-5-4-mini":{"attachment":true,"cost":{"input":0,"output":0},"family":"gpt-mini","id":"duo-chat-gpt-5-4-mini","knowledge":"2025-08-31","last_updated":"2026-03-17","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Agentic Chat (GPT-5.4 Mini)","open_weights":false,"reasoning":true,"release_date":"2026-03-17","structured_output":true,"temperature":false,"tool_call":true},"duo-chat-gpt-5-4-nano":{"attachment":true,"cost":{"input":0,"output":0},"family":"gpt-nano","id":"duo-chat-gpt-5-4-nano","knowledge":"2025-08-31","last_updated":"2026-03-17","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Agentic Chat (GPT-5.4 Nano)","open_weights":false,"reasoning":true,"release_date":"2026-03-17","structured_output":true,"temperature":false,"tool_call":true},"duo-chat-gpt-5-5":{"attachment":true,"cost":{"input":0,"output":0},"family":"gpt","id":"duo-chat-gpt-5-5","knowledge":"2025-08-31","last_updated":"2026-04-23","limit":{"context":1050000,"input":922000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Agentic Chat (GPT-5.5)","open_weights":false,"reasoning":true,"release_date":"2026-04-23","structured_output":true,"temperature":false,"tool_call":true},"duo-chat-gpt-5-codex":{"attachment":false,"cost":{"input":0,"output":0},"family":"gpt-codex","id":"duo-chat-gpt-5-codex","knowledge":"2024-09-30","last_updated":"2026-01-22","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Agentic Chat (GPT-5 Codex)","open_weights":false,"reasoning":true,"release_date":"2026-01-22","structured_output":true,"temperature":false,"tool_call":true},"duo-chat-gpt-5-mini":{"attachment":true,"cost":{"input":0,"output":0},"family":"gpt-mini","id":"duo-chat-gpt-5-mini","knowledge":"2024-05-30","last_updated":"2026-01-22","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Agentic Chat (GPT-5 Mini)","open_weights":false,"reasoning":true,"release_date":"2026-01-22","structured_output":true,"temperature":false,"tool_call":true},"duo-chat-haiku-4-5":{"attachment":true,"cost":{"cache_read":0,"cache_write":0,"input":0,"output":0},"family":"claude-haiku","id":"duo-chat-haiku-4-5","knowledge":"2025-02-28","last_updated":"2026-01-08","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Agentic Chat (Claude Haiku 4.5)","open_weights":false,"reasoning":true,"release_date":"2026-01-08","temperature":true,"tool_call":true},"duo-chat-opus-4-5":{"attachment":true,"cost":{"cache_read":0,"cache_write":0,"input":0,"output":0},"family":"claude-opus","id":"duo-chat-opus-4-5","knowledge":"2025-03-31","last_updated":"2026-01-08","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Agentic Chat (Claude Opus 4.5)","open_weights":false,"reasoning":true,"release_date":"2026-01-08","temperature":true,"tool_call":true},"duo-chat-opus-4-6":{"attachment":true,"cost":{"cache_read":0,"cache_write":0,"input":0,"output":0},"family":"claude-opus","id":"duo-chat-opus-4-6","knowledge":"2025-05-31","last_updated":"2026-02-05","limit":{"context":1000000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Agentic Chat (Claude Opus 4.6)","open_weights":false,"reasoning":true,"release_date":"2026-02-05","temperature":true,"tool_call":true},"duo-chat-opus-4-7":{"attachment":true,"cost":{"cache_read":0,"cache_write":0,"input":0,"output":0},"family":"claude-opus","id":"duo-chat-opus-4-7","knowledge":"2026-01-31","last_updated":"2026-04-16","limit":{"context":1000000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Agentic Chat (Claude Opus 4.7)","open_weights":false,"reasoning":true,"release_date":"2026-04-16","temperature":false,"tool_call":true},"duo-chat-opus-4-8":{"attachment":true,"cost":{"cache_read":0,"cache_write":0,"input":0,"output":0},"family":"claude-opus","id":"duo-chat-opus-4-8","knowledge":"2026-01-31","last_updated":"2026-05-28","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Agentic Chat (Claude Opus 4.8)","open_weights":false,"reasoning":true,"release_date":"2026-05-28","temperature":false,"tool_call":true},"duo-chat-sonnet-4-5":{"attachment":true,"cost":{"cache_read":0,"cache_write":0,"input":0,"output":0},"family":"claude-sonnet","id":"duo-chat-sonnet-4-5","knowledge":"2025-07-31","last_updated":"2026-01-08","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Agentic Chat (Claude Sonnet 4.5)","open_weights":false,"reasoning":true,"release_date":"2026-01-08","temperature":true,"tool_call":true},"duo-chat-sonnet-4-6":{"attachment":true,"cost":{"cache_read":0,"cache_write":0,"input":0,"output":0},"family":"claude-sonnet","id":"duo-chat-sonnet-4-6","knowledge":"2025-08-31","last_updated":"2026-02-17","limit":{"context":1000000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Agentic Chat (Claude Sonnet 4.6)","open_weights":false,"reasoning":true,"release_date":"2026-02-17","temperature":true,"tool_call":true}},"name":"GitLab Duo","npm":"gitlab-ai-provider"},"gmicloud":{"api":"https://api.gmi-serving.com/v1","doc":"https://docs.gmicloud.ai/inference-engine/api-reference/llm-api-reference","env":["GMICLOUD_API_KEY"],"id":"gmicloud","models":{"anthropic/claude-opus-4.6":{"attachment":true,"cost":{"cache_read":0.5,"input":5,"output":25},"family":"claude-opus","id":"anthropic/claude-opus-4.6","knowledge":"2025-05-31","last_updated":"2026-03-13","limit":{"context":409600,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"Claude Opus 4.6","open_weights":false,"reasoning":true,"release_date":"2026-02-05","temperature":true,"tool_call":true},"anthropic/claude-opus-4.7":{"attachment":true,"cost":{"cache_read":0.45,"input":4.5,"output":22.5},"experimental":{"modes":{"fast":{"cost":{"cache_read":3,"cache_write":37.5,"input":30,"output":150},"provider":{"body":{"speed":"fast"},"headers":{"anthropic-beta":"fast-mode-2026-02-01"}}}}},"family":"claude-opus","id":"anthropic/claude-opus-4.7","knowledge":"2026-01-31","last_updated":"2026-04-16","limit":{"context":409600,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"Claude Opus 4.7","open_weights":false,"reasoning":true,"release_date":"2026-04-16","temperature":false,"tool_call":true},"anthropic/claude-sonnet-4.6":{"attachment":true,"cost":{"cache_read":0.3,"input":3,"output":15},"family":"claude-sonnet","id":"anthropic/claude-sonnet-4.6","knowledge":"2025-08-31","last_updated":"2026-03-13","limit":{"context":409600,"output":64000},"modalities":{"input":["text"],"output":["text"]},"name":"Claude Sonnet 4.6","open_weights":false,"reasoning":true,"release_date":"2026-02-17","temperature":true,"tool_call":true},"deepseek-ai/DeepSeek-V4-Flash":{"attachment":false,"cost":{"cache_read":0.022,"input":0.112,"output":0.224},"family":"deepseek-flash","id":"deepseek-ai/DeepSeek-V4-Flash","interleaved":{"field":"reasoning_content"},"knowledge":"2025-05","last_updated":"2026-04-24","limit":{"context":1048575,"output":384000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V4 Flash","open_weights":true,"reasoning":true,"release_date":"2026-04-24","structured_output":true,"temperature":true,"tool_call":true},"deepseek-ai/DeepSeek-V4-Pro":{"attachment":false,"cost":{"cache_read":0.116,"input":1.392,"output":2.784},"family":"deepseek-thinking","id":"deepseek-ai/DeepSeek-V4-Pro","interleaved":{"field":"reasoning_content"},"knowledge":"2025-05","last_updated":"2026-04-24","limit":{"context":1048576,"output":384000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V4 Pro","open_weights":true,"reasoning":true,"release_date":"2026-04-24","structured_output":true,"temperature":true,"tool_call":true},"moonshotai/Kimi-K2.6":{"attachment":true,"cost":{"cache_read":0.144,"input":0.855,"output":3.6},"family":"kimi-k2.6","id":"moonshotai/Kimi-K2.6","interleaved":{"field":"reasoning_content"},"knowledge":"2025-01","last_updated":"2026-04-21","limit":{"context":65536,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Kimi K2.6","open_weights":true,"reasoning":true,"release_date":"2026-04-21","structured_output":true,"temperature":true,"tool_call":true},"zai-org/GLM-5-FP8":{"attachment":false,"cost":{"cache_read":0.12,"input":0.6,"output":1.92},"family":"glm","id":"zai-org/GLM-5-FP8","interleaved":{"field":"reasoning_content"},"last_updated":"2026-02-11","limit":{"context":202752,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-5","open_weights":true,"reasoning":true,"release_date":"2026-02-11","temperature":true,"tool_call":true},"zai-org/GLM-5.1-FP8":{"attachment":false,"cost":{"cache_read":0.182,"input":0.98,"output":3.08},"family":"glm","id":"zai-org/GLM-5.1-FP8","interleaved":{"field":"reasoning_content"},"last_updated":"2026-03-27","limit":{"context":202752,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-5.1","open_weights":false,"reasoning":true,"release_date":"2026-03-27","structured_output":true,"temperature":true,"tool_call":true}},"name":"GMI Cloud","npm":"@ai-sdk/openai-compatible"},"google":{"doc":"https://ai.google.dev/gemini-api/docs/models","env":["GOOGLE_API_KEY","GOOGLE_GENERATIVE_AI_API_KEY","GEMINI_API_KEY"],"id":"google","models":{"gemini-2.0-flash":{"attachment":true,"cost":{"cache_read":0.025,"input":0.1,"output":0.4},"family":"gemini-flash","id":"gemini-2.0-flash","knowledge":"2024-06","last_updated":"2024-12-11","limit":{"context":1048576,"output":8192},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"Gemini 2.0 Flash","open_weights":false,"reasoning":false,"release_date":"2024-12-11","status":"deprecated","structured_output":true,"temperature":true,"tool_call":true},"gemini-2.0-flash-lite":{"attachment":true,"cost":{"input":0.075,"output":0.3},"family":"gemini-flash-lite","id":"gemini-2.0-flash-lite","knowledge":"2024-06","last_updated":"2024-12-11","limit":{"context":1048576,"output":8192},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"Gemini 2.0 Flash-Lite","open_weights":false,"reasoning":false,"release_date":"2024-12-11","status":"deprecated","structured_output":true,"temperature":true,"tool_call":true},"gemini-2.5-flash":{"attachment":true,"cost":{"cache_read":0.03,"input":0.3,"input_audio":1,"output":2.5},"family":"gemini-flash","id":"gemini-2.5-flash","knowledge":"2025-01","last_updated":"2025-06-05","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"Gemini 2.5 Flash","open_weights":false,"reasoning":true,"reasoning_options":[{"type":"toggle"},{"max":24576,"min":0,"type":"budget_tokens"}],"release_date":"2025-03-20","structured_output":true,"temperature":true,"tool_call":true},"gemini-2.5-flash-image":{"attachment":true,"cost":{"cache_read":0.075,"input":0.3,"output":30},"family":"gemini-flash","id":"gemini-2.5-flash-image","knowledge":"2025-06","last_updated":"2025-08-26","limit":{"context":32768,"output":32768},"modalities":{"input":["text","image"],"output":["text","image"]},"name":"Nano Banana","open_weights":false,"reasoning":true,"release_date":"2025-08-26","temperature":true,"tool_call":false},"gemini-2.5-flash-lite":{"attachment":true,"cost":{"cache_read":0.01,"input":0.1,"input_audio":0.3,"output":0.4},"family":"gemini-flash-lite","id":"gemini-2.5-flash-lite","knowledge":"2025-01","last_updated":"2025-06-17","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"Gemini 2.5 Flash-Lite","open_weights":false,"reasoning":true,"reasoning_options":[{"type":"toggle"},{"max":24576,"min":512,"type":"budget_tokens"}],"release_date":"2025-06-17","structured_output":true,"temperature":true,"tool_call":true},"gemini-2.5-flash-preview-tts":{"attachment":false,"cost":{"input":0.5,"output":10},"family":"gemini-flash","id":"gemini-2.5-flash-preview-tts","knowledge":"2025-01","last_updated":"2025-05-01","limit":{"context":8192,"output":16384},"modalities":{"input":["text"],"output":["audio"]},"name":"Gemini 2.5 Flash Preview TTS","open_weights":false,"reasoning":false,"release_date":"2025-05-01","temperature":true,"tool_call":false},"gemini-2.5-pro":{"attachment":true,"cost":{"cache_read":0.125,"context_over_200k":{"cache_read":0.25,"input":2.5,"output":15},"input":1.25,"output":10,"tiers":[{"cache_read":0.25,"input":2.5,"output":15,"tier":{"size":200000,"type":"context"}}]},"family":"gemini-pro","id":"gemini-2.5-pro","knowledge":"2025-01","last_updated":"2025-06-05","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"Gemini 2.5 Pro","open_weights":false,"reasoning":true,"reasoning_options":[{"max":32768,"min":128,"type":"budget_tokens"}],"release_date":"2025-03-20","structured_output":true,"temperature":true,"tool_call":true},"gemini-2.5-pro-preview-tts":{"attachment":false,"cost":{"input":1,"output":20},"family":"gemini-flash","id":"gemini-2.5-pro-preview-tts","knowledge":"2025-01","last_updated":"2025-05-01","limit":{"context":8192,"output":16384},"modalities":{"input":["text"],"output":["audio"]},"name":"Gemini 2.5 Pro Preview TTS","open_weights":false,"reasoning":false,"release_date":"2025-05-01","temperature":true,"tool_call":false},"gemini-3-flash-preview":{"attachment":true,"cost":{"cache_read":0.05,"input":0.5,"input_audio":1,"output":3},"family":"gemini-flash","id":"gemini-3-flash-preview","knowledge":"2025-01","last_updated":"2025-12-17","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"name":"Gemini 3 Flash Preview","open_weights":false,"reasoning":true,"reasoning_options":[{"type":"effort","values":["minimal","low","medium","high"]}],"release_date":"2025-12-17","structured_output":true,"temperature":true,"tool_call":true},"gemini-3-pro-preview":{"attachment":true,"cost":{"cache_read":0.2,"context_over_200k":{"cache_read":0.4,"input":4,"output":18},"input":2,"output":12,"tiers":[{"cache_read":0.4,"input":4,"output":18,"tier":{"size":200000,"type":"context"}}]},"family":"gemini-pro","id":"gemini-3-pro-preview","knowledge":"2025-01","last_updated":"2025-11-18","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"name":"Gemini 3 Pro Preview","open_weights":false,"reasoning":true,"reasoning_options":[{"type":"effort","values":["low","high"]}],"release_date":"2025-11-18","status":"deprecated","structured_output":true,"temperature":true,"tool_call":true},"gemini-3.1-flash-image-preview":{"attachment":true,"cost":{"input":0.5,"output":60},"family":"gemini-flash","id":"gemini-3.1-flash-image-preview","knowledge":"2025-01","last_updated":"2026-02-26","limit":{"context":65536,"output":65536},"modalities":{"input":["text","image","pdf"],"output":["text","image"]},"name":"Nano Banana 2","open_weights":false,"reasoning":true,"release_date":"2026-02-26","temperature":true,"tool_call":false},"gemini-3.1-flash-lite":{"attachment":true,"cost":{"cache_read":0.025,"input":0.25,"input_audio":0.5,"output":1.5},"family":"gemini-flash-lite","id":"gemini-3.1-flash-lite","knowledge":"2025-01","last_updated":"2026-05-07","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"name":"Gemini 3.1 Flash Lite","open_weights":false,"reasoning":true,"reasoning_options":[{"type":"effort","values":["minimal","low","medium","high"]}],"release_date":"2026-05-07","structured_output":true,"temperature":true,"tool_call":true},"gemini-3.1-flash-lite-preview":{"attachment":true,"cost":{"cache_read":0.025,"input":0.25,"input_audio":0.5,"output":1.5},"family":"gemini-flash-lite","id":"gemini-3.1-flash-lite-preview","knowledge":"2025-01","last_updated":"2026-03-03","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"name":"Gemini 3.1 Flash Lite Preview","open_weights":false,"reasoning":true,"release_date":"2026-03-03","status":"deprecated","structured_output":true,"temperature":true,"tool_call":true},"gemini-3.1-pro-preview":{"attachment":true,"cost":{"cache_read":0.2,"context_over_200k":{"cache_read":0.4,"input":4,"output":18},"input":2,"output":12,"tiers":[{"cache_read":0.4,"input":4,"output":18,"tier":{"size":200000,"type":"context"}}]},"family":"gemini-pro","id":"gemini-3.1-pro-preview","knowledge":"2025-01","last_updated":"2026-02-19","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"name":"Gemini 3.1 Pro Preview","open_weights":false,"reasoning":true,"reasoning_options":[{"type":"effort","values":["low","medium","high"]}],"release_date":"2026-02-19","structured_output":true,"temperature":true,"tool_call":true},"gemini-3.1-pro-preview-customtools":{"attachment":true,"cost":{"cache_read":0.2,"context_over_200k":{"cache_read":0.4,"input":4,"output":18},"input":2,"output":12,"tiers":[{"cache_read":0.4,"input":4,"output":18,"tier":{"size":200000,"type":"context"}}]},"family":"gemini-pro","id":"gemini-3.1-pro-preview-customtools","knowledge":"2025-01","last_updated":"2026-02-19","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"name":"Gemini 3.1 Pro Preview Custom Tools","open_weights":false,"reasoning":true,"release_date":"2026-02-19","structured_output":true,"temperature":true,"tool_call":true},"gemini-3.5-flash":{"attachment":true,"cost":{"cache_read":0.15,"input":1.5,"input_audio":1.5,"output":9},"family":"gemini-flash","id":"gemini-3.5-flash","knowledge":"2025-01","last_updated":"2026-05-19","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"name":"Gemini 3.5 Flash","open_weights":false,"reasoning":true,"reasoning_options":[{"type":"effort","values":["minimal","low","medium","high"]}],"release_date":"2026-05-19","structured_output":true,"temperature":true,"tool_call":true},"gemini-embedding-001":{"attachment":false,"cost":{"input":0.15,"output":0},"family":"gemini","id":"gemini-embedding-001","knowledge":"2025-05","last_updated":"2025-05-20","limit":{"context":2048,"output":1},"modalities":{"input":["text"],"output":["text"]},"name":"Gemini Embedding 001","open_weights":false,"reasoning":false,"release_date":"2025-05-20","temperature":false,"tool_call":false},"gemini-flash-latest":{"attachment":true,"cost":{"cache_read":0.075,"input":0.3,"input_audio":1,"output":2.5},"family":"gemini-flash","id":"gemini-flash-latest","knowledge":"2025-01","last_updated":"2025-09-25","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"Gemini Flash Latest","open_weights":false,"reasoning":true,"release_date":"2025-09-25","structured_output":true,"temperature":true,"tool_call":true},"gemini-flash-lite-latest":{"attachment":true,"cost":{"cache_read":0.025,"input":0.1,"output":0.4},"family":"gemini-flash-lite","id":"gemini-flash-lite-latest","knowledge":"2025-01","last_updated":"2025-09-25","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"Gemini Flash-Lite Latest","open_weights":false,"reasoning":true,"release_date":"2025-09-25","structured_output":true,"temperature":true,"tool_call":true},"gemma-4-26b-a4b-it":{"attachment":true,"family":"gemma","id":"gemma-4-26b-a4b-it","last_updated":"2026-04-02","limit":{"context":262144,"output":32768},"modalities":{"input":["text","image"],"output":["text"]},"name":"Gemma 4 26B A4B IT","open_weights":true,"reasoning":true,"release_date":"2026-04-02","structured_output":true,"temperature":true,"tool_call":true},"gemma-4-31b-it":{"attachment":true,"family":"gemma","id":"gemma-4-31b-it","last_updated":"2026-04-02","limit":{"context":262144,"output":32768},"modalities":{"input":["text","image"],"output":["text"]},"name":"Gemma 4 31B IT","open_weights":true,"reasoning":true,"release_date":"2026-04-02","structured_output":true,"temperature":true,"tool_call":true}},"name":"Google","npm":"@ai-sdk/google"},"google-vertex":{"doc":"https://cloud.google.com/vertex-ai/generative-ai/docs/models","env":["GOOGLE_VERTEX_PROJECT","GOOGLE_VERTEX_LOCATION","GOOGLE_APPLICATION_CREDENTIALS"],"id":"google-vertex","models":{"claude-3-5-haiku@20241022":{"attachment":true,"cost":{"cache_read":0.08,"cache_write":1,"input":0.8,"output":4},"family":"claude-haiku","id":"claude-3-5-haiku@20241022","knowledge":"2024-07-31","last_updated":"2024-10-22","limit":{"context":200000,"output":8192},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Haiku 3.5","open_weights":false,"provider":{"npm":"@ai-sdk/google-vertex/anthropic"},"reasoning":false,"release_date":"2024-10-22","temperature":true,"tool_call":true},"claude-3-5-sonnet@20241022":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"input":3,"output":15},"family":"claude-sonnet","id":"claude-3-5-sonnet@20241022","knowledge":"2024-04-30","last_updated":"2024-10-22","limit":{"context":200000,"output":8192},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 3.5 v2","open_weights":false,"provider":{"npm":"@ai-sdk/google-vertex/anthropic"},"reasoning":false,"release_date":"2024-10-22","temperature":true,"tool_call":true},"claude-3-7-sonnet@20250219":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"input":3,"output":15},"family":"claude-sonnet","id":"claude-3-7-sonnet@20250219","knowledge":"2024-10-31","last_updated":"2025-02-19","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 3.7","open_weights":false,"provider":{"npm":"@ai-sdk/google-vertex/anthropic"},"reasoning":true,"release_date":"2025-02-19","temperature":true,"tool_call":true},"claude-haiku-4-5@20251001":{"attachment":true,"cost":{"cache_read":0.1,"cache_write":1.25,"input":1,"output":5},"family":"claude-haiku","id":"claude-haiku-4-5@20251001","knowledge":"2025-02-28","last_updated":"2025-10-15","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Haiku 4.5","open_weights":false,"provider":{"npm":"@ai-sdk/google-vertex/anthropic"},"reasoning":true,"release_date":"2025-10-15","temperature":true,"tool_call":true},"claude-opus-4-1@20250805":{"attachment":true,"cost":{"cache_read":1.5,"cache_write":18.75,"input":15,"output":75},"family":"claude-opus","id":"claude-opus-4-1@20250805","knowledge":"2025-03-31","last_updated":"2025-08-05","limit":{"context":200000,"output":32000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.1","open_weights":false,"provider":{"npm":"@ai-sdk/google-vertex/anthropic"},"reasoning":true,"release_date":"2025-08-05","temperature":true,"tool_call":true},"claude-opus-4-5@20251101":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"input":5,"output":25},"family":"claude-opus","id":"claude-opus-4-5@20251101","knowledge":"2025-03-31","last_updated":"2025-11-01","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.5","open_weights":false,"provider":{"npm":"@ai-sdk/google-vertex/anthropic"},"reasoning":true,"release_date":"2025-11-01","temperature":true,"tool_call":true},"claude-opus-4-6@default":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"context_over_200k":{"cache_read":1,"cache_write":12.5,"input":10,"output":37.5},"input":5,"output":25,"tiers":[{"cache_read":1,"cache_write":12.5,"input":10,"output":37.5,"tier":{"size":200000,"type":"context"}}]},"family":"claude-opus","id":"claude-opus-4-6@default","knowledge":"2025-05-31","last_updated":"2026-03-13","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.6","open_weights":false,"provider":{"npm":"@ai-sdk/google-vertex/anthropic"},"reasoning":true,"release_date":"2026-02-05","temperature":true,"tool_call":true},"claude-opus-4-7@default":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"context_over_200k":{"cache_read":1,"cache_write":12.5,"input":10,"output":37.5},"input":5,"output":25,"tiers":[{"cache_read":1,"cache_write":12.5,"input":10,"output":37.5,"tier":{"size":200000,"type":"context"}}]},"family":"claude-opus","id":"claude-opus-4-7@default","knowledge":"2026-01-31","last_updated":"2026-04-16","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.7","open_weights":false,"provider":{"npm":"@ai-sdk/google-vertex/anthropic"},"reasoning":true,"release_date":"2026-04-16","temperature":false,"tool_call":true},"claude-opus-4-8@default":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"context_over_200k":{"cache_read":1,"cache_write":12.5,"input":10,"output":37.5},"input":5,"output":25,"tiers":[{"cache_read":1,"cache_write":12.5,"input":10,"output":37.5,"tier":{"size":200000,"type":"context"}}]},"family":"claude-opus","id":"claude-opus-4-8@default","last_updated":"2026-05-28","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.8","open_weights":false,"provider":{"npm":"@ai-sdk/google-vertex/anthropic"},"reasoning":true,"release_date":"2026-05-28","temperature":false,"tool_call":true},"claude-opus-4@20250514":{"attachment":true,"cost":{"cache_read":1.5,"cache_write":18.75,"input":15,"output":75},"family":"claude-opus","id":"claude-opus-4@20250514","knowledge":"2025-03-31","last_updated":"2025-05-22","limit":{"context":200000,"output":32000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4","open_weights":false,"provider":{"npm":"@ai-sdk/google-vertex/anthropic"},"reasoning":true,"release_date":"2025-05-22","temperature":true,"tool_call":true},"claude-sonnet-4-5@20250929":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"input":3,"output":15},"family":"claude-sonnet","id":"claude-sonnet-4-5@20250929","knowledge":"2025-07-31","last_updated":"2025-09-29","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 4.5","open_weights":false,"provider":{"npm":"@ai-sdk/google-vertex/anthropic"},"reasoning":true,"release_date":"2025-09-29","temperature":true,"tool_call":true},"claude-sonnet-4-6@default":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"context_over_200k":{"cache_read":0.6,"cache_write":7.5,"input":6,"output":22.5},"input":3,"output":15,"tiers":[{"cache_read":0.6,"cache_write":7.5,"input":6,"output":22.5,"tier":{"size":200000,"type":"context"}}]},"family":"claude-sonnet","id":"claude-sonnet-4-6@default","knowledge":"2025-08-31","last_updated":"2026-03-13","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 4.6","open_weights":false,"provider":{"npm":"@ai-sdk/google-vertex/anthropic"},"reasoning":true,"release_date":"2026-02-17","temperature":true,"tool_call":true},"claude-sonnet-4@20250514":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"input":3,"output":15},"family":"claude-sonnet","id":"claude-sonnet-4@20250514","knowledge":"2025-03-31","last_updated":"2025-05-22","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 4","open_weights":false,"provider":{"npm":"@ai-sdk/google-vertex/anthropic"},"reasoning":true,"release_date":"2025-05-22","temperature":true,"tool_call":true},"deepseek-ai/deepseek-v3.1-maas":{"attachment":false,"cost":{"input":0.6,"output":1.7},"family":"deepseek","id":"deepseek-ai/deepseek-v3.1-maas","last_updated":"2025-08-28","limit":{"context":163840,"output":32768},"modalities":{"input":["text","pdf"],"output":["text"]},"name":"DeepSeek V3.1","open_weights":true,"provider":{"api":"https://${GOOGLE_VERTEX_ENDPOINT}/v1/projects/${GOOGLE_VERTEX_PROJECT}/locations/${GOOGLE_VERTEX_LOCATION}/endpoints/openapi","npm":"@ai-sdk/openai-compatible"},"reasoning":true,"release_date":"2025-08-28","structured_output":true,"temperature":true,"tool_call":true},"deepseek-ai/deepseek-v3.2-maas":{"attachment":false,"cost":{"cache_read":0.056,"input":0.56,"output":1.68},"family":"deepseek","id":"deepseek-ai/deepseek-v3.2-maas","last_updated":"2026-04-04","limit":{"context":163840,"output":65536},"modalities":{"input":["text","pdf"],"output":["text"]},"name":"DeepSeek V3.2","open_weights":true,"provider":{"api":"https://${GOOGLE_VERTEX_ENDPOINT}/v1/projects/${GOOGLE_VERTEX_PROJECT}/locations/${GOOGLE_VERTEX_LOCATION}/endpoints/openapi","npm":"@ai-sdk/openai-compatible"},"reasoning":true,"release_date":"2025-12-17","structured_output":true,"temperature":true,"tool_call":true},"gemini-2.0-flash":{"attachment":true,"cost":{"cache_read":0.025,"input":0.15,"output":0.6},"family":"gemini-flash","id":"gemini-2.0-flash","knowledge":"2024-06","last_updated":"2024-12-11","limit":{"context":1048576,"output":8192},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"Gemini 2.0 Flash","open_weights":false,"reasoning":false,"release_date":"2024-12-11","temperature":true,"tool_call":true},"gemini-2.0-flash-lite":{"attachment":true,"cost":{"input":0.075,"output":0.3},"family":"gemini-flash-lite","id":"gemini-2.0-flash-lite","knowledge":"2024-06","last_updated":"2024-12-11","limit":{"context":1048576,"output":8192},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"Gemini 2.0 Flash-Lite","open_weights":false,"reasoning":false,"release_date":"2024-12-11","temperature":true,"tool_call":true},"gemini-2.5-flash":{"attachment":true,"cost":{"cache_read":0.075,"cache_write":0.383,"input":0.3,"output":2.5},"family":"gemini-flash","id":"gemini-2.5-flash","knowledge":"2025-01","last_updated":"2025-06-17","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"Gemini 2.5 Flash","open_weights":false,"reasoning":true,"release_date":"2025-06-17","temperature":true,"tool_call":true},"gemini-2.5-flash-lite":{"attachment":true,"cost":{"cache_read":0.01,"input":0.1,"input_audio":0.3,"output":0.4},"family":"gemini-flash-lite","id":"gemini-2.5-flash-lite","knowledge":"2025-01","last_updated":"2025-06-17","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"Gemini 2.5 Flash-Lite","open_weights":false,"reasoning":true,"release_date":"2025-06-17","temperature":true,"tool_call":true},"gemini-2.5-flash-lite-preview-06-17":{"attachment":true,"cost":{"cache_read":0.025,"input":0.1,"output":0.4},"family":"gemini-flash-lite","id":"gemini-2.5-flash-lite-preview-06-17","knowledge":"2025-01","last_updated":"2025-06-17","limit":{"context":65536,"output":65536},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"Gemini 2.5 Flash Lite Preview 06-17","open_weights":false,"reasoning":true,"release_date":"2025-06-17","temperature":true,"tool_call":true},"gemini-2.5-flash-preview-09-2025":{"attachment":true,"cost":{"cache_read":0.075,"cache_write":0.383,"input":0.3,"output":2.5},"family":"gemini-flash","id":"gemini-2.5-flash-preview-09-2025","knowledge":"2025-01","last_updated":"2025-09-25","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"Gemini 2.5 Flash Preview 09-25","open_weights":false,"reasoning":true,"release_date":"2025-09-25","temperature":true,"tool_call":true},"gemini-2.5-pro":{"attachment":true,"cost":{"cache_read":0.125,"context_over_200k":{"cache_read":0.25,"input":2.5,"output":15},"input":1.25,"output":10,"tiers":[{"cache_read":0.25,"input":2.5,"output":15,"tier":{"size":200000,"type":"context"}}]},"family":"gemini-pro","id":"gemini-2.5-pro","knowledge":"2025-01","last_updated":"2025-06-05","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"Gemini 2.5 Pro","open_weights":false,"reasoning":true,"release_date":"2025-03-20","temperature":true,"tool_call":true},"gemini-3-flash-preview":{"attachment":true,"cost":{"cache_read":0.05,"input":0.5,"input_audio":1,"output":3},"family":"gemini-flash","id":"gemini-3-flash-preview","knowledge":"2025-01","last_updated":"2025-12-17","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"name":"Gemini 3 Flash Preview","open_weights":false,"reasoning":true,"release_date":"2025-12-17","structured_output":true,"temperature":true,"tool_call":true},"gemini-3-pro-preview":{"attachment":true,"cost":{"cache_read":0.2,"context_over_200k":{"cache_read":0.4,"input":4,"output":18},"input":2,"output":12,"tiers":[{"cache_read":0.4,"input":4,"output":18,"tier":{"size":200000,"type":"context"}}]},"family":"gemini-pro","id":"gemini-3-pro-preview","knowledge":"2025-01","last_updated":"2025-11-18","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"name":"Gemini 3 Pro Preview","open_weights":false,"reasoning":true,"release_date":"2025-11-18","structured_output":true,"temperature":true,"tool_call":true},"gemini-3.1-flash-lite":{"attachment":true,"cost":{"cache_read":0.025,"input":0.25,"input_audio":0.5,"output":1.5},"family":"gemini-flash-lite","id":"gemini-3.1-flash-lite","knowledge":"2025-01","last_updated":"2026-05-07","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"name":"Gemini 3.1 Flash Lite","open_weights":false,"reasoning":true,"release_date":"2026-05-07","structured_output":true,"temperature":true,"tool_call":true},"gemini-3.1-flash-lite-preview":{"attachment":true,"cost":{"cache_read":0.025,"input":0.25,"input_audio":0.5,"output":1.5},"family":"gemini-flash-lite","id":"gemini-3.1-flash-lite-preview","knowledge":"2025-01","last_updated":"2026-03-03","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"name":"Gemini 3.1 Flash Lite Preview","open_weights":false,"reasoning":true,"release_date":"2026-03-03","structured_output":true,"temperature":true,"tool_call":true},"gemini-3.1-pro-preview":{"attachment":true,"cost":{"cache_read":0.2,"context_over_200k":{"cache_read":0.4,"input":4,"output":18},"input":2,"output":12,"tiers":[{"cache_read":0.4,"input":4,"output":18,"tier":{"size":200000,"type":"context"}}]},"family":"gemini-pro","id":"gemini-3.1-pro-preview","knowledge":"2025-01","last_updated":"2026-02-19","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"name":"Gemini 3.1 Pro Preview","open_weights":false,"reasoning":true,"release_date":"2026-02-19","structured_output":true,"temperature":true,"tool_call":true},"gemini-3.1-pro-preview-customtools":{"attachment":true,"cost":{"cache_read":0.2,"context_over_200k":{"cache_read":0.4,"input":4,"output":18},"input":2,"output":12,"tiers":[{"cache_read":0.4,"input":4,"output":18,"tier":{"size":200000,"type":"context"}}]},"family":"gemini-pro","id":"gemini-3.1-pro-preview-customtools","knowledge":"2025-01","last_updated":"2026-02-19","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"name":"Gemini 3.1 Pro Preview Custom Tools","open_weights":false,"reasoning":true,"release_date":"2026-02-19","structured_output":true,"temperature":true,"tool_call":true},"gemini-3.5-flash":{"attachment":true,"cost":{"cache_read":0.15,"input":1.5,"input_audio":1.5,"output":9},"family":"gemini-flash","id":"gemini-3.5-flash","knowledge":"2025-01","last_updated":"2026-05-19","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"name":"Gemini 3.5 Flash","open_weights":false,"reasoning":true,"release_date":"2026-05-19","structured_output":true,"temperature":true,"tool_call":true},"gemini-embedding-001":{"attachment":false,"cost":{"input":0.15,"output":0},"family":"gemini","id":"gemini-embedding-001","knowledge":"2025-05","last_updated":"2025-05-20","limit":{"context":2048,"output":1},"modalities":{"input":["text"],"output":["text"]},"name":"Gemini Embedding 001","open_weights":false,"reasoning":false,"release_date":"2025-05-20","temperature":false,"tool_call":false},"gemini-flash-latest":{"attachment":true,"cost":{"cache_read":0.075,"cache_write":0.383,"input":0.3,"output":2.5},"family":"gemini-flash","id":"gemini-flash-latest","knowledge":"2025-01","last_updated":"2025-09-25","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"Gemini Flash Latest","open_weights":false,"reasoning":true,"release_date":"2025-09-25","temperature":true,"tool_call":true},"gemini-flash-lite-latest":{"attachment":true,"cost":{"cache_read":0.025,"input":0.1,"output":0.4},"family":"gemini-flash-lite","id":"gemini-flash-lite-latest","knowledge":"2025-01","last_updated":"2025-09-25","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"Gemini Flash-Lite Latest","open_weights":false,"reasoning":true,"release_date":"2025-09-25","temperature":true,"tool_call":true},"meta/llama-3.3-70b-instruct-maas":{"attachment":false,"cost":{"input":0.72,"output":0.72},"family":"llama","id":"meta/llama-3.3-70b-instruct-maas","knowledge":"2023-12","last_updated":"2025-04-29","limit":{"context":128000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.3 70B Instruct","open_weights":true,"provider":{"api":"https://${GOOGLE_VERTEX_ENDPOINT}/v1/projects/${GOOGLE_VERTEX_PROJECT}/locations/${GOOGLE_VERTEX_LOCATION}/endpoints/openapi","npm":"@ai-sdk/openai-compatible"},"reasoning":false,"release_date":"2025-04-29","structured_output":true,"temperature":true,"tool_call":true},"meta/llama-4-maverick-17b-128e-instruct-maas":{"attachment":true,"cost":{"input":0.35,"output":1.15},"family":"llama","id":"meta/llama-4-maverick-17b-128e-instruct-maas","knowledge":"2024-08","last_updated":"2025-04-29","limit":{"context":524288,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Llama 4 Maverick 17B 128E Instruct","open_weights":true,"provider":{"api":"https://${GOOGLE_VERTEX_ENDPOINT}/v1/projects/${GOOGLE_VERTEX_PROJECT}/locations/${GOOGLE_VERTEX_LOCATION}/endpoints/openapi","npm":"@ai-sdk/openai-compatible"},"reasoning":false,"release_date":"2025-04-29","structured_output":true,"temperature":true,"tool_call":true},"moonshotai/kimi-k2-thinking-maas":{"attachment":false,"cost":{"input":0.6,"output":2.5},"family":"kimi-thinking","id":"moonshotai/kimi-k2-thinking-maas","interleaved":{"field":"reasoning_content"},"knowledge":"2024-08","last_updated":"2025-11-13","limit":{"context":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Kimi K2 Thinking","open_weights":true,"provider":{"api":"https://${GOOGLE_VERTEX_ENDPOINT}/v1/projects/${GOOGLE_VERTEX_PROJECT}/locations/${GOOGLE_VERTEX_LOCATION}/endpoints/openapi","npm":"@ai-sdk/openai-compatible"},"reasoning":true,"release_date":"2025-11-13","structured_output":true,"temperature":true,"tool_call":true},"openai/gpt-oss-120b-maas":{"attachment":false,"cost":{"input":0.09,"output":0.36},"family":"gpt-oss","id":"openai/gpt-oss-120b-maas","last_updated":"2025-08-05","limit":{"context":131072,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"GPT OSS 120B","open_weights":true,"reasoning":true,"release_date":"2025-08-05","temperature":true,"tool_call":true},"openai/gpt-oss-20b-maas":{"attachment":false,"cost":{"input":0.07,"output":0.25},"family":"gpt-oss","id":"openai/gpt-oss-20b-maas","last_updated":"2025-08-05","limit":{"context":131072,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"GPT OSS 20B","open_weights":true,"reasoning":true,"release_date":"2025-08-05","temperature":true,"tool_call":true},"qwen/qwen3-235b-a22b-instruct-2507-maas":{"attachment":false,"cost":{"input":0.22,"output":0.88},"family":"qwen","id":"qwen/qwen3-235b-a22b-instruct-2507-maas","last_updated":"2025-08-13","limit":{"context":262144,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 235B A22B Instruct","open_weights":true,"provider":{"api":"https://${GOOGLE_VERTEX_ENDPOINT}/v1/projects/${GOOGLE_VERTEX_PROJECT}/locations/${GOOGLE_VERTEX_LOCATION}/endpoints/openapi","npm":"@ai-sdk/openai-compatible"},"reasoning":true,"release_date":"2025-08-13","structured_output":true,"temperature":true,"tool_call":true},"zai-org/glm-4.7-maas":{"attachment":false,"cost":{"input":0.6,"output":2.2},"family":"glm","id":"zai-org/glm-4.7-maas","interleaved":{"field":"reasoning_content"},"knowledge":"2025-04","last_updated":"2026-01-06","limit":{"context":200000,"output":128000},"modalities":{"input":["text","pdf"],"output":["text"]},"name":"GLM-4.7","open_weights":true,"provider":{"api":"https://${GOOGLE_VERTEX_ENDPOINT}/v1/projects/${GOOGLE_VERTEX_PROJECT}/locations/${GOOGLE_VERTEX_LOCATION}/endpoints/openapi","npm":"@ai-sdk/openai-compatible"},"reasoning":true,"release_date":"2026-01-06","structured_output":true,"temperature":true,"tool_call":true},"zai-org/glm-5-maas":{"attachment":false,"cost":{"cache_read":0.1,"input":1,"output":3.2},"family":"glm","id":"zai-org/glm-5-maas","interleaved":{"field":"reasoning_content"},"last_updated":"2026-02-11","limit":{"context":202752,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-5","open_weights":true,"provider":{"api":"https://${GOOGLE_VERTEX_ENDPOINT}/v1/projects/${GOOGLE_VERTEX_PROJECT}/locations/${GOOGLE_VERTEX_LOCATION}/endpoints/openapi","npm":"@ai-sdk/openai-compatible"},"reasoning":true,"release_date":"2026-02-11","temperature":true,"tool_call":true}},"name":"Vertex","npm":"@ai-sdk/google-vertex"},"google-vertex-anthropic":{"doc":"https://cloud.google.com/vertex-ai/generative-ai/docs/partner-models/claude","env":["GOOGLE_VERTEX_PROJECT","GOOGLE_VERTEX_LOCATION","GOOGLE_APPLICATION_CREDENTIALS"],"id":"google-vertex-anthropic","models":{"claude-3-5-haiku@20241022":{"attachment":true,"cost":{"cache_read":0.08,"cache_write":1,"input":0.8,"output":4},"family":"claude-haiku","id":"claude-3-5-haiku@20241022","knowledge":"2024-07-31","last_updated":"2024-10-22","limit":{"context":200000,"output":8192},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Haiku 3.5","open_weights":false,"reasoning":false,"release_date":"2024-10-22","temperature":true,"tool_call":true},"claude-3-5-sonnet@20241022":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"input":3,"output":15},"family":"claude-sonnet","id":"claude-3-5-sonnet@20241022","knowledge":"2024-04-30","last_updated":"2024-10-22","limit":{"context":200000,"output":8192},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 3.5 v2","open_weights":false,"reasoning":false,"release_date":"2024-10-22","temperature":true,"tool_call":true},"claude-3-7-sonnet@20250219":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"input":3,"output":15},"family":"claude-sonnet","id":"claude-3-7-sonnet@20250219","knowledge":"2024-10-31","last_updated":"2025-02-19","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 3.7","open_weights":false,"reasoning":true,"release_date":"2025-02-19","temperature":true,"tool_call":true},"claude-haiku-4-5@20251001":{"attachment":true,"cost":{"cache_read":0.1,"cache_write":1.25,"input":1,"output":5},"family":"claude-haiku","id":"claude-haiku-4-5@20251001","knowledge":"2025-02-28","last_updated":"2025-10-15","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Haiku 4.5","open_weights":false,"reasoning":true,"release_date":"2025-10-15","temperature":true,"tool_call":true},"claude-opus-4-1@20250805":{"attachment":true,"cost":{"cache_read":1.5,"cache_write":18.75,"input":15,"output":75},"family":"claude-opus","id":"claude-opus-4-1@20250805","knowledge":"2025-03-31","last_updated":"2025-08-05","limit":{"context":200000,"output":32000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.1","open_weights":false,"reasoning":true,"release_date":"2025-08-05","temperature":true,"tool_call":true},"claude-opus-4-5@20251101":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"input":5,"output":25},"family":"claude-opus","id":"claude-opus-4-5@20251101","knowledge":"2025-03-31","last_updated":"2025-11-01","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.5","open_weights":false,"reasoning":true,"release_date":"2025-11-01","temperature":true,"tool_call":true},"claude-opus-4-6@default":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"context_over_200k":{"cache_read":1,"cache_write":12.5,"input":10,"output":37.5},"input":5,"output":25,"tiers":[{"cache_read":1,"cache_write":12.5,"input":10,"output":37.5,"tier":{"size":200000,"type":"context"}}]},"family":"claude-opus","id":"claude-opus-4-6@default","knowledge":"2025-05-31","last_updated":"2026-03-13","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.6","open_weights":false,"reasoning":true,"release_date":"2026-02-05","temperature":true,"tool_call":true},"claude-opus-4-7@default":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"context_over_200k":{"cache_read":1,"cache_write":12.5,"input":10,"output":37.5},"input":5,"output":25,"tiers":[{"cache_read":1,"cache_write":12.5,"input":10,"output":37.5,"tier":{"size":200000,"type":"context"}}]},"family":"claude-opus","id":"claude-opus-4-7@default","knowledge":"2026-01-31","last_updated":"2026-04-16","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.7","open_weights":false,"reasoning":true,"release_date":"2026-04-16","temperature":false,"tool_call":true},"claude-opus-4-8@default":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"context_over_200k":{"cache_read":1,"cache_write":12.5,"input":10,"output":37.5},"input":5,"output":25,"tiers":[{"cache_read":1,"cache_write":12.5,"input":10,"output":37.5,"tier":{"size":200000,"type":"context"}}]},"family":"claude-opus","id":"claude-opus-4-8@default","last_updated":"2026-05-28","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.8","open_weights":false,"reasoning":true,"release_date":"2026-05-28","temperature":false,"tool_call":true},"claude-opus-4@20250514":{"attachment":true,"cost":{"cache_read":1.5,"cache_write":18.75,"input":15,"output":75},"family":"claude-opus","id":"claude-opus-4@20250514","knowledge":"2025-03-31","last_updated":"2025-05-22","limit":{"context":200000,"output":32000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4","open_weights":false,"reasoning":true,"release_date":"2025-05-22","temperature":true,"tool_call":true},"claude-sonnet-4-5@20250929":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"input":3,"output":15},"family":"claude-sonnet","id":"claude-sonnet-4-5@20250929","knowledge":"2025-07-31","last_updated":"2025-09-29","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 4.5","open_weights":false,"reasoning":true,"release_date":"2025-09-29","temperature":true,"tool_call":true},"claude-sonnet-4-6@default":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"context_over_200k":{"cache_read":0.6,"cache_write":7.5,"input":6,"output":22.5},"input":3,"output":15,"tiers":[{"cache_read":0.6,"cache_write":7.5,"input":6,"output":22.5,"tier":{"size":200000,"type":"context"}}]},"family":"claude-sonnet","id":"claude-sonnet-4-6@default","knowledge":"2025-08-31","last_updated":"2026-03-13","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 4.6","open_weights":false,"reasoning":true,"release_date":"2026-02-17","temperature":true,"tool_call":true},"claude-sonnet-4@20250514":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"input":3,"output":15},"family":"claude-sonnet","id":"claude-sonnet-4@20250514","knowledge":"2025-03-31","last_updated":"2025-05-22","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 4","open_weights":false,"reasoning":true,"release_date":"2025-05-22","temperature":true,"tool_call":true}},"name":"Vertex (Anthropic)","npm":"@ai-sdk/google-vertex/anthropic"},"groq":{"doc":"https://console.groq.com/docs/models","env":["GROQ_API_KEY"],"id":"groq","models":{"allam-2-7b":{"attachment":false,"cost":{"input":0,"output":0},"family":"allam","id":"allam-2-7b","knowledge":"2024-09","last_updated":"2024-09","limit":{"context":4096,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"ALLaM-2-7b","open_weights":false,"reasoning":false,"release_date":"2024-09","temperature":true,"tool_call":false},"canopylabs/orpheus-arabic-saudi":{"attachment":false,"cost":{"input":40,"output":0},"family":"canopylabs","id":"canopylabs/orpheus-arabic-saudi","knowledge":"2025-12-16","last_updated":"2025-12-16","limit":{"context":4000,"output":50000},"modalities":{"input":["text"],"output":["audio"]},"name":"Orpheus Arabic Saudi","open_weights":false,"reasoning":false,"release_date":"2025-12-16","temperature":true,"tool_call":false},"canopylabs/orpheus-v1-english":{"attachment":false,"cost":{"input":0,"output":0},"family":"canopylabs","id":"canopylabs/orpheus-v1-english","knowledge":"2025-12-19","last_updated":"2025-12-19","limit":{"context":4000,"output":50000},"modalities":{"input":["text"],"output":["audio"]},"name":"Orpheus V1 English","open_weights":false,"reasoning":false,"release_date":"2025-12-19","temperature":true,"tool_call":false},"deepseek-r1-distill-llama-70b":{"attachment":false,"cost":{"input":0.75,"output":0.99},"family":"deepseek-thinking","id":"deepseek-r1-distill-llama-70b","knowledge":"2024-07","last_updated":"2025-01-20","limit":{"context":131072,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek R1 Distill Llama 70B","open_weights":true,"reasoning":true,"release_date":"2025-01-20","status":"deprecated","temperature":true,"tool_call":true},"gemma2-9b-it":{"attachment":false,"cost":{"input":0.2,"output":0.2},"family":"gemma","id":"gemma2-9b-it","knowledge":"2024-06","last_updated":"2024-06-27","limit":{"context":8192,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Gemma 2 9B","open_weights":true,"reasoning":false,"release_date":"2024-06-27","status":"deprecated","temperature":true,"tool_call":true},"groq/compound":{"attachment":false,"cost":{"input":0,"output":0},"family":"groq","id":"groq/compound","knowledge":"2025-09-04","last_updated":"2025-09-04","limit":{"context":131072,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Compound","open_weights":false,"reasoning":true,"release_date":"2025-09-04","temperature":true,"tool_call":true},"groq/compound-mini":{"attachment":false,"cost":{"input":0,"output":0},"family":"groq","id":"groq/compound-mini","knowledge":"2025-09-04","last_updated":"2025-09-04","limit":{"context":131072,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Compound Mini","open_weights":false,"reasoning":true,"release_date":"2025-09-04","temperature":true,"tool_call":true},"llama-3.1-8b-instant":{"attachment":false,"cost":{"input":0.05,"output":0.08},"family":"llama","id":"llama-3.1-8b-instant","knowledge":"2023-12","last_updated":"2024-07-23","limit":{"context":131072,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.1 8B Instant","open_weights":true,"reasoning":false,"release_date":"2024-07-23","temperature":true,"tool_call":true},"llama-3.3-70b-versatile":{"attachment":false,"cost":{"input":0.59,"output":0.79},"family":"llama","id":"llama-3.3-70b-versatile","knowledge":"2023-12","last_updated":"2024-12-06","limit":{"context":131072,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.3 70B Versatile","open_weights":true,"reasoning":false,"release_date":"2024-12-06","temperature":true,"tool_call":true},"llama-guard-3-8b":{"attachment":false,"cost":{"input":0.2,"output":0.2},"family":"llama","id":"llama-guard-3-8b","last_updated":"2024-07-23","limit":{"context":8192,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Llama Guard 3 8B","open_weights":true,"reasoning":false,"release_date":"2024-07-23","status":"deprecated","temperature":true,"tool_call":false},"llama3-70b-8192":{"attachment":false,"cost":{"input":0.59,"output":0.79},"family":"llama","id":"llama3-70b-8192","knowledge":"2023-03","last_updated":"2024-04-18","limit":{"context":8192,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3 70B","open_weights":true,"reasoning":false,"release_date":"2024-04-18","status":"deprecated","temperature":true,"tool_call":true},"llama3-8b-8192":{"attachment":false,"cost":{"input":0.05,"output":0.08},"family":"llama","id":"llama3-8b-8192","knowledge":"2023-03","last_updated":"2024-04-18","limit":{"context":8192,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3 8B","open_weights":true,"reasoning":false,"release_date":"2024-04-18","status":"deprecated","temperature":true,"tool_call":true},"meta-llama/llama-4-maverick-17b-128e-instruct":{"attachment":false,"cost":{"input":0.2,"output":0.6},"family":"llama","id":"meta-llama/llama-4-maverick-17b-128e-instruct","knowledge":"2024-08","last_updated":"2025-04-05","limit":{"context":131072,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Llama 4 Maverick 17B","open_weights":true,"reasoning":false,"release_date":"2025-04-05","status":"deprecated","structured_output":true,"temperature":true,"tool_call":true},"meta-llama/llama-4-scout-17b-16e-instruct":{"attachment":false,"cost":{"input":0.11,"output":0.34},"family":"llama","id":"meta-llama/llama-4-scout-17b-16e-instruct","knowledge":"2024-08","last_updated":"2025-04-05","limit":{"context":131072,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Llama 4 Scout 17B","open_weights":true,"reasoning":false,"release_date":"2025-04-05","structured_output":true,"temperature":true,"tool_call":true},"meta-llama/llama-guard-4-12b":{"attachment":false,"cost":{"input":0.2,"output":0.2},"family":"llama","id":"meta-llama/llama-guard-4-12b","last_updated":"2025-04-05","limit":{"context":131072,"output":1024},"modalities":{"input":["text","image"],"output":["text"]},"name":"Llama Guard 4 12B","open_weights":true,"reasoning":false,"release_date":"2025-04-05","status":"deprecated","temperature":true,"tool_call":false},"meta-llama/llama-prompt-guard-2-22m":{"attachment":false,"cost":{"input":0.03,"output":0.03},"family":"llama","id":"meta-llama/llama-prompt-guard-2-22m","knowledge":"2024-10","last_updated":"2024-10-01","limit":{"context":512,"output":512},"modalities":{"input":["text"],"output":["text"]},"name":"Llama Prompt Guard 2 22M","open_weights":true,"reasoning":false,"release_date":"2024-10-01","temperature":true,"tool_call":false},"meta-llama/llama-prompt-guard-2-86m":{"attachment":false,"cost":{"input":0.04,"output":0.04},"family":"llama","id":"meta-llama/llama-prompt-guard-2-86m","knowledge":"2024-10","last_updated":"2024-10-01","limit":{"context":512,"output":512},"modalities":{"input":["text"],"output":["text"]},"name":"Llama Prompt Guard 2 86M","open_weights":true,"reasoning":false,"release_date":"2024-10-01","temperature":true,"tool_call":false},"mistral-saba-24b":{"attachment":false,"cost":{"input":0.79,"output":0.79},"family":"mistral","id":"mistral-saba-24b","knowledge":"2024-08","last_updated":"2025-02-06","limit":{"context":32768,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Mistral Saba 24B","open_weights":false,"reasoning":false,"release_date":"2025-02-06","status":"deprecated","temperature":true,"tool_call":true},"moonshotai/kimi-k2-instruct":{"attachment":false,"cost":{"input":1,"output":3},"family":"kimi","id":"moonshotai/kimi-k2-instruct","knowledge":"2024-10","last_updated":"2025-07-14","limit":{"context":131072,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Kimi K2 Instruct","open_weights":true,"reasoning":false,"release_date":"2025-07-14","status":"deprecated","temperature":true,"tool_call":true},"moonshotai/kimi-k2-instruct-0905":{"attachment":false,"cost":{"cache_read":0.5,"input":1,"output":3},"family":"kimi","id":"moonshotai/kimi-k2-instruct-0905","knowledge":"2024-10","last_updated":"2026-05-27","limit":{"context":262144,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Kimi K2 Instruct 0905","open_weights":true,"reasoning":false,"release_date":"2025-09-05","structured_output":true,"temperature":true,"tool_call":true},"openai/gpt-oss-120b":{"attachment":false,"cost":{"cache_read":0.075,"input":0.15,"output":0.6},"family":"gpt-oss","id":"openai/gpt-oss-120b","last_updated":"2026-05-27","limit":{"context":131072,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"GPT OSS 120B","open_weights":true,"reasoning":true,"release_date":"2025-08-05","structured_output":true,"temperature":true,"tool_call":true},"openai/gpt-oss-20b":{"attachment":false,"cost":{"cache_read":0.0375,"input":0.075,"output":0.3},"family":"gpt-oss","id":"openai/gpt-oss-20b","last_updated":"2026-05-27","limit":{"context":131072,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"GPT OSS 20B","open_weights":true,"reasoning":true,"release_date":"2025-08-05","structured_output":true,"temperature":true,"tool_call":true},"openai/gpt-oss-safeguard-20b":{"attachment":false,"cost":{"cache_read":0.037,"input":0.075,"output":0.3},"family":"gpt-oss","id":"openai/gpt-oss-safeguard-20b","last_updated":"2025-03-05","limit":{"context":131072,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Safety GPT OSS 20B","open_weights":true,"reasoning":true,"release_date":"2025-03-05","temperature":true,"tool_call":true},"qwen-qwq-32b":{"attachment":false,"cost":{"input":0.29,"output":0.39},"family":"qwen","id":"qwen-qwq-32b","knowledge":"2024-09","last_updated":"2024-11-27","limit":{"context":131072,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen QwQ 32B","open_weights":true,"reasoning":true,"release_date":"2024-11-27","status":"deprecated","temperature":true,"tool_call":true},"qwen/qwen3-32b":{"attachment":false,"cost":{"input":0.29,"output":0.59},"family":"qwen","id":"qwen/qwen3-32b","knowledge":"2024-11-08","last_updated":"2024-12-23","limit":{"context":131072,"output":40960},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 32B","open_weights":true,"reasoning":true,"release_date":"2024-12-23","temperature":true,"tool_call":true},"whisper-large-v3":{"attachment":false,"cost":{"input":0,"output":0},"family":"whisper","id":"whisper-large-v3","knowledge":"2023-09","last_updated":"2025-09-05","limit":{"context":448,"output":448},"modalities":{"input":["audio"],"output":["text"]},"name":"Whisper Large V3","open_weights":true,"reasoning":false,"release_date":"2023-09-01","temperature":true,"tool_call":false},"whisper-large-v3-turbo":{"attachment":false,"cost":{"input":0,"output":0},"family":"whisper","id":"whisper-large-v3-turbo","knowledge":"2024-10","last_updated":"2024-10-01","limit":{"context":448,"output":448},"modalities":{"input":["audio"],"output":["text"]},"name":"Whisper Large v3 Turbo","open_weights":true,"reasoning":false,"release_date":"2024-10-01","temperature":true,"tool_call":false}},"name":"Groq","npm":"@ai-sdk/groq"},"helicone":{"api":"https://ai-gateway.helicone.ai/v1","doc":"https://helicone.ai/models","env":["HELICONE_API_KEY"],"id":"helicone","models":{"chatgpt-4o-latest":{"attachment":false,"cost":{"cache_read":2.5,"input":5,"output":20},"family":"gpt","id":"chatgpt-4o-latest","knowledge":"2024-08","last_updated":"2024-08-14","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"OpenAI ChatGPT-4o","open_weights":false,"reasoning":false,"release_date":"2024-08-14","temperature":true,"tool_call":true},"claude-3-haiku-20240307":{"attachment":false,"cost":{"cache_read":0.03,"cache_write":0.3,"input":0.25,"output":1.25},"family":"claude-haiku","id":"claude-3-haiku-20240307","knowledge":"2024-03","last_updated":"2024-03-07","limit":{"context":200000,"output":4096},"modalities":{"input":["text","image"],"output":["text"]},"name":"Anthropic: Claude 3 Haiku","open_weights":false,"reasoning":false,"release_date":"2024-03-07","temperature":true,"tool_call":true},"claude-3.5-haiku":{"attachment":false,"cost":{"cache_read":0.08,"cache_write":1,"input":0.7999999999999999,"output":4},"family":"claude-haiku","id":"claude-3.5-haiku","knowledge":"2024-10","last_updated":"2024-10-22","limit":{"context":200000,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Anthropic: Claude 3.5 Haiku","open_weights":false,"reasoning":false,"release_date":"2024-10-22","temperature":true,"tool_call":true},"claude-3.5-sonnet-v2":{"attachment":false,"cost":{"cache_read":0.30000000000000004,"cache_write":3.75,"input":3,"output":15},"family":"claude-sonnet","id":"claude-3.5-sonnet-v2","knowledge":"2024-10","last_updated":"2024-10-22","limit":{"context":200000,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Anthropic: Claude 3.5 Sonnet v2","open_weights":false,"reasoning":false,"release_date":"2024-10-22","temperature":true,"tool_call":true},"claude-3.7-sonnet":{"attachment":false,"cost":{"cache_read":0.30000000000000004,"cache_write":3.75,"input":3,"output":15},"family":"claude-sonnet","id":"claude-3.7-sonnet","knowledge":"2025-02","last_updated":"2025-02-19","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Anthropic: Claude 3.7 Sonnet","open_weights":false,"reasoning":false,"release_date":"2025-02-19","temperature":true,"tool_call":true},"claude-4.5-haiku":{"attachment":false,"cost":{"cache_read":0.09999999999999999,"cache_write":1.25,"input":1,"output":5},"family":"claude-haiku","id":"claude-4.5-haiku","knowledge":"2025-10","last_updated":"2025-10-01","limit":{"context":200000,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Anthropic: Claude 4.5 Haiku","open_weights":false,"reasoning":false,"release_date":"2025-10-01","temperature":true,"tool_call":true},"claude-4.5-opus":{"attachment":false,"cost":{"cache_read":0.5,"cache_write":6.25,"input":5,"output":25},"family":"claude-opus","id":"claude-4.5-opus","knowledge":"2025-11","last_updated":"2025-11-24","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Anthropic: Claude Opus 4.5","open_weights":false,"reasoning":true,"release_date":"2025-11-24","temperature":true,"tool_call":true},"claude-4.5-sonnet":{"attachment":false,"cost":{"cache_read":0.30000000000000004,"cache_write":3.75,"input":3,"output":15},"family":"claude-sonnet","id":"claude-4.5-sonnet","knowledge":"2025-09","last_updated":"2025-09-29","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Anthropic: Claude Sonnet 4.5","open_weights":false,"reasoning":true,"release_date":"2025-09-29","temperature":true,"tool_call":true},"claude-haiku-4-5-20251001":{"attachment":false,"cost":{"cache_read":0.09999999999999999,"cache_write":1.25,"input":1,"output":5},"family":"claude-haiku","id":"claude-haiku-4-5-20251001","knowledge":"2025-10","last_updated":"2025-10-01","limit":{"context":200000,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Anthropic: Claude 4.5 Haiku (20251001)","open_weights":false,"reasoning":false,"release_date":"2025-10-01","temperature":true,"tool_call":true},"claude-opus-4":{"attachment":false,"cost":{"cache_read":1.5,"cache_write":18.75,"input":15,"output":75},"family":"claude-opus","id":"claude-opus-4","knowledge":"2025-05","last_updated":"2025-05-14","limit":{"context":200000,"output":32000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Anthropic: Claude Opus 4","open_weights":false,"reasoning":true,"release_date":"2025-05-14","temperature":true,"tool_call":true},"claude-opus-4-1":{"attachment":false,"cost":{"cache_read":1.5,"cache_write":18.75,"input":15,"output":75},"family":"claude-opus","id":"claude-opus-4-1","knowledge":"2025-08","last_updated":"2025-08-05","limit":{"context":200000,"output":32000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Anthropic: Claude Opus 4.1","open_weights":false,"reasoning":true,"release_date":"2025-08-05","temperature":true,"tool_call":true},"claude-opus-4-1-20250805":{"attachment":false,"cost":{"cache_read":1.5,"cache_write":18.75,"input":15,"output":75},"family":"claude-opus","id":"claude-opus-4-1-20250805","knowledge":"2025-08","last_updated":"2025-08-05","limit":{"context":200000,"output":32000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Anthropic: Claude Opus 4.1 (20250805)","open_weights":false,"reasoning":true,"release_date":"2025-08-05","temperature":true,"tool_call":true},"claude-sonnet-4":{"attachment":false,"cost":{"cache_read":0.30000000000000004,"cache_write":3.75,"input":3,"output":15},"family":"claude-sonnet","id":"claude-sonnet-4","knowledge":"2025-05","last_updated":"2025-05-14","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Anthropic: Claude Sonnet 4","open_weights":false,"reasoning":true,"release_date":"2025-05-14","temperature":true,"tool_call":true},"claude-sonnet-4-5-20250929":{"attachment":false,"cost":{"cache_read":0.30000000000000004,"cache_write":3.75,"input":3,"output":15},"family":"claude-sonnet","id":"claude-sonnet-4-5-20250929","knowledge":"2025-09","last_updated":"2025-09-29","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Anthropic: Claude Sonnet 4.5 (20250929)","open_weights":false,"reasoning":true,"release_date":"2025-09-29","temperature":true,"tool_call":true},"deepseek-r1-distill-llama-70b":{"attachment":false,"cost":{"input":0.03,"output":0.13},"family":"deepseek-thinking","id":"deepseek-r1-distill-llama-70b","knowledge":"2025-01","last_updated":"2025-01-20","limit":{"context":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek R1 Distill Llama 70B","open_weights":false,"reasoning":true,"release_date":"2025-01-20","temperature":true,"tool_call":true},"deepseek-reasoner":{"attachment":false,"cost":{"cache_read":0.07,"input":0.56,"output":1.68},"family":"deepseek-thinking","id":"deepseek-reasoner","knowledge":"2025-01","last_updated":"2025-01-20","limit":{"context":128000,"output":64000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek Reasoner","open_weights":false,"reasoning":false,"release_date":"2025-01-20","temperature":true,"tool_call":false},"deepseek-tng-r1t2-chimera":{"attachment":false,"cost":{"input":0.3,"output":1.2},"family":"deepseek-thinking","id":"deepseek-tng-r1t2-chimera","knowledge":"2025-07","last_updated":"2025-07-02","limit":{"context":130000,"output":163840},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek TNG R1T2 Chimera","open_weights":false,"reasoning":false,"release_date":"2025-07-02","temperature":true,"tool_call":true},"deepseek-v3":{"attachment":false,"cost":{"cache_read":0.07,"input":0.56,"output":1.68},"family":"deepseek","id":"deepseek-v3","knowledge":"2024-12","last_updated":"2024-12-26","limit":{"context":128000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V3","open_weights":false,"reasoning":false,"release_date":"2024-12-26","temperature":true,"tool_call":true},"deepseek-v3.1-terminus":{"attachment":false,"cost":{"cache_read":0.21600000000000003,"input":0.27,"output":1},"family":"deepseek","id":"deepseek-v3.1-terminus","knowledge":"2025-09","last_updated":"2025-09-22","limit":{"context":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V3.1 Terminus","open_weights":false,"reasoning":true,"release_date":"2025-09-22","temperature":true,"tool_call":true},"deepseek-v3.2":{"attachment":false,"cost":{"input":0.27,"output":0.41},"family":"deepseek","id":"deepseek-v3.2","knowledge":"2025-09","last_updated":"2025-09-22","limit":{"context":163840,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V3.2","open_weights":false,"reasoning":false,"release_date":"2025-09-22","temperature":true,"tool_call":true},"ernie-4.5-21b-a3b-thinking":{"attachment":false,"cost":{"input":0.07,"output":0.28},"family":"ernie","id":"ernie-4.5-21b-a3b-thinking","knowledge":"2025-03","last_updated":"2025-03-16","limit":{"context":128000,"output":8000},"modalities":{"input":["text"],"output":["text"]},"name":"Baidu Ernie 4.5 21B A3B Thinking","open_weights":false,"reasoning":true,"release_date":"2025-03-16","temperature":true,"tool_call":false},"gemini-2.5-flash":{"attachment":false,"cost":{"cache_read":0.075,"cache_write":0.3,"input":0.3,"output":2.5},"family":"gemini-flash","id":"gemini-2.5-flash","knowledge":"2025-06","last_updated":"2025-06-17","limit":{"context":1048576,"output":65535},"modalities":{"input":["text","image"],"output":["text"]},"name":"Google Gemini 2.5 Flash","open_weights":false,"reasoning":true,"release_date":"2025-06-17","temperature":true,"tool_call":true},"gemini-2.5-flash-lite":{"attachment":false,"cost":{"cache_read":0.024999999999999998,"cache_write":0.09999999999999999,"input":0.09999999999999999,"output":0.39999999999999997},"family":"gemini-flash-lite","id":"gemini-2.5-flash-lite","knowledge":"2025-07","last_updated":"2025-07-22","limit":{"context":1048576,"output":65535},"modalities":{"input":["text","image"],"output":["text"]},"name":"Google Gemini 2.5 Flash Lite","open_weights":false,"reasoning":true,"release_date":"2025-07-22","temperature":true,"tool_call":true},"gemini-2.5-pro":{"attachment":false,"cost":{"cache_read":0.3125,"cache_write":1.25,"input":1.25,"output":10},"family":"gemini-pro","id":"gemini-2.5-pro","knowledge":"2025-06","last_updated":"2025-06-17","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image"],"output":["text"]},"name":"Google Gemini 2.5 Pro","open_weights":false,"reasoning":true,"release_date":"2025-06-17","temperature":true,"tool_call":true},"gemini-3-pro-preview":{"attachment":false,"cost":{"cache_read":0.19999999999999998,"input":2,"output":12},"family":"gemini-pro","id":"gemini-3-pro-preview","knowledge":"2025-11","last_updated":"2025-11-18","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","audio","video"],"output":["text"]},"name":"Google Gemini 3 Pro Preview","open_weights":false,"reasoning":true,"release_date":"2025-11-18","temperature":true,"tool_call":true},"gemma-3-12b-it":{"attachment":false,"cost":{"input":0.049999999999999996,"output":0.09999999999999999},"family":"gemma","id":"gemma-3-12b-it","knowledge":"2024-12","last_updated":"2024-12-01","limit":{"context":131072,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Google Gemma 3 12B","open_weights":false,"reasoning":false,"release_date":"2024-12-01","temperature":true,"tool_call":false},"gemma2-9b-it":{"attachment":false,"cost":{"input":0.01,"output":0.03},"family":"gemma","id":"gemma2-9b-it","knowledge":"2024-06","last_updated":"2024-06-25","limit":{"context":8192,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Google Gemma 2","open_weights":false,"reasoning":false,"release_date":"2024-06-25","temperature":true,"tool_call":false},"glm-4.6":{"attachment":false,"cost":{"input":0.44999999999999996,"output":1.5},"family":"glm","id":"glm-4.6","knowledge":"2024-07","last_updated":"2024-07-18","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"Zai GLM-4.6","open_weights":false,"reasoning":true,"release_date":"2024-07-18","temperature":true,"tool_call":true},"gpt-4.1":{"attachment":false,"cost":{"cache_read":0.5,"input":2,"output":8},"family":"gpt","id":"gpt-4.1","knowledge":"2025-04","last_updated":"2025-04-14","limit":{"context":1047576,"output":32768},"modalities":{"input":["text","image"],"output":["text"]},"name":"OpenAI GPT-4.1","open_weights":false,"reasoning":false,"release_date":"2025-04-14","temperature":true,"tool_call":true},"gpt-4.1-mini":{"attachment":false,"cost":{"cache_read":0.09999999999999999,"input":0.39999999999999997,"output":1.5999999999999999},"family":"gpt-mini","id":"gpt-4.1-mini","knowledge":"2025-04","last_updated":"2025-04-14","limit":{"context":1047576,"output":32768},"modalities":{"input":["text","image"],"output":["text"]},"name":"OpenAI GPT-4.1 Mini","open_weights":false,"reasoning":false,"release_date":"2025-04-14","temperature":true,"tool_call":true},"gpt-4.1-mini-2025-04-14":{"attachment":false,"cost":{"cache_read":0.09999999999999999,"input":0.39999999999999997,"output":1.5999999999999999},"family":"gpt-mini","id":"gpt-4.1-mini-2025-04-14","knowledge":"2025-04","last_updated":"2025-04-14","limit":{"context":1047576,"output":32768},"modalities":{"input":["text","image"],"output":["text"]},"name":"OpenAI GPT-4.1 Mini","open_weights":false,"reasoning":false,"release_date":"2025-04-14","temperature":true,"tool_call":true},"gpt-4.1-nano":{"attachment":false,"cost":{"cache_read":0.024999999999999998,"input":0.09999999999999999,"output":0.39999999999999997},"family":"gpt-nano","id":"gpt-4.1-nano","knowledge":"2025-04","last_updated":"2025-04-14","limit":{"context":1047576,"output":32768},"modalities":{"input":["text","image"],"output":["text"]},"name":"OpenAI GPT-4.1 Nano","open_weights":false,"reasoning":false,"release_date":"2025-04-14","temperature":true,"tool_call":true},"gpt-4o":{"attachment":false,"cost":{"cache_read":1.25,"input":2.5,"output":10},"family":"gpt","id":"gpt-4o","knowledge":"2024-05","last_updated":"2024-05-13","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"OpenAI GPT-4o","open_weights":false,"reasoning":false,"release_date":"2024-05-13","temperature":true,"tool_call":true},"gpt-4o-mini":{"attachment":false,"cost":{"cache_read":0.075,"input":0.15,"output":0.6},"family":"gpt-mini","id":"gpt-4o-mini","knowledge":"2024-07","last_updated":"2024-07-18","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"OpenAI GPT-4o-mini","open_weights":false,"reasoning":false,"release_date":"2024-07-18","temperature":true,"tool_call":true},"gpt-5":{"attachment":false,"cost":{"cache_read":0.12500000000000003,"input":1.25,"output":10},"family":"gpt","id":"gpt-5","knowledge":"2025-01","last_updated":"2025-01-01","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"OpenAI GPT-5","open_weights":false,"reasoning":false,"release_date":"2025-01-01","temperature":false,"tool_call":true},"gpt-5-chat-latest":{"attachment":false,"cost":{"cache_read":0.12500000000000003,"input":1.25,"output":10},"family":"gpt-codex","id":"gpt-5-chat-latest","knowledge":"2024-09","last_updated":"2024-09-30","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"OpenAI GPT-5 Chat Latest","open_weights":false,"reasoning":false,"release_date":"2024-09-30","temperature":false,"tool_call":true},"gpt-5-codex":{"attachment":false,"cost":{"cache_read":0.12500000000000003,"input":1.25,"output":10},"family":"gpt-codex","id":"gpt-5-codex","knowledge":"2025-01","last_updated":"2025-01-01","limit":{"context":400000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"OpenAI: GPT-5 Codex","open_weights":false,"reasoning":false,"release_date":"2025-01-01","temperature":false,"tool_call":true},"gpt-5-mini":{"attachment":false,"cost":{"cache_read":0.024999999999999998,"input":0.25,"output":2},"family":"gpt-mini","id":"gpt-5-mini","knowledge":"2025-01","last_updated":"2025-01-01","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"OpenAI GPT-5 Mini","open_weights":false,"reasoning":false,"release_date":"2025-01-01","temperature":false,"tool_call":true},"gpt-5-nano":{"attachment":false,"cost":{"cache_read":0.005,"input":0.049999999999999996,"output":0.39999999999999997},"family":"gpt-nano","id":"gpt-5-nano","knowledge":"2025-01","last_updated":"2025-01-01","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"OpenAI GPT-5 Nano","open_weights":false,"reasoning":false,"release_date":"2025-01-01","temperature":false,"tool_call":true},"gpt-5-pro":{"attachment":false,"cost":{"input":15,"output":120},"family":"gpt-pro","id":"gpt-5-pro","knowledge":"2025-01","last_updated":"2025-01-01","limit":{"context":128000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"OpenAI: GPT-5 Pro","open_weights":false,"reasoning":false,"release_date":"2025-01-01","temperature":false,"tool_call":false},"gpt-5.1":{"attachment":false,"cost":{"cache_read":0.12500000000000003,"input":1.25,"output":10},"family":"gpt","id":"gpt-5.1","knowledge":"2025-01","last_updated":"2025-01-01","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text","image"]},"name":"OpenAI GPT-5.1","open_weights":false,"reasoning":false,"release_date":"2025-01-01","temperature":false,"tool_call":true},"gpt-5.1-chat-latest":{"attachment":false,"cost":{"cache_read":0.12500000000000003,"input":1.25,"output":10},"family":"gpt-codex","id":"gpt-5.1-chat-latest","knowledge":"2025-01","last_updated":"2025-01-01","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image"],"output":["text","image"]},"name":"OpenAI GPT-5.1 Chat","open_weights":false,"reasoning":false,"release_date":"2025-01-01","temperature":false,"tool_call":true},"gpt-5.1-codex":{"attachment":false,"cost":{"cache_read":0.12500000000000003,"input":1.25,"output":10},"family":"gpt-codex","id":"gpt-5.1-codex","knowledge":"2025-01","last_updated":"2025-01-01","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text","image"]},"name":"OpenAI: GPT-5.1 Codex","open_weights":false,"reasoning":false,"release_date":"2025-01-01","temperature":false,"tool_call":true},"gpt-5.1-codex-mini":{"attachment":false,"cost":{"cache_read":0.024999999999999998,"input":0.25,"output":2},"family":"gpt-codex","id":"gpt-5.1-codex-mini","knowledge":"2025-01","last_updated":"2025-01-01","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text","image"]},"name":"OpenAI: GPT-5.1 Codex Mini","open_weights":false,"reasoning":false,"release_date":"2025-01-01","temperature":false,"tool_call":true},"gpt-oss-120b":{"attachment":false,"cost":{"input":0.04,"output":0.16},"family":"gpt-oss","id":"gpt-oss-120b","knowledge":"2024-06","last_updated":"2024-06-01","limit":{"context":131072,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"OpenAI GPT-OSS 120b","open_weights":false,"reasoning":true,"release_date":"2024-06-01","temperature":true,"tool_call":true},"gpt-oss-20b":{"attachment":false,"cost":{"input":0.049999999999999996,"output":0.19999999999999998},"family":"gpt-oss","id":"gpt-oss-20b","knowledge":"2024-06","last_updated":"2024-06-01","limit":{"context":131072,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"OpenAI GPT-OSS 20b","open_weights":false,"reasoning":true,"release_date":"2024-06-01","temperature":true,"tool_call":true},"grok-3":{"attachment":false,"cost":{"cache_read":0.75,"input":3,"output":15},"family":"grok","id":"grok-3","knowledge":"2024-06","last_updated":"2024-06-01","limit":{"context":131072,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"xAI Grok 3","open_weights":false,"reasoning":false,"release_date":"2024-06-01","temperature":true,"tool_call":true},"grok-3-mini":{"attachment":false,"cost":{"cache_read":0.075,"input":0.3,"output":0.5},"family":"grok","id":"grok-3-mini","knowledge":"2024-06","last_updated":"2024-06-01","limit":{"context":131072,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"xAI Grok 3 Mini","open_weights":false,"reasoning":false,"release_date":"2024-06-01","temperature":true,"tool_call":true},"grok-4":{"attachment":false,"cost":{"cache_read":0.75,"input":3,"output":15},"family":"grok","id":"grok-4","knowledge":"2024-07","last_updated":"2024-07-09","limit":{"context":256000,"output":256000},"modalities":{"input":["text"],"output":["text"]},"name":"xAI Grok 4","open_weights":false,"reasoning":false,"release_date":"2024-07-09","temperature":true,"tool_call":true},"grok-4-1-fast-non-reasoning":{"attachment":false,"cost":{"cache_read":0.049999999999999996,"input":0.19999999999999998,"output":0.5},"family":"grok","id":"grok-4-1-fast-non-reasoning","knowledge":"2025-11","last_updated":"2025-11-17","limit":{"context":2000000,"output":30000},"modalities":{"input":["text","image"],"output":["text","image"]},"name":"xAI Grok 4.1 Fast Non-Reasoning","open_weights":false,"reasoning":false,"release_date":"2025-11-17","temperature":true,"tool_call":true},"grok-4-1-fast-reasoning":{"attachment":false,"cost":{"cache_read":0.049999999999999996,"input":0.19999999999999998,"output":0.5},"family":"grok","id":"grok-4-1-fast-reasoning","knowledge":"2025-11","last_updated":"2025-11-17","limit":{"context":2000000,"output":2000000},"modalities":{"input":["text","image"],"output":["text"]},"name":"xAI Grok 4.1 Fast Reasoning","open_weights":false,"reasoning":true,"release_date":"2025-11-17","temperature":true,"tool_call":true},"grok-4-fast-non-reasoning":{"attachment":false,"cost":{"cache_read":0.049999999999999996,"input":0.19999999999999998,"output":0.5},"family":"grok","id":"grok-4-fast-non-reasoning","knowledge":"2025-09","last_updated":"2025-09-19","limit":{"context":2000000,"output":2000000},"modalities":{"input":["text","image","audio"],"output":["text"]},"name":"xAI Grok 4 Fast Non-Reasoning","open_weights":false,"reasoning":false,"release_date":"2025-09-19","temperature":true,"tool_call":true},"grok-4-fast-reasoning":{"attachment":false,"cost":{"cache_read":0.049999999999999996,"input":0.19999999999999998,"output":0.5},"family":"grok","id":"grok-4-fast-reasoning","knowledge":"2025-09","last_updated":"2025-09-01","limit":{"context":2000000,"output":2000000},"modalities":{"input":["text","image"],"output":["text"]},"name":"xAI: Grok 4 Fast Reasoning","open_weights":false,"reasoning":true,"release_date":"2025-09-01","temperature":true,"tool_call":true},"grok-code-fast-1":{"attachment":false,"cost":{"cache_read":0.02,"input":0.19999999999999998,"output":1.5},"family":"grok","id":"grok-code-fast-1","knowledge":"2024-08","last_updated":"2024-08-25","limit":{"context":256000,"output":10000},"modalities":{"input":["text"],"output":["text"]},"name":"xAI Grok Code Fast 1","open_weights":false,"reasoning":false,"release_date":"2024-08-25","temperature":true,"tool_call":true},"hermes-2-pro-llama-3-8b":{"attachment":false,"cost":{"input":0.14,"output":0.14},"family":"llama","id":"hermes-2-pro-llama-3-8b","knowledge":"2024-05","last_updated":"2024-05-27","limit":{"context":131072,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"Hermes 2 Pro Llama 3 8B","open_weights":false,"reasoning":false,"release_date":"2024-05-27","temperature":true,"tool_call":true},"kimi-k2-0711":{"attachment":false,"cost":{"input":0.5700000000000001,"output":2.3},"family":"kimi","id":"kimi-k2-0711","knowledge":"2025-01","last_updated":"2025-01-01","limit":{"context":131072,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Kimi K2 (07/11)","open_weights":false,"reasoning":false,"release_date":"2025-01-01","temperature":true,"tool_call":true},"kimi-k2-0905":{"attachment":false,"cost":{"cache_read":0.39999999999999997,"input":0.5,"output":2},"family":"kimi","id":"kimi-k2-0905","knowledge":"2025-09","last_updated":"2025-09-05","limit":{"context":262144,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Kimi K2 (09/05)","open_weights":false,"reasoning":false,"release_date":"2025-09-05","temperature":true,"tool_call":true},"kimi-k2-thinking":{"attachment":false,"cost":{"input":0.48,"output":2},"family":"kimi-thinking","id":"kimi-k2-thinking","knowledge":"2025-11","last_updated":"2025-11-06","limit":{"context":256000,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Kimi K2 Thinking","open_weights":false,"reasoning":false,"release_date":"2025-11-06","temperature":true,"tool_call":true},"llama-3.1-8b-instant":{"attachment":false,"cost":{"input":0.049999999999999996,"output":0.08},"family":"llama","id":"llama-3.1-8b-instant","knowledge":"2024-07","last_updated":"2024-07-01","limit":{"context":131072,"output":32678},"modalities":{"input":["text"],"output":["text"]},"name":"Meta Llama 3.1 8B Instant","open_weights":false,"reasoning":false,"release_date":"2024-07-01","temperature":true,"tool_call":true},"llama-3.1-8b-instruct":{"attachment":false,"cost":{"input":0.02,"output":0.049999999999999996},"family":"llama","id":"llama-3.1-8b-instruct","knowledge":"2024-07","last_updated":"2024-07-23","limit":{"context":16384,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Meta Llama 3.1 8B Instruct","open_weights":false,"reasoning":false,"release_date":"2024-07-23","temperature":true,"tool_call":true},"llama-3.1-8b-instruct-turbo":{"attachment":false,"cost":{"input":0.02,"output":0.03},"family":"llama","id":"llama-3.1-8b-instruct-turbo","knowledge":"2024-07","last_updated":"2024-07-23","limit":{"context":128000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"Meta Llama 3.1 8B Instruct Turbo","open_weights":false,"reasoning":false,"release_date":"2024-07-23","temperature":true,"tool_call":true},"llama-3.3-70b-instruct":{"attachment":false,"cost":{"input":0.13,"output":0.39},"family":"llama","id":"llama-3.3-70b-instruct","knowledge":"2024-12","last_updated":"2024-12-06","limit":{"context":128000,"output":16400},"modalities":{"input":["text"],"output":["text"]},"name":"Meta Llama 3.3 70B Instruct","open_weights":false,"reasoning":false,"release_date":"2024-12-06","temperature":true,"tool_call":true},"llama-3.3-70b-versatile":{"attachment":false,"cost":{"input":0.59,"output":0.7899999999999999},"family":"llama","id":"llama-3.3-70b-versatile","knowledge":"2024-12","last_updated":"2024-12-06","limit":{"context":131072,"output":32678},"modalities":{"input":["text"],"output":["text"]},"name":"Meta Llama 3.3 70B Versatile","open_weights":false,"reasoning":false,"release_date":"2024-12-06","temperature":true,"tool_call":true},"llama-4-maverick":{"attachment":false,"cost":{"input":0.15,"output":0.6},"family":"llama","id":"llama-4-maverick","knowledge":"2025-01","last_updated":"2025-01-01","limit":{"context":131072,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Meta Llama 4 Maverick 17B 128E","open_weights":false,"reasoning":false,"release_date":"2025-01-01","temperature":true,"tool_call":true},"llama-4-scout":{"attachment":false,"cost":{"input":0.08,"output":0.3},"family":"llama","id":"llama-4-scout","knowledge":"2025-01","last_updated":"2025-01-01","limit":{"context":131072,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Meta Llama 4 Scout 17B 16E","open_weights":false,"reasoning":false,"release_date":"2025-01-01","temperature":true,"tool_call":true},"llama-guard-4":{"attachment":false,"cost":{"input":0.21,"output":0.21},"family":"llama","id":"llama-guard-4","knowledge":"2025-01","last_updated":"2025-01-01","limit":{"context":131072,"output":1024},"modalities":{"input":["text","image"],"output":["text"]},"name":"Meta Llama Guard 4 12B","open_weights":false,"reasoning":false,"release_date":"2025-01-01","temperature":true,"tool_call":false},"llama-prompt-guard-2-22m":{"attachment":false,"cost":{"input":0.01,"output":0.01},"family":"llama","id":"llama-prompt-guard-2-22m","knowledge":"2024-10","last_updated":"2024-10-01","limit":{"context":512,"output":2},"modalities":{"input":["text"],"output":["text"]},"name":"Meta Llama Prompt Guard 2 22M","open_weights":false,"reasoning":false,"release_date":"2024-10-01","temperature":true,"tool_call":false},"llama-prompt-guard-2-86m":{"attachment":false,"cost":{"input":0.01,"output":0.01},"family":"llama","id":"llama-prompt-guard-2-86m","knowledge":"2024-10","last_updated":"2024-10-01","limit":{"context":512,"output":2},"modalities":{"input":["text"],"output":["text"]},"name":"Meta Llama Prompt Guard 2 86M","open_weights":false,"reasoning":false,"release_date":"2024-10-01","temperature":true,"tool_call":false},"mistral-large-2411":{"attachment":false,"cost":{"input":2,"output":6},"family":"mistral-large","id":"mistral-large-2411","knowledge":"2024-07","last_updated":"2024-07-24","limit":{"context":128000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Mistral-Large","open_weights":false,"reasoning":false,"release_date":"2024-07-24","temperature":true,"tool_call":true},"mistral-nemo":{"attachment":false,"cost":{"input":20,"output":40},"family":"mistral-nemo","id":"mistral-nemo","knowledge":"2024-07","last_updated":"2024-07-18","limit":{"context":128000,"output":16400},"modalities":{"input":["text","image"],"output":["text"]},"name":"Mistral Nemo","open_weights":false,"reasoning":false,"release_date":"2024-07-18","temperature":true,"tool_call":false},"mistral-small":{"attachment":false,"cost":{"input":0.075,"output":0.2},"family":"mistral-small","id":"mistral-small","knowledge":"2025-03","last_updated":"2025-06-20","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"Mistral Small 3.2","open_weights":true,"reasoning":false,"release_date":"2025-06-20","temperature":true,"tool_call":true},"o1":{"attachment":false,"cost":{"cache_read":7.5,"input":15,"output":60},"family":"o","id":"o1","knowledge":"2025-01","last_updated":"2025-01-01","limit":{"context":200000,"output":100000},"modalities":{"input":["text"],"output":["text"]},"name":"OpenAI: o1","open_weights":false,"reasoning":false,"release_date":"2025-01-01","temperature":false,"tool_call":false},"o1-mini":{"attachment":false,"cost":{"cache_read":0.55,"input":1.1,"output":4.4},"family":"o-mini","id":"o1-mini","knowledge":"2025-01","last_updated":"2025-01-01","limit":{"context":128000,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"OpenAI: o1-mini","open_weights":false,"reasoning":false,"release_date":"2025-01-01","temperature":false,"tool_call":false},"o3":{"attachment":false,"cost":{"cache_read":0.5,"input":2,"output":8},"family":"o","id":"o3","knowledge":"2024-06","last_updated":"2024-06-01","limit":{"context":200000,"output":100000},"modalities":{"input":["text","image"],"output":["text"]},"name":"OpenAI o3","open_weights":false,"reasoning":false,"release_date":"2024-06-01","temperature":false,"tool_call":true},"o3-mini":{"attachment":false,"cost":{"cache_read":0.55,"input":1.1,"output":4.4},"family":"o-mini","id":"o3-mini","knowledge":"2023-10","last_updated":"2023-10-01","limit":{"context":200000,"output":100000},"modalities":{"input":["text"],"output":["text"]},"name":"OpenAI o3 Mini","open_weights":false,"reasoning":false,"release_date":"2023-10-01","temperature":false,"tool_call":true},"o3-pro":{"attachment":false,"cost":{"input":20,"output":80},"family":"o-pro","id":"o3-pro","knowledge":"2024-06","last_updated":"2024-06-01","limit":{"context":200000,"output":100000},"modalities":{"input":["text","image"],"output":["text"]},"name":"OpenAI o3 Pro","open_weights":false,"reasoning":false,"release_date":"2024-06-01","temperature":false,"tool_call":true},"o4-mini":{"attachment":false,"cost":{"cache_read":0.275,"input":1.1,"output":4.4},"family":"o-mini","id":"o4-mini","knowledge":"2024-06","last_updated":"2024-06-01","limit":{"context":200000,"output":100000},"modalities":{"input":["text","image"],"output":["text"]},"name":"OpenAI o4 Mini","open_weights":false,"reasoning":false,"release_date":"2024-06-01","temperature":false,"tool_call":true},"qwen2.5-coder-7b-fast":{"attachment":false,"cost":{"input":0.03,"output":0.09},"family":"qwen","id":"qwen2.5-coder-7b-fast","knowledge":"2024-09","last_updated":"2024-09-15","limit":{"context":32000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen2.5 Coder 7B fast","open_weights":false,"reasoning":false,"release_date":"2024-09-15","temperature":true,"tool_call":false},"qwen3-235b-a22b-thinking":{"attachment":false,"cost":{"input":0.3,"output":2.9000000000000004},"family":"qwen","id":"qwen3-235b-a22b-thinking","knowledge":"2025-07","last_updated":"2025-07-25","limit":{"context":262144,"output":81920},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3 235B A22B Thinking","open_weights":false,"reasoning":true,"release_date":"2025-07-25","temperature":true,"tool_call":false},"qwen3-30b-a3b":{"attachment":false,"cost":{"input":0.08,"output":0.29},"family":"qwen","id":"qwen3-30b-a3b","knowledge":"2025-06","last_updated":"2025-06-01","limit":{"context":41000,"output":41000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen3 30B A3B","open_weights":false,"reasoning":false,"release_date":"2025-06-01","temperature":true,"tool_call":true},"qwen3-32b":{"attachment":false,"cost":{"input":0.29,"output":0.59},"family":"qwen","id":"qwen3-32b","knowledge":"2025-04","last_updated":"2025-04-28","limit":{"context":131072,"output":40960},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 32B","open_weights":false,"reasoning":true,"release_date":"2025-04-28","temperature":true,"tool_call":true},"qwen3-coder":{"attachment":false,"cost":{"input":0.22,"output":0.95},"family":"qwen","id":"qwen3-coder","knowledge":"2025-07","last_updated":"2025-07-23","limit":{"context":262144,"output":16384},"modalities":{"input":["text","image","audio","video"],"output":["text"]},"name":"Qwen3 Coder 480B A35B Instruct Turbo","open_weights":false,"reasoning":false,"release_date":"2025-07-23","temperature":true,"tool_call":true},"qwen3-coder-30b-a3b-instruct":{"attachment":false,"cost":{"input":0.09999999999999999,"output":0.3},"family":"qwen","id":"qwen3-coder-30b-a3b-instruct","knowledge":"2025-07","last_updated":"2025-07-31","limit":{"context":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Coder 30B A3B Instruct","open_weights":false,"reasoning":false,"release_date":"2025-07-31","temperature":true,"tool_call":true},"qwen3-next-80b-a3b-instruct":{"attachment":false,"cost":{"input":0.14,"output":1.4},"family":"qwen","id":"qwen3-next-80b-a3b-instruct","knowledge":"2025-01","last_updated":"2025-01-01","limit":{"context":262000,"output":16384},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3 Next 80B A3B Instruct","open_weights":false,"reasoning":false,"release_date":"2025-01-01","temperature":true,"tool_call":true},"qwen3-vl-235b-a22b-instruct":{"attachment":false,"cost":{"input":0.3,"output":1.5},"family":"qwen","id":"qwen3-vl-235b-a22b-instruct","knowledge":"2025-09","last_updated":"2025-09-23","limit":{"context":256000,"output":16384},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3 VL 235B A22B Instruct","open_weights":false,"reasoning":false,"release_date":"2025-09-23","temperature":true,"tool_call":true},"sonar":{"attachment":false,"cost":{"input":1,"output":1},"family":"sonar","id":"sonar","knowledge":"2025-01","last_updated":"2025-01-27","limit":{"context":127000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Perplexity Sonar","open_weights":false,"reasoning":false,"release_date":"2025-01-27","temperature":true,"tool_call":false},"sonar-deep-research":{"attachment":false,"cost":{"input":2,"output":8},"family":"sonar-deep-research","id":"sonar-deep-research","knowledge":"2025-01","last_updated":"2025-01-27","limit":{"context":127000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Perplexity Sonar Deep Research","open_weights":false,"reasoning":true,"release_date":"2025-01-27","temperature":true,"tool_call":false},"sonar-pro":{"attachment":false,"cost":{"input":3,"output":15},"family":"sonar-pro","id":"sonar-pro","knowledge":"2025-01","last_updated":"2025-01-27","limit":{"context":200000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Perplexity Sonar Pro","open_weights":false,"reasoning":false,"release_date":"2025-01-27","temperature":true,"tool_call":false},"sonar-reasoning":{"attachment":false,"cost":{"input":1,"output":5},"family":"sonar-reasoning","id":"sonar-reasoning","knowledge":"2025-01","last_updated":"2025-01-27","limit":{"context":127000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Perplexity Sonar Reasoning","open_weights":false,"reasoning":true,"release_date":"2025-01-27","temperature":true,"tool_call":false},"sonar-reasoning-pro":{"attachment":false,"cost":{"input":2,"output":8},"family":"sonar-reasoning","id":"sonar-reasoning-pro","knowledge":"2025-01","last_updated":"2025-01-27","limit":{"context":127000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Perplexity Sonar Reasoning Pro","open_weights":false,"reasoning":true,"release_date":"2025-01-27","temperature":true,"tool_call":false}},"name":"Helicone","npm":"@ai-sdk/openai-compatible"},"hpc-ai":{"api":"https://api.hpc-ai.com/inference/v1","doc":"https://www.hpc-ai.com/doc/docs/quickstart/","env":["HPC_AI_API_KEY"],"id":"hpc-ai","models":{"minimax/minimax-m2.5":{"attachment":false,"cost":{"cache_read":0.03,"input":0.3,"output":1.2},"family":"minimax-m2.5","id":"minimax/minimax-m2.5","last_updated":"2026-06-01","limit":{"context":1000000,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax M2.5","open_weights":true,"reasoning":true,"release_date":"2026-02-12","structured_output":false,"temperature":true,"tool_call":true},"moonshotai/kimi-k2.5":{"attachment":false,"cost":{"cache_read":0.05,"input":0.3,"output":1.5},"family":"kimi","id":"moonshotai/kimi-k2.5","interleaved":{"field":"reasoning_content"},"knowledge":"2025-01-01","last_updated":"2026-06-01","limit":{"context":262144,"output":262144},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Kimi K2.5","open_weights":true,"reasoning":true,"release_date":"2026-01-01","structured_output":true,"temperature":false,"tool_call":true},"zai-org/glm-5.1":{"attachment":false,"cost":{"cache_read":0.133,"input":0.615,"output":2.46},"family":"glm","id":"zai-org/glm-5.1","interleaved":{"field":"reasoning_content"},"last_updated":"2026-06-01","limit":{"context":202000,"output":202000},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 5.1","open_weights":true,"reasoning":true,"release_date":"2026-04-08","structured_output":true,"temperature":true,"tool_call":true}},"name":"HPC-AI","npm":"@ai-sdk/openai-compatible"},"huggingface":{"api":"https://router.huggingface.co/v1","doc":"https://huggingface.co/docs/inference-providers","env":["HF_TOKEN"],"id":"huggingface","models":{"MiniMaxAI/MiniMax-M2.1":{"attachment":false,"cost":{"input":0.3,"output":1.2},"family":"minimax","id":"MiniMaxAI/MiniMax-M2.1","interleaved":{"field":"reasoning_content"},"knowledge":"2025-10","last_updated":"2025-12-23","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2.1","open_weights":true,"reasoning":true,"release_date":"2025-12-23","temperature":true,"tool_call":true},"MiniMaxAI/MiniMax-M2.5":{"attachment":false,"cost":{"cache_read":0.03,"input":0.3,"output":1.2},"family":"minimax","id":"MiniMaxAI/MiniMax-M2.5","interleaved":{"field":"reasoning_content"},"last_updated":"2026-02-12","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2.5","open_weights":true,"reasoning":true,"release_date":"2026-02-12","temperature":true,"tool_call":true},"MiniMaxAI/MiniMax-M2.7":{"attachment":false,"cost":{"cache_read":0.06,"input":0.3,"output":1.2},"family":"minimax","id":"MiniMaxAI/MiniMax-M2.7","interleaved":{"field":"reasoning_content"},"last_updated":"2026-03-18","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2.7","open_weights":true,"reasoning":true,"release_date":"2026-03-18","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen3-235B-A22B-Thinking-2507":{"attachment":false,"cost":{"input":0.3,"output":3},"family":"qwen","id":"Qwen/Qwen3-235B-A22B-Thinking-2507","knowledge":"2025-04","last_updated":"2025-07-25","limit":{"context":262144,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3-235B-A22B-Thinking-2507","open_weights":true,"reasoning":true,"release_date":"2025-07-25","temperature":true,"tool_call":true},"Qwen/Qwen3-Coder-480B-A35B-Instruct":{"attachment":false,"cost":{"input":2,"output":2},"family":"qwen","id":"Qwen/Qwen3-Coder-480B-A35B-Instruct","knowledge":"2025-04","last_updated":"2025-07-23","limit":{"context":262144,"output":66536},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3-Coder-480B-A35B-Instruct","open_weights":true,"reasoning":false,"release_date":"2025-07-23","temperature":true,"tool_call":true},"Qwen/Qwen3-Coder-Next":{"attachment":false,"cost":{"input":0.2,"output":1.5},"family":"qwen","id":"Qwen/Qwen3-Coder-Next","knowledge":"2025-04","last_updated":"2026-02-03","limit":{"context":262144,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3-Coder-Next","open_weights":true,"reasoning":false,"release_date":"2026-02-03","temperature":true,"tool_call":true},"Qwen/Qwen3-Embedding-4B":{"attachment":false,"cost":{"input":0.01,"output":0},"family":"qwen","id":"Qwen/Qwen3-Embedding-4B","knowledge":"2024-12","last_updated":"2025-01-01","limit":{"context":32000,"output":2048},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen 3 Embedding 4B","open_weights":true,"reasoning":false,"release_date":"2025-01-01","temperature":false,"tool_call":false},"Qwen/Qwen3-Embedding-8B":{"attachment":false,"cost":{"input":0.01,"output":0},"family":"qwen","id":"Qwen/Qwen3-Embedding-8B","knowledge":"2024-12","last_updated":"2025-01-01","limit":{"context":32000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen 3 Embedding 8B","open_weights":true,"reasoning":false,"release_date":"2025-01-01","temperature":false,"tool_call":false},"Qwen/Qwen3-Next-80B-A3B-Instruct":{"attachment":false,"cost":{"input":0.25,"output":1},"family":"qwen","id":"Qwen/Qwen3-Next-80B-A3B-Instruct","knowledge":"2025-04","last_updated":"2025-09-11","limit":{"context":262144,"output":66536},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3-Next-80B-A3B-Instruct","open_weights":true,"reasoning":false,"release_date":"2025-09-11","temperature":true,"tool_call":true},"Qwen/Qwen3-Next-80B-A3B-Thinking":{"attachment":false,"cost":{"input":0.3,"output":2},"family":"qwen","id":"Qwen/Qwen3-Next-80B-A3B-Thinking","knowledge":"2025-04","last_updated":"2025-09-11","limit":{"context":262144,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3-Next-80B-A3B-Thinking","open_weights":true,"reasoning":false,"release_date":"2025-09-11","temperature":true,"tool_call":true},"Qwen/Qwen3.5-397B-A17B":{"attachment":true,"cost":{"input":0.6,"output":3.6},"family":"qwen","id":"Qwen/Qwen3.5-397B-A17B","interleaved":{"field":"reasoning_content"},"knowledge":"2025-04","last_updated":"2026-02-01","limit":{"context":262144,"output":32768},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen3.5-397B-A17B","open_weights":true,"reasoning":true,"release_date":"2026-02-01","temperature":true,"tool_call":true},"XiaomiMiMo/MiMo-V2-Flash":{"attachment":false,"cost":{"input":0.1,"output":0.3},"family":"mimo","id":"XiaomiMiMo/MiMo-V2-Flash","knowledge":"2024-12","last_updated":"2025-12-16","limit":{"context":262144,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"MiMo-V2-Flash","open_weights":true,"reasoning":true,"release_date":"2025-12-16","temperature":true,"tool_call":true},"deepseek-ai/DeepSeek-R1-0528":{"attachment":false,"cost":{"input":3,"output":5},"family":"deepseek-thinking","id":"deepseek-ai/DeepSeek-R1-0528","knowledge":"2025-05","last_updated":"2025-05-28","limit":{"context":163840,"output":163840},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek-R1-0528","open_weights":true,"reasoning":true,"release_date":"2025-05-28","temperature":true,"tool_call":true},"deepseek-ai/DeepSeek-V3.2":{"attachment":false,"cost":{"input":0.28,"output":0.4},"family":"deepseek","id":"deepseek-ai/DeepSeek-V3.2","knowledge":"2024-07","last_updated":"2025-12-01","limit":{"context":163840,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek-V3.2","open_weights":true,"reasoning":true,"release_date":"2025-12-01","temperature":true,"tool_call":true},"deepseek-ai/DeepSeek-V4-Pro":{"attachment":false,"cost":{"cache_read":0.003625,"input":0.435,"output":0.87},"family":"deepseek-thinking","id":"deepseek-ai/DeepSeek-V4-Pro","interleaved":{"field":"reasoning_content"},"knowledge":"2025-05","last_updated":"2026-04-24","limit":{"context":1048576,"output":393216},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V4 Pro","open_weights":true,"reasoning":true,"release_date":"2026-04-24","structured_output":true,"temperature":true,"tool_call":true},"moonshotai/Kimi-K2-Instruct":{"attachment":false,"cost":{"input":1,"output":3},"family":"kimi","id":"moonshotai/Kimi-K2-Instruct","knowledge":"2024-10","last_updated":"2025-07-14","limit":{"context":131072,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Kimi-K2-Instruct","open_weights":true,"reasoning":false,"release_date":"2025-07-14","temperature":true,"tool_call":true},"moonshotai/Kimi-K2-Instruct-0905":{"attachment":false,"cost":{"input":1,"output":3},"family":"kimi","id":"moonshotai/Kimi-K2-Instruct-0905","knowledge":"2024-10","last_updated":"2025-09-04","limit":{"context":262144,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Kimi-K2-Instruct-0905","open_weights":true,"reasoning":false,"release_date":"2025-09-04","temperature":true,"tool_call":true},"moonshotai/Kimi-K2-Thinking":{"attachment":false,"cost":{"cache_read":0.15,"input":0.6,"output":2.5},"family":"kimi-thinking","id":"moonshotai/Kimi-K2-Thinking","interleaved":{"field":"reasoning_content"},"knowledge":"2024-08","last_updated":"2025-11-06","limit":{"context":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Kimi-K2-Thinking","open_weights":true,"reasoning":true,"release_date":"2025-11-06","temperature":true,"tool_call":true},"moonshotai/Kimi-K2.5":{"attachment":true,"cost":{"cache_read":0.1,"input":0.6,"output":3},"family":"kimi","id":"moonshotai/Kimi-K2.5","interleaved":{"field":"reasoning_content"},"knowledge":"2025-01","last_updated":"2026-01-01","limit":{"context":262144,"output":262144},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Kimi-K2.5","open_weights":true,"reasoning":true,"release_date":"2026-01-01","temperature":true,"tool_call":true},"moonshotai/Kimi-K2.6":{"attachment":true,"cost":{"cache_read":0.16,"input":0.95,"output":4},"family":"kimi","id":"moonshotai/Kimi-K2.6","interleaved":{"field":"reasoning_content"},"knowledge":"2025-01","last_updated":"2026-04-20","limit":{"context":262144,"output":262144},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Kimi-K2.6","open_weights":true,"reasoning":true,"release_date":"2026-04-20","temperature":true,"tool_call":true},"zai-org/GLM-4.7":{"attachment":false,"cost":{"cache_read":0.11,"input":0.6,"output":2.2},"family":"glm","id":"zai-org/GLM-4.7","interleaved":{"field":"reasoning_content"},"knowledge":"2025-04","last_updated":"2025-12-22","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4.7","open_weights":true,"reasoning":true,"release_date":"2025-12-22","temperature":true,"tool_call":true},"zai-org/GLM-4.7-Flash":{"attachment":false,"cost":{"input":0,"output":0},"family":"glm","id":"zai-org/GLM-4.7-Flash","interleaved":{"field":"reasoning_content"},"knowledge":"2025-04","last_updated":"2025-08-08","limit":{"context":200000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4.7-Flash","open_weights":true,"reasoning":true,"release_date":"2025-08-08","temperature":true,"tool_call":true},"zai-org/GLM-5":{"attachment":false,"cost":{"cache_read":0.2,"input":1,"output":3.2},"family":"glm","id":"zai-org/GLM-5","interleaved":{"field":"reasoning_content"},"last_updated":"2026-02-11","limit":{"context":202752,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-5","open_weights":true,"reasoning":true,"release_date":"2026-02-11","temperature":true,"tool_call":true},"zai-org/GLM-5.1":{"attachment":false,"cost":{"cache_read":0.2,"input":1,"output":3.2},"family":"glm","id":"zai-org/GLM-5.1","interleaved":{"field":"reasoning_content"},"last_updated":"2026-04-03","limit":{"context":202752,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-5.1","open_weights":true,"reasoning":true,"release_date":"2026-04-03","temperature":true,"tool_call":true}},"name":"Hugging Face","npm":"@ai-sdk/openai-compatible"},"iflowcn":{"api":"https://apis.iflow.cn/v1","doc":"https://platform.iflow.cn/en/docs","env":["IFLOW_API_KEY"],"id":"iflowcn","models":{"deepseek-r1":{"attachment":false,"cost":{"input":0,"output":0},"family":"deepseek-thinking","id":"deepseek-r1","knowledge":"2024-12","last_updated":"2025-01-20","limit":{"context":128000,"output":32000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek-R1","open_weights":true,"reasoning":true,"release_date":"2025-01-20","temperature":true,"tool_call":true},"deepseek-v3":{"attachment":false,"cost":{"input":0,"output":0},"family":"deepseek","id":"deepseek-v3","knowledge":"2024-10","last_updated":"2024-12-26","limit":{"context":128000,"output":32000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek-V3","open_weights":true,"reasoning":false,"release_date":"2024-12-26","temperature":true,"tool_call":true},"deepseek-v3.2":{"attachment":false,"cost":{"input":0,"output":0},"family":"deepseek","id":"deepseek-v3.2","knowledge":"2024-12","last_updated":"2025-01-01","limit":{"context":128000,"output":64000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek-V3.2-Exp","open_weights":true,"reasoning":false,"release_date":"2025-01-01","temperature":true,"tool_call":true},"glm-4.6":{"attachment":false,"cost":{"input":0,"output":0},"family":"glm","id":"glm-4.6","knowledge":"2024-10","last_updated":"2025-11-13","limit":{"context":200000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4.6","open_weights":false,"reasoning":true,"release_date":"2024-12-01","temperature":true,"tool_call":true},"kimi-k2":{"attachment":false,"cost":{"input":0,"output":0},"family":"kimi","id":"kimi-k2","knowledge":"2024-10","last_updated":"2024-12-01","limit":{"context":128000,"output":64000},"modalities":{"input":["text"],"output":["text"]},"name":"Kimi-K2","open_weights":false,"reasoning":false,"release_date":"2024-12-01","temperature":true,"tool_call":true},"kimi-k2-0905":{"attachment":false,"cost":{"input":0,"output":0},"family":"kimi","id":"kimi-k2-0905","knowledge":"2024-12","last_updated":"2025-09-05","limit":{"context":256000,"output":64000},"modalities":{"input":["text"],"output":["text"]},"name":"Kimi-K2-0905","open_weights":false,"reasoning":false,"release_date":"2025-09-05","temperature":true,"tool_call":true},"qwen3-235b":{"attachment":false,"cost":{"input":0,"output":0},"family":"qwen","id":"qwen3-235b","knowledge":"2024-10","last_updated":"2024-12-01","limit":{"context":128000,"output":32000},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3-235B-A22B","open_weights":true,"reasoning":true,"release_date":"2024-12-01","temperature":true,"tool_call":true},"qwen3-235b-a22b-instruct":{"attachment":false,"cost":{"input":0,"output":0},"family":"qwen","id":"qwen3-235b-a22b-instruct","knowledge":"2025-04","last_updated":"2025-07-01","limit":{"context":256000,"output":64000},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3-235B-A22B-Instruct","open_weights":true,"reasoning":false,"release_date":"2025-07-01","temperature":true,"tool_call":true},"qwen3-235b-a22b-thinking-2507":{"attachment":false,"cost":{"input":0,"output":0},"family":"qwen","id":"qwen3-235b-a22b-thinking-2507","knowledge":"2025-04","last_updated":"2025-07-01","limit":{"context":256000,"output":64000},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3-235B-A22B-Thinking","open_weights":true,"reasoning":true,"release_date":"2025-07-01","temperature":true,"tool_call":true},"qwen3-32b":{"attachment":false,"cost":{"input":0,"output":0},"family":"qwen","id":"qwen3-32b","knowledge":"2024-10","last_updated":"2024-12-01","limit":{"context":128000,"output":32000},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3-32B","open_weights":true,"reasoning":false,"release_date":"2024-12-01","temperature":true,"tool_call":true},"qwen3-coder-plus":{"attachment":false,"cost":{"input":0,"output":0},"family":"qwen","id":"qwen3-coder-plus","knowledge":"2025-04","last_updated":"2025-07-01","limit":{"context":256000,"output":64000},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3-Coder-Plus","open_weights":true,"reasoning":false,"release_date":"2025-07-01","temperature":true,"tool_call":true},"qwen3-max":{"attachment":false,"cost":{"input":0,"output":0},"family":"qwen","id":"qwen3-max","knowledge":"2024-12","last_updated":"2025-01-01","limit":{"context":256000,"output":32000},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3-Max","open_weights":false,"reasoning":false,"release_date":"2025-01-01","temperature":true,"tool_call":true},"qwen3-max-preview":{"attachment":false,"cost":{"input":0,"output":0},"family":"qwen","id":"qwen3-max-preview","knowledge":"2024-12","last_updated":"2025-01-01","limit":{"context":256000,"output":32000},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3-Max-Preview","open_weights":false,"reasoning":false,"release_date":"2025-01-01","temperature":true,"tool_call":true},"qwen3-vl-plus":{"attachment":true,"cost":{"input":0,"output":0},"family":"qwen","id":"qwen3-vl-plus","knowledge":"2024-12","last_updated":"2025-01-01","limit":{"context":256000,"output":32000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen3-VL-Plus","open_weights":false,"reasoning":false,"release_date":"2025-01-01","temperature":true,"tool_call":true}},"name":"iFlow","npm":"@ai-sdk/openai-compatible"},"inception":{"api":"https://api.inceptionlabs.ai/v1/","doc":"https://platform.inceptionlabs.ai/docs","env":["INCEPTION_API_KEY"],"id":"inception","models":{"mercury-2":{"attachment":false,"cost":{"cache_read":0.025,"input":0.25,"output":0.75},"family":"mercury","id":"mercury-2","knowledge":"2025-01-01","last_updated":"2026-02-24","limit":{"context":128000,"output":50000},"modalities":{"input":["text"],"output":["text"]},"name":"Mercury 2","open_weights":false,"reasoning":true,"release_date":"2026-02-24","structured_output":true,"temperature":true,"tool_call":true},"mercury-edit-2":{"attachment":false,"cost":{"cache_read":0.025,"input":0.25,"output":0.75},"id":"mercury-edit-2","last_updated":"2026-03-30","limit":{"context":128000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Mercury Edit 2","open_weights":false,"reasoning":true,"release_date":"2026-03-30","temperature":true,"tool_call":false}},"name":"Inception","npm":"@ai-sdk/openai-compatible"},"inceptron":{"api":"https://api.inceptron.io/v1","doc":"https://docs.inceptron.io","env":["INCEPTRON_API_KEY"],"id":"inceptron","models":{"MiniMaxAI/MiniMax-M2.5":{"attachment":false,"cost":{"cache_read":0.03,"cache_write":0,"input":0.24,"output":0.9},"family":"minimax","id":"MiniMaxAI/MiniMax-M2.5","last_updated":"2026-02-12","limit":{"context":196608,"output":196608},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax M2.5","open_weights":true,"reasoning":true,"release_date":"2026-02-12","structured_output":true,"temperature":true,"tool_call":true},"moonshotai/Kimi-K2.6":{"attachment":true,"cost":{"cache_read":0.2,"cache_write":0,"input":0.78,"output":3.5},"family":"kimi-k2.6","id":"moonshotai/Kimi-K2.6","interleaved":{"field":"reasoning_content"},"knowledge":"2025-01","last_updated":"2026-04-21","limit":{"context":262144,"output":262144},"modalities":{"input":["text","image"],"output":["text"]},"name":"Kimi K2.6","open_weights":true,"reasoning":true,"release_date":"2026-04-21","structured_output":true,"temperature":true,"tool_call":true},"nvidia/llama-3.3-70b-instruct-fp8":{"attachment":true,"cost":{"cache_read":0,"cache_write":0,"input":0.12,"output":0.38},"family":"llama","id":"nvidia/llama-3.3-70b-instruct-fp8","knowledge":"2023-12","last_updated":"2024-12-06","limit":{"context":131072,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.3 70B Instruct","open_weights":true,"reasoning":false,"release_date":"2024-12-06","structured_output":true,"temperature":true,"tool_call":true},"zai-org/GLM-5.1-FP8":{"attachment":false,"cost":{"cache_read":0.26,"cache_write":0,"input":1.4,"output":4.4},"family":"glm","id":"zai-org/GLM-5.1-FP8","interleaved":{"field":"reasoning_content"},"last_updated":"2026-03-27","limit":{"context":202752,"output":202752},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 5.1","open_weights":false,"reasoning":true,"release_date":"2026-03-27","structured_output":true,"temperature":true,"tool_call":true}},"name":"Inceptron","npm":"@ai-sdk/openai-compatible"},"inference":{"api":"https://inference.net/v1","doc":"https://inference.net/models","env":["INFERENCE_API_KEY"],"id":"inference","models":{"google/gemma-3":{"attachment":true,"cost":{"input":0.15,"output":0.3},"family":"gemma","id":"google/gemma-3","knowledge":"2024-12","last_updated":"2025-01-01","limit":{"context":125000,"output":4096},"modalities":{"input":["text","image"],"output":["text"]},"name":"Google Gemma 3","open_weights":true,"reasoning":false,"release_date":"2025-01-01","temperature":true,"tool_call":true},"meta/llama-3.1-8b-instruct":{"attachment":false,"cost":{"input":0.025,"output":0.025},"family":"llama","id":"meta/llama-3.1-8b-instruct","knowledge":"2023-12","last_updated":"2025-01-01","limit":{"context":16000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.1 8B Instruct","open_weights":true,"reasoning":false,"release_date":"2025-01-01","temperature":true,"tool_call":true},"meta/llama-3.2-11b-vision-instruct":{"attachment":true,"cost":{"input":0.055,"output":0.055},"family":"llama","id":"meta/llama-3.2-11b-vision-instruct","knowledge":"2023-12","last_updated":"2025-01-01","limit":{"context":16000,"output":4096},"modalities":{"input":["text","image"],"output":["text"]},"name":"Llama 3.2 11B Vision Instruct","open_weights":true,"reasoning":false,"release_date":"2025-01-01","temperature":true,"tool_call":true},"meta/llama-3.2-1b-instruct":{"attachment":false,"cost":{"input":0.01,"output":0.01},"family":"llama","id":"meta/llama-3.2-1b-instruct","knowledge":"2023-12","last_updated":"2025-01-01","limit":{"context":16000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.2 1B Instruct","open_weights":true,"reasoning":false,"release_date":"2025-01-01","temperature":true,"tool_call":true},"meta/llama-3.2-3b-instruct":{"attachment":false,"cost":{"input":0.02,"output":0.02},"family":"llama","id":"meta/llama-3.2-3b-instruct","knowledge":"2023-12","last_updated":"2025-01-01","limit":{"context":16000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.2 3B Instruct","open_weights":true,"reasoning":false,"release_date":"2025-01-01","temperature":true,"tool_call":true},"mistral/mistral-nemo-12b-instruct":{"attachment":false,"cost":{"input":0.038,"output":0.1},"family":"mistral-nemo","id":"mistral/mistral-nemo-12b-instruct","knowledge":"2024-12","last_updated":"2025-01-01","limit":{"context":16000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Mistral Nemo 12B Instruct","open_weights":true,"reasoning":false,"release_date":"2025-01-01","temperature":true,"tool_call":true},"osmosis/osmosis-structure-0.6b":{"attachment":false,"cost":{"input":0.1,"output":0.5},"family":"osmosis","id":"osmosis/osmosis-structure-0.6b","knowledge":"2024-12","last_updated":"2025-01-01","limit":{"context":4000,"output":2048},"modalities":{"input":["text"],"output":["text"]},"name":"Osmosis Structure 0.6B","open_weights":true,"reasoning":false,"release_date":"2025-01-01","temperature":true,"tool_call":true},"qwen/qwen-2.5-7b-vision-instruct":{"attachment":true,"cost":{"input":0.2,"output":0.2},"family":"qwen","id":"qwen/qwen-2.5-7b-vision-instruct","knowledge":"2024-12","last_updated":"2025-01-01","limit":{"context":125000,"output":4096},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen 2.5 7B Vision Instruct","open_weights":true,"reasoning":false,"release_date":"2025-01-01","temperature":true,"tool_call":true},"qwen/qwen3-embedding-4b":{"attachment":false,"cost":{"input":0.01,"output":0},"family":"qwen","id":"qwen/qwen3-embedding-4b","knowledge":"2024-12","last_updated":"2025-01-01","limit":{"context":32000,"output":2048},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen 3 Embedding 4B","open_weights":true,"reasoning":false,"release_date":"2025-01-01","temperature":false,"tool_call":false}},"name":"Inference","npm":"@ai-sdk/openai-compatible"},"io-net":{"api":"https://api.intelligence.io.solutions/api/v1","doc":"https://io.net/docs/guides/intelligence/io-intelligence","env":["IOINTELLIGENCE_API_KEY"],"id":"io-net","models":{"Intel/Qwen3-Coder-480B-A35B-Instruct-int4-mixed-ar":{"attachment":false,"cost":{"cache_read":0.11,"cache_write":0.44,"input":0.22,"output":0.95},"family":"qwen","id":"Intel/Qwen3-Coder-480B-A35B-Instruct-int4-mixed-ar","knowledge":"2024-12","last_updated":"2025-01-15","limit":{"context":106000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen 3 Coder 480B","open_weights":true,"reasoning":false,"release_date":"2025-01-15","temperature":true,"tool_call":true},"Qwen/Qwen2.5-VL-32B-Instruct":{"attachment":false,"cost":{"cache_read":0.025,"cache_write":0.1,"input":0.05,"output":0.22},"family":"qwen","id":"Qwen/Qwen2.5-VL-32B-Instruct","knowledge":"2024-09","last_updated":"2024-11-01","limit":{"context":32000,"output":4096},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen 2.5 VL 32B Instruct","open_weights":true,"reasoning":false,"release_date":"2024-11-01","temperature":true,"tool_call":true},"Qwen/Qwen3-235B-A22B-Thinking-2507":{"attachment":false,"cost":{"cache_read":0.055,"cache_write":0.22,"input":0.11,"output":0.6},"family":"qwen","id":"Qwen/Qwen3-235B-A22B-Thinking-2507","knowledge":"2024-12","last_updated":"2025-07-01","limit":{"context":262144,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen 3 235B Thinking","open_weights":true,"reasoning":true,"release_date":"2025-07-01","temperature":true,"tool_call":true},"Qwen/Qwen3-Next-80B-A3B-Instruct":{"attachment":false,"cost":{"cache_read":0.05,"cache_write":0.2,"input":0.1,"output":0.8},"family":"qwen","id":"Qwen/Qwen3-Next-80B-A3B-Instruct","knowledge":"2024-12","last_updated":"2025-01-10","limit":{"context":262144,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen 3 Next 80B Instruct","open_weights":true,"reasoning":false,"release_date":"2025-01-10","temperature":true,"tool_call":true},"deepseek-ai/DeepSeek-R1-0528":{"attachment":false,"cost":{"cache_read":1,"cache_write":4,"input":2,"output":8.75},"family":"deepseek-thinking","id":"deepseek-ai/DeepSeek-R1-0528","knowledge":"2024-07","last_updated":"2025-05-28","limit":{"context":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek R1","open_weights":true,"reasoning":true,"release_date":"2025-01-20","temperature":true,"tool_call":true},"meta-llama/Llama-3.2-90B-Vision-Instruct":{"attachment":false,"cost":{"cache_read":0.175,"cache_write":0.7,"input":0.35,"output":0.4},"family":"llama","id":"meta-llama/Llama-3.2-90B-Vision-Instruct","knowledge":"2023-12","last_updated":"2024-09-25","limit":{"context":16000,"output":4096},"modalities":{"input":["text","image"],"output":["text"]},"name":"Llama 3.2 90B Vision Instruct","open_weights":true,"reasoning":false,"release_date":"2024-09-25","temperature":true,"tool_call":true},"meta-llama/Llama-3.3-70B-Instruct":{"attachment":false,"cost":{"cache_read":0.065,"cache_write":0.26,"input":0.13,"output":0.38},"family":"llama","id":"meta-llama/Llama-3.3-70B-Instruct","knowledge":"2023-12","last_updated":"2024-12-06","limit":{"context":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.3 70B Instruct","open_weights":true,"reasoning":false,"release_date":"2024-12-06","temperature":true,"tool_call":true},"meta-llama/Llama-4-Maverick-17B-128E-Instruct-FP8":{"attachment":false,"cost":{"cache_read":0.075,"cache_write":0.3,"input":0.15,"output":0.6},"family":"llama","id":"meta-llama/Llama-4-Maverick-17B-128E-Instruct-FP8","knowledge":"2024-12","last_updated":"2025-01-15","limit":{"context":430000,"output":4096},"modalities":{"input":["text","image"],"output":["text"]},"name":"Llama 4 Maverick 17B 128E Instruct","open_weights":true,"reasoning":false,"release_date":"2025-01-15","temperature":true,"tool_call":true},"mistralai/Devstral-Small-2505":{"attachment":false,"cost":{"cache_read":0.025,"cache_write":0.1,"input":0.05,"output":0.22},"family":"devstral","id":"mistralai/Devstral-Small-2505","knowledge":"2024-12","last_updated":"2025-05-01","limit":{"context":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Devstral Small 2505","open_weights":false,"reasoning":false,"release_date":"2025-05-01","temperature":true,"tool_call":true},"mistralai/Magistral-Small-2506":{"attachment":false,"cost":{"cache_read":0.25,"cache_write":1,"input":0.5,"output":1.5},"family":"magistral-small","id":"mistralai/Magistral-Small-2506","knowledge":"2025-01","last_updated":"2025-06-01","limit":{"context":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Magistral Small 2506","open_weights":false,"reasoning":false,"release_date":"2025-06-01","temperature":true,"tool_call":true},"mistralai/Mistral-Large-Instruct-2411":{"attachment":false,"cost":{"cache_read":1,"cache_write":4,"input":2,"output":6},"family":"mistral-large","id":"mistralai/Mistral-Large-Instruct-2411","knowledge":"2024-10","last_updated":"2024-11-01","limit":{"context":128000,"output":4096},"modalities":{"input":["text","image"],"output":["text"]},"name":"Mistral Large Instruct 2411","open_weights":false,"reasoning":false,"release_date":"2024-11-01","temperature":true,"tool_call":true},"mistralai/Mistral-Nemo-Instruct-2407":{"attachment":false,"cost":{"cache_read":0.01,"cache_write":0.04,"input":0.02,"output":0.04},"family":"mistral-nemo","id":"mistralai/Mistral-Nemo-Instruct-2407","knowledge":"2024-05","last_updated":"2024-07-01","limit":{"context":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Mistral Nemo Instruct 2407","open_weights":true,"reasoning":false,"release_date":"2024-07-01","temperature":true,"tool_call":true},"moonshotai/Kimi-K2-Instruct-0905":{"attachment":false,"cost":{"cache_read":0.195,"cache_write":0.78,"input":0.39,"output":1.9},"family":"kimi","id":"moonshotai/Kimi-K2-Instruct-0905","knowledge":"2024-08","last_updated":"2024-09-05","limit":{"context":32768,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Kimi K2 Instruct","open_weights":false,"reasoning":false,"release_date":"2024-09-05","temperature":true,"tool_call":true},"moonshotai/Kimi-K2-Thinking":{"attachment":false,"cost":{"cache_read":0.275,"cache_write":1.1,"input":0.55,"output":2.25},"family":"kimi-thinking","id":"moonshotai/Kimi-K2-Thinking","knowledge":"2024-08","last_updated":"2024-11-01","limit":{"context":32768,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Kimi K2 Thinking","open_weights":false,"reasoning":true,"release_date":"2024-11-01","temperature":true,"tool_call":true},"openai/gpt-oss-120b":{"attachment":false,"cost":{"cache_read":0.02,"cache_write":0.08,"input":0.04,"output":0.4},"family":"gpt-oss","id":"openai/gpt-oss-120b","knowledge":"2024-10","last_updated":"2024-12-01","limit":{"context":131072,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"GPT-OSS 120B","open_weights":true,"reasoning":false,"release_date":"2024-12-01","temperature":true,"tool_call":true},"openai/gpt-oss-20b":{"attachment":false,"cost":{"cache_read":0.015,"cache_write":0.06,"input":0.03,"output":0.14},"family":"gpt-oss","id":"openai/gpt-oss-20b","knowledge":"2024-10","last_updated":"2024-12-01","limit":{"context":64000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"GPT-OSS 20B","open_weights":true,"reasoning":false,"release_date":"2024-12-01","temperature":true,"tool_call":true},"zai-org/GLM-4.6":{"attachment":false,"cost":{"cache_read":0.2,"cache_write":0.8,"input":0.4,"output":1.75},"family":"glm","id":"zai-org/GLM-4.6","knowledge":"2024-10","last_updated":"2024-11-15","limit":{"context":200000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 4.6","open_weights":false,"reasoning":false,"release_date":"2024-11-15","temperature":true,"tool_call":true}},"name":"IO.NET","npm":"@ai-sdk/openai-compatible"},"jiekou":{"api":"https://api.jiekou.ai/openai","doc":"https://docs.jiekou.ai/docs/support/quickstart?utm_source=github_models.dev","env":["JIEKOU_API_KEY"],"id":"jiekou","models":{"baidu/ernie-4.5-300b-a47b-paddle":{"attachment":false,"cost":{"input":0.28,"output":1.1},"family":"ernie","id":"baidu/ernie-4.5-300b-a47b-paddle","last_updated":"2026-01","limit":{"context":123000,"output":12000},"modalities":{"input":["text"],"output":["text"]},"name":"ERNIE 4.5 300B A47B","open_weights":true,"reasoning":false,"release_date":"2026-01","structured_output":true,"temperature":true,"tool_call":true},"baidu/ernie-4.5-vl-424b-a47b":{"attachment":true,"cost":{"input":0.42,"output":1.25},"family":"ernie","id":"baidu/ernie-4.5-vl-424b-a47b","last_updated":"2026-01","limit":{"context":123000,"output":16000},"modalities":{"input":["text","image"],"output":["text"]},"name":"ERNIE 4.5 VL 424B A47B","open_weights":true,"reasoning":true,"release_date":"2026-01","structured_output":false,"temperature":true,"tool_call":true},"claude-haiku-4-5-20251001":{"attachment":true,"cost":{"input":0.9,"output":4.5},"family":"claude-haiku","id":"claude-haiku-4-5-20251001","last_updated":"2026-01","limit":{"context":20000,"output":64000},"modalities":{"input":["text","image"],"output":["text"]},"name":"claude-haiku-4-5-20251001","open_weights":false,"reasoning":false,"release_date":"2026-01","structured_output":true,"temperature":true,"tool_call":true},"claude-opus-4-1-20250805":{"attachment":true,"cost":{"input":13.5,"output":67.5},"family":"claude-opus","id":"claude-opus-4-1-20250805","last_updated":"2026-01","limit":{"context":200000,"output":32000},"modalities":{"input":["text","image"],"output":["text"]},"name":"claude-opus-4-1-20250805","open_weights":false,"reasoning":false,"release_date":"2026-01","structured_output":true,"temperature":true,"tool_call":true},"claude-opus-4-20250514":{"attachment":true,"cost":{"input":13.5,"output":67.5},"family":"claude-opus","id":"claude-opus-4-20250514","last_updated":"2026-01","limit":{"context":200000,"output":32000},"modalities":{"input":["text","image"],"output":["text"]},"name":"claude-opus-4-20250514","open_weights":false,"reasoning":false,"release_date":"2026-01","structured_output":true,"temperature":true,"tool_call":true},"claude-opus-4-5-20251101":{"attachment":true,"cost":{"input":4.5,"output":22.5},"family":"claude-opus","id":"claude-opus-4-5-20251101","last_updated":"2026-01","limit":{"context":200000,"output":65536},"modalities":{"input":["text","image"],"output":["text"]},"name":"claude-opus-4-5-20251101","open_weights":false,"reasoning":false,"release_date":"2026-01","structured_output":true,"temperature":true,"tool_call":true},"claude-opus-4-6":{"attachment":true,"cost":{"input":5,"output":25},"family":"claude-opus","id":"claude-opus-4-6","knowledge":"2025-05-31","last_updated":"2026-02","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"claude-opus-4-6","open_weights":false,"reasoning":true,"release_date":"2026-02","structured_output":true,"temperature":true,"tool_call":true},"claude-sonnet-4-20250514":{"attachment":true,"cost":{"input":2.7,"output":13.5},"family":"claude-sonnet","id":"claude-sonnet-4-20250514","last_updated":"2026-01","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image"],"output":["text"]},"name":"claude-sonnet-4-20250514","open_weights":false,"reasoning":false,"release_date":"2026-01","structured_output":true,"temperature":true,"tool_call":true},"claude-sonnet-4-5-20250929":{"attachment":true,"cost":{"input":2.7,"output":13.5},"family":"claude-sonnet","id":"claude-sonnet-4-5-20250929","last_updated":"2026-01","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image"],"output":["text"]},"name":"claude-sonnet-4-5-20250929","open_weights":false,"reasoning":false,"release_date":"2026-01","structured_output":true,"temperature":true,"tool_call":true},"deepseek/deepseek-r1-0528":{"attachment":false,"cost":{"input":0.7,"output":2.5},"family":"deepseek-thinking","id":"deepseek/deepseek-r1-0528","last_updated":"2026-01","limit":{"context":163840,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek R1 0528","open_weights":true,"reasoning":true,"release_date":"2026-01","structured_output":true,"temperature":true,"tool_call":true},"deepseek/deepseek-v3-0324":{"attachment":false,"cost":{"input":0.28,"output":1.14},"family":"deepseek","id":"deepseek/deepseek-v3-0324","last_updated":"2026-01","limit":{"context":163840,"output":163840},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V3 0324","open_weights":true,"reasoning":false,"release_date":"2026-01","structured_output":true,"temperature":true,"tool_call":true},"deepseek/deepseek-v3.1":{"attachment":false,"cost":{"input":0.27,"output":1},"family":"deepseek","id":"deepseek/deepseek-v3.1","last_updated":"2026-01","limit":{"context":163840,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V3.1","open_weights":true,"reasoning":true,"release_date":"2026-01","structured_output":true,"temperature":true,"tool_call":true},"gemini-2.5-flash":{"attachment":true,"cost":{"input":0.27,"output":2.25},"family":"gemini-flash","id":"gemini-2.5-flash","last_updated":"2026-01","limit":{"context":1048576,"output":65535},"modalities":{"input":["text","image","video","audio"],"output":["text"]},"name":"gemini-2.5-flash","open_weights":false,"reasoning":false,"release_date":"2026-01","structured_output":true,"temperature":true,"tool_call":true},"gemini-2.5-flash-lite":{"attachment":true,"cost":{"input":0.09,"output":0.36},"family":"gemini-flash-lite","id":"gemini-2.5-flash-lite","last_updated":"2026-01","limit":{"context":1048576,"output":65535},"modalities":{"input":["text","image","video","audio"],"output":["text"]},"name":"gemini-2.5-flash-lite","open_weights":false,"reasoning":false,"release_date":"2026-01","structured_output":true,"temperature":true,"tool_call":true},"gemini-2.5-flash-lite-preview-06-17":{"attachment":true,"cost":{"input":0.09,"output":0.36},"family":"gemini-flash-lite","id":"gemini-2.5-flash-lite-preview-06-17","last_updated":"2026-01","limit":{"context":1048576,"output":65535},"modalities":{"input":["text","video","image","audio"],"output":["text"]},"name":"gemini-2.5-flash-lite-preview-06-17","open_weights":false,"reasoning":false,"release_date":"2026-01","structured_output":true,"temperature":true,"tool_call":true},"gemini-2.5-flash-lite-preview-09-2025":{"attachment":true,"cost":{"input":0.09,"output":0.36},"family":"gemini-flash-lite","id":"gemini-2.5-flash-lite-preview-09-2025","last_updated":"2026-01","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","video","audio"],"output":["text"]},"name":"gemini-2.5-flash-lite-preview-09-2025","open_weights":false,"reasoning":true,"release_date":"2026-01","structured_output":true,"temperature":true,"tool_call":true},"gemini-2.5-flash-preview-05-20":{"attachment":true,"cost":{"input":0.135,"output":3.15},"family":"gemini-flash","id":"gemini-2.5-flash-preview-05-20","last_updated":"2026-01","limit":{"context":1048576,"output":200000},"modalities":{"input":["text","image","video","audio"],"output":["text"]},"name":"gemini-2.5-flash-preview-05-20","open_weights":false,"reasoning":false,"release_date":"2026-01","structured_output":true,"temperature":true,"tool_call":true},"gemini-2.5-pro":{"attachment":true,"cost":{"input":1.125,"output":9},"family":"gemini-pro","id":"gemini-2.5-pro","last_updated":"2026-01","limit":{"context":1048576,"output":65535},"modalities":{"input":["text","image","video","audio"],"output":["text"]},"name":"gemini-2.5-pro","open_weights":false,"reasoning":false,"release_date":"2026-01","structured_output":true,"temperature":true,"tool_call":true},"gemini-2.5-pro-preview-06-05":{"attachment":true,"cost":{"input":1.125,"output":9},"family":"gemini-pro","id":"gemini-2.5-pro-preview-06-05","last_updated":"2026-01","limit":{"context":1048576,"output":200000},"modalities":{"input":["text","image","video","audio"],"output":["text"]},"name":"gemini-2.5-pro-preview-06-05","open_weights":false,"reasoning":false,"release_date":"2026-01","structured_output":true,"temperature":true,"tool_call":true},"gemini-3-flash-preview":{"attachment":true,"cost":{"input":0.5,"output":3},"family":"gemini-flash","id":"gemini-3-flash-preview","last_updated":"2026-01","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","video","audio"],"output":["text"]},"name":"gemini-3-flash-preview","open_weights":false,"reasoning":false,"release_date":"2026-01","structured_output":true,"temperature":true,"tool_call":true},"gemini-3-pro-preview":{"attachment":true,"cost":{"input":1.8,"output":10.8},"family":"gemini-pro","id":"gemini-3-pro-preview","last_updated":"2026-01","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","video","audio"],"output":["text"]},"name":"gemini-3-pro-preview","open_weights":false,"reasoning":false,"release_date":"2026-01","structured_output":true,"temperature":true,"tool_call":true},"gpt-5-chat-latest":{"attachment":true,"cost":{"input":1.125,"output":9},"family":"gpt","id":"gpt-5-chat-latest","last_updated":"2026-01","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"gpt-5-chat-latest","open_weights":false,"reasoning":false,"release_date":"2026-01","structured_output":true,"temperature":true,"tool_call":true},"gpt-5-codex":{"attachment":true,"cost":{"input":1.125,"output":9},"family":"gpt-codex","id":"gpt-5-codex","last_updated":"2026-01","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"gpt-5-codex","open_weights":false,"reasoning":false,"release_date":"2026-01","structured_output":true,"temperature":true,"tool_call":true},"gpt-5-mini":{"attachment":true,"cost":{"input":0.225,"output":1.8},"family":"gpt-mini","id":"gpt-5-mini","last_updated":"2026-01","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"gpt-5-mini","open_weights":false,"reasoning":true,"release_date":"2026-01","structured_output":true,"temperature":true,"tool_call":true},"gpt-5-nano":{"attachment":true,"cost":{"input":0.045,"output":0.36},"family":"gpt-nano","id":"gpt-5-nano","last_updated":"2026-01","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"gpt-5-nano","open_weights":false,"reasoning":false,"release_date":"2026-01","structured_output":true,"temperature":true,"tool_call":true},"gpt-5-pro":{"attachment":true,"cost":{"input":13.5,"output":108},"family":"gpt-pro","id":"gpt-5-pro","last_updated":"2026-01","limit":{"context":400000,"output":272000},"modalities":{"input":["text","image"],"output":["text"]},"name":"gpt-5-pro","open_weights":false,"reasoning":true,"release_date":"2026-01","structured_output":true,"temperature":true,"tool_call":true},"gpt-5.1":{"attachment":true,"cost":{"input":1.125,"output":9},"family":"gpt","id":"gpt-5.1","last_updated":"2026-02","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"gpt-5.1","open_weights":false,"reasoning":true,"release_date":"2026-02","structured_output":true,"temperature":true,"tool_call":true},"gpt-5.1-codex":{"attachment":true,"cost":{"input":1.125,"output":9},"family":"gpt-codex","id":"gpt-5.1-codex","last_updated":"2026-01","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"gpt-5.1-codex","open_weights":false,"reasoning":true,"release_date":"2026-01","structured_output":true,"temperature":true,"tool_call":true},"gpt-5.1-codex-max":{"attachment":true,"cost":{"input":1.125,"output":9},"family":"gpt-codex","id":"gpt-5.1-codex-max","last_updated":"2026-01","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"gpt-5.1-codex-max","open_weights":false,"reasoning":true,"release_date":"2026-01","structured_output":true,"temperature":true,"tool_call":true},"gpt-5.1-codex-mini":{"attachment":true,"cost":{"input":0.225,"output":1.8},"family":"gpt-codex","id":"gpt-5.1-codex-mini","last_updated":"2026-01","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"gpt-5.1-codex-mini","open_weights":false,"reasoning":true,"release_date":"2026-01","structured_output":true,"temperature":true,"tool_call":true},"gpt-5.2":{"attachment":true,"cost":{"input":1.575,"output":12.6},"family":"gpt","id":"gpt-5.2","last_updated":"2026-01","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"gpt-5.2","open_weights":false,"reasoning":false,"release_date":"2026-01","structured_output":true,"temperature":true,"tool_call":true},"gpt-5.2-codex":{"attachment":true,"cost":{"input":1.75,"output":14},"family":"gpt-codex","id":"gpt-5.2-codex","last_updated":"2026-01","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"gpt-5.2-codex","open_weights":false,"reasoning":true,"release_date":"2026-01","structured_output":true,"temperature":true,"tool_call":true},"gpt-5.2-pro":{"attachment":true,"cost":{"input":18.9,"output":151.2},"family":"gpt-pro","id":"gpt-5.2-pro","last_updated":"2026-01","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"gpt-5.2-pro","open_weights":false,"reasoning":true,"release_date":"2026-01","structured_output":true,"temperature":true,"tool_call":true},"grok-4-0709":{"attachment":true,"cost":{"input":2.7,"output":13.5},"family":"grok","id":"grok-4-0709","last_updated":"2026-01","limit":{"context":256000,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"grok-4-0709","open_weights":false,"reasoning":false,"release_date":"2026-01","structured_output":true,"temperature":true,"tool_call":true},"grok-4-1-fast-non-reasoning":{"attachment":true,"cost":{"input":0.18,"output":0.45},"family":"grok","id":"grok-4-1-fast-non-reasoning","last_updated":"2026-01","limit":{"context":2000000,"output":2000000},"modalities":{"input":["text","image"],"output":["text"]},"name":"grok-4-1-fast-non-reasoning","open_weights":false,"reasoning":false,"release_date":"2026-01","structured_output":true,"temperature":true,"tool_call":true},"grok-4-1-fast-reasoning":{"attachment":true,"cost":{"input":0.18,"output":0.45},"family":"grok","id":"grok-4-1-fast-reasoning","last_updated":"2026-01","limit":{"context":2000000,"output":2000000},"modalities":{"input":["text","image"],"output":["text"]},"name":"grok-4-1-fast-reasoning","open_weights":false,"reasoning":false,"release_date":"2026-01","structured_output":true,"temperature":true,"tool_call":true},"grok-4-fast-non-reasoning":{"attachment":true,"cost":{"input":0.18,"output":0.45},"family":"grok","id":"grok-4-fast-non-reasoning","last_updated":"2026-01","limit":{"context":2000000,"output":2000000},"modalities":{"input":["text","image"],"output":["text"]},"name":"grok-4-fast-non-reasoning","open_weights":false,"reasoning":false,"release_date":"2026-01","structured_output":true,"temperature":true,"tool_call":true},"grok-4-fast-reasoning":{"attachment":true,"cost":{"input":0.18,"output":0.45},"family":"grok","id":"grok-4-fast-reasoning","last_updated":"2026-01","limit":{"context":2000000,"output":2000000},"modalities":{"input":["text","image"],"output":["text"]},"name":"grok-4-fast-reasoning","open_weights":false,"reasoning":false,"release_date":"2026-01","structured_output":true,"temperature":true,"tool_call":true},"grok-code-fast-1":{"attachment":true,"cost":{"input":0.18,"output":1.35},"family":"grok","id":"grok-code-fast-1","last_updated":"2026-01","limit":{"context":256000,"output":256000},"modalities":{"input":["text","image"],"output":["text"]},"name":"grok-code-fast-1","open_weights":false,"reasoning":false,"release_date":"2026-01","structured_output":true,"temperature":true,"tool_call":true},"minimax/minimax-m2.1":{"attachment":false,"cost":{"input":0.3,"output":1.2},"family":"minimax","id":"minimax/minimax-m2.1","last_updated":"2026-01","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"Minimax M2.1","open_weights":true,"reasoning":true,"release_date":"2026-01","structured_output":true,"temperature":true,"tool_call":true},"minimaxai/minimax-m1-80k":{"attachment":false,"cost":{"input":0.55,"output":2.2},"family":"minimax","id":"minimaxai/minimax-m1-80k","last_updated":"2026-01","limit":{"context":1000000,"output":40000},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax M1","open_weights":true,"reasoning":true,"release_date":"2026-01","structured_output":false,"temperature":true,"tool_call":true},"moonshotai/kimi-k2-0905":{"attachment":false,"cost":{"input":0.6,"output":2.5},"family":"kimi","id":"moonshotai/kimi-k2-0905","last_updated":"2026-01","limit":{"context":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Kimi K2 0905","open_weights":true,"reasoning":false,"release_date":"2026-01","structured_output":true,"temperature":true,"tool_call":true},"moonshotai/kimi-k2-instruct":{"attachment":false,"cost":{"input":0.57,"output":2.3},"family":"kimi","id":"moonshotai/kimi-k2-instruct","last_updated":"2026-01","limit":{"context":131072,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"Kimi K2 Instruct","open_weights":true,"reasoning":false,"release_date":"2026-01","structured_output":true,"temperature":true,"tool_call":true},"moonshotai/kimi-k2.5":{"attachment":true,"cost":{"input":0.6,"output":3},"family":"kimi","id":"moonshotai/kimi-k2.5","last_updated":"2026-01","limit":{"context":262144,"output":262144},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Kimi K2.5","open_weights":true,"reasoning":true,"release_date":"2026-01","structured_output":true,"temperature":true,"tool_call":true},"o3":{"attachment":true,"cost":{"input":10,"output":40},"id":"o3","last_updated":"2026-01","limit":{"context":131072,"output":131072},"modalities":{"input":["text","image"],"output":["text"]},"name":"o3","open_weights":false,"reasoning":false,"release_date":"2026-01","structured_output":true,"temperature":true,"tool_call":true},"o3-mini":{"attachment":true,"cost":{"input":1.1,"output":4.4},"family":"o","id":"o3-mini","last_updated":"2026-01","limit":{"context":131072,"output":131072},"modalities":{"input":["text","image"],"output":["text"]},"name":"o3-mini","open_weights":false,"reasoning":false,"release_date":"2026-01","structured_output":true,"temperature":true,"tool_call":true},"o4-mini":{"attachment":true,"cost":{"input":1.1,"output":4.4},"family":"o","id":"o4-mini","last_updated":"2026-01","limit":{"context":200000,"output":100000},"modalities":{"input":["text","image"],"output":["text"]},"name":"o4-mini","open_weights":false,"reasoning":false,"release_date":"2026-01","structured_output":true,"temperature":true,"tool_call":true},"qwen/qwen3-235b-a22b-fp8":{"attachment":false,"cost":{"input":0.2,"output":0.8},"family":"qwen","id":"qwen/qwen3-235b-a22b-fp8","last_updated":"2026-01","limit":{"context":40960,"output":20000},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 235B A22B","open_weights":true,"reasoning":true,"release_date":"2026-01","structured_output":false,"temperature":true,"tool_call":false},"qwen/qwen3-235b-a22b-instruct-2507":{"attachment":false,"cost":{"input":0.15,"output":0.8},"family":"qwen","id":"qwen/qwen3-235b-a22b-instruct-2507","last_updated":"2026-01","limit":{"context":131072,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 235B A22B Instruct 2507","open_weights":true,"reasoning":false,"release_date":"2026-01","structured_output":true,"temperature":true,"tool_call":true},"qwen/qwen3-235b-a22b-thinking-2507":{"attachment":false,"cost":{"input":0.3,"output":3},"family":"qwen","id":"qwen/qwen3-235b-a22b-thinking-2507","last_updated":"2026-01","limit":{"context":131072,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 235B A22b Thinking 2507","open_weights":true,"reasoning":true,"release_date":"2026-01","structured_output":true,"temperature":true,"tool_call":true},"qwen/qwen3-30b-a3b-fp8":{"attachment":false,"cost":{"input":0.09,"output":0.45},"family":"qwen","id":"qwen/qwen3-30b-a3b-fp8","last_updated":"2026-01","limit":{"context":40960,"output":20000},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 30B A3B","open_weights":true,"reasoning":true,"release_date":"2026-01","structured_output":false,"temperature":true,"tool_call":false},"qwen/qwen3-32b-fp8":{"attachment":false,"cost":{"input":0.1,"output":0.45},"family":"qwen","id":"qwen/qwen3-32b-fp8","last_updated":"2026-01","limit":{"context":40960,"output":20000},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 32B","open_weights":true,"reasoning":true,"release_date":"2026-01","structured_output":false,"temperature":true,"tool_call":false},"qwen/qwen3-coder-480b-a35b-instruct":{"attachment":false,"cost":{"input":0.29,"output":1.2},"family":"qwen","id":"qwen/qwen3-coder-480b-a35b-instruct","last_updated":"2026-01","limit":{"context":262144,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Coder 480B A35B Instruct","open_weights":true,"reasoning":false,"release_date":"2026-01","structured_output":true,"temperature":true,"tool_call":true},"qwen/qwen3-coder-next":{"attachment":false,"cost":{"input":0.2,"output":1.5},"family":"qwen","id":"qwen/qwen3-coder-next","last_updated":"2026-02","limit":{"context":262144,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"qwen/qwen3-coder-next","open_weights":true,"reasoning":false,"release_date":"2026-02","structured_output":true,"temperature":true,"tool_call":true},"qwen/qwen3-next-80b-a3b-instruct":{"attachment":false,"cost":{"input":0.15,"output":1.5},"family":"qwen","id":"qwen/qwen3-next-80b-a3b-instruct","last_updated":"2026-01","limit":{"context":65536,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Next 80B A3B Instruct","open_weights":true,"reasoning":false,"release_date":"2026-01","structured_output":true,"temperature":true,"tool_call":true},"qwen/qwen3-next-80b-a3b-thinking":{"attachment":false,"cost":{"input":0.15,"output":1.5},"family":"qwen","id":"qwen/qwen3-next-80b-a3b-thinking","last_updated":"2026-01","limit":{"context":65536,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Next 80B A3B Thinking","open_weights":true,"reasoning":true,"release_date":"2026-01","structured_output":true,"temperature":true,"tool_call":true},"xiaomimimo/mimo-v2-flash":{"attachment":false,"cost":{"input":0,"output":0},"family":"mimo","id":"xiaomimimo/mimo-v2-flash","last_updated":"2026-01","limit":{"context":262144,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"XiaomiMiMo/MiMo-V2-Flash","open_weights":true,"reasoning":true,"release_date":"2026-01","structured_output":true,"temperature":true,"tool_call":true},"zai-org/glm-4.5":{"attachment":false,"cost":{"input":0.6,"output":2.2},"family":"glm","id":"zai-org/glm-4.5","last_updated":"2026-01","limit":{"context":131072,"output":98304},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4.5","open_weights":true,"reasoning":true,"release_date":"2026-01","structured_output":true,"temperature":true,"tool_call":true},"zai-org/glm-4.5v":{"attachment":true,"cost":{"input":0.6,"output":1.8},"family":"glmv","id":"zai-org/glm-4.5v","last_updated":"2026-01","limit":{"context":65536,"output":16384},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"GLM 4.5V","open_weights":true,"reasoning":true,"release_date":"2026-01","structured_output":true,"temperature":true,"tool_call":true},"zai-org/glm-4.7":{"attachment":false,"cost":{"input":0.6,"output":2.2},"family":"glm","id":"zai-org/glm-4.7","last_updated":"2026-01","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4.7","open_weights":true,"reasoning":true,"release_date":"2026-01","structured_output":true,"temperature":true,"tool_call":true},"zai-org/glm-4.7-flash":{"attachment":false,"cost":{"input":0.07,"output":0.4},"family":"glm","id":"zai-org/glm-4.7-flash","last_updated":"2026-01","limit":{"context":200000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4.7-Flash","open_weights":true,"reasoning":true,"release_date":"2026-01","structured_output":true,"temperature":true,"tool_call":true}},"name":"Jiekou.AI","npm":"@ai-sdk/openai-compatible"},"kilo":{"api":"https://api.kilo.ai/api/gateway","doc":"https://kilo.ai","env":["KILO_API_KEY"],"id":"kilo","models":{"ai21/jamba-large-1.7":{"attachment":false,"cost":{"input":2,"output":8},"id":"ai21/jamba-large-1.7","last_updated":"2026-03-15","limit":{"context":256000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"AI21: Jamba Large 1.7","open_weights":false,"reasoning":false,"release_date":"2025-08-09","temperature":true,"tool_call":true},"aion-labs/aion-1.0":{"attachment":false,"cost":{"input":4,"output":8},"id":"aion-labs/aion-1.0","last_updated":"2026-03-15","limit":{"context":131072,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"AionLabs: Aion-1.0","open_weights":false,"reasoning":true,"release_date":"2025-02-05","temperature":true,"tool_call":false},"aion-labs/aion-1.0-mini":{"attachment":false,"cost":{"input":0.7,"output":1.4},"id":"aion-labs/aion-1.0-mini","last_updated":"2026-03-15","limit":{"context":131072,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"AionLabs: Aion-1.0-Mini","open_weights":false,"reasoning":true,"release_date":"2025-02-05","temperature":true,"tool_call":false},"aion-labs/aion-2.0":{"attachment":false,"cost":{"input":0.8,"output":1.6},"id":"aion-labs/aion-2.0","last_updated":"2026-03-15","limit":{"context":131072,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"AionLabs: Aion-2.0","open_weights":false,"reasoning":true,"release_date":"2026-02-24","temperature":true,"tool_call":false},"aion-labs/aion-rp-llama-3.1-8b":{"attachment":false,"cost":{"input":0.8,"output":1.6},"id":"aion-labs/aion-rp-llama-3.1-8b","last_updated":"2026-03-15","limit":{"context":32768,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"AionLabs: Aion-RP 1.0 (8B)","open_weights":false,"reasoning":false,"release_date":"2025-02-05","temperature":true,"tool_call":false},"alfredpros/codellama-7b-instruct-solidity":{"attachment":false,"cost":{"input":0.8,"output":1.2},"id":"alfredpros/codellama-7b-instruct-solidity","last_updated":"2026-03-15","limit":{"context":4096,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"AlfredPros: CodeLLaMa 7B Instruct Solidity","open_weights":true,"reasoning":false,"release_date":"2025-04-14","temperature":true,"tool_call":false},"allenai/olmo-3-32b-think":{"attachment":false,"cost":{"input":0.15,"output":0.5},"id":"allenai/olmo-3-32b-think","last_updated":"2026-03-15","limit":{"context":65536,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"AllenAI: Olmo 3 32B Think","open_weights":true,"reasoning":true,"release_date":"2025-11-22","temperature":true,"tool_call":false},"amazon/nova-2-lite-v1":{"attachment":true,"cost":{"input":0.3,"output":2.5},"id":"amazon/nova-2-lite-v1","last_updated":"2026-03-15","limit":{"context":1000000,"output":65535},"modalities":{"input":["image","pdf","text","video"],"output":["text"]},"name":"Amazon: Nova 2 Lite","open_weights":false,"reasoning":true,"release_date":"2024-12-01","temperature":true,"tool_call":true},"amazon/nova-lite-v1":{"attachment":true,"cost":{"input":0.06,"output":0.24},"id":"amazon/nova-lite-v1","last_updated":"2026-03-15","limit":{"context":300000,"output":5120},"modalities":{"input":["image","text"],"output":["text"]},"name":"Amazon: Nova Lite 1.0","open_weights":false,"reasoning":false,"release_date":"2024-12-06","temperature":true,"tool_call":true},"amazon/nova-micro-v1":{"attachment":false,"cost":{"input":0.035,"output":0.14},"id":"amazon/nova-micro-v1","last_updated":"2026-03-15","limit":{"context":128000,"output":5120},"modalities":{"input":["text"],"output":["text"]},"name":"Amazon: Nova Micro 1.0","open_weights":false,"reasoning":false,"release_date":"2024-12-06","temperature":true,"tool_call":true},"amazon/nova-premier-v1":{"attachment":true,"cost":{"input":2.5,"output":12.5},"id":"amazon/nova-premier-v1","last_updated":"2026-03-15","limit":{"context":1000000,"output":32000},"modalities":{"input":["image","text"],"output":["text"]},"name":"Amazon: Nova Premier 1.0","open_weights":false,"reasoning":false,"release_date":"2025-11-01","temperature":true,"tool_call":true},"amazon/nova-pro-v1":{"attachment":true,"cost":{"input":0.8,"output":3.2},"id":"amazon/nova-pro-v1","last_updated":"2024-12-03","limit":{"context":300000,"output":5120},"modalities":{"input":["text","image"],"output":["text"]},"name":"Amazon: Nova Pro 1.0","open_weights":false,"reasoning":false,"release_date":"2024-12-03","temperature":true,"tool_call":true},"anthracite-org/magnum-v4-72b":{"attachment":false,"cost":{"input":3,"output":5},"id":"anthracite-org/magnum-v4-72b","last_updated":"2026-03-15","limit":{"context":16384,"output":2048},"modalities":{"input":["text"],"output":["text"]},"name":"Magnum v4 72B","open_weights":true,"reasoning":false,"release_date":"2024-10-22","temperature":true,"tool_call":false},"anthropic/claude-3-haiku":{"attachment":true,"cost":{"cache_read":0.03,"cache_write":0.3,"input":0.25,"output":1.25},"id":"anthropic/claude-3-haiku","last_updated":"2024-03-07","limit":{"context":200000,"output":4096},"modalities":{"input":["text","image"],"output":["text"]},"name":"Anthropic: Claude 3 Haiku","open_weights":false,"reasoning":false,"release_date":"2024-03-07","temperature":true,"tool_call":true},"anthropic/claude-3.5-haiku":{"attachment":true,"cost":{"cache_read":0.08,"cache_write":1,"input":0.8,"output":4},"id":"anthropic/claude-3.5-haiku","last_updated":"2024-10-22","limit":{"context":200000,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Anthropic: Claude 3.5 Haiku","open_weights":false,"reasoning":false,"release_date":"2024-10-22","temperature":true,"tool_call":true},"anthropic/claude-haiku-4.5":{"attachment":true,"cost":{"cache_read":0.1,"cache_write":1.25,"input":1,"output":5},"id":"anthropic/claude-haiku-4.5","last_updated":"2025-10-15","limit":{"context":200000,"output":64000},"modalities":{"input":["image","text"],"output":["text"]},"name":"Anthropic: Claude Haiku 4.5","open_weights":false,"reasoning":true,"release_date":"2025-10-15","temperature":true,"tool_call":true},"anthropic/claude-opus-4":{"attachment":true,"cost":{"cache_read":1.5,"cache_write":18.75,"input":15,"output":75},"id":"anthropic/claude-opus-4","last_updated":"2026-03-15","limit":{"context":200000,"output":32000},"modalities":{"input":["image","pdf","text"],"output":["text"]},"name":"Anthropic: Claude Opus 4","open_weights":false,"reasoning":true,"release_date":"2025-05-22","temperature":true,"tool_call":true},"anthropic/claude-opus-4.1":{"attachment":true,"cost":{"cache_read":1.5,"cache_write":18.75,"input":15,"output":75},"id":"anthropic/claude-opus-4.1","last_updated":"2026-03-15","limit":{"context":200000,"output":32000},"modalities":{"input":["image","pdf","text"],"output":["text"]},"name":"Anthropic: Claude Opus 4.1","open_weights":false,"reasoning":true,"release_date":"2025-08-05","temperature":true,"tool_call":true},"anthropic/claude-opus-4.5":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"input":5,"output":25},"id":"anthropic/claude-opus-4.5","last_updated":"2026-03-15","limit":{"context":200000,"output":64000},"modalities":{"input":["image","pdf","text"],"output":["text"]},"name":"Anthropic: Claude Opus 4.5","open_weights":false,"reasoning":true,"release_date":"2025-11-24","temperature":true,"tool_call":true},"anthropic/claude-opus-4.6":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"input":5,"output":25},"id":"anthropic/claude-opus-4.6","knowledge":"2025-05-31","last_updated":"2026-02-05","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Anthropic: Claude Opus 4.6","open_weights":false,"reasoning":true,"release_date":"2026-02-05","temperature":true,"tool_call":true},"anthropic/claude-opus-4.6-fast":{"attachment":true,"cost":{"cache_read":3,"cache_write":37.5,"input":30,"output":150},"id":"anthropic/claude-opus-4.6-fast","knowledge":"2025-05-31","last_updated":"2026-04-11","limit":{"context":1000000,"output":128000},"modalities":{"input":["image","text"],"output":["text"]},"name":"Anthropic: Claude Opus 4.6 (Fast)","open_weights":false,"reasoning":true,"release_date":"2026-04-07","temperature":true,"tool_call":true},"anthropic/claude-opus-4.7":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"input":5,"output":25},"id":"anthropic/claude-opus-4.7","last_updated":"2026-05-01","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Anthropic: Claude Opus 4.7","open_weights":false,"reasoning":true,"release_date":"2026-04-16","temperature":false,"tool_call":true},"anthropic/claude-opus-4.7-fast":{"attachment":true,"cost":{"cache_read":3,"cache_write":37.5,"input":30,"output":150},"id":"anthropic/claude-opus-4.7-fast","last_updated":"2026-05-16","limit":{"context":1000000,"output":128000},"modalities":{"input":["image","pdf","text"],"output":["text"]},"name":"Anthropic: Claude Opus 4.7 (Fast)","open_weights":false,"reasoning":true,"release_date":"2026-05-12","temperature":false,"tool_call":true},"anthropic/claude-sonnet-4":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"input":3,"output":15},"id":"anthropic/claude-sonnet-4","last_updated":"2026-03-15","limit":{"context":200000,"output":64000},"modalities":{"input":["image","pdf","text"],"output":["text"]},"name":"Anthropic: Claude Sonnet 4","open_weights":false,"reasoning":true,"release_date":"2025-05-22","temperature":true,"tool_call":true},"anthropic/claude-sonnet-4.5":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"input":3,"output":15},"id":"anthropic/claude-sonnet-4.5","last_updated":"2026-03-15","limit":{"context":1000000,"output":64000},"modalities":{"input":["image","pdf","text"],"output":["text"]},"name":"Anthropic: Claude Sonnet 4.5","open_weights":false,"reasoning":true,"release_date":"2025-09-29","temperature":true,"tool_call":true},"anthropic/claude-sonnet-4.6":{"attachment":true,"cost":{"input":3,"output":15},"id":"anthropic/claude-sonnet-4.6","knowledge":"2025-08-31","last_updated":"2026-03-15","limit":{"context":1000000,"output":128000},"modalities":{"input":["image","text"],"output":["text"]},"name":"Anthropic: Claude Sonnet 4.6","open_weights":false,"reasoning":true,"release_date":"2026-02-17","temperature":true,"tool_call":true},"arcee-ai/coder-large":{"attachment":false,"cost":{"input":0.5,"output":0.8},"id":"arcee-ai/coder-large","last_updated":"2026-03-15","limit":{"context":32768,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Arcee AI: Coder Large","open_weights":true,"reasoning":false,"release_date":"2025-05-06","temperature":true,"tool_call":false},"arcee-ai/maestro-reasoning":{"attachment":false,"cost":{"input":0.9,"output":3.3},"id":"arcee-ai/maestro-reasoning","last_updated":"2026-03-15","limit":{"context":131072,"output":32000},"modalities":{"input":["text"],"output":["text"]},"name":"Arcee AI: Maestro Reasoning","open_weights":true,"reasoning":false,"release_date":"2025-05-06","temperature":true,"tool_call":false},"arcee-ai/spotlight":{"attachment":true,"cost":{"input":0.18,"output":0.18},"id":"arcee-ai/spotlight","last_updated":"2026-03-15","limit":{"context":131072,"output":65537},"modalities":{"input":["image","text"],"output":["text"]},"name":"Arcee AI: Spotlight","open_weights":true,"reasoning":false,"release_date":"2025-05-06","temperature":true,"tool_call":false},"arcee-ai/trinity-large-thinking":{"attachment":false,"cost":{"input":0.22,"output":0.85},"id":"arcee-ai/trinity-large-thinking","last_updated":"2026-04-11","limit":{"context":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Arcee AI: Trinity Large Thinking","open_weights":true,"reasoning":true,"release_date":"2026-04-01","temperature":true,"tool_call":true},"arcee-ai/trinity-mini":{"attachment":false,"cost":{"input":0.045,"output":0.15},"id":"arcee-ai/trinity-mini","last_updated":"2026-01-28","limit":{"context":131072,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"Arcee AI: Trinity Mini","open_weights":true,"reasoning":true,"release_date":"2025-12","temperature":true,"tool_call":true},"arcee-ai/virtuoso-large":{"attachment":false,"cost":{"input":0.75,"output":1.2},"id":"arcee-ai/virtuoso-large","last_updated":"2026-03-15","limit":{"context":131072,"output":64000},"modalities":{"input":["text"],"output":["text"]},"name":"Arcee AI: Virtuoso Large","open_weights":true,"reasoning":false,"release_date":"2025-05-06","temperature":true,"tool_call":true},"baidu/cobuddy:free":{"attachment":false,"cost":{"input":0,"output":0},"id":"baidu/cobuddy:free","last_updated":"2026-05-07","limit":{"context":131072,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Baidu: CoBuddy (free)","open_weights":false,"reasoning":true,"release_date":"2026-05-06","temperature":false,"tool_call":true},"baidu/ernie-4.5-21b-a3b":{"attachment":false,"cost":{"input":0.07,"output":0.28},"id":"baidu/ernie-4.5-21b-a3b","last_updated":"2025-06-30","limit":{"context":120000,"output":8000},"modalities":{"input":["text"],"output":["text"]},"name":"Baidu: ERNIE 4.5 21B A3B","open_weights":true,"reasoning":false,"release_date":"2025-06-30","temperature":true,"tool_call":true},"baidu/ernie-4.5-21b-a3b-thinking":{"attachment":false,"cost":{"input":0.07,"output":0.28},"id":"baidu/ernie-4.5-21b-a3b-thinking","last_updated":"2025-09-19","limit":{"context":131072,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Baidu: ERNIE 4.5 21B A3B Thinking","open_weights":true,"reasoning":true,"release_date":"2025-09-19","temperature":true,"tool_call":false},"baidu/ernie-4.5-300b-a47b":{"attachment":false,"cost":{"input":0.28,"output":1.1},"id":"baidu/ernie-4.5-300b-a47b","last_updated":"2026-01","limit":{"context":123000,"output":12000},"modalities":{"input":["text"],"output":["text"]},"name":"Baidu: ERNIE 4.5 300B A47B ","open_weights":true,"reasoning":false,"release_date":"2025-06-30","temperature":true,"tool_call":false},"baidu/ernie-4.5-vl-28b-a3b":{"attachment":true,"cost":{"input":0.14,"output":0.56},"id":"baidu/ernie-4.5-vl-28b-a3b","last_updated":"2025-06-30","limit":{"context":30000,"output":8000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Baidu: ERNIE 4.5 VL 28B A3B","open_weights":true,"reasoning":true,"release_date":"2025-06-30","temperature":true,"tool_call":true},"baidu/ernie-4.5-vl-424b-a47b":{"attachment":true,"cost":{"input":0.42,"output":1.25},"id":"baidu/ernie-4.5-vl-424b-a47b","last_updated":"2026-01","limit":{"context":123000,"output":16000},"modalities":{"input":["image","text"],"output":["text"]},"name":"Baidu: ERNIE 4.5 VL 424B A47B ","open_weights":true,"reasoning":true,"release_date":"2025-06-30","temperature":true,"tool_call":false},"baidu/qianfan-ocr-fast":{"attachment":true,"cost":{"input":0.68,"output":2.81},"id":"baidu/qianfan-ocr-fast","last_updated":"2026-05-16","limit":{"context":65536,"output":28672},"modalities":{"input":["image","text"],"output":["text"]},"name":"Baidu: Qianfan-OCR-Fast","open_weights":false,"reasoning":true,"release_date":"2026-04-20","temperature":true,"tool_call":false},"bytedance-seed/seed-1.6":{"attachment":true,"cost":{"input":0.25,"output":2},"id":"bytedance-seed/seed-1.6","last_updated":"2025-09","limit":{"context":262144,"output":32768},"modalities":{"input":["image","text","video"],"output":["text"]},"name":"ByteDance Seed: Seed 1.6","open_weights":false,"reasoning":true,"release_date":"2025-09","temperature":true,"tool_call":true},"bytedance-seed/seed-1.6-flash":{"attachment":true,"cost":{"input":0.075,"output":0.3},"id":"bytedance-seed/seed-1.6-flash","last_updated":"2026-03-15","limit":{"context":262144,"output":32768},"modalities":{"input":["image","text","video"],"output":["text"]},"name":"ByteDance Seed: Seed 1.6 Flash","open_weights":true,"reasoning":true,"release_date":"2025-12-23","temperature":true,"tool_call":true},"bytedance-seed/seed-2.0-lite":{"attachment":true,"cost":{"input":0.25,"output":2},"id":"bytedance-seed/seed-2.0-lite","last_updated":"2026-03-15","limit":{"context":262144,"output":131072},"modalities":{"input":["image","text","video"],"output":["text"]},"name":"ByteDance Seed: Seed-2.0-Lite","open_weights":true,"reasoning":true,"release_date":"2026-03-10","temperature":true,"tool_call":true},"bytedance-seed/seed-2.0-mini":{"attachment":true,"cost":{"input":0.1,"output":0.4},"id":"bytedance-seed/seed-2.0-mini","last_updated":"2026-03-15","limit":{"context":262144,"output":131072},"modalities":{"input":["image","text","video"],"output":["text"]},"name":"ByteDance Seed: Seed-2.0-Mini","open_weights":true,"reasoning":true,"release_date":"2026-02-27","temperature":true,"tool_call":true},"bytedance/ui-tars-1.5-7b":{"attachment":true,"cost":{"input":0.1,"output":0.2},"id":"bytedance/ui-tars-1.5-7b","last_updated":"2026-03-15","limit":{"context":128000,"output":2048},"modalities":{"input":["image","text"],"output":["text"]},"name":"ByteDance: UI-TARS 7B ","open_weights":false,"reasoning":false,"release_date":"2025-07-23","temperature":true,"tool_call":false},"cohere/command-a":{"attachment":false,"cost":{"input":2.5,"output":10},"id":"cohere/command-a","last_updated":"2025-03-13","limit":{"context":256000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Cohere: Command A","open_weights":true,"reasoning":false,"release_date":"2025-03-13","temperature":true,"tool_call":false},"cohere/command-r-08-2024":{"attachment":false,"cost":{"input":0.15,"output":0.6},"id":"cohere/command-r-08-2024","last_updated":"2024-08-30","limit":{"context":128000,"output":4000},"modalities":{"input":["text"],"output":["text"]},"name":"Cohere: Command R (08-2024)","open_weights":true,"reasoning":false,"release_date":"2024-08-30","temperature":true,"tool_call":true},"cohere/command-r-plus-08-2024":{"attachment":false,"cost":{"input":2.5,"output":10},"id":"cohere/command-r-plus-08-2024","last_updated":"2024-08-30","limit":{"context":128000,"output":4000},"modalities":{"input":["text"],"output":["text"]},"name":"Cohere: Command R+ (08-2024)","open_weights":true,"reasoning":false,"release_date":"2024-08-30","temperature":true,"tool_call":true},"cohere/command-r7b-12-2024":{"attachment":false,"cost":{"input":0.0375,"output":0.15},"id":"cohere/command-r7b-12-2024","last_updated":"2024-02-27","limit":{"context":128000,"output":4000},"modalities":{"input":["text"],"output":["text"]},"name":"Cohere: Command R7B (12-2024)","open_weights":true,"reasoning":false,"release_date":"2024-02-27","temperature":true,"tool_call":true},"deepcogito/cogito-v2.1-671b":{"attachment":false,"cost":{"input":1.25,"output":1.25},"id":"deepcogito/cogito-v2.1-671b","last_updated":"2026-03-15","limit":{"context":128000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Deep Cogito: Cogito v2.1 671B","open_weights":true,"reasoning":true,"release_date":"2025-11-14","temperature":true,"tool_call":false},"deepseek/deepseek-chat":{"attachment":false,"cost":{"cache_read":0.15,"input":0.32,"output":0.89},"id":"deepseek/deepseek-chat","last_updated":"2026-03-15","limit":{"context":163840,"output":163840},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek: DeepSeek V3","open_weights":true,"reasoning":false,"release_date":"2024-12-01","temperature":true,"tool_call":true},"deepseek/deepseek-chat-v3-0324":{"attachment":false,"cost":{"cache_read":0.095,"input":0.2,"output":0.77},"id":"deepseek/deepseek-chat-v3-0324","last_updated":"2026-03-15","limit":{"context":163840,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek: DeepSeek V3 0324","open_weights":true,"reasoning":true,"release_date":"2025-03-24","temperature":true,"tool_call":true},"deepseek/deepseek-chat-v3.1":{"attachment":false,"cost":{"input":0.15,"output":0.75},"id":"deepseek/deepseek-chat-v3.1","last_updated":"2025-08-21","limit":{"context":32768,"output":7168},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek: DeepSeek V3.1","open_weights":true,"reasoning":true,"release_date":"2025-08-21","temperature":true,"tool_call":true},"deepseek/deepseek-r1":{"attachment":false,"cost":{"input":0.7,"output":2.5},"id":"deepseek/deepseek-r1","last_updated":"2025-01-20","limit":{"context":64000,"output":16000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek: R1","open_weights":true,"reasoning":true,"release_date":"2025-01-20","temperature":true,"tool_call":true},"deepseek/deepseek-r1-0528":{"attachment":false,"cost":{"cache_read":0.2,"input":0.45,"output":2.15},"id":"deepseek/deepseek-r1-0528","last_updated":"2026-03-15","limit":{"context":163840,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek: R1 0528","open_weights":true,"reasoning":true,"release_date":"2025-05-28","temperature":true,"tool_call":true},"deepseek/deepseek-r1-distill-llama-70b":{"attachment":false,"cost":{"cache_read":0.015,"input":0.7,"output":0.8},"id":"deepseek/deepseek-r1-distill-llama-70b","last_updated":"2026-03-15","limit":{"context":131072,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek: R1 Distill Llama 70B","open_weights":true,"reasoning":true,"release_date":"2025-01-23","temperature":true,"tool_call":false},"deepseek/deepseek-r1-distill-qwen-32b":{"attachment":false,"cost":{"input":0.29,"output":0.29},"id":"deepseek/deepseek-r1-distill-qwen-32b","last_updated":"2025-11-25","limit":{"context":32768,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek: R1 Distill Qwen 32B","open_weights":true,"reasoning":true,"release_date":"2025-01-01","temperature":true,"tool_call":false},"deepseek/deepseek-v3.1-terminus":{"attachment":false,"cost":{"cache_read":0.13,"input":0.21,"output":0.79},"id":"deepseek/deepseek-v3.1-terminus","last_updated":"2025-09-22","limit":{"context":163840,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek: DeepSeek V3.1 Terminus","open_weights":true,"reasoning":true,"release_date":"2025-09-22","temperature":true,"tool_call":true},"deepseek/deepseek-v3.2":{"attachment":false,"cost":{"cache_read":0.125,"input":0.26,"output":0.38},"id":"deepseek/deepseek-v3.2","last_updated":"2026-03-15","limit":{"context":163840,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek: DeepSeek V3.2","open_weights":true,"reasoning":true,"release_date":"2025-12-01","temperature":true,"tool_call":true},"deepseek/deepseek-v3.2-exp":{"attachment":false,"cost":{"input":0.27,"output":0.41},"id":"deepseek/deepseek-v3.2-exp","last_updated":"2025-09-29","limit":{"context":163840,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek: DeepSeek V3.2 Exp","open_weights":true,"reasoning":true,"release_date":"2025-01-01","temperature":true,"tool_call":true},"deepseek/deepseek-v3.2-speciale":{"attachment":false,"cost":{"cache_read":0.135,"input":0.4,"output":1.2},"id":"deepseek/deepseek-v3.2-speciale","last_updated":"2026-03-15","limit":{"context":163840,"output":163840},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek: DeepSeek V3.2 Speciale","open_weights":true,"reasoning":true,"release_date":"2025-12-01","temperature":true,"tool_call":false},"deepseek/deepseek-v4-flash":{"attachment":false,"cost":{"cache_read":0.0028,"input":0.14,"output":0.28},"id":"deepseek/deepseek-v4-flash","last_updated":"2026-05-01","limit":{"context":1048576,"output":384000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek: DeepSeek V4 Flash","open_weights":false,"reasoning":true,"release_date":"2026-04-24","temperature":true,"tool_call":true},"deepseek/deepseek-v4-pro":{"attachment":false,"cost":{"cache_read":0.003625,"input":0.435,"output":0.87},"id":"deepseek/deepseek-v4-pro","last_updated":"2026-05-01","limit":{"context":1048576,"output":384000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek: DeepSeek V4 Pro","open_weights":false,"reasoning":true,"release_date":"2026-04-24","temperature":true,"tool_call":true},"essentialai/rnj-1-instruct":{"attachment":false,"cost":{"input":0.15,"output":0.15},"id":"essentialai/rnj-1-instruct","last_updated":"2026-03-15","limit":{"context":32768,"output":6554},"modalities":{"input":["text"],"output":["text"]},"name":"EssentialAI: Rnj 1 Instruct","open_weights":true,"reasoning":false,"release_date":"2025-12-05","temperature":true,"tool_call":true},"google/gemini-2.0-flash-001":{"attachment":true,"cost":{"cache_read":0.025,"cache_write":0.083333,"input":0.1,"output":0.4},"id":"google/gemini-2.0-flash-001","last_updated":"2026-03-15","limit":{"context":1048576,"output":8192},"modalities":{"input":["audio","image","pdf","text","video"],"output":["text"]},"name":"Google: Gemini 2.0 Flash","open_weights":false,"reasoning":false,"release_date":"2024-12-11","temperature":true,"tool_call":true},"google/gemini-2.0-flash-lite-001":{"attachment":true,"cost":{"input":0.075,"output":0.3},"id":"google/gemini-2.0-flash-lite-001","last_updated":"2026-03-15","limit":{"context":1048576,"output":8192},"modalities":{"input":["audio","image","pdf","text","video"],"output":["text"]},"name":"Google: Gemini 2.0 Flash Lite","open_weights":false,"reasoning":false,"release_date":"2024-12-11","temperature":true,"tool_call":true},"google/gemini-2.5-flash":{"attachment":true,"cost":{"cache_read":0.03,"cache_write":0.083333,"input":0.3,"output":2.5,"reasoning":2.5},"id":"google/gemini-2.5-flash","last_updated":"2026-03-15","limit":{"context":1048576,"output":65535},"modalities":{"input":["audio","image","pdf","text","video"],"output":["text"]},"name":"Google: Gemini 2.5 Flash","open_weights":false,"reasoning":true,"release_date":"2025-07-17","temperature":true,"tool_call":true},"google/gemini-2.5-flash-image":{"attachment":true,"cost":{"input":0.3,"output":2.5},"id":"google/gemini-2.5-flash-image","last_updated":"2026-03-15","limit":{"context":32768,"output":32768},"modalities":{"input":["image","text"],"output":["image","text"]},"name":"Google: Nano Banana (Gemini 2.5 Flash Image)","open_weights":false,"reasoning":false,"release_date":"2025-10-08","temperature":true,"tool_call":false},"google/gemini-2.5-flash-lite":{"attachment":true,"cost":{"cache_read":0.01,"cache_write":0.083333,"input":0.1,"output":0.4,"reasoning":0.4},"id":"google/gemini-2.5-flash-lite","last_updated":"2026-03-15","limit":{"context":1048576,"output":65535},"modalities":{"input":["audio","image","pdf","text","video"],"output":["text"]},"name":"Google: Gemini 2.5 Flash Lite","open_weights":false,"reasoning":true,"release_date":"2025-06-17","temperature":true,"tool_call":true},"google/gemini-2.5-flash-lite-preview-09-2025":{"attachment":true,"cost":{"cache_read":0.01,"cache_write":0.083333,"input":0.1,"output":0.4,"reasoning":0.4},"id":"google/gemini-2.5-flash-lite-preview-09-2025","last_updated":"2026-03-15","limit":{"context":1048576,"output":65536},"modalities":{"input":["audio","image","pdf","text","video"],"output":["text"]},"name":"Google: Gemini 2.5 Flash Lite Preview 09-2025","open_weights":false,"reasoning":true,"release_date":"2025-09-25","temperature":true,"tool_call":true},"google/gemini-2.5-pro":{"attachment":true,"cost":{"cache_read":0.125,"cache_write":0.375,"input":1.25,"output":10,"reasoning":10},"id":"google/gemini-2.5-pro","last_updated":"2026-03-15","limit":{"context":1048576,"output":65536},"modalities":{"input":["audio","image","pdf","text","video"],"output":["text"]},"name":"Google: Gemini 2.5 Pro","open_weights":false,"reasoning":true,"release_date":"2025-03-20","temperature":true,"tool_call":true},"google/gemini-2.5-pro-preview":{"attachment":true,"cost":{"cache_read":0.125,"cache_write":0.375,"input":1.25,"output":10,"reasoning":10},"id":"google/gemini-2.5-pro-preview","last_updated":"2026-03-15","limit":{"context":1048576,"output":65536},"modalities":{"input":["audio","image","pdf","text"],"output":["text"]},"name":"Google: Gemini 2.5 Pro Preview 06-05","open_weights":false,"reasoning":true,"release_date":"2025-06-05","temperature":true,"tool_call":true},"google/gemini-2.5-pro-preview-05-06":{"attachment":true,"cost":{"cache_read":0.125,"cache_write":0.375,"input":1.25,"output":10,"reasoning":10},"id":"google/gemini-2.5-pro-preview-05-06","last_updated":"2026-03-15","limit":{"context":1048576,"output":65535},"modalities":{"input":["audio","image","pdf","text","video"],"output":["text"]},"name":"Google: Gemini 2.5 Pro Preview 05-06","open_weights":false,"reasoning":true,"release_date":"2025-05-06","temperature":true,"tool_call":true},"google/gemini-3-flash-preview":{"attachment":true,"cost":{"cache_read":0.05,"cache_write":0.083333,"input":0.5,"output":3,"reasoning":3},"id":"google/gemini-3-flash-preview","last_updated":"2026-03-15","limit":{"context":1048576,"output":65536},"modalities":{"input":["audio","image","pdf","text","video"],"output":["text"]},"name":"Google: Gemini 3 Flash Preview","open_weights":false,"reasoning":true,"release_date":"2025-12-17","temperature":true,"tool_call":true},"google/gemini-3-pro-image-preview":{"attachment":true,"cost":{"input":2,"output":12,"reasoning":12},"id":"google/gemini-3-pro-image-preview","last_updated":"2026-03-15","limit":{"context":65536,"output":32768},"modalities":{"input":["image","text"],"output":["image","text"]},"name":"Google: Nano Banana Pro (Gemini 3 Pro Image Preview)","open_weights":false,"reasoning":true,"release_date":"2025-11-20","temperature":true,"tool_call":false},"google/gemini-3.1-flash-image-preview":{"attachment":true,"cost":{"input":0.5,"output":3},"id":"google/gemini-3.1-flash-image-preview","last_updated":"2026-03-15","limit":{"context":65536,"output":65536},"modalities":{"input":["image","text"],"output":["image","text"]},"name":"Google: Nano Banana 2 (Gemini 3.1 Flash Image Preview)","open_weights":false,"reasoning":true,"release_date":"2026-02-26","temperature":true,"tool_call":false},"google/gemini-3.1-flash-lite":{"attachment":true,"cost":{"cache_read":0.025,"cache_write":0.08333,"input":0.25,"output":1.5,"reasoning":1.5},"id":"google/gemini-3.1-flash-lite","last_updated":"2026-05-16","limit":{"context":1048576,"output":65536},"modalities":{"input":["audio","image","pdf","text","video"],"output":["text"]},"name":"Google: Gemini 3.1 Flash Lite","open_weights":false,"reasoning":true,"release_date":"2026-05-07","temperature":true,"tool_call":true},"google/gemini-3.1-flash-lite-preview":{"attachment":true,"cost":{"input":0.25,"output":1.5,"reasoning":1.5},"id":"google/gemini-3.1-flash-lite-preview","last_updated":"2026-03-15","limit":{"context":1048576,"output":65536},"modalities":{"input":["audio","image","pdf","text","video"],"output":["text"]},"name":"Google: Gemini 3.1 Flash Lite Preview","open_weights":false,"reasoning":true,"release_date":"2026-03-03","temperature":true,"tool_call":true},"google/gemini-3.1-pro-preview":{"attachment":true,"cost":{"input":2,"output":12,"reasoning":12},"id":"google/gemini-3.1-pro-preview","last_updated":"2026-03-15","limit":{"context":1048576,"output":65536},"modalities":{"input":["audio","image","pdf","text","video"],"output":["text"]},"name":"Google: Gemini 3.1 Pro Preview","open_weights":false,"reasoning":true,"release_date":"2026-02-19","temperature":true,"tool_call":true},"google/gemini-3.1-pro-preview-customtools":{"attachment":true,"cost":{"input":2,"output":12,"reasoning":12},"id":"google/gemini-3.1-pro-preview-customtools","last_updated":"2026-03-15","limit":{"context":1048576,"output":65536},"modalities":{"input":["audio","image","pdf","text","video"],"output":["text"]},"name":"Google: Gemini 3.1 Pro Preview Custom Tools","open_weights":false,"reasoning":true,"release_date":"2026-02-26","temperature":true,"tool_call":true},"google/gemini-3.5-flash":{"attachment":true,"cost":{"cache_read":0.15,"cache_write":0.08333,"input":1.5,"output":9,"reasoning":9},"id":"google/gemini-3.5-flash","last_updated":"2026-05-27","limit":{"context":1048576,"output":65536},"modalities":{"input":["audio","image","pdf","text","video"],"output":["text"]},"name":"Google: Gemini 3.5 Flash","open_weights":false,"reasoning":true,"release_date":"2026-05-19","temperature":true,"tool_call":true},"google/gemma-2-27b-it":{"attachment":false,"cost":{"input":0.65,"output":0.65},"id":"google/gemma-2-27b-it","last_updated":"2024-06-24","limit":{"context":8192,"output":2048},"modalities":{"input":["text"],"output":["text"]},"name":"Google: Gemma 2 27B","open_weights":true,"reasoning":false,"release_date":"2024-06-24","temperature":true,"tool_call":false},"google/gemma-3-12b-it":{"attachment":true,"cost":{"cache_read":0.015,"input":0.04,"output":0.13},"id":"google/gemma-3-12b-it","last_updated":"2026-03-15","limit":{"context":131072,"output":131072},"modalities":{"input":["image","text"],"output":["text"]},"name":"Google: Gemma 3 12B","open_weights":true,"reasoning":false,"release_date":"2025-03-13","temperature":true,"tool_call":false},"google/gemma-3-27b-it":{"attachment":true,"cost":{"cache_read":0.02,"input":0.03,"output":0.11},"id":"google/gemma-3-27b-it","last_updated":"2026-03-15","limit":{"context":128000,"output":65536},"modalities":{"input":["image","text"],"output":["text"]},"name":"Google: Gemma 3 27B","open_weights":true,"reasoning":false,"release_date":"2025-03-12","temperature":true,"tool_call":true},"google/gemma-3-4b-it":{"attachment":true,"cost":{"input":0.04,"output":0.08},"id":"google/gemma-3-4b-it","last_updated":"2026-03-15","limit":{"context":131072,"output":19200},"modalities":{"input":["image","text"],"output":["text"]},"name":"Google: Gemma 3 4B","open_weights":true,"reasoning":false,"release_date":"2025-03-13","temperature":true,"tool_call":false},"google/gemma-3n-e4b-it":{"attachment":false,"cost":{"input":0.02,"output":0.04},"id":"google/gemma-3n-e4b-it","last_updated":"2025-05-20","limit":{"context":32768,"output":6554},"modalities":{"input":["text"],"output":["text"]},"name":"Google: Gemma 3n 4B","open_weights":true,"reasoning":false,"release_date":"2025-05-20","temperature":true,"tool_call":false},"google/gemma-4-26b-a4b-it":{"attachment":true,"cost":{"input":0.12,"output":0.4},"id":"google/gemma-4-26b-a4b-it","last_updated":"2026-04-11","limit":{"context":262144,"output":262144},"modalities":{"input":["image","text","video"],"output":["text"]},"name":"Google: Gemma 4 26B A4B","open_weights":true,"reasoning":true,"release_date":"2026-04-03","temperature":true,"tool_call":true},"google/gemma-4-31b-it":{"attachment":true,"cost":{"input":0.14,"output":0.4},"id":"google/gemma-4-31b-it","last_updated":"2026-04-11","limit":{"context":262144,"output":131072},"modalities":{"input":["image","text","video"],"output":["text"]},"name":"Google: Gemma 4 31B","open_weights":true,"reasoning":true,"release_date":"2026-04-02","temperature":true,"tool_call":true},"google/lyria-3-clip-preview":{"attachment":true,"cost":{"input":0,"output":0},"id":"google/lyria-3-clip-preview","last_updated":"2026-04-11","limit":{"context":1048576,"output":65536},"modalities":{"input":["image","text"],"output":["audio","text"]},"name":"Google: Lyria 3 Clip Preview","open_weights":false,"reasoning":false,"release_date":"2026-03-30","temperature":true,"tool_call":false},"google/lyria-3-pro-preview":{"attachment":true,"cost":{"input":0,"output":0},"id":"google/lyria-3-pro-preview","last_updated":"2026-04-11","limit":{"context":1048576,"output":65536},"modalities":{"input":["image","text"],"output":["audio","text"]},"name":"Google: Lyria 3 Pro Preview","open_weights":false,"reasoning":false,"release_date":"2026-03-30","temperature":true,"tool_call":false},"gryphe/mythomax-l2-13b":{"attachment":false,"cost":{"input":0.06,"output":0.06},"id":"gryphe/mythomax-l2-13b","last_updated":"2024-04-25","limit":{"context":4096,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"MythoMax 13B","open_weights":true,"reasoning":false,"release_date":"2024-04-25","temperature":true,"tool_call":false},"ibm-granite/granite-4.0-h-micro":{"attachment":false,"cost":{"input":0.017,"output":0.11},"id":"ibm-granite/granite-4.0-h-micro","last_updated":"2026-03-15","limit":{"context":131000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"IBM: Granite 4.0 Micro","open_weights":true,"reasoning":false,"release_date":"2025-10-20","temperature":true,"tool_call":false},"ibm-granite/granite-4.1-8b":{"attachment":false,"cost":{"cache_read":0.05,"input":0.05,"output":0.1},"id":"ibm-granite/granite-4.1-8b","last_updated":"2026-05-01","limit":{"context":131072,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"IBM: Granite 4.1 8B","open_weights":false,"reasoning":false,"release_date":"2026-04-30","temperature":true,"tool_call":true},"inception/mercury-2":{"attachment":false,"cost":{"cache_read":0.025,"input":0.25,"output":0.75},"id":"inception/mercury-2","last_updated":"2026-02-24","limit":{"context":128000,"output":50000},"modalities":{"input":["text"],"output":["text"]},"name":"Inception: Mercury 2","open_weights":false,"reasoning":true,"release_date":"2026-02-24","temperature":true,"tool_call":true},"inclusionai/ling-2.6-1t":{"attachment":false,"cost":{"cache_read":0.06,"input":0.3,"output":2.5},"id":"inclusionai/ling-2.6-1t","last_updated":"2026-05-16","limit":{"context":262144,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"inclusionAI: Ling-2.6-1T","open_weights":false,"reasoning":false,"release_date":"2026-04-23","temperature":true,"tool_call":true},"inclusionai/ling-2.6-flash":{"attachment":false,"cost":{"cache_read":0.016,"input":0.08,"output":0.24},"id":"inclusionai/ling-2.6-flash","last_updated":"2026-05-01","limit":{"context":262144,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"inclusionAI: Ling-2.6 Flash","open_weights":false,"reasoning":false,"release_date":"2026-04-21","temperature":true,"tool_call":true},"inclusionai/ring-2.6-1t":{"attachment":false,"cost":{"cache_read":0.015,"input":0.075,"output":0.625},"id":"inclusionai/ring-2.6-1t","last_updated":"2026-05-16","limit":{"context":262144,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"inclusionAI: Ring-2.6-1T","open_weights":false,"reasoning":true,"release_date":"2026-05-08","temperature":true,"tool_call":true},"inflection/inflection-3-pi":{"attachment":false,"cost":{"input":2.5,"output":10},"id":"inflection/inflection-3-pi","last_updated":"2026-03-15","limit":{"context":8000,"output":1024},"modalities":{"input":["text"],"output":["text"]},"name":"Inflection: Inflection 3 Pi","open_weights":false,"reasoning":false,"release_date":"2024-10-11","temperature":true,"tool_call":false},"inflection/inflection-3-productivity":{"attachment":false,"cost":{"input":2.5,"output":10},"id":"inflection/inflection-3-productivity","last_updated":"2026-03-15","limit":{"context":8000,"output":1024},"modalities":{"input":["text"],"output":["text"]},"name":"Inflection: Inflection 3 Productivity","open_weights":false,"reasoning":false,"release_date":"2024-10-11","temperature":true,"tool_call":false},"kilo-auto/balanced":{"attachment":false,"cost":{"input":0.6,"output":3},"id":"kilo-auto/balanced","last_updated":"2026-03-15","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"Kilo Auto Balanced","open_weights":false,"reasoning":true,"release_date":"2026-03-15","temperature":true,"tool_call":true},"kilo-auto/free":{"attachment":false,"cost":{"input":0,"output":0},"id":"kilo-auto/free","last_updated":"2026-03-15","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"Kilo Auto Free","open_weights":false,"reasoning":true,"release_date":"2026-03-15","temperature":true,"tool_call":true},"kilo-auto/frontier":{"attachment":true,"cost":{"input":5,"output":25},"id":"kilo-auto/frontier","last_updated":"2026-03-15","limit":{"context":1000000,"output":128000},"modalities":{"input":["image","text"],"output":["text"]},"name":"Kilo Auto Frontier","open_weights":false,"reasoning":true,"release_date":"2026-03-15","temperature":true,"tool_call":true},"kilo-auto/small":{"attachment":true,"cost":{"input":0.05,"output":0.4},"id":"kilo-auto/small","last_updated":"2026-03-15","limit":{"context":400000,"output":128000},"modalities":{"input":["image","text"],"output":["text"]},"name":"Kilo Auto Small","open_weights":false,"reasoning":true,"release_date":"2026-03-15","temperature":true,"tool_call":true},"kwaipilot/kat-coder-pro-v2":{"attachment":false,"cost":{"cache_read":0.06,"input":0.3,"output":1.2},"id":"kwaipilot/kat-coder-pro-v2","last_updated":"2026-04-11","limit":{"context":256000,"output":80000},"modalities":{"input":["text"],"output":["text"]},"name":"Kwaipilot: KAT-Coder-Pro V2","open_weights":true,"reasoning":false,"release_date":"2026-03-27","temperature":true,"tool_call":true},"liquid/lfm-2-24b-a2b":{"attachment":false,"cost":{"input":0.03,"output":0.12},"id":"liquid/lfm-2-24b-a2b","last_updated":"2026-03-15","limit":{"context":32768,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"LiquidAI: LFM2-24B-A2B","open_weights":true,"reasoning":false,"release_date":"2026-02-26","temperature":true,"tool_call":false},"mancer/weaver":{"attachment":false,"cost":{"input":0.75,"output":1},"id":"mancer/weaver","last_updated":"2026-03-15","limit":{"context":8000,"output":2000},"modalities":{"input":["text"],"output":["text"]},"name":"Mancer: Weaver (alpha)","open_weights":false,"reasoning":false,"release_date":"2023-08-02","temperature":true,"tool_call":false},"meta-llama/llama-3-70b-instruct":{"attachment":false,"cost":{"input":0.51,"output":0.74},"id":"meta-llama/llama-3-70b-instruct","last_updated":"2024-07-23","limit":{"context":8192,"output":8000},"modalities":{"input":["text"],"output":["text"]},"name":"Meta: Llama 3 70B Instruct","open_weights":true,"reasoning":false,"release_date":"2024-07-23","temperature":true,"tool_call":false},"meta-llama/llama-3-8b-instruct":{"attachment":false,"cost":{"input":0.03,"output":0.04},"id":"meta-llama/llama-3-8b-instruct","last_updated":"2025-04-03","limit":{"context":8192,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Meta: Llama 3 8B Instruct","open_weights":true,"reasoning":false,"release_date":"2024-04-25","temperature":true,"tool_call":true},"meta-llama/llama-3.1-70b-instruct":{"attachment":false,"cost":{"input":0.4,"output":0.4},"id":"meta-llama/llama-3.1-70b-instruct","last_updated":"2024-07-23","limit":{"context":131072,"output":26215},"modalities":{"input":["text"],"output":["text"]},"name":"Meta: Llama 3.1 70B Instruct","open_weights":true,"reasoning":false,"release_date":"2024-07-16","temperature":true,"tool_call":true},"meta-llama/llama-3.1-8b-instruct":{"attachment":false,"cost":{"input":0.02,"output":0.05},"id":"meta-llama/llama-3.1-8b-instruct","last_updated":"2025-12-23","limit":{"context":16384,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Meta: Llama 3.1 8B Instruct","open_weights":true,"reasoning":false,"release_date":"2024-07-23","temperature":true,"tool_call":true},"meta-llama/llama-3.2-11b-vision-instruct":{"attachment":true,"cost":{"input":0.049,"output":0.049},"id":"meta-llama/llama-3.2-11b-vision-instruct","last_updated":"2024-09-25","limit":{"context":131072,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"Meta: Llama 3.2 11B Vision Instruct","open_weights":true,"reasoning":false,"release_date":"2024-09-25","temperature":true,"tool_call":false},"meta-llama/llama-3.2-1b-instruct":{"attachment":false,"cost":{"input":0.027,"output":0.2},"id":"meta-llama/llama-3.2-1b-instruct","last_updated":"2026-01-27","limit":{"context":60000,"output":12000},"modalities":{"input":["text"],"output":["text"]},"name":"Meta: Llama 3.2 1B Instruct","open_weights":true,"reasoning":false,"release_date":"2024-09-18","temperature":true,"tool_call":false},"meta-llama/llama-3.2-3b-instruct":{"attachment":false,"cost":{"input":0.051,"output":0.34},"id":"meta-llama/llama-3.2-3b-instruct","last_updated":"2026-03-15","limit":{"context":80000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Meta: Llama 3.2 3B Instruct","open_weights":true,"reasoning":false,"release_date":"2024-09-18","temperature":true,"tool_call":false},"meta-llama/llama-3.3-70b-instruct":{"attachment":false,"cost":{"input":0.1,"output":0.32},"id":"meta-llama/llama-3.3-70b-instruct","last_updated":"2026-02-04","limit":{"context":131072,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Meta: Llama 3.3 70B Instruct","open_weights":true,"reasoning":false,"release_date":"2024-08-01","temperature":true,"tool_call":true},"meta-llama/llama-4-maverick":{"attachment":true,"cost":{"input":0.15,"output":0.6},"id":"meta-llama/llama-4-maverick","last_updated":"2025-12-24","limit":{"context":1048576,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"Meta: Llama 4 Maverick","open_weights":true,"reasoning":false,"release_date":"2025-04-05","temperature":true,"tool_call":true},"meta-llama/llama-4-scout":{"attachment":true,"cost":{"input":0.08,"output":0.3},"id":"meta-llama/llama-4-scout","last_updated":"2025-04-05","limit":{"context":327680,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"Meta: Llama 4 Scout","open_weights":true,"reasoning":false,"release_date":"2025-04-05","temperature":true,"tool_call":true},"meta-llama/llama-guard-3-8b":{"attachment":false,"cost":{"input":0.02,"output":0.06},"id":"meta-llama/llama-guard-3-8b","last_updated":"2026-02-04","limit":{"context":131072,"output":26215},"modalities":{"input":["text"],"output":["text"]},"name":"Llama Guard 3 8B","open_weights":true,"reasoning":false,"release_date":"2024-04-18","temperature":true,"tool_call":false},"meta-llama/llama-guard-4-12b":{"attachment":true,"cost":{"input":0.18,"output":0.18},"id":"meta-llama/llama-guard-4-12b","last_updated":"2025-04-05","limit":{"context":163840,"output":32768},"modalities":{"input":["image","text"],"output":["text"]},"name":"Meta: Llama Guard 4 12B","open_weights":true,"reasoning":false,"release_date":"2025-04-05","temperature":true,"tool_call":false},"microsoft/phi-4":{"attachment":false,"cost":{"input":0.06,"output":0.14},"id":"microsoft/phi-4","last_updated":"2024-12-11","limit":{"context":16384,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Microsoft: Phi 4","open_weights":true,"reasoning":false,"release_date":"2024-12-11","temperature":true,"tool_call":false},"microsoft/phi-4-mini-instruct":{"attachment":false,"cost":{"cache_read":0.08,"input":0.08,"output":0.35},"id":"microsoft/phi-4-mini-instruct","last_updated":"2026-05-07","limit":{"context":128000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"Microsoft: Phi 4 Mini Instruct","open_weights":true,"reasoning":false,"release_date":"2025-10-17","structured_output":true,"temperature":true,"tool_call":false},"microsoft/wizardlm-2-8x22b":{"attachment":false,"cost":{"input":0.62,"output":0.62},"id":"microsoft/wizardlm-2-8x22b","last_updated":"2024-04-24","limit":{"context":65535,"output":8000},"modalities":{"input":["text"],"output":["text"]},"name":"WizardLM-2 8x22B","open_weights":true,"reasoning":false,"release_date":"2024-04-24","temperature":true,"tool_call":false},"minimax/minimax-01":{"attachment":true,"cost":{"input":0.2,"output":1.1},"id":"minimax/minimax-01","last_updated":"2025-01-15","limit":{"context":1000192,"output":1000192},"modalities":{"input":["text","image"],"output":["text"]},"name":"MiniMax: MiniMax-01","open_weights":true,"reasoning":false,"release_date":"2025-01-15","temperature":true,"tool_call":false},"minimax/minimax-m1":{"attachment":false,"cost":{"input":0.4,"output":2.2},"id":"minimax/minimax-m1","last_updated":"2025-06-17","limit":{"context":1000000,"output":40000},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax: MiniMax M1","open_weights":true,"reasoning":true,"release_date":"2025-06-17","temperature":true,"tool_call":true},"minimax/minimax-m2":{"attachment":false,"cost":{"cache_read":0.03,"input":0.255,"output":1},"id":"minimax/minimax-m2","last_updated":"2026-03-15","limit":{"context":196608,"output":196608},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax: MiniMax M2","open_weights":true,"reasoning":true,"release_date":"2025-10-23","temperature":true,"tool_call":true},"minimax/minimax-m2-her":{"attachment":false,"cost":{"input":0.3,"output":1.2},"id":"minimax/minimax-m2-her","last_updated":"2026-03-15","limit":{"context":65536,"output":2048},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax: MiniMax M2-her","open_weights":true,"reasoning":false,"release_date":"2026-01-23","temperature":true,"tool_call":false},"minimax/minimax-m2.1":{"attachment":false,"cost":{"cache_read":0.03,"input":0.27,"output":0.95},"id":"minimax/minimax-m2.1","last_updated":"2025-12-23","limit":{"context":196608,"output":39322},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax: MiniMax M2.1","open_weights":true,"reasoning":true,"release_date":"2025-12-23","temperature":true,"tool_call":true},"minimax/minimax-m2.5":{"attachment":false,"cost":{"cache_read":0.029,"input":0.25,"output":1.2},"id":"minimax/minimax-m2.5","last_updated":"2026-03-15","limit":{"context":196608,"output":196608},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax: MiniMax M2.5","open_weights":true,"reasoning":true,"release_date":"2026-02-12","temperature":true,"tool_call":true},"minimax/minimax-m2.7":{"attachment":false,"cost":{"cache_read":0.06,"input":0.3,"output":1.2},"family":"minimax-m2.7","id":"minimax/minimax-m2.7","last_updated":"2026-03-18","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax: MiniMax M2.7","open_weights":true,"reasoning":true,"release_date":"2026-03-18","temperature":true,"tool_call":true},"mistralai/codestral-2508":{"attachment":false,"cost":{"input":0.3,"output":0.9},"id":"mistralai/codestral-2508","last_updated":"2025-08-01","limit":{"context":256000,"output":51200},"modalities":{"input":["text"],"output":["text"]},"name":"Mistral: Codestral 2508","open_weights":true,"reasoning":false,"release_date":"2025-08-01","temperature":true,"tool_call":true},"mistralai/devstral-2512":{"attachment":false,"cost":{"cache_read":0.025,"input":0.4,"output":2},"id":"mistralai/devstral-2512","last_updated":"2026-03-15","limit":{"context":262144,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Mistral: Devstral 2 2512","open_weights":true,"reasoning":false,"release_date":"2025-09-12","temperature":true,"tool_call":true},"mistralai/devstral-medium":{"attachment":false,"cost":{"input":0.4,"output":2},"id":"mistralai/devstral-medium","last_updated":"2025-07-10","limit":{"context":131072,"output":26215},"modalities":{"input":["text"],"output":["text"]},"name":"Mistral: Devstral Medium","open_weights":true,"reasoning":false,"release_date":"2025-07-10","temperature":true,"tool_call":true},"mistralai/devstral-small":{"attachment":false,"cost":{"input":0.1,"output":0.3},"id":"mistralai/devstral-small","last_updated":"2025-07-10","limit":{"context":131072,"output":26215},"modalities":{"input":["text"],"output":["text"]},"name":"Mistral: Devstral Small 1.1","open_weights":true,"reasoning":false,"release_date":"2025-05-07","temperature":true,"tool_call":true},"mistralai/ministral-14b-2512":{"attachment":true,"cost":{"input":0.2,"output":0.2},"id":"mistralai/ministral-14b-2512","last_updated":"2025-12-16","limit":{"context":262144,"output":52429},"modalities":{"input":["text","image"],"output":["text"]},"name":"Mistral: Ministral 3 14B 2512","open_weights":false,"reasoning":false,"release_date":"2025-12-16","temperature":true,"tool_call":true},"mistralai/ministral-3b-2512":{"attachment":true,"cost":{"input":0.1,"output":0.1},"id":"mistralai/ministral-3b-2512","last_updated":"2026-03-15","limit":{"context":131072,"output":32768},"modalities":{"input":["image","text"],"output":["text"]},"name":"Mistral: Ministral 3 3B 2512","open_weights":true,"reasoning":false,"release_date":"2025-12-02","temperature":true,"tool_call":true},"mistralai/ministral-8b-2512":{"attachment":true,"cost":{"input":0.15,"output":0.15},"id":"mistralai/ministral-8b-2512","last_updated":"2026-03-15","limit":{"context":262144,"output":32768},"modalities":{"input":["image","text"],"output":["text"]},"name":"Mistral: Ministral 3 8B 2512","open_weights":true,"reasoning":false,"release_date":"2025-12-02","temperature":true,"tool_call":true},"mistralai/mistral-7b-instruct-v0.1":{"attachment":false,"cost":{"input":0.11,"output":0.19},"id":"mistralai/mistral-7b-instruct-v0.1","last_updated":"2025-04-03","limit":{"context":2824,"output":565},"modalities":{"input":["text"],"output":["text"]},"name":"Mistral: Mistral 7B Instruct v0.1","open_weights":false,"reasoning":false,"release_date":"2025-04-03","temperature":true,"tool_call":false},"mistralai/mistral-large":{"attachment":false,"cost":{"input":2,"output":6},"id":"mistralai/mistral-large","last_updated":"2025-12-02","limit":{"context":128000,"output":25600},"modalities":{"input":["text"],"output":["text"]},"name":"Mistral Large","open_weights":true,"reasoning":false,"release_date":"2024-07-24","temperature":true,"tool_call":true},"mistralai/mistral-large-2407":{"attachment":false,"cost":{"input":2,"output":6},"id":"mistralai/mistral-large-2407","last_updated":"2026-03-15","limit":{"context":131072,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Mistral Large 2407","open_weights":true,"reasoning":false,"release_date":"2024-11-19","temperature":true,"tool_call":true},"mistralai/mistral-large-2411":{"attachment":false,"cost":{"input":2,"output":6},"id":"mistralai/mistral-large-2411","last_updated":"2024-11-04","limit":{"context":131072,"output":26215},"modalities":{"input":["text"],"output":["text"]},"name":"Mistral Large 2411","open_weights":true,"reasoning":false,"release_date":"2024-07-24","temperature":true,"tool_call":true},"mistralai/mistral-large-2512":{"attachment":true,"cost":{"input":0.5,"output":1.5},"id":"mistralai/mistral-large-2512","last_updated":"2025-12-16","limit":{"context":262144,"output":52429},"modalities":{"input":["text","image"],"output":["text"]},"name":"Mistral: Mistral Large 3 2512","open_weights":true,"reasoning":false,"release_date":"2024-11-01","temperature":true,"tool_call":true},"mistralai/mistral-medium-3":{"attachment":true,"cost":{"input":0.4,"output":2},"id":"mistralai/mistral-medium-3","last_updated":"2025-05-07","limit":{"context":131072,"output":26215},"modalities":{"input":["text","image"],"output":["text"]},"name":"Mistral: Mistral Medium 3","open_weights":false,"reasoning":false,"release_date":"2025-05-07","temperature":true,"tool_call":true},"mistralai/mistral-medium-3-5":{"attachment":true,"cost":{"input":1.5,"output":7.5},"id":"mistralai/mistral-medium-3-5","last_updated":"2026-05-07","limit":{"context":262144,"output":262144},"modalities":{"input":["image","text"],"output":["text"]},"name":"Mistral: Mistral Medium 3.5","open_weights":false,"reasoning":true,"release_date":"2026-04-30","structured_output":true,"temperature":true,"tool_call":true},"mistralai/mistral-medium-3.1":{"attachment":true,"cost":{"input":0.4,"output":2},"id":"mistralai/mistral-medium-3.1","last_updated":"2025-08-12","limit":{"context":131072,"output":26215},"modalities":{"input":["text","image"],"output":["text"]},"name":"Mistral: Mistral Medium 3.1","open_weights":false,"reasoning":false,"release_date":"2025-08-12","temperature":true,"tool_call":true},"mistralai/mistral-nemo":{"attachment":false,"cost":{"input":0.02,"output":0.04},"id":"mistralai/mistral-nemo","last_updated":"2024-07-30","limit":{"context":131072,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Mistral: Mistral Nemo","open_weights":true,"reasoning":false,"release_date":"2024-07-01","temperature":true,"tool_call":true},"mistralai/mistral-saba":{"attachment":false,"cost":{"input":0.2,"output":0.6},"id":"mistralai/mistral-saba","last_updated":"2026-03-15","limit":{"context":32768,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Mistral: Saba","open_weights":true,"reasoning":false,"release_date":"2025-02-17","temperature":true,"tool_call":true},"mistralai/mistral-small-24b-instruct-2501":{"attachment":false,"cost":{"input":0.05,"output":0.08},"id":"mistralai/mistral-small-24b-instruct-2501","last_updated":"2026-01-10","limit":{"context":32768,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Mistral: Mistral Small 3","open_weights":true,"reasoning":false,"release_date":"2025-12-29","temperature":true,"tool_call":true},"mistralai/mistral-small-2603":{"attachment":true,"cost":{"cache_read":0.015,"input":0.15,"output":0.6},"id":"mistralai/mistral-small-2603","last_updated":"2026-04-11","limit":{"context":262144,"output":262144},"modalities":{"input":["image","text"],"output":["text"]},"name":"Mistral: Mistral Small 4","open_weights":true,"reasoning":true,"release_date":"2026-03-16","temperature":true,"tool_call":true},"mistralai/mistral-small-3.1-24b-instruct":{"attachment":true,"cost":{"cache_read":0.015,"input":0.35,"output":0.56},"id":"mistralai/mistral-small-3.1-24b-instruct","last_updated":"2026-03-15","limit":{"context":128000,"output":131072},"modalities":{"input":["image","text"],"output":["text"]},"name":"Mistral: Mistral Small 3.1 24B","open_weights":true,"reasoning":false,"release_date":"2025-03-17","temperature":true,"tool_call":false},"mistralai/mistral-small-3.2-24b-instruct":{"attachment":true,"cost":{"cache_read":0.03,"input":0.06,"output":0.18},"id":"mistralai/mistral-small-3.2-24b-instruct","last_updated":"2025-06-20","limit":{"context":131072,"output":131072},"modalities":{"input":["image","text"],"output":["text"]},"name":"Mistral: Mistral Small 3.2 24B","open_weights":true,"reasoning":false,"release_date":"2025-06-20","temperature":true,"tool_call":true},"mistralai/mixtral-8x22b-instruct":{"attachment":false,"cost":{"input":2,"output":6},"id":"mistralai/mixtral-8x22b-instruct","last_updated":"2024-04-17","limit":{"context":65536,"output":13108},"modalities":{"input":["text"],"output":["text"]},"name":"Mistral: Mixtral 8x22B Instruct","open_weights":true,"reasoning":false,"release_date":"2024-04-17","temperature":true,"tool_call":true},"mistralai/pixtral-large-2411":{"attachment":true,"cost":{"input":2,"output":6},"id":"mistralai/pixtral-large-2411","last_updated":"2026-03-15","limit":{"context":131072,"output":32768},"modalities":{"input":["image","text"],"output":["text"]},"name":"Mistral: Pixtral Large 2411","open_weights":true,"reasoning":false,"release_date":"2024-11-19","temperature":true,"tool_call":true},"mistralai/voxtral-small-24b-2507":{"attachment":false,"cost":{"input":0.1,"output":0.3},"id":"mistralai/voxtral-small-24b-2507","last_updated":"2025-07-01","limit":{"context":32000,"output":6400},"modalities":{"input":["text","audio"],"output":["text"]},"name":"Mistral: Voxtral Small 24B 2507","open_weights":true,"reasoning":false,"release_date":"2025-07-01","temperature":true,"tool_call":true},"moonshotai/kimi-k2":{"attachment":false,"cost":{"input":0.55,"output":2.2},"id":"moonshotai/kimi-k2","last_updated":"2026-03-15","limit":{"context":131000,"output":26215},"modalities":{"input":["text"],"output":["text"]},"name":"MoonshotAI: Kimi K2 0711","open_weights":true,"reasoning":false,"release_date":"2025-07-11","temperature":true,"tool_call":true},"moonshotai/kimi-k2-0905":{"attachment":false,"cost":{"cache_read":0.15,"input":0.4,"output":2},"id":"moonshotai/kimi-k2-0905","last_updated":"2025-09-05","limit":{"context":131072,"output":26215},"modalities":{"input":["text"],"output":["text"]},"name":"MoonshotAI: Kimi K2 0905","open_weights":true,"reasoning":false,"release_date":"2025-09-05","temperature":true,"tool_call":true},"moonshotai/kimi-k2-thinking":{"attachment":false,"cost":{"cache_read":0.2,"input":0.47,"output":2},"id":"moonshotai/kimi-k2-thinking","last_updated":"2026-03-15","limit":{"context":131072,"output":65535},"modalities":{"input":["text"],"output":["text"]},"name":"MoonshotAI: Kimi K2 Thinking","open_weights":true,"reasoning":true,"release_date":"2025-11-06","temperature":true,"tool_call":true},"moonshotai/kimi-k2.5":{"attachment":true,"cost":{"input":0.45,"output":2.2},"id":"moonshotai/kimi-k2.5","last_updated":"2026-03-15","limit":{"context":262144,"output":65535},"modalities":{"input":["image","text"],"output":["text"]},"name":"MoonshotAI: Kimi K2.5","open_weights":true,"reasoning":true,"release_date":"2026-01-27","temperature":true,"tool_call":true},"moonshotai/kimi-k2.6":{"attachment":true,"cost":{"cache_read":0.375,"input":0.75,"output":3.5},"id":"moonshotai/kimi-k2.6","last_updated":"2026-05-12","limit":{"context":262144,"output":65535},"modalities":{"input":["text","image"],"output":["text"]},"name":"MoonshotAI: Kimi K2.6","open_weights":true,"reasoning":true,"release_date":"2026-04-20","structured_output":true,"temperature":true,"tool_call":true},"morph/morph-v3-fast":{"attachment":false,"cost":{"input":0.8,"output":1.2},"id":"morph/morph-v3-fast","last_updated":"2024-08-15","limit":{"context":81920,"output":38000},"modalities":{"input":["text"],"output":["text"]},"name":"Morph: Morph V3 Fast","open_weights":false,"reasoning":false,"release_date":"2024-08-15","temperature":true,"tool_call":false},"morph/morph-v3-large":{"attachment":false,"cost":{"input":0.9,"output":1.9},"id":"morph/morph-v3-large","last_updated":"2024-08-15","limit":{"context":262144,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"Morph: Morph V3 Large","open_weights":false,"reasoning":false,"release_date":"2024-08-15","temperature":true,"tool_call":false},"nex-agi/deepseek-v3.1-nex-n1":{"attachment":false,"cost":{"input":0.27,"output":1},"id":"nex-agi/deepseek-v3.1-nex-n1","last_updated":"2025-11-25","limit":{"context":131072,"output":163840},"modalities":{"input":["text"],"output":["text"]},"name":"Nex AGI: DeepSeek V3.1 Nex N1","open_weights":false,"reasoning":false,"release_date":"2025-01-01","temperature":true,"tool_call":true},"nousresearch/hermes-2-pro-llama-3-8b":{"attachment":false,"cost":{"input":0.14,"output":0.14},"id":"nousresearch/hermes-2-pro-llama-3-8b","last_updated":"2024-06-27","limit":{"context":8192,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"NousResearch: Hermes 2 Pro - Llama-3 8B","open_weights":true,"reasoning":false,"release_date":"2024-05-27","temperature":true,"tool_call":false},"nousresearch/hermes-3-llama-3.1-405b":{"attachment":false,"cost":{"input":1,"output":1},"id":"nousresearch/hermes-3-llama-3.1-405b","last_updated":"2024-08-16","limit":{"context":131072,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Nous: Hermes 3 405B Instruct","open_weights":true,"reasoning":false,"release_date":"2024-08-16","temperature":true,"tool_call":false},"nousresearch/hermes-3-llama-3.1-70b":{"attachment":false,"cost":{"input":0.3,"output":0.3},"id":"nousresearch/hermes-3-llama-3.1-70b","last_updated":"2026-03-15","limit":{"context":131072,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Nous: Hermes 3 70B Instruct","open_weights":true,"reasoning":false,"release_date":"2024-08-18","temperature":true,"tool_call":false},"nousresearch/hermes-4-405b":{"attachment":false,"cost":{"input":1,"output":3},"id":"nousresearch/hermes-4-405b","last_updated":"2025-08-25","limit":{"context":131072,"output":26215},"modalities":{"input":["text"],"output":["text"]},"name":"Nous: Hermes 4 405B","open_weights":true,"reasoning":true,"release_date":"2025-08-25","temperature":true,"tool_call":false},"nousresearch/hermes-4-70b":{"attachment":false,"cost":{"cache_read":0.055,"input":0.13,"output":0.4},"id":"nousresearch/hermes-4-70b","last_updated":"2026-03-15","limit":{"context":131072,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"Nous: Hermes 4 70B","open_weights":true,"reasoning":true,"release_date":"2025-08-25","temperature":true,"tool_call":false},"nvidia/llama-3.3-nemotron-super-49b-v1.5":{"attachment":false,"cost":{"input":0.1,"output":0.4},"id":"nvidia/llama-3.3-nemotron-super-49b-v1.5","last_updated":"2025-03-16","limit":{"context":131072,"output":26215},"modalities":{"input":["text"],"output":["text"]},"name":"NVIDIA: Llama 3.3 Nemotron Super 49B V1.5","open_weights":false,"reasoning":true,"release_date":"2025-03-16","temperature":true,"tool_call":true},"nvidia/nemotron-3-nano-30b-a3b":{"attachment":false,"cost":{"input":0.05,"output":0.2},"id":"nvidia/nemotron-3-nano-30b-a3b","last_updated":"2026-02-04","limit":{"context":262144,"output":52429},"modalities":{"input":["text"],"output":["text"]},"name":"NVIDIA: Nemotron 3 Nano 30B A3B","open_weights":true,"reasoning":true,"release_date":"2024-12","temperature":true,"tool_call":true},"nvidia/nemotron-3-nano-omni-30b-a3b-reasoning:free":{"attachment":true,"cost":{"input":0,"output":0},"id":"nvidia/nemotron-3-nano-omni-30b-a3b-reasoning:free","last_updated":"2026-05-01","limit":{"context":256000,"output":65536},"modalities":{"input":["text","audio","image","video"],"output":["text"]},"name":"NVIDIA: Nemotron 3 Nano Omni (free)","open_weights":false,"reasoning":true,"release_date":"2026-04-28","temperature":true,"tool_call":true},"nvidia/nemotron-3-super-120b-a12b":{"attachment":false,"cost":{"cache_read":0.1,"input":0.1,"output":0.5},"id":"nvidia/nemotron-3-super-120b-a12b","last_updated":"2026-04-11","limit":{"context":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"NVIDIA: Nemotron 3 Super","open_weights":true,"reasoning":true,"release_date":"2026-03-11","temperature":true,"tool_call":true},"nvidia/nemotron-3-super-120b-a12b:free":{"attachment":false,"cost":{"input":0,"output":0},"id":"nvidia/nemotron-3-super-120b-a12b:free","last_updated":"2026-03-15","limit":{"context":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"NVIDIA: Nemotron 3 Super (free)","open_weights":true,"reasoning":true,"release_date":"2026-03-12","temperature":true,"tool_call":true},"nvidia/nemotron-nano-9b-v2":{"attachment":false,"cost":{"input":0.04,"output":0.16},"id":"nvidia/nemotron-nano-9b-v2","last_updated":"2025-08-18","limit":{"context":131072,"output":26215},"modalities":{"input":["text"],"output":["text"]},"name":"NVIDIA: Nemotron Nano 9B V2","open_weights":true,"reasoning":true,"release_date":"2025-08-18","temperature":true,"tool_call":true},"openai/gpt-3.5-turbo":{"attachment":false,"cost":{"input":0.5,"output":1.5},"id":"openai/gpt-3.5-turbo","last_updated":"2023-11-06","limit":{"context":16385,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"OpenAI: GPT-3.5 Turbo","open_weights":false,"reasoning":false,"release_date":"2023-03-01","temperature":true,"tool_call":true},"openai/gpt-3.5-turbo-0613":{"attachment":false,"cost":{"input":1,"output":2},"id":"openai/gpt-3.5-turbo-0613","last_updated":"2023-06-13","limit":{"context":4095,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"OpenAI: GPT-3.5 Turbo (older v0613)","open_weights":false,"reasoning":false,"release_date":"2023-06-13","temperature":true,"tool_call":true},"openai/gpt-3.5-turbo-16k":{"attachment":false,"cost":{"input":3,"output":4},"id":"openai/gpt-3.5-turbo-16k","last_updated":"2026-03-15","limit":{"context":16385,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"OpenAI: GPT-3.5 Turbo 16k","open_weights":false,"reasoning":false,"release_date":"2023-08-28","temperature":true,"tool_call":true},"openai/gpt-3.5-turbo-instruct":{"attachment":false,"cost":{"input":1.5,"output":2},"id":"openai/gpt-3.5-turbo-instruct","last_updated":"2023-09-21","limit":{"context":4095,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"OpenAI: GPT-3.5 Turbo Instruct","open_weights":false,"reasoning":false,"release_date":"2023-03-01","temperature":true,"tool_call":false},"openai/gpt-4":{"attachment":false,"cost":{"input":30,"output":60},"id":"openai/gpt-4","last_updated":"2024-04-09","limit":{"context":8191,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"OpenAI: GPT-4","open_weights":false,"reasoning":false,"release_date":"2023-03-14","temperature":true,"tool_call":true},"openai/gpt-4-0314":{"attachment":false,"cost":{"input":30,"output":60},"id":"openai/gpt-4-0314","last_updated":"2026-03-15","limit":{"context":8191,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"OpenAI: GPT-4 (older v0314)","open_weights":false,"reasoning":false,"release_date":"2023-05-28","temperature":true,"tool_call":true},"openai/gpt-4-1106-preview":{"attachment":false,"cost":{"input":10,"output":30},"id":"openai/gpt-4-1106-preview","last_updated":"2026-03-15","limit":{"context":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"OpenAI: GPT-4 Turbo (older v1106)","open_weights":false,"reasoning":false,"release_date":"2023-11-06","temperature":true,"tool_call":true},"openai/gpt-4-turbo":{"attachment":true,"cost":{"input":10,"output":30},"id":"openai/gpt-4-turbo","last_updated":"2024-04-09","limit":{"context":128000,"output":4096},"modalities":{"input":["text","image"],"output":["text"]},"name":"OpenAI: GPT-4 Turbo","open_weights":false,"reasoning":false,"release_date":"2023-09-13","temperature":true,"tool_call":true},"openai/gpt-4-turbo-preview":{"attachment":false,"cost":{"input":10,"output":30},"id":"openai/gpt-4-turbo-preview","last_updated":"2026-03-15","limit":{"context":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"OpenAI: GPT-4 Turbo Preview","open_weights":false,"reasoning":false,"release_date":"2024-01-25","temperature":true,"tool_call":true},"openai/gpt-4.1":{"attachment":true,"cost":{"cache_read":0.5,"input":2,"output":8},"id":"openai/gpt-4.1","last_updated":"2026-03-15","limit":{"context":1047576,"output":32768},"modalities":{"input":["image","pdf","text"],"output":["text"]},"name":"OpenAI: GPT-4.1","open_weights":false,"reasoning":false,"release_date":"2025-04-14","temperature":true,"tool_call":true},"openai/gpt-4.1-mini":{"attachment":true,"cost":{"cache_read":0.1,"input":0.4,"output":1.6},"id":"openai/gpt-4.1-mini","last_updated":"2026-03-15","limit":{"context":1047576,"output":32768},"modalities":{"input":["image","pdf","text"],"output":["text"]},"name":"OpenAI: GPT-4.1 Mini","open_weights":false,"reasoning":false,"release_date":"2025-04-14","temperature":true,"tool_call":true},"openai/gpt-4.1-nano":{"attachment":true,"cost":{"cache_read":0.025,"input":0.1,"output":0.4},"id":"openai/gpt-4.1-nano","last_updated":"2026-03-15","limit":{"context":1047576,"output":32768},"modalities":{"input":["image","pdf","text"],"output":["text"]},"name":"OpenAI: GPT-4.1 Nano","open_weights":false,"reasoning":false,"release_date":"2025-04-14","temperature":true,"tool_call":true},"openai/gpt-4o":{"attachment":true,"cost":{"cache_read":1.25,"input":2.5,"output":10},"id":"openai/gpt-4o","last_updated":"2026-03-15","limit":{"context":128000,"output":16384},"modalities":{"input":["image","pdf","text"],"output":["text"]},"name":"OpenAI: GPT-4o","open_weights":false,"reasoning":false,"release_date":"2024-05-13","temperature":true,"tool_call":true},"openai/gpt-4o-2024-05-13":{"attachment":true,"cost":{"input":5,"output":15},"id":"openai/gpt-4o-2024-05-13","last_updated":"2026-03-15","limit":{"context":128000,"output":4096},"modalities":{"input":["image","pdf","text"],"output":["text"]},"name":"OpenAI: GPT-4o (2024-05-13)","open_weights":false,"reasoning":false,"release_date":"2024-05-13","temperature":true,"tool_call":true},"openai/gpt-4o-2024-08-06":{"attachment":true,"cost":{"cache_read":1.25,"input":2.5,"output":10},"id":"openai/gpt-4o-2024-08-06","last_updated":"2026-03-15","limit":{"context":128000,"output":16384},"modalities":{"input":["image","pdf","text"],"output":["text"]},"name":"OpenAI: GPT-4o (2024-08-06)","open_weights":false,"reasoning":false,"release_date":"2024-08-06","temperature":true,"tool_call":true},"openai/gpt-4o-2024-11-20":{"attachment":true,"cost":{"cache_read":1.25,"input":2.5,"output":10},"id":"openai/gpt-4o-2024-11-20","last_updated":"2026-03-15","limit":{"context":128000,"output":16384},"modalities":{"input":["image","pdf","text"],"output":["text"]},"name":"OpenAI: GPT-4o (2024-11-20)","open_weights":false,"reasoning":false,"release_date":"2024-11-20","temperature":true,"tool_call":true},"openai/gpt-4o-audio-preview":{"attachment":false,"cost":{"input":2.5,"output":10},"id":"openai/gpt-4o-audio-preview","last_updated":"2026-03-15","limit":{"context":128000,"output":16384},"modalities":{"input":["audio","text"],"output":["audio","text"]},"name":"OpenAI: GPT-4o Audio","open_weights":false,"reasoning":false,"release_date":"2025-08-15","temperature":true,"tool_call":true},"openai/gpt-4o-mini":{"attachment":true,"cost":{"cache_read":0.075,"input":0.15,"output":0.6},"id":"openai/gpt-4o-mini","last_updated":"2026-03-15","limit":{"context":128000,"output":16384},"modalities":{"input":["image","pdf","text"],"output":["text"]},"name":"OpenAI: GPT-4o-mini","open_weights":false,"reasoning":false,"release_date":"2024-07-18","temperature":true,"tool_call":true},"openai/gpt-4o-mini-2024-07-18":{"attachment":true,"cost":{"input":0.15,"output":0.6},"id":"openai/gpt-4o-mini-2024-07-18","last_updated":"2026-03-15","limit":{"context":128000,"output":16384},"modalities":{"input":["image","pdf","text"],"output":["text"]},"name":"OpenAI: GPT-4o-mini (2024-07-18)","open_weights":false,"reasoning":false,"release_date":"2024-07-18","temperature":true,"tool_call":true},"openai/gpt-4o-mini-search-preview":{"attachment":false,"cost":{"input":0.15,"output":0.6},"id":"openai/gpt-4o-mini-search-preview","last_updated":"2025-01","limit":{"context":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"OpenAI: GPT-4o-mini Search Preview","open_weights":false,"reasoning":false,"release_date":"2025-01","temperature":false,"tool_call":false},"openai/gpt-4o-search-preview":{"attachment":false,"cost":{"input":2.5,"output":10},"id":"openai/gpt-4o-search-preview","last_updated":"2026-03-15","limit":{"context":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"OpenAI: GPT-4o Search Preview","open_weights":false,"reasoning":false,"release_date":"2025-03-13","tool_call":false},"openai/gpt-5":{"attachment":true,"cost":{"cache_read":0.125,"input":1.25,"output":10},"id":"openai/gpt-5","last_updated":"2026-03-15","limit":{"context":400000,"output":128000},"modalities":{"input":["image","pdf","text"],"output":["text"]},"name":"OpenAI: GPT-5","open_weights":false,"reasoning":true,"release_date":"2025-08-07","temperature":false,"tool_call":true},"openai/gpt-5-chat":{"attachment":true,"cost":{"cache_read":0.125,"input":1.25,"output":10},"id":"openai/gpt-5-chat","last_updated":"2026-03-15","limit":{"context":128000,"output":16384},"modalities":{"input":["image","pdf","text"],"output":["text"]},"name":"OpenAI: GPT-5 Chat","open_weights":false,"reasoning":false,"release_date":"2025-08-07","temperature":false,"tool_call":false},"openai/gpt-5-codex":{"attachment":true,"cost":{"cache_read":0.125,"input":1.25,"output":10},"id":"openai/gpt-5-codex","last_updated":"2025-09-15","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"OpenAI: GPT-5 Codex","open_weights":false,"reasoning":true,"release_date":"2025-09-15","temperature":false,"tool_call":true},"openai/gpt-5-image":{"attachment":true,"cost":{"input":10,"output":10},"id":"openai/gpt-5-image","last_updated":"2026-03-15","limit":{"context":400000,"output":128000},"modalities":{"input":["image","pdf","text"],"output":["image","text"]},"name":"OpenAI: GPT-5 Image","open_weights":false,"reasoning":true,"release_date":"2025-10-14","temperature":true,"tool_call":true},"openai/gpt-5-image-mini":{"attachment":true,"cost":{"input":2.5,"output":2},"id":"openai/gpt-5-image-mini","last_updated":"2026-03-15","limit":{"context":400000,"output":128000},"modalities":{"input":["image","pdf","text"],"output":["image","text"]},"name":"OpenAI: GPT-5 Image Mini","open_weights":false,"reasoning":true,"release_date":"2025-10-16","temperature":true,"tool_call":true},"openai/gpt-5-mini":{"attachment":true,"cost":{"cache_read":0.025,"input":0.25,"output":2},"id":"openai/gpt-5-mini","last_updated":"2026-03-15","limit":{"context":400000,"output":128000},"modalities":{"input":["image","pdf","text"],"output":["text"]},"name":"OpenAI: GPT-5 Mini","open_weights":false,"reasoning":true,"release_date":"2025-08-07","temperature":false,"tool_call":true},"openai/gpt-5-nano":{"attachment":true,"cost":{"cache_read":0.005,"input":0.05,"output":0.4},"id":"openai/gpt-5-nano","last_updated":"2026-03-15","limit":{"context":400000,"output":128000},"modalities":{"input":["image","pdf","text"],"output":["text"]},"name":"OpenAI: GPT-5 Nano","open_weights":false,"reasoning":true,"release_date":"2025-08-07","temperature":false,"tool_call":true},"openai/gpt-5-pro":{"attachment":true,"cost":{"input":15,"output":120},"id":"openai/gpt-5-pro","last_updated":"2026-03-15","limit":{"context":400000,"output":128000},"modalities":{"input":["image","pdf","text"],"output":["text"]},"name":"OpenAI: GPT-5 Pro","open_weights":false,"reasoning":true,"release_date":"2025-10-06","temperature":false,"tool_call":true},"openai/gpt-5.1":{"attachment":true,"cost":{"cache_read":0.125,"input":1.25,"output":10},"id":"openai/gpt-5.1","last_updated":"2026-03-15","limit":{"context":400000,"output":128000},"modalities":{"input":["image","pdf","text"],"output":["text"]},"name":"OpenAI: GPT-5.1","open_weights":false,"reasoning":true,"release_date":"2025-11-13","temperature":false,"tool_call":true},"openai/gpt-5.1-chat":{"attachment":true,"cost":{"cache_read":0.125,"input":1.25,"output":10},"id":"openai/gpt-5.1-chat","last_updated":"2026-03-15","limit":{"context":128000,"output":16384},"modalities":{"input":["image","pdf","text"],"output":["text"]},"name":"OpenAI: GPT-5.1 Chat","open_weights":false,"reasoning":false,"release_date":"2025-11-13","temperature":false,"tool_call":true},"openai/gpt-5.1-codex":{"attachment":true,"cost":{"cache_read":0.125,"input":1.25,"output":10},"id":"openai/gpt-5.1-codex","last_updated":"2025-11-13","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"OpenAI: GPT-5.1-Codex","open_weights":false,"reasoning":true,"release_date":"2025-11-13","temperature":false,"tool_call":true},"openai/gpt-5.1-codex-max":{"attachment":true,"cost":{"cache_read":0.125,"input":1.25,"output":10},"id":"openai/gpt-5.1-codex-max","last_updated":"2025-11-13","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"OpenAI: GPT-5.1-Codex-Max","open_weights":false,"reasoning":true,"release_date":"2025-11-13","temperature":false,"tool_call":true},"openai/gpt-5.1-codex-mini":{"attachment":true,"cost":{"cache_read":0.025,"input":0.25,"output":2},"id":"openai/gpt-5.1-codex-mini","last_updated":"2025-11-13","limit":{"context":400000,"output":100000},"modalities":{"input":["image","text"],"output":["text"]},"name":"OpenAI: GPT-5.1-Codex-Mini","open_weights":false,"reasoning":true,"release_date":"2025-11-13","temperature":false,"tool_call":true},"openai/gpt-5.2":{"attachment":true,"cost":{"cache_read":0.175,"input":1.75,"output":14},"id":"openai/gpt-5.2","last_updated":"2026-03-15","limit":{"context":400000,"output":128000},"modalities":{"input":["image","pdf","text"],"output":["text"]},"name":"OpenAI: GPT-5.2","open_weights":false,"reasoning":true,"release_date":"2025-12-11","temperature":false,"tool_call":true},"openai/gpt-5.2-chat":{"attachment":true,"cost":{"cache_read":0.175,"input":1.75,"output":14},"id":"openai/gpt-5.2-chat","last_updated":"2026-03-15","limit":{"context":128000,"output":16384},"modalities":{"input":["image","pdf","text"],"output":["text"]},"name":"OpenAI: GPT-5.2 Chat","open_weights":false,"reasoning":false,"release_date":"2025-12-11","temperature":false,"tool_call":true},"openai/gpt-5.2-codex":{"attachment":true,"cost":{"cache_read":0.175,"input":1.75,"output":14},"id":"openai/gpt-5.2-codex","last_updated":"2026-01-14","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"OpenAI: GPT-5.2-Codex","open_weights":false,"reasoning":true,"release_date":"2026-01-14","temperature":false,"tool_call":true},"openai/gpt-5.2-pro":{"attachment":true,"cost":{"input":21,"output":168},"id":"openai/gpt-5.2-pro","last_updated":"2026-03-15","limit":{"context":400000,"output":128000},"modalities":{"input":["image","pdf","text"],"output":["text"]},"name":"OpenAI: GPT-5.2 Pro","open_weights":false,"reasoning":true,"release_date":"2025-12-11","temperature":false,"tool_call":true},"openai/gpt-5.3-chat":{"attachment":true,"cost":{"input":1.75,"output":14},"id":"openai/gpt-5.3-chat","last_updated":"2026-03-15","limit":{"context":128000,"output":16384},"modalities":{"input":["image","pdf","text"],"output":["text"]},"name":"OpenAI: GPT-5.3 Chat","open_weights":false,"reasoning":false,"release_date":"2026-03-04","tool_call":true},"openai/gpt-5.3-codex":{"attachment":true,"cost":{"input":1.75,"output":14},"id":"openai/gpt-5.3-codex","last_updated":"2026-03-15","limit":{"context":400000,"output":128000},"modalities":{"input":["image","text"],"output":["text"]},"name":"OpenAI: GPT-5.3-Codex","open_weights":false,"reasoning":true,"release_date":"2026-02-25","tool_call":true},"openai/gpt-5.4":{"attachment":true,"cost":{"input":2.5,"output":15},"id":"openai/gpt-5.4","last_updated":"2026-03-15","limit":{"context":1050000,"output":128000},"modalities":{"input":["image","pdf","text"],"output":["text"]},"name":"OpenAI: GPT-5.4","open_weights":false,"reasoning":true,"release_date":"2026-03-06","tool_call":true},"openai/gpt-5.4-image-2":{"attachment":true,"cost":{"cache_read":2,"input":8,"output":15},"id":"openai/gpt-5.4-image-2","last_updated":"2026-05-01","limit":{"context":272000,"output":128000},"modalities":{"input":["image","text","pdf"],"output":["image","text"]},"name":"OpenAI: GPT-5.4 Image 2","open_weights":false,"reasoning":true,"release_date":"2026-04-21","temperature":false,"tool_call":false},"openai/gpt-5.4-mini":{"attachment":true,"cost":{"cache_read":0.075,"input":0.75,"output":4.5},"id":"openai/gpt-5.4-mini","last_updated":"2026-04-11","limit":{"context":400000,"output":128000},"modalities":{"input":["image","pdf","text"],"output":["text"]},"name":"OpenAI: GPT-5.4 Mini","open_weights":false,"reasoning":true,"release_date":"2026-03-17","temperature":false,"tool_call":true},"openai/gpt-5.4-nano":{"attachment":true,"cost":{"cache_read":0.02,"input":0.2,"output":1.25},"id":"openai/gpt-5.4-nano","last_updated":"2026-04-11","limit":{"context":400000,"output":128000},"modalities":{"input":["image","pdf","text"],"output":["text"]},"name":"OpenAI: GPT-5.4 Nano","open_weights":false,"reasoning":true,"release_date":"2026-03-17","temperature":false,"tool_call":true},"openai/gpt-5.4-pro":{"attachment":true,"cost":{"input":30,"output":180},"id":"openai/gpt-5.4-pro","last_updated":"2026-03-15","limit":{"context":1050000,"output":128000},"modalities":{"input":["image","pdf","text"],"output":["text"]},"name":"OpenAI: GPT-5.4 Pro","open_weights":false,"reasoning":true,"release_date":"2026-03-06","tool_call":true},"openai/gpt-5.5":{"attachment":true,"cost":{"cache_read":0.5,"input":5,"output":30},"id":"openai/gpt-5.5","last_updated":"2026-05-01","limit":{"context":1050000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"OpenAI: GPT-5.5","open_weights":false,"reasoning":true,"release_date":"2026-04-24","temperature":false,"tool_call":true},"openai/gpt-5.5-pro":{"attachment":true,"cost":{"input":30,"output":180},"id":"openai/gpt-5.5-pro","last_updated":"2026-05-01","limit":{"context":1050000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"OpenAI: GPT-5.5 Pro","open_weights":false,"reasoning":true,"release_date":"2026-04-24","temperature":false,"tool_call":true},"openai/gpt-audio":{"attachment":false,"cost":{"input":2.5,"output":10},"id":"openai/gpt-audio","last_updated":"2026-03-15","limit":{"context":128000,"output":16384},"modalities":{"input":["audio","text"],"output":["audio","text"]},"name":"OpenAI: GPT Audio","open_weights":false,"reasoning":false,"release_date":"2026-01-20","temperature":true,"tool_call":false},"openai/gpt-audio-mini":{"attachment":false,"cost":{"input":0.6,"output":2.4},"id":"openai/gpt-audio-mini","last_updated":"2026-03-15","limit":{"context":128000,"output":16384},"modalities":{"input":["audio","text"],"output":["audio","text"]},"name":"OpenAI: GPT Audio Mini","open_weights":false,"reasoning":false,"release_date":"2026-01-20","temperature":true,"tool_call":false},"openai/gpt-chat-latest":{"attachment":true,"cost":{"cache_read":0.5,"input":5,"output":30},"id":"openai/gpt-chat-latest","last_updated":"2026-05-07","limit":{"context":400000,"output":128000},"modalities":{"input":["image","pdf","text"],"output":["text"]},"name":"OpenAI: GPT Chat Latest","open_weights":false,"reasoning":true,"release_date":"2026-05-05","structured_output":true,"temperature":false,"tool_call":true},"openai/gpt-oss-120b":{"attachment":false,"cost":{"input":0.039,"output":0.19},"id":"openai/gpt-oss-120b","last_updated":"2025-08-05","limit":{"context":131072,"output":26215},"modalities":{"input":["text"],"output":["text"]},"name":"OpenAI: gpt-oss-120b","open_weights":true,"reasoning":true,"release_date":"2025-08-05","temperature":true,"tool_call":true},"openai/gpt-oss-20b":{"attachment":false,"cost":{"input":0.03,"output":0.14},"id":"openai/gpt-oss-20b","last_updated":"2025-08-05","limit":{"context":131072,"output":26215},"modalities":{"input":["text"],"output":["text"]},"name":"OpenAI: gpt-oss-20b","open_weights":true,"reasoning":true,"release_date":"2025-08-05","temperature":true,"tool_call":true},"openai/gpt-oss-safeguard-20b":{"attachment":false,"cost":{"cache_read":0.037,"input":0.075,"output":0.3},"id":"openai/gpt-oss-safeguard-20b","last_updated":"2025-10-29","limit":{"context":131072,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"OpenAI: gpt-oss-safeguard-20b","open_weights":false,"reasoning":true,"release_date":"2025-10-29","temperature":true,"tool_call":true},"openai/o1":{"attachment":true,"cost":{"cache_read":7.5,"input":15,"output":60},"id":"openai/o1","last_updated":"2026-03-15","limit":{"context":200000,"output":100000},"modalities":{"input":["image","pdf","text"],"output":["text"]},"name":"OpenAI: o1","open_weights":false,"reasoning":false,"release_date":"2024-12-05","temperature":false,"tool_call":true},"openai/o1-pro":{"attachment":true,"cost":{"input":150,"output":600},"id":"openai/o1-pro","last_updated":"2026-03-15","limit":{"context":200000,"output":100000},"modalities":{"input":["image","pdf","text"],"output":["text"]},"name":"OpenAI: o1-pro","open_weights":false,"reasoning":true,"release_date":"2025-03-19","temperature":false,"tool_call":false},"openai/o3":{"attachment":true,"cost":{"cache_read":0.5,"input":2,"output":8},"id":"openai/o3","last_updated":"2026-03-15","limit":{"context":200000,"output":100000},"modalities":{"input":["image","pdf","text"],"output":["text"]},"name":"OpenAI: o3","open_weights":false,"reasoning":true,"release_date":"2025-04-16","temperature":false,"tool_call":true},"openai/o3-deep-research":{"attachment":true,"cost":{"cache_read":2.5,"input":10,"output":40},"id":"openai/o3-deep-research","last_updated":"2026-03-15","limit":{"context":200000,"output":100000},"modalities":{"input":["image","pdf","text"],"output":["text"]},"name":"OpenAI: o3 Deep Research","open_weights":false,"reasoning":true,"release_date":"2024-06-26","temperature":true,"tool_call":true},"openai/o3-mini":{"attachment":true,"cost":{"cache_read":0.55,"input":1.1,"output":4.4},"id":"openai/o3-mini","last_updated":"2026-03-15","limit":{"context":200000,"output":100000},"modalities":{"input":["pdf","text"],"output":["text"]},"name":"OpenAI: o3 Mini","open_weights":false,"reasoning":false,"release_date":"2024-12-20","temperature":false,"tool_call":true},"openai/o3-mini-high":{"attachment":true,"cost":{"cache_read":0.55,"input":1.1,"output":4.4},"id":"openai/o3-mini-high","last_updated":"2026-03-15","limit":{"context":200000,"output":100000},"modalities":{"input":["pdf","text"],"output":["text"]},"name":"OpenAI: o3 Mini High","open_weights":false,"reasoning":false,"release_date":"2025-01-31","temperature":false,"tool_call":true},"openai/o3-pro":{"attachment":true,"cost":{"input":20,"output":80},"id":"openai/o3-pro","last_updated":"2026-03-15","limit":{"context":200000,"output":100000},"modalities":{"input":["image","pdf","text"],"output":["text"]},"name":"OpenAI: o3 Pro","open_weights":false,"reasoning":true,"release_date":"2025-04-16","temperature":false,"tool_call":true},"openai/o4-mini":{"attachment":true,"cost":{"cache_read":0.275,"input":1.1,"output":4.4},"id":"openai/o4-mini","last_updated":"2026-03-15","limit":{"context":200000,"output":100000},"modalities":{"input":["image","pdf","text"],"output":["text"]},"name":"OpenAI: o4 Mini","open_weights":false,"reasoning":true,"release_date":"2025-04-16","temperature":false,"tool_call":true},"openai/o4-mini-deep-research":{"attachment":true,"cost":{"cache_read":0.5,"input":2,"output":8},"id":"openai/o4-mini-deep-research","last_updated":"2026-03-15","limit":{"context":200000,"output":100000},"modalities":{"input":["image","pdf","text"],"output":["text"]},"name":"OpenAI: o4 Mini Deep Research","open_weights":false,"reasoning":true,"release_date":"2024-06-26","temperature":true,"tool_call":true},"openai/o4-mini-high":{"attachment":true,"cost":{"input":1.1,"output":4.4},"id":"openai/o4-mini-high","last_updated":"2026-03-15","limit":{"context":200000,"output":100000},"modalities":{"input":["image","pdf","text"],"output":["text"]},"name":"OpenAI: o4 Mini High","open_weights":false,"reasoning":true,"release_date":"2025-04-17","tool_call":true},"openrouter/auto":{"attachment":true,"cost":{"input":0,"output":0},"id":"openrouter/auto","last_updated":"2026-03-15","limit":{"context":2000000,"output":32768},"modalities":{"input":["audio","image","pdf","text","video"],"output":["image","text"]},"name":"Auto Router","open_weights":false,"reasoning":true,"release_date":"2026-03-15","temperature":true,"tool_call":true},"openrouter/bodybuilder":{"attachment":false,"cost":{"input":0,"output":0},"id":"openrouter/bodybuilder","last_updated":"2026-03-15","limit":{"context":128000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Body Builder (beta)","open_weights":false,"reasoning":false,"release_date":"2026-03-15","status":"beta","tool_call":false},"openrouter/free":{"attachment":true,"cost":{"input":0,"output":0},"id":"openrouter/free","last_updated":"2026-03-15","limit":{"context":200000,"output":32768},"modalities":{"input":["image","text"],"output":["text"]},"name":"Free Models Router","open_weights":false,"reasoning":true,"release_date":"2026-02-01","temperature":true,"tool_call":true},"openrouter/owl-alpha":{"attachment":false,"cost":{"input":0,"output":0},"id":"openrouter/owl-alpha","last_updated":"2026-04-30","limit":{"context":1048756,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Owl Alpha","open_weights":false,"reasoning":true,"release_date":"2026-04-28","status":"alpha","structured_output":true,"temperature":true,"tool_call":true},"openrouter/pareto-code":{"attachment":false,"cost":{"input":0,"output":0},"id":"openrouter/pareto-code","last_updated":"2026-05-01","limit":{"context":200000,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Pareto Code Router","open_weights":false,"reasoning":false,"release_date":"2026-04-21","temperature":false,"tool_call":false},"perceptron/perceptron-mk1":{"attachment":true,"cost":{"input":0.15,"output":1.5},"id":"perceptron/perceptron-mk1","last_updated":"2026-05-16","limit":{"context":32768,"output":8192},"modalities":{"input":["image","text","video"],"output":["text"]},"name":"Perceptron: Perceptron Mk1","open_weights":false,"reasoning":true,"release_date":"2026-05-12","temperature":true,"tool_call":false},"perplexity/sonar":{"attachment":true,"cost":{"input":1,"output":1},"id":"perplexity/sonar","last_updated":"2025-09-01","limit":{"context":127072,"output":25415},"modalities":{"input":["text","image"],"output":["text"]},"name":"Perplexity: Sonar","open_weights":false,"reasoning":false,"release_date":"2024-01-01","temperature":true,"tool_call":false},"perplexity/sonar-deep-research":{"attachment":false,"cost":{"input":2,"output":8},"id":"perplexity/sonar-deep-research","last_updated":"2025-01-27","limit":{"context":128000,"output":25600},"modalities":{"input":["text"],"output":["text"]},"name":"Perplexity: Sonar Deep Research","open_weights":false,"reasoning":true,"release_date":"2025-01-27","temperature":true,"tool_call":false},"perplexity/sonar-pro":{"attachment":true,"cost":{"input":3,"output":15},"id":"perplexity/sonar-pro","last_updated":"2025-09-01","limit":{"context":200000,"output":8000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Perplexity: Sonar Pro","open_weights":false,"reasoning":false,"release_date":"2024-01-01","temperature":true,"tool_call":false},"perplexity/sonar-pro-search":{"attachment":true,"cost":{"input":3,"output":15},"id":"perplexity/sonar-pro-search","last_updated":"2026-03-15","limit":{"context":200000,"output":8000},"modalities":{"input":["image","text"],"output":["text"]},"name":"Perplexity: Sonar Pro Search","open_weights":false,"reasoning":true,"release_date":"2025-10-31","temperature":true,"tool_call":false},"perplexity/sonar-reasoning-pro":{"attachment":true,"cost":{"input":2,"output":8},"id":"perplexity/sonar-reasoning-pro","last_updated":"2025-09-01","limit":{"context":128000,"output":25600},"modalities":{"input":["text","image"],"output":["text"]},"name":"Perplexity: Sonar Reasoning Pro","open_weights":false,"reasoning":true,"release_date":"2024-01-01","temperature":true,"tool_call":false},"poolside/laguna-m.1:free":{"attachment":false,"cost":{"input":0,"output":0},"id":"poolside/laguna-m.1:free","last_updated":"2026-05-01","limit":{"context":131072,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Poolside: Laguna M.1 (free)","open_weights":false,"reasoning":true,"release_date":"2026-04-28","temperature":true,"tool_call":true},"poolside/laguna-xs.2:free":{"attachment":false,"cost":{"input":0,"output":0},"id":"poolside/laguna-xs.2:free","last_updated":"2026-05-01","limit":{"context":131072,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Poolside: Laguna XS.2 (free)","open_weights":false,"reasoning":true,"release_date":"2026-04-28","temperature":true,"tool_call":true},"prime-intellect/intellect-3":{"attachment":false,"cost":{"input":0.2,"output":1.1},"id":"prime-intellect/intellect-3","last_updated":"2026-02-04","limit":{"context":131072,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"Prime Intellect: INTELLECT-3","open_weights":true,"reasoning":true,"release_date":"2025-11-26","temperature":true,"tool_call":true},"qwen/qwen-2.5-72b-instruct":{"attachment":false,"cost":{"input":0.12,"output":0.39},"id":"qwen/qwen-2.5-72b-instruct","last_updated":"2026-01-10","limit":{"context":32768,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen2.5 72B Instruct","open_weights":true,"reasoning":false,"release_date":"2024-09","temperature":true,"tool_call":true},"qwen/qwen-2.5-7b-instruct":{"attachment":false,"cost":{"input":0.04,"output":0.1},"id":"qwen/qwen-2.5-7b-instruct","last_updated":"2025-04-16","limit":{"context":32768,"output":6554},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen: Qwen2.5 7B Instruct","open_weights":true,"reasoning":false,"release_date":"2024-09","temperature":true,"tool_call":true},"qwen/qwen-2.5-coder-32b-instruct":{"attachment":false,"cost":{"cache_read":0.015,"input":0.2,"output":0.2},"id":"qwen/qwen-2.5-coder-32b-instruct","last_updated":"2026-03-15","limit":{"context":32768,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen2.5 Coder 32B Instruct","open_weights":true,"reasoning":false,"release_date":"2024-11-11","temperature":true,"tool_call":false},"qwen/qwen-plus":{"attachment":false,"cost":{"cache_read":0.08,"input":0.4,"output":1.2},"id":"qwen/qwen-plus","last_updated":"2025-09-11","limit":{"context":1000000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen: Qwen-Plus","open_weights":false,"reasoning":false,"release_date":"2024-01-25","temperature":true,"tool_call":true},"qwen/qwen-plus-2025-07-28":{"attachment":false,"cost":{"input":0.26,"output":0.78},"id":"qwen/qwen-plus-2025-07-28","last_updated":"2026-03-15","limit":{"context":1000000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen: Qwen Plus 0728","open_weights":true,"reasoning":false,"release_date":"2025-09-09","temperature":true,"tool_call":true},"qwen/qwen-plus-2025-07-28:thinking":{"attachment":false,"cost":{"input":0.26,"output":0.78},"id":"qwen/qwen-plus-2025-07-28:thinking","last_updated":"2026-03-15","limit":{"context":1000000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen: Qwen Plus 0728 (thinking)","open_weights":true,"reasoning":true,"release_date":"2025-09-09","temperature":true,"tool_call":true},"qwen/qwen2.5-vl-72b-instruct":{"attachment":true,"cost":{"cache_read":0.075,"input":0.8,"output":0.8},"id":"qwen/qwen2.5-vl-72b-instruct","last_updated":"2026-03-15","limit":{"context":32768,"output":32768},"modalities":{"input":["image","text"],"output":["text"]},"name":"Qwen: Qwen2.5 VL 72B Instruct","open_weights":true,"reasoning":false,"release_date":"2025-02-01","temperature":true,"tool_call":false},"qwen/qwen3-14b":{"attachment":false,"cost":{"cache_read":0.025,"input":0.06,"output":0.24},"id":"qwen/qwen3-14b","last_updated":"2026-03-15","limit":{"context":40960,"output":40960},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen: Qwen3 14B","open_weights":true,"reasoning":true,"release_date":"2025-04","temperature":true,"tool_call":true},"qwen/qwen3-235b-a22b":{"attachment":false,"cost":{"cache_read":0.15,"input":0.455,"output":1.82},"id":"qwen/qwen3-235b-a22b","last_updated":"2026-03-15","limit":{"context":131072,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen: Qwen3 235B A22B","open_weights":true,"reasoning":true,"release_date":"2024-12-01","temperature":true,"tool_call":true},"qwen/qwen3-235b-a22b-2507":{"attachment":false,"cost":{"input":0.071,"output":0.1},"id":"qwen/qwen3-235b-a22b-2507","last_updated":"2026-01","limit":{"context":262144,"output":52429},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen: Qwen3 235B A22B Instruct 2507","open_weights":true,"reasoning":true,"release_date":"2025-04","temperature":true,"tool_call":true},"qwen/qwen3-235b-a22b-thinking-2507":{"attachment":false,"cost":{"input":0.11,"output":0.6},"id":"qwen/qwen3-235b-a22b-thinking-2507","last_updated":"2026-03-15","limit":{"context":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen: Qwen3 235B A22B Thinking 2507","open_weights":true,"reasoning":true,"release_date":"2025-07-25","temperature":true,"tool_call":true},"qwen/qwen3-30b-a3b":{"attachment":false,"cost":{"cache_read":0.03,"input":0.08,"output":0.28},"id":"qwen/qwen3-30b-a3b","last_updated":"2026-03-15","limit":{"context":40960,"output":40960},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen: Qwen3 30B A3B","open_weights":true,"reasoning":true,"release_date":"2025-04","temperature":true,"tool_call":true},"qwen/qwen3-30b-a3b-instruct-2507":{"attachment":false,"cost":{"cache_read":0.04,"input":0.09,"output":0.3},"id":"qwen/qwen3-30b-a3b-instruct-2507","last_updated":"2026-03-15","limit":{"context":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen: Qwen3 30B A3B Instruct 2507","open_weights":true,"reasoning":false,"release_date":"2025-07-29","temperature":true,"tool_call":true},"qwen/qwen3-30b-a3b-thinking-2507":{"attachment":false,"cost":{"input":0.051,"output":0.34},"id":"qwen/qwen3-30b-a3b-thinking-2507","last_updated":"2025-07-29","limit":{"context":32768,"output":6554},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen: Qwen3 30B A3B Thinking 2507","open_weights":true,"reasoning":true,"release_date":"2025-07-29","temperature":true,"tool_call":true},"qwen/qwen3-32b":{"attachment":false,"cost":{"cache_read":0.04,"input":0.08,"output":0.24},"id":"qwen/qwen3-32b","last_updated":"2026-02-04","limit":{"context":40960,"output":40960},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen: Qwen3 32B","open_weights":true,"reasoning":true,"release_date":"2024-12-01","temperature":true,"tool_call":true},"qwen/qwen3-8b":{"attachment":false,"cost":{"cache_read":0.05,"input":0.05,"output":0.4},"id":"qwen/qwen3-8b","last_updated":"2026-03-15","limit":{"context":40960,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen: Qwen3 8B","open_weights":true,"reasoning":true,"release_date":"2025-04","temperature":true,"tool_call":true},"qwen/qwen3-coder":{"attachment":false,"cost":{"cache_read":0.022,"input":0.22,"output":1},"id":"qwen/qwen3-coder","last_updated":"2025-07-23","limit":{"context":262144,"output":52429},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen: Qwen3 Coder 480B A35B","open_weights":true,"reasoning":false,"release_date":"2025-07-23","temperature":true,"tool_call":true},"qwen/qwen3-coder-30b-a3b-instruct":{"attachment":false,"cost":{"input":0.07,"output":0.27},"id":"qwen/qwen3-coder-30b-a3b-instruct","last_updated":"2025-07-31","limit":{"context":160000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen: Qwen3 Coder 30B A3B Instruct","open_weights":true,"reasoning":false,"release_date":"2025-07-31","temperature":true,"tool_call":true},"qwen/qwen3-coder-flash":{"attachment":false,"cost":{"cache_read":0.06,"input":0.195,"output":0.975},"id":"qwen/qwen3-coder-flash","last_updated":"2026-03-15","limit":{"context":1000000,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen: Qwen3 Coder Flash","open_weights":false,"reasoning":false,"release_date":"2025-07-23","temperature":true,"tool_call":true},"qwen/qwen3-coder-next":{"attachment":false,"cost":{"cache_read":0.035,"input":0.12,"output":0.75},"id":"qwen/qwen3-coder-next","last_updated":"2026-03-15","limit":{"context":262144,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen: Qwen3 Coder Next","open_weights":true,"reasoning":false,"release_date":"2026-02-02","temperature":true,"tool_call":true},"qwen/qwen3-coder-plus":{"attachment":false,"cost":{"cache_read":0.2,"input":0.65,"output":3.25},"id":"qwen/qwen3-coder-plus","last_updated":"2026-03-15","limit":{"context":1000000,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen: Qwen3 Coder Plus","open_weights":true,"reasoning":false,"release_date":"2025-07-01","temperature":true,"tool_call":true},"qwen/qwen3-max":{"attachment":false,"cost":{"cache_read":0.24,"input":1.2,"output":6},"id":"qwen/qwen3-max","last_updated":"2026-03-15","limit":{"context":262144,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen: Qwen3 Max","open_weights":false,"reasoning":false,"release_date":"2025-09-05","temperature":true,"tool_call":true},"qwen/qwen3-max-thinking":{"attachment":false,"cost":{"input":0.78,"output":3.9},"id":"qwen/qwen3-max-thinking","last_updated":"2026-03-15","limit":{"context":262144,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen: Qwen3 Max Thinking","open_weights":false,"reasoning":true,"release_date":"2026-01-23","temperature":true,"tool_call":true},"qwen/qwen3-next-80b-a3b-instruct":{"attachment":false,"cost":{"input":0.09,"output":1.1},"id":"qwen/qwen3-next-80b-a3b-instruct","last_updated":"2026-03-15","limit":{"context":131072,"output":52429},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen: Qwen3 Next 80B A3B Instruct","open_weights":true,"reasoning":false,"release_date":"2025-09-11","temperature":true,"tool_call":true},"qwen/qwen3-next-80b-a3b-thinking":{"attachment":false,"cost":{"input":0.0975,"output":0.78},"id":"qwen/qwen3-next-80b-a3b-thinking","last_updated":"2026-03-15","limit":{"context":131072,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen: Qwen3 Next 80B A3B Thinking","open_weights":true,"reasoning":true,"release_date":"2025-09-11","temperature":true,"tool_call":true},"qwen/qwen3-vl-235b-a22b-instruct":{"attachment":true,"cost":{"cache_read":0.11,"input":0.2,"output":0.88},"id":"qwen/qwen3-vl-235b-a22b-instruct","last_updated":"2026-01-10","limit":{"context":262144,"output":52429},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen: Qwen3 VL 235B A22B Instruct","open_weights":true,"reasoning":false,"release_date":"2025-09-23","temperature":true,"tool_call":true},"qwen/qwen3-vl-235b-a22b-thinking":{"attachment":true,"cost":{"input":0.26,"output":2.6},"id":"qwen/qwen3-vl-235b-a22b-thinking","last_updated":"2026-03-15","limit":{"context":131072,"output":32768},"modalities":{"input":["image","text"],"output":["text"]},"name":"Qwen: Qwen3 VL 235B A22B Thinking","open_weights":true,"reasoning":true,"release_date":"2025-09-24","temperature":true,"tool_call":true},"qwen/qwen3-vl-30b-a3b-instruct":{"attachment":true,"cost":{"input":0.13,"output":0.52},"id":"qwen/qwen3-vl-30b-a3b-instruct","last_updated":"2025-11-25","limit":{"context":131072,"output":32768},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen: Qwen3 VL 30B A3B Instruct","open_weights":true,"reasoning":false,"release_date":"2025-10-05","temperature":true,"tool_call":true},"qwen/qwen3-vl-30b-a3b-thinking":{"attachment":true,"cost":{"input":0.13,"output":1.56},"id":"qwen/qwen3-vl-30b-a3b-thinking","last_updated":"2026-03-15","limit":{"context":131072,"output":32768},"modalities":{"input":["image","text"],"output":["text"]},"name":"Qwen: Qwen3 VL 30B A3B Thinking","open_weights":true,"reasoning":true,"release_date":"2025-10-11","temperature":true,"tool_call":true},"qwen/qwen3-vl-32b-instruct":{"attachment":true,"cost":{"input":0.104,"output":0.416},"id":"qwen/qwen3-vl-32b-instruct","last_updated":"2025-11-25","limit":{"context":131072,"output":32768},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen: Qwen3 VL 32B Instruct","open_weights":false,"reasoning":false,"release_date":"2025-10-21","temperature":true,"tool_call":true},"qwen/qwen3-vl-8b-instruct":{"attachment":true,"cost":{"input":0.08,"output":0.5},"id":"qwen/qwen3-vl-8b-instruct","last_updated":"2025-11-25","limit":{"context":131072,"output":32768},"modalities":{"input":["image","text"],"output":["text"]},"name":"Qwen: Qwen3 VL 8B Instruct","open_weights":true,"reasoning":false,"release_date":"2025-10-15","temperature":true,"tool_call":true},"qwen/qwen3-vl-8b-thinking":{"attachment":true,"cost":{"input":0.117,"output":1.365},"id":"qwen/qwen3-vl-8b-thinking","last_updated":"2025-11-25","limit":{"context":131072,"output":32768},"modalities":{"input":["image","text"],"output":["text"]},"name":"Qwen: Qwen3 VL 8B Thinking","open_weights":false,"reasoning":true,"release_date":"2025-10-15","temperature":true,"tool_call":true},"qwen/qwen3.5-122b-a10b":{"attachment":true,"cost":{"input":0.26,"output":2.08},"id":"qwen/qwen3.5-122b-a10b","last_updated":"2026-03-15","limit":{"context":262144,"output":65536},"modalities":{"input":["image","text","video"],"output":["text"]},"name":"Qwen: Qwen3.5-122B-A10B","open_weights":true,"reasoning":true,"release_date":"2026-02-26","temperature":true,"tool_call":true},"qwen/qwen3.5-27b":{"attachment":true,"cost":{"input":0.195,"output":1.56},"id":"qwen/qwen3.5-27b","last_updated":"2026-03-15","limit":{"context":262144,"output":65536},"modalities":{"input":["image","text","video"],"output":["text"]},"name":"Qwen: Qwen3.5-27B","open_weights":true,"reasoning":true,"release_date":"2026-02-26","temperature":true,"tool_call":true},"qwen/qwen3.5-35b-a3b":{"attachment":true,"cost":{"input":0.1625,"output":1.3},"id":"qwen/qwen3.5-35b-a3b","last_updated":"2026-03-15","limit":{"context":262144,"output":65536},"modalities":{"input":["image","text","video"],"output":["text"]},"name":"Qwen: Qwen3.5-35B-A3B","open_weights":true,"reasoning":true,"release_date":"2026-02-26","temperature":true,"tool_call":true},"qwen/qwen3.5-397b-a17b":{"attachment":true,"cost":{"input":0.39,"output":2.34},"id":"qwen/qwen3.5-397b-a17b","last_updated":"2026-03-15","limit":{"context":262144,"output":65536},"modalities":{"input":["image","text","video"],"output":["text"]},"name":"Qwen: Qwen3.5 397B A17B","open_weights":false,"reasoning":true,"release_date":"2026-02-15","temperature":true,"tool_call":true},"qwen/qwen3.5-9b":{"attachment":true,"cost":{"input":0.05,"output":0.15},"id":"qwen/qwen3.5-9b","last_updated":"2026-03-15","limit":{"context":256000,"output":32768},"modalities":{"input":["image","text","video"],"output":["text"]},"name":"Qwen: Qwen3.5-9B","open_weights":true,"reasoning":true,"release_date":"2026-03-10","temperature":true,"tool_call":true},"qwen/qwen3.5-flash-02-23":{"attachment":true,"cost":{"input":0.1,"output":0.4},"id":"qwen/qwen3.5-flash-02-23","last_updated":"2026-03-15","limit":{"context":1000000,"output":65536},"modalities":{"input":["image","text","video"],"output":["text"]},"name":"Qwen: Qwen3.5-Flash","open_weights":true,"reasoning":true,"release_date":"2026-02-26","temperature":true,"tool_call":true},"qwen/qwen3.5-plus-02-15":{"attachment":true,"cost":{"input":0.26,"output":1.56},"id":"qwen/qwen3.5-plus-02-15","last_updated":"2026-03-15","limit":{"context":1000000,"output":65536},"modalities":{"input":["image","text","video"],"output":["text"]},"name":"Qwen: Qwen3.5 Plus 2026-02-15","open_weights":false,"reasoning":true,"release_date":"2026-02-15","temperature":true,"tool_call":true},"qwen/qwen3.5-plus-20260420":{"attachment":true,"cost":{"input":0.4,"output":2.4},"id":"qwen/qwen3.5-plus-20260420","last_updated":"2026-05-01","limit":{"context":1000000,"output":65536},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen: Qwen3.5 Plus 2026-04-20","open_weights":false,"reasoning":true,"release_date":"2026-04-27","temperature":true,"tool_call":true},"qwen/qwen3.6-27b":{"attachment":true,"cost":{"input":0.325,"output":3.25},"id":"qwen/qwen3.6-27b","last_updated":"2026-05-01","limit":{"context":256000,"output":65536},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen: Qwen3.6 27B","open_weights":false,"reasoning":true,"release_date":"2026-04-27","temperature":true,"tool_call":true},"qwen/qwen3.6-35b-a3b":{"attachment":true,"cost":{"cache_read":0.1612,"input":0.1612,"output":0.96525},"id":"qwen/qwen3.6-35b-a3b","last_updated":"2026-05-01","limit":{"context":262144,"output":65536},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen: Qwen3.6 35B A3B","open_weights":false,"reasoning":true,"release_date":"2026-04-27","temperature":true,"tool_call":false},"qwen/qwen3.6-flash":{"attachment":true,"cost":{"cache_write":0.3125,"input":0.25,"output":1.5},"id":"qwen/qwen3.6-flash","last_updated":"2026-05-01","limit":{"context":1000000,"output":65536},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen: Qwen3.6 Flash","open_weights":false,"reasoning":true,"release_date":"2026-04-27","temperature":true,"tool_call":true},"qwen/qwen3.6-max-preview":{"attachment":false,"cost":{"cache_write":1.3,"input":1.04,"output":6.24},"id":"qwen/qwen3.6-max-preview","last_updated":"2026-05-01","limit":{"context":262144,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen: Qwen3.6 Max Preview","open_weights":false,"reasoning":true,"release_date":"2026-04-27","temperature":true,"tool_call":true},"qwen/qwen3.6-plus":{"attachment":true,"cost":{"cache_read":0.0325,"cache_write":0.40625,"input":0.325,"output":1.95},"id":"qwen/qwen3.6-plus","last_updated":"2026-04-11","limit":{"context":1000000,"output":65536},"modalities":{"input":["image","text"],"output":["text"]},"name":"Qwen: Qwen3.6 Plus","open_weights":false,"reasoning":true,"release_date":"2025-08-26","temperature":true,"tool_call":true},"qwen/qwen3.7-max":{"attachment":false,"cost":{"cache_read":0.1625,"cache_write":2.03125,"input":1.625,"output":4.875},"id":"qwen/qwen3.7-max","last_updated":"2026-05-27","limit":{"context":1000000,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen: Qwen3.7 Max","open_weights":false,"reasoning":true,"release_date":"2025-08-26","temperature":true,"tool_call":true},"rekaai/reka-edge":{"attachment":true,"cost":{"input":0.1,"output":0.1},"id":"rekaai/reka-edge","last_updated":"2026-04-11","limit":{"context":16384,"output":16384},"modalities":{"input":["image","text","video"],"output":["text"]},"name":"Reka Edge","open_weights":true,"reasoning":false,"release_date":"2026-03-20","temperature":true,"tool_call":true},"rekaai/reka-flash-3":{"attachment":false,"cost":{"input":0.1,"output":0.2},"id":"rekaai/reka-flash-3","last_updated":"2026-04-11","limit":{"context":65536,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Reka Flash 3","open_weights":true,"reasoning":true,"release_date":"2025-03-12","temperature":true,"tool_call":false},"relace/relace-apply-3":{"attachment":false,"cost":{"input":0.85,"output":1.25},"id":"relace/relace-apply-3","last_updated":"2026-03-15","limit":{"context":256000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"Relace: Relace Apply 3","open_weights":false,"reasoning":false,"release_date":"2025-09-26","tool_call":false},"relace/relace-search":{"attachment":false,"cost":{"input":1,"output":3},"id":"relace/relace-search","last_updated":"2026-03-15","limit":{"context":256000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"Relace: Relace Search","open_weights":false,"reasoning":false,"release_date":"2025-12-09","temperature":true,"tool_call":true},"sao10k/l3-euryale-70b":{"attachment":false,"cost":{"input":1.48,"output":1.48},"id":"sao10k/l3-euryale-70b","last_updated":"2026-03-15","limit":{"context":8192,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Sao10k: Llama 3 Euryale 70B v2.1","open_weights":true,"reasoning":false,"release_date":"2024-06-18","temperature":true,"tool_call":true},"sao10k/l3-lunaris-8b":{"attachment":false,"cost":{"input":0.04,"output":0.05},"id":"sao10k/l3-lunaris-8b","last_updated":"2026-03-15","limit":{"context":8192,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Sao10K: Llama 3 8B Lunaris","open_weights":true,"reasoning":false,"release_date":"2024-08-13","temperature":true,"tool_call":false},"sao10k/l3.1-70b-hanami-x1":{"attachment":false,"cost":{"input":3,"output":3},"id":"sao10k/l3.1-70b-hanami-x1","last_updated":"2026-03-15","limit":{"context":16000,"output":16000},"modalities":{"input":["text"],"output":["text"]},"name":"Sao10K: Llama 3.1 70B Hanami x1","open_weights":true,"reasoning":false,"release_date":"2025-01-08","temperature":true,"tool_call":false},"sao10k/l3.1-euryale-70b":{"attachment":false,"cost":{"input":0.85,"output":0.85},"id":"sao10k/l3.1-euryale-70b","last_updated":"2026-03-15","limit":{"context":131072,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Sao10K: Llama 3.1 Euryale 70B v2.2","open_weights":true,"reasoning":false,"release_date":"2024-08-28","temperature":true,"tool_call":true},"sao10k/l3.3-euryale-70b":{"attachment":false,"cost":{"input":0.65,"output":0.75},"id":"sao10k/l3.3-euryale-70b","last_updated":"2026-03-15","limit":{"context":131072,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Sao10K: Llama 3.3 Euryale 70B","open_weights":true,"reasoning":false,"release_date":"2024-12-18","temperature":true,"tool_call":false},"stealth/claude-opus-4.6":{"attachment":true,"cost":{"cache_read":0.4,"cache_write":5,"input":4,"output":20},"id":"stealth/claude-opus-4.6","last_updated":"2026-05-27","limit":{"context":1000000,"output":128000},"modalities":{"input":["image","pdf","text"],"output":["text"]},"name":"Stealth: Claude Opus 4.6 (20% off)","open_weights":false,"reasoning":true,"release_date":"2026-02-05","temperature":true,"tool_call":true},"stealth/claude-opus-4.7":{"attachment":true,"cost":{"cache_read":0.4,"cache_write":5,"input":4,"output":20},"id":"stealth/claude-opus-4.7","last_updated":"2026-05-27","limit":{"context":1000000,"output":128000},"modalities":{"input":["image","pdf","text"],"output":["text"]},"name":"Stealth: Claude Opus 4.7 (20% off)","open_weights":false,"reasoning":true,"release_date":"2026-04-16","temperature":false,"tool_call":true},"stealth/claude-sonnet-4.6":{"attachment":true,"cost":{"cache_read":0.24,"cache_write":3,"input":2.4,"output":12},"id":"stealth/claude-sonnet-4.6","last_updated":"2026-05-27","limit":{"context":1000000,"output":64000},"modalities":{"input":["image","pdf","text"],"output":["text"]},"name":"Stealth: Claude Sonnet 4.6 (20% off)","open_weights":false,"reasoning":true,"release_date":"2026-02-17","temperature":true,"tool_call":true},"stepfun/step-3.5-flash":{"attachment":false,"cost":{"cache_read":0.02,"input":0.1,"output":0.3},"id":"stepfun/step-3.5-flash","last_updated":"2026-01-29","limit":{"context":256000,"output":256000},"modalities":{"input":["text"],"output":["text"]},"name":"StepFun: Step 3.5 Flash","open_weights":true,"reasoning":true,"release_date":"2026-01-29","temperature":true,"tool_call":true},"switchpoint/router":{"attachment":false,"cost":{"input":0.85,"output":3.4},"id":"switchpoint/router","last_updated":"2026-03-15","limit":{"context":131072,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Switchpoint Router","open_weights":false,"reasoning":true,"release_date":"2025-07-12","temperature":true,"tool_call":false},"tencent/hunyuan-a13b-instruct":{"attachment":false,"cost":{"input":0.14,"output":0.57},"id":"tencent/hunyuan-a13b-instruct","last_updated":"2025-11-25","limit":{"context":131072,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"Tencent: Hunyuan A13B Instruct","open_weights":false,"reasoning":true,"release_date":"2025-06-30","temperature":true,"tool_call":false},"tencent/hy3-preview":{"attachment":false,"cost":{"cache_read":0.029,"input":0.066,"output":0.26},"id":"tencent/hy3-preview","last_updated":"2026-05-16","limit":{"context":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Tencent: Hy3 Preview","open_weights":false,"reasoning":true,"release_date":"2026-04-22","temperature":true,"tool_call":true},"thedrummer/cydonia-24b-v4.1":{"attachment":false,"cost":{"input":0.3,"output":0.5},"id":"thedrummer/cydonia-24b-v4.1","last_updated":"2026-03-15","limit":{"context":131072,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"TheDrummer: Cydonia 24B V4.1","open_weights":true,"reasoning":false,"release_date":"2025-09-27","temperature":true,"tool_call":false},"thedrummer/rocinante-12b":{"attachment":false,"cost":{"input":0.17,"output":0.43},"id":"thedrummer/rocinante-12b","last_updated":"2026-03-15","limit":{"context":32768,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"TheDrummer: Rocinante 12B","open_weights":true,"reasoning":false,"release_date":"2024-09-30","temperature":true,"tool_call":true},"thedrummer/skyfall-36b-v2":{"attachment":false,"cost":{"input":0.55,"output":0.8},"id":"thedrummer/skyfall-36b-v2","last_updated":"2026-03-15","limit":{"context":32768,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"TheDrummer: Skyfall 36B V2","open_weights":true,"reasoning":false,"release_date":"2025-03-11","temperature":true,"tool_call":false},"thedrummer/unslopnemo-12b":{"attachment":false,"cost":{"input":0.4,"output":0.4},"id":"thedrummer/unslopnemo-12b","last_updated":"2026-03-15","limit":{"context":32768,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"TheDrummer: UnslopNemo 12B","open_weights":true,"reasoning":false,"release_date":"2024-11-09","temperature":true,"tool_call":true},"undi95/remm-slerp-l2-13b":{"attachment":false,"cost":{"input":0.45,"output":0.65},"id":"undi95/remm-slerp-l2-13b","last_updated":"2026-03-15","limit":{"context":6144,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"ReMM SLERP 13B","open_weights":true,"reasoning":false,"release_date":"2023-07-22","temperature":true,"tool_call":false},"upstage/solar-pro-3":{"attachment":false,"cost":{"input":0.15,"output":0.6},"id":"upstage/solar-pro-3","last_updated":"2026-03-15","limit":{"context":128000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Upstage: Solar Pro 3","open_weights":false,"reasoning":true,"release_date":"2026-01-27","temperature":true,"tool_call":true},"writer/palmyra-x5":{"attachment":false,"cost":{"input":0.6,"output":6},"id":"writer/palmyra-x5","last_updated":"2025-04-28","limit":{"context":1040000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Writer: Palmyra X5","open_weights":false,"reasoning":false,"release_date":"2025-04-28","temperature":true,"tool_call":false},"x-ai/grok-4.20":{"attachment":true,"cost":{"cache_read":0.2,"input":2,"output":6},"id":"x-ai/grok-4.20","last_updated":"2026-04-11","limit":{"context":2000000,"output":2000000},"modalities":{"input":["image","pdf","text"],"output":["text"]},"name":"xAI: Grok 4.20","open_weights":false,"reasoning":true,"release_date":"2026-03-31","temperature":true,"tool_call":true},"x-ai/grok-4.20-multi-agent":{"attachment":true,"cost":{"cache_read":0.2,"input":2,"output":6},"id":"x-ai/grok-4.20-multi-agent","last_updated":"2026-04-11","limit":{"context":2000000,"output":2000000},"modalities":{"input":["image","pdf","text"],"output":["text"]},"name":"xAI: Grok 4.20 Multi-Agent","open_weights":false,"reasoning":true,"release_date":"2026-03-31","temperature":true,"tool_call":false},"x-ai/grok-4.3":{"attachment":true,"cost":{"cache_read":0.2,"input":1.25,"output":2.5},"id":"x-ai/grok-4.3","last_updated":"2026-05-01","limit":{"context":1000000,"output":4096},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"xAI: Grok 4.3","open_weights":false,"reasoning":true,"release_date":"2026-05-01","temperature":true,"tool_call":true},"x-ai/grok-build-0.1":{"attachment":true,"cost":{"cache_read":0.2,"input":1,"output":2},"id":"x-ai/grok-build-0.1","last_updated":"2026-05-27","limit":{"context":256000,"output":256000},"modalities":{"input":["image","text"],"output":["text"]},"name":"xAI: Grok Build 0.1","open_weights":false,"reasoning":true,"release_date":"2026-05-20","temperature":true,"tool_call":true},"xiaomi/mimo-v2-flash":{"attachment":false,"cost":{"cache_read":0.045,"input":0.09,"output":0.29},"family":"mimo","id":"xiaomi/mimo-v2-flash","knowledge":"2024-12-01","last_updated":"2026-02-04","limit":{"context":262144,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Xiaomi: MiMo-V2-Flash","open_weights":true,"reasoning":true,"release_date":"2025-12-16","temperature":true,"tool_call":true},"xiaomi/mimo-v2-omni":{"attachment":true,"cost":{"cache_read":0.08,"input":0.4,"output":2},"family":"mimo","id":"xiaomi/mimo-v2-omni","knowledge":"2024-12","last_updated":"2026-03-18","limit":{"context":262144,"output":65536},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"Xiaomi: MiMo-V2-Omni","open_weights":false,"reasoning":true,"release_date":"2026-03-18","temperature":true,"tool_call":true},"xiaomi/mimo-v2-pro":{"attachment":false,"cost":{"cache_read":0.2,"context_over_200k":{"cache_read":0.4,"input":2,"output":6},"input":1,"output":3,"tiers":[{"cache_read":0.4,"input":2,"output":6,"tier":{"size":256000,"type":"context"}}]},"family":"mimo","id":"xiaomi/mimo-v2-pro","knowledge":"2024-12","last_updated":"2026-03-18","limit":{"context":1048576,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"Xiaomi: MiMo-V2-Pro","open_weights":false,"reasoning":true,"release_date":"2026-03-18","temperature":true,"tool_call":true},"xiaomi/mimo-v2.5":{"attachment":true,"cost":{"cache_read":0.08,"context_over_200k":{"cache_read":0.16,"input":0.8,"output":4},"input":0.4,"output":2,"tiers":[{"cache_read":0.16,"input":0.8,"output":4,"tier":{"size":256000,"type":"context"}}]},"family":"mimo","id":"xiaomi/mimo-v2.5","interleaved":{"field":"reasoning_content"},"knowledge":"2024-12","last_updated":"2026-04-22","limit":{"context":1048576,"output":131072},"modalities":{"input":["text","image","audio","video"],"output":["text"]},"name":"Xiaomi: MiMo-V2.5","open_weights":true,"reasoning":true,"release_date":"2026-04-22","temperature":true,"tool_call":true},"xiaomi/mimo-v2.5-pro":{"attachment":false,"cost":{"cache_read":0.2,"context_over_200k":{"cache_read":0.4,"input":2,"output":6},"input":1,"output":3,"tiers":[{"cache_read":0.4,"input":2,"output":6,"tier":{"size":256000,"type":"context"}}]},"family":"mimo","id":"xiaomi/mimo-v2.5-pro","interleaved":{"field":"reasoning_content"},"knowledge":"2024-12","last_updated":"2026-04-22","limit":{"context":1048576,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"Xiaomi: MiMo V2.5 Pro","open_weights":true,"reasoning":true,"release_date":"2026-04-22","temperature":true,"tool_call":true},"z-ai/glm-4-32b":{"attachment":false,"cost":{"input":0.1,"output":0.1},"id":"z-ai/glm-4-32b","last_updated":"2026-03-15","limit":{"context":128000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Z.ai: GLM 4 32B ","open_weights":true,"reasoning":false,"release_date":"2025-07-25","temperature":true,"tool_call":true},"z-ai/glm-4.5":{"attachment":false,"cost":{"cache_read":0.175,"input":0.6,"output":2.2},"id":"z-ai/glm-4.5","last_updated":"2026-03-15","limit":{"context":131072,"output":98304},"modalities":{"input":["text"],"output":["text"]},"name":"Z.ai: GLM 4.5","open_weights":true,"reasoning":true,"release_date":"2025-07-28","temperature":true,"tool_call":true},"z-ai/glm-4.5-air":{"attachment":false,"cost":{"cache_read":0.025,"input":0.13,"output":0.85},"id":"z-ai/glm-4.5-air","last_updated":"2025-07-28","limit":{"context":131072,"output":98304},"modalities":{"input":["text"],"output":["text"]},"name":"Z.ai: GLM 4.5 Air","open_weights":true,"reasoning":true,"release_date":"2025-07-28","temperature":true,"tool_call":true},"z-ai/glm-4.5v":{"attachment":true,"cost":{"cache_read":0.11,"input":0.6,"output":1.8},"id":"z-ai/glm-4.5v","last_updated":"2025-08-11","limit":{"context":65536,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"Z.ai: GLM 4.5V","open_weights":true,"reasoning":true,"release_date":"2025-08-11","temperature":true,"tool_call":true},"z-ai/glm-4.6":{"attachment":false,"cost":{"cache_read":0.175,"input":0.39,"output":1.9},"id":"z-ai/glm-4.6","last_updated":"2026-03-15","limit":{"context":204800,"output":204800},"modalities":{"input":["text"],"output":["text"]},"name":"Z.ai: GLM 4.6","open_weights":true,"reasoning":true,"release_date":"2025-09-30","temperature":true,"tool_call":true},"z-ai/glm-4.6v":{"attachment":true,"cost":{"input":0.3,"output":0.9},"id":"z-ai/glm-4.6v","last_updated":"2026-01-10","limit":{"context":131072,"output":131072},"modalities":{"input":["image","text","video"],"output":["text"]},"name":"Z.ai: GLM 4.6V","open_weights":true,"reasoning":true,"release_date":"2025-09-30","temperature":true,"tool_call":true},"z-ai/glm-4.7":{"attachment":false,"cost":{"cache_read":0.2,"input":0.38,"output":1.98},"id":"z-ai/glm-4.7","last_updated":"2026-03-15","limit":{"context":202752,"output":65535},"modalities":{"input":["text"],"output":["text"]},"name":"Z.ai: GLM 4.7","open_weights":true,"reasoning":true,"release_date":"2025-12-22","temperature":true,"tool_call":true},"z-ai/glm-4.7-flash":{"attachment":false,"cost":{"cache_read":0.01,"input":0.06,"output":0.4},"id":"z-ai/glm-4.7-flash","last_updated":"2026-01-19","limit":{"context":202752,"output":40551},"modalities":{"input":["text"],"output":["text"]},"name":"Z.ai: GLM 4.7 Flash","open_weights":true,"reasoning":true,"release_date":"2026-01-19","temperature":true,"tool_call":true},"z-ai/glm-5":{"attachment":false,"cost":{"input":0.72,"output":2.3},"id":"z-ai/glm-5","last_updated":"2026-03-15","limit":{"context":202752,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"Z.ai: GLM 5","open_weights":true,"reasoning":true,"release_date":"2026-02-12","temperature":true,"tool_call":true},"z-ai/glm-5-turbo":{"attachment":false,"cost":{"cache_read":0.24,"input":1.2,"output":4},"id":"z-ai/glm-5-turbo","last_updated":"2026-04-11","limit":{"context":202752,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"Z.ai: GLM 5 Turbo","open_weights":true,"reasoning":true,"release_date":"2026-03-15","temperature":true,"tool_call":true},"z-ai/glm-5.1":{"attachment":false,"cost":{"input":1.26,"output":3.96},"id":"z-ai/glm-5.1","last_updated":"2026-03-27","limit":{"context":202752,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"Z.ai: GLM 5.1","open_weights":true,"reasoning":true,"release_date":"2026-03-27","temperature":true,"tool_call":true},"z-ai/glm-5v-turbo":{"attachment":true,"cost":{"cache_read":0.24,"input":1.2,"output":4},"id":"z-ai/glm-5v-turbo","last_updated":"2026-04-11","limit":{"context":202752,"output":131072},"modalities":{"input":["image","text","video"],"output":["text"]},"name":"Z.ai: GLM 5V Turbo","open_weights":true,"reasoning":true,"release_date":"2026-04-01","temperature":true,"tool_call":true},"~anthropic/claude-haiku-latest":{"attachment":true,"cost":{"cache_read":0.1,"cache_write":1.25,"input":1,"output":5},"id":"~anthropic/claude-haiku-latest","last_updated":"2026-05-01","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Anthropic: Claude Haiku Latest","open_weights":false,"reasoning":true,"release_date":"2026-04-27","temperature":true,"tool_call":true},"~anthropic/claude-opus-latest":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"input":5,"output":25},"id":"~anthropic/claude-opus-latest","last_updated":"2026-05-01","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Anthropic: Claude Opus Latest","open_weights":false,"reasoning":true,"release_date":"2026-04-16","temperature":false,"tool_call":true},"~anthropic/claude-sonnet-latest":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"input":3,"output":15},"id":"~anthropic/claude-sonnet-latest","last_updated":"2026-05-01","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Anthropic: Claude Sonnet Latest","open_weights":false,"reasoning":true,"release_date":"2026-04-27","temperature":true,"tool_call":true},"~google/gemini-flash-latest":{"attachment":true,"cost":{"cache_read":0.05,"cache_write":0.08333333333333334,"input":0.5,"output":3},"id":"~google/gemini-flash-latest","last_updated":"2026-05-01","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"Google: Gemini Flash Latest","open_weights":false,"reasoning":true,"release_date":"2026-04-27","temperature":true,"tool_call":true},"~google/gemini-pro-latest":{"attachment":true,"cost":{"cache_read":0.2,"cache_write":0.375,"input":2,"output":12},"id":"~google/gemini-pro-latest","last_updated":"2026-05-01","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"Google: Gemini Pro Latest","open_weights":false,"reasoning":true,"release_date":"2026-04-27","temperature":true,"tool_call":true},"~moonshotai/kimi-latest":{"attachment":true,"cost":{"cache_read":0.14,"input":0.74,"output":3.49},"id":"~moonshotai/kimi-latest","last_updated":"2026-05-01","limit":{"context":262142,"output":262142},"modalities":{"input":["text","image"],"output":["text"]},"name":"MoonshotAI: Kimi Latest","open_weights":false,"reasoning":true,"release_date":"2026-04-27","temperature":true,"tool_call":true},"~openai/gpt-latest":{"attachment":true,"cost":{"cache_read":0.5,"input":5,"output":30},"id":"~openai/gpt-latest","last_updated":"2026-05-01","limit":{"context":1050000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"OpenAI: GPT Latest","open_weights":false,"reasoning":true,"release_date":"2026-04-27","temperature":false,"tool_call":true},"~openai/gpt-mini-latest":{"attachment":true,"cost":{"cache_read":0.075,"input":0.75,"output":4.5},"id":"~openai/gpt-mini-latest","last_updated":"2026-05-01","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"OpenAI: GPT Mini Latest","open_weights":false,"reasoning":true,"release_date":"2026-04-27","temperature":false,"tool_call":true}},"name":"Kilo Gateway","npm":"@ai-sdk/openai-compatible"},"kimi-for-coding":{"api":"https://api.kimi.com/coding/v1","doc":"https://www.kimi.com/code/docs/en/third-party-tools/other-coding-agents.html","env":["KIMI_API_KEY"],"id":"kimi-for-coding","models":{"k2p5":{"attachment":false,"cost":{"cache_read":0,"cache_write":0,"input":0,"output":0},"family":"kimi-thinking","id":"k2p5","knowledge":"2025-01","last_updated":"2026-01","limit":{"context":262144,"output":32768},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Kimi K2.5","open_weights":true,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"release_date":"2026-01","structured_output":true,"temperature":true,"tool_call":true},"k2p6":{"attachment":false,"cost":{"cache_read":0,"cache_write":0,"input":0,"output":0},"family":"kimi-thinking","id":"k2p6","knowledge":"2025-01","last_updated":"2026-04","limit":{"context":262144,"output":32768},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Kimi K2.6","open_weights":true,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"release_date":"2026-04","structured_output":true,"temperature":true,"tool_call":true},"kimi-k2-thinking":{"attachment":false,"cost":{"cache_read":0,"cache_write":0,"input":0,"output":0},"family":"kimi-thinking","id":"kimi-k2-thinking","knowledge":"2025-07","last_updated":"2025-12","limit":{"context":262144,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Kimi K2 Thinking","open_weights":true,"reasoning":true,"release_date":"2025-11","structured_output":true,"temperature":true,"tool_call":true}},"name":"Kimi For Coding","npm":"@ai-sdk/anthropic"},"kuae-cloud-coding-plan":{"api":"https://coding-plan-endpoint.kuaecloud.net/v1","doc":"https://docs.mthreads.com/kuaecloud/kuaecloud-doc-online/coding_plan/","env":["KUAE_API_KEY"],"id":"kuae-cloud-coding-plan","models":{"GLM-4.7":{"attachment":false,"cost":{"cache_read":0,"cache_write":0,"input":0,"output":0},"family":"glm","id":"GLM-4.7","interleaved":{"field":"reasoning_content"},"knowledge":"2025-04","last_updated":"2025-12-22","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4.7","open_weights":true,"reasoning":true,"release_date":"2025-12-22","temperature":true,"tool_call":true}},"name":"KUAE Cloud Coding Plan","npm":"@ai-sdk/openai-compatible"},"lilac":{"api":"https://api.getlilac.com/v1","doc":"https://docs.getlilac.com/inference/models","env":["LILAC_API_KEY"],"id":"lilac","models":{"google/gemma-4-31b-it":{"attachment":true,"cost":{"input":0.11,"output":0.35},"family":"gemma","id":"google/gemma-4-31b-it","interleaved":{"field":"reasoning_content"},"knowledge":"2025-01","last_updated":"2026-04-02","limit":{"context":262100,"output":262100},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Gemma 4 31B IT","open_weights":true,"reasoning":true,"release_date":"2026-04-02","structured_output":true,"temperature":true,"tool_call":true},"minimaxai/minimax-m2.7":{"attachment":false,"cost":{"cache_read":0.055,"input":0.3,"output":1.2},"family":"minimax","id":"minimaxai/minimax-m2.7","interleaved":{"field":"reasoning_content"},"knowledge":"2025-01","last_updated":"2026-03-18","limit":{"context":204800,"output":204800},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax M2.7","open_weights":true,"reasoning":true,"release_date":"2026-03-18","structured_output":true,"temperature":true,"tool_call":true},"moonshotai/kimi-k2.6":{"attachment":true,"cost":{"cache_read":0.2,"input":0.7,"output":3.5},"family":"kimi-k2.6","id":"moonshotai/kimi-k2.6","interleaved":{"field":"reasoning_content"},"knowledge":"2025-01","last_updated":"2026-04-21","limit":{"context":262144,"output":262144},"modalities":{"input":["text","image"],"output":["text"]},"name":"Kimi K2.6","open_weights":true,"reasoning":true,"release_date":"2026-04-21","structured_output":true,"temperature":true,"tool_call":true},"zai-org/glm-5.1":{"attachment":false,"cost":{"cache_read":0.27,"input":0.9,"output":3},"family":"glm","id":"zai-org/glm-5.1","interleaved":{"field":"reasoning_content"},"knowledge":"2025-04","last_updated":"2026-03-27","limit":{"context":202800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 5.1","open_weights":true,"reasoning":true,"release_date":"2026-03-27","structured_output":true,"temperature":true,"tool_call":true}},"name":"Lilac","npm":"@ai-sdk/openai-compatible"},"llama":{"api":"https://api.llama.com/compat/v1/","doc":"https://llama.developer.meta.com/docs/models","env":["LLAMA_API_KEY"],"id":"llama","models":{"cerebras-llama-4-maverick-17b-128e-instruct":{"attachment":true,"cost":{"input":0,"output":0},"family":"llama","id":"cerebras-llama-4-maverick-17b-128e-instruct","knowledge":"2025-01","last_updated":"2025-04-05","limit":{"context":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Cerebras-Llama-4-Maverick-17B-128E-Instruct","open_weights":true,"reasoning":false,"release_date":"2025-04-05","temperature":true,"tool_call":true},"cerebras-llama-4-scout-17b-16e-instruct":{"attachment":true,"cost":{"input":0,"output":0},"family":"llama","id":"cerebras-llama-4-scout-17b-16e-instruct","knowledge":"2025-01","last_updated":"2025-04-05","limit":{"context":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Cerebras-Llama-4-Scout-17B-16E-Instruct","open_weights":true,"reasoning":false,"release_date":"2025-04-05","temperature":true,"tool_call":true},"groq-llama-4-maverick-17b-128e-instruct":{"attachment":true,"cost":{"input":0,"output":0},"family":"llama","id":"groq-llama-4-maverick-17b-128e-instruct","knowledge":"2025-01","last_updated":"2025-04-05","limit":{"context":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Groq-Llama-4-Maverick-17B-128E-Instruct","open_weights":true,"reasoning":false,"release_date":"2025-04-05","temperature":true,"tool_call":true},"llama-3.3-70b-instruct":{"attachment":true,"cost":{"input":0,"output":0},"family":"llama","id":"llama-3.3-70b-instruct","knowledge":"2023-12","last_updated":"2024-12-06","limit":{"context":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Llama-3.3-70B-Instruct","open_weights":true,"reasoning":false,"release_date":"2024-12-06","temperature":true,"tool_call":true},"llama-3.3-8b-instruct":{"attachment":true,"cost":{"input":0,"output":0},"family":"llama","id":"llama-3.3-8b-instruct","knowledge":"2023-12","last_updated":"2024-12-06","limit":{"context":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Llama-3.3-8B-Instruct","open_weights":true,"reasoning":false,"release_date":"2024-12-06","temperature":true,"tool_call":true},"llama-4-maverick-17b-128e-instruct-fp8":{"attachment":true,"cost":{"input":0,"output":0},"family":"llama","id":"llama-4-maverick-17b-128e-instruct-fp8","knowledge":"2024-08","last_updated":"2025-04-05","limit":{"context":128000,"output":4096},"modalities":{"input":["text","image"],"output":["text"]},"name":"Llama-4-Maverick-17B-128E-Instruct-FP8","open_weights":true,"reasoning":false,"release_date":"2025-04-05","temperature":true,"tool_call":true},"llama-4-scout-17b-16e-instruct-fp8":{"attachment":true,"cost":{"input":0,"output":0},"family":"llama","id":"llama-4-scout-17b-16e-instruct-fp8","knowledge":"2024-08","last_updated":"2025-04-05","limit":{"context":128000,"output":4096},"modalities":{"input":["text","image"],"output":["text"]},"name":"Llama-4-Scout-17B-16E-Instruct-FP8","open_weights":true,"reasoning":false,"release_date":"2025-04-05","temperature":true,"tool_call":true}},"name":"Llama","npm":"@ai-sdk/openai-compatible"},"llmgateway":{"api":"https://api.llmgateway.io/v1","doc":"https://llmgateway.io/docs","env":["LLMGATEWAY_API_KEY"],"id":"llmgateway","models":{"auto":{"attachment":true,"cost":{"input":0,"output":0},"family":"auto","id":"auto","last_updated":"2024-01-01","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"Auto Route","open_weights":false,"reasoning":false,"release_date":"2024-01-01","structured_output":true,"temperature":true,"tool_call":true},"claude-3-5-haiku":{"attachment":false,"cost":{"cache_read":0.08,"input":0.8,"output":4},"family":"claude","id":"claude-3-5-haiku","last_updated":"2024-10-22","limit":{"context":200000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Claude 3.5 Haiku","open_weights":false,"reasoning":false,"release_date":"2024-10-22","status":"deprecated","structured_output":false,"temperature":true,"tool_call":true},"claude-3-5-sonnet-20241022":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"input":3,"output":15},"family":"claude-sonnet","id":"claude-3-5-sonnet-20241022","knowledge":"2024-04-30","last_updated":"2024-10-22","limit":{"context":200000,"output":8192},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 3.5 v2","open_weights":false,"reasoning":false,"release_date":"2024-10-22","temperature":true,"tool_call":true},"claude-3-7-sonnet":{"attachment":false,"cost":{"cache_read":0.3,"input":3,"output":15},"family":"claude","id":"claude-3-7-sonnet","last_updated":"2025-02-24","limit":{"context":200000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Claude 3.7 Sonnet","open_weights":false,"reasoning":true,"release_date":"2025-02-24","structured_output":false,"temperature":true,"tool_call":true},"claude-3-7-sonnet-20250219":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"input":3,"output":15},"family":"claude-sonnet","id":"claude-3-7-sonnet-20250219","knowledge":"2024-10-31","last_updated":"2025-02-19","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 3.7","open_weights":false,"reasoning":true,"release_date":"2025-02-19","temperature":true,"tool_call":true},"claude-3-opus":{"attachment":true,"cost":{"cache_read":1.5,"input":15,"output":75},"family":"claude","id":"claude-3-opus","last_updated":"2024-03-04","limit":{"context":200000,"output":4096},"modalities":{"input":["text","image"],"output":["text"]},"name":"Claude 3 Opus","open_weights":false,"reasoning":false,"release_date":"2024-03-04","structured_output":false,"temperature":true,"tool_call":true},"claude-haiku-4-5":{"attachment":true,"cost":{"cache_read":0.1,"cache_write":1.25,"input":1,"output":5},"family":"claude-haiku","id":"claude-haiku-4-5","knowledge":"2025-02-28","last_updated":"2025-10-15","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Haiku 4.5 (latest)","open_weights":false,"reasoning":true,"release_date":"2025-10-15","temperature":true,"tool_call":true},"claude-haiku-4-5-20251001":{"attachment":true,"cost":{"cache_read":0.1,"cache_write":1.25,"input":1,"output":5},"family":"claude-haiku","id":"claude-haiku-4-5-20251001","knowledge":"2025-02-28","last_updated":"2025-10-15","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Haiku 4.5","open_weights":false,"reasoning":true,"release_date":"2025-10-15","temperature":true,"tool_call":true},"claude-opus-4-1-20250805":{"attachment":true,"cost":{"cache_read":1.5,"cache_write":18.75,"input":15,"output":75},"family":"claude-opus","id":"claude-opus-4-1-20250805","knowledge":"2025-03-31","last_updated":"2025-08-05","limit":{"context":200000,"output":32000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.1","open_weights":false,"reasoning":true,"release_date":"2025-08-05","temperature":true,"tool_call":true},"claude-opus-4-20250514":{"attachment":true,"cost":{"cache_read":1.5,"cache_write":18.75,"input":15,"output":75},"family":"claude-opus","id":"claude-opus-4-20250514","knowledge":"2025-03-31","last_updated":"2025-05-22","limit":{"context":200000,"output":32000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4","open_weights":false,"reasoning":true,"release_date":"2025-05-22","temperature":true,"tool_call":true},"claude-opus-4-5-20251101":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"input":5,"output":25},"family":"claude-opus","id":"claude-opus-4-5-20251101","knowledge":"2025-03-31","last_updated":"2025-11-01","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.5","open_weights":false,"reasoning":true,"release_date":"2025-11-01","temperature":true,"tool_call":true},"claude-opus-4-6":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"input":5,"output":25},"family":"claude-opus","id":"claude-opus-4-6","knowledge":"2025-05-31","last_updated":"2026-03-13","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.6","open_weights":false,"reasoning":true,"release_date":"2026-02-05","temperature":true,"tool_call":true},"claude-opus-4-7":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"input":5,"output":25},"family":"claude-opus","id":"claude-opus-4-7","knowledge":"2026-01-31","last_updated":"2026-04-16","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.7","open_weights":false,"reasoning":true,"release_date":"2026-04-16","temperature":false,"tool_call":true},"claude-opus-4-8":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"input":5,"output":25},"family":"claude-opus","id":"claude-opus-4-8","last_updated":"2026-05-28","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.8","open_weights":false,"reasoning":true,"release_date":"2026-05-28","temperature":false,"tool_call":true},"claude-sonnet-4-20250514":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"input":3,"output":15},"family":"claude-sonnet","id":"claude-sonnet-4-20250514","knowledge":"2025-03-31","last_updated":"2025-05-22","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 4","open_weights":false,"reasoning":true,"release_date":"2025-05-22","temperature":true,"tool_call":true},"claude-sonnet-4-5":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"input":3,"output":15},"family":"claude-sonnet","id":"claude-sonnet-4-5","knowledge":"2025-07-31","last_updated":"2025-09-29","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 4.5 (latest)","open_weights":false,"reasoning":true,"release_date":"2025-09-29","temperature":true,"tool_call":true},"claude-sonnet-4-5-20250929":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"input":3,"output":15},"family":"claude-sonnet","id":"claude-sonnet-4-5-20250929","knowledge":"2025-07-31","last_updated":"2025-09-29","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 4.5","open_weights":false,"reasoning":true,"release_date":"2025-09-29","temperature":true,"tool_call":true},"claude-sonnet-4-6":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"input":3,"output":15},"family":"claude-sonnet","id":"claude-sonnet-4-6","knowledge":"2025-08-31","last_updated":"2026-03-13","limit":{"context":1000000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 4.6","open_weights":false,"reasoning":true,"release_date":"2026-02-17","temperature":true,"tool_call":true},"codestral-2508":{"attachment":false,"cost":{"input":0.3,"output":0.9},"family":"mistral","id":"codestral-2508","last_updated":"2025-07-30","limit":{"context":256000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Codestral","open_weights":true,"reasoning":false,"release_date":"2025-07-30","structured_output":true,"temperature":true,"tool_call":false},"custom":{"attachment":true,"cost":{"input":0,"output":0},"family":"auto","id":"custom","last_updated":"2024-01-01","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"Custom Model","open_weights":false,"reasoning":false,"release_date":"2024-01-01","structured_output":true,"temperature":true,"tool_call":true},"deepseek-r1-0528":{"attachment":false,"cost":{"input":0.55,"output":2.19},"family":"deepseek","id":"deepseek-r1-0528","last_updated":"2025-05-28","limit":{"context":64000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek R1 (0528)","open_weights":true,"reasoning":true,"release_date":"2025-05-28","status":"beta","structured_output":false,"temperature":true,"tool_call":false},"deepseek-v3.1":{"attachment":true,"cost":{"cache_read":0.07,"input":0.56,"output":1.68},"family":"deepseek","id":"deepseek-v3.1","last_updated":"2025-08-21","limit":{"context":128000,"output":32768},"modalities":{"input":["text","image"],"output":["text"]},"name":"DeepSeek V3.1","open_weights":true,"reasoning":true,"release_date":"2025-08-21","structured_output":true,"temperature":true,"tool_call":true},"deepseek-v3.2":{"attachment":true,"cost":{"cache_read":0.056,"input":0.28,"output":0.42},"family":"deepseek","id":"deepseek-v3.2","last_updated":"2025-09-29","limit":{"context":163840,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"DeepSeek V3.2","open_weights":true,"reasoning":true,"release_date":"2025-09-29","structured_output":true,"temperature":true,"tool_call":true},"deepseek-v4-flash":{"attachment":false,"cost":{"cache_read":0.0028,"input":0.14,"output":0.28},"family":"deepseek-flash","id":"deepseek-v4-flash","interleaved":{"field":"reasoning_content"},"knowledge":"2025-05","last_updated":"2026-04-24","limit":{"context":1000000,"output":384000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V4 Flash","open_weights":true,"reasoning":true,"release_date":"2026-04-24","structured_output":true,"temperature":true,"tool_call":true},"deepseek-v4-pro":{"attachment":false,"cost":{"cache_read":0.003625,"input":0.435,"output":0.87},"family":"deepseek-thinking","id":"deepseek-v4-pro","interleaved":{"field":"reasoning_content"},"knowledge":"2025-05","last_updated":"2026-04-24","limit":{"context":1000000,"output":384000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V4 Pro","open_weights":true,"reasoning":true,"release_date":"2026-04-24","structured_output":true,"temperature":true,"tool_call":true},"devstral-2512":{"attachment":false,"cost":{"input":0.4,"output":2},"family":"devstral","id":"devstral-2512","knowledge":"2025-12","last_updated":"2025-12-09","limit":{"context":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Devstral 2","open_weights":true,"reasoning":false,"release_date":"2025-12-09","status":"deprecated","temperature":true,"tool_call":true},"devstral-small-2507":{"attachment":false,"cost":{"input":0.1,"output":0.3},"family":"devstral","id":"devstral-small-2507","knowledge":"2025-05","last_updated":"2025-07-10","limit":{"context":128000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"Devstral Small","open_weights":true,"reasoning":false,"release_date":"2025-07-10","status":"deprecated","temperature":true,"tool_call":true},"gemini-2.0-flash":{"attachment":true,"cost":{"cache_read":0.025,"input":0.1,"output":0.4},"family":"gemini-flash","id":"gemini-2.0-flash","knowledge":"2024-06","last_updated":"2024-12-11","limit":{"context":1048576,"output":8192},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"Gemini 2.0 Flash","open_weights":false,"reasoning":false,"release_date":"2024-12-11","structured_output":true,"temperature":true,"tool_call":true},"gemini-2.0-flash-lite":{"attachment":true,"cost":{"input":0.075,"output":0.3},"family":"gemini-flash-lite","id":"gemini-2.0-flash-lite","knowledge":"2024-06","last_updated":"2024-12-11","limit":{"context":1048576,"output":8192},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"Gemini 2.0 Flash-Lite","open_weights":false,"reasoning":false,"release_date":"2024-12-11","structured_output":true,"temperature":true,"tool_call":true},"gemini-2.5-flash":{"attachment":true,"cost":{"cache_read":0.03,"input":0.3,"input_audio":1,"output":2.5},"family":"gemini-flash","id":"gemini-2.5-flash","knowledge":"2025-01","last_updated":"2025-06-05","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"Gemini 2.5 Flash","open_weights":false,"reasoning":true,"release_date":"2025-03-20","structured_output":true,"temperature":true,"tool_call":true},"gemini-2.5-flash-lite":{"attachment":true,"cost":{"cache_read":0.01,"input":0.1,"input_audio":0.3,"output":0.4},"family":"gemini-flash-lite","id":"gemini-2.5-flash-lite","knowledge":"2025-01","last_updated":"2025-06-17","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"Gemini 2.5 Flash-Lite","open_weights":false,"reasoning":true,"release_date":"2025-06-17","structured_output":true,"temperature":true,"tool_call":true},"gemini-2.5-pro":{"attachment":true,"cost":{"cache_read":0.125,"context_over_200k":{"cache_read":0.25,"input":2.5,"output":15},"input":1.25,"output":10,"tiers":[{"cache_read":0.25,"input":2.5,"output":15,"tier":{"size":200000,"type":"context"}}]},"family":"gemini-pro","id":"gemini-2.5-pro","knowledge":"2025-01","last_updated":"2025-06-05","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"Gemini 2.5 Pro","open_weights":false,"reasoning":true,"release_date":"2025-03-20","structured_output":true,"temperature":true,"tool_call":true},"gemini-3-flash-preview":{"attachment":true,"cost":{"cache_read":0.05,"input":0.5,"input_audio":1,"output":3},"family":"gemini-flash","id":"gemini-3-flash-preview","knowledge":"2025-01","last_updated":"2025-12-17","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"name":"Gemini 3 Flash Preview","open_weights":false,"reasoning":true,"release_date":"2025-12-17","structured_output":true,"temperature":true,"tool_call":true},"gemini-3.1-flash-lite":{"attachment":true,"cost":{"cache_read":0.025,"input":0.25,"input_audio":0.5,"output":1.5},"family":"gemini-flash-lite","id":"gemini-3.1-flash-lite","knowledge":"2025-01","last_updated":"2026-05-07","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"name":"Gemini 3.1 Flash Lite","open_weights":false,"reasoning":true,"release_date":"2026-05-07","structured_output":true,"temperature":true,"tool_call":true},"gemini-3.1-flash-lite-preview":{"attachment":true,"cost":{"cache_read":0.025,"input":0.25,"input_audio":0.5,"output":1.5},"family":"gemini-flash-lite","id":"gemini-3.1-flash-lite-preview","knowledge":"2025-01","last_updated":"2026-03-03","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"name":"Gemini 3.1 Flash Lite Preview","open_weights":false,"reasoning":true,"release_date":"2026-03-03","structured_output":true,"temperature":true,"tool_call":true},"gemini-3.1-pro-preview":{"attachment":true,"cost":{"cache_read":0.2,"context_over_200k":{"cache_read":0.4,"input":4,"output":18},"input":2,"output":12,"tiers":[{"cache_read":0.4,"input":4,"output":18,"tier":{"size":200000,"type":"context"}}]},"family":"gemini-pro","id":"gemini-3.1-pro-preview","knowledge":"2025-01","last_updated":"2026-02-19","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"name":"Gemini 3.1 Pro Preview","open_weights":false,"reasoning":true,"release_date":"2026-02-19","structured_output":true,"temperature":true,"tool_call":true},"gemini-3.5-flash":{"attachment":true,"cost":{"cache_read":0.15,"input":1.5,"input_audio":1.5,"output":9},"family":"gemini-flash","id":"gemini-3.5-flash","knowledge":"2025-01","last_updated":"2026-05-19","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"name":"Gemini 3.5 Flash","open_weights":false,"reasoning":true,"release_date":"2026-05-19","structured_output":true,"temperature":true,"tool_call":true},"gemini-pro-latest":{"attachment":true,"cost":{"cache_read":0.2,"input":2,"output":12},"family":"gemini","id":"gemini-pro-latest","last_updated":"2026-02-27","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image"],"output":["text"]},"name":"Gemini Pro Latest","open_weights":false,"reasoning":true,"release_date":"2026-02-27","structured_output":true,"temperature":true,"tool_call":true},"gemma-2-27b-it-together":{"attachment":false,"cost":{"input":0.08,"output":0.08},"family":"gemma","id":"gemma-2-27b-it-together","last_updated":"2024-06-27","limit":{"context":8192,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Gemma 2 27B IT","open_weights":true,"reasoning":false,"release_date":"2024-06-27","structured_output":false,"temperature":true,"tool_call":false},"gemma-3-1b-it":{"attachment":false,"cost":{"input":0.08,"output":0.3},"family":"gemma","id":"gemma-3-1b-it","last_updated":"2025-03-12","limit":{"context":1000000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Gemma 3 1B IT","open_weights":true,"reasoning":false,"release_date":"2025-03-12","structured_output":false,"temperature":true,"tool_call":false},"gemma-3-27b":{"attachment":true,"cost":{"input":0.27,"output":0.27},"family":"gemma","id":"gemma-3-27b","last_updated":"2025-03-12","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"Gemma 3 27B","open_weights":true,"reasoning":false,"release_date":"2025-03-12","structured_output":false,"temperature":true,"tool_call":false},"glm-4-32b-0414-128k":{"attachment":false,"cost":{"input":0.1,"output":0.1},"family":"glm","id":"glm-4-32b-0414-128k","last_updated":"2025-04-14","limit":{"context":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4 32B (0414-128k)","open_weights":false,"reasoning":false,"release_date":"2025-04-14","structured_output":true,"temperature":true,"tool_call":true},"glm-4.5":{"attachment":false,"cost":{"cache_read":0.11,"cache_write":0,"input":0.6,"output":2.2},"family":"glm","id":"glm-4.5","knowledge":"2025-04","last_updated":"2025-07-28","limit":{"context":131072,"output":98304},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4.5","open_weights":true,"reasoning":true,"release_date":"2025-07-28","temperature":true,"tool_call":true},"glm-4.5-air":{"attachment":false,"cost":{"cache_read":0.03,"cache_write":0,"input":0.2,"output":1.1},"family":"glm-air","id":"glm-4.5-air","knowledge":"2025-04","last_updated":"2025-07-28","limit":{"context":131072,"output":98304},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4.5-Air","open_weights":true,"reasoning":true,"release_date":"2025-07-28","temperature":true,"tool_call":true},"glm-4.5-airx":{"attachment":false,"cost":{"cache_read":0.22,"input":1.1,"output":4.5},"family":"glm","id":"glm-4.5-airx","last_updated":"2025-07-28","limit":{"context":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4.5 AirX","open_weights":false,"reasoning":false,"release_date":"2025-07-28","structured_output":true,"temperature":true,"tool_call":true},"glm-4.5-flash":{"attachment":false,"cost":{"cache_read":0,"cache_write":0,"input":0,"output":0},"family":"glm-flash","id":"glm-4.5-flash","knowledge":"2025-04","last_updated":"2025-07-28","limit":{"context":131072,"output":98304},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4.5-Flash","open_weights":true,"reasoning":true,"release_date":"2025-07-28","temperature":true,"tool_call":true},"glm-4.5-x":{"attachment":false,"cost":{"cache_read":0.45,"input":2.2,"output":8.9},"family":"glm","id":"glm-4.5-x","last_updated":"2025-07-28","limit":{"context":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4.5 X","open_weights":false,"reasoning":true,"release_date":"2025-07-28","status":"beta","structured_output":true,"temperature":true,"tool_call":true},"glm-4.5v":{"attachment":true,"cost":{"input":0.6,"output":1.8},"family":"glm","id":"glm-4.5v","knowledge":"2025-04","last_updated":"2025-08-11","limit":{"context":64000,"output":16384},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"GLM-4.5V","open_weights":true,"reasoning":true,"release_date":"2025-08-11","temperature":true,"tool_call":true},"glm-4.6":{"attachment":false,"cost":{"cache_read":0.11,"cache_write":0,"input":0.6,"output":2.2},"family":"glm","id":"glm-4.6","knowledge":"2025-04","last_updated":"2025-09-30","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4.6","open_weights":true,"reasoning":true,"release_date":"2025-09-30","temperature":true,"tool_call":true},"glm-4.6v":{"attachment":true,"cost":{"input":0.3,"output":0.9},"family":"glm","id":"glm-4.6v","knowledge":"2025-04","last_updated":"2025-12-08","limit":{"context":128000,"output":32768},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"GLM-4.6V","open_weights":true,"reasoning":true,"release_date":"2025-12-08","temperature":true,"tool_call":true},"glm-4.6v-flash":{"attachment":true,"cost":{"input":0,"output":0},"family":"glm","id":"glm-4.6v-flash","last_updated":"2025-12-08","limit":{"context":128000,"output":16000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GLM-4.6V Flash","open_weights":true,"reasoning":true,"release_date":"2025-12-08","status":"beta","structured_output":true,"temperature":true,"tool_call":true},"glm-4.6v-flashx":{"attachment":true,"cost":{"cache_read":0.004,"input":0.04,"output":0.4},"family":"glm","id":"glm-4.6v-flashx","last_updated":"2025-12-08","limit":{"context":128000,"output":16000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GLM-4.6V FlashX","open_weights":false,"reasoning":true,"release_date":"2025-12-08","structured_output":true,"temperature":true,"tool_call":true},"glm-4.7":{"attachment":false,"cost":{"cache_read":0.11,"cache_write":0,"input":0.6,"output":2.2},"family":"glm","id":"glm-4.7","interleaved":{"field":"reasoning_content"},"knowledge":"2025-04","last_updated":"2025-12-22","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4.7","open_weights":true,"reasoning":true,"release_date":"2025-12-22","temperature":true,"tool_call":true},"glm-4.7-flash":{"attachment":false,"cost":{"cache_read":0,"cache_write":0,"input":0,"output":0},"family":"glm-flash","id":"glm-4.7-flash","knowledge":"2025-04","last_updated":"2026-01-19","limit":{"context":200000,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4.7-Flash","open_weights":true,"reasoning":true,"release_date":"2026-01-19","temperature":true,"tool_call":true},"glm-4.7-flashx":{"attachment":false,"cost":{"cache_read":0.01,"cache_write":0,"input":0.07,"output":0.4},"family":"glm-flash","id":"glm-4.7-flashx","knowledge":"2025-04","last_updated":"2026-01-19","limit":{"context":200000,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4.7-FlashX","open_weights":true,"reasoning":true,"release_date":"2026-01-19","temperature":true,"tool_call":true},"glm-5":{"attachment":false,"cost":{"cache_read":0.2,"cache_write":0,"input":1,"output":3.2},"family":"glm","id":"glm-5","interleaved":{"field":"reasoning_content"},"last_updated":"2026-02-11","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-5","open_weights":true,"reasoning":true,"release_date":"2026-02-11","temperature":true,"tool_call":true},"glm-5.1":{"attachment":false,"cost":{"cache_read":1.3,"cache_write":0,"input":6,"output":24},"family":"glm","id":"glm-5.1","interleaved":{"field":"reasoning_content"},"last_updated":"2026-03-27","limit":{"context":200000,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-5.1","open_weights":false,"reasoning":true,"release_date":"2026-03-27","structured_output":true,"temperature":true,"tool_call":true},"gpt-3.5-turbo":{"attachment":false,"cost":{"cache_read":0,"input":0.5,"output":1.5},"family":"gpt","id":"gpt-3.5-turbo","knowledge":"2021-09-01","last_updated":"2023-11-06","limit":{"context":16385,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"GPT-3.5-turbo","open_weights":false,"reasoning":false,"release_date":"2023-03-01","structured_output":false,"temperature":true,"tool_call":false},"gpt-4":{"attachment":true,"cost":{"input":30,"output":60},"family":"gpt","id":"gpt-4","knowledge":"2023-11","last_updated":"2024-04-09","limit":{"context":8192,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"GPT-4","open_weights":false,"reasoning":false,"release_date":"2023-11-06","structured_output":false,"temperature":true,"tool_call":true},"gpt-4-turbo":{"attachment":true,"cost":{"input":10,"output":30},"family":"gpt","id":"gpt-4-turbo","knowledge":"2023-12","last_updated":"2024-04-09","limit":{"context":128000,"output":4096},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-4 Turbo","open_weights":false,"reasoning":false,"release_date":"2023-11-06","structured_output":false,"temperature":true,"tool_call":true},"gpt-4.1":{"attachment":true,"cost":{"cache_read":0.5,"input":2,"output":8},"family":"gpt","id":"gpt-4.1","knowledge":"2024-04","last_updated":"2025-04-14","limit":{"context":1047576,"output":32768},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-4.1","open_weights":false,"reasoning":false,"release_date":"2025-04-14","structured_output":true,"temperature":true,"tool_call":true},"gpt-4.1-mini":{"attachment":true,"cost":{"cache_read":0.1,"input":0.4,"output":1.6},"family":"gpt-mini","id":"gpt-4.1-mini","knowledge":"2024-04","last_updated":"2025-04-14","limit":{"context":1047576,"output":32768},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-4.1 mini","open_weights":false,"reasoning":false,"release_date":"2025-04-14","structured_output":true,"temperature":true,"tool_call":true},"gpt-4.1-nano":{"attachment":true,"cost":{"cache_read":0.025,"input":0.1,"output":0.4},"family":"gpt-nano","id":"gpt-4.1-nano","knowledge":"2024-04","last_updated":"2025-04-14","limit":{"context":1047576,"output":32768},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-4.1 nano","open_weights":false,"reasoning":false,"release_date":"2025-04-14","structured_output":true,"temperature":true,"tool_call":true},"gpt-4o":{"attachment":true,"cost":{"cache_read":1.25,"input":2.5,"output":10},"family":"gpt","id":"gpt-4o","knowledge":"2023-09","last_updated":"2024-08-06","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-4o","open_weights":false,"reasoning":false,"release_date":"2024-05-13","structured_output":true,"temperature":true,"tool_call":true},"gpt-4o-mini":{"attachment":true,"cost":{"cache_read":0.075,"input":0.15,"output":0.6},"family":"gpt-mini","id":"gpt-4o-mini","knowledge":"2023-09","last_updated":"2024-07-18","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-4o mini","open_weights":false,"reasoning":false,"release_date":"2024-07-18","structured_output":true,"temperature":true,"tool_call":true},"gpt-4o-mini-search-preview":{"attachment":true,"cost":{"input":0.15,"output":0.6},"family":"gpt","id":"gpt-4o-mini-search-preview","last_updated":"2024-10-01","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-4o Mini Search Preview","open_weights":false,"reasoning":false,"release_date":"2024-10-01","structured_output":false,"temperature":true,"tool_call":false},"gpt-4o-search-preview":{"attachment":true,"cost":{"input":2.5,"output":10},"family":"gpt","id":"gpt-4o-search-preview","last_updated":"2024-10-01","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-4o Search Preview","open_weights":false,"reasoning":false,"release_date":"2024-10-01","structured_output":false,"temperature":true,"tool_call":false},"gpt-5":{"attachment":true,"cost":{"cache_read":0.125,"input":1.25,"output":10},"family":"gpt","id":"gpt-5","knowledge":"2024-09-30","last_updated":"2025-08-07","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5","open_weights":false,"reasoning":true,"release_date":"2025-08-07","structured_output":true,"temperature":false,"tool_call":true},"gpt-5-chat-latest":{"attachment":true,"cost":{"cache_read":0.125,"input":1.25,"output":10},"family":"gpt-codex","id":"gpt-5-chat-latest","knowledge":"2024-09-30","last_updated":"2025-08-07","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5 Chat (latest)","open_weights":false,"reasoning":true,"release_date":"2025-08-07","structured_output":true,"temperature":true,"tool_call":false},"gpt-5-mini":{"attachment":true,"cost":{"cache_read":0.025,"input":0.25,"output":2},"family":"gpt-mini","id":"gpt-5-mini","knowledge":"2024-05-30","last_updated":"2025-08-07","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5 Mini","open_weights":false,"reasoning":true,"release_date":"2025-08-07","structured_output":true,"temperature":false,"tool_call":true},"gpt-5-nano":{"attachment":true,"cost":{"cache_read":0.005,"input":0.05,"output":0.4},"family":"gpt-nano","id":"gpt-5-nano","knowledge":"2024-05-30","last_updated":"2025-08-07","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5 Nano","open_weights":false,"reasoning":true,"release_date":"2025-08-07","structured_output":true,"temperature":false,"tool_call":true},"gpt-5-pro":{"attachment":true,"cost":{"input":15,"output":120},"family":"gpt-pro","id":"gpt-5-pro","knowledge":"2024-09-30","last_updated":"2025-10-06","limit":{"context":400000,"input":272000,"output":272000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5 Pro","open_weights":false,"reasoning":true,"release_date":"2025-10-06","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.1":{"attachment":true,"cost":{"cache_read":0.125,"input":1.25,"output":10},"family":"gpt","id":"gpt-5.1","knowledge":"2024-09-30","last_updated":"2025-11-13","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.1","open_weights":false,"reasoning":true,"release_date":"2025-11-13","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.1-codex":{"attachment":true,"cost":{"cache_read":0.125,"input":1.25,"output":10},"family":"gpt-codex","id":"gpt-5.1-codex","knowledge":"2024-09-30","last_updated":"2025-11-13","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.1 Codex","open_weights":false,"reasoning":true,"release_date":"2025-11-13","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.1-codex-mini":{"attachment":true,"cost":{"cache_read":0.025,"input":0.25,"output":2},"family":"gpt-codex","id":"gpt-5.1-codex-mini","knowledge":"2024-09-30","last_updated":"2025-11-13","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.1 Codex mini","open_weights":false,"reasoning":true,"release_date":"2025-11-13","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.2":{"attachment":true,"cost":{"cache_read":0.175,"input":1.75,"output":14},"family":"gpt","id":"gpt-5.2","knowledge":"2025-08-31","last_updated":"2025-12-11","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.2","open_weights":false,"reasoning":true,"release_date":"2025-12-11","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.2-chat-latest":{"attachment":true,"cost":{"cache_read":0.175,"input":1.75,"output":14},"family":"gpt-codex","id":"gpt-5.2-chat-latest","knowledge":"2025-08-31","last_updated":"2025-12-11","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.2 Chat","open_weights":false,"reasoning":true,"release_date":"2025-12-11","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.2-codex":{"attachment":true,"cost":{"cache_read":0.175,"input":1.75,"output":14},"family":"gpt-codex","id":"gpt-5.2-codex","knowledge":"2025-08-31","last_updated":"2025-12-11","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5.2 Codex","open_weights":false,"reasoning":true,"release_date":"2025-12-11","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.2-pro":{"attachment":true,"cost":{"input":21,"output":168},"family":"gpt-pro","id":"gpt-5.2-pro","knowledge":"2025-08-31","last_updated":"2025-12-11","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.2 Pro","open_weights":false,"reasoning":true,"release_date":"2025-12-11","structured_output":false,"temperature":false,"tool_call":true},"gpt-5.3-chat-latest":{"attachment":true,"cost":{"cache_read":0.175,"input":1.75,"output":14},"family":"gpt","id":"gpt-5.3-chat-latest","knowledge":"2025-08-31","last_updated":"2026-03-03","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.3 Chat (latest)","open_weights":false,"reasoning":false,"release_date":"2026-03-03","structured_output":true,"temperature":true,"tool_call":true},"gpt-5.3-codex":{"attachment":true,"cost":{"cache_read":0.175,"input":1.75,"output":14},"family":"gpt-codex","id":"gpt-5.3-codex","knowledge":"2025-08-31","last_updated":"2026-02-05","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5.3 Codex","open_weights":false,"reasoning":true,"release_date":"2026-02-05","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.4":{"attachment":true,"cost":{"cache_read":0.25,"input":2.5,"output":15},"family":"gpt","id":"gpt-5.4","knowledge":"2025-08-31","last_updated":"2026-03-05","limit":{"context":1050000,"input":922000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5.4","open_weights":false,"reasoning":true,"release_date":"2026-03-05","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.4-mini":{"attachment":true,"cost":{"cache_read":0.075,"input":0.75,"output":4.5},"family":"gpt-mini","id":"gpt-5.4-mini","knowledge":"2025-08-31","last_updated":"2026-03-17","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.4 mini","open_weights":false,"reasoning":true,"release_date":"2026-03-17","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.4-nano":{"attachment":true,"cost":{"cache_read":0.02,"input":0.2,"output":1.25},"family":"gpt-nano","id":"gpt-5.4-nano","knowledge":"2025-08-31","last_updated":"2026-03-17","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.4 nano","open_weights":false,"reasoning":true,"release_date":"2026-03-17","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.4-pro":{"attachment":true,"cost":{"input":30,"output":180},"family":"gpt-pro","id":"gpt-5.4-pro","knowledge":"2025-08-31","last_updated":"2026-03-05","limit":{"context":1050000,"input":922000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.4 Pro","open_weights":false,"reasoning":true,"release_date":"2026-03-05","structured_output":false,"temperature":false,"tool_call":true},"gpt-5.5":{"attachment":true,"cost":{"cache_read":0.5,"context_over_200k":{"cache_read":1,"input":10,"output":45},"input":5,"output":30,"tiers":[{"cache_read":1,"input":10,"output":45,"tier":{"size":272000,"type":"context"}}]},"experimental":{"modes":{"fast":{"cost":{"cache_read":1.25,"input":12.5,"output":75},"provider":{"body":{"service_tier":"priority"}}}}},"family":"gpt","id":"gpt-5.5","knowledge":"2025-12-01","last_updated":"2026-04-23","limit":{"context":1050000,"input":922000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5.5","open_weights":false,"reasoning":true,"release_date":"2026-04-23","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.5-pro":{"attachment":true,"cost":{"context_over_200k":{"input":60,"output":270},"input":30,"output":180,"tiers":[{"input":60,"output":270,"tier":{"size":272000,"type":"context"}}]},"family":"gpt-pro","id":"gpt-5.5-pro","knowledge":"2025-12-01","last_updated":"2026-04-23","limit":{"context":1050000,"input":922000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5.5 Pro","open_weights":false,"reasoning":true,"release_date":"2026-04-23","structured_output":true,"temperature":false,"tool_call":true},"gpt-oss-120b":{"attachment":false,"cost":{"input":0.05,"output":0.25},"family":"gpt-oss","id":"gpt-oss-120b","last_updated":"2025-08-05","limit":{"context":131072,"output":32766},"modalities":{"input":["text"],"output":["text"]},"name":"GPT OSS 120B","open_weights":false,"reasoning":true,"release_date":"2025-08-05","structured_output":true,"temperature":true,"tool_call":true},"gpt-oss-20b":{"attachment":false,"cost":{"input":0.04,"output":0.15},"family":"gpt-oss","id":"gpt-oss-20b","last_updated":"2025-08-05","limit":{"context":131072,"output":32766},"modalities":{"input":["text"],"output":["text"]},"name":"GPT OSS 20B","open_weights":false,"reasoning":true,"release_date":"2025-08-05","structured_output":true,"temperature":true,"tool_call":true},"grok-4-0709":{"attachment":false,"cost":{"input":3,"output":15},"family":"grok","id":"grok-4-0709","last_updated":"2025-07-09","limit":{"context":256000,"output":256000},"modalities":{"input":["text"],"output":["text"]},"name":"Grok 4 (0709)","open_weights":false,"reasoning":false,"release_date":"2025-07-09","structured_output":true,"temperature":true,"tool_call":true},"grok-4-1-fast-reasoning":{"attachment":true,"cost":{"cache_read":0.05,"input":0.2,"output":0.5},"family":"grok","id":"grok-4-1-fast-reasoning","last_updated":"2025-11-19","limit":{"context":2000000,"output":30000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Grok 4.1 Fast Reasoning","open_weights":false,"reasoning":true,"release_date":"2025-11-19","structured_output":true,"temperature":true,"tool_call":true},"grok-4-20-beta-0309-non-reasoning":{"attachment":true,"cost":{"cache_read":0.2,"context_over_200k":{"cache_read":0.4,"input":2.5,"output":5},"input":1.25,"output":2.5,"tiers":[{"cache_read":0.4,"input":2.5,"output":5,"tier":{"size":200000,"type":"context"}}]},"family":"grok","id":"grok-4-20-beta-0309-non-reasoning","last_updated":"2026-03-09","limit":{"context":2000000,"output":30000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Grok 4.20 (Non-Reasoning)","open_weights":false,"reasoning":false,"release_date":"2026-03-09","temperature":true,"tool_call":true},"grok-4-20-beta-0309-reasoning":{"attachment":true,"cost":{"cache_read":0.2,"context_over_200k":{"cache_read":0.4,"input":2.5,"output":5},"input":1.25,"output":2.5,"tiers":[{"cache_read":0.4,"input":2.5,"output":5,"tier":{"size":200000,"type":"context"}}]},"family":"grok","id":"grok-4-20-beta-0309-reasoning","last_updated":"2026-03-09","limit":{"context":2000000,"output":30000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Grok 4.20 (Reasoning)","open_weights":false,"reasoning":true,"release_date":"2026-03-09","temperature":true,"tool_call":true},"grok-4-20-non-reasoning":{"attachment":true,"cost":{"cache_read":0.2,"context_over_200k":{"cache_read":0.4,"input":2.5,"output":5},"input":1.25,"output":2.5,"tiers":[{"cache_read":0.4,"input":2.5,"output":5,"tier":{"size":200000,"type":"context"}}]},"family":"grok","id":"grok-4-20-non-reasoning","last_updated":"2026-03-09","limit":{"context":2000000,"output":30000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Grok 4.20 (Non-Reasoning)","open_weights":false,"reasoning":false,"release_date":"2026-03-09","temperature":true,"tool_call":true},"grok-4-20-reasoning":{"attachment":true,"cost":{"cache_read":0.2,"context_over_200k":{"cache_read":0.4,"input":2.5,"output":5},"input":1.25,"output":2.5,"tiers":[{"cache_read":0.4,"input":2.5,"output":5,"tier":{"size":200000,"type":"context"}}]},"family":"grok","id":"grok-4-20-reasoning","last_updated":"2026-03-09","limit":{"context":2000000,"output":30000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Grok 4.20 (Reasoning)","open_weights":false,"reasoning":true,"release_date":"2026-03-09","temperature":true,"tool_call":true},"grok-4-3":{"attachment":true,"cost":{"cache_read":0.2,"context_over_200k":{"cache_read":0.4,"input":2.5,"output":5},"input":1.25,"output":2.5,"tiers":[{"cache_read":0.4,"input":2.5,"output":5,"tier":{"size":200000,"type":"context"}}]},"family":"grok","id":"grok-4-3","last_updated":"2026-04-17","limit":{"context":1000000,"output":30000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Grok 4.3","open_weights":false,"reasoning":true,"release_date":"2026-04-17","temperature":true,"tool_call":true},"grok-4-fast-reasoning":{"attachment":true,"cost":{"cache_read":0.05,"input":0.2,"output":0.5},"family":"grok","id":"grok-4-fast-reasoning","last_updated":"2025-07-09","limit":{"context":2000000,"output":30000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Grok 4 Fast Reasoning","open_weights":false,"reasoning":true,"release_date":"2025-07-09","structured_output":true,"temperature":true,"tool_call":true},"hermes-2-pro-llama-3-8b":{"attachment":false,"cost":{"input":0.14,"output":0.14},"family":"hermes","id":"hermes-2-pro-llama-3-8b","last_updated":"2024-05-27","limit":{"context":8192,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Hermes 2 Pro Llama 3 8B","open_weights":true,"reasoning":false,"release_date":"2024-05-27","structured_output":false,"temperature":true,"tool_call":false},"kimi-k2":{"attachment":false,"cost":{"cache_read":0.12,"input":0.6,"output":2.5},"family":"kimi","id":"kimi-k2","last_updated":"2025-07-11","limit":{"context":131072,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Kimi K2","open_weights":true,"reasoning":false,"release_date":"2025-07-11","structured_output":true,"temperature":true,"tool_call":true},"kimi-k2-thinking":{"attachment":false,"cost":{"cache_read":0.15,"input":0.6,"output":2.5},"family":"kimi-thinking","id":"kimi-k2-thinking","interleaved":{"field":"reasoning_content"},"knowledge":"2024-08","last_updated":"2025-11-06","limit":{"context":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Kimi K2 Thinking","open_weights":true,"reasoning":true,"release_date":"2025-11-06","temperature":true,"tool_call":true},"kimi-k2-thinking-turbo":{"attachment":false,"cost":{"cache_read":0.15,"input":1.15,"output":8},"family":"kimi-thinking","id":"kimi-k2-thinking-turbo","interleaved":{"field":"reasoning_content"},"knowledge":"2024-08","last_updated":"2025-11-06","limit":{"context":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Kimi K2 Thinking Turbo","open_weights":true,"reasoning":true,"release_date":"2025-11-06","temperature":true,"tool_call":true},"kimi-k2.5":{"attachment":false,"cost":{"cache_read":0.1,"input":0.6,"output":3},"family":"kimi-k2.5","id":"kimi-k2.5","interleaved":{"field":"reasoning_content"},"knowledge":"2025-01","last_updated":"2026-01","limit":{"context":262144,"output":262144},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Kimi K2.5","open_weights":true,"reasoning":true,"release_date":"2026-01","structured_output":true,"temperature":false,"tool_call":true},"kimi-k2.6":{"attachment":true,"cost":{"cache_read":0.16,"input":0.95,"output":4},"family":"kimi-k2.6","id":"kimi-k2.6","interleaved":{"field":"reasoning_content"},"knowledge":"2025-01","last_updated":"2026-04-21","limit":{"context":262144,"output":262144},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Kimi K2.6","open_weights":true,"reasoning":true,"release_date":"2026-04-21","structured_output":true,"temperature":true,"tool_call":true},"llama-3-70b-instruct":{"attachment":false,"cost":{"input":0.51,"output":0.74},"family":"llama","id":"llama-3-70b-instruct","last_updated":"2024-04-18","limit":{"context":8192,"output":8000},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3 70B Instruct","open_weights":true,"reasoning":false,"release_date":"2024-04-18","structured_output":true,"temperature":true,"tool_call":false},"llama-3-8b-instruct":{"attachment":false,"cost":{"input":0.04,"output":0.04},"family":"llama","id":"llama-3-8b-instruct","last_updated":"2025-04-03","limit":{"context":8192,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3 8B Instruct","open_weights":true,"reasoning":false,"release_date":"2025-04-03","structured_output":true,"temperature":true,"tool_call":false},"llama-3.1-70b-instruct":{"attachment":false,"cost":{"input":0.72,"output":0.72},"family":"llama","id":"llama-3.1-70b-instruct","last_updated":"2024-07-23","limit":{"context":128000,"output":2048},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.1 70B Instruct","open_weights":true,"reasoning":false,"release_date":"2024-07-23","status":"beta","structured_output":false,"temperature":true,"tool_call":false},"llama-3.1-8b-instruct":{"attachment":false,"cost":{"input":0.22,"output":0.22},"family":"llama","id":"llama-3.1-8b-instruct","last_updated":"2024-07-23","limit":{"context":128000,"output":2048},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.1 8B Instruct","open_weights":true,"reasoning":false,"release_date":"2024-07-23","status":"beta","structured_output":true,"temperature":true,"tool_call":true},"llama-3.1-nemotron-ultra-253b":{"attachment":false,"cost":{"input":0.6,"output":1.8},"family":"llama","id":"llama-3.1-nemotron-ultra-253b","last_updated":"2025-04-07","limit":{"context":128000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.1 Nemotron Ultra 253B","open_weights":true,"reasoning":false,"release_date":"2025-04-07","structured_output":true,"temperature":true,"tool_call":false},"llama-3.2-11b-instruct":{"attachment":false,"cost":{"input":0.07,"output":0.33},"family":"llama","id":"llama-3.2-11b-instruct","last_updated":"2024-09-25","limit":{"context":128000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.2 11B Instruct","open_weights":true,"reasoning":false,"release_date":"2024-09-25","structured_output":true,"temperature":true,"tool_call":false},"llama-3.2-3b-instruct":{"attachment":false,"cost":{"input":0.03,"output":0.05},"family":"llama","id":"llama-3.2-3b-instruct","last_updated":"2024-09-18","limit":{"context":32768,"output":32000},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.2 3B Instruct","open_weights":true,"reasoning":false,"release_date":"2024-09-18","structured_output":true,"temperature":true,"tool_call":false},"llama-3.3-70b-instruct":{"attachment":true,"cost":{"input":0,"output":0},"family":"llama","id":"llama-3.3-70b-instruct","knowledge":"2023-12","last_updated":"2024-12-06","limit":{"context":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Llama-3.3-70B-Instruct","open_weights":true,"reasoning":false,"release_date":"2024-12-06","temperature":true,"tool_call":true},"llama-4-maverick-17b-instruct":{"attachment":true,"cost":{"input":0.24,"output":0.97},"family":"llama","id":"llama-4-maverick-17b-instruct","last_updated":"2025-04-05","limit":{"context":8192,"output":2048},"modalities":{"input":["text","image"],"output":["text"]},"name":"Llama 4 Maverick 17B Instruct","open_weights":true,"reasoning":false,"release_date":"2025-04-05","structured_output":false,"temperature":true,"tool_call":false},"llama-4-scout":{"attachment":false,"cost":{"input":0.18,"output":0.59},"family":"llama","id":"llama-4-scout","last_updated":"2025-04-05","limit":{"context":32768,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 4 Scout","open_weights":true,"reasoning":false,"release_date":"2025-04-05","status":"beta","structured_output":false,"temperature":true,"tool_call":true},"llama-4-scout-17b-instruct":{"attachment":true,"cost":{"input":0.17,"output":0.66},"family":"llama","id":"llama-4-scout-17b-instruct","last_updated":"2025-04-05","limit":{"context":8192,"output":2048},"modalities":{"input":["text","image"],"output":["text"]},"name":"Llama 4 Scout 17B Instruct","open_weights":true,"reasoning":false,"release_date":"2025-04-05","structured_output":false,"temperature":true,"tool_call":false},"mimo-v2-flash":{"attachment":false,"cost":{"cache_read":0.01,"input":0.1,"output":0.3},"family":"mimo","id":"mimo-v2-flash","interleaved":{"field":"reasoning_content"},"knowledge":"2024-12-01","last_updated":"2026-02-04","limit":{"context":262144,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"MiMo-V2-Flash","open_weights":true,"reasoning":true,"release_date":"2025-12-16","temperature":true,"tool_call":true},"mimo-v2-omni":{"attachment":true,"cost":{"cache_read":0.08,"input":0.4,"output":2},"family":"mimo","id":"mimo-v2-omni","interleaved":{"field":"reasoning_content"},"knowledge":"2024-12","last_updated":"2026-03-18","limit":{"context":262144,"output":131072},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"MiMo-V2-Omni","open_weights":false,"reasoning":true,"release_date":"2026-03-18","temperature":true,"tool_call":true},"mimo-v2-pro":{"attachment":false,"cost":{"cache_read":0.2,"context_over_200k":{"cache_read":0.4,"input":2,"output":6},"input":1,"output":3,"tiers":[{"cache_read":0.4,"input":2,"output":6,"tier":{"size":256000,"type":"context"}}]},"family":"mimo","id":"mimo-v2-pro","interleaved":{"field":"reasoning_content"},"knowledge":"2024-12","last_updated":"2026-03-18","limit":{"context":1048576,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiMo-V2-Pro","open_weights":false,"reasoning":true,"release_date":"2026-03-18","temperature":true,"tool_call":true},"mimo-v2.5":{"attachment":true,"cost":{"cache_read":0.08,"context_over_200k":{"cache_read":0.16,"input":0.8,"output":4},"input":0.4,"output":2,"tiers":[{"cache_read":0.16,"input":0.8,"output":4,"tier":{"size":256000,"type":"context"}}]},"family":"mimo","id":"mimo-v2.5","interleaved":{"field":"reasoning_content"},"knowledge":"2024-12","last_updated":"2026-04-22","limit":{"context":1048576,"output":131072},"modalities":{"input":["text","image","audio","video"],"output":["text"]},"name":"MiMo-V2.5","open_weights":true,"reasoning":true,"release_date":"2026-04-22","temperature":true,"tool_call":true},"mimo-v2.5-pro":{"attachment":false,"cost":{"cache_read":0.2,"context_over_200k":{"cache_read":0.4,"input":2,"output":6},"input":1,"output":3,"tiers":[{"cache_read":0.4,"input":2,"output":6,"tier":{"size":256000,"type":"context"}}]},"family":"mimo","id":"mimo-v2.5-pro","interleaved":{"field":"reasoning_content"},"knowledge":"2024-12","last_updated":"2026-04-22","limit":{"context":1048576,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiMo-V2.5-Pro","open_weights":true,"reasoning":true,"release_date":"2026-04-22","temperature":true,"tool_call":true},"minimax-m2":{"attachment":false,"cost":{"input":0.3,"output":1.2},"family":"minimax","id":"minimax-m2","last_updated":"2025-10-27","limit":{"context":196608,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2","open_weights":true,"reasoning":true,"release_date":"2025-10-27","temperature":true,"tool_call":true},"minimax-m2.1":{"attachment":false,"cost":{"input":0.3,"output":1.2},"family":"minimax","id":"minimax-m2.1","last_updated":"2025-12-23","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2.1","open_weights":true,"reasoning":true,"release_date":"2025-12-23","temperature":true,"tool_call":true},"minimax-m2.1-lightning":{"attachment":false,"cost":{"input":0.12,"output":0.48},"family":"minimax","id":"minimax-m2.1-lightning","last_updated":"2025-12-23","limit":{"context":196608,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax M2.1 Lightning","open_weights":true,"reasoning":true,"release_date":"2025-12-23","structured_output":false,"temperature":true,"tool_call":false},"minimax-m2.5":{"attachment":false,"cost":{"cache_read":0.03,"cache_write":0.375,"input":0.3,"output":1.2},"family":"minimax","id":"minimax-m2.5","last_updated":"2026-02-12","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2.5","open_weights":true,"reasoning":true,"release_date":"2026-02-12","temperature":true,"tool_call":true},"minimax-m2.5-highspeed":{"attachment":false,"cost":{"cache_read":0.06,"cache_write":0.375,"input":0.6,"output":2.4},"family":"minimax","id":"minimax-m2.5-highspeed","last_updated":"2026-02-13","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2.5-highspeed","open_weights":true,"reasoning":true,"release_date":"2026-02-13","temperature":true,"tool_call":true},"minimax-m2.7":{"attachment":false,"cost":{"cache_read":0.06,"cache_write":0.375,"input":0.3,"output":1.2},"family":"minimax","id":"minimax-m2.7","last_updated":"2026-03-18","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2.7","open_weights":true,"reasoning":true,"release_date":"2026-03-18","temperature":true,"tool_call":true},"minimax-m2.7-highspeed":{"attachment":false,"cost":{"cache_read":0.06,"cache_write":0.375,"input":0.6,"output":2.4},"family":"minimax","id":"minimax-m2.7-highspeed","last_updated":"2026-03-18","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2.7-highspeed","open_weights":true,"reasoning":true,"release_date":"2026-03-18","temperature":true,"tool_call":true},"minimax-text-01":{"attachment":false,"cost":{"input":0.2,"output":1.1},"family":"minimax","id":"minimax-text-01","last_updated":"2025-01-15","limit":{"context":1000000,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax Text 01","open_weights":true,"reasoning":true,"release_date":"2025-01-15","structured_output":false,"temperature":true,"tool_call":false},"ministral-14b-2512":{"attachment":true,"cost":{"input":0.2,"output":0.2},"family":"mistral","id":"ministral-14b-2512","last_updated":"2025-12-02","limit":{"context":262144,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Ministral 14B","open_weights":true,"reasoning":false,"release_date":"2025-12-02","structured_output":true,"temperature":true,"tool_call":false},"ministral-3b-2512":{"attachment":true,"cost":{"input":0.1,"output":0.1},"family":"mistral","id":"ministral-3b-2512","last_updated":"2025-12-02","limit":{"context":131072,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Ministral 3B","open_weights":true,"reasoning":false,"release_date":"2025-12-02","structured_output":true,"temperature":true,"tool_call":false},"ministral-8b-2512":{"attachment":true,"cost":{"input":0.15,"output":0.15},"family":"mistral","id":"ministral-8b-2512","last_updated":"2025-12-02","limit":{"context":262144,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Ministral 8B","open_weights":true,"reasoning":false,"release_date":"2025-12-02","structured_output":true,"temperature":true,"tool_call":false},"mistral-large-2512":{"attachment":true,"cost":{"input":0.5,"output":1.5},"family":"mistral-large","id":"mistral-large-2512","knowledge":"2024-11","last_updated":"2025-12-02","limit":{"context":262144,"output":262144},"modalities":{"input":["text","image"],"output":["text"]},"name":"Mistral Large 3","open_weights":true,"reasoning":false,"release_date":"2024-11-01","temperature":true,"tool_call":true},"mistral-large-latest":{"attachment":true,"cost":{"input":0.5,"output":1.5},"family":"mistral-large","id":"mistral-large-latest","knowledge":"2024-11","last_updated":"2025-12-02","limit":{"context":262144,"output":262144},"modalities":{"input":["text","image"],"output":["text"]},"name":"Mistral Large (latest)","open_weights":true,"reasoning":false,"release_date":"2024-11-01","temperature":true,"tool_call":true},"mistral-small-2506":{"attachment":false,"cost":{"input":0.1,"output":0.3},"family":"mistral-small","id":"mistral-small-2506","knowledge":"2025-03","last_updated":"2025-06-20","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"Mistral Small 3.2","open_weights":true,"reasoning":false,"release_date":"2025-06-20","temperature":true,"tool_call":true},"o1":{"attachment":true,"cost":{"cache_read":7.5,"input":15,"output":60},"family":"o","id":"o1","knowledge":"2023-09","last_updated":"2024-12-05","limit":{"context":200000,"output":100000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"o1","open_weights":false,"reasoning":true,"release_date":"2024-12-05","structured_output":true,"temperature":false,"tool_call":true},"o3":{"attachment":true,"cost":{"cache_read":0.5,"input":2,"output":8},"family":"o","id":"o3","knowledge":"2024-05","last_updated":"2025-04-16","limit":{"context":200000,"output":100000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"o3","open_weights":false,"reasoning":true,"release_date":"2025-04-16","structured_output":true,"temperature":false,"tool_call":true},"o3-mini":{"attachment":false,"cost":{"cache_read":0.55,"input":1.1,"output":4.4},"family":"o-mini","id":"o3-mini","knowledge":"2024-05","last_updated":"2025-01-29","limit":{"context":200000,"output":100000},"modalities":{"input":["text"],"output":["text"]},"name":"o3-mini","open_weights":false,"reasoning":true,"release_date":"2024-12-20","structured_output":true,"temperature":false,"tool_call":true},"o4-mini":{"attachment":true,"cost":{"cache_read":0.275,"input":1.1,"output":4.4},"family":"o-mini","id":"o4-mini","knowledge":"2024-05","last_updated":"2025-04-16","limit":{"context":200000,"output":100000},"modalities":{"input":["text","image"],"output":["text"]},"name":"o4-mini","open_weights":false,"reasoning":true,"release_date":"2025-04-16","structured_output":true,"temperature":false,"tool_call":true},"pixtral-large-latest":{"attachment":true,"cost":{"input":2,"output":6},"family":"pixtral","id":"pixtral-large-latest","knowledge":"2024-11","last_updated":"2024-11-04","limit":{"context":128000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Pixtral Large (latest)","open_weights":true,"reasoning":false,"release_date":"2024-11-01","temperature":true,"tool_call":true},"qwen-coder-plus":{"attachment":false,"cost":{"input":0.502,"output":1.004},"family":"qwen","id":"qwen-coder-plus","last_updated":"2024-09-18","limit":{"context":131072,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen Coder Plus","open_weights":false,"reasoning":false,"release_date":"2024-09-18","structured_output":true,"temperature":true,"tool_call":true},"qwen-flash":{"attachment":false,"cost":{"input":0.05,"output":0.4},"family":"qwen","id":"qwen-flash","knowledge":"2024-04","last_updated":"2025-07-28","limit":{"context":1000000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen Flash","open_weights":false,"reasoning":true,"release_date":"2025-07-28","temperature":true,"tool_call":true},"qwen-max":{"attachment":false,"cost":{"input":1.6,"output":6.4},"family":"qwen","id":"qwen-max","knowledge":"2024-04","last_updated":"2025-01-25","limit":{"context":32768,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen Max","open_weights":false,"reasoning":false,"release_date":"2024-04-03","temperature":true,"tool_call":true},"qwen-max-latest":{"attachment":true,"cost":{"input":0.345,"output":1.377},"family":"qwen","id":"qwen-max-latest","last_updated":"2025-01-25","limit":{"context":32768,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen Max Latest","open_weights":false,"reasoning":false,"release_date":"2025-01-25","structured_output":true,"temperature":true,"tool_call":true},"qwen-omni-turbo":{"attachment":false,"cost":{"input":0.07,"input_audio":4.44,"output":0.27,"output_audio":8.89},"family":"qwen","id":"qwen-omni-turbo","knowledge":"2024-04","last_updated":"2025-03-26","limit":{"context":32768,"output":2048},"modalities":{"input":["text","image","audio","video"],"output":["text","audio"]},"name":"Qwen-Omni Turbo","open_weights":false,"reasoning":false,"release_date":"2025-01-19","temperature":true,"tool_call":true},"qwen-plus":{"attachment":false,"cost":{"input":0.4,"output":1.2,"reasoning":4},"family":"qwen","id":"qwen-plus","knowledge":"2024-04","last_updated":"2025-09-11","limit":{"context":1000000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen Plus","open_weights":false,"reasoning":true,"release_date":"2024-01-25","temperature":true,"tool_call":true},"qwen-plus-latest":{"attachment":true,"cost":{"input":0.115,"output":0.287},"family":"qwen","id":"qwen-plus-latest","last_updated":"2025-01-25","limit":{"context":131072,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen Plus Latest","open_weights":false,"reasoning":false,"release_date":"2025-01-25","structured_output":true,"temperature":true,"tool_call":true},"qwen-turbo":{"attachment":false,"cost":{"input":0.05,"output":0.2,"reasoning":0.5},"family":"qwen","id":"qwen-turbo","knowledge":"2024-04","last_updated":"2025-04-28","limit":{"context":1000000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen Turbo","open_weights":false,"reasoning":true,"release_date":"2024-11-01","temperature":true,"tool_call":true},"qwen-vl-max":{"attachment":false,"cost":{"input":0.8,"output":3.2},"family":"qwen","id":"qwen-vl-max","knowledge":"2024-04","last_updated":"2025-08-13","limit":{"context":131072,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen-VL Max","open_weights":false,"reasoning":false,"release_date":"2024-04-08","temperature":true,"tool_call":true},"qwen-vl-plus":{"attachment":false,"cost":{"input":0.21,"output":0.63},"family":"qwen","id":"qwen-vl-plus","knowledge":"2024-04","last_updated":"2025-08-15","limit":{"context":131072,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen-VL Plus","open_weights":false,"reasoning":false,"release_date":"2024-01-25","temperature":true,"tool_call":true},"qwen2-5-vl-32b-instruct":{"attachment":true,"cost":{"input":1.4,"output":4.2},"family":"qwen","id":"qwen2-5-vl-32b-instruct","last_updated":"2025-03-15","limit":{"context":131072,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen2.5 VL 32B Instruct","open_weights":true,"reasoning":false,"release_date":"2025-03-15","structured_output":true,"temperature":true,"tool_call":true},"qwen2-5-vl-72b-instruct":{"attachment":false,"cost":{"input":2.8,"output":8.4},"family":"qwen","id":"qwen2-5-vl-72b-instruct","knowledge":"2024-04","last_updated":"2024-09","limit":{"context":131072,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen2.5-VL 72B Instruct","open_weights":true,"reasoning":false,"release_date":"2024-09","temperature":true,"tool_call":true},"qwen25-coder-7b":{"attachment":false,"cost":{"input":0.05,"output":0.05},"family":"qwen","id":"qwen25-coder-7b","last_updated":"2024-09-19","limit":{"context":131072,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen2.5 Coder 7B","open_weights":true,"reasoning":false,"release_date":"2024-09-19","structured_output":true,"temperature":true,"tool_call":false},"qwen3-235b-a22b-fp8":{"attachment":false,"cost":{"input":0.2,"output":0.8},"family":"qwen","id":"qwen3-235b-a22b-fp8","last_updated":"2025-04-28","limit":{"context":131072,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 235B A22B FP8","open_weights":true,"reasoning":true,"release_date":"2025-04-28","structured_output":true,"temperature":true,"tool_call":true},"qwen3-235b-a22b-instruct-2507":{"attachment":false,"cost":{"input":0.09,"output":0.58},"family":"qwen","id":"qwen3-235b-a22b-instruct-2507","last_updated":"2025-07-08","limit":{"context":131072,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 235B A22B Instruct (2507)","open_weights":true,"reasoning":false,"release_date":"2025-07-08","structured_output":true,"temperature":true,"tool_call":true},"qwen3-235b-a22b-thinking-2507":{"attachment":false,"cost":{"input":0.2,"output":0.6},"family":"qwen","id":"qwen3-235b-a22b-thinking-2507","last_updated":"2025-07-08","limit":{"context":131072,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 235B A22B Thinking (2507)","open_weights":true,"reasoning":true,"release_date":"2025-07-08","structured_output":true,"temperature":true,"tool_call":true},"qwen3-30b-a3b-fp8":{"attachment":false,"cost":{"input":0.1,"output":0.1},"family":"qwen","id":"qwen3-30b-a3b-fp8","last_updated":"2025-04-28","limit":{"context":131072,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 30B A3B FP8","open_weights":true,"reasoning":true,"release_date":"2025-04-28","structured_output":true,"temperature":true,"tool_call":true},"qwen3-30b-a3b-instruct-2507":{"attachment":false,"cost":{"input":0.1,"output":0.3},"family":"qwen","id":"qwen3-30b-a3b-instruct-2507","last_updated":"2025-07-08","limit":{"context":131072,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 30B A3B Instruct (2507)","open_weights":true,"reasoning":false,"release_date":"2025-07-08","structured_output":true,"temperature":true,"tool_call":true},"qwen3-30b-a3b-thinking-2507":{"attachment":false,"cost":{"input":0.1,"output":0.1},"family":"qwen","id":"qwen3-30b-a3b-thinking-2507","last_updated":"2025-07-08","limit":{"context":131072,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 30B A3B Thinking (2507)","open_weights":true,"reasoning":true,"release_date":"2025-07-08","structured_output":true,"temperature":true,"tool_call":true},"qwen3-32b":{"attachment":false,"cost":{"input":0.7,"output":2.8,"reasoning":8.4},"family":"qwen","id":"qwen3-32b","knowledge":"2025-04","last_updated":"2025-04","limit":{"context":131072,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 32B","open_weights":true,"reasoning":true,"release_date":"2025-04","temperature":true,"tool_call":true},"qwen3-32b-fp8":{"attachment":false,"cost":{"input":0.1,"output":0.1},"family":"qwen","id":"qwen3-32b-fp8","last_updated":"2025-04-28","limit":{"context":131072,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 32B FP8","open_weights":true,"reasoning":true,"release_date":"2025-04-28","structured_output":true,"temperature":true,"tool_call":true},"qwen3-4b-fp8":{"attachment":false,"cost":{"input":0.03,"output":0.03},"family":"qwen","id":"qwen3-4b-fp8","last_updated":"2025-04-28","limit":{"context":131072,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 4B FP8","open_weights":true,"reasoning":true,"release_date":"2025-04-28","structured_output":true,"temperature":true,"tool_call":true},"qwen3-coder-30b-a3b-instruct":{"attachment":false,"cost":{"input":0.45,"output":2.25},"family":"qwen","id":"qwen3-coder-30b-a3b-instruct","knowledge":"2025-04","last_updated":"2025-04","limit":{"context":262144,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3-Coder 30B-A3B Instruct","open_weights":true,"reasoning":false,"release_date":"2025-04","temperature":true,"tool_call":true},"qwen3-coder-480b-a35b-instruct":{"attachment":false,"cost":{"input":1.5,"output":7.5},"family":"qwen","id":"qwen3-coder-480b-a35b-instruct","knowledge":"2025-04","last_updated":"2025-04","limit":{"context":262144,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3-Coder 480B-A35B Instruct","open_weights":true,"reasoning":false,"release_date":"2025-04","temperature":true,"tool_call":true},"qwen3-coder-flash":{"attachment":false,"cost":{"input":0.3,"output":1.5},"family":"qwen","id":"qwen3-coder-flash","knowledge":"2025-04","last_updated":"2025-07-28","limit":{"context":1000000,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Coder Flash","open_weights":false,"reasoning":false,"release_date":"2025-07-28","temperature":true,"tool_call":true},"qwen3-coder-next":{"attachment":false,"cost":{"input":0.108,"output":0.675},"family":"qwen","id":"qwen3-coder-next","last_updated":"2025-10-15","limit":{"context":262144,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Coder Next","open_weights":false,"reasoning":true,"release_date":"2025-10-15","structured_output":true,"temperature":true,"tool_call":true},"qwen3-coder-plus":{"attachment":false,"cost":{"input":1,"output":5},"family":"qwen","id":"qwen3-coder-plus","knowledge":"2025-04","last_updated":"2025-07-23","limit":{"context":1048576,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Coder Plus","open_weights":true,"reasoning":false,"release_date":"2025-07-23","temperature":true,"tool_call":true},"qwen3-max":{"attachment":false,"cost":{"input":1.2,"output":6},"family":"qwen","id":"qwen3-max","knowledge":"2025-04","last_updated":"2025-09-23","limit":{"context":262144,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Max","open_weights":false,"reasoning":false,"release_date":"2025-09-23","temperature":true,"tool_call":true},"qwen3-max-2026-01-23":{"attachment":true,"cost":{"cache_read":0.072,"input":0.359,"output":1.434},"family":"qwen","id":"qwen3-max-2026-01-23","last_updated":"2026-01-23","limit":{"context":256000,"output":32800},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen3 Max (2026-01-23)","open_weights":false,"reasoning":true,"release_date":"2026-01-23","structured_output":true,"temperature":true,"tool_call":true},"qwen3-next-80b-a3b-instruct":{"attachment":false,"cost":{"input":0.5,"output":2},"family":"qwen","id":"qwen3-next-80b-a3b-instruct","knowledge":"2025-04","last_updated":"2025-09","limit":{"context":131072,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3-Next 80B-A3B Instruct","open_weights":true,"reasoning":false,"release_date":"2025-09","temperature":true,"tool_call":true},"qwen3-next-80b-a3b-thinking":{"attachment":false,"cost":{"input":0.5,"output":6},"family":"qwen","id":"qwen3-next-80b-a3b-thinking","knowledge":"2025-04","last_updated":"2025-09","limit":{"context":131072,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3-Next 80B-A3B (Thinking)","open_weights":true,"reasoning":true,"release_date":"2025-09","temperature":true,"tool_call":true},"qwen3-vl-235b-a22b-instruct":{"attachment":true,"cost":{"input":0.3,"output":1.5},"family":"qwen","id":"qwen3-vl-235b-a22b-instruct","last_updated":"2025-09-15","limit":{"context":131072,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen3 VL 235B A22B Instruct","open_weights":true,"reasoning":false,"release_date":"2025-09-15","structured_output":true,"temperature":true,"tool_call":true},"qwen3-vl-235b-a22b-thinking":{"attachment":true,"cost":{"input":0.5,"output":2},"family":"qwen","id":"qwen3-vl-235b-a22b-thinking","last_updated":"2025-09-15","limit":{"context":131072,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen3 VL 235B A22B Thinking","open_weights":true,"reasoning":true,"release_date":"2025-09-15","structured_output":true,"temperature":true,"tool_call":true},"qwen3-vl-30b-a3b-instruct":{"attachment":true,"cost":{"input":0.2,"output":0.7},"family":"qwen","id":"qwen3-vl-30b-a3b-instruct","last_updated":"2025-10-02","limit":{"context":131072,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen3 VL 30B A3B Instruct","open_weights":true,"reasoning":false,"release_date":"2025-10-02","structured_output":true,"temperature":true,"tool_call":true},"qwen3-vl-30b-a3b-thinking":{"attachment":true,"cost":{"input":0.2,"output":1},"family":"qwen","id":"qwen3-vl-30b-a3b-thinking","last_updated":"2025-10-02","limit":{"context":131072,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen3 VL 30B A3B Thinking","open_weights":true,"reasoning":true,"release_date":"2025-10-02","structured_output":true,"temperature":true,"tool_call":true},"qwen3-vl-8b-instruct":{"attachment":true,"cost":{"input":0.08,"output":0.5},"family":"qwen","id":"qwen3-vl-8b-instruct","last_updated":"2025-08-19","limit":{"context":131072,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen3 VL 8B Instruct","open_weights":true,"reasoning":false,"release_date":"2025-08-19","structured_output":false,"temperature":true,"tool_call":false},"qwen3-vl-flash":{"attachment":true,"cost":{"cache_read":0.0044,"input":0.022,"output":0.215},"family":"qwen","id":"qwen3-vl-flash","last_updated":"2025-10-09","limit":{"context":1000000,"output":32000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen3 VL Flash","open_weights":false,"reasoning":false,"release_date":"2025-10-09","structured_output":true,"temperature":true,"tool_call":true},"qwen3-vl-plus":{"attachment":false,"cost":{"input":0.2,"output":1.6,"reasoning":4.8},"family":"qwen","id":"qwen3-vl-plus","knowledge":"2025-04","last_updated":"2025-09-23","limit":{"context":262144,"output":32768},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen3-VL Plus","open_weights":false,"reasoning":true,"release_date":"2025-09-23","temperature":true,"tool_call":true},"qwen3.6-35b-a3b":{"attachment":true,"cost":{"input":0.248,"output":1.485},"family":"qwen","id":"qwen3.6-35b-a3b","last_updated":"2026-04-17","limit":{"context":262144,"output":65536},"modalities":{"input":["text","image","video","audio"],"output":["text"]},"name":"Qwen3.6 35B-A3B","open_weights":true,"reasoning":true,"release_date":"2026-04-17","structured_output":true,"temperature":true,"tool_call":true},"qwen3.6-max-preview":{"attachment":false,"cost":{"cache_read":0.13,"cache_write":1.625,"input":1.3,"output":7.8},"family":"qwen","id":"qwen3.6-max-preview","knowledge":"2025-04","last_updated":"2026-04-20","limit":{"context":262144,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3.6 Max Preview","open_weights":false,"reasoning":true,"release_date":"2026-04-20","temperature":true,"tool_call":true},"qwen3.6-plus":{"attachment":false,"cost":{"cache_read":0.05,"cache_write":0.625,"context_over_200k":{"cache_read":0.2,"cache_write":2.5,"input":2,"output":6},"input":0.5,"output":3,"tiers":[{"cache_read":0.2,"cache_write":2.5,"input":2,"output":6,"tier":{"size":256000,"type":"context"}}]},"family":"qwen","id":"qwen3.6-plus","knowledge":"2025-04","last_updated":"2026-04-02","limit":{"context":1000000,"output":65536},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.6 Plus","open_weights":false,"reasoning":true,"release_date":"2026-04-02","temperature":true,"tool_call":true},"qwen3.7-max":{"attachment":false,"cost":{"cache_read":0.5,"cache_write":3.125,"input":2.5,"output":7.5},"family":"qwen","id":"qwen3.7-max","last_updated":"2026-05-21","limit":{"context":1000000,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3.7 Max","open_weights":false,"reasoning":true,"release_date":"2026-05-21","temperature":true,"tool_call":true},"qwen35-397b-a17b":{"attachment":true,"cost":{"input":0.6,"output":3.6},"family":"qwen","id":"qwen35-397b-a17b","last_updated":"2026-02-15","limit":{"context":262144,"output":65536},"modalities":{"input":["text","image","video","audio"],"output":["text"]},"name":"Qwen3.5 397B-A17B","open_weights":true,"reasoning":true,"release_date":"2026-02-15","structured_output":true,"temperature":true,"tool_call":true},"qwq-plus":{"attachment":false,"cost":{"input":0.8,"output":2.4},"family":"qwen","id":"qwq-plus","knowledge":"2024-04","last_updated":"2025-03-05","limit":{"context":131072,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"QwQ Plus","open_weights":false,"reasoning":true,"release_date":"2025-03-05","temperature":true,"tool_call":true},"seed-1-6-250615":{"attachment":true,"cost":{"cache_read":0.05,"input":0.25,"output":2},"family":"seed","id":"seed-1-6-250615","last_updated":"2025-06-25","limit":{"context":256000,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Seed 1.6 (250615)","open_weights":true,"reasoning":true,"release_date":"2025-06-25","structured_output":true,"temperature":true,"tool_call":true},"seed-1-6-250915":{"attachment":true,"cost":{"cache_read":0.05,"input":0.25,"output":2},"family":"seed","id":"seed-1-6-250915","last_updated":"2025-09-15","limit":{"context":256000,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Seed 1.6 (250915)","open_weights":true,"reasoning":true,"release_date":"2025-09-15","structured_output":true,"temperature":true,"tool_call":true},"seed-1-6-flash-250715":{"attachment":true,"cost":{"cache_read":0.015,"input":0.07,"output":0.3},"family":"seed","id":"seed-1-6-flash-250715","last_updated":"2025-07-26","limit":{"context":256000,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Seed 1.6 Flash (250715)","open_weights":true,"reasoning":true,"release_date":"2025-07-26","structured_output":true,"temperature":true,"tool_call":true},"seed-1-8-251228":{"attachment":true,"cost":{"cache_read":0.05,"input":0.25,"output":2},"family":"seed","id":"seed-1-8-251228","last_updated":"2025-12-18","limit":{"context":256000,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Seed 1.8 (251228)","open_weights":true,"reasoning":true,"release_date":"2025-12-18","structured_output":true,"temperature":true,"tool_call":true},"sonar":{"attachment":false,"cost":{"input":1,"output":1},"family":"sonar","id":"sonar","knowledge":"2025-09-01","last_updated":"2025-09-01","limit":{"context":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Sonar","open_weights":false,"reasoning":false,"release_date":"2024-01-01","temperature":true,"tool_call":false},"sonar-pro":{"attachment":true,"cost":{"input":3,"output":15},"family":"sonar-pro","id":"sonar-pro","knowledge":"2025-09-01","last_updated":"2025-09-01","limit":{"context":200000,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Sonar Pro","open_weights":false,"reasoning":false,"release_date":"2024-01-01","temperature":true,"tool_call":false},"sonar-reasoning-pro":{"attachment":true,"cost":{"input":2,"output":8},"family":"sonar-reasoning","id":"sonar-reasoning-pro","knowledge":"2025-09-01","last_updated":"2025-09-01","limit":{"context":128000,"output":4096},"modalities":{"input":["text","image"],"output":["text"]},"name":"Sonar Reasoning Pro","open_weights":false,"reasoning":true,"release_date":"2024-01-01","temperature":true,"tool_call":false}},"name":"LLM Gateway","npm":"@ai-sdk/openai-compatible"},"lmstudio":{"api":"http://127.0.0.1:1234/v1","doc":"https://lmstudio.ai/models","env":["LMSTUDIO_API_KEY"],"id":"lmstudio","models":{"openai/gpt-oss-20b":{"attachment":false,"cost":{"input":0,"output":0},"family":"gpt-oss","id":"openai/gpt-oss-20b","last_updated":"2025-08-05","limit":{"context":131072,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"GPT OSS 20B","open_weights":true,"reasoning":true,"release_date":"2025-08-05","temperature":true,"tool_call":true},"qwen/qwen3-30b-a3b-2507":{"attachment":false,"cost":{"input":0,"output":0},"family":"qwen","id":"qwen/qwen3-30b-a3b-2507","knowledge":"2025-04","last_updated":"2025-07-30","limit":{"context":262144,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 30B A3B 2507","open_weights":true,"reasoning":false,"release_date":"2025-07-30","temperature":true,"tool_call":true},"qwen/qwen3-coder-30b":{"attachment":false,"cost":{"input":0,"output":0},"family":"qwen","id":"qwen/qwen3-coder-30b","knowledge":"2025-04","last_updated":"2025-07-23","limit":{"context":262144,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Coder 30B","open_weights":true,"reasoning":false,"release_date":"2025-07-23","temperature":true,"tool_call":true}},"name":"LMStudio","npm":"@ai-sdk/openai-compatible"},"lucidquery":{"api":"https://lucidquery.com/api/v1","doc":"https://lucidquery.com/api/docs","env":["LUCIDQUERY_API_KEY"],"id":"lucidquery","models":{"lucidnova-rf1-100b":{"attachment":true,"cost":{"input":2,"output":5},"family":"nova","id":"lucidnova-rf1-100b","knowledge":"2025-09-16","last_updated":"2025-09-10","limit":{"context":120000,"output":8000},"modalities":{"input":["text"],"output":["text"]},"name":"LucidNova RF1 100B","open_weights":false,"reasoning":true,"release_date":"2024-12-28","temperature":false,"tool_call":true},"lucidquery-nexus-coder":{"attachment":true,"cost":{"input":2,"output":5},"family":"lucid","id":"lucidquery-nexus-coder","knowledge":"2025-08-01","last_updated":"2025-09-01","limit":{"context":250000,"output":60000},"modalities":{"input":["text"],"output":["text"]},"name":"LucidQuery Nexus Coder","open_weights":false,"reasoning":true,"release_date":"2025-09-01","temperature":false,"tool_call":true}},"name":"LucidQuery AI","npm":"@ai-sdk/openai-compatible"},"meganova":{"api":"https://api.meganova.ai/v1","doc":"https://docs.meganova.ai","env":["MEGANOVA_API_KEY"],"id":"meganova","models":{"MiniMaxAI/MiniMax-M2.1":{"attachment":false,"cost":{"input":0.28,"output":1.2},"family":"minimax","id":"MiniMaxAI/MiniMax-M2.1","interleaved":{"field":"reasoning_content"},"last_updated":"2025-12-23","limit":{"context":196608,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax M2.1","open_weights":true,"reasoning":true,"release_date":"2025-12-23","temperature":true,"tool_call":true},"MiniMaxAI/MiniMax-M2.5":{"attachment":false,"cost":{"input":0.3,"output":1.2},"family":"minimax","id":"MiniMaxAI/MiniMax-M2.5","interleaved":{"field":"reasoning_content"},"last_updated":"2026-02-12","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax M2.5","open_weights":true,"reasoning":true,"release_date":"2026-02-12","temperature":true,"tool_call":true},"Qwen/Qwen2.5-VL-32B-Instruct":{"attachment":true,"cost":{"input":0.2,"output":0.6},"family":"qwen","id":"Qwen/Qwen2.5-VL-32B-Instruct","last_updated":"2025-03-24","limit":{"context":16384,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen2.5 VL 32B Instruct","open_weights":true,"reasoning":false,"release_date":"2025-03-24","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen3-235B-A22B-Instruct-2507":{"attachment":false,"cost":{"input":0.09,"output":0.6},"family":"qwen","id":"Qwen/Qwen3-235B-A22B-Instruct-2507","last_updated":"2025-07-23","limit":{"context":262000,"output":262000},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 235B A22B Instruct 2507","open_weights":true,"reasoning":false,"release_date":"2025-07-23","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen3.5-Plus":{"attachment":false,"cost":{"input":0.4,"output":2.4,"reasoning":2.4},"family":"qwen","id":"Qwen/Qwen3.5-Plus","knowledge":"2025-04","last_updated":"2026-02","limit":{"context":1000000,"output":65536},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.5 Plus","open_weights":false,"reasoning":true,"release_date":"2026-02","temperature":true,"tool_call":true},"XiaomiMiMo/MiMo-V2-Flash":{"attachment":false,"cost":{"input":0.1,"output":0.3},"family":"mimo","id":"XiaomiMiMo/MiMo-V2-Flash","knowledge":"2024-12-01","last_updated":"2025-12-17","limit":{"context":262144,"output":32000},"modalities":{"input":["text"],"output":["text"]},"name":"MiMo V2 Flash","open_weights":true,"reasoning":true,"release_date":"2025-12-17","temperature":true,"tool_call":true},"deepseek-ai/DeepSeek-R1-0528":{"attachment":false,"cost":{"input":0.5,"output":2.15},"family":"deepseek-thinking","id":"deepseek-ai/DeepSeek-R1-0528","interleaved":{"field":"reasoning_content"},"knowledge":"2024-07","last_updated":"2025-05-28","limit":{"context":163840,"output":64000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek R1 0528","open_weights":true,"reasoning":true,"release_date":"2025-05-28","temperature":true,"tool_call":false},"deepseek-ai/DeepSeek-V3-0324":{"attachment":false,"cost":{"input":0.25,"output":0.88},"family":"deepseek","id":"deepseek-ai/DeepSeek-V3-0324","last_updated":"2025-03-24","limit":{"context":163840,"output":163840},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V3 0324","open_weights":true,"reasoning":false,"release_date":"2025-03-24","temperature":true,"tool_call":true},"deepseek-ai/DeepSeek-V3.1":{"attachment":false,"cost":{"input":0.27,"output":1},"family":"deepseek","id":"deepseek-ai/DeepSeek-V3.1","last_updated":"2025-08-25","limit":{"context":164000,"output":164000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V3.1","open_weights":true,"reasoning":false,"release_date":"2025-08-25","structured_output":true,"temperature":true,"tool_call":true},"deepseek-ai/DeepSeek-V3.2":{"attachment":false,"cost":{"input":0.26,"output":0.38},"family":"deepseek","id":"deepseek-ai/DeepSeek-V3.2","last_updated":"2025-12-03","limit":{"context":164000,"output":164000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V3.2","open_weights":true,"reasoning":false,"release_date":"2025-12-03","structured_output":true,"temperature":true,"tool_call":true},"deepseek-ai/DeepSeek-V3.2-Exp":{"attachment":false,"cost":{"input":0.27,"output":0.4},"family":"deepseek","id":"deepseek-ai/DeepSeek-V3.2-Exp","last_updated":"2025-10-10","limit":{"context":164000,"output":164000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V3.2 Exp","open_weights":true,"reasoning":false,"release_date":"2025-10-10","structured_output":true,"temperature":true,"tool_call":true},"meta-llama/Llama-3.3-70B-Instruct":{"attachment":false,"cost":{"input":0.1,"output":0.3},"family":"llama","id":"meta-llama/Llama-3.3-70B-Instruct","last_updated":"2024-12-06","limit":{"context":131072,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.3 70B Instruct","open_weights":true,"reasoning":false,"release_date":"2024-12-06","temperature":true,"tool_call":true},"mistralai/Mistral-Nemo-Instruct-2407":{"attachment":false,"cost":{"input":0.02,"output":0.04},"family":"mistral","id":"mistralai/Mistral-Nemo-Instruct-2407","last_updated":"2024-07-18","limit":{"context":131072,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Mistral Nemo Instruct 2407","open_weights":true,"reasoning":false,"release_date":"2024-07-18","structured_output":true,"temperature":true,"tool_call":true},"mistralai/Mistral-Small-3.2-24B-Instruct-2506":{"attachment":true,"cost":{"input":0,"output":0},"family":"mistral-small","id":"mistralai/Mistral-Small-3.2-24B-Instruct-2506","knowledge":"2024-10","last_updated":"2025-06-20","limit":{"context":32768,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Mistral Small 3.2 24B Instruct","open_weights":true,"reasoning":false,"release_date":"2025-06-20","structured_output":true,"temperature":true,"tool_call":true},"moonshotai/Kimi-K2-Thinking":{"attachment":false,"cost":{"input":0.6,"output":2.6},"family":"kimi-thinking","id":"moonshotai/Kimi-K2-Thinking","interleaved":{"field":"reasoning_content"},"knowledge":"2024-08","last_updated":"2025-11-06","limit":{"context":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Kimi K2 Thinking","open_weights":true,"reasoning":true,"release_date":"2025-11-06","temperature":true,"tool_call":true},"moonshotai/Kimi-K2.5":{"attachment":false,"cost":{"input":0.45,"output":2.8},"family":"kimi","id":"moonshotai/Kimi-K2.5","interleaved":{"field":"reasoning_content"},"knowledge":"2026-01","last_updated":"2026-01-27","limit":{"context":262144,"output":262144},"modalities":{"input":["text","image"],"output":["text"]},"name":"Kimi K2.5","open_weights":true,"reasoning":true,"release_date":"2026-01-27","temperature":true,"tool_call":true},"zai-org/GLM-4.6":{"attachment":false,"cost":{"input":0.45,"output":1.9},"family":"glm","id":"zai-org/GLM-4.6","interleaved":{"field":"reasoning_content"},"knowledge":"2025-04","last_updated":"2025-09-30","limit":{"context":202752,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4.6","open_weights":true,"reasoning":true,"release_date":"2025-09-30","temperature":true,"tool_call":true},"zai-org/GLM-4.7":{"attachment":false,"cost":{"input":0.2,"output":0.8},"family":"glm","id":"zai-org/GLM-4.7","interleaved":{"field":"reasoning_content"},"knowledge":"2025-04","last_updated":"2025-12-22","limit":{"context":202752,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4.7","open_weights":true,"reasoning":true,"release_date":"2025-12-22","temperature":true,"tool_call":true},"zai-org/GLM-5":{"attachment":false,"cost":{"input":0.8,"output":2.56},"family":"glm","id":"zai-org/GLM-5","interleaved":{"field":"reasoning_content"},"last_updated":"2026-02-11","limit":{"context":202752,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-5","open_weights":true,"reasoning":true,"release_date":"2026-02-11","temperature":true,"tool_call":true}},"name":"Meganova","npm":"@ai-sdk/openai-compatible"},"merge-gateway":{"doc":"https://docs.merge.dev/merge-gateway","env":["MERGE_GATEWAY_API_KEY"],"id":"merge-gateway","models":{"anthropic/claude-haiku-4-5-20251001":{"attachment":true,"cost":{"cache_read":0.1,"cache_write":1.25,"input":1,"output":5},"family":"claude-haiku","id":"anthropic/claude-haiku-4-5-20251001","knowledge":"2025-02-28","last_updated":"2025-10-15","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Haiku 4.5","open_weights":false,"reasoning":true,"release_date":"2025-10-15","temperature":true,"tool_call":true},"anthropic/claude-opus-4-1-20250805":{"attachment":true,"cost":{"cache_read":1.5,"cache_write":18.75,"input":15,"output":75},"family":"claude-opus","id":"anthropic/claude-opus-4-1-20250805","knowledge":"2025-03-31","last_updated":"2025-08-05","limit":{"context":200000,"output":32000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.1","open_weights":false,"reasoning":true,"release_date":"2025-08-05","temperature":true,"tool_call":true},"anthropic/claude-opus-4-20250514":{"attachment":true,"cost":{"cache_read":1.5,"cache_write":18.75,"input":15,"output":75},"family":"claude-opus","id":"anthropic/claude-opus-4-20250514","knowledge":"2025-03-31","last_updated":"2025-05-22","limit":{"context":200000,"output":32000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4","open_weights":false,"reasoning":true,"release_date":"2025-05-22","temperature":true,"tool_call":true},"anthropic/claude-opus-4-5-20251101":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"input":5,"output":25},"family":"claude-opus","id":"anthropic/claude-opus-4-5-20251101","knowledge":"2025-03-31","last_updated":"2025-11-01","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.5","open_weights":false,"reasoning":true,"release_date":"2025-11-01","temperature":true,"tool_call":true},"anthropic/claude-opus-4-6":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"input":5,"output":25},"experimental":{"modes":{"fast":{"cost":{"cache_read":3,"cache_write":37.5,"input":30,"output":150},"provider":{"body":{"speed":"fast"},"headers":{"anthropic-beta":"fast-mode-2026-02-01"}}}}},"family":"claude-opus","id":"anthropic/claude-opus-4-6","knowledge":"2025-05-31","last_updated":"2026-03-13","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.6","open_weights":false,"reasoning":true,"release_date":"2026-02-05","temperature":true,"tool_call":true},"anthropic/claude-opus-4-7":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"input":5,"output":25},"experimental":{"modes":{"fast":{"cost":{"cache_read":3,"cache_write":37.5,"input":30,"output":150},"provider":{"body":{"speed":"fast"},"headers":{"anthropic-beta":"fast-mode-2026-02-01"}}}}},"family":"claude-opus","id":"anthropic/claude-opus-4-7","knowledge":"2026-01-31","last_updated":"2026-04-16","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.7","open_weights":false,"reasoning":true,"release_date":"2026-04-16","temperature":false,"tool_call":true},"anthropic/claude-sonnet-4-20250514":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"input":3,"output":15},"family":"claude-sonnet","id":"anthropic/claude-sonnet-4-20250514","knowledge":"2025-03-31","last_updated":"2025-05-22","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 4","open_weights":false,"reasoning":true,"release_date":"2025-05-22","temperature":true,"tool_call":true},"anthropic/claude-sonnet-4-5-20250929":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"input":3,"output":15},"family":"claude-sonnet","id":"anthropic/claude-sonnet-4-5-20250929","knowledge":"2025-07-31","last_updated":"2025-09-29","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 4.5","open_weights":false,"reasoning":true,"release_date":"2025-09-29","temperature":true,"tool_call":true},"anthropic/claude-sonnet-4-6":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"input":3,"output":15},"family":"claude-sonnet","id":"anthropic/claude-sonnet-4-6","knowledge":"2025-08-31","last_updated":"2026-03-13","limit":{"context":1000000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 4.6","open_weights":false,"reasoning":true,"release_date":"2026-02-17","temperature":true,"tool_call":true},"cohere/command-a-03-2025":{"attachment":false,"cost":{"input":2.5,"output":10},"family":"command-a","id":"cohere/command-a-03-2025","knowledge":"2024-06-01","last_updated":"2025-03-13","limit":{"context":256000,"output":8000},"modalities":{"input":["text"],"output":["text"]},"name":"Command A","open_weights":true,"reasoning":false,"release_date":"2025-03-13","temperature":true,"tool_call":true},"cohere/command-r-08-2024":{"attachment":false,"cost":{"input":0.15,"output":0.6},"family":"command-r","id":"cohere/command-r-08-2024","knowledge":"2024-06-01","last_updated":"2024-08-30","limit":{"context":128000,"output":4000},"modalities":{"input":["text"],"output":["text"]},"name":"Command R","open_weights":true,"reasoning":false,"release_date":"2024-08-30","temperature":true,"tool_call":true},"cohere/command-r-plus-08-2024":{"attachment":false,"cost":{"input":2.5,"output":10},"family":"command-r","id":"cohere/command-r-plus-08-2024","knowledge":"2024-06-01","last_updated":"2024-08-30","limit":{"context":128000,"output":4000},"modalities":{"input":["text"],"output":["text"]},"name":"Command R+","open_weights":true,"reasoning":false,"release_date":"2024-08-30","temperature":true,"tool_call":true},"cohere/command-r7b-12-2024":{"attachment":false,"cost":{"input":0.0375,"output":0.15},"family":"command-r","id":"cohere/command-r7b-12-2024","knowledge":"2024-06-01","last_updated":"2024-02-27","limit":{"context":128000,"output":4000},"modalities":{"input":["text"],"output":["text"]},"name":"Command R7B","open_weights":true,"reasoning":false,"release_date":"2024-02-27","temperature":true,"tool_call":true},"deepseek/deepseek-v4-flash":{"attachment":false,"cost":{"cache_read":0.0028,"input":0.14,"output":0.28},"family":"deepseek-flash","id":"deepseek/deepseek-v4-flash","interleaved":{"field":"reasoning_content"},"knowledge":"2025-05","last_updated":"2026-04-24","limit":{"context":1000000,"output":384000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V4 Flash","open_weights":true,"reasoning":true,"release_date":"2026-04-24","structured_output":true,"temperature":true,"tool_call":true},"deepseek/deepseek-v4-pro":{"attachment":false,"cost":{"cache_read":0.003625,"input":0.435,"output":0.87},"family":"deepseek-thinking","id":"deepseek/deepseek-v4-pro","interleaved":{"field":"reasoning_content"},"knowledge":"2025-05","last_updated":"2026-04-24","limit":{"context":1000000,"output":384000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V4 Pro","open_weights":true,"reasoning":true,"release_date":"2026-04-24","structured_output":true,"temperature":true,"tool_call":true},"google/gemini-2.5-flash":{"attachment":true,"cost":{"cache_read":0.03,"input":0.3,"input_audio":1,"output":2.5},"family":"gemini-flash","id":"google/gemini-2.5-flash","knowledge":"2025-01","last_updated":"2025-06-05","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"Gemini 2.5 Flash","open_weights":false,"reasoning":true,"release_date":"2025-03-20","structured_output":true,"temperature":true,"tool_call":true},"google/gemini-2.5-flash-lite":{"attachment":true,"cost":{"cache_read":0.01,"input":0.1,"input_audio":0.3,"output":0.4},"family":"gemini-flash-lite","id":"google/gemini-2.5-flash-lite","knowledge":"2025-01","last_updated":"2025-06-17","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"Gemini 2.5 Flash-Lite","open_weights":false,"reasoning":true,"release_date":"2025-06-17","structured_output":true,"temperature":true,"tool_call":true},"google/gemini-2.5-pro":{"attachment":true,"cost":{"cache_read":0.125,"context_over_200k":{"cache_read":0.25,"input":2.5,"output":15},"input":1.25,"output":10,"tiers":[{"cache_read":0.25,"input":2.5,"output":15,"tier":{"size":200000,"type":"context"}}]},"family":"gemini-pro","id":"google/gemini-2.5-pro","knowledge":"2025-01","last_updated":"2025-06-05","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"Gemini 2.5 Pro","open_weights":false,"reasoning":true,"release_date":"2025-03-20","structured_output":true,"temperature":true,"tool_call":true},"google/gemini-3-flash-preview":{"attachment":true,"cost":{"cache_read":0.05,"input":0.5,"input_audio":1,"output":3},"family":"gemini-flash","id":"google/gemini-3-flash-preview","knowledge":"2025-01","last_updated":"2025-12-17","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"name":"Gemini 3 Flash Preview","open_weights":false,"reasoning":true,"release_date":"2025-12-17","structured_output":true,"temperature":true,"tool_call":true},"google/gemini-3-pro-preview":{"attachment":true,"cost":{"cache_read":0.2,"context_over_200k":{"cache_read":0.4,"input":4,"output":18},"input":2,"output":12,"tiers":[{"cache_read":0.4,"input":4,"output":18,"tier":{"size":200000,"type":"context"}}]},"family":"gemini-pro","id":"google/gemini-3-pro-preview","knowledge":"2025-01","last_updated":"2025-11-18","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"name":"Gemini 3 Pro Preview","open_weights":false,"reasoning":true,"release_date":"2025-11-18","structured_output":true,"temperature":true,"tool_call":true},"google/gemini-3.1-flash-lite":{"attachment":true,"cost":{"cache_read":0.025,"input":0.25,"input_audio":0.5,"output":1.5},"family":"gemini-flash-lite","id":"google/gemini-3.1-flash-lite","knowledge":"2025-01","last_updated":"2026-05-07","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"name":"Gemini 3.1 Flash Lite","open_weights":false,"reasoning":true,"release_date":"2026-05-07","structured_output":true,"temperature":true,"tool_call":true},"google/gemini-3.1-flash-lite-preview":{"attachment":true,"cost":{"cache_read":0.025,"input":0.25,"input_audio":0.5,"output":1.5},"family":"gemini-flash-lite","id":"google/gemini-3.1-flash-lite-preview","knowledge":"2025-01","last_updated":"2026-03-03","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"name":"Gemini 3.1 Flash Lite Preview","open_weights":false,"reasoning":true,"release_date":"2026-03-03","structured_output":true,"temperature":true,"tool_call":true},"google/gemini-3.1-pro-preview":{"attachment":true,"cost":{"cache_read":0.2,"context_over_200k":{"cache_read":0.4,"input":4,"output":18},"input":2,"output":12,"tiers":[{"cache_read":0.4,"input":4,"output":18,"tier":{"size":200000,"type":"context"}}]},"family":"gemini-pro","id":"google/gemini-3.1-pro-preview","knowledge":"2025-01","last_updated":"2026-02-19","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"name":"Gemini 3.1 Pro Preview","open_weights":false,"reasoning":true,"release_date":"2026-02-19","structured_output":true,"temperature":true,"tool_call":true},"google/gemini-3.1-pro-preview-customtools":{"attachment":true,"cost":{"cache_read":0.2,"context_over_200k":{"cache_read":0.4,"input":4,"output":18},"input":2,"output":12,"tiers":[{"cache_read":0.4,"input":4,"output":18,"tier":{"size":200000,"type":"context"}}]},"family":"gemini-pro","id":"google/gemini-3.1-pro-preview-customtools","knowledge":"2025-01","last_updated":"2026-02-19","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"name":"Gemini 3.1 Pro Preview Custom Tools","open_weights":false,"reasoning":true,"release_date":"2026-02-19","structured_output":true,"temperature":true,"tool_call":true},"google/gemini-3.5-flash":{"attachment":true,"cost":{"cache_read":0.15,"input":1.5,"input_audio":1.5,"output":9},"family":"gemini-flash","id":"google/gemini-3.5-flash","knowledge":"2025-01","last_updated":"2026-05-19","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"name":"Gemini 3.5 Flash","open_weights":false,"reasoning":true,"release_date":"2026-05-19","structured_output":true,"temperature":true,"tool_call":true},"google/gemini-flash-latest":{"attachment":true,"cost":{"cache_read":0.075,"input":0.3,"input_audio":1,"output":2.5},"family":"gemini-flash","id":"google/gemini-flash-latest","knowledge":"2025-01","last_updated":"2025-09-25","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"Gemini Flash Latest","open_weights":false,"reasoning":true,"release_date":"2025-09-25","structured_output":true,"temperature":true,"tool_call":true},"google/gemini-flash-lite-latest":{"attachment":true,"cost":{"cache_read":0.025,"input":0.1,"output":0.4},"family":"gemini-flash-lite","id":"google/gemini-flash-lite-latest","knowledge":"2025-01","last_updated":"2025-09-25","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"Gemini Flash-Lite Latest","open_weights":false,"reasoning":true,"release_date":"2025-09-25","structured_output":true,"temperature":true,"tool_call":true},"google/gemma-4-26b-a4b-it":{"attachment":true,"family":"gemma","id":"google/gemma-4-26b-a4b-it","last_updated":"2026-04-02","limit":{"context":262144,"output":32768},"modalities":{"input":["text","image"],"output":["text"]},"name":"Gemma 4 26B A4B IT","open_weights":true,"reasoning":true,"release_date":"2026-04-02","structured_output":true,"temperature":true,"tool_call":true},"google/gemma-4-31b-it":{"attachment":true,"family":"gemma","id":"google/gemma-4-31b-it","last_updated":"2026-04-02","limit":{"context":262144,"output":32768},"modalities":{"input":["text","image"],"output":["text"]},"name":"Gemma 4 31B IT","open_weights":true,"reasoning":true,"release_date":"2026-04-02","structured_output":true,"temperature":true,"tool_call":true},"minimax/minimax-m2":{"attachment":false,"cost":{"input":0.3,"output":1.2},"family":"minimax","id":"minimax/minimax-m2","last_updated":"2025-10-27","limit":{"context":196608,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2","open_weights":true,"reasoning":true,"release_date":"2025-10-27","temperature":true,"tool_call":true},"minimax/minimax-m2.1":{"attachment":false,"cost":{"input":0.3,"output":1.2},"family":"minimax","id":"minimax/minimax-m2.1","last_updated":"2025-12-23","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2.1","open_weights":true,"reasoning":true,"release_date":"2025-12-23","temperature":true,"tool_call":true},"minimax/minimax-m2.5":{"attachment":false,"cost":{"cache_read":0.03,"cache_write":0.375,"input":0.3,"output":1.2},"family":"minimax","id":"minimax/minimax-m2.5","last_updated":"2026-02-12","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2.5","open_weights":true,"reasoning":true,"release_date":"2026-02-12","temperature":true,"tool_call":true},"minimax/minimax-m2.5-highspeed":{"attachment":false,"cost":{"cache_read":0.06,"cache_write":0.375,"input":0.6,"output":2.4},"family":"minimax","id":"minimax/minimax-m2.5-highspeed","last_updated":"2026-02-13","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2.5-highspeed","open_weights":true,"reasoning":true,"release_date":"2026-02-13","temperature":true,"tool_call":true},"minimax/minimax-m2.7":{"attachment":false,"cost":{"cache_read":0.06,"cache_write":0.375,"input":0.3,"output":1.2},"family":"minimax","id":"minimax/minimax-m2.7","last_updated":"2026-03-18","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2.7","open_weights":true,"reasoning":true,"release_date":"2026-03-18","temperature":true,"tool_call":true},"minimax/minimax-m2.7-highspeed":{"attachment":false,"cost":{"cache_read":0.06,"cache_write":0.375,"input":0.6,"output":2.4},"family":"minimax","id":"minimax/minimax-m2.7-highspeed","last_updated":"2026-03-18","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2.7-highspeed","open_weights":true,"reasoning":true,"release_date":"2026-03-18","temperature":true,"tool_call":true},"mistral/codestral-latest":{"attachment":false,"cost":{"input":0.3,"output":0.9},"family":"codestral","id":"mistral/codestral-latest","knowledge":"2024-10","last_updated":"2025-01-04","limit":{"context":256000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Codestral (latest)","open_weights":true,"reasoning":false,"release_date":"2024-05-29","temperature":true,"tool_call":true},"mistral/devstral-2512":{"attachment":false,"cost":{"input":0.4,"output":2},"family":"devstral","id":"mistral/devstral-2512","knowledge":"2025-12","last_updated":"2025-12-09","limit":{"context":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Devstral 2","open_weights":true,"reasoning":false,"release_date":"2025-12-09","status":"deprecated","temperature":true,"tool_call":true},"mistral/devstral-medium-2507":{"attachment":false,"cost":{"input":0.4,"output":2},"family":"devstral","id":"mistral/devstral-medium-2507","knowledge":"2025-05","last_updated":"2025-07-10","limit":{"context":128000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"Devstral Medium","open_weights":true,"reasoning":false,"release_date":"2025-07-10","status":"deprecated","temperature":true,"tool_call":true},"mistral/devstral-medium-latest":{"attachment":false,"cost":{"input":0.4,"output":2},"family":"devstral","id":"mistral/devstral-medium-latest","knowledge":"2025-12","last_updated":"2025-12-02","limit":{"context":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Devstral 2 (latest)","open_weights":true,"reasoning":false,"release_date":"2025-12-02","status":"deprecated","temperature":true,"tool_call":true},"mistral/devstral-small-2507":{"attachment":false,"cost":{"input":0.1,"output":0.3},"family":"devstral","id":"mistral/devstral-small-2507","knowledge":"2025-05","last_updated":"2025-07-10","limit":{"context":128000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"Devstral Small","open_weights":true,"reasoning":false,"release_date":"2025-07-10","status":"deprecated","temperature":true,"tool_call":true},"mistral/magistral-medium-latest":{"attachment":false,"cost":{"input":2,"output":5},"family":"magistral-medium","id":"mistral/magistral-medium-latest","knowledge":"2025-06","last_updated":"2025-03-20","limit":{"context":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Magistral Medium (latest)","open_weights":true,"reasoning":true,"release_date":"2025-03-17","temperature":true,"tool_call":true},"mistral/mistral-large-2411":{"attachment":false,"cost":{"input":2,"output":6},"family":"mistral-large","id":"mistral/mistral-large-2411","knowledge":"2024-11","last_updated":"2024-11-04","limit":{"context":131072,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Mistral Large 2.1","open_weights":true,"reasoning":false,"release_date":"2024-11-01","temperature":true,"tool_call":true},"mistral/mistral-large-2512":{"attachment":true,"cost":{"input":0.5,"output":1.5},"family":"mistral-large","id":"mistral/mistral-large-2512","knowledge":"2024-11","last_updated":"2025-12-02","limit":{"context":262144,"output":262144},"modalities":{"input":["text","image"],"output":["text"]},"name":"Mistral Large 3","open_weights":true,"reasoning":false,"release_date":"2024-11-01","temperature":true,"tool_call":true},"mistral/mistral-large-latest":{"attachment":true,"cost":{"input":0.5,"output":1.5},"family":"mistral-large","id":"mistral/mistral-large-latest","knowledge":"2024-11","last_updated":"2025-12-02","limit":{"context":262144,"output":262144},"modalities":{"input":["text","image"],"output":["text"]},"name":"Mistral Large (latest)","open_weights":true,"reasoning":false,"release_date":"2024-11-01","temperature":true,"tool_call":true},"mistral/mistral-medium-2505":{"attachment":true,"cost":{"input":0.4,"output":2},"family":"mistral-medium","id":"mistral/mistral-medium-2505","knowledge":"2025-05","last_updated":"2025-05-07","limit":{"context":131072,"output":131072},"modalities":{"input":["text","image"],"output":["text"]},"name":"Mistral Medium 3","open_weights":false,"reasoning":false,"release_date":"2025-05-07","temperature":true,"tool_call":true},"mistral/mistral-medium-latest":{"attachment":true,"cost":{"input":1.5,"output":7.5},"family":"mistral-medium","id":"mistral/mistral-medium-latest","last_updated":"2026-04-29","limit":{"context":262144,"output":262144},"modalities":{"input":["text","image"],"output":["text"]},"name":"Mistral Medium (latest)","open_weights":true,"reasoning":true,"release_date":"2026-04-29","structured_output":true,"temperature":true,"tool_call":true},"mistral/mistral-small-latest":{"attachment":true,"cost":{"input":0.15,"output":0.6},"family":"mistral-small","id":"mistral/mistral-small-latest","knowledge":"2025-06","last_updated":"2026-03-16","limit":{"context":256000,"output":256000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Mistral Small (latest)","open_weights":true,"reasoning":true,"release_date":"2026-03-16","temperature":true,"tool_call":true},"mistral/pixtral-large-latest":{"attachment":true,"cost":{"input":2,"output":6},"family":"pixtral","id":"mistral/pixtral-large-latest","knowledge":"2024-11","last_updated":"2024-11-04","limit":{"context":128000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Pixtral Large (latest)","open_weights":true,"reasoning":false,"release_date":"2024-11-01","temperature":true,"tool_call":true},"openai/gpt-4.1":{"attachment":true,"cost":{"cache_read":0.5,"input":2,"output":8},"family":"gpt","id":"openai/gpt-4.1","knowledge":"2024-04","last_updated":"2025-04-14","limit":{"context":1047576,"output":32768},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-4.1","open_weights":false,"reasoning":false,"release_date":"2025-04-14","structured_output":true,"temperature":true,"tool_call":true},"openai/gpt-4.1-mini":{"attachment":true,"cost":{"cache_read":0.1,"input":0.4,"output":1.6},"family":"gpt-mini","id":"openai/gpt-4.1-mini","knowledge":"2024-04","last_updated":"2025-04-14","limit":{"context":1047576,"output":32768},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-4.1 mini","open_weights":false,"reasoning":false,"release_date":"2025-04-14","structured_output":true,"temperature":true,"tool_call":true},"openai/gpt-4.1-nano":{"attachment":true,"cost":{"cache_read":0.025,"input":0.1,"output":0.4},"family":"gpt-nano","id":"openai/gpt-4.1-nano","knowledge":"2024-04","last_updated":"2025-04-14","limit":{"context":1047576,"output":32768},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-4.1 nano","open_weights":false,"reasoning":false,"release_date":"2025-04-14","structured_output":true,"temperature":true,"tool_call":true},"openai/gpt-4o":{"attachment":true,"cost":{"cache_read":1.25,"input":2.5,"output":10},"family":"gpt","id":"openai/gpt-4o","knowledge":"2023-09","last_updated":"2024-08-06","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-4o","open_weights":false,"reasoning":false,"release_date":"2024-05-13","structured_output":true,"temperature":true,"tool_call":true},"openai/gpt-4o-2024-05-13":{"attachment":true,"cost":{"input":5,"output":15},"family":"gpt","id":"openai/gpt-4o-2024-05-13","knowledge":"2023-09","last_updated":"2024-05-13","limit":{"context":128000,"output":4096},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-4o (2024-05-13)","open_weights":false,"reasoning":false,"release_date":"2024-05-13","structured_output":true,"temperature":true,"tool_call":true},"openai/gpt-4o-2024-08-06":{"attachment":true,"cost":{"cache_read":1.25,"input":2.5,"output":10},"family":"gpt","id":"openai/gpt-4o-2024-08-06","knowledge":"2023-09","last_updated":"2024-08-06","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-4o (2024-08-06)","open_weights":false,"reasoning":false,"release_date":"2024-08-06","structured_output":true,"temperature":true,"tool_call":true},"openai/gpt-4o-2024-11-20":{"attachment":true,"cost":{"cache_read":1.25,"input":2.5,"output":10},"family":"gpt","id":"openai/gpt-4o-2024-11-20","knowledge":"2023-09","last_updated":"2024-11-20","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-4o (2024-11-20)","open_weights":false,"reasoning":false,"release_date":"2024-11-20","structured_output":true,"temperature":true,"tool_call":true},"openai/gpt-4o-mini":{"attachment":true,"cost":{"cache_read":0.075,"input":0.15,"output":0.6},"family":"gpt-mini","id":"openai/gpt-4o-mini","knowledge":"2023-09","last_updated":"2024-07-18","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-4o mini","open_weights":false,"reasoning":false,"release_date":"2024-07-18","structured_output":true,"temperature":true,"tool_call":true},"openai/gpt-5":{"attachment":true,"cost":{"cache_read":0.125,"input":1.25,"output":10},"family":"gpt","id":"openai/gpt-5","knowledge":"2024-09-30","last_updated":"2025-08-07","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5","open_weights":false,"reasoning":true,"release_date":"2025-08-07","structured_output":true,"temperature":false,"tool_call":true},"openai/gpt-5-chat-latest":{"attachment":true,"cost":{"cache_read":0.125,"input":1.25,"output":10},"family":"gpt-codex","id":"openai/gpt-5-chat-latest","knowledge":"2024-09-30","last_updated":"2025-08-07","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5 Chat (latest)","open_weights":false,"reasoning":true,"release_date":"2025-08-07","structured_output":true,"temperature":true,"tool_call":false},"openai/gpt-5-mini":{"attachment":true,"cost":{"cache_read":0.025,"input":0.25,"output":2},"family":"gpt-mini","id":"openai/gpt-5-mini","knowledge":"2024-05-30","last_updated":"2025-08-07","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5 Mini","open_weights":false,"reasoning":true,"release_date":"2025-08-07","structured_output":true,"temperature":false,"tool_call":true},"openai/gpt-5-nano":{"attachment":true,"cost":{"cache_read":0.005,"input":0.05,"output":0.4},"family":"gpt-nano","id":"openai/gpt-5-nano","knowledge":"2024-05-30","last_updated":"2025-08-07","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5 Nano","open_weights":false,"reasoning":true,"release_date":"2025-08-07","structured_output":true,"temperature":false,"tool_call":true},"openai/gpt-5.1":{"attachment":true,"cost":{"cache_read":0.125,"input":1.25,"output":10},"family":"gpt","id":"openai/gpt-5.1","knowledge":"2024-09-30","last_updated":"2025-11-13","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.1","open_weights":false,"reasoning":true,"release_date":"2025-11-13","structured_output":true,"temperature":false,"tool_call":true},"openai/gpt-5.1-chat-latest":{"attachment":true,"cost":{"cache_read":0.125,"input":1.25,"output":10},"family":"gpt-codex","id":"openai/gpt-5.1-chat-latest","knowledge":"2024-09-30","last_updated":"2025-11-13","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.1 Chat","open_weights":false,"reasoning":true,"release_date":"2025-11-13","structured_output":true,"temperature":false,"tool_call":true},"openai/gpt-5.2":{"attachment":true,"cost":{"cache_read":0.175,"input":1.75,"output":14},"family":"gpt","id":"openai/gpt-5.2","knowledge":"2025-08-31","last_updated":"2025-12-11","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.2","open_weights":false,"reasoning":true,"release_date":"2025-12-11","structured_output":true,"temperature":false,"tool_call":true},"openai/gpt-5.2-chat-latest":{"attachment":true,"cost":{"cache_read":0.175,"input":1.75,"output":14},"family":"gpt-codex","id":"openai/gpt-5.2-chat-latest","knowledge":"2025-08-31","last_updated":"2025-12-11","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.2 Chat","open_weights":false,"reasoning":true,"release_date":"2025-12-11","structured_output":true,"temperature":false,"tool_call":true},"openai/gpt-5.3-chat-latest":{"attachment":true,"cost":{"cache_read":0.175,"input":1.75,"output":14},"family":"gpt","id":"openai/gpt-5.3-chat-latest","knowledge":"2025-08-31","last_updated":"2026-03-03","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.3 Chat (latest)","open_weights":false,"reasoning":false,"release_date":"2026-03-03","structured_output":true,"temperature":true,"tool_call":true},"openai/gpt-5.4":{"attachment":true,"cost":{"cache_read":0.25,"context_over_200k":{"cache_read":0.5,"input":5,"output":22.5},"input":2.5,"output":15,"tiers":[{"cache_read":0.5,"input":5,"output":22.5,"tier":{"size":272000,"type":"context"}}]},"experimental":{"modes":{"fast":{"cost":{"cache_read":0.5,"input":5,"output":30},"provider":{"body":{"service_tier":"priority"}}}}},"family":"gpt","id":"openai/gpt-5.4","knowledge":"2025-08-31","last_updated":"2026-03-05","limit":{"context":1050000,"input":922000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5.4","open_weights":false,"reasoning":true,"release_date":"2026-03-05","structured_output":true,"temperature":false,"tool_call":true},"openai/gpt-5.4-mini":{"attachment":true,"cost":{"cache_read":0.075,"input":0.75,"output":4.5},"experimental":{"modes":{"fast":{"cost":{"cache_read":0.15,"input":1.5,"output":9},"provider":{"body":{"service_tier":"priority"}}}}},"family":"gpt-mini","id":"openai/gpt-5.4-mini","knowledge":"2025-08-31","last_updated":"2026-03-17","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.4 mini","open_weights":false,"reasoning":true,"release_date":"2026-03-17","structured_output":true,"temperature":false,"tool_call":true},"openai/gpt-5.4-nano":{"attachment":true,"cost":{"cache_read":0.02,"input":0.2,"output":1.25},"family":"gpt-nano","id":"openai/gpt-5.4-nano","knowledge":"2025-08-31","last_updated":"2026-03-17","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.4 nano","open_weights":false,"reasoning":true,"release_date":"2026-03-17","structured_output":true,"temperature":false,"tool_call":true},"openai/gpt-5.5":{"attachment":true,"cost":{"cache_read":0.5,"context_over_200k":{"cache_read":1,"input":10,"output":45},"input":5,"output":30,"tiers":[{"cache_read":1,"input":10,"output":45,"tier":{"size":272000,"type":"context"}}]},"experimental":{"modes":{"fast":{"cost":{"cache_read":1.25,"input":12.5,"output":75},"provider":{"body":{"service_tier":"priority"}}}}},"family":"gpt","id":"openai/gpt-5.5","knowledge":"2025-12-01","last_updated":"2026-04-23","limit":{"context":1050000,"input":922000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5.5","open_weights":false,"reasoning":true,"release_date":"2026-04-23","structured_output":true,"temperature":false,"tool_call":true},"openai/o1":{"attachment":true,"cost":{"cache_read":7.5,"input":15,"output":60},"family":"o","id":"openai/o1","knowledge":"2023-09","last_updated":"2024-12-05","limit":{"context":200000,"output":100000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"o1","open_weights":false,"reasoning":true,"release_date":"2024-12-05","structured_output":true,"temperature":false,"tool_call":true},"openai/o3":{"attachment":true,"cost":{"cache_read":0.5,"input":2,"output":8},"family":"o","id":"openai/o3","knowledge":"2024-05","last_updated":"2025-04-16","limit":{"context":200000,"output":100000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"o3","open_weights":false,"reasoning":true,"release_date":"2025-04-16","structured_output":true,"temperature":false,"tool_call":true},"openai/o3-mini":{"attachment":false,"cost":{"cache_read":0.55,"input":1.1,"output":4.4},"family":"o-mini","id":"openai/o3-mini","knowledge":"2024-05","last_updated":"2025-01-29","limit":{"context":200000,"output":100000},"modalities":{"input":["text"],"output":["text"]},"name":"o3-mini","open_weights":false,"reasoning":true,"release_date":"2024-12-20","structured_output":true,"temperature":false,"tool_call":true},"openai/o4-mini":{"attachment":true,"cost":{"cache_read":0.275,"input":1.1,"output":4.4},"family":"o-mini","id":"openai/o4-mini","knowledge":"2024-05","last_updated":"2025-04-16","limit":{"context":200000,"output":100000},"modalities":{"input":["text","image"],"output":["text"]},"name":"o4-mini","open_weights":false,"reasoning":true,"release_date":"2025-04-16","structured_output":true,"temperature":false,"tool_call":true},"xai/grok-4.20-0309-reasoning":{"attachment":true,"cost":{"cache_read":0.2,"context_over_200k":{"cache_read":0.4,"input":2.5,"output":5},"input":1.25,"output":2.5,"tiers":[{"cache_read":0.4,"input":2.5,"output":5,"tier":{"size":200000,"type":"context"}}]},"family":"grok","id":"xai/grok-4.20-0309-reasoning","last_updated":"2026-03-09","limit":{"context":2000000,"output":30000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Grok 4.20 (Reasoning)","open_weights":false,"reasoning":true,"release_date":"2026-03-09","temperature":true,"tool_call":true},"xai/grok-4.3":{"attachment":true,"cost":{"cache_read":0.2,"context_over_200k":{"cache_read":0.4,"input":2.5,"output":5},"input":1.25,"output":2.5,"tiers":[{"cache_read":0.4,"input":2.5,"output":5,"tier":{"size":200000,"type":"context"}}]},"family":"grok","id":"xai/grok-4.3","last_updated":"2026-04-17","limit":{"context":1000000,"output":30000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Grok 4.3","open_weights":false,"reasoning":true,"release_date":"2026-04-17","temperature":true,"tool_call":true},"zai/glm-4.5":{"attachment":false,"cost":{"cache_read":0.11,"cache_write":0,"input":0.6,"output":2.2},"family":"glm","id":"zai/glm-4.5","knowledge":"2025-04","last_updated":"2025-07-28","limit":{"context":131072,"output":98304},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4.5","open_weights":true,"reasoning":true,"release_date":"2025-07-28","temperature":true,"tool_call":true},"zai/glm-4.5-air":{"attachment":false,"cost":{"cache_read":0.03,"cache_write":0,"input":0.2,"output":1.1},"family":"glm-air","id":"zai/glm-4.5-air","knowledge":"2025-04","last_updated":"2025-07-28","limit":{"context":131072,"output":98304},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4.5-Air","open_weights":true,"reasoning":true,"release_date":"2025-07-28","temperature":true,"tool_call":true},"zai/glm-4.6":{"attachment":false,"cost":{"cache_read":0.11,"cache_write":0,"input":0.6,"output":2.2},"family":"glm","id":"zai/glm-4.6","knowledge":"2025-04","last_updated":"2025-09-30","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4.6","open_weights":true,"reasoning":true,"release_date":"2025-09-30","temperature":true,"tool_call":true},"zai/glm-4.7":{"attachment":false,"cost":{"cache_read":0.11,"cache_write":0,"input":0.6,"output":2.2},"family":"glm","id":"zai/glm-4.7","interleaved":{"field":"reasoning_content"},"knowledge":"2025-04","last_updated":"2025-12-22","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4.7","open_weights":true,"reasoning":true,"release_date":"2025-12-22","temperature":true,"tool_call":true},"zai/glm-4.7-flashx":{"attachment":false,"cost":{"cache_read":0.01,"cache_write":0,"input":0.07,"output":0.4},"family":"glm-flash","id":"zai/glm-4.7-flashx","knowledge":"2025-04","last_updated":"2026-01-19","limit":{"context":200000,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4.7-FlashX","open_weights":true,"reasoning":true,"release_date":"2026-01-19","temperature":true,"tool_call":true},"zai/glm-5":{"attachment":false,"cost":{"cache_read":0.2,"cache_write":0,"input":1,"output":3.2},"family":"glm","id":"zai/glm-5","interleaved":{"field":"reasoning_content"},"last_updated":"2026-02-11","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-5","open_weights":true,"reasoning":true,"release_date":"2026-02-11","temperature":true,"tool_call":true},"zai/glm-5-turbo":{"attachment":false,"cost":{"cache_read":0.24,"cache_write":0,"input":1.2,"output":4},"family":"glm","id":"zai/glm-5-turbo","interleaved":{"field":"reasoning_content"},"last_updated":"2026-03-16","limit":{"context":200000,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-5-Turbo","open_weights":false,"reasoning":true,"release_date":"2026-03-16","structured_output":true,"temperature":true,"tool_call":true},"zai/glm-5.1":{"attachment":false,"cost":{"cache_read":0.26,"cache_write":0,"input":1.4,"output":4.4},"family":"glm","id":"zai/glm-5.1","interleaved":{"field":"reasoning_content"},"last_updated":"2026-03-27","limit":{"context":200000,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-5.1","open_weights":false,"reasoning":true,"release_date":"2026-03-27","structured_output":true,"temperature":true,"tool_call":true}},"name":"Merge Gateway","npm":"merge-gateway-ai-sdk-provider"},"minimax":{"api":"https://api.minimax.io/anthropic/v1","doc":"https://platform.minimax.io/docs/guides/quickstart","env":["MINIMAX_API_KEY"],"id":"minimax","models":{"MiniMax-M2":{"attachment":false,"cost":{"input":0.3,"output":1.2},"family":"minimax","id":"MiniMax-M2","last_updated":"2025-10-27","limit":{"context":196608,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2","open_weights":true,"reasoning":true,"release_date":"2025-10-27","temperature":true,"tool_call":true},"MiniMax-M2.1":{"attachment":false,"cost":{"input":0.3,"output":1.2},"family":"minimax","id":"MiniMax-M2.1","last_updated":"2025-12-23","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2.1","open_weights":true,"reasoning":true,"release_date":"2025-12-23","temperature":true,"tool_call":true},"MiniMax-M2.5":{"attachment":false,"cost":{"cache_read":0.03,"cache_write":0.375,"input":0.3,"output":1.2},"family":"minimax","id":"MiniMax-M2.5","last_updated":"2026-02-12","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2.5","open_weights":true,"reasoning":true,"release_date":"2026-02-12","temperature":true,"tool_call":true},"MiniMax-M2.5-highspeed":{"attachment":false,"cost":{"cache_read":0.06,"cache_write":0.375,"input":0.6,"output":2.4},"family":"minimax","id":"MiniMax-M2.5-highspeed","last_updated":"2026-02-13","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2.5-highspeed","open_weights":true,"reasoning":true,"release_date":"2026-02-13","temperature":true,"tool_call":true},"MiniMax-M2.7":{"attachment":false,"cost":{"cache_read":0.06,"cache_write":0.375,"input":0.3,"output":1.2},"family":"minimax","id":"MiniMax-M2.7","last_updated":"2026-03-18","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2.7","open_weights":true,"reasoning":true,"release_date":"2026-03-18","temperature":true,"tool_call":true},"MiniMax-M2.7-highspeed":{"attachment":false,"cost":{"cache_read":0.06,"cache_write":0.375,"input":0.6,"output":2.4},"family":"minimax","id":"MiniMax-M2.7-highspeed","last_updated":"2026-03-18","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2.7-highspeed","open_weights":true,"reasoning":true,"release_date":"2026-03-18","temperature":true,"tool_call":true},"MiniMax-M3":{"attachment":true,"cost":{"cache_read":0.12,"input":0.6,"output":2.4},"family":"minimax","id":"MiniMax-M3","last_updated":"2026-06-01","limit":{"context":512000,"output":128000},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"MiniMax-M3","open_weights":true,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"release_date":"2026-06-01","temperature":true,"tool_call":true}},"name":"MiniMax (minimax.io)","npm":"@ai-sdk/anthropic"},"minimax-cn":{"api":"https://api.minimaxi.com/anthropic/v1","doc":"https://platform.minimaxi.com/docs/guides/quickstart","env":["MINIMAX_API_KEY"],"id":"minimax-cn","models":{"MiniMax-M2":{"attachment":false,"cost":{"input":0.3,"output":1.2},"family":"minimax","id":"MiniMax-M2","last_updated":"2025-10-27","limit":{"context":196608,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2","open_weights":true,"reasoning":true,"release_date":"2025-10-27","temperature":true,"tool_call":true},"MiniMax-M2.1":{"attachment":false,"cost":{"input":0.3,"output":1.2},"family":"minimax","id":"MiniMax-M2.1","last_updated":"2025-12-23","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2.1","open_weights":true,"reasoning":true,"release_date":"2025-12-23","temperature":true,"tool_call":true},"MiniMax-M2.5":{"attachment":false,"cost":{"cache_read":0.03,"cache_write":0.375,"input":0.3,"output":1.2},"family":"minimax","id":"MiniMax-M2.5","last_updated":"2026-02-12","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2.5","open_weights":true,"reasoning":true,"release_date":"2026-02-12","temperature":true,"tool_call":true},"MiniMax-M2.5-highspeed":{"attachment":false,"cost":{"cache_read":0.06,"cache_write":0.375,"input":0.6,"output":2.4},"family":"minimax","id":"MiniMax-M2.5-highspeed","last_updated":"2026-02-13","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2.5-highspeed","open_weights":true,"reasoning":true,"release_date":"2026-02-13","temperature":true,"tool_call":true},"MiniMax-M2.7":{"attachment":false,"cost":{"cache_read":0.06,"cache_write":0.375,"input":0.3,"output":1.2},"family":"minimax","id":"MiniMax-M2.7","last_updated":"2026-03-18","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2.7","open_weights":true,"reasoning":true,"release_date":"2026-03-18","temperature":true,"tool_call":true},"MiniMax-M2.7-highspeed":{"attachment":false,"cost":{"cache_read":0.06,"cache_write":0.375,"input":0.6,"output":2.4},"family":"minimax","id":"MiniMax-M2.7-highspeed","last_updated":"2026-03-18","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2.7-highspeed","open_weights":true,"reasoning":true,"release_date":"2026-03-18","temperature":true,"tool_call":true},"MiniMax-M3":{"attachment":true,"cost":{"cache_read":0.12,"input":0.6,"output":2.4},"family":"minimax","id":"MiniMax-M3","last_updated":"2026-06-01","limit":{"context":512000,"output":128000},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"MiniMax-M3","open_weights":true,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"release_date":"2026-06-01","temperature":true,"tool_call":true}},"name":"MiniMax (minimaxi.com)","npm":"@ai-sdk/anthropic"},"minimax-cn-coding-plan":{"api":"https://api.minimaxi.com/anthropic/v1","doc":"https://platform.minimaxi.com/docs/token-plan/intro","env":["MINIMAX_API_KEY"],"id":"minimax-cn-coding-plan","models":{"MiniMax-M2":{"attachment":false,"cost":{"input":0,"output":0},"family":"minimax","id":"MiniMax-M2","last_updated":"2025-10-27","limit":{"context":196608,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2","open_weights":true,"reasoning":true,"release_date":"2025-10-27","temperature":true,"tool_call":true},"MiniMax-M2.1":{"attachment":false,"cost":{"input":0,"output":0},"family":"minimax","id":"MiniMax-M2.1","last_updated":"2025-12-23","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2.1","open_weights":true,"reasoning":true,"release_date":"2025-12-23","temperature":true,"tool_call":true},"MiniMax-M2.5":{"attachment":false,"cost":{"cache_read":0,"cache_write":0,"input":0,"output":0},"family":"minimax","id":"MiniMax-M2.5","last_updated":"2026-02-12","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2.5","open_weights":true,"reasoning":true,"release_date":"2026-02-12","temperature":true,"tool_call":true},"MiniMax-M2.5-highspeed":{"attachment":false,"cost":{"cache_read":0,"cache_write":0,"input":0,"output":0},"family":"minimax","id":"MiniMax-M2.5-highspeed","last_updated":"2026-02-13","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2.5-highspeed","open_weights":true,"reasoning":true,"release_date":"2026-02-13","temperature":true,"tool_call":true},"MiniMax-M2.7":{"attachment":false,"cost":{"cache_read":0,"cache_write":0,"input":0,"output":0},"family":"minimax","id":"MiniMax-M2.7","last_updated":"2026-03-18","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2.7","open_weights":true,"reasoning":true,"release_date":"2026-03-18","temperature":true,"tool_call":true},"MiniMax-M2.7-highspeed":{"attachment":false,"cost":{"cache_read":0,"cache_write":0,"input":0,"output":0},"family":"minimax","id":"MiniMax-M2.7-highspeed","last_updated":"2026-03-18","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2.7-highspeed","open_weights":true,"reasoning":true,"release_date":"2026-03-18","temperature":true,"tool_call":true},"MiniMax-M3":{"attachment":true,"cost":{"cache_read":0,"cache_write":0,"input":0,"output":0},"family":"minimax","id":"MiniMax-M3","last_updated":"2026-06-01","limit":{"context":512000,"output":128000},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"MiniMax-M3","open_weights":true,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"release_date":"2026-06-01","temperature":true,"tool_call":true}},"name":"MiniMax Token Plan (minimaxi.com)","npm":"@ai-sdk/anthropic"},"minimax-coding-plan":{"api":"https://api.minimax.io/anthropic/v1","doc":"https://platform.minimax.io/docs/token-plan/intro","env":["MINIMAX_API_KEY"],"id":"minimax-coding-plan","models":{"MiniMax-M2":{"attachment":false,"cost":{"input":0,"output":0},"family":"minimax","id":"MiniMax-M2","last_updated":"2025-10-27","limit":{"context":196608,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2","open_weights":true,"reasoning":true,"release_date":"2025-10-27","temperature":true,"tool_call":true},"MiniMax-M2.1":{"attachment":false,"cost":{"input":0,"output":0},"family":"minimax","id":"MiniMax-M2.1","last_updated":"2025-12-23","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2.1","open_weights":true,"reasoning":true,"release_date":"2025-12-23","temperature":true,"tool_call":true},"MiniMax-M2.5":{"attachment":false,"cost":{"cache_read":0,"cache_write":0,"input":0,"output":0},"family":"minimax","id":"MiniMax-M2.5","last_updated":"2026-02-12","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2.5","open_weights":true,"reasoning":true,"release_date":"2026-02-12","temperature":true,"tool_call":true},"MiniMax-M2.5-highspeed":{"attachment":false,"cost":{"cache_read":0,"cache_write":0,"input":0,"output":0},"family":"minimax","id":"MiniMax-M2.5-highspeed","last_updated":"2026-02-13","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2.5-highspeed","open_weights":true,"reasoning":true,"release_date":"2026-02-13","temperature":true,"tool_call":true},"MiniMax-M2.7":{"attachment":false,"cost":{"cache_read":0,"cache_write":0,"input":0,"output":0},"family":"minimax","id":"MiniMax-M2.7","last_updated":"2026-03-18","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2.7","open_weights":true,"reasoning":true,"release_date":"2026-03-18","temperature":true,"tool_call":true},"MiniMax-M2.7-highspeed":{"attachment":false,"cost":{"cache_read":0,"cache_write":0,"input":0,"output":0},"family":"minimax","id":"MiniMax-M2.7-highspeed","last_updated":"2026-03-18","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2.7-highspeed","open_weights":true,"reasoning":true,"release_date":"2026-03-18","temperature":true,"tool_call":true},"MiniMax-M3":{"attachment":true,"cost":{"cache_read":0,"cache_write":0,"input":0,"output":0},"family":"minimax","id":"MiniMax-M3","last_updated":"2026-06-01","limit":{"context":512000,"output":128000},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"MiniMax-M3","open_weights":true,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"release_date":"2026-06-01","temperature":true,"tool_call":true}},"name":"MiniMax Token Plan (minimax.io)","npm":"@ai-sdk/anthropic"},"mistral":{"doc":"https://docs.mistral.ai/getting-started/models/","env":["MISTRAL_API_KEY"],"id":"mistral","models":{"codestral-latest":{"attachment":false,"cost":{"input":0.3,"output":0.9},"family":"codestral","id":"codestral-latest","knowledge":"2024-10","last_updated":"2025-01-04","limit":{"context":256000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Codestral (latest)","open_weights":true,"reasoning":false,"release_date":"2024-05-29","temperature":true,"tool_call":true},"devstral-2512":{"attachment":false,"cost":{"input":0.4,"output":2},"family":"devstral","id":"devstral-2512","knowledge":"2025-12","last_updated":"2025-12-09","limit":{"context":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Devstral 2","open_weights":true,"reasoning":false,"release_date":"2025-12-09","status":"deprecated","temperature":true,"tool_call":true},"devstral-latest":{"attachment":false,"cost":{"input":0.4,"output":2},"family":"devstral","id":"devstral-latest","knowledge":"2025-12","last_updated":"2025-12-09","limit":{"context":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Devstral 2","open_weights":true,"reasoning":false,"release_date":"2025-12-09","status":"deprecated","temperature":true,"tool_call":true},"devstral-medium-2507":{"attachment":false,"cost":{"input":0.4,"output":2},"family":"devstral","id":"devstral-medium-2507","knowledge":"2025-05","last_updated":"2025-07-10","limit":{"context":128000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"Devstral Medium","open_weights":true,"reasoning":false,"release_date":"2025-07-10","status":"deprecated","temperature":true,"tool_call":true},"devstral-medium-latest":{"attachment":false,"cost":{"input":0.4,"output":2},"family":"devstral","id":"devstral-medium-latest","knowledge":"2025-12","last_updated":"2025-12-02","limit":{"context":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Devstral 2 (latest)","open_weights":true,"reasoning":false,"release_date":"2025-12-02","status":"deprecated","temperature":true,"tool_call":true},"devstral-small-2505":{"attachment":false,"cost":{"input":0.1,"output":0.3},"family":"devstral","id":"devstral-small-2505","knowledge":"2025-05","last_updated":"2025-05-07","limit":{"context":128000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"Devstral Small 2505","open_weights":true,"reasoning":false,"release_date":"2025-05-07","status":"deprecated","temperature":true,"tool_call":true},"devstral-small-2507":{"attachment":false,"cost":{"input":0.1,"output":0.3},"family":"devstral","id":"devstral-small-2507","knowledge":"2025-05","last_updated":"2025-07-10","limit":{"context":128000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"Devstral Small","open_weights":true,"reasoning":false,"release_date":"2025-07-10","status":"deprecated","temperature":true,"tool_call":true},"labs-devstral-small-2512":{"attachment":false,"cost":{"input":0,"output":0},"family":"devstral","id":"labs-devstral-small-2512","knowledge":"2025-12","last_updated":"2025-12-09","limit":{"context":256000,"output":256000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Devstral Small 2","open_weights":true,"reasoning":false,"release_date":"2025-12-09","status":"deprecated","temperature":true,"tool_call":true},"magistral-medium-latest":{"attachment":false,"cost":{"input":2,"output":5},"family":"magistral-medium","id":"magistral-medium-latest","knowledge":"2025-06","last_updated":"2025-03-20","limit":{"context":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Magistral Medium (latest)","open_weights":true,"reasoning":true,"release_date":"2025-03-17","temperature":true,"tool_call":true},"magistral-small":{"attachment":false,"cost":{"input":0.5,"output":1.5},"family":"magistral-small","id":"magistral-small","knowledge":"2025-06","last_updated":"2025-03-17","limit":{"context":128000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"Magistral Small","open_weights":true,"reasoning":true,"release_date":"2025-03-17","temperature":true,"tool_call":true},"ministral-3b-latest":{"attachment":false,"cost":{"input":0.04,"output":0.04},"family":"ministral","id":"ministral-3b-latest","knowledge":"2024-10","last_updated":"2024-10-04","limit":{"context":128000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"Ministral 3B (latest)","open_weights":true,"reasoning":false,"release_date":"2024-10-01","temperature":true,"tool_call":true},"ministral-8b-latest":{"attachment":false,"cost":{"input":0.1,"output":0.1},"family":"ministral","id":"ministral-8b-latest","knowledge":"2024-10","last_updated":"2024-10-04","limit":{"context":128000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"Ministral 8B (latest)","open_weights":true,"reasoning":false,"release_date":"2024-10-01","temperature":true,"tool_call":true},"mistral-embed":{"attachment":false,"cost":{"input":0.1,"output":0},"family":"mistral-embed","id":"mistral-embed","last_updated":"2023-12-11","limit":{"context":8000,"output":3072},"modalities":{"input":["text"],"output":["text"]},"name":"Mistral Embed","open_weights":false,"reasoning":false,"release_date":"2023-12-11","temperature":false,"tool_call":false},"mistral-large-2411":{"attachment":false,"cost":{"input":2,"output":6},"family":"mistral-large","id":"mistral-large-2411","knowledge":"2024-11","last_updated":"2024-11-04","limit":{"context":131072,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Mistral Large 2.1","open_weights":true,"reasoning":false,"release_date":"2024-11-01","temperature":true,"tool_call":true},"mistral-large-2512":{"attachment":true,"cost":{"input":0.5,"output":1.5},"family":"mistral-large","id":"mistral-large-2512","knowledge":"2024-11","last_updated":"2025-12-02","limit":{"context":262144,"output":262144},"modalities":{"input":["text","image"],"output":["text"]},"name":"Mistral Large 3","open_weights":true,"reasoning":false,"release_date":"2024-11-01","temperature":true,"tool_call":true},"mistral-large-latest":{"attachment":true,"cost":{"input":0.5,"output":1.5},"family":"mistral-large","id":"mistral-large-latest","knowledge":"2024-11","last_updated":"2025-12-02","limit":{"context":262144,"output":262144},"modalities":{"input":["text","image"],"output":["text"]},"name":"Mistral Large (latest)","open_weights":true,"reasoning":false,"release_date":"2024-11-01","temperature":true,"tool_call":true},"mistral-medium-2505":{"attachment":true,"cost":{"input":0.4,"output":2},"family":"mistral-medium","id":"mistral-medium-2505","knowledge":"2025-05","last_updated":"2025-05-07","limit":{"context":131072,"output":131072},"modalities":{"input":["text","image"],"output":["text"]},"name":"Mistral Medium 3","open_weights":false,"reasoning":false,"release_date":"2025-05-07","temperature":true,"tool_call":true},"mistral-medium-2508":{"attachment":true,"cost":{"input":0.4,"output":2},"family":"mistral-medium","id":"mistral-medium-2508","knowledge":"2025-05","last_updated":"2025-08-12","limit":{"context":262144,"output":262144},"modalities":{"input":["text","image"],"output":["text"]},"name":"Mistral Medium 3.1","open_weights":false,"reasoning":false,"release_date":"2025-08-12","temperature":true,"tool_call":true},"mistral-medium-2604":{"attachment":true,"cost":{"input":1.5,"output":7.5},"family":"mistral-medium","id":"mistral-medium-2604","last_updated":"2026-04-29","limit":{"context":262144,"output":262144},"modalities":{"input":["text","image"],"output":["text"]},"name":"Mistral Medium 3.5","open_weights":true,"reasoning":true,"release_date":"2026-04-29","structured_output":true,"temperature":true,"tool_call":true},"mistral-medium-latest":{"attachment":true,"cost":{"input":1.5,"output":7.5},"family":"mistral-medium","id":"mistral-medium-latest","last_updated":"2026-04-29","limit":{"context":262144,"output":262144},"modalities":{"input":["text","image"],"output":["text"]},"name":"Mistral Medium (latest)","open_weights":true,"reasoning":true,"release_date":"2026-04-29","structured_output":true,"temperature":true,"tool_call":true},"mistral-nemo":{"attachment":false,"cost":{"input":0.15,"output":0.15},"family":"mistral-nemo","id":"mistral-nemo","knowledge":"2024-07","last_updated":"2024-07-01","limit":{"context":128000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"Mistral Nemo","open_weights":true,"reasoning":false,"release_date":"2024-07-01","temperature":true,"tool_call":true},"mistral-small-2506":{"attachment":false,"cost":{"input":0.1,"output":0.3},"family":"mistral-small","id":"mistral-small-2506","knowledge":"2025-03","last_updated":"2025-06-20","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"Mistral Small 3.2","open_weights":true,"reasoning":false,"release_date":"2025-06-20","temperature":true,"tool_call":true},"mistral-small-2603":{"attachment":true,"cost":{"input":0.15,"output":0.6},"family":"mistral-small","id":"mistral-small-2603","knowledge":"2025-06","last_updated":"2026-03-16","limit":{"context":256000,"output":256000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Mistral Small 4","open_weights":true,"reasoning":true,"release_date":"2026-03-16","temperature":true,"tool_call":true},"mistral-small-latest":{"attachment":true,"cost":{"input":0.15,"output":0.6},"family":"mistral-small","id":"mistral-small-latest","knowledge":"2025-06","last_updated":"2026-03-16","limit":{"context":256000,"output":256000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Mistral Small (latest)","open_weights":true,"reasoning":true,"release_date":"2026-03-16","temperature":true,"tool_call":true},"open-mistral-7b":{"attachment":false,"cost":{"input":0.25,"output":0.25},"family":"mistral","id":"open-mistral-7b","knowledge":"2023-12","last_updated":"2023-09-27","limit":{"context":8000,"output":8000},"modalities":{"input":["text"],"output":["text"]},"name":"Mistral 7B","open_weights":true,"reasoning":false,"release_date":"2023-09-27","temperature":true,"tool_call":true},"open-mistral-nemo":{"attachment":false,"cost":{"input":0.15,"output":0.15},"family":"mistral-nemo","id":"open-mistral-nemo","knowledge":"2024-07","last_updated":"2024-07-01","limit":{"context":128000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"Open Mistral Nemo","open_weights":true,"reasoning":false,"release_date":"2024-07-01","status":"deprecated","temperature":true,"tool_call":true},"open-mixtral-8x22b":{"attachment":false,"cost":{"input":2,"output":6},"family":"mixtral","id":"open-mixtral-8x22b","knowledge":"2024-04","last_updated":"2024-04-17","limit":{"context":64000,"output":64000},"modalities":{"input":["text"],"output":["text"]},"name":"Mixtral 8x22B","open_weights":true,"reasoning":false,"release_date":"2024-04-17","temperature":true,"tool_call":true},"open-mixtral-8x7b":{"attachment":false,"cost":{"input":0.7,"output":0.7},"family":"mixtral","id":"open-mixtral-8x7b","knowledge":"2024-01","last_updated":"2023-12-11","limit":{"context":32000,"output":32000},"modalities":{"input":["text"],"output":["text"]},"name":"Mixtral 8x7B","open_weights":true,"reasoning":false,"release_date":"2023-12-11","temperature":true,"tool_call":true},"pixtral-12b":{"attachment":true,"cost":{"input":0.15,"output":0.15},"family":"pixtral","id":"pixtral-12b","knowledge":"2024-09","last_updated":"2024-09-01","limit":{"context":128000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Pixtral 12B","open_weights":true,"reasoning":false,"release_date":"2024-09-01","temperature":true,"tool_call":true},"pixtral-large-latest":{"attachment":true,"cost":{"input":2,"output":6},"family":"pixtral","id":"pixtral-large-latest","knowledge":"2024-11","last_updated":"2024-11-04","limit":{"context":128000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Pixtral Large (latest)","open_weights":true,"reasoning":false,"release_date":"2024-11-01","temperature":true,"tool_call":true}},"name":"Mistral","npm":"@ai-sdk/mistral"},"mixlayer":{"api":"https://models.mixlayer.ai/v1","doc":"https://docs.mixlayer.com","env":["MIXLAYER_API_KEY"],"id":"mixlayer","models":{"qwen/qwen3.5-122b-a10b":{"attachment":false,"cost":{"input":0.4,"output":3.2},"family":"qwen","id":"qwen/qwen3.5-122b-a10b","last_updated":"2026-03-18","limit":{"context":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3.5 122B A10B","open_weights":true,"reasoning":true,"release_date":"2026-03-18","temperature":true,"tool_call":true},"qwen/qwen3.5-27b":{"attachment":false,"cost":{"input":0.3,"output":2.4},"family":"qwen","id":"qwen/qwen3.5-27b","last_updated":"2026-03-18","limit":{"context":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3.5 27B","open_weights":true,"reasoning":true,"release_date":"2026-03-18","temperature":true,"tool_call":true},"qwen/qwen3.5-35b-a3b":{"attachment":false,"cost":{"input":0.25,"output":1.3},"family":"qwen","id":"qwen/qwen3.5-35b-a3b","last_updated":"2026-03-18","limit":{"context":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3.5 35B A3B","open_weights":true,"reasoning":true,"release_date":"2026-03-18","temperature":true,"tool_call":true},"qwen/qwen3.5-397b-a17b":{"attachment":false,"cost":{"input":0.6,"output":3.6},"family":"qwen","id":"qwen/qwen3.5-397b-a17b","last_updated":"2026-03-18","limit":{"context":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3.5 397B A17B","open_weights":true,"reasoning":true,"release_date":"2026-03-18","temperature":true,"tool_call":true},"qwen/qwen3.5-9b":{"attachment":false,"cost":{"input":0.1,"output":0.4},"family":"qwen","id":"qwen/qwen3.5-9b","last_updated":"2026-03-18","limit":{"context":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3.5 9B","open_weights":true,"reasoning":true,"release_date":"2026-03-18","temperature":true,"tool_call":true}},"name":"Mixlayer","npm":"@ai-sdk/openai-compatible"},"moark":{"api":"https://moark.com/v1","doc":"https://moark.com/docs/openapi/v1#tag/%E6%96%87%E6%9C%AC%E7%94%9F%E6%88%90","env":["MOARK_API_KEY"],"id":"moark","models":{"GLM-4.7":{"attachment":false,"cost":{"input":3.5,"output":14},"family":"glm","id":"GLM-4.7","interleaved":{"field":"reasoning_content"},"knowledge":"2025-04","last_updated":"2025-12-22","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4.7","open_weights":true,"reasoning":true,"release_date":"2025-12-22","temperature":true,"tool_call":true},"MiniMax-M2.1":{"attachment":false,"cost":{"input":2.1,"output":8.4},"family":"minimax","id":"MiniMax-M2.1","last_updated":"2025-12-23","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2.1","open_weights":true,"reasoning":true,"release_date":"2025-12-23","temperature":true,"tool_call":true}},"name":"Moark","npm":"@ai-sdk/openai-compatible"},"modelscope":{"api":"https://api-inference.modelscope.cn/v1","doc":"https://modelscope.cn/docs/model-service/API-Inference/intro","env":["MODELSCOPE_API_KEY"],"id":"modelscope","models":{"Qwen/Qwen3-235B-A22B-Instruct-2507":{"attachment":false,"cost":{"input":0,"output":0},"family":"qwen","id":"Qwen/Qwen3-235B-A22B-Instruct-2507","knowledge":"2025-04","last_updated":"2025-07-21","limit":{"context":262144,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 235B A22B Instruct 2507","open_weights":true,"reasoning":false,"release_date":"2025-04-28","temperature":true,"tool_call":true},"Qwen/Qwen3-235B-A22B-Thinking-2507":{"attachment":false,"cost":{"input":0,"output":0},"family":"qwen","id":"Qwen/Qwen3-235B-A22B-Thinking-2507","knowledge":"2025-04","last_updated":"2025-07-25","limit":{"context":262144,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3-235B-A22B-Thinking-2507","open_weights":true,"reasoning":true,"release_date":"2025-07-25","temperature":true,"tool_call":true},"Qwen/Qwen3-30B-A3B-Instruct-2507":{"attachment":false,"cost":{"input":0,"output":0},"family":"qwen","id":"Qwen/Qwen3-30B-A3B-Instruct-2507","knowledge":"2025-04","last_updated":"2025-07-30","limit":{"context":262144,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 30B A3B Instruct 2507","open_weights":true,"reasoning":false,"release_date":"2025-07-30","temperature":true,"tool_call":true},"Qwen/Qwen3-30B-A3B-Thinking-2507":{"attachment":false,"cost":{"input":0,"output":0},"family":"qwen","id":"Qwen/Qwen3-30B-A3B-Thinking-2507","knowledge":"2025-04","last_updated":"2025-07-30","limit":{"context":262144,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 30B A3B Thinking 2507","open_weights":true,"reasoning":true,"release_date":"2025-07-30","temperature":true,"tool_call":true},"Qwen/Qwen3-Coder-30B-A3B-Instruct":{"attachment":false,"cost":{"input":0,"output":0},"family":"qwen","id":"Qwen/Qwen3-Coder-30B-A3B-Instruct","knowledge":"2025-04","last_updated":"2025-07-31","limit":{"context":262144,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Coder 30B A3B Instruct","open_weights":true,"reasoning":false,"release_date":"2025-07-31","temperature":true,"tool_call":true},"ZhipuAI/GLM-4.5":{"attachment":false,"cost":{"input":0,"output":0},"family":"glm","id":"ZhipuAI/GLM-4.5","knowledge":"2025-04","last_updated":"2025-07-28","limit":{"context":131072,"output":98304},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4.5","open_weights":true,"reasoning":true,"release_date":"2025-07-28","temperature":true,"tool_call":true},"ZhipuAI/GLM-4.6":{"attachment":false,"cost":{"input":0,"output":0},"family":"glm","id":"ZhipuAI/GLM-4.6","knowledge":"2025-07","last_updated":"2025-09-30","limit":{"context":202752,"output":98304},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4.6","open_weights":true,"reasoning":true,"release_date":"2025-09-30","temperature":true,"tool_call":true}},"name":"ModelScope","npm":"@ai-sdk/openai-compatible"},"moonshotai":{"api":"https://api.moonshot.ai/v1","doc":"https://platform.moonshot.ai/docs/api/chat","env":["MOONSHOT_API_KEY"],"id":"moonshotai","models":{"kimi-k2-0711-preview":{"attachment":false,"cost":{"cache_read":0.15,"input":0.6,"output":2.5},"family":"kimi","id":"kimi-k2-0711-preview","knowledge":"2024-10","last_updated":"2025-07-14","limit":{"context":131072,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Kimi K2 0711","open_weights":true,"reasoning":false,"release_date":"2025-07-14","temperature":true,"tool_call":true},"kimi-k2-0905-preview":{"attachment":false,"cost":{"cache_read":0.15,"input":0.6,"output":2.5},"family":"kimi","id":"kimi-k2-0905-preview","knowledge":"2024-10","last_updated":"2025-09-05","limit":{"context":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Kimi K2 0905","open_weights":true,"reasoning":false,"release_date":"2025-09-05","temperature":true,"tool_call":true},"kimi-k2-thinking":{"attachment":false,"cost":{"cache_read":0.15,"input":0.6,"output":2.5},"family":"kimi-thinking","id":"kimi-k2-thinking","interleaved":{"field":"reasoning_content"},"knowledge":"2024-08","last_updated":"2025-11-06","limit":{"context":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Kimi K2 Thinking","open_weights":true,"reasoning":true,"release_date":"2025-11-06","temperature":true,"tool_call":true},"kimi-k2-thinking-turbo":{"attachment":false,"cost":{"cache_read":0.15,"input":1.15,"output":8},"family":"kimi-thinking","id":"kimi-k2-thinking-turbo","interleaved":{"field":"reasoning_content"},"knowledge":"2024-08","last_updated":"2025-11-06","limit":{"context":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Kimi K2 Thinking Turbo","open_weights":true,"reasoning":true,"release_date":"2025-11-06","temperature":true,"tool_call":true},"kimi-k2-turbo-preview":{"attachment":false,"cost":{"cache_read":0.6,"input":2.4,"output":10},"family":"kimi","id":"kimi-k2-turbo-preview","knowledge":"2024-10","last_updated":"2025-09-05","limit":{"context":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Kimi K2 Turbo","open_weights":true,"reasoning":false,"release_date":"2025-09-05","temperature":true,"tool_call":true},"kimi-k2.5":{"attachment":false,"cost":{"cache_read":0.1,"input":0.6,"output":3},"family":"kimi-k2.5","id":"kimi-k2.5","interleaved":{"field":"reasoning_content"},"knowledge":"2025-01","last_updated":"2026-01","limit":{"context":262144,"output":262144},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Kimi K2.5","open_weights":true,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"release_date":"2026-01","structured_output":true,"temperature":false,"tool_call":true},"kimi-k2.6":{"attachment":true,"cost":{"cache_read":0.16,"input":0.95,"output":4},"family":"kimi-k2.6","id":"kimi-k2.6","interleaved":{"field":"reasoning_content"},"knowledge":"2025-01","last_updated":"2026-04-21","limit":{"context":262144,"output":262144},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Kimi K2.6","open_weights":true,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"release_date":"2026-04-21","structured_output":true,"temperature":true,"tool_call":true}},"name":"Moonshot AI","npm":"@ai-sdk/openai-compatible"},"moonshotai-cn":{"api":"https://api.moonshot.cn/v1","doc":"https://platform.moonshot.cn/docs/api/chat","env":["MOONSHOT_API_KEY"],"id":"moonshotai-cn","models":{"kimi-k2-0711-preview":{"attachment":false,"cost":{"cache_read":0.15,"input":0.6,"output":2.5},"family":"kimi","id":"kimi-k2-0711-preview","knowledge":"2024-10","last_updated":"2025-07-14","limit":{"context":131072,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Kimi K2 0711","open_weights":true,"reasoning":false,"release_date":"2025-07-14","temperature":true,"tool_call":true},"kimi-k2-0905-preview":{"attachment":false,"cost":{"cache_read":0.15,"input":0.6,"output":2.5},"family":"kimi","id":"kimi-k2-0905-preview","knowledge":"2024-10","last_updated":"2025-09-05","limit":{"context":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Kimi K2 0905","open_weights":true,"reasoning":false,"release_date":"2025-09-05","temperature":true,"tool_call":true},"kimi-k2-thinking":{"attachment":false,"cost":{"cache_read":0.15,"input":0.6,"output":2.5},"family":"kimi-thinking","id":"kimi-k2-thinking","interleaved":{"field":"reasoning_content"},"knowledge":"2024-08","last_updated":"2025-11-06","limit":{"context":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Kimi K2 Thinking","open_weights":true,"reasoning":true,"release_date":"2025-11-06","temperature":true,"tool_call":true},"kimi-k2-thinking-turbo":{"attachment":false,"cost":{"cache_read":0.15,"input":1.15,"output":8},"family":"kimi-thinking","id":"kimi-k2-thinking-turbo","interleaved":{"field":"reasoning_content"},"knowledge":"2024-08","last_updated":"2025-11-06","limit":{"context":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Kimi K2 Thinking Turbo","open_weights":true,"reasoning":true,"release_date":"2025-11-06","temperature":true,"tool_call":true},"kimi-k2-turbo-preview":{"attachment":false,"cost":{"cache_read":0.6,"input":2.4,"output":10},"family":"kimi","id":"kimi-k2-turbo-preview","knowledge":"2024-10","last_updated":"2025-09-05","limit":{"context":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Kimi K2 Turbo","open_weights":true,"reasoning":false,"release_date":"2025-09-05","temperature":true,"tool_call":true},"kimi-k2.5":{"attachment":false,"cost":{"cache_read":0.1,"input":0.6,"output":3},"family":"kimi-k2.5","id":"kimi-k2.5","interleaved":{"field":"reasoning_content"},"knowledge":"2025-01","last_updated":"2026-01","limit":{"context":262144,"output":262144},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Kimi K2.5","open_weights":true,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"release_date":"2026-01","structured_output":true,"temperature":false,"tool_call":true},"kimi-k2.6":{"attachment":true,"cost":{"cache_read":0.16,"input":0.95,"output":4},"family":"kimi-k2.6","id":"kimi-k2.6","interleaved":{"field":"reasoning_content"},"knowledge":"2025-01","last_updated":"2026-04-21","limit":{"context":262144,"output":262144},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Kimi K2.6","open_weights":true,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"release_date":"2026-04-21","structured_output":true,"temperature":true,"tool_call":true}},"name":"Moonshot AI (China)","npm":"@ai-sdk/openai-compatible"},"morph":{"api":"https://api.morphllm.com/v1","doc":"https://docs.morphllm.com/api-reference/introduction","env":["MORPH_API_KEY"],"id":"morph","models":{"auto":{"attachment":false,"cost":{"input":0.85,"output":1.55},"family":"auto","id":"auto","last_updated":"2024-06-01","limit":{"context":32000,"output":32000},"modalities":{"input":["text"],"output":["text"]},"name":"Auto","open_weights":false,"reasoning":false,"release_date":"2024-06-01","temperature":false,"tool_call":false},"morph-v3-fast":{"attachment":false,"cost":{"input":0.8,"output":1.2},"family":"morph","id":"morph-v3-fast","last_updated":"2024-08-15","limit":{"context":16000,"output":16000},"modalities":{"input":["text"],"output":["text"]},"name":"Morph v3 Fast","open_weights":false,"reasoning":false,"release_date":"2024-08-15","temperature":false,"tool_call":false},"morph-v3-large":{"attachment":false,"cost":{"input":0.9,"output":1.9},"family":"morph","id":"morph-v3-large","last_updated":"2024-08-15","limit":{"context":32000,"output":32000},"modalities":{"input":["text"],"output":["text"]},"name":"Morph v3 Large","open_weights":false,"reasoning":false,"release_date":"2024-08-15","temperature":false,"tool_call":false}},"name":"Morph","npm":"@ai-sdk/openai-compatible"},"nano-gpt":{"api":"https://nano-gpt.com/api/v1","doc":"https://docs.nano-gpt.com","env":["NANO_GPT_API_KEY"],"id":"nano-gpt","models":{"Alibaba-NLP/Tongyi-DeepResearch-30B-A3B":{"attachment":false,"cost":{"input":0.08,"output":0.24000000000000002},"family":"yi","id":"Alibaba-NLP/Tongyi-DeepResearch-30B-A3B","last_updated":"2025-08-26","limit":{"context":128000,"input":128000,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Tongyi DeepResearch 30B A3B","open_weights":false,"reasoning":false,"release_date":"2025-08-26","structured_output":false,"tool_call":false},"Baichuan-M2":{"attachment":false,"cost":{"input":15.73,"output":15.73},"id":"Baichuan-M2","last_updated":"2025-08-19","limit":{"context":32768,"input":32768,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Baichuan M2 32B Medical","open_weights":false,"reasoning":false,"release_date":"2025-08-19","structured_output":false,"tool_call":false},"Baichuan4-Air":{"attachment":false,"cost":{"input":0.157,"output":0.157},"id":"Baichuan4-Air","last_updated":"2025-08-19","limit":{"context":32768,"input":32768,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Baichuan 4 Air","open_weights":false,"reasoning":false,"release_date":"2025-08-19","structured_output":false,"tool_call":false},"Baichuan4-Turbo":{"attachment":false,"cost":{"input":2.42,"output":2.42},"id":"Baichuan4-Turbo","last_updated":"2025-08-19","limit":{"context":128000,"input":128000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Baichuan 4 Turbo","open_weights":false,"reasoning":false,"release_date":"2025-08-19","structured_output":false,"tool_call":false},"Doctor-Shotgun/MS3.2-24B-Magnum-Diamond":{"attachment":false,"cost":{"input":0.49299999999999994,"output":0.49299999999999994},"family":"mistral","id":"Doctor-Shotgun/MS3.2-24B-Magnum-Diamond","last_updated":"2025-11-24","limit":{"context":16384,"input":16384,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"MS3.2 24B Magnum Diamond","open_weights":false,"reasoning":false,"release_date":"2025-11-24","structured_output":false,"tool_call":false},"EVA-UNIT-01/EVA-LLaMA-3.33-70B-v0.0":{"attachment":false,"cost":{"input":2.006,"output":2.006},"family":"llama","id":"EVA-UNIT-01/EVA-LLaMA-3.33-70B-v0.0","last_updated":"2025-07-26","limit":{"context":16384,"input":16384,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"EVA Llama 3.33 70B","open_weights":false,"reasoning":false,"release_date":"2025-07-26","structured_output":false,"tool_call":false},"EVA-UNIT-01/EVA-LLaMA-3.33-70B-v0.1":{"attachment":false,"cost":{"input":2.006,"output":2.006},"family":"llama","id":"EVA-UNIT-01/EVA-LLaMA-3.33-70B-v0.1","last_updated":"2025-09-25","limit":{"context":16384,"input":16384,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"EVA-LLaMA-3.33-70B-v0.1","open_weights":false,"reasoning":false,"release_date":"2025-09-25","structured_output":false,"tool_call":false},"EVA-UNIT-01/EVA-Qwen2.5-32B-v0.2":{"attachment":false,"cost":{"input":0.7989999999999999,"output":0.7989999999999999},"family":"qwen","id":"EVA-UNIT-01/EVA-Qwen2.5-32B-v0.2","last_updated":"2025-07-26","limit":{"context":16384,"input":16384,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"EVA-Qwen2.5-32B-v0.2","open_weights":false,"reasoning":false,"release_date":"2025-07-26","structured_output":false,"tool_call":false},"EVA-UNIT-01/EVA-Qwen2.5-72B-v0.2":{"attachment":false,"cost":{"input":0.7989999999999999,"output":0.7989999999999999},"family":"qwen","id":"EVA-UNIT-01/EVA-Qwen2.5-72B-v0.2","last_updated":"2025-09-25","limit":{"context":16384,"input":16384,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"EVA-Qwen2.5-72B-v0.2","open_weights":false,"reasoning":false,"release_date":"2025-09-25","structured_output":false,"tool_call":false},"Envoid/Llama-3.05-NT-Storybreaker-Ministral-70B":{"attachment":false,"cost":{"input":0.49299999999999994,"output":0.49299999999999994},"family":"llama","id":"Envoid/Llama-3.05-NT-Storybreaker-Ministral-70B","last_updated":"2024-12-01","limit":{"context":16384,"input":16384,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.05 Storybreaker Ministral 70b","open_weights":false,"reasoning":false,"release_date":"2024-12-01","structured_output":false,"tool_call":false},"Envoid/Llama-3.05-Nemotron-Tenyxchat-Storybreaker-70B":{"attachment":false,"cost":{"input":0.49299999999999994,"output":0.49299999999999994},"family":"nemotron","id":"Envoid/Llama-3.05-Nemotron-Tenyxchat-Storybreaker-70B","last_updated":"2024-12-01","limit":{"context":16384,"input":16384,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Nemotron Tenyxchat Storybreaker 70b","open_weights":false,"reasoning":false,"release_date":"2024-12-01","structured_output":false,"tool_call":false},"GLM-4.6-Derestricted-v5":{"attachment":false,"cost":{"input":0.4,"output":1.5},"id":"GLM-4.6-Derestricted-v5","last_updated":"2025-12-23","limit":{"context":131072,"input":131072,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 4.6 Derestricted v5","open_weights":false,"reasoning":false,"release_date":"2025-12-23","structured_output":false,"tool_call":false},"GalrionSoftworks/MN-LooseCannon-12B-v1":{"attachment":false,"cost":{"input":0.49299999999999994,"output":0.49299999999999994},"family":"mistral-nemo","id":"GalrionSoftworks/MN-LooseCannon-12B-v1","last_updated":"2024-07-01","limit":{"context":16384,"input":16384,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"MN-LooseCannon-12B-v1","open_weights":false,"reasoning":false,"release_date":"2024-07-01","structured_output":false,"tool_call":false},"Gemma-4-31B-Claude-4.6-Opus-Reasoning-Distilled":{"attachment":true,"cost":{"cache_read":0.0306,"input":0.306,"output":0.306},"id":"Gemma-4-31B-Claude-4.6-Opus-Reasoning-Distilled","last_updated":"2026-05-01","limit":{"context":262144,"input":262144,"output":16384},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Gemma 4 31B Claude 4.6 Opus Reasoning Distilled","open_weights":false,"reasoning":true,"release_date":"2026-05-01","structured_output":false,"tool_call":false},"Gemma-4-31B-Cognitive-Unshackled":{"attachment":true,"cost":{"input":0.306,"output":0.306},"id":"Gemma-4-31B-Cognitive-Unshackled","last_updated":"2026-05-01","limit":{"context":262144,"input":262144,"output":16384},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Gemma 4 31B Cognitive Unshackled","open_weights":false,"reasoning":true,"release_date":"2026-05-01","structured_output":false,"tool_call":false},"Gemma-4-31B-DarkIdol":{"attachment":true,"cost":{"input":0.306,"output":0.306},"id":"Gemma-4-31B-DarkIdol","last_updated":"2026-05-01","limit":{"context":262144,"input":262144,"output":16384},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Gemma 4 31B DarkIdol","open_weights":false,"reasoning":true,"release_date":"2026-05-01","structured_output":false,"tool_call":false},"Gemma-4-31B-GarnetV2":{"attachment":true,"cost":{"input":0.306,"output":0.306},"id":"Gemma-4-31B-GarnetV2","last_updated":"2026-05-01","limit":{"context":262144,"input":262144,"output":16384},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Gemma 4 31B Garnet V2","open_weights":false,"reasoning":true,"release_date":"2026-05-01","structured_output":false,"tool_call":false},"Gemma-4-31B-Gemopus":{"attachment":true,"cost":{"input":0.306,"output":0.306},"id":"Gemma-4-31B-Gemopus","last_updated":"2026-05-01","limit":{"context":262144,"input":262144,"output":16384},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Gemma 4 31B Gemopus","open_weights":false,"reasoning":true,"release_date":"2026-05-01","structured_output":false,"tool_call":false},"Gemma-4-31B-Musica-v1":{"attachment":true,"cost":{"input":0.306,"output":0.306},"id":"Gemma-4-31B-Musica-v1","last_updated":"2026-05-01","limit":{"context":262144,"input":262144,"output":16384},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Gemma 4 31B Musica v1","open_weights":false,"reasoning":true,"release_date":"2026-05-01","structured_output":false,"tool_call":false},"Gemma-4-31B-Queen":{"attachment":true,"cost":{"input":0.306,"output":0.306},"id":"Gemma-4-31B-Queen","last_updated":"2026-05-01","limit":{"context":262144,"input":262144,"output":16384},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Gemma 4 31B Queen","open_weights":false,"reasoning":true,"release_date":"2026-05-01","structured_output":false,"tool_call":false},"Gemma-4-31B-it":{"attachment":true,"cost":{"input":0.306,"output":0.306},"id":"Gemma-4-31B-it","last_updated":"2026-04-09","limit":{"context":262144,"input":262144,"output":16384},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Gemma 4 31B IT","open_weights":false,"reasoning":true,"release_date":"2026-04-09","structured_output":false,"tool_call":false},"Gryphe/MythoMax-L2-13b":{"attachment":false,"cost":{"input":0.1003,"output":0.1003},"family":"llama","id":"Gryphe/MythoMax-L2-13b","last_updated":"2025-08-08","limit":{"context":4000,"input":4000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"MythoMax 13B","open_weights":false,"reasoning":false,"release_date":"2025-08-08","structured_output":false,"tool_call":false},"Infermatic/MN-12B-Inferor-v0.0":{"attachment":false,"cost":{"input":0.25499999999999995,"output":0.49299999999999994},"family":"mistral-nemo","id":"Infermatic/MN-12B-Inferor-v0.0","last_updated":"2024-07-01","limit":{"context":16384,"input":16384,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Mistral Nemo Inferor 12B","open_weights":false,"reasoning":false,"release_date":"2024-07-01","structured_output":false,"tool_call":false},"KAT-Coder-Air-V1":{"attachment":false,"cost":{"input":0.1,"output":0.2},"id":"KAT-Coder-Air-V1","last_updated":"2025-10-28","limit":{"context":128000,"input":128000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"KAT Coder Air V1","open_weights":false,"reasoning":false,"release_date":"2025-10-28","structured_output":false,"tool_call":false},"KAT-Coder-Exp-72B-1010":{"attachment":false,"cost":{"input":0.1,"output":0.2},"id":"KAT-Coder-Exp-72B-1010","last_updated":"2025-10-28","limit":{"context":128000,"input":128000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"KAT Coder Exp 72B 1010","open_weights":false,"reasoning":false,"release_date":"2025-10-28","structured_output":false,"tool_call":false},"LLM360/K2-Think":{"attachment":false,"cost":{"input":0.17,"output":0.68},"family":"kimi-thinking","id":"LLM360/K2-Think","last_updated":"2025-07-26","limit":{"context":128000,"input":128000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"K2-Think","open_weights":false,"reasoning":false,"release_date":"2025-07-26","structured_output":false,"tool_call":false},"LatitudeGames/Wayfarer-Large-70B-Llama-3.3":{"attachment":false,"cost":{"input":0.700000007,"output":0.700000007},"family":"llama","id":"LatitudeGames/Wayfarer-Large-70B-Llama-3.3","last_updated":"2025-02-20","limit":{"context":16384,"input":16384,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.3 70B Wayfarer","open_weights":false,"reasoning":false,"release_date":"2025-02-20","structured_output":false,"tool_call":false},"Magistral-Small-2506":{"attachment":false,"cost":{"input":0.4,"output":1.4},"id":"Magistral-Small-2506","last_updated":"2025-09-25","limit":{"context":32768,"input":32768,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Magistral Small 2506","open_weights":false,"reasoning":false,"release_date":"2025-09-25","structured_output":false,"tool_call":false},"MarinaraSpaghetti/NemoMix-Unleashed-12B":{"attachment":false,"cost":{"input":0.49299999999999994,"output":0.49299999999999994},"family":"mistral-nemo","id":"MarinaraSpaghetti/NemoMix-Unleashed-12B","last_updated":"2024-07-01","limit":{"context":32768,"input":32768,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"NemoMix 12B Unleashed","open_weights":false,"reasoning":false,"release_date":"2024-07-01","structured_output":false,"tool_call":false},"Meta-Llama-3-1-8B-Instruct-FP8":{"attachment":false,"cost":{"input":0.02,"output":0.03},"id":"Meta-Llama-3-1-8B-Instruct-FP8","last_updated":"2024-07-23","limit":{"context":128000,"input":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.1 8B (decentralized)","open_weights":false,"reasoning":false,"release_date":"2024-07-23","structured_output":false,"tool_call":false},"MiniMax-M1":{"attachment":false,"cost":{"input":0.1394,"output":1.3328},"id":"MiniMax-M1","last_updated":"2025-06-16","limit":{"context":1000000,"input":1000000,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax M1","open_weights":false,"reasoning":false,"release_date":"2025-06-16","structured_output":false,"tool_call":false},"MiniMax-M2":{"attachment":false,"cost":{"input":0.17,"output":1.53},"id":"MiniMax-M2","last_updated":"2025-10-25","limit":{"context":200000,"input":200000,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax M2","open_weights":false,"reasoning":true,"release_date":"2025-10-25","structured_output":false,"tool_call":false},"MiniMaxAI/MiniMax-M1-80k":{"attachment":false,"cost":{"input":0.6052,"output":2.4225000000000003},"family":"minimax","id":"MiniMaxAI/MiniMax-M1-80k","last_updated":"2025-06-16","limit":{"context":1000000,"input":1000000,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax M1 80K","open_weights":false,"reasoning":false,"release_date":"2025-06-16","structured_output":false,"tool_call":false},"NeverSleep/Lumimaid-v0.2-70B":{"attachment":false,"cost":{"input":1,"output":1.5},"family":"llama","id":"NeverSleep/Lumimaid-v0.2-70B","last_updated":"2024-07-01","limit":{"context":16384,"input":16384,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Lumimaid v0.2","open_weights":false,"reasoning":false,"release_date":"2024-07-01","structured_output":false,"tool_call":false},"NousResearch/DeepHermes-3-Mistral-24B-Preview":{"attachment":false,"cost":{"input":0.3,"output":0.3},"id":"NousResearch/DeepHermes-3-Mistral-24B-Preview","last_updated":"2025-05-10","limit":{"context":128000,"input":128000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"DeepHermes-3 Mistral 24B (Preview)","open_weights":false,"reasoning":false,"release_date":"2025-05-10","structured_output":false,"tool_call":false},"NousResearch/Hermes-4-70B:thinking":{"attachment":false,"cost":{"input":0.2006,"output":0.3995},"id":"NousResearch/Hermes-4-70B:thinking","last_updated":"2025-09-17","limit":{"context":128000,"input":128000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Hermes 4 (Thinking)","open_weights":false,"reasoning":false,"release_date":"2025-09-17","structured_output":false,"tool_call":false},"NousResearch/hermes-3-llama-3.1-70b":{"attachment":false,"cost":{"input":0.408,"output":0.408},"id":"NousResearch/hermes-3-llama-3.1-70b","last_updated":"2026-01-07","limit":{"context":65536,"input":65536,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Hermes 3 70B","open_weights":false,"reasoning":false,"release_date":"2026-01-07","structured_output":false,"tool_call":false},"NousResearch/hermes-4-405b":{"attachment":false,"cost":{"input":0.3,"output":1.2},"id":"NousResearch/hermes-4-405b","last_updated":"2025-08-26","limit":{"context":128000,"input":128000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Hermes 4 Large","open_weights":false,"reasoning":false,"release_date":"2025-08-26","structured_output":true,"tool_call":false},"NousResearch/hermes-4-405b:thinking":{"attachment":false,"cost":{"input":0.3,"output":1.2},"id":"NousResearch/hermes-4-405b:thinking","last_updated":"2024-01-01","limit":{"context":128000,"input":128000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Hermes 4 Large (Thinking)","open_weights":false,"reasoning":false,"release_date":"2024-01-01","structured_output":true,"tool_call":false},"NousResearch/hermes-4-70b":{"attachment":false,"cost":{"input":0.2006,"output":0.3995},"id":"NousResearch/hermes-4-70b","last_updated":"2025-07-03","limit":{"context":128000,"input":128000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Hermes 4 Medium","open_weights":false,"reasoning":false,"release_date":"2025-07-03","structured_output":false,"tool_call":false},"Qwen2.5-32B-EVA-v0.2":{"attachment":false,"cost":{"input":0.493,"output":0.493},"id":"Qwen2.5-32B-EVA-v0.2","last_updated":"2024-09-01","limit":{"context":24576,"input":24576,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen 2.5 32b EVA","open_weights":false,"reasoning":false,"release_date":"2024-09-01","structured_output":false,"tool_call":false},"Qwen3.5-27B-Anko":{"attachment":true,"cost":{"input":0.306,"output":0.306},"id":"Qwen3.5-27B-Anko","last_updated":"2026-04-30","limit":{"context":262144,"input":262144,"output":16384},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.5 27B Anko","open_weights":false,"reasoning":true,"release_date":"2026-04-30","structured_output":false,"tool_call":false},"Qwen3.5-27B-BlueStar-Derestricted":{"attachment":true,"cost":{"input":0.306,"output":0.306},"id":"Qwen3.5-27B-BlueStar-Derestricted","last_updated":"2026-04-06","limit":{"context":262144,"input":262144,"output":16384},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.5 27B BlueStar Derestricted","open_weights":false,"reasoning":true,"release_date":"2026-04-06","structured_output":false,"tool_call":false},"Qwen3.5-27B-BlueStar-Derestricted-Lite":{"attachment":true,"cost":{"input":0.306,"output":0.306},"id":"Qwen3.5-27B-BlueStar-Derestricted-Lite","last_updated":"2026-04-06","limit":{"context":262144,"input":262144,"output":16384},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.5 27B BlueStar Derestricted Lite","open_weights":false,"reasoning":true,"release_date":"2026-04-06","structured_output":false,"tool_call":false},"Qwen3.5-27B-BlueStar-v2-Derestricted":{"attachment":true,"cost":{"input":0.306,"output":0.306},"id":"Qwen3.5-27B-BlueStar-v2-Derestricted","last_updated":"2026-04-06","limit":{"context":262144,"input":262144,"output":16384},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.5 27B BlueStar v2 Derestricted","open_weights":false,"reasoning":true,"release_date":"2026-04-06","structured_output":false,"tool_call":false},"Qwen3.5-27B-BlueStar-v2-Derestricted-Lite":{"attachment":true,"cost":{"input":0.306,"output":0.306},"id":"Qwen3.5-27B-BlueStar-v2-Derestricted-Lite","last_updated":"2026-04-06","limit":{"context":262144,"input":262144,"output":16384},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.5 27B BlueStar v2 Derestricted Lite","open_weights":false,"reasoning":true,"release_date":"2026-04-06","structured_output":false,"tool_call":false},"Qwen3.5-27B-BlueStar-v3-Derestricted":{"attachment":true,"cost":{"input":0.306,"output":0.306},"id":"Qwen3.5-27B-BlueStar-v3-Derestricted","last_updated":"2026-04-30","limit":{"context":262144,"input":262144,"output":16384},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.5 27B BlueStar v3 Derestricted","open_weights":false,"reasoning":true,"release_date":"2026-04-30","structured_output":false,"tool_call":false},"Qwen3.5-27B-BlueStar-v3-Derestricted-Lite":{"attachment":true,"cost":{"input":0.306,"output":0.306},"id":"Qwen3.5-27B-BlueStar-v3-Derestricted-Lite","last_updated":"2026-04-30","limit":{"context":262144,"input":262144,"output":16384},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.5 27B BlueStar v3 Derestricted Lite","open_weights":false,"reasoning":true,"release_date":"2026-04-30","structured_output":false,"tool_call":false},"Qwen3.5-27B-Derestricted":{"attachment":true,"cost":{"input":0.306,"output":0.306},"id":"Qwen3.5-27B-Derestricted","last_updated":"2026-03-17","limit":{"context":262144,"input":262144,"output":16384},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.5 27B Derestricted","open_weights":false,"reasoning":true,"release_date":"2026-03-17","structured_output":false,"tool_call":false},"Qwen3.5-27B-Infracelestial":{"attachment":true,"cost":{"input":0.306,"output":0.306},"id":"Qwen3.5-27B-Infracelestial","last_updated":"2026-04-30","limit":{"context":262144,"input":262144,"output":16384},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.5 27B Infracelestial","open_weights":false,"reasoning":true,"release_date":"2026-04-30","structured_output":false,"tool_call":false},"Qwen3.5-27B-Marvin-DPO-V2-Derestricted":{"attachment":true,"cost":{"input":0.306,"output":0.306},"id":"Qwen3.5-27B-Marvin-DPO-V2-Derestricted","last_updated":"2026-04-30","limit":{"context":262144,"input":262144,"output":16384},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.5 27B Marvin DPO V2 Derestricted","open_weights":false,"reasoning":true,"release_date":"2026-04-30","structured_output":false,"tool_call":false},"Qwen3.5-27B-Marvin-DPO-V2-Derestricted-Lite":{"attachment":true,"cost":{"input":0.306,"output":0.306},"id":"Qwen3.5-27B-Marvin-DPO-V2-Derestricted-Lite","last_updated":"2026-04-30","limit":{"context":262144,"input":262144,"output":16384},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.5 27B Marvin DPO V2 Derestricted Lite","open_weights":false,"reasoning":true,"release_date":"2026-04-30","structured_output":false,"tool_call":false},"Qwen3.5-27B-Marvin-V2-Derestricted":{"attachment":true,"cost":{"input":0.306,"output":0.306},"id":"Qwen3.5-27B-Marvin-V2-Derestricted","last_updated":"2026-04-30","limit":{"context":262144,"input":262144,"output":16384},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.5 27B Marvin V2 Derestricted","open_weights":false,"reasoning":true,"release_date":"2026-04-30","structured_output":false,"tool_call":false},"Qwen3.5-27B-Marvin-V2-Derestricted-Lite":{"attachment":true,"cost":{"input":0.306,"output":0.306},"id":"Qwen3.5-27B-Marvin-V2-Derestricted-Lite","last_updated":"2026-04-30","limit":{"context":262144,"input":262144,"output":16384},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.5 27B Marvin V2 Derestricted Lite","open_weights":false,"reasoning":true,"release_date":"2026-04-30","structured_output":false,"tool_call":false},"Qwen3.5-27B-Musica-v1":{"attachment":true,"cost":{"input":0.306,"output":0.306},"id":"Qwen3.5-27B-Musica-v1","last_updated":"2026-03-27","limit":{"context":262144,"input":262144,"output":16384},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.5 27B Musica v1","open_weights":false,"reasoning":true,"release_date":"2026-03-27","structured_output":false,"tool_call":false},"Qwen3.5-27B-NaNovel-Derestricted":{"attachment":true,"cost":{"input":0.306,"output":0.306},"id":"Qwen3.5-27B-NaNovel-Derestricted","last_updated":"2026-04-30","limit":{"context":262144,"input":262144,"output":16384},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.5 27B NaNovel Derestricted","open_weights":false,"reasoning":true,"release_date":"2026-04-30","structured_output":false,"tool_call":false},"Qwen3.5-27B-NaNovel-Derestricted-Lite":{"attachment":true,"cost":{"input":0.306,"output":0.306},"id":"Qwen3.5-27B-NaNovel-Derestricted-Lite","last_updated":"2026-04-30","limit":{"context":262144,"input":262144,"output":16384},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.5 27B NaNovel Derestricted Lite","open_weights":false,"reasoning":true,"release_date":"2026-04-30","structured_output":false,"tool_call":false},"Qwen3.5-27B-Omega-Evolution-v2.0-Derestricted":{"attachment":true,"cost":{"input":0.306,"output":0.306},"id":"Qwen3.5-27B-Omega-Evolution-v2.0-Derestricted","last_updated":"2026-04-06","limit":{"context":262144,"input":262144,"output":16384},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.5 27B Omega Evolution v2.0 Derestricted","open_weights":false,"reasoning":true,"release_date":"2026-04-06","structured_output":false,"tool_call":false},"Qwen3.5-27B-Omega-Evolution-v2.0-Derestricted-Lite":{"attachment":true,"cost":{"input":0.306,"output":0.306},"id":"Qwen3.5-27B-Omega-Evolution-v2.0-Derestricted-Lite","last_updated":"2026-04-06","limit":{"context":262144,"input":262144,"output":16384},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.5 27B Omega Evolution v2.0 Derestricted Lite","open_weights":false,"reasoning":true,"release_date":"2026-04-06","structured_output":false,"tool_call":false},"Qwen3.5-27B-Omega-Evolution-v2.2-Derestricted":{"attachment":true,"cost":{"input":0.306,"output":0.306},"id":"Qwen3.5-27B-Omega-Evolution-v2.2-Derestricted","last_updated":"2026-05-02","limit":{"context":262144,"input":262144,"output":16384},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.5 27B Omega Evolution v2.2 Derestricted","open_weights":false,"reasoning":true,"release_date":"2026-05-02","structured_output":false,"tool_call":false},"Qwen3.5-27B-Omega-Evolution-v2.2-Derestricted-Lite":{"attachment":true,"cost":{"input":0.306,"output":0.306},"id":"Qwen3.5-27B-Omega-Evolution-v2.2-Derestricted-Lite","last_updated":"2026-05-02","limit":{"context":262144,"input":262144,"output":16384},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.5 27B Omega Evolution v2.2 Derestricted Lite","open_weights":false,"reasoning":true,"release_date":"2026-05-02","structured_output":false,"tool_call":false},"Qwen3.5-27B-Queen-Derestricted":{"attachment":true,"cost":{"input":0.306,"output":0.306},"id":"Qwen3.5-27B-Queen-Derestricted","last_updated":"2026-04-30","limit":{"context":262144,"input":262144,"output":16384},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.5 27B Queen Derestricted","open_weights":false,"reasoning":true,"release_date":"2026-04-30","structured_output":false,"tool_call":false},"Qwen3.5-27B-Queen-Derestricted-Lite":{"attachment":true,"cost":{"input":0.306,"output":0.306},"id":"Qwen3.5-27B-Queen-Derestricted-Lite","last_updated":"2026-04-30","limit":{"context":262144,"input":262144,"output":16384},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.5 27B Queen Derestricted Lite","open_weights":false,"reasoning":true,"release_date":"2026-04-30","structured_output":false,"tool_call":false},"Qwen3.5-27B-RpRMax-v1":{"attachment":true,"cost":{"input":0.306,"output":0.306},"id":"Qwen3.5-27B-RpRMax-v1","last_updated":"2026-04-30","limit":{"context":262144,"input":262144,"output":16384},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.5 27B RpRMax v1","open_weights":false,"reasoning":true,"release_date":"2026-04-30","structured_output":false,"tool_call":false},"Qwen3.5-27B-Vivid-Durian":{"attachment":true,"cost":{"input":0.306,"output":0.306},"id":"Qwen3.5-27B-Vivid-Durian","last_updated":"2026-03-18","limit":{"context":262144,"input":262144,"output":16384},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.5 27B Vivid Durian","open_weights":false,"reasoning":true,"release_date":"2026-03-18","structured_output":false,"tool_call":false},"Qwen3.5-27B-Writer-Derestricted":{"attachment":true,"cost":{"input":0.306,"output":0.306},"id":"Qwen3.5-27B-Writer-Derestricted","last_updated":"2026-04-06","limit":{"context":262144,"input":262144,"output":16384},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.5 27B Writer Derestricted","open_weights":false,"reasoning":true,"release_date":"2026-04-06","structured_output":false,"tool_call":false},"Qwen3.5-27B-Writer-Derestricted-Lite":{"attachment":true,"cost":{"input":0.306,"output":0.306},"id":"Qwen3.5-27B-Writer-Derestricted-Lite","last_updated":"2026-04-06","limit":{"context":262144,"input":262144,"output":16384},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.5 27B Writer Derestricted Lite","open_weights":false,"reasoning":true,"release_date":"2026-04-06","structured_output":false,"tool_call":false},"Qwen3.5-27B-Writer-V2-Derestricted":{"attachment":true,"cost":{"input":0.306,"output":0.306},"id":"Qwen3.5-27B-Writer-V2-Derestricted","last_updated":"2026-04-06","limit":{"context":262144,"input":262144,"output":16384},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.5 27B Writer V2 Derestricted","open_weights":false,"reasoning":true,"release_date":"2026-04-06","structured_output":false,"tool_call":false},"Qwen3.5-27B-Writer-V2-Derestricted-Lite":{"attachment":true,"cost":{"input":0.306,"output":0.306},"id":"Qwen3.5-27B-Writer-V2-Derestricted-Lite","last_updated":"2026-04-06","limit":{"context":262144,"input":262144,"output":16384},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.5 27B Writer V2 Derestricted Lite","open_weights":false,"reasoning":true,"release_date":"2026-04-06","structured_output":false,"tool_call":false},"Qwen3.5-27B-earica-Derestricted":{"attachment":true,"cost":{"input":0.306,"output":0.306},"id":"Qwen3.5-27B-earica-Derestricted","last_updated":"2026-04-30","limit":{"context":262144,"input":262144,"output":16384},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.5 27B earica Derestricted","open_weights":false,"reasoning":true,"release_date":"2026-04-30","structured_output":false,"tool_call":false},"Qwen3.5-27B-earica-Derestricted-Lite":{"attachment":true,"cost":{"input":0.306,"output":0.306},"id":"Qwen3.5-27B-earica-Derestricted-Lite","last_updated":"2026-04-30","limit":{"context":262144,"input":262144,"output":16384},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.5 27B earica Derestricted Lite","open_weights":false,"reasoning":true,"release_date":"2026-04-30","structured_output":false,"tool_call":false},"ReadyArt/MS3.2-The-Omega-Directive-24B-Unslop-v2.0":{"attachment":false,"cost":{"input":0.5,"output":0.5},"family":"llama","id":"ReadyArt/MS3.2-The-Omega-Directive-24B-Unslop-v2.0","last_updated":"2025-12-08","limit":{"context":16384,"input":16384,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Omega Directive 24B Unslop v2.0","open_weights":false,"reasoning":false,"release_date":"2025-12-08","structured_output":false,"tool_call":false},"Salesforce/Llama-xLAM-2-70b-fc-r":{"attachment":false,"cost":{"input":2.5,"output":2.5},"family":"llama","id":"Salesforce/Llama-xLAM-2-70b-fc-r","last_updated":"2025-04-13","limit":{"context":128000,"input":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Llama-xLAM-2 70B fc-r","open_weights":false,"reasoning":false,"release_date":"2025-04-13","structured_output":false,"tool_call":false},"Sao10K/L3-8B-Stheno-v3.2":{"attachment":false,"cost":{"input":0.2006,"output":0.2006},"family":"llama","id":"Sao10K/L3-8B-Stheno-v3.2","last_updated":"2024-11-29","limit":{"context":16384,"input":16384,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Sao10K Stheno 8b","open_weights":false,"reasoning":false,"release_date":"2024-11-29","structured_output":false,"tool_call":false},"Sao10K/L3.1-70B-Euryale-v2.2":{"attachment":false,"cost":{"input":0.306,"output":0.357},"family":"llama","id":"Sao10K/L3.1-70B-Euryale-v2.2","last_updated":"2024-07-23","limit":{"context":20480,"input":20480,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.1 70B Euryale","open_weights":false,"reasoning":false,"release_date":"2024-07-23","structured_output":false,"tool_call":false},"Sao10K/L3.1-70B-Hanami-x1":{"attachment":false,"cost":{"input":0.49299999999999994,"output":0.49299999999999994},"family":"llama","id":"Sao10K/L3.1-70B-Hanami-x1","last_updated":"2024-07-23","limit":{"context":16384,"input":16384,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.1 70B Hanami","open_weights":false,"reasoning":false,"release_date":"2024-07-23","structured_output":false,"tool_call":false},"Sao10K/L3.3-70B-Euryale-v2.3":{"attachment":false,"cost":{"input":0.49299999999999994,"output":0.49299999999999994},"family":"llama","id":"Sao10K/L3.3-70B-Euryale-v2.3","last_updated":"2024-12-06","limit":{"context":20480,"input":20480,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.3 70B Euryale","open_weights":false,"reasoning":false,"release_date":"2024-12-06","structured_output":false,"tool_call":false},"Steelskull/L3.3-Cu-Mai-R1-70b":{"attachment":false,"cost":{"input":0.49299999999999994,"output":0.49299999999999994},"family":"llama","id":"Steelskull/L3.3-Cu-Mai-R1-70b","last_updated":"2024-12-06","limit":{"context":16384,"input":16384,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.3 70B Cu Mai","open_weights":false,"reasoning":false,"release_date":"2024-12-06","structured_output":false,"tool_call":false},"Steelskull/L3.3-Electra-R1-70b":{"attachment":false,"cost":{"input":0.69989,"output":0.69989},"family":"llama","id":"Steelskull/L3.3-Electra-R1-70b","last_updated":"2024-12-06","limit":{"context":16384,"input":16384,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Steelskull Electra R1 70b","open_weights":false,"reasoning":false,"release_date":"2024-12-06","structured_output":false,"tool_call":false},"Steelskull/L3.3-MS-Evalebis-70b":{"attachment":false,"cost":{"input":0.49299999999999994,"output":0.49299999999999994},"family":"llama","id":"Steelskull/L3.3-MS-Evalebis-70b","last_updated":"2024-12-06","limit":{"context":16384,"input":16384,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"MS Evalebis 70b","open_weights":false,"reasoning":false,"release_date":"2024-12-06","structured_output":false,"tool_call":false},"Steelskull/L3.3-MS-Evayale-70B":{"attachment":false,"cost":{"input":0.49299999999999994,"output":0.49299999999999994},"family":"llama","id":"Steelskull/L3.3-MS-Evayale-70B","last_updated":"2024-12-06","limit":{"context":16384,"input":16384,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Evayale 70b ","open_weights":false,"reasoning":false,"release_date":"2024-12-06","structured_output":false,"tool_call":false},"Steelskull/L3.3-MS-Nevoria-70b":{"attachment":false,"cost":{"input":0.49299999999999994,"output":0.49299999999999994},"family":"llama","id":"Steelskull/L3.3-MS-Nevoria-70b","last_updated":"2024-12-06","limit":{"context":16384,"input":16384,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Steelskull Nevoria 70b","open_weights":false,"reasoning":false,"release_date":"2024-12-06","structured_output":false,"tool_call":false},"Steelskull/L3.3-Nevoria-R1-70b":{"attachment":false,"cost":{"input":0.49299999999999994,"output":0.49299999999999994},"family":"llama","id":"Steelskull/L3.3-Nevoria-R1-70b","last_updated":"2024-12-06","limit":{"context":16384,"input":16384,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Steelskull Nevoria R1 70b","open_weights":false,"reasoning":false,"release_date":"2024-12-06","structured_output":false,"tool_call":false},"TEE/deepseek-v3.1":{"attachment":false,"cost":{"input":1,"output":2.5},"family":"deepseek","id":"TEE/deepseek-v3.1","last_updated":"2025-08-21","limit":{"context":164000,"input":164000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V3.1 TEE","open_weights":false,"reasoning":false,"release_date":"2025-08-21","structured_output":false,"tool_call":false},"TEE/deepseek-v3.2":{"attachment":false,"cost":{"input":0.5,"output":1},"family":"deepseek","id":"TEE/deepseek-v3.2","last_updated":"2025-12-01","limit":{"context":164000,"input":164000,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V3.2 TEE","open_weights":false,"reasoning":false,"release_date":"2025-12-01","structured_output":false,"tool_call":false},"TEE/deepseek-v4-pro":{"attachment":false,"cost":{"cache_read":0.15,"input":1.5,"output":5.25},"id":"TEE/deepseek-v4-pro","last_updated":"2026-04-25","limit":{"context":800000,"input":800000,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V4 Pro TEE","open_weights":false,"reasoning":true,"release_date":"2026-04-25","structured_output":true,"tool_call":true},"TEE/deepseek-v4-pro:thinking":{"attachment":false,"cost":{"cache_read":0.15,"input":1.5,"output":5.25},"id":"TEE/deepseek-v4-pro:thinking","last_updated":"2026-04-29","limit":{"context":800000,"input":800000,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V4 Pro Thinking TEE","open_weights":false,"reasoning":true,"release_date":"2026-04-29","structured_output":true,"tool_call":true},"TEE/gemma-3-27b-it":{"attachment":false,"cost":{"input":0.2,"output":0.8},"family":"gemma","id":"TEE/gemma-3-27b-it","last_updated":"2025-03-10","limit":{"context":131072,"input":131072,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Gemma 3 27B TEE","open_weights":false,"reasoning":false,"release_date":"2025-03-10","structured_output":false,"tool_call":false},"TEE/gemma-4-26b-a4b-uncensored":{"attachment":true,"cost":{"input":0.15,"output":0.7},"id":"TEE/gemma-4-26b-a4b-uncensored","last_updated":"2026-05-23","limit":{"context":65536,"input":65536,"output":65536},"modalities":{"input":["text","image"],"output":["text"]},"name":"Gemma 4 26B A4B Uncensored TEE","open_weights":false,"reasoning":false,"release_date":"2026-05-23","structured_output":true,"tool_call":true},"TEE/gemma-4-31b-it":{"attachment":false,"cost":{"input":0.15,"output":0.46},"id":"TEE/gemma-4-31b-it","last_updated":"2026-05-26","limit":{"context":262144,"input":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Gemma 4 31B IT TEE","open_weights":false,"reasoning":true,"release_date":"2026-05-26","structured_output":false,"tool_call":true},"TEE/gemma4-31b":{"attachment":false,"cost":{"input":0.45,"output":1},"id":"TEE/gemma4-31b","last_updated":"2026-04-04","limit":{"context":262144,"input":262144,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"Gemma 4 31B","open_weights":false,"reasoning":false,"release_date":"2026-04-04","structured_output":true,"tool_call":false},"TEE/gemma4-31b:thinking":{"attachment":false,"cost":{"input":0.45,"output":1},"id":"TEE/gemma4-31b:thinking","last_updated":"2026-05-02","limit":{"context":262144,"input":262144,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"Gemma 4 31B Thinking TEE","open_weights":false,"reasoning":true,"release_date":"2026-05-02","structured_output":true,"tool_call":false},"TEE/glm-4.7":{"attachment":false,"cost":{"input":0.85,"output":3.3},"family":"glm","id":"TEE/glm-4.7","last_updated":"2026-01-29","limit":{"context":131000,"input":131000,"output":65535},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 4.7 TEE","open_weights":false,"reasoning":false,"release_date":"2026-01-29","structured_output":false,"tool_call":false},"TEE/glm-4.7-flash":{"attachment":false,"cost":{"input":0.15,"output":0.5},"family":"glm-flash","id":"TEE/glm-4.7-flash","last_updated":"2026-01-19","limit":{"context":203000,"input":203000,"output":65535},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 4.7 Flash TEE","open_weights":false,"reasoning":false,"release_date":"2026-01-19","structured_output":false,"tool_call":false},"TEE/glm-5":{"attachment":false,"cost":{"input":1.2,"output":3.5},"family":"glm","id":"TEE/glm-5","last_updated":"2026-02-11","limit":{"context":203000,"input":203000,"output":65535},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 5 TEE","open_weights":false,"reasoning":false,"release_date":"2026-02-11","structured_output":false,"tool_call":false},"TEE/glm-5.1":{"attachment":false,"cost":{"cache_read":0.3,"input":1.5,"output":5.25},"id":"TEE/glm-5.1","last_updated":"2026-04-20","limit":{"context":202752,"input":202752,"output":65535},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 5.1 TEE","open_weights":false,"reasoning":false,"release_date":"2026-04-20","structured_output":false,"tool_call":false},"TEE/glm-5.1-thinking":{"attachment":false,"cost":{"cache_read":0.3,"input":1.5,"output":5.25},"id":"TEE/glm-5.1-thinking","last_updated":"2026-04-20","limit":{"context":202752,"input":202752,"output":65535},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 5.1 Thinking TEE","open_weights":false,"reasoning":true,"release_date":"2026-04-20","structured_output":true,"tool_call":true},"TEE/gpt-oss-120b":{"attachment":false,"cost":{"input":2,"output":2},"family":"gpt-oss","id":"TEE/gpt-oss-120b","last_updated":"2025-08-05","limit":{"context":131072,"input":131072,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"GPT-OSS 120B TEE","open_weights":false,"reasoning":false,"release_date":"2025-08-05","structured_output":false,"tool_call":false},"TEE/gpt-oss-20b":{"attachment":false,"cost":{"input":0.2,"output":0.8},"family":"gpt-oss","id":"TEE/gpt-oss-20b","last_updated":"2025-08-05","limit":{"context":131072,"input":131072,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"GPT-OSS 20B TEE","open_weights":false,"reasoning":false,"release_date":"2025-08-05","structured_output":false,"tool_call":false},"TEE/kimi-k2.5":{"attachment":false,"cost":{"input":0.3,"output":1.9},"family":"kimi","id":"TEE/kimi-k2.5","last_updated":"2026-01-29","limit":{"context":128000,"input":128000,"output":65535},"modalities":{"input":["text"],"output":["text"]},"name":"Kimi K2.5 TEE","open_weights":false,"reasoning":false,"release_date":"2026-01-29","structured_output":false,"tool_call":false},"TEE/kimi-k2.5-thinking":{"attachment":false,"cost":{"input":0.3,"output":1.9},"family":"kimi-thinking","id":"TEE/kimi-k2.5-thinking","last_updated":"2026-01-29","limit":{"context":128000,"input":128000,"output":65535},"modalities":{"input":["text"],"output":["text"]},"name":"Kimi K2.5 Thinking TEE","open_weights":false,"reasoning":true,"release_date":"2026-01-29","structured_output":false,"tool_call":false},"TEE/kimi-k2.6":{"attachment":true,"cost":{"cache_read":0.375,"input":1.5,"output":5.25},"id":"TEE/kimi-k2.6","last_updated":"2026-04-21","limit":{"context":262144,"input":262144,"output":65536},"modalities":{"input":["text","image"],"output":["text"]},"name":"Kimi K2.6 TEE","open_weights":false,"reasoning":false,"release_date":"2026-04-21","structured_output":false,"tool_call":true},"TEE/llama3-3-70b":{"attachment":false,"cost":{"input":2,"output":2},"family":"llama","id":"TEE/llama3-3-70b","last_updated":"2025-07-03","limit":{"context":128000,"input":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.3 70B","open_weights":false,"reasoning":false,"release_date":"2025-07-03","structured_output":false,"tool_call":false},"TEE/minimax-m2.5":{"attachment":false,"cost":{"input":0.2,"output":1.38},"id":"TEE/minimax-m2.5","last_updated":"2026-04-20","limit":{"context":196608,"input":196608,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax M2.5 TEE","open_weights":false,"reasoning":true,"release_date":"2026-04-20","structured_output":true,"tool_call":true},"TEE/qwen2.5-vl-72b-instruct":{"attachment":true,"cost":{"input":0.7,"output":0.7},"family":"qwen","id":"TEE/qwen2.5-vl-72b-instruct","last_updated":"2025-02-01","limit":{"context":65536,"input":65536,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen2.5 VL 72B TEE","open_weights":false,"reasoning":false,"release_date":"2025-02-01","structured_output":false,"tool_call":false},"TEE/qwen3-30b-a3b-instruct-2507":{"attachment":false,"cost":{"input":0.15,"output":0.44999999999999996},"family":"qwen","id":"TEE/qwen3-30b-a3b-instruct-2507","last_updated":"2025-07-29","limit":{"context":262000,"input":262000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 30B A3B Instruct 2507 TEE","open_weights":false,"reasoning":false,"release_date":"2025-07-29","structured_output":false,"tool_call":false},"TEE/qwen3.5-122b-a10b":{"attachment":false,"cost":{"input":0.46,"output":3.68},"id":"TEE/qwen3.5-122b-a10b","last_updated":"2026-05-26","limit":{"context":262144,"input":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3.5 122B A10B TEE","open_weights":false,"reasoning":true,"release_date":"2026-05-26","structured_output":false,"tool_call":true},"TEE/qwen3.5-27b":{"attachment":true,"cost":{"input":0.3,"output":2.4},"id":"TEE/qwen3.5-27b","last_updated":"2026-03-13","limit":{"context":262144,"input":262144,"output":65536},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.5 27B TEE","open_weights":false,"reasoning":false,"release_date":"2026-03-13","structured_output":false,"tool_call":false},"TEE/qwen3.5-397b-a17b":{"attachment":false,"cost":{"input":0.6,"output":3.6},"family":"qwen","id":"TEE/qwen3.5-397b-a17b","last_updated":"2026-02-28","limit":{"context":258048,"input":258048,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3.5 397B A17B TEE","open_weights":false,"reasoning":false,"release_date":"2026-02-28","structured_output":false,"tool_call":false},"TEE/qwen3.6-35b-a3b-uncensored":{"attachment":true,"cost":{"input":0.3,"output":1.5},"id":"TEE/qwen3.6-35b-a3b-uncensored","last_updated":"2026-05-23","limit":{"context":131072,"input":131072,"output":131072},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen3.6 35B A3B Uncensored TEE","open_weights":false,"reasoning":true,"release_date":"2026-05-23","structured_output":true,"tool_call":true},"THUDM/GLM-4-32B-0414":{"attachment":false,"cost":{"input":0.2,"output":0.2},"family":"glm","id":"THUDM/GLM-4-32B-0414","last_updated":"2025-04-14","limit":{"context":128000,"input":128000,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 4 32B 0414","open_weights":false,"reasoning":false,"release_date":"2025-04-14","structured_output":false,"tool_call":false},"THUDM/GLM-4-9B-0414":{"attachment":false,"cost":{"input":0.2,"output":0.2},"family":"glm","id":"THUDM/GLM-4-9B-0414","last_updated":"2025-04-14","limit":{"context":32000,"input":32000,"output":8000},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 4 9B 0414","open_weights":false,"reasoning":false,"release_date":"2025-04-14","structured_output":false,"tool_call":false},"THUDM/GLM-Z1-32B-0414":{"attachment":false,"cost":{"input":0.2,"output":0.2},"family":"glm-z","id":"THUDM/GLM-Z1-32B-0414","last_updated":"2025-04-15","limit":{"context":128000,"input":128000,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"GLM Z1 32B 0414","open_weights":false,"reasoning":false,"release_date":"2025-04-15","structured_output":false,"tool_call":false},"THUDM/GLM-Z1-9B-0414":{"attachment":false,"cost":{"input":0.2,"output":0.2},"family":"glm-z","id":"THUDM/GLM-Z1-9B-0414","last_updated":"2025-04-14","limit":{"context":32000,"input":32000,"output":8000},"modalities":{"input":["text"],"output":["text"]},"name":"GLM Z1 9B 0414","open_weights":false,"reasoning":false,"release_date":"2025-04-14","structured_output":false,"tool_call":false},"TheDrummer/Anubis-70B-v1":{"attachment":false,"cost":{"input":0.31,"output":0.31},"id":"TheDrummer/Anubis-70B-v1","last_updated":"2024-01-01","limit":{"context":65536,"input":65536,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Anubis 70B v1","open_weights":false,"reasoning":false,"release_date":"2024-01-01","structured_output":false,"tool_call":false},"TheDrummer/Anubis-70B-v1.1":{"attachment":false,"cost":{"input":0.31,"output":0.31},"id":"TheDrummer/Anubis-70B-v1.1","last_updated":"2024-01-01","limit":{"context":131072,"input":131072,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Anubis 70B v1.1","open_weights":false,"reasoning":false,"release_date":"2024-01-01","structured_output":false,"tool_call":false},"TheDrummer/Cydonia-24B-v2":{"attachment":false,"cost":{"input":0.1003,"output":0.1207},"id":"TheDrummer/Cydonia-24B-v2","last_updated":"2025-02-17","limit":{"context":16384,"input":16384,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"The Drummer Cydonia 24B v2","open_weights":false,"reasoning":false,"release_date":"2025-02-17","structured_output":false,"tool_call":false},"TheDrummer/Cydonia-24B-v4":{"attachment":false,"cost":{"input":0.2006,"output":0.2414},"id":"TheDrummer/Cydonia-24B-v4","last_updated":"2025-07-22","limit":{"context":16384,"input":16384,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"The Drummer Cydonia 24B v4","open_weights":false,"reasoning":false,"release_date":"2025-07-22","structured_output":false,"tool_call":false},"TheDrummer/Cydonia-24B-v4.1":{"attachment":false,"cost":{"input":0.1003,"output":0.1207},"id":"TheDrummer/Cydonia-24B-v4.1","last_updated":"2025-08-19","limit":{"context":16384,"input":16384,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"The Drummer Cydonia 24B v4.1","open_weights":false,"reasoning":false,"release_date":"2025-08-19","structured_output":false,"tool_call":false},"TheDrummer/Cydonia-24B-v4.3":{"attachment":false,"cost":{"input":0.1003,"output":0.1207},"id":"TheDrummer/Cydonia-24B-v4.3","last_updated":"2025-12-25","limit":{"context":32768,"input":32768,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"The Drummer Cydonia 24B v4.3","open_weights":false,"reasoning":false,"release_date":"2025-12-25","structured_output":false,"tool_call":false},"TheDrummer/Magidonia-24B-v4.3":{"attachment":false,"cost":{"input":0.1003,"output":0.1207},"id":"TheDrummer/Magidonia-24B-v4.3","last_updated":"2025-12-25","limit":{"context":32768,"input":32768,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"The Drummer Magidonia 24B v4.3","open_weights":false,"reasoning":false,"release_date":"2025-12-25","structured_output":false,"tool_call":false},"TheDrummer/Rocinante-12B-v1.1":{"attachment":false,"cost":{"input":0.408,"output":0.595},"id":"TheDrummer/Rocinante-12B-v1.1","last_updated":"2024-01-01","limit":{"context":16384,"input":16384,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Rocinante 12b","open_weights":false,"reasoning":false,"release_date":"2024-01-01","structured_output":false,"tool_call":false},"TheDrummer/Skyfall-31B-v4.2":{"attachment":true,"cost":{"input":0.55,"output":0.8},"id":"TheDrummer/Skyfall-31B-v4.2","last_updated":"2026-03-26","limit":{"context":131072,"input":131072,"output":16384},"modalities":{"input":["text","pdf"],"output":["text"]},"name":"TheDrummer Skyfall 31B v4.2","open_weights":false,"reasoning":false,"release_date":"2026-03-26","structured_output":false,"tool_call":false},"TheDrummer/UnslopNemo-12B-v4.1":{"attachment":true,"cost":{"input":0.493,"output":0.493},"id":"TheDrummer/UnslopNemo-12B-v4.1","last_updated":"2024-01-01","limit":{"context":32768,"input":32768,"output":8192},"modalities":{"input":["text","pdf"],"output":["text"]},"name":"UnslopNemo 12b v4","open_weights":false,"reasoning":false,"release_date":"2024-01-01","structured_output":false,"tool_call":false},"TheDrummer/skyfall-36b-v2":{"attachment":true,"cost":{"input":0.493,"output":0.493},"id":"TheDrummer/skyfall-36b-v2","last_updated":"2025-03-10","limit":{"context":64000,"input":64000,"output":32768},"modalities":{"input":["text","pdf"],"output":["text"]},"name":"TheDrummer Skyfall 36B V2","open_weights":false,"reasoning":false,"release_date":"2025-03-10","structured_output":false,"tool_call":false},"Tongyi-Zhiwen/QwenLong-L1-32B":{"attachment":false,"cost":{"input":0.13999999999999999,"output":0.6},"family":"qwen","id":"Tongyi-Zhiwen/QwenLong-L1-32B","last_updated":"2025-01-25","limit":{"context":128000,"input":128000,"output":40960},"modalities":{"input":["text"],"output":["text"]},"name":"QwenLong L1 32B","open_weights":false,"reasoning":false,"release_date":"2025-01-25","structured_output":false,"tool_call":false},"Unbabel/M-Prometheus-14B":{"attachment":false,"cost":{"input":0.2,"output":0.2},"id":"Unbabel/M-Prometheus-14B","last_updated":"2026-05-29","limit":{"context":32768,"input":32768,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"M-Prometheus 14B","open_weights":false,"reasoning":false,"release_date":"2026-05-29","structured_output":false,"tool_call":false},"VongolaChouko/Starcannon-Unleashed-12B-v1.0":{"attachment":false,"cost":{"input":0.49299999999999994,"output":0.49299999999999994},"family":"mistral-nemo","id":"VongolaChouko/Starcannon-Unleashed-12B-v1.0","last_updated":"2024-07-01","limit":{"context":16384,"input":16384,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Mistral Nemo Starcannon 12b v1","open_weights":false,"reasoning":false,"release_date":"2024-07-01","structured_output":false,"tool_call":false},"abacusai/Dracarys-72B-Instruct":{"attachment":false,"cost":{"input":0.49299999999999994,"output":0.49299999999999994},"family":"llama","id":"abacusai/Dracarys-72B-Instruct","last_updated":"2025-08-02","limit":{"context":16384,"input":16384,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.1 70B Dracarys 2","open_weights":false,"reasoning":false,"release_date":"2025-08-02","structured_output":false,"tool_call":false},"aion-labs/aion-1.0":{"attachment":false,"cost":{"input":3.995,"output":7.99},"family":"llama","id":"aion-labs/aion-1.0","last_updated":"2025-02-01","limit":{"context":65536,"input":65536,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Aion 1.0","open_weights":false,"reasoning":false,"release_date":"2025-02-01","structured_output":false,"tool_call":false},"aion-labs/aion-1.0-mini":{"attachment":false,"cost":{"input":0.7989999999999999,"output":1.394},"family":"deepseek","id":"aion-labs/aion-1.0-mini","last_updated":"2025-02-20","limit":{"context":131072,"input":131072,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Aion 1.0 mini (DeepSeek)","open_weights":false,"reasoning":false,"release_date":"2025-02-20","structured_output":false,"tool_call":false},"aion-labs/aion-2.0":{"attachment":false,"cost":{"input":0.8,"output":1.6},"id":"aion-labs/aion-2.0","last_updated":"2026-02-23","limit":{"context":131072,"input":131072,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"AionLabs: Aion-2.0","open_weights":false,"reasoning":false,"release_date":"2026-02-23","structured_output":false,"tool_call":false},"aion-labs/aion-2.5":{"attachment":false,"cost":{"cache_read":0.35,"input":1,"output":3},"id":"aion-labs/aion-2.5","last_updated":"2026-03-20","limit":{"context":131072,"input":131072,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"AionLabs: Aion-2.5","open_weights":false,"reasoning":false,"release_date":"2026-03-20","structured_output":false,"tool_call":false},"aion-labs/aion-rp-llama-3.1-8b":{"attachment":false,"cost":{"input":0.2006,"output":0.2006},"family":"llama","id":"aion-labs/aion-rp-llama-3.1-8b","last_updated":"2024-07-23","limit":{"context":32768,"input":32768,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.1 8b (uncensored)","open_weights":false,"reasoning":false,"release_date":"2024-07-23","structured_output":false,"tool_call":false},"alibaba/qwen3.6-27b":{"attachment":true,"cost":{"input":0.203,"output":2.24},"id":"alibaba/qwen3.6-27b","last_updated":"2026-04-23","limit":{"context":260096,"input":260096,"output":65536},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.6 27B","open_weights":false,"reasoning":false,"release_date":"2026-04-23","structured_output":false,"tool_call":false},"alibaba/qwen3.6-27b:thinking":{"attachment":true,"cost":{"input":0.203,"output":2.24},"id":"alibaba/qwen3.6-27b:thinking","last_updated":"2026-04-23","limit":{"context":260096,"input":260096,"output":65536},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.6 27B Thinking","open_weights":false,"reasoning":true,"release_date":"2026-04-23","structured_output":false,"tool_call":false},"alibaba/qwen3.6-flash":{"attachment":false,"cost":{"input":0.19,"output":1.16},"family":"qwen3.6","id":"alibaba/qwen3.6-flash","last_updated":"2026-04-17","limit":{"context":991800,"output":65536},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.6 Flash","open_weights":false,"reasoning":false,"release_date":"2026-04-17","structured_output":false,"tool_call":false},"allenai/olmo-3-32b-think":{"attachment":false,"cost":{"input":0.3,"output":0.44999999999999996},"family":"allenai","id":"allenai/olmo-3-32b-think","last_updated":"2025-11-01","limit":{"context":128000,"input":128000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Olmo 3 32B Think","open_weights":false,"reasoning":true,"release_date":"2025-11-01","structured_output":false,"tool_call":false},"amazon/nova-2-lite-v1":{"attachment":false,"cost":{"input":0.5099999999999999,"output":4.25},"family":"nova","id":"amazon/nova-2-lite-v1","last_updated":"2024-12-03","limit":{"context":1000000,"input":1000000,"output":65535},"modalities":{"input":["text"],"output":["text"]},"name":"Amazon Nova 2 Lite","open_weights":false,"reasoning":false,"release_date":"2024-12-03","structured_output":false,"tool_call":false},"amazon/nova-lite-v1":{"attachment":false,"cost":{"input":0.0595,"output":0.238},"family":"nova-lite","id":"amazon/nova-lite-v1","last_updated":"2024-12-03","limit":{"context":300000,"input":300000,"output":5120},"modalities":{"input":["text"],"output":["text"]},"name":"Amazon Nova Lite 1.0","open_weights":false,"reasoning":false,"release_date":"2024-12-03","structured_output":false,"tool_call":false},"amazon/nova-micro-v1":{"attachment":false,"cost":{"input":0.0357,"output":0.1394},"family":"nova-micro","id":"amazon/nova-micro-v1","last_updated":"2024-12-03","limit":{"context":128000,"input":128000,"output":5120},"modalities":{"input":["text"],"output":["text"]},"name":"Amazon Nova Micro 1.0","open_weights":false,"reasoning":false,"release_date":"2024-12-03","structured_output":false,"tool_call":false},"amazon/nova-pro-v1":{"attachment":false,"cost":{"input":0.7989999999999999,"output":3.1959999999999997},"family":"nova-pro","id":"amazon/nova-pro-v1","last_updated":"2024-12-03","limit":{"context":300000,"input":300000,"output":32000},"modalities":{"input":["text"],"output":["text"]},"name":"Amazon Nova Pro 1.0","open_weights":false,"reasoning":false,"release_date":"2024-12-03","structured_output":false,"tool_call":false},"anthracite-org/magnum-v2-72b":{"attachment":false,"cost":{"input":2.006,"output":2.992},"family":"llama","id":"anthracite-org/magnum-v2-72b","last_updated":"2024-07-01","limit":{"context":16384,"input":16384,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Magnum V2 72B","open_weights":false,"reasoning":false,"release_date":"2024-07-01","structured_output":false,"tool_call":false},"anthracite-org/magnum-v4-72b":{"attachment":true,"cost":{"input":2.006,"output":2.992},"family":"llama","id":"anthracite-org/magnum-v4-72b","last_updated":"2025-01-01","limit":{"context":16384,"input":16384,"output":8192},"modalities":{"input":["text","pdf"],"output":["text"]},"name":"Magnum v4 72B","open_weights":false,"reasoning":false,"release_date":"2025-01-01","structured_output":false,"tool_call":false},"anthropic/claude-haiku-latest":{"attachment":true,"cost":{"cache_read":0.1,"input":1,"output":5},"id":"anthropic/claude-haiku-latest","last_updated":"2026-03-29","limit":{"context":200000,"input":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Haiku Latest","open_weights":false,"reasoning":true,"release_date":"2026-03-29","structured_output":true,"tool_call":true},"anthropic/claude-opus-4.6":{"attachment":true,"cost":{"input":4.998,"output":25.007},"family":"claude-opus","id":"anthropic/claude-opus-4.6","last_updated":"2026-02-05","limit":{"context":1000000,"input":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude 4.6 Opus","open_weights":false,"reasoning":true,"release_date":"2026-02-05","structured_output":true,"tool_call":true},"anthropic/claude-opus-4.6:thinking":{"attachment":true,"cost":{"input":4.998,"output":25.007},"family":"claude-opus","id":"anthropic/claude-opus-4.6:thinking","last_updated":"2026-02-05","limit":{"context":1000000,"input":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude 4.6 Opus Thinking","open_weights":false,"reasoning":true,"release_date":"2026-02-05","structured_output":true,"tool_call":true},"anthropic/claude-opus-4.6:thinking:low":{"attachment":true,"cost":{"input":4.998,"output":25.007},"family":"claude-opus","id":"anthropic/claude-opus-4.6:thinking:low","last_updated":"2026-02-05","limit":{"context":1000000,"input":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude 4.6 Opus Thinking Low","open_weights":false,"reasoning":true,"release_date":"2026-02-05","structured_output":true,"tool_call":true},"anthropic/claude-opus-4.6:thinking:max":{"attachment":true,"cost":{"input":4.998,"output":25.007},"family":"claude-opus","id":"anthropic/claude-opus-4.6:thinking:max","last_updated":"2026-02-05","limit":{"context":1000000,"input":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude 4.6 Opus Thinking Max","open_weights":false,"reasoning":true,"release_date":"2026-02-05","structured_output":true,"tool_call":true},"anthropic/claude-opus-4.6:thinking:medium":{"attachment":true,"cost":{"input":4.998,"output":25.007},"family":"claude-opus","id":"anthropic/claude-opus-4.6:thinking:medium","last_updated":"2026-02-05","limit":{"context":1000000,"input":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude 4.6 Opus Thinking Medium","open_weights":false,"reasoning":true,"release_date":"2026-02-05","structured_output":true,"tool_call":true},"anthropic/claude-opus-4.7":{"attachment":true,"cost":{"cache_read":0.4998,"input":4.998,"output":25.007},"id":"anthropic/claude-opus-4.7","last_updated":"2026-04-16","limit":{"context":1000000,"input":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude 4.7 Opus","open_weights":false,"reasoning":true,"release_date":"2026-04-16","structured_output":true,"tool_call":true},"anthropic/claude-opus-4.7:thinking":{"attachment":true,"cost":{"cache_read":0.4998,"input":4.998,"output":25.007},"id":"anthropic/claude-opus-4.7:thinking","last_updated":"2026-04-16","limit":{"context":1000000,"input":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude 4.7 Opus Thinking","open_weights":false,"reasoning":true,"release_date":"2026-04-16","structured_output":true,"tool_call":true},"anthropic/claude-opus-4.8":{"attachment":true,"cost":{"cache_read":0.4998,"input":4.998,"output":25.007},"id":"anthropic/claude-opus-4.8","last_updated":"2026-05-28","limit":{"context":1000000,"input":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.8","open_weights":false,"reasoning":true,"release_date":"2026-05-28","structured_output":true,"tool_call":true},"anthropic/claude-opus-4.8:thinking":{"attachment":true,"cost":{"cache_read":0.4998,"input":4.998,"output":25.007},"id":"anthropic/claude-opus-4.8:thinking","last_updated":"2026-05-28","limit":{"context":1000000,"input":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.8 Thinking","open_weights":false,"reasoning":true,"release_date":"2026-05-28","structured_output":true,"tool_call":true},"anthropic/claude-opus-latest":{"attachment":true,"cost":{"cache_read":0.4998,"input":4.998,"output":25.007},"id":"anthropic/claude-opus-latest","last_updated":"2026-03-29","limit":{"context":1000000,"input":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus Latest","open_weights":false,"reasoning":true,"release_date":"2026-03-29","structured_output":true,"tool_call":true},"anthropic/claude-sonnet-4.6":{"attachment":true,"cost":{"input":2.992,"output":14.993999999999998},"family":"claude-sonnet","id":"anthropic/claude-sonnet-4.6","knowledge":"2025-08-31","last_updated":"2026-02-17","limit":{"context":1000000,"input":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 4.6","open_weights":false,"reasoning":false,"release_date":"2026-02-17","structured_output":true,"tool_call":true},"anthropic/claude-sonnet-4.6:thinking":{"attachment":true,"cost":{"input":2.992,"output":14.993999999999998},"family":"claude-sonnet","id":"anthropic/claude-sonnet-4.6:thinking","knowledge":"2025-08-31","last_updated":"2026-02-17","limit":{"context":1000000,"input":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 4.6 Thinking","open_weights":false,"reasoning":true,"release_date":"2026-02-17","structured_output":true,"tool_call":true},"anthropic/claude-sonnet-latest":{"attachment":true,"cost":{"cache_read":0.2992,"input":2.992,"output":14.994},"id":"anthropic/claude-sonnet-latest","last_updated":"2026-03-01","limit":{"context":1000000,"input":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet Latest","open_weights":false,"reasoning":true,"release_date":"2026-03-01","structured_output":true,"tool_call":true},"arcee-ai/trinity-large-thinking":{"attachment":false,"cost":{"input":0.25,"output":0.9},"id":"arcee-ai/trinity-large-thinking","last_updated":"2026-04-01","limit":{"context":262144,"input":262144,"output":80000},"modalities":{"input":["text"],"output":["text"]},"name":"Trinity Large Thinking","open_weights":false,"reasoning":true,"release_date":"2026-04-01","structured_output":false,"tool_call":true},"arcee-ai/trinity-mini":{"attachment":false,"cost":{"input":0.045000000000000005,"output":0.15},"family":"trinity-mini","id":"arcee-ai/trinity-mini","last_updated":"2025-12-01","limit":{"context":131072,"input":131072,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Trinity Mini","open_weights":false,"reasoning":false,"release_date":"2025-12-01","structured_output":false,"tool_call":false},"asi1-mini":{"attachment":true,"cost":{"input":1,"output":1},"id":"asi1-mini","last_updated":"2025-03-25","limit":{"context":128000,"input":128000,"output":16384},"modalities":{"input":["text","pdf"],"output":["text"]},"name":"ASI1 Mini","open_weights":false,"reasoning":false,"release_date":"2025-03-25","structured_output":false,"tool_call":false},"auto-model":{"attachment":false,"cost":{"input":0,"output":0},"id":"auto-model","last_updated":"2024-06-01","limit":{"context":1000000,"input":1000000,"output":1000000},"modalities":{"input":["text"],"output":["text"]},"name":"Auto model","open_weights":false,"reasoning":false,"release_date":"2024-06-01","structured_output":false,"tool_call":false},"auto-model-basic":{"attachment":false,"cost":{"input":9.996,"output":19.992},"id":"auto-model-basic","last_updated":"2024-06-01","limit":{"context":1000000,"input":1000000,"output":1000000},"modalities":{"input":["text"],"output":["text"]},"name":"Auto model (Basic)","open_weights":false,"reasoning":false,"release_date":"2024-06-01","structured_output":false,"tool_call":false},"auto-model-premium":{"attachment":false,"cost":{"input":9.996,"output":19.992},"id":"auto-model-premium","last_updated":"2024-06-01","limit":{"context":1000000,"input":1000000,"output":1000000},"modalities":{"input":["text"],"output":["text"]},"name":"Auto model (Premium)","open_weights":false,"reasoning":false,"release_date":"2024-06-01","structured_output":false,"tool_call":false},"auto-model-standard":{"attachment":false,"cost":{"input":9.996,"output":19.992},"id":"auto-model-standard","last_updated":"2024-06-01","limit":{"context":1000000,"input":1000000,"output":1000000},"modalities":{"input":["text"],"output":["text"]},"name":"Auto model (Standard)","open_weights":false,"reasoning":false,"release_date":"2024-06-01","structured_output":false,"tool_call":false},"azure-gpt-4-turbo":{"attachment":false,"cost":{"input":9.996,"output":30.005},"id":"azure-gpt-4-turbo","last_updated":"2024-01-01","limit":{"context":128000,"input":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Azure gpt-4-turbo","open_weights":false,"reasoning":false,"release_date":"2023-11-06","structured_output":false,"tool_call":false},"azure-gpt-4o":{"attachment":true,"cost":{"input":2.499,"output":9.996},"id":"azure-gpt-4o","last_updated":"2024-05-13","limit":{"context":128000,"input":128000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"Azure gpt-4o","open_weights":false,"reasoning":false,"release_date":"2024-05-13","structured_output":true,"tool_call":true},"azure-gpt-4o-mini":{"attachment":true,"cost":{"input":0.1496,"output":0.595},"id":"azure-gpt-4o-mini","last_updated":"2024-07-18","limit":{"context":128000,"input":128000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"Azure gpt-4o-mini","open_weights":false,"reasoning":false,"release_date":"2024-07-18","structured_output":true,"tool_call":true},"azure-o1":{"attachment":false,"cost":{"input":14.994,"output":59.993},"id":"azure-o1","last_updated":"2024-12-17","limit":{"context":200000,"input":200000,"output":100000},"modalities":{"input":["text"],"output":["text"]},"name":"Azure o1","open_weights":false,"reasoning":false,"release_date":"2024-12-17","structured_output":false,"tool_call":false},"azure-o3-mini":{"attachment":false,"cost":{"input":1.088,"output":4.3996},"id":"azure-o3-mini","last_updated":"2025-01-31","limit":{"context":200000,"input":200000,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Azure o3-mini","open_weights":false,"reasoning":false,"release_date":"2025-01-31","structured_output":false,"tool_call":false},"baidu/ernie-4.5-vl-28b-a3b":{"attachment":true,"cost":{"input":0.13999999999999999,"output":0.5599999999999999},"family":"ernie","id":"baidu/ernie-4.5-vl-28b-a3b","last_updated":"2025-06-30","limit":{"context":32768,"input":32768,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"ERNIE 4.5 VL 28B","open_weights":false,"reasoning":false,"release_date":"2025-06-30","structured_output":false,"tool_call":false},"baseten/Kimi-K2-Instruct-FP4":{"attachment":false,"cost":{"input":0.1,"output":2},"family":"kimi","id":"baseten/Kimi-K2-Instruct-FP4","last_updated":"2025-07-11","limit":{"context":128000,"input":128000,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"Kimi K2 0711 Instruct FP4","open_weights":false,"reasoning":false,"release_date":"2025-07-11","structured_output":false,"tool_call":false},"brave":{"attachment":false,"cost":{"input":5,"output":5},"id":"brave","last_updated":"2024-01-01","limit":{"context":8192,"input":8192,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Brave (Answers)","open_weights":false,"reasoning":false,"release_date":"2023-03-02","structured_output":false,"tool_call":false},"brave-pro":{"attachment":false,"cost":{"input":5,"output":5},"id":"brave-pro","last_updated":"2024-01-01","limit":{"context":8192,"input":8192,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Brave (Pro)","open_weights":false,"reasoning":false,"release_date":"2023-03-02","structured_output":false,"tool_call":false},"brave-research":{"attachment":false,"cost":{"input":5,"output":5},"id":"brave-research","last_updated":"2024-01-01","limit":{"context":16384,"input":16384,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Brave (Research)","open_weights":false,"reasoning":false,"release_date":"2023-03-02","structured_output":false,"tool_call":false},"bytedance-seed/seed-2.0-lite":{"attachment":false,"cost":{"input":0.25,"output":2},"id":"bytedance-seed/seed-2.0-lite","last_updated":"2026-03-10","limit":{"context":262144,"input":262144,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"ByteDance Seed 2.0 Lite","open_weights":false,"reasoning":false,"release_date":"2026-03-10","structured_output":true,"tool_call":false},"chutesai/Mistral-Small-3.2-24B-Instruct-2506":{"attachment":false,"cost":{"input":0.2,"output":0.4},"family":"chutesai","id":"chutesai/Mistral-Small-3.2-24B-Instruct-2506","last_updated":"2025-04-15","limit":{"context":128000,"input":128000,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"Mistral Small 3.2 24b Instruct","open_weights":false,"reasoning":false,"release_date":"2025-04-15","structured_output":false,"tool_call":false},"claude-3-5-haiku-20241022":{"attachment":true,"cost":{"input":0.8,"output":4},"id":"claude-3-5-haiku-20241022","last_updated":"2024-10-22","limit":{"context":200000,"input":200000,"output":8192},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude 3.5 Haiku","open_weights":false,"reasoning":false,"release_date":"2024-10-22","structured_output":true,"tool_call":true},"claude-haiku-4-5-20251001":{"attachment":true,"cost":{"input":1,"output":5},"id":"claude-haiku-4-5-20251001","last_updated":"2025-10-15","limit":{"context":200000,"input":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Haiku 4.5","open_weights":false,"reasoning":false,"release_date":"2025-10-15","structured_output":true,"tool_call":true},"claude-haiku-4-5-20251001-thinking":{"attachment":true,"cost":{"cache_read":0.1,"input":1,"output":5},"id":"claude-haiku-4-5-20251001-thinking","last_updated":"2025-10-15","limit":{"context":200000,"input":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Haiku 4.5 Thinking","open_weights":false,"reasoning":true,"release_date":"2025-10-15","structured_output":true,"tool_call":true},"claude-opus-4-1-20250805":{"attachment":true,"cost":{"input":14.994,"output":75.004},"id":"claude-opus-4-1-20250805","last_updated":"2025-08-05","limit":{"context":200000,"input":200000,"output":32000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude 4.1 Opus","open_weights":false,"reasoning":false,"release_date":"2025-08-05","structured_output":true,"tool_call":true},"claude-opus-4-1-thinking":{"attachment":true,"cost":{"input":14.994,"output":75.004},"id":"claude-opus-4-1-thinking","last_updated":"2025-05-22","limit":{"context":200000,"input":200000,"output":32000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude 4.1 Opus Thinking","open_weights":false,"reasoning":true,"release_date":"2025-05-22","structured_output":true,"tool_call":true},"claude-opus-4-1-thinking:1024":{"attachment":true,"cost":{"input":14.994,"output":75.004},"id":"claude-opus-4-1-thinking:1024","last_updated":"2025-05-22","limit":{"context":200000,"input":200000,"output":32000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude 4.1 Opus Thinking (1K)","open_weights":false,"reasoning":true,"release_date":"2025-05-22","structured_output":true,"tool_call":true},"claude-opus-4-1-thinking:32000":{"attachment":true,"cost":{"input":14.994,"output":75.004},"id":"claude-opus-4-1-thinking:32000","last_updated":"2025-05-22","limit":{"context":200000,"input":200000,"output":32000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude 4.1 Opus Thinking (32K)","open_weights":false,"reasoning":true,"release_date":"2025-05-22","structured_output":true,"tool_call":true},"claude-opus-4-1-thinking:32768":{"attachment":true,"cost":{"input":14.994,"output":75.004},"id":"claude-opus-4-1-thinking:32768","last_updated":"2025-05-22","limit":{"context":200000,"input":200000,"output":32000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude 4.1 Opus Thinking (32K)","open_weights":false,"reasoning":true,"release_date":"2025-05-22","structured_output":true,"tool_call":true},"claude-opus-4-1-thinking:8192":{"attachment":true,"cost":{"input":14.994,"output":75.004},"id":"claude-opus-4-1-thinking:8192","last_updated":"2025-05-22","limit":{"context":200000,"input":200000,"output":32000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude 4.1 Opus Thinking (8K)","open_weights":false,"reasoning":true,"release_date":"2025-05-22","structured_output":true,"tool_call":true},"claude-opus-4-20250514":{"attachment":true,"cost":{"input":14.994,"output":75.004},"id":"claude-opus-4-20250514","last_updated":"2025-05-14","limit":{"context":200000,"input":200000,"output":32000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude 4 Opus","open_weights":false,"reasoning":false,"release_date":"2025-05-14","structured_output":true,"tool_call":true},"claude-opus-4-5-20251101":{"attachment":true,"cost":{"input":4.998,"output":25.007},"id":"claude-opus-4-5-20251101","last_updated":"2025-11-01","limit":{"context":200000,"input":200000,"output":32000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude 4.5 Opus","open_weights":false,"reasoning":true,"release_date":"2025-11-01","structured_output":true,"tool_call":true},"claude-opus-4-5-20251101:thinking":{"attachment":true,"cost":{"input":4.998,"output":25.007},"id":"claude-opus-4-5-20251101:thinking","last_updated":"2025-11-01","limit":{"context":200000,"input":200000,"output":32000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude 4.5 Opus Thinking","open_weights":false,"reasoning":true,"release_date":"2025-11-01","structured_output":true,"tool_call":true},"claude-opus-4-thinking":{"attachment":true,"cost":{"input":14.994,"output":75.004},"id":"claude-opus-4-thinking","last_updated":"2025-07-15","limit":{"context":200000,"input":200000,"output":32000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude 4 Opus Thinking","open_weights":false,"reasoning":true,"release_date":"2025-07-15","structured_output":true,"tool_call":true},"claude-opus-4-thinking:1024":{"attachment":true,"cost":{"input":14.994,"output":75.004},"id":"claude-opus-4-thinking:1024","last_updated":"2025-05-22","limit":{"context":200000,"input":200000,"output":32000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude 4 Opus Thinking (1K)","open_weights":false,"reasoning":true,"release_date":"2025-05-22","structured_output":true,"tool_call":true},"claude-opus-4-thinking:32000":{"attachment":true,"cost":{"input":14.994,"output":75.004},"id":"claude-opus-4-thinking:32000","last_updated":"2025-05-22","limit":{"context":200000,"input":200000,"output":32000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude 4 Opus Thinking (32K)","open_weights":false,"reasoning":true,"release_date":"2025-05-22","structured_output":true,"tool_call":true},"claude-opus-4-thinking:32768":{"attachment":true,"cost":{"input":14.994,"output":75.004},"id":"claude-opus-4-thinking:32768","last_updated":"2025-05-22","limit":{"context":200000,"input":200000,"output":32000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude 4 Opus Thinking (32K)","open_weights":false,"reasoning":true,"release_date":"2025-05-22","structured_output":true,"tool_call":true},"claude-opus-4-thinking:8192":{"attachment":true,"cost":{"input":14.994,"output":75.004},"id":"claude-opus-4-thinking:8192","last_updated":"2025-05-22","limit":{"context":200000,"input":200000,"output":32000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude 4 Opus Thinking (8K)","open_weights":false,"reasoning":true,"release_date":"2025-05-22","structured_output":true,"tool_call":true},"claude-sonnet-4-20250514":{"attachment":true,"cost":{"input":2.992,"output":14.994},"id":"claude-sonnet-4-20250514","last_updated":"2025-09-29","limit":{"context":200000,"input":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude 4 Sonnet","open_weights":false,"reasoning":false,"release_date":"2025-09-29","structured_output":true,"tool_call":true},"claude-sonnet-4-5-20250929":{"attachment":true,"cost":{"input":2.992,"output":14.994},"id":"claude-sonnet-4-5-20250929","last_updated":"2025-09-29","limit":{"context":1000000,"input":1000000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 4.5","open_weights":false,"reasoning":false,"release_date":"2025-09-29","structured_output":true,"tool_call":true},"claude-sonnet-4-5-20250929-thinking":{"attachment":true,"cost":{"input":2.992,"output":14.994},"id":"claude-sonnet-4-5-20250929-thinking","last_updated":"2025-09-29","limit":{"context":1000000,"input":1000000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 4.5 Thinking","open_weights":false,"reasoning":true,"release_date":"2025-09-29","structured_output":true,"tool_call":true},"claude-sonnet-4-thinking":{"attachment":true,"cost":{"input":2.992,"output":14.994},"id":"claude-sonnet-4-thinking","last_updated":"2025-02-24","limit":{"context":1000000,"input":1000000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude 4 Sonnet Thinking","open_weights":false,"reasoning":true,"release_date":"2025-02-24","structured_output":true,"tool_call":true},"claude-sonnet-4-thinking:1024":{"attachment":true,"cost":{"input":2.992,"output":14.994},"id":"claude-sonnet-4-thinking:1024","last_updated":"2025-05-22","limit":{"context":1000000,"input":1000000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude 4 Sonnet Thinking (1K)","open_weights":false,"reasoning":true,"release_date":"2025-05-22","structured_output":true,"tool_call":true},"claude-sonnet-4-thinking:32768":{"attachment":true,"cost":{"input":2.992,"output":14.994},"id":"claude-sonnet-4-thinking:32768","last_updated":"2025-05-22","limit":{"context":1000000,"input":1000000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude 4 Sonnet Thinking (32K)","open_weights":false,"reasoning":true,"release_date":"2025-05-22","structured_output":true,"tool_call":true},"claude-sonnet-4-thinking:64000":{"attachment":true,"cost":{"input":2.992,"output":14.994},"id":"claude-sonnet-4-thinking:64000","last_updated":"2025-05-22","limit":{"context":1000000,"input":1000000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude 4 Sonnet Thinking (64K)","open_weights":false,"reasoning":true,"release_date":"2025-05-22","structured_output":true,"tool_call":true},"claude-sonnet-4-thinking:8192":{"attachment":true,"cost":{"input":2.992,"output":14.994},"id":"claude-sonnet-4-thinking:8192","last_updated":"2025-05-22","limit":{"context":1000000,"input":1000000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude 4 Sonnet Thinking (8K)","open_weights":false,"reasoning":true,"release_date":"2025-05-22","structured_output":true,"tool_call":true},"claw-high":{"attachment":true,"cost":{"input":4.998,"output":25.007},"id":"claw-high","last_updated":"2026-05-11","limit":{"context":1000000,"input":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claw High","open_weights":false,"reasoning":true,"release_date":"2026-05-11","structured_output":true,"tool_call":true},"claw-low":{"attachment":true,"cost":{"cache_read":0.025,"input":0.25,"output":1.5},"id":"claw-low","last_updated":"2026-05-11","limit":{"context":1048576,"input":1048576,"output":65536},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claw Low","open_weights":false,"reasoning":true,"release_date":"2026-05-11","structured_output":true,"tool_call":true},"claw-medium":{"attachment":false,"cost":{"input":0.3,"output":1.2},"id":"claw-medium","last_updated":"2026-05-11","limit":{"context":204800,"input":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"Claw Medium","open_weights":false,"reasoning":true,"release_date":"2026-05-11","structured_output":true,"tool_call":true},"cognitivecomputations/dolphin-2.9.2-qwen2-72b":{"attachment":false,"cost":{"input":0.306,"output":0.306},"family":"qwen","id":"cognitivecomputations/dolphin-2.9.2-qwen2-72b","last_updated":"2025-02-27","limit":{"context":8192,"input":8192,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Dolphin 72b","open_weights":false,"reasoning":false,"release_date":"2025-02-27","structured_output":false,"tool_call":false},"cohere/command-r":{"attachment":false,"cost":{"input":0.476,"output":1.428},"family":"command-r","id":"cohere/command-r","last_updated":"2024-03-11","limit":{"context":128000,"input":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Cohere: Command R","open_weights":false,"reasoning":false,"release_date":"2024-03-11","structured_output":false,"tool_call":false},"cohere/command-r-plus-08-2024":{"attachment":false,"cost":{"input":2.856,"output":14.246},"family":"command-r","id":"cohere/command-r-plus-08-2024","last_updated":"2024-08-30","limit":{"context":128000,"input":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Cohere: Command R+","open_weights":false,"reasoning":false,"release_date":"2024-08-30","structured_output":false,"tool_call":true},"command-a-plus-05-2026":{"attachment":true,"cost":{"input":2.5,"output":10},"id":"command-a-plus-05-2026","last_updated":"2026-05-22","limit":{"context":128000,"input":128000,"output":64000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Cohere Command A+ (05/2026)","open_weights":false,"reasoning":true,"release_date":"2026-05-22","structured_output":true,"tool_call":false},"command-a-reasoning-08-2025":{"attachment":false,"cost":{"input":2.5,"output":10},"id":"command-a-reasoning-08-2025","last_updated":"2025-08-22","limit":{"context":256000,"input":256000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Cohere Command A (08/2025)","open_weights":false,"reasoning":false,"release_date":"2025-08-22","structured_output":false,"tool_call":false},"deepclaude":{"attachment":true,"cost":{"input":3,"output":15},"id":"deepclaude","last_updated":"2025-02-01","limit":{"context":128000,"input":128000,"output":8192},"modalities":{"input":["text","pdf"],"output":["text"]},"name":"DeepClaude","open_weights":false,"reasoning":false,"release_date":"2025-02-01","structured_output":false,"tool_call":false},"deepcogito/cogito-v1-preview-qwen-32B":{"attachment":false,"cost":{"input":1.7999999999999998,"output":1.7999999999999998},"family":"qwen","id":"deepcogito/cogito-v1-preview-qwen-32B","last_updated":"2025-05-10","limit":{"context":128000,"input":128000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Cogito v1 Preview Qwen 32B","open_weights":false,"reasoning":false,"release_date":"2025-05-10","structured_output":false,"tool_call":false},"deepseek-ai/DeepSeek-R1-0528":{"attachment":false,"cost":{"input":0.4,"output":1.7},"family":"deepseek","id":"deepseek-ai/DeepSeek-R1-0528","last_updated":"2025-05-28","limit":{"context":128000,"input":128000,"output":163840},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek R1 0528","open_weights":false,"reasoning":true,"release_date":"2025-05-28","structured_output":false,"tool_call":false},"deepseek-ai/DeepSeek-V3.1":{"attachment":true,"cost":{"input":0.2,"output":0.7},"family":"deepseek","id":"deepseek-ai/DeepSeek-V3.1","last_updated":"2025-07-26","limit":{"context":128000,"input":128000,"output":65536},"modalities":{"input":["text","pdf"],"output":["text"]},"name":"DeepSeek V3.1","open_weights":false,"reasoning":false,"release_date":"2025-07-26","structured_output":false,"tool_call":false},"deepseek-ai/DeepSeek-V3.1-Terminus":{"attachment":false,"cost":{"input":0.25,"output":0.7},"family":"deepseek","id":"deepseek-ai/DeepSeek-V3.1-Terminus","last_updated":"2025-08-02","limit":{"context":128000,"input":128000,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V3.1 Terminus","open_weights":false,"reasoning":false,"release_date":"2025-08-02","structured_output":true,"tool_call":true},"deepseek-ai/DeepSeek-V3.1-Terminus:thinking":{"attachment":false,"cost":{"input":0.25,"output":0.7},"family":"deepseek-thinking","id":"deepseek-ai/DeepSeek-V3.1-Terminus:thinking","last_updated":"2025-09-22","limit":{"context":128000,"input":128000,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V3.1 Terminus (Thinking)","open_weights":false,"reasoning":false,"release_date":"2025-09-22","structured_output":true,"tool_call":true},"deepseek-ai/DeepSeek-V3.1:thinking":{"attachment":false,"cost":{"input":0.2,"output":0.7},"family":"deepseek-thinking","id":"deepseek-ai/DeepSeek-V3.1:thinking","last_updated":"2025-08-21","limit":{"context":128000,"input":128000,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V3.1 Thinking","open_weights":false,"reasoning":false,"release_date":"2025-08-21","structured_output":false,"tool_call":false},"deepseek-ai/deepseek-v3.2-exp":{"attachment":false,"cost":{"input":0.27999999999999997,"output":0.42000000000000004},"family":"deepseek","id":"deepseek-ai/deepseek-v3.2-exp","last_updated":"2025-09-29","limit":{"context":163840,"input":163840,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V3.2 Exp","open_weights":false,"reasoning":false,"release_date":"2025-09-29","structured_output":false,"tool_call":false},"deepseek-ai/deepseek-v3.2-exp-thinking":{"attachment":false,"cost":{"input":0.27999999999999997,"output":0.42000000000000004},"family":"deepseek-thinking","id":"deepseek-ai/deepseek-v3.2-exp-thinking","last_updated":"2025-09-29","limit":{"context":163840,"input":163840,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V3.2 Exp Thinking","open_weights":false,"reasoning":true,"release_date":"2025-09-29","structured_output":false,"tool_call":false},"deepseek-chat":{"attachment":true,"cost":{"input":0.25,"output":0.7},"id":"deepseek-chat","last_updated":"2025-02-27","limit":{"context":128000,"input":128000,"output":8192},"modalities":{"input":["text","pdf"],"output":["text"]},"name":"DeepSeek V3/Deepseek Chat","open_weights":false,"reasoning":false,"release_date":"2025-02-27","structured_output":true,"tool_call":true},"deepseek-chat-cheaper":{"attachment":true,"cost":{"input":0.25,"output":0.7},"id":"deepseek-chat-cheaper","last_updated":"2025-04-15","limit":{"context":128000,"input":128000,"output":8192},"modalities":{"input":["text","pdf"],"output":["text"]},"name":"DeepSeek V3/Chat Cheaper","open_weights":false,"reasoning":false,"release_date":"2025-04-15","structured_output":true,"tool_call":true},"deepseek-math-v2":{"attachment":false,"cost":{"input":0.6,"output":2.2},"id":"deepseek-math-v2","last_updated":"2025-12-03","limit":{"context":128000,"input":128000,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek Math V2","open_weights":false,"reasoning":false,"release_date":"2025-12-03","structured_output":false,"tool_call":false},"deepseek-r1":{"attachment":false,"cost":{"input":0.4,"output":1.7},"id":"deepseek-r1","last_updated":"2025-01-20","limit":{"context":128000,"input":128000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek R1","open_weights":false,"reasoning":true,"release_date":"2025-01-20","structured_output":false,"tool_call":false},"deepseek-r1-sambanova":{"attachment":false,"cost":{"input":4.998,"output":6.987},"id":"deepseek-r1-sambanova","last_updated":"2025-02-20","limit":{"context":128000,"input":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek R1 Fast","open_weights":false,"reasoning":false,"release_date":"2025-02-20","structured_output":false,"tool_call":false},"deepseek-reasoner":{"attachment":false,"cost":{"input":0.4,"output":1.7},"id":"deepseek-reasoner","last_updated":"2025-01-20","limit":{"context":64000,"input":64000,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek Reasoner","open_weights":false,"reasoning":false,"release_date":"2025-01-20","structured_output":false,"tool_call":false},"deepseek-reasoner-cheaper":{"attachment":false,"cost":{"input":0.4,"output":1.7},"id":"deepseek-reasoner-cheaper","last_updated":"2025-01-20","limit":{"context":128000,"input":128000,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Deepseek R1 Cheaper","open_weights":false,"reasoning":false,"release_date":"2025-01-20","structured_output":false,"tool_call":false},"deepseek-v3-0324":{"attachment":false,"cost":{"input":0.25,"output":0.7},"id":"deepseek-v3-0324","last_updated":"2025-03-24","limit":{"context":128000,"input":128000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek Chat 0324","open_weights":false,"reasoning":false,"release_date":"2025-03-24","structured_output":true,"tool_call":true},"deepseek/deepseek-latest":{"attachment":false,"cost":{"cache_read":0.11,"input":1.1,"output":2.2},"id":"deepseek/deepseek-latest","last_updated":"2026-05-03","limit":{"context":1048576,"input":1048576,"output":384000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek Latest","open_weights":false,"reasoning":true,"release_date":"2026-05-03","structured_output":true,"tool_call":true},"deepseek/deepseek-prover-v2-671b":{"attachment":false,"cost":{"input":1,"output":2.5},"family":"deepseek","id":"deepseek/deepseek-prover-v2-671b","last_updated":"2025-04-30","limit":{"context":160000,"input":160000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek Prover v2 671B","open_weights":false,"reasoning":false,"release_date":"2025-04-30","structured_output":false,"tool_call":false},"deepseek/deepseek-v3.2":{"attachment":true,"cost":{"input":0.27999999999999997,"output":0.42000000000000004},"family":"deepseek","id":"deepseek/deepseek-v3.2","last_updated":"2025-12-01","limit":{"context":163000,"input":163000,"output":65536},"modalities":{"input":["text","pdf"],"output":["text"]},"name":"DeepSeek V3.2","open_weights":false,"reasoning":false,"release_date":"2025-12-01","structured_output":true,"tool_call":true},"deepseek/deepseek-v3.2-speciale":{"attachment":true,"cost":{"input":0.27999999999999997,"output":0.42000000000000004},"family":"deepseek","id":"deepseek/deepseek-v3.2-speciale","last_updated":"2025-12-02","limit":{"context":163000,"input":163000,"output":65536},"modalities":{"input":["text","pdf"],"output":["text"]},"name":"DeepSeek V3.2 Speciale","open_weights":false,"reasoning":true,"release_date":"2025-12-02","structured_output":false,"tool_call":false},"deepseek/deepseek-v3.2:thinking":{"attachment":true,"cost":{"input":0.27999999999999997,"output":0.42000000000000004},"family":"deepseek","id":"deepseek/deepseek-v3.2:thinking","last_updated":"2025-12-01","limit":{"context":163000,"input":163000,"output":65536},"modalities":{"input":["text","pdf"],"output":["text"]},"name":"DeepSeek V3.2 Thinking","open_weights":false,"reasoning":true,"release_date":"2025-12-01","structured_output":true,"tool_call":true},"deepseek/deepseek-v4-flash":{"attachment":false,"cost":{"cache_read":0.028,"input":0.14,"output":0.28},"id":"deepseek/deepseek-v4-flash","last_updated":"2026-04-24","limit":{"context":1048576,"input":1048576,"output":384000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V4 Flash","open_weights":false,"reasoning":true,"release_date":"2026-04-24","structured_output":true,"tool_call":true},"deepseek/deepseek-v4-flash:thinking":{"attachment":false,"cost":{"cache_read":0.028,"input":0.14,"output":0.28},"id":"deepseek/deepseek-v4-flash:thinking","last_updated":"2026-04-24","limit":{"context":1048576,"input":1048576,"output":384000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V4 Flash (Thinking)","open_weights":false,"reasoning":true,"release_date":"2026-04-24","structured_output":true,"tool_call":true},"deepseek/deepseek-v4-pro":{"attachment":false,"cost":{"cache_read":0.11,"input":1.1,"output":2.2},"id":"deepseek/deepseek-v4-pro","last_updated":"2026-04-24","limit":{"context":1048576,"input":1048576,"output":384000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V4 Pro","open_weights":false,"reasoning":true,"release_date":"2026-04-24","structured_output":true,"tool_call":true},"deepseek/deepseek-v4-pro-cheaper":{"attachment":false,"cost":{"cache_read":0.003625,"input":0.435,"output":0.87},"id":"deepseek/deepseek-v4-pro-cheaper","last_updated":"2026-04-25","limit":{"context":1048576,"input":1048576,"output":384000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V4 Pro Cheaper","open_weights":false,"reasoning":true,"release_date":"2026-04-25","structured_output":true,"tool_call":true},"deepseek/deepseek-v4-pro-cheaper:thinking":{"attachment":false,"cost":{"cache_read":0.003625,"input":0.435,"output":0.87},"id":"deepseek/deepseek-v4-pro-cheaper:thinking","last_updated":"2026-04-25","limit":{"context":1048576,"input":1048576,"output":384000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V4 Pro Cheaper (Thinking)","open_weights":false,"reasoning":true,"release_date":"2026-04-25","structured_output":true,"tool_call":true},"deepseek/deepseek-v4-pro:thinking":{"attachment":false,"cost":{"cache_read":0.11,"input":1.1,"output":2.2},"id":"deepseek/deepseek-v4-pro:thinking","last_updated":"2026-04-24","limit":{"context":1048576,"input":1048576,"output":384000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V4 Pro (Thinking)","open_weights":false,"reasoning":true,"release_date":"2026-04-24","structured_output":true,"tool_call":true},"dmind/dmind-1":{"attachment":false,"cost":{"input":0.3,"output":0.6},"family":"gpt","id":"dmind/dmind-1","last_updated":"2025-06-01","limit":{"context":32768,"input":32768,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"DMind-1","open_weights":false,"reasoning":false,"release_date":"2025-06-01","structured_output":false,"tool_call":false},"dmind/dmind-1-mini":{"attachment":false,"cost":{"input":0.2,"output":0.4},"family":"gpt","id":"dmind/dmind-1-mini","last_updated":"2025-06-01","limit":{"context":32768,"input":32768,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"DMind-1-Mini","open_weights":false,"reasoning":false,"release_date":"2025-06-01","structured_output":false,"tool_call":false},"doubao-1-5-thinking-pro-250415":{"attachment":true,"cost":{"input":0.6,"output":2.4},"id":"doubao-1-5-thinking-pro-250415","last_updated":"2025-04-17","limit":{"context":128000,"input":128000,"output":16384},"modalities":{"input":["text","pdf"],"output":["text"]},"name":"Doubao 1.5 Thinking Pro","open_weights":false,"reasoning":false,"release_date":"2025-04-17","structured_output":false,"tool_call":false},"doubao-1-5-thinking-pro-vision-250415":{"attachment":true,"cost":{"input":0.6,"output":2.4},"id":"doubao-1-5-thinking-pro-vision-250415","last_updated":"2025-04-15","limit":{"context":128000,"input":128000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"Doubao 1.5 Thinking Pro Vision","open_weights":false,"reasoning":false,"release_date":"2025-04-15","structured_output":false,"tool_call":false},"doubao-1-5-thinking-vision-pro-250428":{"attachment":true,"cost":{"input":0.55,"output":1.43},"id":"doubao-1-5-thinking-vision-pro-250428","last_updated":"2025-05-15","limit":{"context":128000,"input":128000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"Doubao 1.5 Thinking Vision Pro","open_weights":false,"reasoning":false,"release_date":"2025-05-15","structured_output":false,"tool_call":false},"doubao-1.5-pro-256k":{"attachment":false,"cost":{"input":0.799,"output":1.445},"id":"doubao-1.5-pro-256k","last_updated":"2025-03-12","limit":{"context":256000,"input":256000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Doubao 1.5 Pro 256k","open_weights":false,"reasoning":false,"release_date":"2025-03-12","structured_output":false,"tool_call":false},"doubao-1.5-pro-32k":{"attachment":false,"cost":{"input":0.1343,"output":0.3349},"id":"doubao-1.5-pro-32k","last_updated":"2025-01-22","limit":{"context":32000,"input":32000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Doubao 1.5 Pro 32k","open_weights":false,"reasoning":false,"release_date":"2025-01-22","structured_output":false,"tool_call":false},"doubao-1.5-vision-pro-32k":{"attachment":true,"cost":{"input":0.459,"output":1.377},"id":"doubao-1.5-vision-pro-32k","last_updated":"2025-01-22","limit":{"context":32000,"input":32000,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Doubao 1.5 Vision Pro 32k","open_weights":false,"reasoning":false,"release_date":"2025-01-22","structured_output":false,"tool_call":false},"doubao-seed-1-6-250615":{"attachment":false,"cost":{"input":0.204,"output":0.51},"id":"doubao-seed-1-6-250615","last_updated":"2025-06-15","limit":{"context":256000,"input":256000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Doubao Seed 1.6","open_weights":false,"reasoning":false,"release_date":"2025-06-15","structured_output":false,"tool_call":false},"doubao-seed-1-6-flash-250615":{"attachment":false,"cost":{"input":0.0374,"output":0.374},"id":"doubao-seed-1-6-flash-250615","last_updated":"2025-06-15","limit":{"context":256000,"input":256000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Doubao Seed 1.6 Flash","open_weights":false,"reasoning":false,"release_date":"2025-06-15","structured_output":false,"tool_call":false},"doubao-seed-1-6-thinking-250615":{"attachment":false,"cost":{"input":0.204,"output":2.04},"id":"doubao-seed-1-6-thinking-250615","last_updated":"2025-06-15","limit":{"context":256000,"input":256000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Doubao Seed 1.6 Thinking","open_weights":false,"reasoning":false,"release_date":"2025-06-15","structured_output":false,"tool_call":false},"doubao-seed-1-8-251215":{"attachment":false,"cost":{"input":0.612,"output":6.12},"id":"doubao-seed-1-8-251215","last_updated":"2025-12-15","limit":{"context":128000,"input":128000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Doubao Seed 1.8","open_weights":false,"reasoning":false,"release_date":"2025-12-15","structured_output":false,"tool_call":false},"doubao-seed-2-0-code-preview-260215":{"attachment":false,"cost":{"input":0.782,"output":3.893},"id":"doubao-seed-2-0-code-preview-260215","last_updated":"2026-02-14","limit":{"context":256000,"input":256000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"Doubao Seed 2.0 Code Preview","open_weights":false,"reasoning":false,"release_date":"2026-02-14","structured_output":false,"tool_call":false},"doubao-seed-2-0-lite-260215":{"attachment":false,"cost":{"input":0.1462,"output":0.8738},"id":"doubao-seed-2-0-lite-260215","last_updated":"2026-02-14","limit":{"context":256000,"input":256000,"output":32000},"modalities":{"input":["text"],"output":["text"]},"name":"Doubao Seed 2.0 Lite","open_weights":false,"reasoning":false,"release_date":"2026-02-14","structured_output":false,"tool_call":false},"doubao-seed-2-0-mini-260215":{"attachment":false,"cost":{"input":0.0493,"output":0.4845},"id":"doubao-seed-2-0-mini-260215","last_updated":"2026-02-14","limit":{"context":256000,"input":256000,"output":32000},"modalities":{"input":["text"],"output":["text"]},"name":"Doubao Seed 2.0 Mini","open_weights":false,"reasoning":false,"release_date":"2026-02-14","structured_output":false,"tool_call":false},"doubao-seed-2-0-pro-260215":{"attachment":false,"cost":{"input":0.782,"output":3.876},"id":"doubao-seed-2-0-pro-260215","last_updated":"2026-02-14","limit":{"context":256000,"input":256000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"Doubao Seed 2.0 Pro","open_weights":false,"reasoning":false,"release_date":"2026-02-14","structured_output":false,"tool_call":false},"ernie-4.5-8k-preview":{"attachment":false,"cost":{"input":0.66,"output":2.6},"id":"ernie-4.5-8k-preview","last_updated":"2025-03-25","limit":{"context":8000,"input":8000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Ernie 4.5 8k Preview","open_weights":false,"reasoning":false,"release_date":"2025-03-25","structured_output":false,"tool_call":false},"ernie-4.5-turbo-128k":{"attachment":true,"cost":{"input":0.132,"output":0.55},"id":"ernie-4.5-turbo-128k","last_updated":"2025-05-08","limit":{"context":128000,"input":128000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"Ernie 4.5 Turbo 128k","open_weights":false,"reasoning":false,"release_date":"2025-05-08","structured_output":false,"tool_call":false},"ernie-4.5-turbo-vl-32k":{"attachment":true,"cost":{"input":0.495,"output":1.43},"id":"ernie-4.5-turbo-vl-32k","last_updated":"2025-05-08","limit":{"context":32000,"input":32000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"Ernie 4.5 Turbo VL 32k","open_weights":false,"reasoning":false,"release_date":"2025-05-08","structured_output":false,"tool_call":false},"ernie-5.0-thinking-preview":{"attachment":true,"cost":{"input":1.1,"output":2},"id":"ernie-5.0-thinking-preview","last_updated":"2025-11-18","limit":{"context":128000,"input":128000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"Ernie 5.0 Thinking Preview","open_weights":false,"reasoning":true,"release_date":"2025-11-18","structured_output":false,"tool_call":false},"ernie-5.1":{"attachment":true,"cost":{"cache_read":0.75,"input":0.75,"output":3},"id":"ernie-5.1","last_updated":"2026-05-10","limit":{"context":119000,"input":119000,"output":64000},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"ERNIE 5.1","open_weights":false,"reasoning":false,"release_date":"2026-05-10","structured_output":false,"tool_call":false},"ernie-5.1:thinking":{"attachment":true,"cost":{"cache_read":0.75,"input":0.75,"output":3},"id":"ernie-5.1:thinking","last_updated":"2026-05-10","limit":{"context":119000,"input":119000,"output":64000},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"ERNIE 5.1 Thinking","open_weights":false,"reasoning":true,"release_date":"2026-05-10","structured_output":false,"tool_call":false},"ernie-x1-32k":{"attachment":true,"cost":{"input":0.33,"output":1.32},"id":"ernie-x1-32k","last_updated":"2025-05-08","limit":{"context":32000,"input":32000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"Ernie X1 32k","open_weights":false,"reasoning":false,"release_date":"2025-05-08","structured_output":false,"tool_call":false},"ernie-x1-32k-preview":{"attachment":false,"cost":{"input":0.33,"output":1.32},"id":"ernie-x1-32k-preview","last_updated":"2025-04-03","limit":{"context":32000,"input":32000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Ernie X1 32k","open_weights":false,"reasoning":false,"release_date":"2025-04-03","structured_output":false,"tool_call":false},"ernie-x1-turbo-32k":{"attachment":true,"cost":{"input":0.165,"output":0.66},"id":"ernie-x1-turbo-32k","last_updated":"2025-05-08","limit":{"context":32000,"input":32000,"output":16384},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Ernie X1 Turbo 32k","open_weights":false,"reasoning":false,"release_date":"2025-05-08","structured_output":false,"tool_call":false},"ernie-x1.1-preview":{"attachment":true,"cost":{"input":0.15,"output":0.6},"id":"ernie-x1.1-preview","last_updated":"2025-09-10","limit":{"context":64000,"input":64000,"output":8192},"modalities":{"input":["text","pdf"],"output":["text"]},"name":"ERNIE X1.1","open_weights":false,"reasoning":false,"release_date":"2025-09-10","structured_output":false,"tool_call":false},"essentialai/rnj-1-instruct":{"attachment":false,"cost":{"input":0.15,"output":0.15},"family":"rnj","id":"essentialai/rnj-1-instruct","last_updated":"2025-12-13","limit":{"context":128000,"input":128000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"RNJ-1 Instruct 8B","open_weights":false,"reasoning":false,"release_date":"2025-12-13","structured_output":false,"tool_call":false},"exa-answer":{"attachment":false,"cost":{"input":2.5,"output":2.5},"id":"exa-answer","last_updated":"2025-06-04","limit":{"context":4096,"input":4096,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Exa (Answer)","open_weights":false,"reasoning":false,"release_date":"2025-06-04","structured_output":false,"tool_call":false},"exa-research":{"attachment":false,"cost":{"input":2.5,"output":2.5},"id":"exa-research","last_updated":"2025-06-04","limit":{"context":8192,"input":8192,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Exa (Research)","open_weights":false,"reasoning":false,"release_date":"2025-06-04","structured_output":false,"tool_call":false},"exa-research-pro":{"attachment":false,"cost":{"input":2.5,"output":2.5},"id":"exa-research-pro","last_updated":"2025-06-04","limit":{"context":16384,"input":16384,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Exa (Research Pro)","open_weights":false,"reasoning":false,"release_date":"2025-06-04","structured_output":false,"tool_call":false},"failspy/Meta-Llama-3-70B-Instruct-abliterated-v3.5":{"attachment":false,"cost":{"input":0.7,"output":0.7},"family":"llama","id":"failspy/Meta-Llama-3-70B-Instruct-abliterated-v3.5","last_updated":"2025-07-26","limit":{"context":8192,"input":8192,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3 70B abliterated","open_weights":false,"reasoning":false,"release_date":"2025-07-26","structured_output":false,"tool_call":false},"fastgpt":{"attachment":false,"cost":{"input":7.5,"output":7.5},"id":"fastgpt","last_updated":"2024-01-01","limit":{"context":32768,"input":32768,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Web Answer","open_weights":false,"reasoning":false,"release_date":"2023-08-01","structured_output":false,"tool_call":false},"featherless-ai/Qwerky-72B":{"attachment":false,"cost":{"input":0.5,"output":0.5},"family":"qwerky","id":"featherless-ai/Qwerky-72B","last_updated":"2025-03-20","limit":{"context":32000,"input":32000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Qwerky 72B","open_weights":false,"reasoning":false,"release_date":"2025-03-20","structured_output":false,"tool_call":false},"gemini-2.0-flash-001":{"attachment":true,"cost":{"input":0.1003,"output":0.408},"id":"gemini-2.0-flash-001","last_updated":"2024-12-11","limit":{"context":1000000,"input":1000000,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Gemini 2.0 Flash","open_weights":false,"reasoning":false,"release_date":"2024-12-11","structured_output":true,"tool_call":true},"gemini-2.0-flash-exp-image-generation":{"attachment":false,"cost":{"input":0.2,"output":0.8},"id":"gemini-2.0-flash-exp-image-generation","last_updated":"2025-02-19","limit":{"context":32767,"input":32767,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Gemini Text + Image","open_weights":false,"reasoning":false,"release_date":"2025-02-19","structured_output":false,"tool_call":false},"gemini-2.0-flash-thinking-exp-01-21":{"attachment":true,"cost":{"input":0.306,"output":1.003},"id":"gemini-2.0-flash-thinking-exp-01-21","last_updated":"2025-01-21","limit":{"context":1000000,"input":1000000,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Gemini 2.0 Flash Thinking 0121","open_weights":false,"reasoning":true,"release_date":"2025-01-21","structured_output":false,"tool_call":false},"gemini-2.0-flash-thinking-exp-1219":{"attachment":false,"cost":{"input":0.1003,"output":0.408},"id":"gemini-2.0-flash-thinking-exp-1219","last_updated":"2024-12-19","limit":{"context":32767,"input":32767,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Gemini 2.0 Flash Thinking 1219","open_weights":false,"reasoning":false,"release_date":"2024-12-19","structured_output":false,"tool_call":false},"gemini-2.0-pro-exp-02-05":{"attachment":true,"cost":{"input":1.989,"output":7.956},"id":"gemini-2.0-pro-exp-02-05","last_updated":"2025-02-05","limit":{"context":2097152,"input":2097152,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Gemini 2.0 Pro 0205","open_weights":false,"reasoning":false,"release_date":"2025-02-05","structured_output":false,"tool_call":false},"gemini-2.0-pro-reasoner":{"attachment":false,"cost":{"input":1.292,"output":4.998},"id":"gemini-2.0-pro-reasoner","last_updated":"2025-02-05","limit":{"context":128000,"input":128000,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Gemini 2.0 Pro Reasoner","open_weights":false,"reasoning":false,"release_date":"2025-02-05","structured_output":false,"tool_call":false},"gemini-2.5-flash":{"attachment":true,"cost":{"input":0.3,"output":2.5},"id":"gemini-2.5-flash","last_updated":"2025-06-05","limit":{"context":1048756,"input":1048756,"output":65536},"modalities":{"input":["text","image"],"output":["text"]},"name":"Gemini 2.5 Flash","open_weights":false,"reasoning":true,"release_date":"2025-06-05","structured_output":false,"tool_call":false},"gemini-2.5-flash-lite":{"attachment":true,"cost":{"input":0.1,"output":0.4},"id":"gemini-2.5-flash-lite","last_updated":"2025-06-17","limit":{"context":1048756,"input":1048756,"output":65536},"modalities":{"input":["text","image"],"output":["text"]},"name":"Gemini 2.5 Flash Lite","open_weights":false,"reasoning":true,"release_date":"2025-06-17","structured_output":false,"tool_call":false},"gemini-2.5-flash-lite-preview-06-17":{"attachment":true,"cost":{"input":0.15,"output":0.6},"id":"gemini-2.5-flash-lite-preview-06-17","last_updated":"2025-06-17","limit":{"context":1048756,"input":1048756,"output":65536},"modalities":{"input":["text","image"],"output":["text"]},"name":"Gemini 2.5 Flash Lite Preview","open_weights":false,"reasoning":true,"release_date":"2025-06-17","structured_output":false,"tool_call":false},"gemini-2.5-flash-lite-preview-09-2025":{"attachment":true,"cost":{"input":0.1,"output":0.4},"id":"gemini-2.5-flash-lite-preview-09-2025","last_updated":"2025-09-25","limit":{"context":1048756,"input":1048756,"output":65536},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Gemini 2.5 Flash Lite Preview (09/2025)","open_weights":false,"reasoning":true,"release_date":"2025-09-25","structured_output":true,"tool_call":true},"gemini-2.5-flash-lite-preview-09-2025-thinking":{"attachment":true,"cost":{"input":0.1,"output":0.4},"id":"gemini-2.5-flash-lite-preview-09-2025-thinking","last_updated":"2025-09-25","limit":{"context":1048756,"input":1048756,"output":65536},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Gemini 2.5 Flash Lite Preview (09/2025) \u2013 Thinking","open_weights":false,"reasoning":true,"release_date":"2025-09-25","structured_output":true,"tool_call":true},"gemini-2.5-flash-nothinking":{"attachment":true,"cost":{"input":0.3,"output":2.5},"id":"gemini-2.5-flash-nothinking","last_updated":"2025-06-05","limit":{"context":1048756,"input":1048756,"output":65536},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Gemini 2.5 Flash (No Thinking)","open_weights":false,"reasoning":false,"release_date":"2025-06-05","structured_output":false,"tool_call":false},"gemini-2.5-flash-preview-04-17":{"attachment":true,"cost":{"input":0.15,"output":0.6},"id":"gemini-2.5-flash-preview-04-17","last_updated":"2025-04-17","limit":{"context":1048756,"input":1048756,"output":65536},"modalities":{"input":["text","image"],"output":["text"]},"name":"Gemini 2.5 Flash Preview","open_weights":false,"reasoning":true,"release_date":"2025-04-17","structured_output":false,"tool_call":false},"gemini-2.5-flash-preview-04-17:thinking":{"attachment":true,"cost":{"input":0.15,"output":3.5},"id":"gemini-2.5-flash-preview-04-17:thinking","last_updated":"2025-04-17","limit":{"context":1048756,"input":1048756,"output":65536},"modalities":{"input":["text","image"],"output":["text"]},"name":"Gemini 2.5 Flash Preview Thinking","open_weights":false,"reasoning":true,"release_date":"2025-04-17","structured_output":false,"tool_call":false},"gemini-2.5-flash-preview-05-20":{"attachment":true,"cost":{"input":0.15,"output":0.6},"id":"gemini-2.5-flash-preview-05-20","last_updated":"2025-05-20","limit":{"context":1048000,"input":1048000,"output":65536},"modalities":{"input":["text","image"],"output":["text"]},"name":"Gemini 2.5 Flash 0520","open_weights":false,"reasoning":false,"release_date":"2025-05-20","structured_output":false,"tool_call":false},"gemini-2.5-flash-preview-05-20:thinking":{"attachment":true,"cost":{"input":0.15,"output":3.5},"id":"gemini-2.5-flash-preview-05-20:thinking","last_updated":"2025-05-20","limit":{"context":1048000,"input":1048000,"output":65536},"modalities":{"input":["text","image"],"output":["text"]},"name":"Gemini 2.5 Flash 0520 Thinking","open_weights":false,"reasoning":true,"release_date":"2025-05-20","structured_output":false,"tool_call":false},"gemini-2.5-flash-preview-09-2025":{"attachment":true,"cost":{"input":0.3,"output":2.5},"id":"gemini-2.5-flash-preview-09-2025","last_updated":"2025-09-25","limit":{"context":1048756,"input":1048756,"output":65536},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Gemini 2.5 Flash Preview (09/2025)","open_weights":false,"reasoning":true,"release_date":"2025-09-25","structured_output":true,"tool_call":true},"gemini-2.5-flash-preview-09-2025-thinking":{"attachment":true,"cost":{"input":0.3,"output":2.5},"id":"gemini-2.5-flash-preview-09-2025-thinking","last_updated":"2025-09-25","limit":{"context":1048756,"input":1048756,"output":65536},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Gemini 2.5 Flash Preview (09/2025) \u2013 Thinking","open_weights":false,"reasoning":true,"release_date":"2025-09-25","structured_output":true,"tool_call":true},"gemini-2.5-pro":{"attachment":true,"cost":{"input":2.5,"output":10},"id":"gemini-2.5-pro","last_updated":"2025-06-05","limit":{"context":1048756,"input":1048756,"output":65536},"modalities":{"input":["text","image"],"output":["text"]},"name":"Gemini 2.5 Pro","open_weights":false,"reasoning":true,"release_date":"2025-06-05","structured_output":false,"tool_call":false},"gemini-2.5-pro-exp-03-25":{"attachment":true,"cost":{"input":2.5,"output":10},"id":"gemini-2.5-pro-exp-03-25","last_updated":"2025-03-25","limit":{"context":1048756,"input":1048756,"output":65536},"modalities":{"input":["text","image"],"output":["text"]},"name":"Gemini 2.5 Pro Experimental 0325","open_weights":false,"reasoning":true,"release_date":"2025-03-25","structured_output":false,"tool_call":false},"gemini-2.5-pro-preview-03-25":{"attachment":true,"cost":{"input":2.5,"output":10},"id":"gemini-2.5-pro-preview-03-25","last_updated":"2025-03-25","limit":{"context":1048756,"input":1048756,"output":65536},"modalities":{"input":["text","image"],"output":["text"]},"name":"Gemini 2.5 Pro Preview 0325","open_weights":false,"reasoning":true,"release_date":"2025-03-25","structured_output":false,"tool_call":false},"gemini-2.5-pro-preview-05-06":{"attachment":true,"cost":{"input":2.5,"output":10},"id":"gemini-2.5-pro-preview-05-06","last_updated":"2025-05-06","limit":{"context":1048756,"input":1048756,"output":65536},"modalities":{"input":["text","image"],"output":["text"]},"name":"Gemini 2.5 Pro Preview 0506","open_weights":false,"reasoning":true,"release_date":"2025-05-06","structured_output":false,"tool_call":false},"gemini-2.5-pro-preview-06-05":{"attachment":true,"cost":{"input":2.5,"output":10},"id":"gemini-2.5-pro-preview-06-05","last_updated":"2025-06-05","limit":{"context":1048756,"input":1048756,"output":65536},"modalities":{"input":["text","image"],"output":["text"]},"name":"Gemini 2.5 Pro Preview 0605","open_weights":false,"reasoning":true,"release_date":"2025-06-05","structured_output":false,"tool_call":false},"gemini-3-pro-image-preview":{"attachment":true,"cost":{"input":2,"output":12},"id":"gemini-3-pro-image-preview","last_updated":"2025-11-18","limit":{"context":1048756,"input":1048756,"output":65536},"modalities":{"input":["text","image"],"output":["text"]},"name":"Gemini 3 Pro Image","open_weights":false,"reasoning":false,"release_date":"2025-11-18","structured_output":false,"tool_call":false},"gemini-exp-1206":{"attachment":true,"cost":{"input":1.258,"output":4.998},"id":"gemini-exp-1206","last_updated":"2024-12-06","limit":{"context":2097152,"input":2097152,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Gemini 2.0 Pro 1206","open_weights":false,"reasoning":false,"release_date":"2024-12-06","structured_output":false,"tool_call":false},"gemma-4-31B-Fabled":{"attachment":true,"cost":{"input":0.306,"output":0.306},"id":"gemma-4-31B-Fabled","last_updated":"2026-05-02","limit":{"context":262144,"input":262144,"output":16384},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Gemma 4 31B Fabled","open_weights":false,"reasoning":true,"release_date":"2026-05-02","structured_output":false,"tool_call":false},"gemma-4-31B-Garnet":{"attachment":true,"cost":{"input":0.306,"output":0.306},"id":"gemma-4-31B-Garnet","last_updated":"2026-05-02","limit":{"context":262144,"input":262144,"output":16384},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Gemma 4 31B Garnet","open_weights":false,"reasoning":true,"release_date":"2026-05-02","structured_output":false,"tool_call":false},"gemma-4-31B-K1-v5":{"attachment":true,"cost":{"input":0.306,"output":0.306},"id":"gemma-4-31B-K1-v5","last_updated":"2026-05-02","limit":{"context":262144,"input":262144,"output":16384},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Gemma 4 31B K1 v5","open_weights":false,"reasoning":true,"release_date":"2026-05-02","structured_output":false,"tool_call":false},"gemma-4-31B-Larkspur-v0.5":{"attachment":true,"cost":{"input":0.306,"output":0.306},"id":"gemma-4-31B-Larkspur-v0.5","last_updated":"2026-05-02","limit":{"context":262144,"input":262144,"output":16384},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Gemma 4 31B Larkspur v0.5","open_weights":false,"reasoning":true,"release_date":"2026-05-02","structured_output":false,"tool_call":false},"gemma-4-31B-MeroMero":{"attachment":true,"cost":{"input":0.306,"output":0.306},"id":"gemma-4-31B-MeroMero","last_updated":"2026-05-02","limit":{"context":262144,"input":262144,"output":16384},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Gemma 4 31B MeroMero","open_weights":false,"reasoning":true,"release_date":"2026-05-02","structured_output":false,"tool_call":false},"glm-4":{"attachment":false,"cost":{"input":14.994,"output":14.994},"id":"glm-4","last_updated":"2024-01-16","limit":{"context":128000,"input":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4","open_weights":false,"reasoning":false,"release_date":"2024-01-16","structured_output":false,"tool_call":false},"glm-4-air":{"attachment":false,"cost":{"input":0.2006,"output":0.2006},"id":"glm-4-air","last_updated":"2024-06-05","limit":{"context":128000,"input":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4 Air","open_weights":false,"reasoning":false,"release_date":"2024-06-05","structured_output":false,"tool_call":false},"glm-4-air-0111":{"attachment":false,"cost":{"input":0.1394,"output":0.1394},"id":"glm-4-air-0111","last_updated":"2025-01-11","limit":{"context":128000,"input":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 4 Air 0111","open_weights":false,"reasoning":false,"release_date":"2025-01-11","structured_output":false,"tool_call":false},"glm-4-airx":{"attachment":false,"cost":{"input":2.006,"output":2.006},"id":"glm-4-airx","last_updated":"2024-06-05","limit":{"context":8000,"input":8000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4 AirX","open_weights":false,"reasoning":false,"release_date":"2024-06-05","structured_output":false,"tool_call":false},"glm-4-flash":{"attachment":false,"cost":{"input":0.1003,"output":0.1003},"id":"glm-4-flash","last_updated":"2024-08-01","limit":{"context":128000,"input":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4 Flash","open_weights":false,"reasoning":false,"release_date":"2024-08-01","structured_output":false,"tool_call":false},"glm-4-long":{"attachment":false,"cost":{"input":0.2006,"output":0.2006},"id":"glm-4-long","last_updated":"2024-08-01","limit":{"context":1000000,"input":1000000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4 Long","open_weights":false,"reasoning":false,"release_date":"2024-08-01","structured_output":false,"tool_call":false},"glm-4-plus":{"attachment":false,"cost":{"input":7.497,"output":7.497},"id":"glm-4-plus","last_updated":"2024-08-01","limit":{"context":128000,"input":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4 Plus","open_weights":false,"reasoning":false,"release_date":"2024-08-01","structured_output":false,"tool_call":false},"glm-4-plus-0111":{"attachment":false,"cost":{"input":9.996,"output":9.996},"id":"glm-4-plus-0111","last_updated":"2025-02-19","limit":{"context":128000,"input":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 4 Plus 0111","open_weights":false,"reasoning":false,"release_date":"2025-02-19","structured_output":false,"tool_call":false},"glm-4.1v-thinking-flash":{"attachment":true,"cost":{"input":0.3,"output":0.3},"id":"glm-4.1v-thinking-flash","last_updated":"2025-07-09","limit":{"context":64000,"input":64000,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"GLM 4.1V Thinking Flash","open_weights":false,"reasoning":false,"release_date":"2025-07-09","structured_output":false,"tool_call":false},"glm-4.1v-thinking-flashx":{"attachment":true,"cost":{"input":0.3,"output":0.3},"id":"glm-4.1v-thinking-flashx","last_updated":"2025-07-09","limit":{"context":64000,"input":64000,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"GLM 4.1V Thinking FlashX","open_weights":false,"reasoning":false,"release_date":"2025-07-09","structured_output":false,"tool_call":false},"glm-z1-air":{"attachment":false,"cost":{"input":0.07,"output":0.07},"id":"glm-z1-air","last_updated":"2025-04-15","limit":{"context":32000,"input":32000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"GLM Z1 Air","open_weights":false,"reasoning":false,"release_date":"2025-04-15","structured_output":true,"tool_call":true},"glm-z1-airx":{"attachment":false,"cost":{"input":0.7,"output":0.7},"id":"glm-z1-airx","last_updated":"2025-04-15","limit":{"context":32000,"input":32000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"GLM Z1 AirX","open_weights":false,"reasoning":false,"release_date":"2025-04-15","structured_output":true,"tool_call":true},"glm-zero-preview":{"attachment":false,"cost":{"input":1.802,"output":1.802},"id":"glm-zero-preview","last_updated":"2024-12-01","limit":{"context":8000,"input":8000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"GLM Zero Preview","open_weights":false,"reasoning":false,"release_date":"2024-12-01","structured_output":false,"tool_call":false},"google/gemini-3-flash-preview":{"attachment":true,"cost":{"input":0.5,"output":3},"family":"gemini-flash","id":"google/gemini-3-flash-preview","last_updated":"2025-12-17","limit":{"context":1048756,"input":1048756,"output":65536},"modalities":{"input":["text","image"],"output":["text"]},"name":"Gemini 3 Flash (Preview)","open_weights":false,"reasoning":true,"release_date":"2025-12-17","structured_output":true,"tool_call":true},"google/gemini-3-flash-preview-thinking":{"attachment":true,"cost":{"input":0.5,"output":3},"family":"gemini-flash","id":"google/gemini-3-flash-preview-thinking","last_updated":"2025-12-17","limit":{"context":1048756,"input":1048756,"output":65536},"modalities":{"input":["text","image"],"output":["text"]},"name":"Gemini 3 Flash Thinking","open_weights":false,"reasoning":true,"release_date":"2025-12-17","structured_output":false,"tool_call":false},"google/gemini-3.1-flash-lite":{"attachment":true,"cost":{"cache_read":0.025,"input":0.25,"output":1.5},"id":"google/gemini-3.1-flash-lite","last_updated":"2026-03-03","limit":{"context":1048576,"input":1048576,"output":65536},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Gemini 3.1 Flash Lite","open_weights":false,"reasoning":true,"release_date":"2026-03-03","structured_output":true,"tool_call":true},"google/gemini-3.1-pro-preview":{"attachment":true,"cost":{"cache_read":0.2,"input":2,"output":12},"id":"google/gemini-3.1-pro-preview","last_updated":"2026-02-19","limit":{"context":1048756,"input":1048756,"output":65536},"modalities":{"input":["text","image"],"output":["text"]},"name":"Gemini 3.1 Pro (Preview)","open_weights":false,"reasoning":true,"release_date":"2026-02-19","structured_output":true,"tool_call":true},"google/gemini-3.1-pro-preview-customtools":{"attachment":true,"cost":{"cache_read":0.2,"input":2,"output":12},"id":"google/gemini-3.1-pro-preview-customtools","last_updated":"2026-02-27","limit":{"context":1048756,"input":1048756,"output":65536},"modalities":{"input":["text","image"],"output":["text"]},"name":"Gemini 3.1 Pro (Preview Custom Tools)","open_weights":false,"reasoning":true,"release_date":"2026-02-27","structured_output":true,"tool_call":true},"google/gemini-3.1-pro-preview-high":{"attachment":true,"cost":{"cache_read":0.2,"input":2,"output":12},"id":"google/gemini-3.1-pro-preview-high","last_updated":"2026-02-21","limit":{"context":1048756,"input":1048756,"output":65536},"modalities":{"input":["text","image"],"output":["text"]},"name":"Gemini 3.1 Pro (Preview High)","open_weights":false,"reasoning":true,"release_date":"2026-02-21","structured_output":true,"tool_call":true},"google/gemini-3.1-pro-preview-low":{"attachment":true,"cost":{"cache_read":0.2,"input":2,"output":12},"id":"google/gemini-3.1-pro-preview-low","last_updated":"2026-02-21","limit":{"context":1048756,"input":1048756,"output":65536},"modalities":{"input":["text","image"],"output":["text"]},"name":"Gemini 3.1 Pro (Preview Low)","open_weights":false,"reasoning":true,"release_date":"2026-02-21","structured_output":true,"tool_call":true},"google/gemini-3.5-flash":{"attachment":true,"cost":{"cache_read":0.15,"input":1.5,"output":9},"id":"google/gemini-3.5-flash","last_updated":"2026-05-19","limit":{"context":1048576,"input":1048576,"output":65536},"modalities":{"input":["text","image","audio"],"output":["text"]},"name":"Gemini 3.5 Flash","open_weights":false,"reasoning":true,"release_date":"2026-05-19","structured_output":true,"tool_call":true},"google/gemini-3.5-flash-thinking":{"attachment":true,"cost":{"cache_read":0.15,"input":1.5,"output":9},"id":"google/gemini-3.5-flash-thinking","last_updated":"2026-05-19","limit":{"context":1048576,"input":1048576,"output":65536},"modalities":{"input":["text","image"],"output":["text"]},"name":"Gemini 3.5 Flash Thinking","open_weights":false,"reasoning":true,"release_date":"2026-05-19","structured_output":false,"tool_call":false},"google/gemini-flash-1.5":{"attachment":false,"cost":{"input":0.0748,"output":0.306},"family":"gemini-flash","id":"google/gemini-flash-1.5","last_updated":"2024-05-14","limit":{"context":2000000,"input":2000000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Gemini 1.5 Flash","open_weights":false,"reasoning":false,"release_date":"2024-05-14","structured_output":false,"tool_call":false},"google/gemini-flash-latest":{"attachment":true,"cost":{"cache_read":0.15,"input":1.5,"output":9},"id":"google/gemini-flash-latest","last_updated":"2026-03-29","limit":{"context":1048756,"input":1048756,"output":65536},"modalities":{"input":["text","image"],"output":["text"]},"name":"Gemini Flash Latest","open_weights":false,"reasoning":true,"release_date":"2026-03-29","structured_output":false,"tool_call":false},"google/gemini-flash-lite-latest":{"attachment":true,"cost":{"cache_read":0.025,"input":0.25,"output":1.5},"id":"google/gemini-flash-lite-latest","last_updated":"2026-03-29","limit":{"context":1048576,"input":1048576,"output":65536},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Gemini Flash Lite Latest","open_weights":false,"reasoning":true,"release_date":"2026-03-29","structured_output":true,"tool_call":true},"google/gemini-pro-latest":{"attachment":true,"cost":{"cache_read":0.2,"input":2,"output":12},"id":"google/gemini-pro-latest","last_updated":"2026-03-29","limit":{"context":1048756,"input":1048756,"output":65536},"modalities":{"input":["text","image"],"output":["text"]},"name":"Gemini Pro Latest","open_weights":false,"reasoning":true,"release_date":"2026-03-29","structured_output":true,"tool_call":true},"google/gemma-4-26b-a4b-it":{"attachment":true,"cost":{"input":0.13,"output":0.4},"id":"google/gemma-4-26b-a4b-it","last_updated":"2026-04-02","limit":{"context":262144,"input":262144,"output":131072},"modalities":{"input":["text","image"],"output":["text"]},"name":"Gemma 4 26B A4B","open_weights":false,"reasoning":true,"release_date":"2026-04-02","structured_output":true,"tool_call":false},"google/gemma-4-26b-a4b-it:thinking":{"attachment":true,"cost":{"input":0.13,"output":0.4},"id":"google/gemma-4-26b-a4b-it:thinking","last_updated":"2026-04-02","limit":{"context":262144,"input":262144,"output":131072},"modalities":{"input":["text","image"],"output":["text"]},"name":"Gemma 4 26B A4B Thinking","open_weights":false,"reasoning":true,"release_date":"2026-04-02","structured_output":true,"tool_call":false},"google/gemma-4-31b-it":{"attachment":true,"cost":{"input":0.1,"output":0.35},"id":"google/gemma-4-31b-it","last_updated":"2026-04-02","limit":{"context":262144,"input":262144,"output":131072},"modalities":{"input":["text","image"],"output":["text"]},"name":"Gemma 4 31B","open_weights":false,"reasoning":true,"release_date":"2026-04-02","structured_output":true,"tool_call":false},"google/gemma-4-31b-it:thinking":{"attachment":true,"cost":{"input":0.1,"output":0.35},"id":"google/gemma-4-31b-it:thinking","last_updated":"2026-04-02","limit":{"context":262144,"input":262144,"output":131072},"modalities":{"input":["text","image"],"output":["text"]},"name":"Gemma 4 31B Thinking","open_weights":false,"reasoning":true,"release_date":"2026-04-02","structured_output":true,"tool_call":false},"hermes-high":{"attachment":true,"cost":{"input":4.998,"output":25.007},"id":"hermes-high","last_updated":"2026-05-11","limit":{"context":1000000,"input":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Hermes High","open_weights":false,"reasoning":true,"release_date":"2026-05-11","structured_output":true,"tool_call":true},"hermes-low":{"attachment":true,"cost":{"cache_read":0.025,"input":0.25,"output":1.5},"id":"hermes-low","last_updated":"2026-05-11","limit":{"context":1048576,"input":1048576,"output":65536},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Hermes Low","open_weights":false,"reasoning":true,"release_date":"2026-05-11","structured_output":true,"tool_call":true},"hermes-medium":{"attachment":false,"cost":{"input":0.3,"output":1.2},"id":"hermes-medium","last_updated":"2026-05-11","limit":{"context":204800,"input":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"Hermes Medium","open_weights":false,"reasoning":true,"release_date":"2026-05-11","structured_output":true,"tool_call":true},"holo3-35b-a3b":{"attachment":true,"cost":{"input":0.25,"output":1.8},"id":"holo3-35b-a3b","last_updated":"2024-01-01","limit":{"context":65536,"input":65536,"output":65536},"modalities":{"input":["text","image"],"output":["text"]},"name":"Holo3-35B-A3B","open_weights":false,"reasoning":true,"release_date":"2024-01-01","structured_output":true,"tool_call":true},"holo3-35b-a3b:thinking":{"attachment":true,"cost":{"input":0.25,"output":1.8},"id":"holo3-35b-a3b:thinking","last_updated":"2024-01-01","limit":{"context":65536,"input":65536,"output":65536},"modalities":{"input":["text","image"],"output":["text"]},"name":"Holo3-35B-A3B Thinking","open_weights":false,"reasoning":true,"release_date":"2024-01-01","structured_output":true,"tool_call":true},"huihui-ai/DeepSeek-R1-Distill-Llama-70B-abliterated":{"attachment":false,"cost":{"input":0.7,"output":0.7},"family":"deepseek","id":"huihui-ai/DeepSeek-R1-Distill-Llama-70B-abliterated","last_updated":"2025-01-20","limit":{"context":16384,"input":16384,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek R1 Llama 70B Abliterated","open_weights":false,"reasoning":true,"release_date":"2025-01-20","structured_output":false,"tool_call":false},"huihui-ai/DeepSeek-R1-Distill-Qwen-32B-abliterated":{"attachment":false,"cost":{"input":1.4,"output":1.4},"family":"qwen","id":"huihui-ai/DeepSeek-R1-Distill-Qwen-32B-abliterated","last_updated":"2025-01-20","limit":{"context":16384,"input":16384,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek R1 Qwen Abliterated","open_weights":false,"reasoning":true,"release_date":"2025-01-20","structured_output":false,"tool_call":false},"huihui-ai/Llama-3.3-70B-Instruct-abliterated":{"attachment":false,"cost":{"input":0.7,"output":0.7},"family":"llama","id":"huihui-ai/Llama-3.3-70B-Instruct-abliterated","last_updated":"2025-08-08","limit":{"context":16384,"input":16384,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.3 70B Instruct abliterated","open_weights":false,"reasoning":false,"release_date":"2025-08-08","structured_output":false,"tool_call":false},"huihui-ai/Qwen2.5-32B-Instruct-abliterated":{"attachment":false,"cost":{"input":0.7,"output":0.7},"family":"qwen","id":"huihui-ai/Qwen2.5-32B-Instruct-abliterated","last_updated":"2025-01-06","limit":{"context":32768,"input":32768,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen 2.5 32B Abliterated","open_weights":false,"reasoning":false,"release_date":"2025-01-06","structured_output":false,"tool_call":false},"hunyuan-turbos-20250226":{"attachment":false,"cost":{"input":0.187,"output":0.374},"id":"hunyuan-turbos-20250226","last_updated":"2025-02-27","limit":{"context":24000,"input":24000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Hunyuan Turbo S","open_weights":false,"reasoning":false,"release_date":"2025-02-27","structured_output":false,"tool_call":false},"ibm-granite/granite-4.1-8b":{"attachment":false,"cost":{"cache_read":0.05,"input":0.05,"output":0.1},"id":"ibm-granite/granite-4.1-8b","last_updated":"2026-04-29","limit":{"context":131072,"input":131072,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"Granite 4.1 8B","open_weights":false,"reasoning":false,"release_date":"2026-04-29","structured_output":true,"tool_call":true},"inclusionai/ling-2.6-1t":{"attachment":false,"cost":{"cache_read":0.06,"input":0.3,"output":2.5},"id":"inclusionai/ling-2.6-1t","last_updated":"2026-04-23","limit":{"context":262144,"input":262144,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Ling 2.6 1T","open_weights":false,"reasoning":false,"release_date":"2026-04-23","structured_output":true,"tool_call":true},"inclusionai/ling-2.6-flash":{"attachment":false,"cost":{"input":0.08,"output":0.24},"id":"inclusionai/ling-2.6-flash","last_updated":"2026-04-21","limit":{"context":262144,"input":262144,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Ling 2.6 Flash","open_weights":false,"reasoning":false,"release_date":"2026-04-21","structured_output":true,"tool_call":true},"inclusionai/ring-2.6-1t":{"attachment":false,"cost":{"input":1,"output":3},"id":"inclusionai/ring-2.6-1t","last_updated":"2026-05-08","limit":{"context":262144,"input":262144,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Ring 2.6 1T","open_weights":false,"reasoning":true,"release_date":"2026-05-08","structured_output":true,"tool_call":true},"inflatebot/MN-12B-Mag-Mell-R1":{"attachment":false,"cost":{"input":0.49299999999999994,"output":0.49299999999999994},"family":"mistral-nemo","id":"inflatebot/MN-12B-Mag-Mell-R1","last_updated":"2024-07-01","limit":{"context":16384,"input":16384,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Mag Mell R1","open_weights":false,"reasoning":false,"release_date":"2024-07-01","structured_output":false,"tool_call":false},"inflection/inflection-3-pi":{"attachment":false,"cost":{"input":2.499,"output":9.996},"family":"gpt","id":"inflection/inflection-3-pi","last_updated":"2024-10-11","limit":{"context":8000,"input":8000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Inflection 3 Pi","open_weights":false,"reasoning":false,"release_date":"2024-10-11","structured_output":false,"tool_call":false},"inflection/inflection-3-productivity":{"attachment":false,"cost":{"input":2.499,"output":9.996},"family":"gpt","id":"inflection/inflection-3-productivity","last_updated":"2024-10-11","limit":{"context":8000,"input":8000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Inflection 3 Productivity","open_weights":false,"reasoning":false,"release_date":"2024-10-11","structured_output":false,"tool_call":false},"jamba-large":{"attachment":false,"cost":{"input":1.989,"output":7.99},"id":"jamba-large","last_updated":"2025-07-09","limit":{"context":256000,"input":256000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Jamba Large","open_weights":false,"reasoning":false,"release_date":"2025-07-09","structured_output":false,"tool_call":false},"jamba-large-1.6":{"attachment":false,"cost":{"input":1.989,"output":7.99},"id":"jamba-large-1.6","last_updated":"2025-03-12","limit":{"context":256000,"input":256000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Jamba Large 1.6","open_weights":false,"reasoning":false,"release_date":"2025-03-12","structured_output":false,"tool_call":false},"jamba-large-1.7":{"attachment":false,"cost":{"input":1.989,"output":7.99},"id":"jamba-large-1.7","last_updated":"2025-07-09","limit":{"context":256000,"input":256000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Jamba Large 1.7","open_weights":false,"reasoning":false,"release_date":"2025-07-09","structured_output":false,"tool_call":false},"jamba-mini":{"attachment":false,"cost":{"input":0.1989,"output":0.408},"id":"jamba-mini","last_updated":"2025-07-09","limit":{"context":256000,"input":256000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Jamba Mini","open_weights":false,"reasoning":false,"release_date":"2025-07-09","structured_output":false,"tool_call":false},"jamba-mini-1.6":{"attachment":false,"cost":{"input":0.1989,"output":0.408},"id":"jamba-mini-1.6","last_updated":"2025-03-01","limit":{"context":256000,"input":256000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Jamba Mini 1.6","open_weights":false,"reasoning":false,"release_date":"2025-03-01","structured_output":false,"tool_call":false},"jamba-mini-1.7":{"attachment":false,"cost":{"input":0.1989,"output":0.408},"id":"jamba-mini-1.7","last_updated":"2025-07-09","limit":{"context":256000,"input":256000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Jamba Mini 1.7","open_weights":false,"reasoning":false,"release_date":"2025-07-09","structured_output":false,"tool_call":false},"kimi-k2-instruct-fast":{"attachment":true,"cost":{"input":0.1,"output":2},"id":"kimi-k2-instruct-fast","last_updated":"2025-07-15","limit":{"context":131072,"input":131072,"output":16384},"modalities":{"input":["text","pdf"],"output":["text"]},"name":"Kimi K2 0711 Fast","open_weights":false,"reasoning":false,"release_date":"2025-07-15","structured_output":false,"tool_call":false},"kimi-thinking-preview":{"attachment":true,"cost":{"input":31.46,"output":31.46},"id":"kimi-thinking-preview","last_updated":"2025-05-07","limit":{"context":128000,"input":128000,"output":16384},"modalities":{"input":["text","pdf"],"output":["text"]},"name":"Kimi Thinking Preview","open_weights":false,"reasoning":false,"release_date":"2025-05-07","structured_output":false,"tool_call":false},"kwaipilot/kat-coder-pro-v2":{"attachment":false,"cost":{"input":0.3,"output":1.2},"id":"kwaipilot/kat-coder-pro-v2","last_updated":"2026-03-28","limit":{"context":256000,"input":256000,"output":80000},"modalities":{"input":["text"],"output":["text"]},"name":"KAT Coder Pro V2","open_weights":false,"reasoning":false,"release_date":"2026-03-28","structured_output":false,"tool_call":false},"learnlm-1.5-pro-experimental":{"attachment":false,"cost":{"input":3.502,"output":10.506},"id":"learnlm-1.5-pro-experimental","last_updated":"2024-05-14","limit":{"context":32767,"input":32767,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Gemini LearnLM Experimental","open_weights":false,"reasoning":false,"release_date":"2024-05-14","structured_output":false,"tool_call":false},"liquid/lfm-2-24b-a2b":{"attachment":false,"cost":{"input":0.03,"output":0.12},"id":"liquid/lfm-2-24b-a2b","last_updated":"2025-12-20","limit":{"context":32768,"input":32768,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"LFM2 24B A2B","open_weights":false,"reasoning":false,"release_date":"2025-12-20","structured_output":false,"tool_call":false},"meganova-ai/manta-flash-1.0":{"attachment":false,"cost":{"input":0.02,"output":0.16},"family":"nova","id":"meganova-ai/manta-flash-1.0","last_updated":"2025-12-20","limit":{"context":16384,"input":16384,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Manta Flash 1.0","open_weights":false,"reasoning":false,"release_date":"2025-12-20","structured_output":false,"tool_call":false},"meganova-ai/manta-mini-1.0":{"attachment":false,"cost":{"input":0.02,"output":0.16},"family":"nova","id":"meganova-ai/manta-mini-1.0","last_updated":"2025-12-20","limit":{"context":8192,"input":8192,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Manta Mini 1.0","open_weights":false,"reasoning":false,"release_date":"2025-12-20","structured_output":false,"tool_call":false},"meganova-ai/manta-pro-1.0":{"attachment":false,"cost":{"input":0.060000000000000005,"output":0.5},"family":"nova","id":"meganova-ai/manta-pro-1.0","last_updated":"2025-12-20","limit":{"context":32768,"input":32768,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Manta Pro 1.0","open_weights":false,"reasoning":false,"release_date":"2025-12-20","structured_output":false,"tool_call":false},"mercury-2":{"attachment":false,"cost":{"cache_read":0.025,"input":0.25,"output":0.75},"id":"mercury-2","last_updated":"2024-01-01","limit":{"context":128000,"input":128000,"output":50000},"modalities":{"input":["text"],"output":["text"]},"name":"Mercury 2","open_weights":false,"reasoning":true,"release_date":"2024-01-01","structured_output":true,"tool_call":true},"mercury-coder-small":{"attachment":false,"cost":{"input":0.25,"output":1},"id":"mercury-coder-small","last_updated":"2024-01-01","limit":{"context":32768,"input":32768,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Mercury Coder Small","open_weights":false,"reasoning":false,"release_date":"2024-01-01","structured_output":false,"tool_call":false},"meta-llama/llama-3.1-8b-instruct":{"attachment":false,"cost":{"input":0.0544,"output":0.0544},"family":"llama","id":"meta-llama/llama-3.1-8b-instruct","last_updated":"2024-07-23","limit":{"context":131072,"input":131072,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.1 8b Instruct","open_weights":false,"reasoning":false,"release_date":"2024-07-23","structured_output":false,"tool_call":false},"meta-llama/llama-3.2-3b-instruct":{"attachment":true,"cost":{"input":0.0306,"output":0.0493},"family":"llama","id":"meta-llama/llama-3.2-3b-instruct","last_updated":"2024-09-25","limit":{"context":131072,"input":131072,"output":8192},"modalities":{"input":["text","pdf"],"output":["text"]},"name":"Llama 3.2 3b Instruct","open_weights":false,"reasoning":false,"release_date":"2024-09-25","structured_output":false,"tool_call":false},"meta-llama/llama-3.3-70b-instruct":{"attachment":false,"cost":{"input":0.05,"output":0.23},"family":"llama","id":"meta-llama/llama-3.3-70b-instruct","last_updated":"2025-02-27","limit":{"context":131072,"input":131072,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.3 70b Instruct","open_weights":false,"reasoning":false,"release_date":"2025-02-27","structured_output":true,"tool_call":true},"meta-llama/llama-4-maverick":{"attachment":true,"cost":{"input":0.18000000000000002,"output":0.8},"family":"llama","id":"meta-llama/llama-4-maverick","last_updated":"2025-09-05","limit":{"context":1048576,"input":1048576,"output":65536},"modalities":{"input":["text","image"],"output":["text"]},"name":"Llama 4 Maverick","open_weights":false,"reasoning":false,"release_date":"2025-09-05","structured_output":true,"tool_call":true},"meta-llama/llama-4-scout":{"attachment":true,"cost":{"input":0.085,"output":0.46},"family":"llama","id":"meta-llama/llama-4-scout","last_updated":"2025-09-05","limit":{"context":328000,"input":328000,"output":65536},"modalities":{"input":["text","image"],"output":["text"]},"name":"Llama 4 Scout","open_weights":false,"reasoning":false,"release_date":"2025-09-05","structured_output":true,"tool_call":true},"microsoft/wizardlm-2-8x22b":{"attachment":true,"cost":{"input":0.49299999999999994,"output":0.49299999999999994},"family":"gpt","id":"microsoft/wizardlm-2-8x22b","last_updated":"2025-04-15","limit":{"context":65536,"input":65536,"output":8192},"modalities":{"input":["text","pdf"],"output":["text"]},"name":"WizardLM-2 8x22B","open_weights":false,"reasoning":false,"release_date":"2025-04-15","structured_output":false,"tool_call":false},"minimax/minimax-01":{"attachment":true,"cost":{"input":0.1394,"output":1.1219999999999999},"family":"minimax","id":"minimax/minimax-01","last_updated":"2025-01-15","limit":{"context":1000192,"input":1000192,"output":16384},"modalities":{"input":["text","pdf"],"output":["text"]},"name":"MiniMax 01","open_weights":false,"reasoning":false,"release_date":"2025-01-15","structured_output":false,"tool_call":false},"minimax/minimax-latest":{"attachment":true,"cost":{"cache_read":0.06,"input":0.3,"output":1.2},"id":"minimax/minimax-latest","last_updated":"2026-05-03","limit":{"context":512000,"input":512000,"output":80000},"modalities":{"input":["text","image"],"output":["text"]},"name":"MiniMax Latest","open_weights":false,"reasoning":true,"release_date":"2026-05-03","structured_output":true,"tool_call":true},"minimax/minimax-m2-her":{"attachment":false,"cost":{"input":0.30200000000000005,"output":1.2069999999999999},"family":"minimax","id":"minimax/minimax-m2-her","last_updated":"2026-01-24","limit":{"context":65532,"input":65532,"output":2048},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax M2-her","open_weights":false,"reasoning":false,"release_date":"2026-01-24","structured_output":false,"tool_call":false},"minimax/minimax-m2.1":{"attachment":false,"cost":{"input":0.33,"output":1.32},"family":"minimax","id":"minimax/minimax-m2.1","last_updated":"2025-12-19","limit":{"context":200000,"input":200000,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax M2.1","open_weights":false,"reasoning":true,"release_date":"2025-12-19","structured_output":true,"tool_call":true},"minimax/minimax-m2.5":{"attachment":false,"cost":{"input":0.3,"output":1.2},"family":"minimax","id":"minimax/minimax-m2.5","last_updated":"2026-02-12","limit":{"context":204800,"input":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax M2.5","open_weights":false,"reasoning":true,"release_date":"2026-02-12","structured_output":true,"tool_call":true},"minimax/minimax-m2.7":{"attachment":false,"cost":{"input":0.3,"output":1.2},"family":"minimax","id":"minimax/minimax-m2.7","last_updated":"2026-03-18","limit":{"context":204800,"input":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax M2.7","open_weights":false,"reasoning":true,"release_date":"2026-03-18","structured_output":true,"tool_call":true},"minimax/minimax-m2.7-turbo":{"attachment":false,"cost":{"input":0.6,"output":2.4},"id":"minimax/minimax-m2.7-turbo","last_updated":"2026-03-18","limit":{"context":204800,"input":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax M2.7 Turbo","open_weights":false,"reasoning":true,"release_date":"2026-03-18","structured_output":true,"tool_call":true},"minimax/minimax-m3":{"attachment":true,"cost":{"cache_read":0.06,"input":0.3,"output":1.2},"id":"minimax/minimax-m3","last_updated":"2026-06-01","limit":{"context":512000,"input":512000,"output":80000},"modalities":{"input":["text","image"],"output":["text"]},"name":"MiniMax M3","open_weights":false,"reasoning":false,"release_date":"2026-06-01","structured_output":true,"tool_call":true},"minimax/minimax-m3:thinking":{"attachment":true,"cost":{"cache_read":0.06,"input":0.3,"output":1.2},"id":"minimax/minimax-m3:thinking","last_updated":"2026-06-01","limit":{"context":512000,"input":512000,"output":80000},"modalities":{"input":["text","image"],"output":["text"]},"name":"MiniMax M3 Thinking","open_weights":false,"reasoning":true,"release_date":"2026-06-01","structured_output":true,"tool_call":true},"mirothinker-1-7-deepresearch":{"attachment":false,"cost":{"input":4,"output":25},"id":"mirothinker-1-7-deepresearch","last_updated":"2026-05-11","limit":{"context":262144,"input":262144,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"MiroThinker 1.7 Deep Research","open_weights":false,"reasoning":true,"release_date":"2026-05-11","structured_output":false,"tool_call":false},"mirothinker-1-7-deepresearch-mini":{"attachment":false,"cost":{"input":1.25,"output":10},"id":"mirothinker-1-7-deepresearch-mini","last_updated":"2026-05-11","limit":{"context":262144,"input":262144,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"MiroThinker 1.7 Deep Research Mini","open_weights":false,"reasoning":true,"release_date":"2026-05-11","structured_output":false,"tool_call":false},"mistral-code-agent-latest":{"attachment":false,"cost":{"input":0.4,"output":2},"id":"mistral-code-agent-latest","last_updated":"2026-06-02","limit":{"context":262144,"input":262144,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Mistral Code Agent Latest","open_weights":false,"reasoning":false,"release_date":"2026-06-02","structured_output":true,"tool_call":true},"mistral-code-latest":{"attachment":false,"cost":{"input":0.3,"output":0.9},"id":"mistral-code-latest","last_updated":"2026-06-02","limit":{"context":256000,"input":256000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Mistral Code Latest","open_weights":false,"reasoning":false,"release_date":"2026-06-02","structured_output":true,"tool_call":true},"mistral-small-31-24b-instruct":{"attachment":true,"cost":{"input":0.1,"output":0.3},"id":"mistral-small-31-24b-instruct","last_updated":"2025-04-15","limit":{"context":128000,"input":128000,"output":131072},"modalities":{"input":["text","image"],"output":["text"]},"name":"Mistral Small 31 24b Instruct","open_weights":false,"reasoning":false,"release_date":"2025-04-15","structured_output":false,"tool_call":false},"mistral/mistral-medium-3.5":{"attachment":true,"cost":{"input":1.5,"output":7.5},"id":"mistral/mistral-medium-3.5","last_updated":"2026-04-29","limit":{"context":256000,"input":256000,"output":32768},"modalities":{"input":["text","image"],"output":["text"]},"name":"Mistral Medium 3.5","open_weights":false,"reasoning":true,"release_date":"2026-04-29","structured_output":true,"tool_call":true},"mistral/mistral-medium-3.5:thinking":{"attachment":true,"cost":{"input":1.5,"output":7.5},"id":"mistral/mistral-medium-3.5:thinking","last_updated":"2026-04-30","limit":{"context":256000,"input":256000,"output":32768},"modalities":{"input":["text","image"],"output":["text"]},"name":"Mistral Medium 3.5 Thinking","open_weights":false,"reasoning":true,"release_date":"2026-04-30","structured_output":true,"tool_call":true},"mistralai/Devstral-Small-2505":{"attachment":false,"cost":{"input":0.060000000000000005,"output":0.060000000000000005},"family":"devstral","id":"mistralai/Devstral-Small-2505","last_updated":"2025-08-02","limit":{"context":32768,"input":32768,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Mistral Devstral Small 2505","open_weights":false,"reasoning":false,"release_date":"2025-08-02","structured_output":false,"tool_call":false},"mistralai/Mistral-Nemo-Instruct-2407":{"attachment":false,"cost":{"input":0.1003,"output":0.1207},"family":"mistral-nemo","id":"mistralai/Mistral-Nemo-Instruct-2407","last_updated":"2024-07-18","limit":{"context":16384,"input":16384,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Mistral Nemo","open_weights":false,"reasoning":false,"release_date":"2024-07-18","structured_output":false,"tool_call":false},"mistralai/codestral-2508":{"attachment":false,"cost":{"input":0.3,"output":0.8999999999999999},"family":"codestral","id":"mistralai/codestral-2508","last_updated":"2025-08-01","limit":{"context":256000,"input":256000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Codestral 2508","open_weights":false,"reasoning":false,"release_date":"2025-08-01","structured_output":false,"tool_call":false},"mistralai/devstral-2-123b-instruct-2512":{"attachment":false,"cost":{"input":0.4,"output":1.4},"family":"devstral","id":"mistralai/devstral-2-123b-instruct-2512","last_updated":"2025-12-09","limit":{"context":262144,"input":262144,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Devstral 2 123B","open_weights":false,"reasoning":false,"release_date":"2025-12-09","structured_output":false,"tool_call":false},"mistralai/ministral-14b-2512":{"attachment":false,"cost":{"input":0.2,"output":0.2},"family":"ministral","id":"mistralai/ministral-14b-2512","last_updated":"2025-12-04","limit":{"context":262144,"input":262144,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Ministral 14B","open_weights":false,"reasoning":false,"release_date":"2025-12-04","structured_output":false,"tool_call":false},"mistralai/ministral-14b-instruct-2512":{"attachment":true,"cost":{"input":0.1,"output":0.4},"family":"ministral","id":"mistralai/ministral-14b-instruct-2512","last_updated":"2025-12-02","limit":{"context":262144,"input":262144,"output":32768},"modalities":{"input":["text","image"],"output":["text"]},"name":"Ministral 3 14B","open_weights":false,"reasoning":false,"release_date":"2025-12-02","structured_output":false,"tool_call":false},"mistralai/ministral-3b-2512":{"attachment":false,"cost":{"input":0.1,"output":0.1},"family":"ministral","id":"mistralai/ministral-3b-2512","last_updated":"2025-12-04","limit":{"context":131072,"input":131072,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Ministral 3B","open_weights":false,"reasoning":false,"release_date":"2025-12-04","structured_output":false,"tool_call":false},"mistralai/ministral-8b-2512":{"attachment":false,"cost":{"input":0.15,"output":0.15},"family":"ministral","id":"mistralai/ministral-8b-2512","last_updated":"2025-12-04","limit":{"context":262144,"input":262144,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Ministral 8B","open_weights":false,"reasoning":false,"release_date":"2025-12-04","structured_output":false,"tool_call":false},"mistralai/mistral-large":{"attachment":false,"cost":{"input":2.006,"output":6.001},"family":"mistral-large","id":"mistralai/mistral-large","last_updated":"2024-02-26","limit":{"context":128000,"input":128000,"output":256000},"modalities":{"input":["text"],"output":["text"]},"name":"Mistral Large 2411","open_weights":false,"reasoning":false,"release_date":"2024-02-26","structured_output":false,"tool_call":false},"mistralai/mistral-large-3-675b-instruct-2512":{"attachment":true,"cost":{"input":1,"output":3},"family":"mistral-large","id":"mistralai/mistral-large-3-675b-instruct-2512","last_updated":"2025-12-02","limit":{"context":262144,"input":262144,"output":256000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Mistral Large 3 675B","open_weights":false,"reasoning":false,"release_date":"2025-12-02","structured_output":false,"tool_call":false},"mistralai/mistral-medium-3":{"attachment":true,"cost":{"input":0.4,"output":2},"family":"mistral-medium","id":"mistralai/mistral-medium-3","last_updated":"2025-09-25","limit":{"context":131072,"input":131072,"output":32768},"modalities":{"input":["text","image"],"output":["text"]},"name":"Mistral Medium 3","open_weights":false,"reasoning":false,"release_date":"2025-09-25","structured_output":false,"tool_call":false},"mistralai/mistral-medium-3.1":{"attachment":false,"cost":{"input":0.4,"output":2},"family":"mistral-medium","id":"mistralai/mistral-medium-3.1","last_updated":"2025-09-05","limit":{"context":131072,"input":131072,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Mistral Medium 3.1","open_weights":false,"reasoning":false,"release_date":"2025-09-05","structured_output":false,"tool_call":false},"mistralai/mistral-saba":{"attachment":false,"cost":{"input":0.1989,"output":0.595},"family":"mistral","id":"mistralai/mistral-saba","last_updated":"2025-02-17","limit":{"context":32000,"input":32000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Mistral Saba","open_weights":false,"reasoning":false,"release_date":"2025-02-17","structured_output":false,"tool_call":false},"mistralai/mistral-small-4-119b-2603":{"attachment":true,"cost":{"input":0.4,"output":1.4},"id":"mistralai/mistral-small-4-119b-2603","last_updated":"2026-03-16","limit":{"context":262144,"input":262144,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"Mistral Small 4 119B","open_weights":false,"reasoning":true,"release_date":"2026-03-16","structured_output":true,"tool_call":true},"mistralai/mistral-small-4-119b-2603:thinking":{"attachment":true,"cost":{"input":0.4,"output":1.4},"id":"mistralai/mistral-small-4-119b-2603:thinking","last_updated":"2026-03-17","limit":{"context":262144,"input":262144,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"Mistral Small 4 119B Thinking","open_weights":false,"reasoning":true,"release_date":"2026-03-17","structured_output":true,"tool_call":true},"mistralai/mixtral-8x22b-instruct-v0.1":{"attachment":false,"cost":{"input":0.8999999999999999,"output":0.8999999999999999},"family":"mixtral","id":"mistralai/mixtral-8x22b-instruct-v0.1","last_updated":"2025-12-11","limit":{"context":65536,"input":65536,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Mixtral 8x22B","open_weights":false,"reasoning":false,"release_date":"2025-12-11","structured_output":false,"tool_call":false},"mistralai/mixtral-8x7b-instruct-v0.1":{"attachment":false,"cost":{"input":0.27,"output":0.27},"family":"mixtral","id":"mistralai/mixtral-8x7b-instruct-v0.1","last_updated":"2025-12-11","limit":{"context":32768,"input":32768,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Mixtral 8x7B","open_weights":false,"reasoning":false,"release_date":"2025-12-11","structured_output":false,"tool_call":false},"mlabonne/NeuralDaredevil-8B-abliterated":{"attachment":false,"cost":{"input":0.44,"output":0.44},"family":"llama","id":"mlabonne/NeuralDaredevil-8B-abliterated","last_updated":"2024-12-01","limit":{"context":8192,"input":8192,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Neural Daredevil 8B abliterated","open_weights":false,"reasoning":false,"release_date":"2024-12-01","structured_output":false,"tool_call":false},"moonshotai/Kimi-K2-Instruct-0905":{"attachment":false,"cost":{"input":0.4,"output":2},"family":"kimi","id":"moonshotai/Kimi-K2-Instruct-0905","last_updated":"2025-09-25","limit":{"context":256000,"input":256000,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Kimi K2 0905","open_weights":false,"reasoning":false,"release_date":"2025-09-25","structured_output":true,"tool_call":true},"moonshotai/kimi-k2-instruct":{"attachment":false,"cost":{"input":0.1,"output":2},"family":"kimi","id":"moonshotai/kimi-k2-instruct","last_updated":"2025-07-01","limit":{"context":256000,"input":256000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Kimi K2 Instruct","open_weights":false,"reasoning":false,"release_date":"2025-07-01","structured_output":true,"tool_call":true},"moonshotai/kimi-k2-instruct-0711":{"attachment":false,"cost":{"input":0.1,"output":2},"family":"kimi","id":"moonshotai/kimi-k2-instruct-0711","last_updated":"2025-07-11","limit":{"context":128000,"input":128000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Kimi K2 0711","open_weights":false,"reasoning":false,"release_date":"2025-07-11","structured_output":true,"tool_call":true},"moonshotai/kimi-k2-thinking":{"attachment":false,"cost":{"input":0.3,"output":1.2},"family":"kimi-thinking","id":"moonshotai/kimi-k2-thinking","last_updated":"2025-11-06","limit":{"context":256000,"input":256000,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Kimi K2 Thinking","open_weights":false,"reasoning":false,"release_date":"2025-11-06","structured_output":true,"tool_call":true},"moonshotai/kimi-k2-thinking-original":{"attachment":false,"cost":{"input":0.6,"output":2.5},"family":"kimi-thinking","id":"moonshotai/kimi-k2-thinking-original","last_updated":"2025-11-06","limit":{"context":256000,"input":256000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Kimi K2 Thinking Original","open_weights":false,"reasoning":true,"release_date":"2025-11-06","structured_output":false,"tool_call":false},"moonshotai/kimi-k2-thinking-turbo-original":{"attachment":false,"cost":{"input":1.15,"output":8},"family":"kimi-thinking","id":"moonshotai/kimi-k2-thinking-turbo-original","last_updated":"2025-11-06","limit":{"context":256000,"input":256000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Kimi K2 Thinking Turbo Original","open_weights":false,"reasoning":true,"release_date":"2025-11-06","structured_output":false,"tool_call":false},"moonshotai/kimi-k2.5":{"attachment":true,"cost":{"input":0.3,"output":1.9},"family":"kimi","id":"moonshotai/kimi-k2.5","last_updated":"2026-01-26","limit":{"context":256000,"input":256000,"output":65536},"modalities":{"input":["text","image"],"output":["text"]},"name":"Kimi K2.5","open_weights":false,"reasoning":false,"release_date":"2026-01-26","structured_output":false,"tool_call":true},"moonshotai/kimi-k2.5:thinking":{"attachment":true,"cost":{"input":0.3,"output":1.9},"family":"kimi-thinking","id":"moonshotai/kimi-k2.5:thinking","last_updated":"2026-01-26","limit":{"context":256000,"input":256000,"output":65536},"modalities":{"input":["text","image"],"output":["text"]},"name":"Kimi K2.5 Thinking","open_weights":false,"reasoning":true,"release_date":"2026-01-26","structured_output":false,"tool_call":true},"moonshotai/kimi-k2.6":{"attachment":true,"cost":{"input":0.53,"output":2.73},"family":"kimi-k2.6","id":"moonshotai/kimi-k2.6","last_updated":"2026-04-21","limit":{"context":256000,"output":65536},"modalities":{"input":["text","image"],"output":["text"]},"name":"Kimi K2.6","open_weights":true,"reasoning":false,"release_date":"2026-04-16","structured_output":false,"tool_call":true},"moonshotai/kimi-k2.6:thinking":{"attachment":true,"cost":{"input":0.53,"output":2.73},"family":"kimi-thinking","id":"moonshotai/kimi-k2.6:thinking","last_updated":"2026-04-21","limit":{"context":256000,"output":65536},"modalities":{"input":["text","image"],"output":["text"]},"name":"Kimi K2.6 Thinking","open_weights":true,"reasoning":true,"release_date":"2026-04-16","structured_output":false,"tool_call":true},"moonshotai/kimi-latest":{"attachment":true,"cost":{"cache_read":0.125,"input":0.5,"output":2.6},"id":"moonshotai/kimi-latest","last_updated":"2026-05-03","limit":{"context":256000,"input":256000,"output":65536},"modalities":{"input":["text","image"],"output":["text"]},"name":"Kimi Latest","open_weights":false,"reasoning":true,"release_date":"2026-05-03","structured_output":false,"tool_call":true},"nanogpt/coding-router":{"attachment":false,"cost":{"cache_read":0.11,"input":1.1,"output":2.2},"id":"nanogpt/coding-router","last_updated":"2026-05-12","limit":{"context":1000000,"input":1000000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"Coding Router","open_weights":false,"reasoning":true,"release_date":"2026-05-12","structured_output":true,"tool_call":true},"nanogpt/coding-router:high":{"attachment":false,"cost":{"cache_read":0.11,"input":1.1,"output":2.2},"id":"nanogpt/coding-router:high","last_updated":"2026-05-12","limit":{"context":1000000,"input":1000000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"Coding Router High","open_weights":false,"reasoning":true,"release_date":"2026-05-12","structured_output":true,"tool_call":true},"nanogpt/coding-router:low":{"attachment":false,"cost":{"cache_read":0.028,"input":0.14,"output":0.28},"id":"nanogpt/coding-router:low","last_updated":"2026-05-12","limit":{"context":1000000,"input":1000000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"Coding Router Low","open_weights":false,"reasoning":true,"release_date":"2026-05-12","structured_output":true,"tool_call":true},"nanogpt/coding-router:max":{"attachment":false,"cost":{"cache_read":0.5,"input":5,"output":30},"id":"nanogpt/coding-router:max","last_updated":"2026-05-12","limit":{"context":1000000,"input":1000000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"Coding Router Max","open_weights":false,"reasoning":true,"release_date":"2026-05-12","structured_output":true,"tool_call":true},"nanogpt/coding-router:medium":{"attachment":false,"cost":{"cache_read":0.028,"input":0.14,"output":0.28},"id":"nanogpt/coding-router:medium","last_updated":"2026-05-12","limit":{"context":1000000,"input":1000000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"Coding Router Medium","open_weights":false,"reasoning":true,"release_date":"2026-05-12","structured_output":true,"tool_call":true},"nex-agi/deepseek-v3.1-nex-n1":{"attachment":false,"cost":{"input":0.27999999999999997,"output":0.42000000000000004},"family":"deepseek","id":"nex-agi/deepseek-v3.1-nex-n1","last_updated":"2025-12-10","limit":{"context":128000,"input":128000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V3.1 Nex N1","open_weights":false,"reasoning":false,"release_date":"2025-12-10","structured_output":false,"tool_call":false},"nothingiisreal/L3.1-70B-Celeste-V0.1-BF16":{"attachment":false,"cost":{"input":0.49299999999999994,"output":0.49299999999999994},"family":"llama","id":"nothingiisreal/L3.1-70B-Celeste-V0.1-BF16","last_updated":"2024-07-23","limit":{"context":16384,"input":16384,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.1 70B Celeste v0.1","open_weights":false,"reasoning":false,"release_date":"2024-07-23","structured_output":false,"tool_call":false},"nvidia/Llama-3.1-Nemotron-70B-Instruct-HF":{"attachment":false,"cost":{"input":0.357,"output":0.408},"family":"nemotron","id":"nvidia/Llama-3.1-Nemotron-70B-Instruct-HF","last_updated":"2025-04-15","limit":{"context":16384,"input":16384,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Nvidia Nemotron 70b","open_weights":false,"reasoning":false,"release_date":"2025-04-15","structured_output":false,"tool_call":false},"nvidia/Llama-3.3-Nemotron-Super-49B-v1":{"attachment":false,"cost":{"input":0.15,"output":0.15},"family":"nemotron","id":"nvidia/Llama-3.3-Nemotron-Super-49B-v1","last_updated":"2025-08-08","limit":{"context":128000,"input":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Nvidia Nemotron Super 49B","open_weights":false,"reasoning":false,"release_date":"2025-08-08","structured_output":false,"tool_call":false},"nvidia/Llama-3_3-Nemotron-Super-49B-v1_5":{"attachment":false,"cost":{"input":0.05,"output":0.25},"family":"nemotron","id":"nvidia/Llama-3_3-Nemotron-Super-49B-v1_5","last_updated":"2025-08-08","limit":{"context":128000,"input":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Nvidia Nemotron Super 49B v1.5","open_weights":false,"reasoning":false,"release_date":"2025-08-08","structured_output":false,"tool_call":false},"nvidia/nemotron-3-nano-30b-a3b":{"attachment":false,"cost":{"input":0.17,"output":0.68},"family":"nemotron","id":"nvidia/nemotron-3-nano-30b-a3b","last_updated":"2025-12-15","limit":{"context":256000,"input":256000,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Nvidia Nemotron 3 Nano 30B","open_weights":false,"reasoning":false,"release_date":"2025-12-15","structured_output":false,"tool_call":false},"nvidia/nemotron-3-nano-omni-30b-a3b-reasoning":{"attachment":true,"cost":{"input":0.105,"output":0.42},"id":"nvidia/nemotron-3-nano-omni-30b-a3b-reasoning","last_updated":"2026-04-28","limit":{"context":256000,"input":256000,"output":65536},"modalities":{"input":["text","image"],"output":["text"]},"name":"Nvidia Nemotron 3 Nano Omni","open_weights":false,"reasoning":true,"release_date":"2026-04-28","structured_output":false,"tool_call":true},"nvidia/nemotron-3-super-120b-a12b":{"attachment":false,"cost":{"input":0.05,"output":0.25},"id":"nvidia/nemotron-3-super-120b-a12b","last_updated":"2026-03-01","limit":{"context":262144,"input":262144,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Nvidia Nemotron 3 Super 120B","open_weights":false,"reasoning":true,"release_date":"2026-03-01","structured_output":false,"tool_call":true},"nvidia/nemotron-3-super-120b-a12b:thinking":{"attachment":false,"cost":{"input":0.05,"output":0.25},"id":"nvidia/nemotron-3-super-120b-a12b:thinking","last_updated":"2026-03-01","limit":{"context":262144,"input":262144,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Nvidia Nemotron 3 Super 120B Thinking","open_weights":false,"reasoning":true,"release_date":"2026-03-01","structured_output":false,"tool_call":true},"nvidia/nvidia-nemotron-nano-9b-v2":{"attachment":false,"cost":{"input":0.17,"output":0.68},"family":"nemotron","id":"nvidia/nvidia-nemotron-nano-9b-v2","last_updated":"2025-08-18","limit":{"context":128000,"input":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Nvidia Nemotron Nano 9B v2","open_weights":false,"reasoning":false,"release_date":"2025-08-18","structured_output":false,"tool_call":false},"openai/gpt-3.5-turbo":{"attachment":false,"cost":{"input":0.5,"output":1.5},"family":"gpt","id":"openai/gpt-3.5-turbo","last_updated":"2024-01-01","limit":{"context":16385,"input":16385,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"GPT-3.5 Turbo","open_weights":false,"reasoning":false,"release_date":"2022-11-30","structured_output":false,"tool_call":false},"openai/gpt-4-turbo":{"attachment":true,"cost":{"input":10,"output":30},"family":"gpt","id":"openai/gpt-4-turbo","last_updated":"2024-01-01","limit":{"context":128000,"input":128000,"output":4096},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-4 Turbo","open_weights":false,"reasoning":false,"release_date":"2023-11-06","structured_output":false,"tool_call":false},"openai/gpt-4-turbo-preview":{"attachment":false,"cost":{"input":9.996,"output":30.004999999999995},"family":"gpt","id":"openai/gpt-4-turbo-preview","last_updated":"2024-01-01","limit":{"context":128000,"input":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"GPT-4 Turbo Preview","open_weights":false,"reasoning":false,"release_date":"2023-11-06","structured_output":false,"tool_call":false},"openai/gpt-4.1":{"attachment":true,"cost":{"input":2,"output":8},"family":"gpt","id":"openai/gpt-4.1","last_updated":"2025-09-10","limit":{"context":1047576,"input":1047576,"output":32768},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT 4.1","open_weights":false,"reasoning":false,"release_date":"2025-09-10","structured_output":true,"tool_call":true},"openai/gpt-4.1-mini":{"attachment":true,"cost":{"input":0.4,"output":1.6},"family":"gpt-mini","id":"openai/gpt-4.1-mini","last_updated":"2025-04-14","limit":{"context":1047576,"input":1047576,"output":32768},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT 4.1 Mini","open_weights":false,"reasoning":false,"release_date":"2025-04-14","structured_output":false,"tool_call":false},"openai/gpt-4.1-nano":{"attachment":true,"cost":{"input":0.1,"output":0.4},"family":"gpt-nano","id":"openai/gpt-4.1-nano","last_updated":"2025-04-14","limit":{"context":1047576,"input":1047576,"output":32768},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT 4.1 Nano","open_weights":false,"reasoning":false,"release_date":"2025-04-14","structured_output":false,"tool_call":false},"openai/gpt-4o":{"attachment":true,"cost":{"input":2.499,"output":9.996},"family":"gpt","id":"openai/gpt-4o","last_updated":"2024-05-13","limit":{"context":128000,"input":128000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-4o","open_weights":false,"reasoning":false,"release_date":"2024-05-13","structured_output":false,"tool_call":false},"openai/gpt-4o-2024-08-06":{"attachment":true,"cost":{"input":2.499,"output":9.996},"family":"gpt","id":"openai/gpt-4o-2024-08-06","last_updated":"2024-08-06","limit":{"context":128000,"input":128000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-4o (2024-08-06)","open_weights":false,"reasoning":false,"release_date":"2024-08-06","structured_output":false,"tool_call":false},"openai/gpt-4o-2024-11-20":{"attachment":true,"cost":{"input":2.5,"output":10},"family":"gpt","id":"openai/gpt-4o-2024-11-20","last_updated":"2024-11-20","limit":{"context":128000,"input":128000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-4o (2024-11-20)","open_weights":false,"reasoning":false,"release_date":"2024-11-20","structured_output":false,"tool_call":false},"openai/gpt-4o-mini":{"attachment":true,"cost":{"input":0.1496,"output":0.595},"family":"gpt-mini","id":"openai/gpt-4o-mini","last_updated":"2024-07-18","limit":{"context":128000,"input":128000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-4o mini","open_weights":false,"reasoning":false,"release_date":"2024-07-18","structured_output":false,"tool_call":false},"openai/gpt-4o-mini-search-preview":{"attachment":false,"cost":{"input":0.088,"output":0.35},"family":"gpt-mini","id":"openai/gpt-4o-mini-search-preview","last_updated":"2024-07-18","limit":{"context":128000,"input":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"GPT-4o mini Search Preview","open_weights":false,"reasoning":false,"release_date":"2024-07-18","structured_output":false,"tool_call":false},"openai/gpt-4o-search-preview":{"attachment":true,"cost":{"input":1.47,"output":5.88},"family":"gpt","id":"openai/gpt-4o-search-preview","last_updated":"2024-05-13","limit":{"context":128000,"input":128000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-4o Search Preview","open_weights":false,"reasoning":false,"release_date":"2024-05-13","structured_output":false,"tool_call":false},"openai/gpt-5":{"attachment":true,"cost":{"input":1.25,"output":10},"family":"gpt","id":"openai/gpt-5","last_updated":"2025-08-07","limit":{"context":400000,"input":400000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT 5","open_weights":false,"reasoning":true,"release_date":"2025-08-07","structured_output":true,"tool_call":true},"openai/gpt-5-codex":{"attachment":false,"cost":{"input":9.996,"output":19.992},"family":"gpt-codex","id":"openai/gpt-5-codex","last_updated":"2025-09-15","limit":{"context":256000,"input":256000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"GPT-5 Codex","open_weights":false,"reasoning":false,"release_date":"2025-09-15","structured_output":false,"tool_call":false},"openai/gpt-5-mini":{"attachment":true,"cost":{"input":0.25,"output":2},"family":"gpt-mini","id":"openai/gpt-5-mini","last_updated":"2025-08-07","limit":{"context":400000,"input":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT 5 Mini","open_weights":false,"reasoning":true,"release_date":"2025-08-07","structured_output":false,"tool_call":false},"openai/gpt-5-nano":{"attachment":true,"cost":{"input":0.05,"output":0.4},"family":"gpt-nano","id":"openai/gpt-5-nano","last_updated":"2025-08-07","limit":{"context":400000,"input":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT 5 Nano","open_weights":false,"reasoning":true,"release_date":"2025-08-07","structured_output":false,"tool_call":false},"openai/gpt-5-pro":{"attachment":true,"cost":{"input":15,"output":120},"family":"gpt-pro","id":"openai/gpt-5-pro","last_updated":"2025-08-07","limit":{"context":400000,"input":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT 5 Pro","open_weights":false,"reasoning":true,"release_date":"2025-08-07","structured_output":false,"tool_call":false},"openai/gpt-5.1":{"attachment":true,"cost":{"input":1.25,"output":10},"family":"gpt","id":"openai/gpt-5.1","last_updated":"2025-11-13","limit":{"context":400000,"input":400000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT 5.1","open_weights":false,"reasoning":true,"release_date":"2025-11-13","structured_output":true,"tool_call":true},"openai/gpt-5.1-2025-11-13":{"attachment":false,"cost":{"input":1.25,"output":10},"family":"gpt","id":"openai/gpt-5.1-2025-11-13","last_updated":"2025-11-13","limit":{"context":1000000,"input":1000000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"GPT-5.1 (2025-11-13)","open_weights":false,"reasoning":false,"release_date":"2025-11-13","structured_output":false,"tool_call":false},"openai/gpt-5.1-codex":{"attachment":true,"cost":{"input":1.25,"output":10},"family":"gpt-codex","id":"openai/gpt-5.1-codex","last_updated":"2025-11-13","limit":{"context":400000,"input":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT 5.1 Codex","open_weights":false,"reasoning":true,"release_date":"2025-11-13","structured_output":false,"tool_call":false},"openai/gpt-5.1-codex-max":{"attachment":true,"cost":{"input":2.5,"output":20},"family":"gpt-codex","id":"openai/gpt-5.1-codex-max","last_updated":"2025-11-13","limit":{"context":400000,"input":400000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT 5.1 Codex Max","open_weights":false,"reasoning":true,"release_date":"2025-11-13","structured_output":true,"tool_call":true},"openai/gpt-5.1-codex-mini":{"attachment":true,"cost":{"input":0.25,"output":2},"family":"gpt-codex-mini","id":"openai/gpt-5.1-codex-mini","last_updated":"2025-11-13","limit":{"context":400000,"input":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT 5.1 Codex Mini","open_weights":false,"reasoning":true,"release_date":"2025-11-13","structured_output":false,"tool_call":false},"openai/gpt-5.2":{"attachment":true,"cost":{"input":1.75,"output":14},"family":"gpt","id":"openai/gpt-5.2","last_updated":"2026-01-01","limit":{"context":400000,"input":400000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT 5.2","open_weights":false,"reasoning":true,"release_date":"2026-01-01","structured_output":true,"tool_call":true},"openai/gpt-5.2-codex":{"attachment":true,"cost":{"input":1.75,"output":14},"family":"gpt-codex","id":"openai/gpt-5.2-codex","last_updated":"2026-01-14","limit":{"context":400000,"input":400000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT 5.2 Codex","open_weights":false,"reasoning":true,"release_date":"2026-01-14","structured_output":true,"tool_call":true},"openai/gpt-5.2-pro":{"attachment":true,"cost":{"input":21,"output":168},"family":"gpt-pro","id":"openai/gpt-5.2-pro","last_updated":"2026-01-01","limit":{"context":400000,"input":400000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT 5.2 Pro","open_weights":false,"reasoning":true,"release_date":"2026-01-01","structured_output":true,"tool_call":true},"openai/gpt-5.3-codex":{"attachment":true,"cost":{"cache_read":0.175,"input":1.75,"output":14},"id":"openai/gpt-5.3-codex","last_updated":"2026-02-24","limit":{"context":400000,"input":400000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT 5.3 Codex","open_weights":false,"reasoning":true,"release_date":"2026-02-24","structured_output":true,"tool_call":true},"openai/gpt-5.4":{"attachment":true,"cost":{"cache_read":0.25,"input":2.5,"output":15},"id":"openai/gpt-5.4","last_updated":"2026-03-05","limit":{"context":922000,"input":922000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT 5.4","open_weights":false,"reasoning":true,"release_date":"2026-03-05","structured_output":true,"tool_call":true},"openai/gpt-5.4-mini":{"attachment":true,"cost":{"cache_read":0.075,"input":0.75,"output":4.5},"id":"openai/gpt-5.4-mini","last_updated":"2026-03-17","limit":{"context":400000,"input":400000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT 5.4 Mini","open_weights":false,"reasoning":true,"release_date":"2026-03-17","structured_output":true,"tool_call":true},"openai/gpt-5.4-nano":{"attachment":true,"cost":{"cache_read":0.02,"input":0.2,"output":1.25},"id":"openai/gpt-5.4-nano","last_updated":"2026-03-17","limit":{"context":400000,"input":400000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT 5.4 Nano","open_weights":false,"reasoning":true,"release_date":"2026-03-17","structured_output":true,"tool_call":true},"openai/gpt-5.4-pro":{"attachment":true,"cost":{"cache_read":3,"input":30,"output":180},"id":"openai/gpt-5.4-pro","last_updated":"2026-03-05","limit":{"context":922000,"input":922000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT 5.4 Pro","open_weights":false,"reasoning":true,"release_date":"2026-03-05","structured_output":true,"tool_call":true},"openai/gpt-5.5":{"attachment":true,"cost":{"cache_read":0.5,"input":5,"output":30},"id":"openai/gpt-5.5","last_updated":"2026-04-23","limit":{"context":1000000,"input":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT 5.5","open_weights":false,"reasoning":true,"release_date":"2026-04-23","structured_output":true,"tool_call":true},"openai/gpt-chat-latest":{"attachment":true,"cost":{"cache_read":0.5,"input":5,"output":30},"id":"openai/gpt-chat-latest","last_updated":"2026-05-03","limit":{"context":400000,"input":400000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT Chat Latest","open_weights":false,"reasoning":false,"release_date":"2026-05-03","structured_output":true,"tool_call":true},"openai/gpt-latest":{"attachment":true,"cost":{"cache_read":0.5,"input":5,"output":30},"id":"openai/gpt-latest","last_updated":"2026-03-29","limit":{"context":1000000,"input":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT Latest","open_weights":false,"reasoning":true,"release_date":"2026-03-29","structured_output":true,"tool_call":true},"openai/gpt-oss-120b":{"attachment":false,"cost":{"input":0.05,"output":0.25},"family":"gpt-oss","id":"openai/gpt-oss-120b","last_updated":"2025-08-05","limit":{"context":128000,"input":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"GPT OSS 120B","open_weights":false,"reasoning":true,"release_date":"2025-08-05","structured_output":true,"tool_call":true},"openai/gpt-oss-20b":{"attachment":false,"cost":{"input":0.04,"output":0.15},"family":"gpt-oss","id":"openai/gpt-oss-20b","last_updated":"2025-08-05","limit":{"context":128000,"input":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"GPT OSS 20B","open_weights":false,"reasoning":true,"release_date":"2025-08-05","structured_output":false,"tool_call":false},"openai/gpt-oss-safeguard-20b":{"attachment":false,"cost":{"input":0.075,"output":0.3},"family":"gpt-oss","id":"openai/gpt-oss-safeguard-20b","last_updated":"2025-10-29","limit":{"context":128000,"input":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"GPT OSS Safeguard 20B","open_weights":false,"reasoning":true,"release_date":"2025-10-29","structured_output":false,"tool_call":false},"openai/o1":{"attachment":false,"cost":{"input":14.993999999999998,"output":59.993},"family":"o","id":"openai/o1","last_updated":"2024-12-17","limit":{"context":200000,"input":200000,"output":100000},"modalities":{"input":["text"],"output":["text"]},"name":"OpenAI o1","open_weights":false,"reasoning":true,"release_date":"2024-12-17","structured_output":false,"tool_call":false},"openai/o1-preview":{"attachment":false,"cost":{"input":14.993999999999998,"output":59.993},"family":"o","id":"openai/o1-preview","last_updated":"2024-09-12","limit":{"context":128000,"input":128000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"OpenAI o1-preview","open_weights":false,"reasoning":true,"release_date":"2024-09-12","structured_output":false,"tool_call":false},"openai/o1-pro":{"attachment":true,"cost":{"input":150,"output":600},"family":"o-pro","id":"openai/o1-pro","last_updated":"2025-01-25","limit":{"context":200000,"input":200000,"output":100000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"OpenAI o1 Pro","open_weights":false,"reasoning":false,"release_date":"2025-01-25","structured_output":false,"tool_call":false},"openai/o3":{"attachment":false,"cost":{"input":2,"output":8},"family":"o","id":"openai/o3","last_updated":"2025-04-16","limit":{"context":200000,"input":200000,"output":100000},"modalities":{"input":["text"],"output":["text"]},"name":"OpenAI o3","open_weights":false,"reasoning":false,"release_date":"2025-04-16","structured_output":false,"tool_call":false},"openai/o3-deep-research":{"attachment":false,"cost":{"input":9.996,"output":19.992},"family":"o","id":"openai/o3-deep-research","last_updated":"2025-04-16","limit":{"context":200000,"input":200000,"output":100000},"modalities":{"input":["text"],"output":["text"]},"name":"OpenAI o3 Deep Research","open_weights":false,"reasoning":true,"release_date":"2025-04-16","structured_output":false,"tool_call":false},"openai/o3-mini":{"attachment":false,"cost":{"input":1.1,"output":4.4},"family":"o-mini","id":"openai/o3-mini","last_updated":"2025-01-31","limit":{"context":200000,"input":200000,"output":100000},"modalities":{"input":["text"],"output":["text"]},"name":"OpenAI o3-mini","open_weights":false,"reasoning":true,"release_date":"2025-01-31","structured_output":true,"tool_call":true},"openai/o3-mini-high":{"attachment":false,"cost":{"input":0.64,"output":2.588},"family":"o-mini","id":"openai/o3-mini-high","last_updated":"2025-01-31","limit":{"context":200000,"input":200000,"output":100000},"modalities":{"input":["text"],"output":["text"]},"name":"OpenAI o3-mini (High)","open_weights":false,"reasoning":true,"release_date":"2025-01-31","structured_output":true,"tool_call":true},"openai/o3-mini-low":{"attachment":false,"cost":{"input":9.996,"output":19.992},"family":"o-mini","id":"openai/o3-mini-low","last_updated":"2025-01-31","limit":{"context":200000,"input":200000,"output":100000},"modalities":{"input":["text"],"output":["text"]},"name":"OpenAI o3-mini (Low)","open_weights":false,"reasoning":true,"release_date":"2025-01-31","structured_output":true,"tool_call":true},"openai/o3-pro-2025-06-10":{"attachment":false,"cost":{"input":9.996,"output":19.992},"family":"o-pro","id":"openai/o3-pro-2025-06-10","last_updated":"2025-06-10","limit":{"context":200000,"input":200000,"output":100000},"modalities":{"input":["text"],"output":["text"]},"name":"OpenAI o3-pro (2025-06-10)","open_weights":false,"reasoning":true,"release_date":"2025-06-10","structured_output":true,"tool_call":true},"openai/o4-mini":{"attachment":false,"cost":{"input":1.1,"output":4.4},"family":"o-mini","id":"openai/o4-mini","last_updated":"2025-04-16","limit":{"context":200000,"input":200000,"output":100000},"modalities":{"input":["text"],"output":["text"]},"name":"OpenAI o4-mini","open_weights":false,"reasoning":true,"release_date":"2025-04-16","structured_output":true,"tool_call":true},"openai/o4-mini-deep-research":{"attachment":false,"cost":{"input":9.996,"output":19.992},"family":"o-mini","id":"openai/o4-mini-deep-research","last_updated":"2025-04-16","limit":{"context":200000,"input":200000,"output":100000},"modalities":{"input":["text"],"output":["text"]},"name":"OpenAI o4-mini Deep Research","open_weights":false,"reasoning":true,"release_date":"2025-04-16","structured_output":false,"tool_call":false},"openai/o4-mini-high":{"attachment":false,"cost":{"input":1.1,"output":4.4},"family":"o-mini","id":"openai/o4-mini-high","last_updated":"2025-04-16","limit":{"context":200000,"input":200000,"output":100000},"modalities":{"input":["text"],"output":["text"]},"name":"OpenAI o4-mini high","open_weights":false,"reasoning":true,"release_date":"2025-04-16","structured_output":true,"tool_call":true},"owl":{"attachment":false,"cost":{"input":0.1,"output":0.3},"id":"owl","last_updated":"2026-05-01","limit":{"context":1048756,"input":1048756,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"OWL","open_weights":false,"reasoning":false,"release_date":"2026-05-01","structured_output":true,"tool_call":true},"pamanseau/OpenReasoning-Nemotron-32B":{"attachment":false,"cost":{"input":0.1,"output":0.4},"family":"nemotron","id":"pamanseau/OpenReasoning-Nemotron-32B","last_updated":"2025-08-21","limit":{"context":32768,"input":32768,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"OpenReasoning Nemotron 32B","open_weights":false,"reasoning":true,"release_date":"2025-08-21","structured_output":false,"tool_call":false},"perceptron/perceptron-mk1":{"attachment":true,"cost":{"input":0.15,"output":1.5},"id":"perceptron/perceptron-mk1","last_updated":"2026-05-12","limit":{"context":32768,"input":32768,"output":8192},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Perceptron Mk1","open_weights":false,"reasoning":true,"release_date":"2026-05-12","structured_output":true,"tool_call":false},"phi-4-mini-instruct":{"attachment":false,"cost":{"input":0.17,"output":0.68},"id":"phi-4-mini-instruct","last_updated":"2025-07-26","limit":{"context":128000,"input":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Phi 4 Mini","open_weights":false,"reasoning":false,"release_date":"2025-07-26","structured_output":false,"tool_call":false},"phi-4-multimodal-instruct":{"attachment":false,"cost":{"input":0.07,"output":0.11},"id":"phi-4-multimodal-instruct","last_updated":"2025-07-26","limit":{"context":128000,"input":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Phi 4 Multimodal","open_weights":false,"reasoning":false,"release_date":"2025-07-26","structured_output":false,"tool_call":false},"poolside/laguna-m.1":{"attachment":false,"cost":{"input":0.1,"output":0.3},"id":"poolside/laguna-m.1","last_updated":"2026-04-29","limit":{"context":128000,"input":128000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Laguna M.1","open_weights":false,"reasoning":false,"release_date":"2026-04-29","structured_output":false,"tool_call":false},"poolside/laguna-xs.2":{"attachment":false,"cost":{"input":0.1,"output":0.3},"id":"poolside/laguna-xs.2","last_updated":"2026-04-29","limit":{"context":128000,"input":128000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Laguna XS.2","open_weights":false,"reasoning":false,"release_date":"2026-04-29","structured_output":false,"tool_call":false},"qvq-max":{"attachment":true,"cost":{"input":1.4,"output":5.3},"id":"qvq-max","last_updated":"2025-03-28","limit":{"context":128000,"input":128000,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen: QvQ Max","open_weights":false,"reasoning":false,"release_date":"2025-03-28","structured_output":false,"tool_call":false},"qwen-3.6-plus":{"attachment":false,"cost":{"input":0.45,"output":2.7},"family":"qwen3.6","id":"qwen-3.6-plus","last_updated":"2026-04-02","limit":{"context":991800,"output":65536},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen 3.6 Plus","open_weights":false,"reasoning":false,"release_date":"2026-04-02","structured_output":false,"tool_call":false},"qwen-long":{"attachment":true,"cost":{"input":0.1003,"output":0.408},"id":"qwen-long","last_updated":"2025-01-25","limit":{"context":10000000,"input":10000000,"output":8192},"modalities":{"input":["text","pdf"],"output":["text"]},"name":"Qwen Long 10M","open_weights":false,"reasoning":false,"release_date":"2025-01-25","structured_output":false,"tool_call":false},"qwen-max":{"attachment":false,"cost":{"input":1.5997,"output":6.392},"id":"qwen-max","last_updated":"2024-04-03","limit":{"context":32000,"input":32000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen 2.5 Max","open_weights":false,"reasoning":false,"release_date":"2024-04-03","structured_output":false,"tool_call":false},"qwen-plus":{"attachment":false,"cost":{"input":0.3995,"output":1.2002},"id":"qwen-plus","last_updated":"2024-01-25","limit":{"context":995904,"input":995904,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen Plus","open_weights":false,"reasoning":true,"release_date":"2024-01-25","structured_output":false,"tool_call":false},"qwen-turbo":{"attachment":false,"cost":{"input":0.04998,"output":0.2006},"id":"qwen-turbo","last_updated":"2024-11-01","limit":{"context":1000000,"input":1000000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen Turbo","open_weights":false,"reasoning":false,"release_date":"2024-11-01","structured_output":false,"tool_call":false},"qwen/Qwen2.5-Coder-32B-Instruct":{"attachment":false,"cost":{"input":0.2006,"output":0.2006},"id":"qwen/Qwen2.5-Coder-32B-Instruct","last_updated":"2025-07-03","limit":{"context":32000,"input":32000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen 2.5 Coder 32b","open_weights":false,"reasoning":false,"release_date":"2025-07-03","structured_output":false,"tool_call":false},"qwen/Qwen3-235B-A22B-Instruct-2507":{"attachment":false,"cost":{"input":0.13,"output":0.5},"id":"qwen/Qwen3-235B-A22B-Instruct-2507","last_updated":"2025-07-25","limit":{"context":256000,"input":256000,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen 3 235b A22B 2507","open_weights":false,"reasoning":false,"release_date":"2025-07-25","structured_output":true,"tool_call":true},"qwen/Qwen3-235B-A22B-Instruct-2507-TEE":{"attachment":false,"cost":{"input":0.13,"output":0.5},"id":"qwen/Qwen3-235B-A22B-Instruct-2507-TEE","last_updated":"2025-07-25","limit":{"context":256000,"input":256000,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen 3 235b A22B 2507 (TEE)","open_weights":false,"reasoning":false,"release_date":"2025-07-25","structured_output":true,"tool_call":true},"qwen/Qwen3-235B-A22B-Thinking-2507":{"attachment":false,"cost":{"input":0.3,"output":0.5},"id":"qwen/Qwen3-235B-A22B-Thinking-2507","last_updated":"2025-09-11","limit":{"context":256000,"input":256000,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen 3 235b A22B 2507 Thinking","open_weights":false,"reasoning":false,"release_date":"2025-09-11","structured_output":false,"tool_call":false},"qwen/Qwen3-8B":{"attachment":false,"cost":{"input":0.47,"output":0.47},"id":"qwen/Qwen3-8B","last_updated":"2024-01-01","limit":{"context":41000,"input":41000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen 3 8B","open_weights":false,"reasoning":false,"release_date":"2024-01-01","structured_output":false,"tool_call":false},"qwen/Qwen3-Next-80B-A3B-Instruct":{"attachment":false,"cost":{"input":0.15,"output":0.65},"id":"qwen/Qwen3-Next-80B-A3B-Instruct","last_updated":"2025-09-11","limit":{"context":256000,"input":256000,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Next 80B A3B (Instruct)","open_weights":false,"reasoning":false,"release_date":"2025-09-11","structured_output":true,"tool_call":true},"qwen/Qwen3-VL-235B-A22B-Instruct":{"attachment":true,"cost":{"input":0.3,"output":1.2},"id":"qwen/Qwen3-VL-235B-A22B-Instruct","last_updated":"2024-01-01","limit":{"context":128000,"input":128000,"output":262144},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen3 VL 235B A22B Instruct","open_weights":false,"reasoning":false,"release_date":"2024-01-01","structured_output":false,"tool_call":false},"qwen/Qwen3.6-35B-A3B":{"attachment":true,"cost":{"input":0.112,"output":0.8},"id":"qwen/Qwen3.6-35B-A3B","last_updated":"2026-04-17","limit":{"context":262144,"input":262144,"output":16384},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.6 35B A3B","open_weights":false,"reasoning":false,"release_date":"2026-04-17","structured_output":false,"tool_call":false},"qwen/Qwen3.6-35B-A3B:thinking":{"attachment":true,"cost":{"input":0.112,"output":0.8},"id":"qwen/Qwen3.6-35B-A3B:thinking","last_updated":"2026-04-19","limit":{"context":262144,"input":262144,"output":16384},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.6 35B A3B Thinking","open_weights":false,"reasoning":true,"release_date":"2026-04-19","structured_output":false,"tool_call":false},"qwen/qwen-2.5-72b-instruct":{"attachment":false,"cost":{"input":0.357,"output":0.408},"id":"qwen/qwen-2.5-72b-instruct","last_updated":"2025-07-03","limit":{"context":131072,"input":131072,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen2.5 72B","open_weights":false,"reasoning":false,"release_date":"2025-07-03","structured_output":false,"tool_call":false},"qwen/qwen3-14b":{"attachment":false,"cost":{"input":0.08,"output":0.24},"id":"qwen/qwen3-14b","last_updated":"2024-01-01","limit":{"context":41000,"input":41000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen 3 14b","open_weights":false,"reasoning":false,"release_date":"2024-01-01","structured_output":false,"tool_call":false},"qwen/qwen3-235b-a22b":{"attachment":true,"cost":{"input":0.3,"output":0.5},"id":"qwen/qwen3-235b-a22b","last_updated":"2025-04-29","limit":{"context":41000,"input":41000,"output":32768},"modalities":{"input":["text","pdf"],"output":["text"]},"name":"Qwen 3 235b A22B","open_weights":false,"reasoning":false,"release_date":"2025-04-29","structured_output":true,"tool_call":true},"qwen/qwen3-30b-a3b":{"attachment":false,"cost":{"input":0.1,"output":0.3},"id":"qwen/qwen3-30b-a3b","last_updated":"2025-02-27","limit":{"context":41000,"input":41000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 30B A3B","open_weights":false,"reasoning":false,"release_date":"2025-02-27","structured_output":false,"tool_call":false},"qwen/qwen3-32b":{"attachment":true,"cost":{"input":0.1,"output":0.3},"id":"qwen/qwen3-32b","last_updated":"2024-01-01","limit":{"context":41000,"input":41000,"output":32768},"modalities":{"input":["text","pdf"],"output":["text"]},"name":"Qwen 3 32b","open_weights":false,"reasoning":false,"release_date":"2024-01-01","structured_output":false,"tool_call":false},"qwen/qwen3-coder":{"attachment":false,"cost":{"input":0.13,"output":0.5},"id":"qwen/qwen3-coder","last_updated":"2026-03-17","limit":{"context":262000,"input":262000,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen 3 Coder 480B","open_weights":false,"reasoning":false,"release_date":"2026-03-17","structured_output":true,"tool_call":true},"qwen/qwen3-coder-flash":{"attachment":false,"cost":{"input":0.3,"output":1.5},"id":"qwen/qwen3-coder-flash","last_updated":"2025-09-17","limit":{"context":128000,"input":128000,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Coder Flash","open_weights":false,"reasoning":false,"release_date":"2025-09-17","structured_output":false,"tool_call":false},"qwen/qwen3-coder-next":{"attachment":false,"cost":{"input":0.15,"output":1.5},"id":"qwen/qwen3-coder-next","last_updated":"2025-12-08","limit":{"context":262144,"input":262144,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Coder Next","open_weights":false,"reasoning":false,"release_date":"2025-12-08","structured_output":true,"tool_call":true},"qwen/qwen3-coder-plus":{"attachment":false,"cost":{"input":1,"output":5},"id":"qwen/qwen3-coder-plus","last_updated":"2025-09-17","limit":{"context":128000,"input":128000,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Coder Plus","open_weights":false,"reasoning":false,"release_date":"2025-09-17","structured_output":false,"tool_call":false},"qwen/qwen3-max":{"attachment":false,"cost":{"input":1.08018,"output":5.4009},"id":"qwen/qwen3-max","last_updated":"2025-09-05","limit":{"context":256000,"input":256000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Max","open_weights":false,"reasoning":false,"release_date":"2025-09-05","structured_output":false,"tool_call":false},"qwen/qwen3-next-80b-a3b-thinking":{"attachment":false,"cost":{"input":0.15,"output":0.65},"id":"qwen/qwen3-next-80b-a3b-thinking","last_updated":"2024-01-01","limit":{"context":256000,"input":256000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Next 80B A3B (Thinking)","open_weights":false,"reasoning":false,"release_date":"2024-01-01","structured_output":false,"tool_call":false},"qwen/qwen3.5-397b-a17b":{"attachment":false,"cost":{"input":0.6,"output":3.6},"family":"qwen","id":"qwen/qwen3.5-397b-a17b","last_updated":"2026-02-16","limit":{"context":258048,"input":258048,"output":65536},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.5 397B A17B","open_weights":true,"reasoning":false,"release_date":"2026-02-16","structured_output":false,"tool_call":false},"qwen/qwen3.5-397b-a17b-thinking":{"attachment":true,"cost":{"input":0.6,"output":3.6},"id":"qwen/qwen3.5-397b-a17b-thinking","last_updated":"2026-02-16","limit":{"context":258048,"input":258048,"output":65536},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.5 397B A17B Thinking","open_weights":false,"reasoning":true,"release_date":"2026-02-16","structured_output":false,"tool_call":false},"qwen/qwen3.5-9b":{"attachment":true,"cost":{"input":0.05,"output":0.15},"id":"qwen/qwen3.5-9b","last_updated":"2026-03-10","limit":{"context":256000,"input":256000,"output":65536},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen3.5 9B","open_weights":false,"reasoning":true,"release_date":"2026-03-10","structured_output":false,"tool_call":false},"qwen/qwen3.5-plus":{"attachment":true,"cost":{"cache_read":0.04,"input":0.4,"output":2.4},"id":"qwen/qwen3.5-plus","last_updated":"2026-02-16","limit":{"context":983616,"input":983616,"output":65536},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.5 Plus","open_weights":false,"reasoning":false,"release_date":"2026-02-16","structured_output":false,"tool_call":false},"qwen/qwen3.5-plus-thinking":{"attachment":true,"cost":{"cache_read":0.04,"input":0.4,"output":2.4},"id":"qwen/qwen3.5-plus-thinking","last_updated":"2026-02-16","limit":{"context":983616,"input":983616,"output":65536},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.5 Plus Thinking","open_weights":false,"reasoning":true,"release_date":"2026-02-16","structured_output":false,"tool_call":false},"qwen/qwq-32b-preview":{"attachment":false,"cost":{"input":0.2,"output":0.2},"id":"qwen/qwq-32b-preview","last_updated":"2025-02-27","limit":{"context":32768,"input":32768,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen QwQ 32B Preview","open_weights":false,"reasoning":false,"release_date":"2025-02-27","structured_output":false,"tool_call":false},"qwen25-vl-72b-instruct":{"attachment":true,"cost":{"input":0.69989,"output":0.69989},"id":"qwen25-vl-72b-instruct","last_updated":"2025-05-10","limit":{"context":32000,"input":32000,"output":32768},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen25 VL 72b","open_weights":false,"reasoning":false,"release_date":"2025-05-10","structured_output":false,"tool_call":false},"qwen3-30b-a3b-instruct-2507":{"attachment":false,"cost":{"input":0.2,"output":0.5},"id":"qwen3-30b-a3b-instruct-2507","last_updated":"2025-02-20","limit":{"context":256000,"input":256000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 30B A3B Instruct 2507","open_weights":false,"reasoning":false,"release_date":"2025-02-20","structured_output":false,"tool_call":false},"qwen3-coder-30b-a3b-instruct":{"attachment":false,"cost":{"input":0.1,"output":0.4},"id":"qwen3-coder-30b-a3b-instruct","last_updated":"2025-08-05","limit":{"context":128000,"input":128000,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Coder 30B A3B Instruct","open_weights":false,"reasoning":false,"release_date":"2025-08-05","structured_output":true,"tool_call":true},"qwen3-max-2026-01-23":{"attachment":false,"cost":{"input":1.2002,"output":6.001},"id":"qwen3-max-2026-01-23","last_updated":"2026-01-26","limit":{"context":256000,"input":256000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Max 2026-01-23","open_weights":false,"reasoning":false,"release_date":"2026-01-26","structured_output":false,"tool_call":false},"qwen3-vl-235b-a22b-instruct-original":{"attachment":true,"cost":{"input":0.5,"output":1.2},"id":"qwen3-vl-235b-a22b-instruct-original","last_updated":"2025-09-25","limit":{"context":32768,"input":32768,"output":32768},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen3 VL 235B A22B Instruct Original","open_weights":false,"reasoning":false,"release_date":"2025-09-25","structured_output":false,"tool_call":false},"qwen3-vl-235b-a22b-thinking":{"attachment":true,"cost":{"input":0.5,"output":6},"id":"qwen3-vl-235b-a22b-thinking","last_updated":"2025-08-26","limit":{"context":32768,"input":32768,"output":32768},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen3 VL 235B A22B Thinking","open_weights":false,"reasoning":true,"release_date":"2025-08-26","structured_output":false,"tool_call":false},"qwen3.5-122b-a10b":{"attachment":true,"cost":{"input":0.36,"output":2.88},"id":"qwen3.5-122b-a10b","last_updated":"2026-02-24","limit":{"context":260096,"input":260096,"output":65536},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.5 122B A10B","open_weights":false,"reasoning":false,"release_date":"2026-02-24","structured_output":false,"tool_call":false},"qwen3.5-122b-a10b:thinking":{"attachment":true,"cost":{"input":0.36,"output":2.88},"id":"qwen3.5-122b-a10b:thinking","last_updated":"2026-02-24","limit":{"context":260096,"input":260096,"output":65536},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.5 122B A10B Thinking","open_weights":false,"reasoning":true,"release_date":"2026-02-24","structured_output":false,"tool_call":false},"qwen3.5-27b":{"attachment":true,"cost":{"input":0.27,"output":2.16},"id":"qwen3.5-27b","last_updated":"2026-02-24","limit":{"context":260096,"input":260096,"output":65536},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.5 27B","open_weights":false,"reasoning":false,"release_date":"2026-02-24","structured_output":false,"tool_call":false},"qwen3.5-27b:thinking":{"attachment":true,"cost":{"input":0.27,"output":2.16},"id":"qwen3.5-27b:thinking","last_updated":"2026-02-24","limit":{"context":260096,"input":260096,"output":65536},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.5 27B Thinking","open_weights":false,"reasoning":true,"release_date":"2026-02-24","structured_output":false,"tool_call":false},"qwen3.5-35b-a3b":{"attachment":true,"cost":{"input":0.225,"output":1.8},"id":"qwen3.5-35b-a3b","last_updated":"2026-02-24","limit":{"context":260096,"input":260096,"output":65536},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.5 35B A3B","open_weights":false,"reasoning":false,"release_date":"2026-02-24","structured_output":false,"tool_call":false},"qwen3.5-35b-a3b:thinking":{"attachment":true,"cost":{"input":0.225,"output":1.8},"id":"qwen3.5-35b-a3b:thinking","last_updated":"2026-02-24","limit":{"context":260096,"input":260096,"output":65536},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.5 35B A3B Thinking","open_weights":false,"reasoning":true,"release_date":"2026-02-24","structured_output":false,"tool_call":false},"qwen3.5-flash":{"attachment":true,"cost":{"input":0.09,"output":0.36},"id":"qwen3.5-flash","last_updated":"2026-02-24","limit":{"context":991808,"input":991808,"output":65536},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.5 Flash","open_weights":false,"reasoning":false,"release_date":"2026-02-24","structured_output":false,"tool_call":false},"qwen3.5-flash:thinking":{"attachment":true,"cost":{"input":0.09,"output":0.36},"id":"qwen3.5-flash:thinking","last_updated":"2026-02-24","limit":{"context":991808,"input":991808,"output":65536},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.5 Flash Thinking","open_weights":false,"reasoning":true,"release_date":"2026-02-24","structured_output":false,"tool_call":false},"qwen3.5-omni-flash":{"attachment":true,"cost":{"input":0,"output":0},"id":"qwen3.5-omni-flash","last_updated":"2026-03-30","limit":{"context":49152,"input":49152,"output":16384},"modalities":{"input":["text","image","video","audio"],"output":["text"]},"name":"Qwen3.5 Omni Flash","open_weights":false,"reasoning":false,"release_date":"2026-03-30","structured_output":false,"tool_call":false},"qwen3.5-omni-plus":{"attachment":true,"cost":{"input":0,"output":0},"id":"qwen3.5-omni-plus","last_updated":"2026-03-30","limit":{"context":983616,"input":983616,"output":65536},"modalities":{"input":["text","image","video","audio"],"output":["text"]},"name":"Qwen3.5 Omni Plus","open_weights":false,"reasoning":false,"release_date":"2026-03-30","structured_output":false,"tool_call":false},"qwen3.6-max-preview":{"attachment":false,"cost":{"input":1.3,"output":7.8},"family":"qwen3.6","id":"qwen3.6-max-preview","last_updated":"2026-04-21","limit":{"context":245800,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3.6 Max Preview","open_weights":false,"reasoning":false,"release_date":"2026-04-20","structured_output":false,"tool_call":false},"qwen3.7-max":{"attachment":false,"cost":{"cache_read":0.25,"input":2.5,"output":7.5},"id":"qwen3.7-max","last_updated":"2026-05-21","limit":{"context":1000000,"input":1000000,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3.7 Max","open_weights":false,"reasoning":false,"release_date":"2026-05-21","structured_output":false,"tool_call":false},"qwen3.7-max:thinking":{"attachment":false,"cost":{"cache_read":0.25,"input":2.5,"output":7.5},"id":"qwen3.7-max:thinking","last_updated":"2026-05-21","limit":{"context":1000000,"input":1000000,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3.7 Max Thinking","open_weights":false,"reasoning":true,"release_date":"2026-05-21","structured_output":false,"tool_call":false},"qwen3.7-plus":{"attachment":true,"cost":{"cache_read":0.04,"input":0.4,"output":1.6},"id":"qwen3.7-plus","last_updated":"2026-06-01","limit":{"context":991808,"input":991808,"output":65536},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.7 Plus","open_weights":false,"reasoning":false,"release_date":"2026-06-01","structured_output":false,"tool_call":false},"qwen3.7-plus:thinking":{"attachment":true,"cost":{"cache_read":0.04,"input":0.4,"output":1.6},"id":"qwen3.7-plus:thinking","last_updated":"2026-06-01","limit":{"context":983616,"input":983616,"output":65536},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.7 Plus Thinking","open_weights":false,"reasoning":true,"release_date":"2026-06-01","structured_output":false,"tool_call":false},"qwq-32b":{"attachment":false,"cost":{"input":0.25599999,"output":0.30499999},"id":"qwq-32b","last_updated":"2025-04-15","limit":{"context":128000,"input":128000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen: QwQ 32B","open_weights":false,"reasoning":false,"release_date":"2025-04-15","structured_output":false,"tool_call":false},"sarvam-105b":{"attachment":false,"cost":{"cache_read":0.028,"input":0.045,"output":0.177},"id":"sarvam-105b","last_updated":"2026-05-12","limit":{"context":131072,"input":131072,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Sarvam 105B","open_weights":false,"reasoning":true,"release_date":"2026-05-12","structured_output":false,"tool_call":true},"sarvam-30b":{"attachment":false,"cost":{"cache_read":0.017,"input":0.028,"output":0.111},"id":"sarvam-30b","last_updated":"2026-05-12","limit":{"context":65536,"input":65536,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Sarvam 30B","open_weights":false,"reasoning":true,"release_date":"2026-05-12","structured_output":false,"tool_call":true},"shisa-ai/shisa-v2-llama3.3-70b":{"attachment":false,"cost":{"input":0.5,"output":0.5},"family":"llama","id":"shisa-ai/shisa-v2-llama3.3-70b","last_updated":"2025-07-26","limit":{"context":128000,"input":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Shisa V2 Llama 3.3 70B","open_weights":false,"reasoning":false,"release_date":"2025-07-26","structured_output":false,"tool_call":false},"shisa-ai/shisa-v2.1-llama3.3-70b":{"attachment":false,"cost":{"input":0.5,"output":0.5},"family":"llama","id":"shisa-ai/shisa-v2.1-llama3.3-70b","last_updated":"2024-12-06","limit":{"context":32768,"input":32768,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Shisa V2.1 Llama 3.3 70B","open_weights":false,"reasoning":false,"release_date":"2024-12-06","structured_output":false,"tool_call":false},"sonar":{"attachment":false,"cost":{"input":1.003,"output":1.003},"id":"sonar","last_updated":"2025-02-19","limit":{"context":127000,"input":127000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"Perplexity Simple","open_weights":false,"reasoning":false,"release_date":"2025-02-19","structured_output":false,"tool_call":false},"sonar-deep-research":{"attachment":false,"cost":{"input":3.4,"output":13.6},"id":"sonar-deep-research","last_updated":"2025-02-25","limit":{"context":60000,"input":60000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"Perplexity Deep Research","open_weights":false,"reasoning":false,"release_date":"2025-02-25","structured_output":false,"tool_call":false},"sonar-pro":{"attachment":false,"cost":{"input":2.992,"output":14.994},"id":"sonar-pro","last_updated":"2025-02-19","limit":{"context":200000,"input":200000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"Perplexity Pro","open_weights":false,"reasoning":false,"release_date":"2025-02-19","structured_output":false,"tool_call":false},"sonar-reasoning-pro":{"attachment":false,"cost":{"input":2.006,"output":7.9985},"id":"sonar-reasoning-pro","last_updated":"2025-02-19","limit":{"context":127000,"input":127000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"Perplexity Reasoning Pro","open_weights":false,"reasoning":true,"release_date":"2025-02-19","structured_output":false,"tool_call":false},"soob3123/GrayLine-Qwen3-8B":{"attachment":false,"cost":{"input":0.3,"output":0.3},"family":"qwen","id":"soob3123/GrayLine-Qwen3-8B","last_updated":"2025-09-25","limit":{"context":16384,"input":16384,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Grayline Qwen3 8B","open_weights":false,"reasoning":false,"release_date":"2025-09-25","structured_output":false,"tool_call":false},"soob3123/Veiled-Calla-12B":{"attachment":false,"cost":{"input":0.3,"output":0.3},"family":"llama","id":"soob3123/Veiled-Calla-12B","last_updated":"2025-04-13","limit":{"context":32768,"input":32768,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Veiled Calla 12B","open_weights":false,"reasoning":false,"release_date":"2025-04-13","structured_output":false,"tool_call":false},"soob3123/amoral-gemma3-27B-v2":{"attachment":false,"cost":{"input":0.3,"output":0.3},"family":"gemma","id":"soob3123/amoral-gemma3-27B-v2","last_updated":"2025-05-23","limit":{"context":32768,"input":32768,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Amoral Gemma3 27B v2","open_weights":false,"reasoning":false,"release_date":"2025-05-23","structured_output":false,"tool_call":false},"step-2-16k-exp":{"attachment":false,"cost":{"input":7.004,"output":19.992},"id":"step-2-16k-exp","last_updated":"2024-07-05","limit":{"context":16000,"input":16000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Step-2 16k Exp","open_weights":false,"reasoning":false,"release_date":"2024-07-05","structured_output":false,"tool_call":false},"step-2-mini":{"attachment":false,"cost":{"input":0.2006,"output":0.408},"id":"step-2-mini","last_updated":"2024-07-05","limit":{"context":8000,"input":8000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Step-2 Mini","open_weights":false,"reasoning":false,"release_date":"2024-07-05","structured_output":false,"tool_call":false},"step-3":{"attachment":true,"cost":{"input":0.2499,"output":0.6494},"id":"step-3","last_updated":"2025-07-31","limit":{"context":65536,"input":65536,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Step-3","open_weights":false,"reasoning":false,"release_date":"2025-07-31","structured_output":false,"tool_call":false},"step-r1-v-mini":{"attachment":false,"cost":{"input":2.5,"output":11},"id":"step-r1-v-mini","last_updated":"2025-04-08","limit":{"context":128000,"input":128000,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Step R1 V Mini","open_weights":false,"reasoning":false,"release_date":"2025-04-08","structured_output":false,"tool_call":false},"stepfun-ai/step-3.5-flash":{"attachment":false,"cost":{"input":0.2,"output":0.5},"family":"step","id":"stepfun-ai/step-3.5-flash","last_updated":"2026-02-02","limit":{"context":256000,"input":256000,"output":256000},"modalities":{"input":["text"],"output":["text"]},"name":"Step 3.5 Flash","open_weights":false,"reasoning":true,"release_date":"2026-02-02","structured_output":false,"tool_call":false},"stepfun-ai/step-3.5-flash-2603":{"attachment":false,"cost":{"input":0.1,"output":0.3},"id":"stepfun-ai/step-3.5-flash-2603","last_updated":"2026-04-14","limit":{"context":256000,"input":256000,"output":256000},"modalities":{"input":["text"],"output":["text"]},"name":"Step 3.5 Flash 2603","open_weights":false,"reasoning":true,"release_date":"2026-04-14","structured_output":false,"tool_call":false},"stepfun/step-3.7-flash:thinking":{"attachment":true,"cost":{"cache_read":0.04,"input":0.2,"output":1.15},"id":"stepfun/step-3.7-flash:thinking","last_updated":"2026-05-29","limit":{"context":256000,"input":256000,"output":256000},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Step 3.7 Flash Thinking","open_weights":false,"reasoning":true,"release_date":"2026-05-29","structured_output":true,"tool_call":true},"tencent/Hunyuan-MT-7B":{"attachment":false,"cost":{"input":10,"output":20},"family":"hunyuan","id":"tencent/Hunyuan-MT-7B","last_updated":"2025-09-18","limit":{"context":8192,"input":8192,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Hunyuan MT 7B","open_weights":false,"reasoning":false,"release_date":"2025-09-18","structured_output":false,"tool_call":false},"tencent/hy3-preview":{"attachment":false,"cost":{"cache_read":0.029,"input":0.066,"output":0.26},"id":"tencent/hy3-preview","last_updated":"2026-04-23","limit":{"context":262144,"input":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Tencent: Hy3 preview","open_weights":false,"reasoning":false,"release_date":"2026-04-23","structured_output":false,"tool_call":false},"undi95/remm-slerp-l2-13b":{"attachment":true,"cost":{"input":0.7989999999999999,"output":1.2069999999999999},"family":"llama","id":"undi95/remm-slerp-l2-13b","last_updated":"2025-01-01","limit":{"context":6144,"input":6144,"output":4096},"modalities":{"input":["text","pdf"],"output":["text"]},"name":"ReMM SLERP 13B","open_weights":false,"reasoning":false,"release_date":"2025-01-01","structured_output":false,"tool_call":false},"universal-summarizer":{"attachment":false,"cost":{"input":30,"output":30},"id":"universal-summarizer","last_updated":"2024-01-01","limit":{"context":32768,"input":32768,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Universal Summarizer","open_weights":false,"reasoning":false,"release_date":"2023-05-01","structured_output":false,"tool_call":false},"unsloth/gemma-3-12b-it":{"attachment":true,"cost":{"input":0.272,"output":0.272},"family":"unsloth","id":"unsloth/gemma-3-12b-it","last_updated":"2025-03-10","limit":{"context":128000,"input":128000,"output":131072},"modalities":{"input":["text","pdf"],"output":["text"]},"name":"Gemma 3 12B IT","open_weights":false,"reasoning":false,"release_date":"2025-03-10","structured_output":false,"tool_call":false},"unsloth/gemma-3-27b-it":{"attachment":true,"cost":{"input":0.2992,"output":0.2992},"family":"unsloth","id":"unsloth/gemma-3-27b-it","last_updated":"2025-03-10","limit":{"context":128000,"input":128000,"output":96000},"modalities":{"input":["text","pdf"],"output":["text"]},"name":"Gemma 3 27B IT","open_weights":false,"reasoning":false,"release_date":"2025-03-10","structured_output":false,"tool_call":false},"unsloth/gemma-3-4b-it":{"attachment":true,"cost":{"input":0.2006,"output":0.2006},"family":"unsloth","id":"unsloth/gemma-3-4b-it","last_updated":"2025-03-10","limit":{"context":128000,"input":128000,"output":8192},"modalities":{"input":["text","pdf"],"output":["text"]},"name":"Gemma 3 4B IT","open_weights":false,"reasoning":false,"release_date":"2025-03-10","structured_output":false,"tool_call":false},"upstage/solar-pro-3":{"attachment":false,"cost":{"cache_read":0.015,"input":0.15,"output":0.6},"id":"upstage/solar-pro-3","last_updated":"2026-03-03","limit":{"context":128000,"input":128000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"Solar Pro 3","open_weights":false,"reasoning":false,"release_date":"2026-03-03","structured_output":false,"tool_call":false},"v0-1.0-md":{"attachment":false,"cost":{"input":3,"output":15},"id":"v0-1.0-md","last_updated":"2025-07-04","limit":{"context":200000,"input":200000,"output":64000},"modalities":{"input":["text"],"output":["text"]},"name":"v0 1.0 MD","open_weights":false,"reasoning":false,"release_date":"2025-07-04","structured_output":false,"tool_call":false},"v0-1.5-lg":{"attachment":false,"cost":{"input":15,"output":75},"id":"v0-1.5-lg","last_updated":"2025-07-04","limit":{"context":1000000,"input":1000000,"output":64000},"modalities":{"input":["text"],"output":["text"]},"name":"v0 1.5 LG","open_weights":false,"reasoning":false,"release_date":"2025-07-04","structured_output":false,"tool_call":false},"v0-1.5-md":{"attachment":false,"cost":{"input":3,"output":15},"id":"v0-1.5-md","last_updated":"2025-07-04","limit":{"context":200000,"input":200000,"output":64000},"modalities":{"input":["text"],"output":["text"]},"name":"v0 1.5 MD","open_weights":false,"reasoning":false,"release_date":"2025-07-04","structured_output":false,"tool_call":false},"venice-uncensored":{"attachment":false,"cost":{"input":0.4,"output":0.4},"id":"venice-uncensored","last_updated":"2025-02-24","limit":{"context":128000,"input":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Venice Uncensored","open_weights":false,"reasoning":false,"release_date":"2025-02-24","structured_output":false,"tool_call":false},"venice-uncensored:web":{"attachment":false,"cost":{"input":0.4,"output":0.4},"id":"venice-uncensored:web","last_updated":"2024-05-01","limit":{"context":80000,"input":80000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Venice Uncensored Web","open_weights":false,"reasoning":false,"release_date":"2024-05-01","structured_output":false,"tool_call":false},"x-ai/grok-4.20":{"attachment":true,"cost":{"input":2,"output":6},"id":"x-ai/grok-4.20","last_updated":"2026-03-31","limit":{"context":2000000,"input":2000000,"output":131072},"modalities":{"input":["text","image"],"output":["text"]},"name":"Grok 4.20","open_weights":false,"reasoning":true,"release_date":"2026-03-31","structured_output":true,"tool_call":true},"x-ai/grok-4.20-multi-agent":{"attachment":true,"cost":{"input":2,"output":6},"id":"x-ai/grok-4.20-multi-agent","last_updated":"2026-03-31","limit":{"context":2000000,"input":2000000,"output":131072},"modalities":{"input":["text","image"],"output":["text"]},"name":"Grok 4.20 Multi-Agent","open_weights":false,"reasoning":true,"release_date":"2026-03-31","structured_output":true,"tool_call":true},"x-ai/grok-4.3":{"attachment":true,"cost":{"cache_read":0.2,"input":1.25,"output":2.5},"id":"x-ai/grok-4.3","last_updated":"2026-04-30","limit":{"context":1000000,"input":1000000,"output":1000000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Grok 4.3","open_weights":false,"reasoning":true,"release_date":"2026-04-30","structured_output":true,"tool_call":true},"x-ai/grok-build-0.1":{"attachment":true,"cost":{"cache_read":0.2,"input":1,"output":2},"id":"x-ai/grok-build-0.1","last_updated":"2026-05-20","limit":{"context":256000,"input":256000,"output":256000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Grok Build 0.1","open_weights":false,"reasoning":true,"release_date":"2026-05-20","structured_output":true,"tool_call":true},"x-ai/grok-latest":{"attachment":true,"cost":{"cache_read":0.2,"input":1.25,"output":2.5},"id":"x-ai/grok-latest","last_updated":"2026-05-03","limit":{"context":1000000,"input":1000000,"output":1000000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Grok Latest","open_weights":false,"reasoning":true,"release_date":"2026-05-03","structured_output":true,"tool_call":true},"xiaomi/mimo-v2-flash":{"attachment":false,"cost":{"input":0.102,"output":0.306},"family":"mimo","id":"xiaomi/mimo-v2-flash","last_updated":"2025-12-17","limit":{"context":256000,"input":256000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"MiMo V2 Flash","open_weights":false,"reasoning":false,"release_date":"2025-12-17","structured_output":false,"tool_call":false},"xiaomi/mimo-v2-flash-original":{"attachment":false,"cost":{"input":0.102,"output":0.306},"family":"mimo","id":"xiaomi/mimo-v2-flash-original","last_updated":"2025-12-17","limit":{"context":256000,"input":256000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"MiMo V2 Flash Original","open_weights":false,"reasoning":false,"release_date":"2025-12-17","structured_output":false,"tool_call":false},"xiaomi/mimo-v2-flash-thinking":{"attachment":false,"cost":{"input":0.102,"output":0.306},"family":"mimo","id":"xiaomi/mimo-v2-flash-thinking","last_updated":"2025-12-17","limit":{"context":256000,"input":256000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"MiMo V2 Flash (Thinking)","open_weights":false,"reasoning":false,"release_date":"2025-12-17","structured_output":false,"tool_call":false},"xiaomi/mimo-v2-flash-thinking-original":{"attachment":false,"cost":{"input":0.102,"output":0.306},"family":"mimo","id":"xiaomi/mimo-v2-flash-thinking-original","last_updated":"2025-12-17","limit":{"context":256000,"input":256000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"MiMo V2 Flash (Thinking) Original","open_weights":false,"reasoning":false,"release_date":"2025-12-17","structured_output":false,"tool_call":false},"xiaomi/mimo-v2-omni":{"attachment":true,"cost":{"cache_read":0.08,"input":0.4,"output":2},"id":"xiaomi/mimo-v2-omni","last_updated":"2026-03-19","limit":{"context":262144,"input":262144,"output":65536},"modalities":{"input":["text","image","video","audio"],"output":["text"]},"name":"MiMo V2 Omni","open_weights":false,"reasoning":false,"release_date":"2026-03-19","structured_output":false,"tool_call":true},"xiaomi/mimo-v2-pro":{"attachment":false,"cost":{"cache_read":0.2,"input":1,"output":3},"id":"xiaomi/mimo-v2-pro","last_updated":"2026-03-19","limit":{"context":1048576,"input":1048576,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiMo V2 Pro","open_weights":false,"reasoning":true,"release_date":"2026-03-19","structured_output":true,"tool_call":true},"xiaomi/mimo-v2.5":{"attachment":true,"cost":{"cache_read":0.0028,"input":0.14,"output":0.28},"id":"xiaomi/mimo-v2.5","last_updated":"2026-04-22","limit":{"context":1048576,"input":1048576,"output":131072},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"MiMo V2.5","open_weights":false,"reasoning":true,"release_date":"2026-04-22","structured_output":true,"tool_call":true},"xiaomi/mimo-v2.5-pro":{"attachment":false,"cost":{"cache_read":0.0036,"input":0.435,"output":0.87},"id":"xiaomi/mimo-v2.5-pro","last_updated":"2026-04-22","limit":{"context":1048576,"input":1048576,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiMo V2.5 Pro","open_weights":false,"reasoning":true,"release_date":"2026-04-22","structured_output":true,"tool_call":true},"yi-large":{"attachment":false,"cost":{"input":3.196,"output":3.196},"id":"yi-large","last_updated":"2024-05-13","limit":{"context":32000,"input":32000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Yi Large","open_weights":false,"reasoning":false,"release_date":"2024-05-13","structured_output":false,"tool_call":false},"yi-lightning":{"attachment":false,"cost":{"input":0.2006,"output":0.2006},"id":"yi-lightning","last_updated":"2024-10-16","limit":{"context":12000,"input":12000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Yi Lightning","open_weights":false,"reasoning":false,"release_date":"2024-10-16","structured_output":false,"tool_call":false},"yi-medium-200k":{"attachment":false,"cost":{"input":2.499,"output":2.499},"id":"yi-medium-200k","last_updated":"2024-03-01","limit":{"context":200000,"input":200000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Yi Medium 200k","open_weights":false,"reasoning":false,"release_date":"2024-03-01","structured_output":false,"tool_call":false},"z-ai/glm-4.5v":{"attachment":true,"cost":{"input":0.6,"output":1.7999999999999998},"family":"glmv","id":"z-ai/glm-4.5v","last_updated":"2025-11-22","limit":{"context":64000,"input":64000,"output":96000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GLM 4.5V","open_weights":false,"reasoning":true,"release_date":"2025-11-22","structured_output":false,"tool_call":false},"z-ai/glm-4.5v:thinking":{"attachment":true,"cost":{"input":0.6,"output":1.7999999999999998},"family":"glmv","id":"z-ai/glm-4.5v:thinking","last_updated":"2025-11-22","limit":{"context":64000,"input":64000,"output":96000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GLM 4.5V Thinking","open_weights":false,"reasoning":true,"release_date":"2025-11-22","structured_output":false,"tool_call":false},"z-ai/glm-4.6":{"attachment":false,"cost":{"input":0.4,"output":1.5},"family":"glm","id":"z-ai/glm-4.6","last_updated":"2025-09-30","limit":{"context":200000,"input":200000,"output":65535},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 4.6","open_weights":false,"reasoning":true,"release_date":"2025-09-30","structured_output":true,"tool_call":true},"z-ai/glm-4.6:thinking":{"attachment":false,"cost":{"input":0.4,"output":1.5},"family":"glm","id":"z-ai/glm-4.6:thinking","last_updated":"2025-09-29","limit":{"context":200000,"input":200000,"output":65535},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 4.6 Thinking","open_weights":false,"reasoning":true,"release_date":"2025-09-29","structured_output":true,"tool_call":true},"z-ai/glm-5-turbo":{"attachment":false,"cost":{"cache_read":0.24,"input":1.2,"output":4},"id":"z-ai/glm-5-turbo","last_updated":"2026-03-15","limit":{"context":202800,"input":202800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 5 Turbo","open_weights":false,"reasoning":false,"release_date":"2026-03-15","structured_output":true,"tool_call":true},"z-ai/glm-5v-turbo":{"attachment":true,"cost":{"cache_read":0.24,"input":1.2,"output":4},"id":"z-ai/glm-5v-turbo","last_updated":"2026-04-01","limit":{"context":202800,"input":202800,"output":131100},"modalities":{"input":["text","image"],"output":["text"]},"name":"GLM 5V Turbo","open_weights":false,"reasoning":false,"release_date":"2026-04-01","structured_output":true,"tool_call":true},"z-ai/glm-5v-turbo:thinking":{"attachment":true,"cost":{"cache_read":0.24,"input":1.2,"output":4},"id":"z-ai/glm-5v-turbo:thinking","last_updated":"2026-04-02","limit":{"context":202800,"input":202800,"output":131100},"modalities":{"input":["text","image"],"output":["text"]},"name":"GLM 5V Turbo Thinking","open_weights":false,"reasoning":true,"release_date":"2026-04-02","structured_output":true,"tool_call":true},"zai-org/GLM-4.5-Air":{"attachment":false,"cost":{"input":0.12,"output":0.8},"id":"zai-org/GLM-4.5-Air","last_updated":"2025-04-15","limit":{"context":128000,"input":128000,"output":98304},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 4.5 Air","open_weights":false,"reasoning":false,"release_date":"2025-04-15","structured_output":true,"tool_call":true},"zai-org/GLM-4.5-Air:thinking":{"attachment":false,"cost":{"input":0.12,"output":0.8},"id":"zai-org/GLM-4.5-Air:thinking","last_updated":"2024-01-01","limit":{"context":128000,"input":128000,"output":98304},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 4.5 Air (Thinking)","open_weights":false,"reasoning":true,"release_date":"2024-01-01","structured_output":true,"tool_call":true},"zai-org/GLM-4.5:thinking":{"attachment":false,"cost":{"input":0.3,"output":1.3},"id":"zai-org/GLM-4.5:thinking","last_updated":"2024-01-01","limit":{"context":128000,"input":128000,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 4.5 (Thinking)","open_weights":false,"reasoning":true,"release_date":"2024-01-01","structured_output":false,"tool_call":false},"zai-org/GLM-4.6-turbo":{"attachment":false,"cost":{"input":1,"output":3},"id":"zai-org/GLM-4.6-turbo","last_updated":"2025-10-02","limit":{"context":200000,"input":200000,"output":204800},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 4.6 Turbo","open_weights":false,"reasoning":false,"release_date":"2025-10-02","structured_output":false,"tool_call":false},"zai-org/GLM-4.6-turbo:thinking":{"attachment":false,"cost":{"input":1,"output":3},"id":"zai-org/GLM-4.6-turbo:thinking","last_updated":"2025-10-02","limit":{"context":200000,"input":200000,"output":204800},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 4.6 Turbo (Thinking)","open_weights":false,"reasoning":true,"release_date":"2025-10-02","structured_output":false,"tool_call":false},"zai-org/glm-4.5":{"attachment":false,"cost":{"input":0.3,"output":1.3},"id":"zai-org/glm-4.5","last_updated":"2025-04-15","limit":{"context":128000,"input":128000,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 4.5","open_weights":false,"reasoning":false,"release_date":"2025-04-15","structured_output":false,"tool_call":false},"zai-org/glm-4.6-original":{"attachment":false,"cost":{"input":0.35,"output":1.4},"id":"zai-org/glm-4.6-original","last_updated":"2025-12-11","limit":{"context":256000,"input":256000,"output":65535},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 4.6 Original","open_weights":false,"reasoning":true,"release_date":"2025-12-11","structured_output":false,"tool_call":false},"zai-org/glm-4.6v":{"attachment":true,"cost":{"input":0.3,"output":0.9},"id":"zai-org/glm-4.6v","last_updated":"2025-12-11","limit":{"context":128000,"input":128000,"output":24000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GLM 4.6V","open_weights":false,"reasoning":false,"release_date":"2025-12-11","structured_output":false,"tool_call":false},"zai-org/glm-4.6v-flash-original":{"attachment":true,"cost":{"input":0.1,"output":0.4},"id":"zai-org/glm-4.6v-flash-original","last_updated":"2025-12-08","limit":{"context":128000,"input":128000,"output":24000},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"GLM 4.6V Flash","open_weights":false,"reasoning":false,"release_date":"2025-12-08","structured_output":false,"tool_call":false},"zai-org/glm-4.6v-original":{"attachment":true,"cost":{"input":0.6,"output":0.9},"id":"zai-org/glm-4.6v-original","last_updated":"2025-12-08","limit":{"context":128000,"input":128000,"output":24000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GLM 4.6V Original","open_weights":false,"reasoning":false,"release_date":"2025-12-08","structured_output":false,"tool_call":false},"zai-org/glm-4.7":{"attachment":false,"cost":{"input":0.15,"output":0.8},"family":"glm","id":"zai-org/glm-4.7","last_updated":"2026-01-29","limit":{"context":200000,"input":200000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 4.7","open_weights":true,"reasoning":true,"release_date":"2026-01-29","structured_output":true,"tool_call":true},"zai-org/glm-4.7-flash":{"attachment":false,"cost":{"input":0.07,"output":0.4},"family":"glm-flash","id":"zai-org/glm-4.7-flash","last_updated":"2026-01-19","limit":{"context":200000,"input":200000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 4.7 Flash","open_weights":true,"reasoning":true,"release_date":"2026-01-19","structured_output":true,"tool_call":true},"zai-org/glm-4.7-flash-original":{"attachment":false,"cost":{"input":0.07,"output":0.4},"id":"zai-org/glm-4.7-flash-original","last_updated":"2026-01-19","limit":{"context":200000,"input":200000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 4.7 Flash Original","open_weights":false,"reasoning":true,"release_date":"2026-01-19","structured_output":true,"tool_call":true},"zai-org/glm-4.7-flash-original:thinking":{"attachment":false,"cost":{"input":0.07,"output":0.4},"id":"zai-org/glm-4.7-flash-original:thinking","last_updated":"2026-01-19","limit":{"context":200000,"input":200000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 4.7 Flash Original Thinking","open_weights":false,"reasoning":true,"release_date":"2026-01-19","structured_output":false,"tool_call":false},"zai-org/glm-4.7-flash:thinking":{"attachment":false,"cost":{"input":0.07,"output":0.4},"id":"zai-org/glm-4.7-flash:thinking","last_updated":"2026-01-19","limit":{"context":200000,"input":200000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 4.7 Flash Thinking","open_weights":false,"reasoning":true,"release_date":"2026-01-19","structured_output":false,"tool_call":false},"zai-org/glm-4.7-original":{"attachment":false,"cost":{"cache_read":0.11,"input":0.6,"output":2.2},"id":"zai-org/glm-4.7-original","last_updated":"2025-12-22","limit":{"context":200000,"input":200000,"output":65535},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 4.7 Original","open_weights":false,"reasoning":true,"release_date":"2025-12-22","structured_output":true,"tool_call":true},"zai-org/glm-4.7-original:thinking":{"attachment":false,"cost":{"cache_read":0.11,"input":0.6,"output":2.2},"id":"zai-org/glm-4.7-original:thinking","last_updated":"2025-12-22","limit":{"context":200000,"input":200000,"output":65535},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 4.7 Original Thinking","open_weights":false,"reasoning":true,"release_date":"2025-12-22","structured_output":true,"tool_call":true},"zai-org/glm-4.7:thinking":{"attachment":false,"cost":{"input":0.2,"output":0.8},"id":"zai-org/glm-4.7:thinking","last_updated":"2025-12-22","limit":{"context":200000,"input":200000,"output":65535},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 4.7 Thinking","open_weights":false,"reasoning":true,"release_date":"2025-12-22","structured_output":true,"tool_call":true},"zai-org/glm-5":{"attachment":false,"cost":{"input":0.3,"output":2.55},"family":"glm","id":"zai-org/glm-5","last_updated":"2026-02-11","limit":{"context":200000,"input":200000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 5","open_weights":true,"reasoning":true,"release_date":"2026-02-11","structured_output":true,"tool_call":true},"zai-org/glm-5-original":{"attachment":false,"cost":{"cache_read":0.2,"input":1,"output":3.2},"id":"zai-org/glm-5-original","last_updated":"2026-02-11","limit":{"context":200000,"input":200000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 5 Original","open_weights":false,"reasoning":true,"release_date":"2026-02-11","structured_output":true,"tool_call":true},"zai-org/glm-5-original:thinking":{"attachment":false,"cost":{"cache_read":0.2,"input":1,"output":3.2},"id":"zai-org/glm-5-original:thinking","last_updated":"2026-02-11","limit":{"context":200000,"input":200000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 5 Original Thinking","open_weights":false,"reasoning":true,"release_date":"2026-02-11","structured_output":true,"tool_call":true},"zai-org/glm-5.1":{"attachment":false,"cost":{"input":0.3,"output":2.55},"family":"glm","id":"zai-org/glm-5.1","last_updated":"2026-03-27","limit":{"context":200000,"input":200000,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 5.1","open_weights":true,"reasoning":true,"release_date":"2026-03-27","structured_output":true,"tool_call":true},"zai-org/glm-5.1:thinking":{"attachment":false,"cost":{"input":0.3,"output":2.55},"family":"glm","id":"zai-org/glm-5.1:thinking","last_updated":"2026-03-27","limit":{"context":200000,"input":200000,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 5.1 Thinking","open_weights":true,"reasoning":true,"release_date":"2026-03-27","structured_output":true,"tool_call":true},"zai-org/glm-5:thinking":{"attachment":false,"cost":{"input":0.3,"output":2.55},"family":"glm","id":"zai-org/glm-5:thinking","last_updated":"2026-02-11","limit":{"context":200000,"input":200000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 5 Thinking","open_weights":true,"reasoning":true,"release_date":"2026-02-11","structured_output":true,"tool_call":true},"zai-org/glm-latest":{"attachment":false,"cost":{"cache_read":0.15,"input":0.75,"output":2.6},"id":"zai-org/glm-latest","last_updated":"2026-05-03","limit":{"context":200000,"input":200000,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM Latest","open_weights":false,"reasoning":true,"release_date":"2026-05-03","structured_output":true,"tool_call":true}},"name":"NanoGPT","npm":"@ai-sdk/openai-compatible"},"nearai":{"api":"https://cloud-api.near.ai/v1","doc":"https://docs.near.ai/","env":["NEARAI_API_KEY"],"id":"nearai","models":{"Qwen/Qwen3-30B-A3B-Instruct-2507":{"attachment":false,"cost":{"input":0.15,"output":0.55},"family":"qwen","id":"Qwen/Qwen3-30B-A3B-Instruct-2507","last_updated":"2025-07-29","limit":{"context":262144,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 30B-A3B Instruct 2507","open_weights":true,"reasoning":false,"release_date":"2025-07-29","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen3-Embedding-0.6B":{"attachment":false,"cost":{"input":0.01,"output":0},"family":"text-embedding","id":"Qwen/Qwen3-Embedding-0.6B","last_updated":"2025-06-03","limit":{"context":40960,"output":1024},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Embedding 0.6B","open_weights":true,"reasoning":false,"release_date":"2025-06-03","temperature":false,"tool_call":false},"Qwen/Qwen3-Reranker-0.6B":{"attachment":false,"cost":{"input":0.01,"output":0.01},"family":"qwen","id":"Qwen/Qwen3-Reranker-0.6B","last_updated":"2025-06-03","limit":{"context":40960,"output":1024},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Reranker 0.6B","open_weights":true,"reasoning":false,"release_date":"2025-06-03","temperature":false,"tool_call":false},"Qwen/Qwen3-VL-30B-A3B-Instruct":{"attachment":true,"cost":{"input":0.15,"output":0.55},"family":"qwen","id":"Qwen/Qwen3-VL-30B-A3B-Instruct","last_updated":"2025-09-23","limit":{"context":256000,"output":32768},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen3-VL 30B-A3B Instruct","open_weights":true,"reasoning":false,"release_date":"2025-09-23","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen3.5-122B-A10B":{"attachment":true,"cost":{"input":0.4,"output":3.2},"family":"qwen","id":"Qwen/Qwen3.5-122B-A10B","last_updated":"2026-02-23","limit":{"context":131072,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3.5 122B-A10B","open_weights":true,"reasoning":true,"release_date":"2026-02-23","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen3.6-35B-A3B-FP8":{"attachment":true,"cost":{"cache_read":0.056,"input":0.17,"output":1.1},"family":"qwen","id":"Qwen/Qwen3.6-35B-A3B-FP8","last_updated":"2026-04-17","limit":{"context":262144,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen 3.6 35B A3B FP8","open_weights":true,"reasoning":true,"release_date":"2026-04-17","structured_output":true,"temperature":true,"tool_call":true},"anthropic/claude-haiku-4-5":{"attachment":true,"cost":{"cache_read":0.1,"cache_write":1.25,"input":1,"output":5},"family":"claude-haiku","id":"anthropic/claude-haiku-4-5","knowledge":"2025-02-28","last_updated":"2025-10-15","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Haiku 4.5 (latest)","open_weights":false,"reasoning":true,"release_date":"2025-10-15","temperature":true,"tool_call":true},"anthropic/claude-opus-4-6":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"input":5,"output":25},"family":"claude-opus","id":"anthropic/claude-opus-4-6","knowledge":"2025-05-31","last_updated":"2026-03-13","limit":{"context":200000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.6","open_weights":false,"reasoning":true,"release_date":"2026-02-05","temperature":true,"tool_call":true},"anthropic/claude-opus-4-7":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"input":5,"output":25},"family":"claude-opus","id":"anthropic/claude-opus-4-7","knowledge":"2026-01-31","last_updated":"2026-04-16","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.7","open_weights":false,"reasoning":true,"release_date":"2026-04-16","temperature":false,"tool_call":true},"anthropic/claude-sonnet-4-5":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"input":3,"output":15.5},"family":"claude-sonnet","id":"anthropic/claude-sonnet-4-5","knowledge":"2025-07-31","last_updated":"2025-09-29","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 4.5 (latest)","open_weights":false,"reasoning":true,"release_date":"2025-09-29","temperature":true,"tool_call":true},"anthropic/claude-sonnet-4-6":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"input":3,"output":15},"family":"claude-sonnet","id":"anthropic/claude-sonnet-4-6","knowledge":"2025-08-31","last_updated":"2026-03-13","limit":{"context":1000000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 4.6","open_weights":false,"reasoning":true,"release_date":"2026-02-17","temperature":true,"tool_call":true},"black-forest-labs/FLUX.2-klein-4B":{"attachment":false,"cost":{"input":1,"output":1},"family":"flux","id":"black-forest-labs/FLUX.2-klein-4B","last_updated":"2026-01-14","limit":{"context":128000,"output":128000},"modalities":{"input":["text","image"],"output":["image"]},"name":"FLUX.2 Klein 4B","open_weights":true,"reasoning":false,"release_date":"2026-01-14","temperature":true,"tool_call":false},"google/gemini-2.5-flash":{"attachment":true,"cost":{"cache_read":0.03,"input":0.3,"input_audio":1,"output":2.5},"family":"gemini-flash","id":"google/gemini-2.5-flash","knowledge":"2025-01","last_updated":"2025-06-05","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"Gemini 2.5 Flash","open_weights":false,"reasoning":true,"release_date":"2025-03-20","structured_output":true,"temperature":true,"tool_call":true},"google/gemini-2.5-flash-lite":{"attachment":true,"cost":{"cache_read":0.01,"input":0.1,"input_audio":0.3,"output":0.4},"family":"gemini-flash-lite","id":"google/gemini-2.5-flash-lite","knowledge":"2025-01","last_updated":"2025-06-17","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"Gemini 2.5 Flash-Lite","open_weights":false,"reasoning":true,"release_date":"2025-06-17","structured_output":true,"temperature":true,"tool_call":true},"google/gemini-2.5-pro":{"attachment":true,"cost":{"cache_read":0.125,"context_over_200k":{"cache_read":0.25,"input":2.5,"output":15},"input":1.25,"output":10,"tiers":[{"cache_read":0.25,"input":2.5,"output":15,"tier":{"size":200000,"type":"context"}}]},"family":"gemini-pro","id":"google/gemini-2.5-pro","knowledge":"2025-01","last_updated":"2025-06-05","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"Gemini 2.5 Pro","open_weights":false,"reasoning":true,"release_date":"2025-03-20","structured_output":true,"temperature":true,"tool_call":true},"google/gemini-3-pro":{"attachment":true,"cost":{"cache_read":0,"input":1.25,"output":15},"family":"gemini-pro","id":"google/gemini-3-pro","knowledge":"2025-01","last_updated":"2025-11-18","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"name":"Gemini 3 Pro Preview","open_weights":false,"reasoning":true,"release_date":"2025-11-18","structured_output":true,"temperature":true,"tool_call":true},"google/gemini-3.1-flash-lite":{"attachment":true,"cost":{"cache_read":0.025,"input":0.25,"input_audio":0.5,"output":1.5},"family":"gemini-flash-lite","id":"google/gemini-3.1-flash-lite","knowledge":"2025-01","last_updated":"2026-05-07","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"name":"Gemini 3.1 Flash Lite","open_weights":false,"reasoning":true,"release_date":"2026-05-07","structured_output":true,"temperature":true,"tool_call":true},"google/gemini-3.5-flash":{"attachment":true,"cost":{"cache_read":0.15,"input":1.5,"input_audio":1.5,"output":9},"family":"gemini-flash","id":"google/gemini-3.5-flash","knowledge":"2025-01","last_updated":"2026-05-19","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"name":"Gemini 3.5 Flash","open_weights":false,"reasoning":true,"release_date":"2026-05-19","structured_output":true,"temperature":true,"tool_call":true},"google/gemma-4-31B-it":{"attachment":true,"cost":{"cache_read":0.026,"input":0.13,"output":0.4},"family":"gemma","id":"google/gemma-4-31B-it","last_updated":"2026-04-02","limit":{"context":262144,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Gemma 4 31B IT","open_weights":true,"reasoning":true,"release_date":"2026-04-02","structured_output":true,"temperature":true,"tool_call":true},"openai/gpt-4.1":{"attachment":true,"cost":{"cache_read":0.5,"input":2,"output":8},"family":"gpt","id":"openai/gpt-4.1","knowledge":"2024-04","last_updated":"2025-04-14","limit":{"context":1047576,"output":32768},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-4.1","open_weights":false,"reasoning":false,"release_date":"2025-04-14","structured_output":true,"temperature":true,"tool_call":true},"openai/gpt-4.1-mini":{"attachment":true,"cost":{"cache_read":0.1,"input":0.4,"output":1.6},"family":"gpt-mini","id":"openai/gpt-4.1-mini","knowledge":"2024-04","last_updated":"2025-04-14","limit":{"context":1047576,"output":32768},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-4.1 mini","open_weights":false,"reasoning":false,"release_date":"2025-04-14","structured_output":true,"temperature":true,"tool_call":true},"openai/gpt-4.1-nano":{"attachment":true,"cost":{"cache_read":0.025,"input":0.1,"output":0.4},"family":"gpt-nano","id":"openai/gpt-4.1-nano","knowledge":"2024-04","last_updated":"2025-04-14","limit":{"context":1047576,"output":32768},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-4.1 nano","open_weights":false,"reasoning":false,"release_date":"2025-04-14","structured_output":true,"temperature":true,"tool_call":true},"openai/gpt-5":{"attachment":true,"cost":{"cache_read":0.125,"input":1.25,"output":10},"family":"gpt","id":"openai/gpt-5","knowledge":"2024-09-30","last_updated":"2025-08-07","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5","open_weights":false,"reasoning":true,"release_date":"2025-08-07","structured_output":true,"temperature":false,"tool_call":true},"openai/gpt-5-mini":{"attachment":true,"cost":{"cache_read":0.025,"input":0.25,"output":2},"family":"gpt-mini","id":"openai/gpt-5-mini","knowledge":"2024-05-30","last_updated":"2025-08-07","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5 Mini","open_weights":false,"reasoning":true,"release_date":"2025-08-07","structured_output":true,"temperature":false,"tool_call":true},"openai/gpt-5-nano":{"attachment":true,"cost":{"cache_read":0.005,"input":0.05,"output":0.4},"family":"gpt-nano","id":"openai/gpt-5-nano","knowledge":"2024-05-30","last_updated":"2025-08-07","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5 Nano","open_weights":false,"reasoning":true,"release_date":"2025-08-07","structured_output":true,"temperature":false,"tool_call":true},"openai/gpt-5.1":{"attachment":true,"cost":{"cache_read":0.125,"input":1.25,"output":10},"family":"gpt","id":"openai/gpt-5.1","knowledge":"2024-09-30","last_updated":"2025-11-13","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.1","open_weights":false,"reasoning":true,"release_date":"2025-11-13","structured_output":true,"temperature":false,"tool_call":true},"openai/gpt-5.2":{"attachment":true,"cost":{"cache_read":0.18,"input":1.8,"output":15.5},"family":"gpt","id":"openai/gpt-5.2","knowledge":"2025-08-31","last_updated":"2025-12-11","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.2","open_weights":false,"reasoning":true,"release_date":"2025-12-11","structured_output":true,"temperature":false,"tool_call":true},"openai/gpt-5.4":{"attachment":true,"cost":{"cache_read":0.25,"context_over_200k":{"cache_read":0.5,"input":5,"output":22.5},"input":2.5,"output":15,"tiers":[{"cache_read":0.5,"input":5,"output":22.5,"tier":{"size":272000,"type":"context"}}]},"family":"gpt","id":"openai/gpt-5.4","knowledge":"2025-08-31","last_updated":"2026-03-05","limit":{"context":1050000,"input":922000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5.4","open_weights":false,"reasoning":true,"release_date":"2026-03-05","structured_output":true,"temperature":false,"tool_call":true},"openai/gpt-5.4-mini":{"attachment":true,"cost":{"cache_read":0.075,"input":0.75,"output":4.5},"family":"gpt-mini","id":"openai/gpt-5.4-mini","knowledge":"2025-08-31","last_updated":"2026-03-17","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.4 mini","open_weights":false,"reasoning":true,"release_date":"2026-03-17","structured_output":true,"temperature":false,"tool_call":true},"openai/gpt-5.4-nano":{"attachment":true,"cost":{"cache_read":0.02,"input":0.2,"output":1.25},"family":"gpt-nano","id":"openai/gpt-5.4-nano","knowledge":"2025-08-31","last_updated":"2026-03-17","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.4 nano","open_weights":false,"reasoning":true,"release_date":"2026-03-17","structured_output":true,"temperature":false,"tool_call":true},"openai/gpt-5.5":{"attachment":true,"cost":{"cache_read":0.5,"context_over_200k":{"cache_read":1,"input":10,"output":45},"input":5,"output":30,"tiers":[{"cache_read":1,"input":10,"output":45,"tier":{"size":272000,"type":"context"}}]},"family":"gpt","id":"openai/gpt-5.5","knowledge":"2025-12-01","last_updated":"2026-04-23","limit":{"context":1050000,"input":922000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5.5","open_weights":false,"reasoning":true,"release_date":"2026-04-23","structured_output":true,"temperature":false,"tool_call":true},"openai/gpt-oss-120b":{"attachment":false,"cost":{"input":0.15,"output":0.55},"family":"gpt-oss","id":"openai/gpt-oss-120b","last_updated":"2025-08-05","limit":{"context":131000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"GPT-OSS 120B","open_weights":true,"reasoning":true,"release_date":"2025-08-05","structured_output":true,"temperature":true,"tool_call":true},"openai/o3":{"attachment":true,"cost":{"cache_read":0.5,"input":2,"output":8},"family":"o","id":"openai/o3","knowledge":"2024-05","last_updated":"2025-04-16","limit":{"context":200000,"output":100000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"o3","open_weights":false,"reasoning":true,"release_date":"2025-04-16","structured_output":true,"temperature":false,"tool_call":true},"openai/o3-mini":{"attachment":false,"cost":{"cache_read":0.55,"input":1.1,"output":4.4},"family":"o-mini","id":"openai/o3-mini","knowledge":"2024-05","last_updated":"2025-01-29","limit":{"context":200000,"output":100000},"modalities":{"input":["text"],"output":["text"]},"name":"o3-mini","open_weights":false,"reasoning":true,"release_date":"2024-12-20","structured_output":true,"temperature":false,"tool_call":true},"openai/o4-mini":{"attachment":true,"cost":{"cache_read":0.275,"input":1.1,"output":4.4},"family":"o-mini","id":"openai/o4-mini","knowledge":"2024-05","last_updated":"2025-04-16","limit":{"context":200000,"output":100000},"modalities":{"input":["text","image"],"output":["text"]},"name":"o4-mini","open_weights":false,"reasoning":true,"release_date":"2025-04-16","structured_output":true,"temperature":false,"tool_call":true},"openai/whisper-large-v3":{"attachment":false,"cost":{"input":0.01,"output":0},"family":"whisper","id":"openai/whisper-large-v3","last_updated":"2023-11-06","limit":{"context":448,"output":448},"modalities":{"input":["audio"],"output":["text"]},"name":"Whisper Large v3","open_weights":true,"reasoning":false,"release_date":"2023-11-06","temperature":false,"tool_call":false},"zai-org/GLM-5.1-FP8":{"attachment":false,"cost":{"input":0.85,"output":3.3},"family":"glm","id":"zai-org/GLM-5.1-FP8","interleaved":{"field":"reasoning_content"},"last_updated":"2026-03-27","limit":{"context":202752,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-5.1 FP8","open_weights":true,"reasoning":true,"release_date":"2026-03-27","structured_output":true,"temperature":true,"tool_call":true}},"name":"NEAR AI Cloud","npm":"@ai-sdk/openai-compatible"},"nebius":{"api":"https://api.tokenfactory.nebius.com/v1","doc":"https://docs.tokenfactory.nebius.com/","env":["NEBIUS_API_KEY"],"id":"nebius","models":{"MiniMaxAI/MiniMax-M2.5":{"attachment":false,"cost":{"cache_read":0.03,"cache_write":0.375,"input":0.3,"output":1.2},"id":"MiniMaxAI/MiniMax-M2.5","knowledge":"2025-01","last_updated":"2026-05-07","limit":{"context":196608,"input":190000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2.5","open_weights":true,"reasoning":true,"release_date":"2025-01-20","structured_output":true,"temperature":true,"tool_call":true},"MiniMaxAI/MiniMax-M2.5-fast":{"attachment":false,"cost":{"cache_read":0.03,"cache_write":0.375,"input":0.3,"output":1.2},"id":"MiniMaxAI/MiniMax-M2.5-fast","knowledge":"2025-01","last_updated":"2026-05-07","limit":{"context":8000,"input":7000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2.5-fast","open_weights":true,"reasoning":true,"release_date":"2025-01-20","structured_output":true,"temperature":true,"tool_call":true},"NousResearch/Hermes-4-405B":{"attachment":false,"cost":{"cache_read":0.1,"cache_write":1.25,"input":1,"output":3,"reasoning":3},"id":"NousResearch/Hermes-4-405B","interleaved":{"field":"reasoning_content"},"knowledge":"2025-11","last_updated":"2026-02-04","limit":{"context":128000,"input":120000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Hermes-4-405B","open_weights":true,"reasoning":true,"release_date":"2026-01-30","structured_output":true,"temperature":true,"tool_call":true},"NousResearch/Hermes-4-70B":{"attachment":false,"cost":{"cache_read":0.013,"cache_write":0.16,"input":0.13,"output":0.4,"reasoning":0.4},"id":"NousResearch/Hermes-4-70B","interleaved":{"field":"reasoning_content"},"knowledge":"2025-11","last_updated":"2026-02-04","limit":{"context":128000,"input":120000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Hermes-4-70B","open_weights":true,"reasoning":true,"release_date":"2026-01-30","structured_output":true,"temperature":true,"tool_call":true},"PrimeIntellect/INTELLECT-3":{"attachment":false,"cost":{"cache_read":0.02,"cache_write":0.25,"input":0.2,"output":1.1},"id":"PrimeIntellect/INTELLECT-3","knowledge":"2025-10","last_updated":"2026-02-04","limit":{"context":128000,"input":120000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"INTELLECT-3","open_weights":true,"reasoning":false,"release_date":"2026-01-25","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen2.5-VL-72B-Instruct":{"attachment":true,"cost":{"cache_read":0.025,"cache_write":0.31,"input":0.25,"output":0.75},"id":"Qwen/Qwen2.5-VL-72B-Instruct","knowledge":"2024-12","last_updated":"2026-02-04","limit":{"context":128000,"input":120000,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen2.5-VL-72B-Instruct","open_weights":true,"reasoning":false,"release_date":"2025-01-20","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen3-235B-A22B-Instruct-2507":{"attachment":false,"cost":{"input":0.2,"output":0.6},"family":"qwen","id":"Qwen/Qwen3-235B-A22B-Instruct-2507","knowledge":"2025-07","last_updated":"2025-10-04","limit":{"context":262144,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 235B A22B Instruct 2507","open_weights":false,"reasoning":true,"release_date":"2025-07-25","temperature":true,"tool_call":true},"Qwen/Qwen3-235B-A22B-Thinking-2507-fast":{"attachment":false,"cost":{"cache_read":0.05,"cache_write":0.625,"input":0.5,"output":2},"id":"Qwen/Qwen3-235B-A22B-Thinking-2507-fast","knowledge":"2025-07","last_updated":"2026-05-07","limit":{"context":8000,"input":7000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3-235B-A22B-Thinking-2507-fast","open_weights":true,"reasoning":true,"release_date":"2025-07-25","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen3-30B-A3B-Instruct-2507":{"attachment":false,"cost":{"cache_read":0.01,"cache_write":0.125,"input":0.1,"output":0.3},"id":"Qwen/Qwen3-30B-A3B-Instruct-2507","knowledge":"2025-12","last_updated":"2026-02-04","limit":{"context":128000,"input":120000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3-30B-A3B-Instruct-2507","open_weights":true,"reasoning":false,"release_date":"2026-01-28","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen3-32B":{"attachment":false,"cost":{"cache_read":0.01,"cache_write":0.125,"input":0.1,"output":0.3},"id":"Qwen/Qwen3-32B","knowledge":"2025-12","last_updated":"2026-02-04","limit":{"context":128000,"input":120000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3-32B","open_weights":true,"reasoning":false,"release_date":"2026-01-28","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen3-Embedding-8B":{"attachment":false,"cost":{"input":0.01,"output":0},"family":"text-embedding","id":"Qwen/Qwen3-Embedding-8B","knowledge":"2025-10","last_updated":"2026-02-04","limit":{"context":32768,"input":32768,"output":0},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3-Embedding-8B","open_weights":true,"reasoning":false,"release_date":"2026-01-10","structured_output":false,"temperature":false,"tool_call":false},"Qwen/Qwen3-Next-80B-A3B-Thinking":{"attachment":false,"cost":{"cache_read":0.015,"cache_write":0.18,"input":0.15,"output":1.2,"reasoning":1.2},"id":"Qwen/Qwen3-Next-80B-A3B-Thinking","interleaved":{"field":"reasoning_content"},"knowledge":"2025-12","last_updated":"2026-02-04","limit":{"context":128000,"input":120000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3-Next-80B-A3B-Thinking","open_weights":true,"reasoning":true,"release_date":"2026-01-28","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen3-Next-80B-A3B-Thinking-fast":{"attachment":false,"cost":{"cache_read":0.015,"cache_write":0.1875,"input":0.15,"output":1.2},"id":"Qwen/Qwen3-Next-80B-A3B-Thinking-fast","knowledge":"2025-07","last_updated":"2026-05-07","limit":{"context":8000,"input":7000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3-Next-80B-A3B-Thinking-fast","open_weights":true,"reasoning":true,"release_date":"2025-07-25","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen3.5-397B-A17B":{"attachment":false,"cost":{"cache_read":0.06,"cache_write":0.75,"input":0.6,"output":3.6},"id":"Qwen/Qwen3.5-397B-A17B","knowledge":"2025-07","last_updated":"2026-05-07","limit":{"context":262144,"input":250000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3.5-397B-A17B","open_weights":true,"reasoning":true,"release_date":"2025-07-15","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen3.5-397B-A17B-fast":{"attachment":false,"cost":{"cache_read":0.06,"cache_write":0.75,"input":0.6,"output":3.6},"id":"Qwen/Qwen3.5-397B-A17B-fast","knowledge":"2025-07","last_updated":"2026-05-07","limit":{"context":8000,"input":7000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3.5-397B-A17B-fast","open_weights":true,"reasoning":true,"release_date":"2025-07-15","structured_output":true,"temperature":true,"tool_call":true},"deepseek-ai/DeepSeek-V3.2":{"attachment":false,"cost":{"cache_read":0.03,"cache_write":0.375,"input":0.3,"output":0.45,"reasoning":0.45},"id":"deepseek-ai/DeepSeek-V3.2","interleaved":{"field":"reasoning_content"},"knowledge":"2025-11","last_updated":"2026-02-04","limit":{"context":163000,"input":160000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek-V3.2","open_weights":true,"reasoning":true,"release_date":"2026-01-20","structured_output":true,"temperature":true,"tool_call":true},"deepseek-ai/DeepSeek-V3.2-fast":{"attachment":false,"cost":{"cache_read":0.04,"cache_write":0.5,"input":0.4,"output":2},"id":"deepseek-ai/DeepSeek-V3.2-fast","knowledge":"2025-01","last_updated":"2026-05-07","limit":{"context":8000,"input":7000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek-V3.2-fast","open_weights":true,"reasoning":true,"release_date":"2025-01-27","structured_output":true,"temperature":true,"tool_call":true},"deepseek-ai/DeepSeek-V4-Pro":{"attachment":false,"cost":{"cache_read":0.15,"input":1.75,"output":3.5},"family":"deepseek-thinking","id":"deepseek-ai/DeepSeek-V4-Pro","interleaved":{"field":"reasoning_content"},"knowledge":"2025-05","last_updated":"2026-04-24","limit":{"context":1000000,"output":384000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V4 Pro","open_weights":true,"reasoning":true,"release_date":"2026-04-24","structured_output":true,"temperature":true,"tool_call":true},"google/gemma-2-2b-it":{"attachment":false,"cost":{"cache_read":0.002,"cache_write":0.025,"input":0.02,"output":0.06},"id":"google/gemma-2-2b-it","knowledge":"2024-06","last_updated":"2026-02-04","limit":{"context":8192,"input":8000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Gemma-2-2b-it","open_weights":true,"reasoning":false,"release_date":"2024-07-31","structured_output":false,"temperature":true,"tool_call":false},"google/gemma-3-27b-it":{"attachment":true,"cost":{"cache_read":0.01,"cache_write":0.125,"input":0.1,"output":0.3},"id":"google/gemma-3-27b-it","knowledge":"2025-10","last_updated":"2026-02-04","limit":{"context":110000,"input":100000,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Gemma-3-27b-it","open_weights":true,"reasoning":false,"release_date":"2026-01-20","structured_output":true,"temperature":true,"tool_call":true},"meta-llama/Llama-3.3-70B-Instruct":{"attachment":false,"cost":{"cache_read":0.013,"cache_write":0.16,"input":0.13,"output":0.4},"id":"meta-llama/Llama-3.3-70B-Instruct","knowledge":"2025-08","last_updated":"2026-02-04","limit":{"context":128000,"input":120000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Llama-3.3-70B-Instruct","open_weights":true,"reasoning":false,"release_date":"2025-12-05","structured_output":true,"temperature":true,"tool_call":true},"meta-llama/Meta-Llama-3.1-8B-Instruct":{"attachment":false,"cost":{"cache_read":0.002,"cache_write":0.025,"input":0.02,"output":0.06},"id":"meta-llama/Meta-Llama-3.1-8B-Instruct","knowledge":"2024-12","last_updated":"2026-02-04","limit":{"context":128000,"input":120000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Meta-Llama-3.1-8B-Instruct","open_weights":true,"reasoning":false,"release_date":"2024-07-23","structured_output":true,"temperature":true,"tool_call":true},"moonshotai/Kimi-K2.5":{"attachment":true,"cost":{"cache_read":0.05,"cache_write":0.625,"input":0.5,"output":2.5,"reasoning":2.5},"family":"kimi","id":"moonshotai/Kimi-K2.5","interleaved":{"field":"reasoning_content"},"knowledge":"2025-06","last_updated":"2026-02-04","limit":{"context":256000,"input":256000,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Kimi-K2.5","open_weights":true,"reasoning":true,"release_date":"2025-12-15","structured_output":true,"temperature":true,"tool_call":true},"moonshotai/Kimi-K2.5-fast":{"attachment":true,"cost":{"cache_read":0.05,"cache_write":0.625,"input":0.5,"output":2.5},"family":"kimi","id":"moonshotai/Kimi-K2.5-fast","interleaved":{"field":"reasoning_content"},"knowledge":"2025-06","last_updated":"2026-02-04","limit":{"context":256000,"input":256000,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Kimi-K2.5-fast","open_weights":true,"reasoning":true,"release_date":"2025-12-15","structured_output":true,"temperature":true,"tool_call":true},"nvidia/Llama-3_1-Nemotron-Ultra-253B-v1":{"attachment":false,"cost":{"cache_read":0.06,"cache_write":0.75,"input":0.6,"output":1.8},"id":"nvidia/Llama-3_1-Nemotron-Ultra-253B-v1","knowledge":"2024-12","last_updated":"2026-02-04","limit":{"context":128000,"input":120000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Llama-3.1-Nemotron-Ultra-253B-v1","open_weights":true,"reasoning":false,"release_date":"2025-01-15","structured_output":true,"temperature":true,"tool_call":true},"nvidia/NVIDIA-Nemotron-3-Nano-30B-A3B":{"attachment":false,"cost":{"cache_read":0.006,"cache_write":0.075,"input":0.06,"output":0.24},"id":"nvidia/NVIDIA-Nemotron-3-Nano-30B-A3B","knowledge":"2025-05","last_updated":"2026-02-04","limit":{"context":32000,"input":30000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Nemotron-3-Nano-30B-A3B","open_weights":true,"reasoning":false,"release_date":"2025-08-10","structured_output":true,"temperature":true,"tool_call":true},"nvidia/Nemotron-3-Nano-Omni":{"attachment":false,"cost":{"cache_read":0.006,"cache_write":0.075,"input":0.06,"output":0.24},"id":"nvidia/Nemotron-3-Nano-Omni","knowledge":"2025-01","last_updated":"2026-05-07","limit":{"context":65536,"input":60000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Nemotron-3-Nano-Omni","open_weights":true,"reasoning":true,"release_date":"2025-01-20","structured_output":true,"temperature":true,"tool_call":true},"nvidia/nemotron-3-super-120b-a12b":{"attachment":false,"cost":{"input":0.3,"output":0.9},"id":"nvidia/nemotron-3-super-120b-a12b","knowledge":"2026-02","last_updated":"2026-03-12","limit":{"context":256000,"input":256000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Nemotron-3-Super-120B-A12B","open_weights":true,"reasoning":true,"release_date":"2026-03-11","structured_output":true,"temperature":true,"tool_call":true},"openai/gpt-oss-120b":{"attachment":false,"cost":{"cache_read":0.015,"cache_write":0.18,"input":0.15,"output":0.6,"reasoning":0.6},"id":"openai/gpt-oss-120b","interleaved":{"field":"reasoning_content"},"knowledge":"2025-09","last_updated":"2026-02-04","limit":{"context":128000,"input":124000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"gpt-oss-120b","open_weights":true,"reasoning":true,"release_date":"2026-01-10","structured_output":true,"temperature":true,"tool_call":true},"openai/gpt-oss-120b-fast":{"attachment":false,"cost":{"cache_read":0.01,"cache_write":0.125,"input":0.1,"output":0.5},"id":"openai/gpt-oss-120b-fast","knowledge":"2025-06","last_updated":"2026-05-07","limit":{"context":8000,"input":7000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"gpt-oss-120b-fast","open_weights":true,"reasoning":true,"release_date":"2025-06-10","structured_output":true,"temperature":true,"tool_call":true},"zai-org/GLM-5":{"attachment":false,"cost":{"cache_read":0.1,"cache_write":1,"input":1,"output":3.2},"id":"zai-org/GLM-5","interleaved":{"field":"reasoning_content"},"knowledge":"2026-01","last_updated":"2026-03-10","limit":{"context":200000,"input":200000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-5","open_weights":false,"reasoning":true,"release_date":"2026-03-01","structured_output":true,"temperature":true,"tool_call":true}},"name":"Nebius Token Factory","npm":"@ai-sdk/openai-compatible"},"neuralwatt":{"api":"https://api.neuralwatt.com/v1","doc":"https://portal.neuralwatt.com/docs","env":["NEURALWATT_API_KEY"],"id":"neuralwatt","models":{"MiniMaxAI/MiniMax-M2.5":{"attachment":false,"cost":{"input":0.35,"output":1.38},"family":"minimax","id":"MiniMaxAI/MiniMax-M2.5","interleaved":{"field":"reasoning_content"},"last_updated":"2026-02-12","limit":{"context":196592,"output":196592},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax M2.5","open_weights":true,"reasoning":true,"release_date":"2026-02-12","temperature":true,"tool_call":true},"Qwen/Qwen3.5-397B-A17B-FP8":{"attachment":false,"cost":{"input":0.69,"output":4.14},"family":"qwen","id":"Qwen/Qwen3.5-397B-A17B-FP8","interleaved":{"field":"reasoning_content"},"last_updated":"2026-02-01","limit":{"context":262128,"output":262128},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3.5 397B A17B FP8","open_weights":true,"reasoning":true,"release_date":"2026-02-01","temperature":true,"tool_call":true},"Qwen/Qwen3.6-35B-A3B":{"attachment":true,"cost":{"input":0.29,"output":1.15},"family":"qwen3.6","id":"Qwen/Qwen3.6-35B-A3B","interleaved":{"field":"reasoning_content"},"last_updated":"2026-04-01","limit":{"context":131056,"output":131056},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen3.6 35B A3B","open_weights":true,"reasoning":true,"release_date":"2026-04-01","temperature":true,"tool_call":true},"glm-5-fast":{"attachment":false,"cost":{"input":1.1,"output":3.6},"family":"glm","id":"glm-5-fast","last_updated":"2026-04-07","limit":{"context":202736,"output":202736},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 5 Fast","open_weights":true,"reasoning":false,"release_date":"2026-04-07","temperature":true,"tool_call":true},"glm-5.1-fast":{"attachment":false,"cost":{"input":1.1,"output":3.6},"family":"glm","id":"glm-5.1-fast","last_updated":"2026-04-07","limit":{"context":202736,"output":202736},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 5.1 Fast","open_weights":true,"reasoning":false,"release_date":"2026-04-07","temperature":true,"tool_call":true},"kimi-k2.5-fast":{"attachment":true,"cost":{"input":0.52,"output":2.59},"family":"kimi","id":"kimi-k2.5-fast","last_updated":"2026-01-27","limit":{"context":262128,"output":262128},"modalities":{"input":["text","image"],"output":["text"]},"name":"Kimi K2.5 Fast","open_weights":true,"reasoning":false,"release_date":"2026-01-27","temperature":true,"tool_call":true},"kimi-k2.6-fast":{"attachment":true,"cost":{"input":0.69,"output":3.22},"family":"kimi","id":"kimi-k2.6-fast","last_updated":"2026-04-21","limit":{"context":262128,"output":262128},"modalities":{"input":["text","image"],"output":["text"]},"name":"Kimi K2.6 Fast","open_weights":true,"reasoning":false,"release_date":"2026-04-21","temperature":true,"tool_call":true},"mistralai/Devstral-Small-2-24B-Instruct-2512":{"attachment":true,"cost":{"input":0.12,"output":0.35},"family":"devstral","id":"mistralai/Devstral-Small-2-24B-Instruct-2512","last_updated":"2025-12-09","limit":{"context":262128,"output":262128},"modalities":{"input":["text","image"],"output":["text"]},"name":"Devstral Small 2 24B Instruct 2512","open_weights":true,"reasoning":false,"release_date":"2025-12-09","temperature":true,"tool_call":true},"moonshotai/Kimi-K2.5":{"attachment":true,"cost":{"input":0.52,"output":2.59},"family":"kimi","id":"moonshotai/Kimi-K2.5","interleaved":{"field":"reasoning_content"},"last_updated":"2026-01-27","limit":{"context":262128,"output":262128},"modalities":{"input":["text","image"],"output":["text"]},"name":"Kimi K2.5","open_weights":true,"reasoning":true,"release_date":"2026-01-27","temperature":true,"tool_call":true},"moonshotai/Kimi-K2.6":{"attachment":true,"cost":{"input":0.69,"output":3.22},"family":"kimi","id":"moonshotai/Kimi-K2.6","interleaved":{"field":"reasoning_content"},"last_updated":"2026-04-21","limit":{"context":262128,"output":262128},"modalities":{"input":["text","image"],"output":["text"]},"name":"Kimi K2.6","open_weights":true,"reasoning":true,"release_date":"2026-04-21","temperature":true,"tool_call":true},"openai/gpt-oss-20b":{"attachment":false,"cost":{"input":0.03,"output":0.16},"family":"gpt-oss","id":"openai/gpt-oss-20b","last_updated":"2025-08-05","limit":{"context":16368,"output":16368},"modalities":{"input":["text"],"output":["text"]},"name":"GPT OSS 20B","open_weights":true,"reasoning":true,"release_date":"2025-08-05","temperature":true,"tool_call":true},"qwen3.5-397b-fast":{"attachment":false,"cost":{"input":0.69,"output":4.14},"family":"qwen","id":"qwen3.5-397b-fast","last_updated":"2026-02-01","limit":{"context":262128,"output":262128},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3.5 397B Fast","open_weights":true,"reasoning":false,"release_date":"2026-02-01","temperature":true,"tool_call":true},"qwen3.6-35b-fast":{"attachment":true,"cost":{"input":0.29,"output":1.15},"family":"qwen3.6","id":"qwen3.6-35b-fast","last_updated":"2026-04-01","limit":{"context":131056,"output":131056},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen3.6 35B Fast","open_weights":true,"reasoning":false,"release_date":"2026-04-01","temperature":true,"tool_call":true},"zai-org/GLM-5.1-FP8":{"attachment":false,"cost":{"input":1.1,"output":3.6},"family":"glm","id":"zai-org/GLM-5.1-FP8","interleaved":{"field":"reasoning_content"},"last_updated":"2026-04-07","limit":{"context":202736,"output":202736},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 5.1 FP8","open_weights":true,"reasoning":true,"release_date":"2026-04-07","temperature":true,"tool_call":true}},"name":"Neuralwatt","npm":"@ai-sdk/openai-compatible"},"nova":{"api":"https://api.nova.amazon.com/v1","doc":"https://nova.amazon.com/dev/documentation","env":["NOVA_API_KEY"],"id":"nova","models":{"nova-2-lite-v1":{"attachment":true,"cost":{"input":0,"output":0,"reasoning":0},"family":"nova-lite","id":"nova-2-lite-v1","last_updated":"2025-12-01","limit":{"context":1000000,"output":64000},"modalities":{"input":["text","image","video","pdf"],"output":["text"]},"name":"Nova 2 Lite","open_weights":false,"reasoning":true,"release_date":"2025-12-01","temperature":true,"tool_call":true},"nova-2-pro-v1":{"attachment":true,"cost":{"input":0,"output":0,"reasoning":0},"family":"nova-pro","id":"nova-2-pro-v1","last_updated":"2026-01-03","limit":{"context":1000000,"output":64000},"modalities":{"input":["text","image","video","pdf"],"output":["text"]},"name":"Nova 2 Pro","open_weights":false,"reasoning":true,"release_date":"2025-12-03","temperature":true,"tool_call":true}},"name":"Nova","npm":"@ai-sdk/openai-compatible"},"novita-ai":{"api":"https://api.novita.ai/openai","doc":"https://novita.ai/docs/guides/introduction","env":["NOVITA_API_KEY"],"id":"novita-ai","models":{"baichuan/baichuan-m2-32b":{"attachment":false,"cost":{"input":0.07,"output":0.07},"family":"baichuan","id":"baichuan/baichuan-m2-32b","knowledge":"2024-12","last_updated":"2025-08-13","limit":{"context":131072,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"baichuan-m2-32b","open_weights":true,"reasoning":false,"release_date":"2025-08-13","structured_output":false,"temperature":true,"tool_call":false},"baidu/ernie-4.5-21B-a3b":{"attachment":false,"cost":{"input":0.07,"output":0.28},"family":"ernie","id":"baidu/ernie-4.5-21B-a3b","knowledge":"2025-03","last_updated":"2025-06-30","limit":{"context":120000,"output":8000},"modalities":{"input":["text"],"output":["text"]},"name":"ERNIE 4.5 21B A3B","open_weights":true,"reasoning":false,"release_date":"2025-06-30","temperature":true,"tool_call":true},"baidu/ernie-4.5-21B-a3b-thinking":{"attachment":false,"cost":{"input":0.07,"output":0.28},"family":"ernie","id":"baidu/ernie-4.5-21B-a3b-thinking","knowledge":"2025-03","last_updated":"2025-09-19","limit":{"context":131072,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"ERNIE-4.5-21B-A3B-Thinking","open_weights":true,"reasoning":true,"release_date":"2025-09-19","temperature":true,"tool_call":false},"baidu/ernie-4.5-300b-a47b-paddle":{"attachment":false,"cost":{"input":0.28,"output":1.1},"id":"baidu/ernie-4.5-300b-a47b-paddle","last_updated":"2025-06-30","limit":{"context":123000,"output":12000},"modalities":{"input":["text"],"output":["text"]},"name":"ERNIE 4.5 300B A47B","open_weights":true,"reasoning":false,"release_date":"2025-06-30","structured_output":true,"temperature":true,"tool_call":false},"baidu/ernie-4.5-vl-28b-a3b":{"attachment":true,"cost":{"input":1.4,"output":5.6},"id":"baidu/ernie-4.5-vl-28b-a3b","last_updated":"2025-06-30","limit":{"context":30000,"output":8000},"modalities":{"input":["text","image"],"output":["text"]},"name":"ERNIE 4.5 VL 28B A3B","open_weights":true,"reasoning":true,"release_date":"2025-06-30","temperature":true,"tool_call":true},"baidu/ernie-4.5-vl-28b-a3b-thinking":{"attachment":true,"cost":{"input":0.39,"output":0.39},"id":"baidu/ernie-4.5-vl-28b-a3b-thinking","last_updated":"2025-11-26","limit":{"context":131072,"output":65536},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"ERNIE-4.5-VL-28B-A3B-Thinking","open_weights":true,"reasoning":true,"release_date":"2025-11-26","structured_output":true,"temperature":true,"tool_call":true},"baidu/ernie-4.5-vl-424b-a47b":{"attachment":true,"cost":{"input":0.42,"output":1.25},"id":"baidu/ernie-4.5-vl-424b-a47b","last_updated":"2025-06-30","limit":{"context":123000,"output":16000},"modalities":{"input":["text","image"],"output":["text"]},"name":"ERNIE 4.5 VL 424B A47B","open_weights":true,"reasoning":true,"release_date":"2025-06-30","temperature":true,"tool_call":false},"deepseek/deepseek-ocr":{"attachment":true,"cost":{"input":0.03,"output":0.03},"id":"deepseek/deepseek-ocr","last_updated":"2025-10-24","limit":{"context":8192,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"DeepSeek-OCR","open_weights":true,"reasoning":false,"release_date":"2025-10-24","structured_output":true,"temperature":true,"tool_call":false},"deepseek/deepseek-ocr-2":{"attachment":true,"cost":{"input":0.03,"output":0.03},"id":"deepseek/deepseek-ocr-2","last_updated":"2026-01-27","limit":{"context":8192,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"deepseek/deepseek-ocr-2","open_weights":true,"reasoning":false,"release_date":"2026-01-27","tool_call":false},"deepseek/deepseek-prover-v2-671b":{"attachment":false,"cost":{"input":0.7,"output":2.5},"id":"deepseek/deepseek-prover-v2-671b","last_updated":"2025-04-30","limit":{"context":160000,"output":160000},"modalities":{"input":["text"],"output":["text"]},"name":"Deepseek Prover V2 671B","open_weights":true,"reasoning":false,"release_date":"2025-04-30","temperature":true,"tool_call":false},"deepseek/deepseek-r1-0528":{"attachment":false,"cost":{"cache_read":0.35,"input":0.7,"output":2.5},"family":"deepseek-thinking","id":"deepseek/deepseek-r1-0528","knowledge":"2024-07","last_updated":"2025-05-28","limit":{"context":163840,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek R1 0528","open_weights":true,"reasoning":true,"release_date":"2025-05-28","structured_output":true,"temperature":true,"tool_call":true},"deepseek/deepseek-r1-0528-qwen3-8b":{"attachment":false,"cost":{"input":0.06,"output":0.09},"id":"deepseek/deepseek-r1-0528-qwen3-8b","last_updated":"2025-05-29","limit":{"context":128000,"output":32000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek R1 0528 Qwen3 8B","open_weights":true,"reasoning":true,"release_date":"2025-05-29","temperature":true,"tool_call":false},"deepseek/deepseek-r1-distill-llama-70b":{"attachment":false,"cost":{"input":0.8,"output":0.8},"family":"deepseek-thinking","id":"deepseek/deepseek-r1-distill-llama-70b","last_updated":"2025-01-27","limit":{"context":8192,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek R1 Distill LLama 70B","open_weights":true,"reasoning":true,"release_date":"2025-01-27","structured_output":true,"temperature":true,"tool_call":false},"deepseek/deepseek-r1-distill-qwen-14b":{"attachment":false,"cost":{"input":0.15,"output":0.15},"family":"deepseek-thinking","id":"deepseek/deepseek-r1-distill-qwen-14b","last_updated":"2025-01-20","limit":{"context":32768,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek R1 Distill Qwen 14B","open_weights":true,"reasoning":false,"release_date":"2025-01-20","temperature":true,"tool_call":false},"deepseek/deepseek-r1-distill-qwen-32b":{"attachment":false,"cost":{"input":0.3,"output":0.3},"family":"deepseek-thinking","id":"deepseek/deepseek-r1-distill-qwen-32b","last_updated":"2025-01-20","limit":{"context":64000,"output":32000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek R1 Distill Qwen 32B","open_weights":true,"reasoning":false,"release_date":"2025-01-20","temperature":true,"tool_call":false},"deepseek/deepseek-r1-turbo":{"attachment":false,"cost":{"input":0.7,"output":2.5},"id":"deepseek/deepseek-r1-turbo","last_updated":"2025-03-05","limit":{"context":64000,"output":16000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek R1 (Turbo)\t","open_weights":true,"reasoning":true,"release_date":"2025-03-05","temperature":true,"tool_call":true},"deepseek/deepseek-v3-0324":{"attachment":false,"cost":{"cache_read":0.135,"input":0.27,"output":1.12},"family":"deepseek","id":"deepseek/deepseek-v3-0324","knowledge":"2024-07","last_updated":"2025-03-25","limit":{"context":163840,"output":163840},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V3 0324","open_weights":true,"reasoning":false,"release_date":"2025-03-25","structured_output":true,"temperature":true,"tool_call":true},"deepseek/deepseek-v3-turbo":{"attachment":false,"cost":{"input":0.4,"output":1.3},"id":"deepseek/deepseek-v3-turbo","last_updated":"2025-03-05","limit":{"context":64000,"output":16000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V3 (Turbo)\t","open_weights":true,"reasoning":false,"release_date":"2025-03-05","temperature":true,"tool_call":true},"deepseek/deepseek-v3.1":{"attachment":false,"cost":{"cache_read":0.135,"input":0.27,"output":1},"family":"deepseek","id":"deepseek/deepseek-v3.1","last_updated":"2025-08-21","limit":{"context":131072,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V3.1","open_weights":true,"reasoning":true,"release_date":"2025-08-21","structured_output":true,"temperature":true,"tool_call":true},"deepseek/deepseek-v3.1-terminus":{"attachment":false,"cost":{"cache_read":0.135,"input":0.27,"output":1},"family":"deepseek","id":"deepseek/deepseek-v3.1-terminus","last_updated":"2025-09-22","limit":{"context":131072,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Deepseek V3.1 Terminus","open_weights":true,"reasoning":true,"release_date":"2025-09-22","structured_output":true,"temperature":true,"tool_call":true},"deepseek/deepseek-v3.2":{"attachment":false,"cost":{"cache_read":0.1345,"input":0.269,"output":0.4},"family":"deepseek","id":"deepseek/deepseek-v3.2","interleaved":{"field":"reasoning_content"},"last_updated":"2025-12-01","limit":{"context":163840,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Deepseek V3.2","open_weights":true,"reasoning":true,"release_date":"2025-12-01","structured_output":true,"temperature":true,"tool_call":true},"deepseek/deepseek-v3.2-exp":{"attachment":false,"cost":{"input":0.27,"output":0.41},"id":"deepseek/deepseek-v3.2-exp","last_updated":"2025-09-29","limit":{"context":163840,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Deepseek V3.2 Exp","open_weights":true,"reasoning":true,"release_date":"2025-09-29","structured_output":true,"temperature":true,"tool_call":true},"deepseek/deepseek-v4-flash":{"attachment":false,"cost":{"cache_read":0.028,"input":0.14,"output":0.28},"family":"deepseek-flash","id":"deepseek/deepseek-v4-flash","interleaved":{"field":"reasoning_content"},"knowledge":"2025-05","last_updated":"2026-04-24","limit":{"context":1048576,"output":393216},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V4 Flash","open_weights":true,"reasoning":true,"release_date":"2026-04-24","structured_output":true,"temperature":true,"tool_call":true},"deepseek/deepseek-v4-pro":{"attachment":false,"cost":{"cache_read":0.13,"input":1.69,"output":3.38},"family":"deepseek-thinking","id":"deepseek/deepseek-v4-pro","interleaved":{"field":"reasoning_content"},"knowledge":"2025-05","last_updated":"2026-04-24","limit":{"context":1048576,"output":393216},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V4 Pro","open_weights":true,"reasoning":true,"release_date":"2026-04-24","structured_output":true,"temperature":true,"tool_call":true},"google/gemma-3-12b-it":{"attachment":true,"cost":{"input":0.05,"output":0.1},"family":"gemma","id":"google/gemma-3-12b-it","last_updated":"2025-03-13","limit":{"context":131072,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Gemma 3 12B","open_weights":true,"reasoning":false,"release_date":"2025-03-13","temperature":true,"tool_call":false},"google/gemma-3-27b-it":{"attachment":true,"cost":{"input":0.119,"output":0.2},"family":"gemma","id":"google/gemma-3-27b-it","last_updated":"2025-03-25","limit":{"context":98304,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"Gemma 3 27B","open_weights":true,"reasoning":false,"release_date":"2025-03-25","temperature":true,"tool_call":false},"google/gemma-4-26b-a4b-it":{"attachment":true,"cost":{"input":0.13,"output":0.4},"family":"gemma","id":"google/gemma-4-26b-a4b-it","last_updated":"2026-04-02","limit":{"context":262144,"output":131072},"modalities":{"input":["text","image"],"output":["text"]},"name":"Gemma 4 26B A4B","open_weights":true,"reasoning":true,"release_date":"2026-04-02","structured_output":true,"temperature":true,"tool_call":true},"google/gemma-4-31b-it":{"attachment":true,"cost":{"input":0.14,"output":0.4},"family":"gemma","id":"google/gemma-4-31b-it","last_updated":"2026-04-02","limit":{"context":262144,"output":131072},"modalities":{"input":["text","image"],"output":["text"]},"name":"Gemma 4 31B","open_weights":true,"reasoning":true,"release_date":"2026-04-02","structured_output":true,"temperature":true,"tool_call":true},"gryphe/mythomax-l2-13b":{"attachment":false,"cost":{"input":0.09,"output":0.09},"id":"gryphe/mythomax-l2-13b","last_updated":"2024-04-25","limit":{"context":4096,"output":3200},"modalities":{"input":["text"],"output":["text"]},"name":"Mythomax L2 13B","open_weights":true,"reasoning":false,"release_date":"2024-04-25","temperature":true,"tool_call":false},"inclusionai/ling-2.6-1t":{"attachment":false,"cost":{"input":0,"output":0},"family":"ling","id":"inclusionai/ling-2.6-1t","last_updated":"2026-04-23","limit":{"context":262144,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Ling-2.6-1T","open_weights":true,"reasoning":false,"release_date":"2026-04-23","structured_output":true,"temperature":true,"tool_call":true},"inclusionai/ling-2.6-flash":{"attachment":false,"cost":{"cache_read":0.02,"input":0.1,"output":0.3},"family":"ling","id":"inclusionai/ling-2.6-flash","last_updated":"2026-04-24","limit":{"context":262144,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Ling-2.6-flash","open_weights":true,"reasoning":false,"release_date":"2026-04-24","structured_output":true,"temperature":true,"tool_call":true},"inclusionai/ring-2.6-1t":{"attachment":false,"cost":{"cache_read":0.06,"input":0.3,"output":2.5},"family":"ring","id":"inclusionai/ring-2.6-1t","last_updated":"2026-05-27","limit":{"context":262144,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Ring-2.6-1T","open_weights":false,"reasoning":true,"release_date":"2026-05-08","structured_output":true,"temperature":true,"tool_call":true},"kwaipilot/kat-coder-pro":{"attachment":false,"cost":{"cache_read":0.06,"input":0.3,"output":1.2},"id":"kwaipilot/kat-coder-pro","last_updated":"2026-01-05","limit":{"context":256000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"Kat Coder Pro","open_weights":true,"reasoning":false,"release_date":"2026-01-05","structured_output":true,"temperature":true,"tool_call":true},"meta-llama/llama-3-70b-instruct":{"attachment":false,"cost":{"input":0.51,"output":0.74},"family":"llama","id":"meta-llama/llama-3-70b-instruct","last_updated":"2024-04-25","limit":{"context":8192,"output":8000},"modalities":{"input":["text"],"output":["text"]},"name":"Llama3 70B Instruct","open_weights":true,"reasoning":false,"release_date":"2024-04-25","structured_output":true,"temperature":true,"tool_call":false},"meta-llama/llama-3-8b-instruct":{"attachment":false,"cost":{"input":0.04,"output":0.04},"family":"llama","id":"meta-llama/llama-3-8b-instruct","last_updated":"2024-04-25","limit":{"context":8192,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3 8B Instruct","open_weights":true,"reasoning":false,"release_date":"2024-04-25","temperature":true,"tool_call":false},"meta-llama/llama-3.1-8b-instruct":{"attachment":false,"cost":{"input":0.02,"output":0.05},"family":"llama","id":"meta-llama/llama-3.1-8b-instruct","last_updated":"2024-07-24","limit":{"context":16384,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.1 8B Instruct","open_weights":true,"reasoning":false,"release_date":"2024-07-24","temperature":true,"tool_call":false},"meta-llama/llama-3.2-3b-instruct":{"attachment":false,"cost":{"input":0.03,"output":0.05},"family":"llama","id":"meta-llama/llama-3.2-3b-instruct","last_updated":"2024-09-18","limit":{"context":32768,"output":32000},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.2 3B Instruct","open_weights":true,"reasoning":false,"release_date":"2024-09-18","temperature":true,"tool_call":false},"meta-llama/llama-3.3-70b-instruct":{"attachment":false,"cost":{"input":0.135,"output":0.4},"family":"llama","id":"meta-llama/llama-3.3-70b-instruct","knowledge":"2023-12","last_updated":"2024-12-07","limit":{"context":131072,"output":120000},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.3 70B Instruct","open_weights":true,"reasoning":false,"release_date":"2024-12-07","temperature":true,"tool_call":true},"meta-llama/llama-4-maverick-17b-128e-instruct-fp8":{"attachment":true,"cost":{"input":0.27,"output":0.85},"id":"meta-llama/llama-4-maverick-17b-128e-instruct-fp8","last_updated":"2025-04-06","limit":{"context":1048576,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Llama 4 Maverick Instruct","open_weights":true,"reasoning":false,"release_date":"2025-04-06","temperature":true,"tool_call":false},"meta-llama/llama-4-scout-17b-16e-instruct":{"attachment":true,"cost":{"input":0.18,"output":0.59},"id":"meta-llama/llama-4-scout-17b-16e-instruct","last_updated":"2025-04-06","limit":{"context":131072,"output":131072},"modalities":{"input":["text","image"],"output":["text"]},"name":"Llama 4 Scout Instruct","open_weights":true,"reasoning":false,"release_date":"2025-04-06","temperature":true,"tool_call":false},"microsoft/wizardlm-2-8x22b":{"attachment":false,"cost":{"input":0.62,"output":0.62},"id":"microsoft/wizardlm-2-8x22b","last_updated":"2024-04-24","limit":{"context":65535,"output":8000},"modalities":{"input":["text"],"output":["text"]},"name":"Wizardlm 2 8x22B","open_weights":true,"reasoning":false,"release_date":"2024-04-24","temperature":true,"tool_call":false},"minimax/minimax-m2":{"attachment":false,"cost":{"cache_read":0.03,"input":0.3,"output":1.2},"family":"minimax","id":"minimax/minimax-m2","interleaved":{"field":"reasoning_content"},"last_updated":"2025-10-27","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2","open_weights":true,"reasoning":true,"release_date":"2025-10-27","temperature":true,"tool_call":true},"minimax/minimax-m2.1":{"attachment":false,"cost":{"cache_read":0.03,"input":0.3,"output":1.2},"family":"minimax","id":"minimax/minimax-m2.1","interleaved":{"field":"reasoning_content"},"last_updated":"2025-12-23","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"Minimax M2.1","open_weights":true,"reasoning":false,"release_date":"2025-12-23","structured_output":true,"temperature":true,"tool_call":true},"minimax/minimax-m2.5":{"attachment":false,"cost":{"cache_read":0.03,"input":0.3,"output":1.2},"family":"minimax","id":"minimax/minimax-m2.5","interleaved":{"field":"reasoning_content"},"last_updated":"2026-02-12","limit":{"context":204800,"output":131100},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax M2.5","open_weights":false,"reasoning":true,"release_date":"2026-02-12","structured_output":true,"temperature":true,"tool_call":true},"minimax/minimax-m2.5-highspeed":{"attachment":false,"cost":{"cache_read":0.03,"input":0.6,"output":2.4},"family":"minimax-m2.5","id":"minimax/minimax-m2.5-highspeed","interleaved":{"field":"reasoning_content"},"last_updated":"2026-02-12","limit":{"context":204800,"output":131100},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax M2.5 Highspeed","open_weights":false,"reasoning":true,"release_date":"2026-02-12","structured_output":true,"temperature":true,"tool_call":true},"minimax/minimax-m2.7":{"attachment":false,"cost":{"cache_read":0.06,"input":0.3,"output":1.2},"family":"minimax-m2.7","id":"minimax/minimax-m2.7","interleaved":{"field":"reasoning_content"},"last_updated":"2026-03-18","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax M2.7","open_weights":true,"reasoning":true,"release_date":"2026-03-18","structured_output":true,"temperature":true,"tool_call":true},"minimax/minimax-m2.7-highspeed":{"attachment":false,"cost":{"cache_read":0.06,"cache_write":0.375,"input":0.6,"output":2.4},"family":"minimax","id":"minimax/minimax-m2.7-highspeed","last_updated":"2026-05-27","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2.7-highspeed","open_weights":true,"reasoning":true,"release_date":"2026-03-18","structured_output":true,"temperature":true,"tool_call":true},"minimaxai/minimax-m1-80k":{"attachment":false,"cost":{"input":0.55,"output":2.2},"family":"minimax","id":"minimaxai/minimax-m1-80k","last_updated":"2025-06-17","limit":{"context":1000000,"output":40000},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax M1","open_weights":true,"reasoning":true,"release_date":"2025-06-17","temperature":true,"tool_call":true},"mistralai/mistral-nemo":{"attachment":false,"cost":{"input":0.04,"output":0.17},"family":"mistral-nemo","id":"mistralai/mistral-nemo","last_updated":"2024-07-30","limit":{"context":60288,"output":16000},"modalities":{"input":["text"],"output":["text"]},"name":"Mistral Nemo","open_weights":true,"reasoning":false,"release_date":"2024-07-30","structured_output":true,"temperature":true,"tool_call":false},"moonshotai/kimi-k2-0905":{"attachment":false,"cost":{"input":0.6,"output":2.5},"family":"kimi","id":"moonshotai/kimi-k2-0905","knowledge":"2024-10","last_updated":"2025-09-05","limit":{"context":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Kimi K2 0905","open_weights":true,"reasoning":false,"release_date":"2025-09-05","structured_output":true,"temperature":true,"tool_call":true},"moonshotai/kimi-k2-instruct":{"attachment":false,"cost":{"input":0.57,"output":2.3},"id":"moonshotai/kimi-k2-instruct","last_updated":"2025-07-11","limit":{"context":131072,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"Kimi K2 Instruct","open_weights":true,"reasoning":false,"release_date":"2025-07-11","structured_output":true,"temperature":true,"tool_call":true},"moonshotai/kimi-k2-thinking":{"attachment":false,"cost":{"input":0.6,"output":2.5},"family":"kimi","id":"moonshotai/kimi-k2-thinking","interleaved":{"field":"reasoning_content"},"last_updated":"2025-11-07","limit":{"context":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Kimi K2 Thinking","open_weights":true,"reasoning":true,"release_date":"2025-11-07","structured_output":true,"temperature":true,"tool_call":true},"moonshotai/kimi-k2.5":{"attachment":true,"cost":{"cache_read":0.1,"input":0.6,"output":3},"family":"kimi","id":"moonshotai/kimi-k2.5","interleaved":{"field":"reasoning_content"},"knowledge":"2025-01","last_updated":"2026-01-27","limit":{"context":262144,"output":262144},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Kimi K2.5","open_weights":true,"reasoning":true,"release_date":"2026-01-27","structured_output":true,"temperature":true,"tool_call":true},"moonshotai/kimi-k2.6":{"attachment":true,"cost":{"cache_read":0.16,"input":0.95,"output":4},"family":"kimi-k2.6","id":"moonshotai/kimi-k2.6","interleaved":{"field":"reasoning_content"},"knowledge":"2025-01","last_updated":"2026-04-21","limit":{"context":262144,"output":262144},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Kimi K2.6","open_weights":true,"reasoning":true,"release_date":"2026-04-21","structured_output":true,"temperature":true,"tool_call":true},"nousresearch/hermes-2-pro-llama-3-8b":{"attachment":false,"cost":{"input":0.14,"output":0.14},"id":"nousresearch/hermes-2-pro-llama-3-8b","last_updated":"2024-06-27","limit":{"context":8192,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Hermes 2 Pro Llama 3 8B","open_weights":true,"reasoning":false,"release_date":"2024-06-27","structured_output":true,"temperature":true,"tool_call":false},"openai/gpt-oss-120b":{"attachment":true,"cost":{"input":0.05,"output":0.25},"id":"openai/gpt-oss-120b","last_updated":"2025-08-06","limit":{"context":131072,"output":32768},"modalities":{"input":["text","image"],"output":["text"]},"name":"OpenAI GPT OSS 120B","open_weights":true,"reasoning":true,"release_date":"2025-08-06","structured_output":true,"temperature":true,"tool_call":true},"openai/gpt-oss-20b":{"attachment":true,"cost":{"input":0.04,"output":0.15},"id":"openai/gpt-oss-20b","last_updated":"2025-08-06","limit":{"context":131072,"output":32768},"modalities":{"input":["text","image"],"output":["text"]},"name":"OpenAI: GPT OSS 20B","open_weights":true,"reasoning":true,"release_date":"2025-08-06","structured_output":true,"temperature":true,"tool_call":false},"paddlepaddle/paddleocr-vl":{"attachment":true,"cost":{"input":0.02,"output":0.02},"id":"paddlepaddle/paddleocr-vl","last_updated":"2025-10-22","limit":{"context":16384,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"PaddleOCR-VL","open_weights":true,"reasoning":false,"release_date":"2025-10-22","temperature":true,"tool_call":false},"qwen/qwen-2.5-72b-instruct":{"attachment":false,"cost":{"input":0.38,"output":0.4},"family":"qwen","id":"qwen/qwen-2.5-72b-instruct","knowledge":"2024-04","last_updated":"2024-10-15","limit":{"context":32000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen 2.5 72B Instruct","open_weights":true,"reasoning":false,"release_date":"2024-10-15","structured_output":true,"temperature":true,"tool_call":true},"qwen/qwen-mt-plus":{"attachment":false,"cost":{"input":0.25,"output":0.75},"id":"qwen/qwen-mt-plus","last_updated":"2025-09-03","limit":{"context":16384,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen MT Plus","open_weights":true,"reasoning":false,"release_date":"2025-09-03","temperature":true,"tool_call":false},"qwen/qwen2.5-7b-instruct":{"attachment":false,"cost":{"input":0.07,"output":0.07},"id":"qwen/qwen2.5-7b-instruct","last_updated":"2025-04-16","limit":{"context":32000,"output":32000},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen2.5 7B Instruct","open_weights":true,"reasoning":false,"release_date":"2025-04-16","structured_output":true,"temperature":true,"tool_call":true},"qwen/qwen2.5-vl-72b-instruct":{"attachment":true,"cost":{"input":0.8,"output":0.8},"family":"qwen","id":"qwen/qwen2.5-vl-72b-instruct","last_updated":"2025-03-25","limit":{"context":32768,"output":32768},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen2.5 VL 72B Instruct","open_weights":true,"reasoning":false,"release_date":"2025-03-25","temperature":true,"tool_call":false},"qwen/qwen3-235b-a22b-fp8":{"attachment":false,"cost":{"input":0.2,"output":0.8},"id":"qwen/qwen3-235b-a22b-fp8","last_updated":"2025-04-29","limit":{"context":40960,"output":20000},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 235B A22B","open_weights":true,"reasoning":true,"release_date":"2025-04-29","temperature":true,"tool_call":false},"qwen/qwen3-235b-a22b-instruct-2507":{"attachment":false,"cost":{"input":0.09,"output":0.58},"family":"qwen","id":"qwen/qwen3-235b-a22b-instruct-2507","knowledge":"2025-04","last_updated":"2025-07-22","limit":{"context":131072,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 235B A22B Instruct 2507","open_weights":true,"reasoning":false,"release_date":"2025-07-22","structured_output":true,"temperature":true,"tool_call":true},"qwen/qwen3-235b-a22b-thinking-2507":{"attachment":false,"cost":{"input":0.3,"output":3},"family":"qwen","id":"qwen/qwen3-235b-a22b-thinking-2507","knowledge":"2025-04","last_updated":"2025-07-25","limit":{"context":131072,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 235B A22b Thinking 2507","open_weights":true,"reasoning":true,"release_date":"2025-07-25","temperature":true,"tool_call":true},"qwen/qwen3-30b-a3b-fp8":{"attachment":false,"cost":{"input":0.09,"output":0.45},"id":"qwen/qwen3-30b-a3b-fp8","last_updated":"2025-04-29","limit":{"context":40960,"output":20000},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 30B A3B","open_weights":true,"reasoning":true,"release_date":"2025-04-29","temperature":true,"tool_call":false},"qwen/qwen3-32b-fp8":{"attachment":false,"cost":{"input":0.1,"output":0.45},"id":"qwen/qwen3-32b-fp8","last_updated":"2025-04-29","limit":{"context":40960,"output":20000},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 32B","open_weights":true,"reasoning":true,"release_date":"2025-04-29","temperature":true,"tool_call":false},"qwen/qwen3-4b-fp8":{"attachment":false,"cost":{"input":0.03,"output":0.03},"id":"qwen/qwen3-4b-fp8","last_updated":"2025-04-29","limit":{"context":128000,"output":20000},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 4B","open_weights":true,"reasoning":true,"release_date":"2025-04-29","temperature":true,"tool_call":false},"qwen/qwen3-8b-fp8":{"attachment":false,"cost":{"input":0.035,"output":0.138},"id":"qwen/qwen3-8b-fp8","last_updated":"2025-04-29","limit":{"context":128000,"output":20000},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 8B","open_weights":true,"reasoning":true,"release_date":"2025-04-29","temperature":true,"tool_call":false},"qwen/qwen3-coder-30b-a3b-instruct":{"attachment":false,"cost":{"input":0.07,"output":0.27},"id":"qwen/qwen3-coder-30b-a3b-instruct","last_updated":"2025-10-09","limit":{"context":160000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Coder 30b A3B Instruct","open_weights":true,"reasoning":false,"release_date":"2025-10-09","structured_output":true,"temperature":true,"tool_call":true},"qwen/qwen3-coder-480b-a35b-instruct":{"attachment":false,"cost":{"input":0.3,"output":1.3},"family":"qwen","id":"qwen/qwen3-coder-480b-a35b-instruct","knowledge":"2025-04","last_updated":"2025-07-23","limit":{"context":262144,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Coder 480B A35B Instruct","open_weights":true,"reasoning":false,"release_date":"2025-07-23","structured_output":true,"temperature":true,"tool_call":true},"qwen/qwen3-coder-next":{"attachment":false,"cost":{"input":0.2,"output":1.5},"family":"qwen","id":"qwen/qwen3-coder-next","last_updated":"2026-02-03","limit":{"context":262144,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Coder Next","open_weights":true,"reasoning":false,"release_date":"2026-02-03","structured_output":true,"temperature":true,"tool_call":true},"qwen/qwen3-max":{"attachment":false,"cost":{"input":2.11,"output":8.45},"family":"qwen","id":"qwen/qwen3-max","knowledge":"2025-04","last_updated":"2025-09-24","limit":{"context":262144,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Max","open_weights":false,"reasoning":false,"release_date":"2025-09-24","structured_output":true,"temperature":true,"tool_call":true},"qwen/qwen3-next-80b-a3b-instruct":{"attachment":false,"cost":{"input":0.15,"output":1.5},"id":"qwen/qwen3-next-80b-a3b-instruct","last_updated":"2025-09-10","limit":{"context":131072,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Next 80B A3B Instruct","open_weights":true,"reasoning":false,"release_date":"2025-09-10","structured_output":true,"temperature":true,"tool_call":true},"qwen/qwen3-next-80b-a3b-thinking":{"attachment":false,"cost":{"input":0.15,"output":1.5},"id":"qwen/qwen3-next-80b-a3b-thinking","last_updated":"2025-09-10","limit":{"context":131072,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Next 80B A3B Thinking","open_weights":true,"reasoning":true,"release_date":"2025-09-10","structured_output":true,"temperature":true,"tool_call":true},"qwen/qwen3-omni-30b-a3b-instruct":{"attachment":true,"cost":{"input":0.25,"input_audio":2.2,"output":0.97,"output_audio":1.788},"family":"qwen","id":"qwen/qwen3-omni-30b-a3b-instruct","knowledge":"2024-04","last_updated":"2025-09-24","limit":{"context":65536,"output":16384},"modalities":{"input":["text","video","audio","image"],"output":["text","audio"]},"name":"Qwen3 Omni 30B A3B Instruct","open_weights":true,"reasoning":false,"release_date":"2025-09-24","structured_output":true,"temperature":true,"tool_call":true},"qwen/qwen3-omni-30b-a3b-thinking":{"attachment":true,"cost":{"input":0.25,"input_audio":2.2,"output":0.97,"output_audio":1.788},"id":"qwen/qwen3-omni-30b-a3b-thinking","last_updated":"2025-09-24","limit":{"context":65536,"output":16384},"modalities":{"input":["text","audio","video","image"],"output":["text"]},"name":"Qwen3 Omni 30B A3B Thinking","open_weights":true,"reasoning":true,"release_date":"2025-09-24","structured_output":true,"temperature":true,"tool_call":true},"qwen/qwen3-vl-235b-a22b-instruct":{"attachment":true,"cost":{"input":0.3,"output":1.5},"id":"qwen/qwen3-vl-235b-a22b-instruct","last_updated":"2025-09-24","limit":{"context":131072,"output":32768},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3 VL 235B A22B Instruct","open_weights":true,"reasoning":false,"release_date":"2025-09-24","structured_output":true,"temperature":true,"tool_call":true},"qwen/qwen3-vl-235b-a22b-thinking":{"attachment":true,"cost":{"input":0.98,"output":3.95},"id":"qwen/qwen3-vl-235b-a22b-thinking","last_updated":"2025-09-24","limit":{"context":131072,"output":32768},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3 VL 235B A22B Thinking","open_weights":true,"reasoning":true,"release_date":"2025-09-24","temperature":true,"tool_call":false},"qwen/qwen3-vl-30b-a3b-instruct":{"attachment":true,"cost":{"input":0.2,"output":0.7},"id":"qwen/qwen3-vl-30b-a3b-instruct","last_updated":"2025-10-11","limit":{"context":131072,"output":32768},"modalities":{"input":["text","video","image"],"output":["text"]},"name":"qwen/qwen3-vl-30b-a3b-instruct","open_weights":true,"reasoning":false,"release_date":"2025-10-11","structured_output":true,"temperature":true,"tool_call":true},"qwen/qwen3-vl-30b-a3b-thinking":{"attachment":true,"cost":{"input":0.2,"output":1},"id":"qwen/qwen3-vl-30b-a3b-thinking","last_updated":"2025-10-11","limit":{"context":131072,"output":32768},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"qwen/qwen3-vl-30b-a3b-thinking","open_weights":true,"reasoning":false,"release_date":"2025-10-11","structured_output":true,"temperature":true,"tool_call":true},"qwen/qwen3-vl-8b-instruct":{"attachment":true,"cost":{"input":0.08,"output":0.5},"id":"qwen/qwen3-vl-8b-instruct","last_updated":"2025-10-17","limit":{"context":131072,"output":32768},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"qwen/qwen3-vl-8b-instruct","open_weights":true,"reasoning":false,"release_date":"2025-10-17","structured_output":true,"temperature":true,"tool_call":true},"qwen/qwen3.5-122b-a10b":{"attachment":true,"cost":{"input":0.4,"output":3.2},"family":"qwen","id":"qwen/qwen3.5-122b-a10b","last_updated":"2026-02-26","limit":{"context":262144,"output":65536},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.5-122B-A10B","open_weights":true,"reasoning":true,"release_date":"2026-02-26","structured_output":true,"temperature":true,"tool_call":true},"qwen/qwen3.5-27b":{"attachment":true,"cost":{"input":0.3,"output":2.4},"family":"qwen","id":"qwen/qwen3.5-27b","last_updated":"2026-02-26","limit":{"context":262144,"output":65536},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.5-27B","open_weights":true,"reasoning":true,"release_date":"2026-02-26","structured_output":true,"temperature":true,"tool_call":true},"qwen/qwen3.5-35b-a3b":{"attachment":true,"cost":{"input":0.25,"output":2},"family":"qwen","id":"qwen/qwen3.5-35b-a3b","last_updated":"2026-02-26","limit":{"context":262144,"output":65536},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.5-35B-A3B","open_weights":true,"reasoning":true,"release_date":"2026-02-26","structured_output":true,"temperature":true,"tool_call":true},"qwen/qwen3.5-397b-a17b":{"attachment":true,"cost":{"input":0.6,"output":3.6},"family":"qwen","id":"qwen/qwen3.5-397b-a17b","last_updated":"2026-02-17","limit":{"context":262144,"output":64000},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.5-397B-A17B","open_weights":true,"reasoning":true,"release_date":"2026-02-17","structured_output":true,"temperature":true,"tool_call":true},"qwen/qwen3.7-max":{"attachment":false,"cost":{"cache_read":0.125,"cache_write":1.5625,"input":1.25,"output":3.75},"family":"qwen","id":"qwen/qwen3.7-max","last_updated":"2026-05-27","limit":{"context":1000000,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3.7-Max","open_weights":false,"reasoning":true,"release_date":"2026-05-21","structured_output":true,"temperature":true,"tool_call":true},"sao10K/L3-8B-stheno-v3.2":{"attachment":false,"cost":{"input":0.05,"output":0.05},"family":"llama","id":"sao10K/L3-8B-stheno-v3.2","last_updated":"2024-11-29","limit":{"context":8192,"output":32000},"modalities":{"input":["text"],"output":["text"]},"name":"L3 8B Stheno V3.2","open_weights":true,"reasoning":false,"release_date":"2024-11-29","temperature":true,"tool_call":true},"sao10K/l3-70b-euryale-v2.1":{"attachment":false,"cost":{"input":1.48,"output":1.48},"id":"sao10K/l3-70b-euryale-v2.1","last_updated":"2024-06-18","limit":{"context":8192,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"L3 70B Euryale V2.1\t","open_weights":true,"reasoning":false,"release_date":"2024-06-18","temperature":true,"tool_call":true},"sao10K/l3-8b-lunaris":{"attachment":false,"cost":{"input":0.05,"output":0.05},"id":"sao10K/l3-8b-lunaris","last_updated":"2024-11-28","limit":{"context":8192,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Sao10k L3 8B Lunaris\t","open_weights":true,"reasoning":false,"release_date":"2024-11-28","structured_output":true,"temperature":true,"tool_call":false},"sao10K/l31-70b-euryale-v2.2":{"attachment":false,"cost":{"input":1.48,"output":1.48},"id":"sao10K/l31-70b-euryale-v2.2","last_updated":"2024-09-19","limit":{"context":8192,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"L31 70B Euryale V2.2","open_weights":true,"reasoning":false,"release_date":"2024-09-19","temperature":true,"tool_call":true},"xiaomimimo/mimo-v2-flash":{"attachment":false,"cost":{"cache_read":0.3,"input":0.1,"output":0.3},"family":"mimo","id":"xiaomimimo/mimo-v2-flash","knowledge":"2024-12","last_updated":"2025-12-19","limit":{"context":262144,"output":32000},"modalities":{"input":["text"],"output":["text"]},"name":"XiaomiMiMo/MiMo-V2-Flash","open_weights":true,"reasoning":true,"release_date":"2025-12-19","structured_output":true,"temperature":true,"tool_call":true},"xiaomimimo/mimo-v2-pro":{"attachment":false,"cost":{"cache_read":0.4,"context_over_200k":{"cache_read":0.4,"input":2,"output":6},"input":2,"output":6,"tiers":[{"cache_read":0.4,"input":2,"output":6,"tier":{"size":256000,"type":"context"}}]},"family":"mimo","id":"xiaomimimo/mimo-v2-pro","interleaved":{"field":"reasoning_content"},"knowledge":"2024-12","last_updated":"2026-05-27","limit":{"context":1048576,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiMo-V2-Pro","open_weights":false,"reasoning":true,"release_date":"2026-03-18","structured_output":true,"temperature":true,"tool_call":true},"xiaomimimo/mimo-v2.5-pro":{"attachment":false,"cost":{"cache_read":0.4,"context_over_200k":{"cache_read":0.4,"input":2,"output":6},"input":2,"output":6,"tiers":[{"cache_read":0.4,"input":2,"output":6,"tier":{"size":256000,"type":"context"}}]},"family":"mimo","id":"xiaomimimo/mimo-v2.5-pro","interleaved":{"field":"reasoning_content"},"knowledge":"2024-12","last_updated":"2026-05-27","limit":{"context":1048576,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiMo-V2.5-Pro","open_weights":true,"reasoning":true,"release_date":"2026-04-22","structured_output":true,"temperature":true,"tool_call":true},"zai-org/autoglm-phone-9b-multilingual":{"attachment":true,"cost":{"input":0.035,"output":0.138},"id":"zai-org/autoglm-phone-9b-multilingual","last_updated":"2025-12-10","limit":{"context":65536,"output":65536},"modalities":{"input":["text","image"],"output":["text"]},"name":"AutoGLM-Phone-9B-Multilingual","open_weights":true,"reasoning":false,"release_date":"2025-12-10","temperature":true,"tool_call":false},"zai-org/glm-4.5":{"attachment":false,"cost":{"cache_read":0.11,"input":0.6,"output":2.2},"family":"glm","id":"zai-org/glm-4.5","interleaved":{"field":"reasoning_content"},"last_updated":"2025-07-28","limit":{"context":131072,"output":98304},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4.5","open_weights":true,"reasoning":true,"release_date":"2025-07-28","temperature":true,"tool_call":true},"zai-org/glm-4.5-air":{"attachment":false,"cost":{"input":0.13,"output":0.85},"family":"glm-air","id":"zai-org/glm-4.5-air","knowledge":"2025-04","last_updated":"2025-10-13","limit":{"context":131072,"output":98304},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 4.5 Air","open_weights":true,"reasoning":true,"release_date":"2025-10-13","temperature":true,"tool_call":true},"zai-org/glm-4.5v":{"attachment":true,"cost":{"cache_read":0.11,"input":0.6,"output":1.8},"family":"glmv","id":"zai-org/glm-4.5v","knowledge":"2025-04","last_updated":"2025-08-11","limit":{"context":65536,"output":16384},"modalities":{"input":["text","video","image"],"output":["text"]},"name":"GLM 4.5V","open_weights":true,"reasoning":true,"release_date":"2025-08-11","structured_output":true,"temperature":true,"tool_call":true},"zai-org/glm-4.6":{"attachment":false,"cost":{"cache_read":0.11,"input":0.55,"output":2.2},"family":"glm","id":"zai-org/glm-4.6","interleaved":{"field":"reasoning_content"},"last_updated":"2025-09-30","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 4.6","open_weights":true,"reasoning":true,"release_date":"2025-09-30","structured_output":true,"temperature":true,"tool_call":true},"zai-org/glm-4.6v":{"attachment":true,"cost":{"cache_read":0.055,"input":0.3,"output":0.9},"family":"glmv","id":"zai-org/glm-4.6v","knowledge":"2025-04","last_updated":"2025-12-08","limit":{"context":131072,"output":32768},"modalities":{"input":["text","video","image"],"output":["text"]},"name":"GLM 4.6V","open_weights":true,"reasoning":true,"release_date":"2025-12-08","structured_output":true,"temperature":true,"tool_call":true},"zai-org/glm-4.7":{"attachment":false,"cost":{"cache_read":0.11,"input":0.6,"output":2.2},"family":"glm","id":"zai-org/glm-4.7","interleaved":{"field":"reasoning_content"},"last_updated":"2025-12-22","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4.7","open_weights":true,"reasoning":true,"release_date":"2025-12-22","structured_output":true,"temperature":true,"tool_call":true},"zai-org/glm-4.7-flash":{"attachment":false,"cost":{"cache_read":0.01,"input":0.07,"output":0.4},"family":"glm","id":"zai-org/glm-4.7-flash","knowledge":"2025-04","last_updated":"2026-01-19","limit":{"context":200000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4.7-Flash","open_weights":true,"reasoning":true,"release_date":"2026-01-19","structured_output":true,"temperature":true,"tool_call":true},"zai-org/glm-5":{"attachment":false,"cost":{"cache_read":0.2,"input":1,"output":3.2},"family":"glm","id":"zai-org/glm-5","interleaved":{"field":"reasoning_content"},"last_updated":"2026-02-12","limit":{"context":202800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-5","open_weights":true,"reasoning":true,"release_date":"2026-02-11","structured_output":true,"temperature":true,"tool_call":true},"zai-org/glm-5.1":{"attachment":false,"cost":{"cache_read":0.26,"input":1.4,"output":4.4},"family":"glm","id":"zai-org/glm-5.1","interleaved":{"field":"reasoning_content"},"last_updated":"2026-03-27","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-5.1","open_weights":true,"reasoning":true,"release_date":"2026-03-27","structured_output":true,"temperature":true,"tool_call":true}},"name":"NovitaAI","npm":"@ai-sdk/openai-compatible"},"nvidia":{"api":"https://integrate.api.nvidia.com/v1","doc":"https://docs.api.nvidia.com/nim/","env":["NVIDIA_API_KEY"],"id":"nvidia","models":{"abacusai/dracarys-llama-3_1-70b-instruct":{"attachment":false,"cost":{"input":0,"output":0},"id":"abacusai/dracarys-llama-3_1-70b-instruct","last_updated":"2025-05-22","limit":{"context":128000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"dracarys-llama-3.1-70b-instruct","open_weights":true,"reasoning":false,"release_date":"2024-09-11","temperature":true,"tool_call":true},"baai/bge-m3":{"attachment":false,"cost":{"input":0,"output":0},"family":"bge","id":"baai/bge-m3","last_updated":"2026-04-30","limit":{"context":8192,"output":1024},"modalities":{"input":["text"],"output":["text"]},"name":"BGE M3","open_weights":true,"reasoning":false,"release_date":"2024-01-30","temperature":false,"tool_call":false},"black-forest-labs/flux.1-dev":{"attachment":false,"cost":{"input":0,"output":0},"family":"flux","id":"black-forest-labs/flux.1-dev","knowledge":"2024-08","last_updated":"2025-09-05","limit":{"context":4096,"output":0},"modalities":{"input":["text"],"output":["image"]},"name":"FLUX.1-dev","open_weights":false,"reasoning":false,"release_date":"2024-08-01","temperature":true,"tool_call":false},"black-forest-labs/flux_1-kontext-dev":{"attachment":true,"cost":{"input":0,"output":0},"id":"black-forest-labs/flux_1-kontext-dev","last_updated":"2025-08-12","limit":{"context":40960,"output":40960},"modalities":{"input":["text","image"],"output":["image"]},"name":"FLUX.1-Kontext-dev","open_weights":true,"reasoning":false,"release_date":"2025-08-12","temperature":false,"tool_call":false},"black-forest-labs/flux_1-schnell":{"attachment":false,"cost":{"input":0,"output":0},"id":"black-forest-labs/flux_1-schnell","knowledge":"2024-07","last_updated":"2026-02-04","limit":{"context":77,"input":77,"output":0},"modalities":{"input":["text"],"output":["image"]},"name":"FLUX.1-schnell","open_weights":true,"reasoning":false,"release_date":"2024-08-01","structured_output":false,"temperature":false,"tool_call":false},"black-forest-labs/flux_2-klein-4b":{"attachment":false,"cost":{"input":0,"output":0},"family":"flux","id":"black-forest-labs/flux_2-klein-4b","knowledge":"2025-06","last_updated":"2026-01-31","limit":{"context":40960,"output":40960},"modalities":{"input":["image","text"],"output":["image"]},"name":"FLUX.2 Klein 4B","open_weights":true,"reasoning":false,"release_date":"2026-01-14","temperature":true,"tool_call":false},"bytedance/seed-oss-36b-instruct":{"attachment":false,"cost":{"input":0,"output":0},"family":"seed","id":"bytedance/seed-oss-36b-instruct","last_updated":"2025-11-25","limit":{"context":262000,"output":262000},"modalities":{"input":["text"],"output":["text"]},"name":"ByteDance-Seed/Seed-OSS-36B-Instruct","open_weights":false,"reasoning":false,"release_date":"2025-09-04","structured_output":true,"temperature":true,"tool_call":true},"deepseek-ai/deepseek-v3.1-terminus":{"attachment":false,"cost":{"input":0,"output":0},"family":"deepseek","id":"deepseek-ai/deepseek-v3.1-terminus","knowledge":"2025-01","last_updated":"2025-09-22","limit":{"context":128000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V3.1 Terminus","open_weights":false,"reasoning":true,"release_date":"2025-09-22","temperature":true,"tool_call":true},"deepseek-ai/deepseek-v3.2":{"attachment":false,"cost":{"input":0,"output":0},"family":"deepseek","id":"deepseek-ai/deepseek-v3.2","knowledge":"2024-07","last_updated":"2025-12-01","limit":{"context":163840,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V3.2","open_weights":false,"reasoning":true,"release_date":"2025-12-01","temperature":true,"tool_call":true},"deepseek-ai/deepseek-v4-flash":{"attachment":false,"cost":{"cache_read":0.0028,"input":0.14,"output":0.28},"family":"deepseek-flash","id":"deepseek-ai/deepseek-v4-flash","interleaved":{"field":"reasoning_content"},"knowledge":"2025-05","last_updated":"2026-04-24","limit":{"context":1048576,"output":393216},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V4 Flash","open_weights":true,"reasoning":true,"release_date":"2026-04-24","structured_output":true,"temperature":true,"tool_call":true},"deepseek-ai/deepseek-v4-pro":{"attachment":false,"cost":{"cache_read":0.003625,"input":0.435,"output":0.87},"family":"deepseek-thinking","id":"deepseek-ai/deepseek-v4-pro","interleaved":{"field":"reasoning_content"},"knowledge":"2025-05","last_updated":"2026-04-24","limit":{"context":1048576,"output":393216},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V4 Pro","open_weights":true,"reasoning":true,"release_date":"2026-04-24","structured_output":true,"temperature":true,"tool_call":true},"google/gemma-2-2b-it":{"attachment":false,"cost":{"input":0,"output":0},"id":"google/gemma-2-2b-it","last_updated":"2024-07-16","limit":{"context":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Gemma 2 2b It","open_weights":true,"reasoning":false,"release_date":"2024-07-16","structured_output":true,"temperature":true,"tool_call":true},"google/gemma-3-27b-it":{"attachment":true,"cost":{"input":0,"output":0},"family":"gemma","id":"google/gemma-3-27b-it","knowledge":"2024-12","last_updated":"2025-09-05","limit":{"context":131072,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Gemma-3-27B-IT","open_weights":false,"reasoning":true,"release_date":"2024-12-01","temperature":true,"tool_call":true},"google/gemma-3n-e2b-it":{"attachment":true,"cost":{"input":0,"output":0},"id":"google/gemma-3n-e2b-it","knowledge":"2024-06","last_updated":"2025-06-12","limit":{"context":128000,"output":4096},"modalities":{"input":["text","image"],"output":["text"]},"name":"Gemma 3n E2b It","open_weights":true,"reasoning":false,"release_date":"2025-06-12","structured_output":true,"temperature":true,"tool_call":true},"google/gemma-3n-e4b-it":{"attachment":true,"cost":{"input":0,"output":0},"id":"google/gemma-3n-e4b-it","knowledge":"2024-06","last_updated":"2025-06-03","limit":{"context":128000,"output":4096},"modalities":{"input":["text","image"],"output":["text"]},"name":"Gemma 3n E4b It","open_weights":true,"reasoning":false,"release_date":"2025-06-03","structured_output":true,"temperature":true,"tool_call":true},"google/gemma-4-31b-it":{"attachment":true,"cost":{"input":0,"output":0},"family":"gemma","id":"google/gemma-4-31b-it","knowledge":"2025-01","last_updated":"2026-04-02","limit":{"context":256000,"output":16384},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Gemma-4-31B-IT","open_weights":true,"reasoning":true,"release_date":"2026-04-02","temperature":true,"tool_call":true},"google/google-paligemma":{"attachment":true,"cost":{"input":0,"output":0},"id":"google/google-paligemma","last_updated":"2024-08-26","limit":{"context":128000,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"paligemma","open_weights":true,"reasoning":false,"release_date":"2024-05-14","temperature":true,"tool_call":false},"meta/esm2-650m":{"attachment":false,"cost":{"input":0,"output":0},"id":"meta/esm2-650m","last_updated":"2025-03-10","limit":{"context":128000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"esm2-650m","open_weights":true,"reasoning":false,"release_date":"2024-08-29","temperature":true,"tool_call":false},"meta/esmfold":{"attachment":false,"cost":{"input":0,"output":0},"id":"meta/esmfold","last_updated":"2025-06-12","limit":{"context":128000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"esmfold","open_weights":true,"reasoning":false,"release_date":"2024-03-15","temperature":true,"tool_call":false},"meta/llama-3.1-70b-instruct":{"attachment":false,"cost":{"input":0,"output":0},"id":"meta/llama-3.1-70b-instruct","last_updated":"2024-07-16","limit":{"context":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.1 70b Instruct","open_weights":true,"reasoning":false,"release_date":"2024-07-16","structured_output":true,"temperature":true,"tool_call":true},"meta/llama-3.1-8b-instruct":{"attachment":false,"cost":{"input":0,"output":0},"family":"llama","id":"meta/llama-3.1-8b-instruct","knowledge":"2023-12","last_updated":"2025-01-01","limit":{"context":16000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.1 8B Instruct","open_weights":true,"reasoning":false,"release_date":"2025-01-01","temperature":true,"tool_call":true},"meta/llama-3.2-11b-vision-instruct":{"attachment":true,"cost":{"input":0,"output":0},"id":"meta/llama-3.2-11b-vision-instruct","knowledge":"2023-12","last_updated":"2024-09-18","limit":{"context":128000,"output":4096},"modalities":{"input":["text","image"],"output":["text"]},"name":"Llama 3.2 11b Vision Instruct","open_weights":true,"reasoning":false,"release_date":"2024-09-18","structured_output":true,"temperature":true,"tool_call":true},"meta/llama-3.2-1b-instruct":{"attachment":false,"cost":{"input":0,"output":0},"id":"meta/llama-3.2-1b-instruct","knowledge":"2023-12","last_updated":"2024-09-18","limit":{"context":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.2 1b Instruct","open_weights":true,"reasoning":false,"release_date":"2024-09-18","structured_output":true,"temperature":true,"tool_call":true},"meta/llama-3.2-3b-instruct":{"attachment":false,"cost":{"input":0,"output":0},"family":"llama","id":"meta/llama-3.2-3b-instruct","last_updated":"2024-09-18","limit":{"context":32768,"output":32000},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.2 3B Instruct","open_weights":true,"reasoning":false,"release_date":"2024-09-18","structured_output":true,"temperature":true,"tool_call":false},"meta/llama-3.2-90b-vision-instruct":{"attachment":true,"cost":{"input":0,"output":0},"family":"llama","id":"meta/llama-3.2-90b-vision-instruct","knowledge":"2023-12","last_updated":"2024-09-25","limit":{"context":128000,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Llama-3.2-90B-Vision-Instruct","open_weights":true,"reasoning":false,"release_date":"2024-09-25","temperature":true,"tool_call":true},"meta/llama-3.3-70b-instruct":{"attachment":false,"cost":{"input":0,"output":0},"id":"meta/llama-3.3-70b-instruct","last_updated":"2024-11-26","limit":{"context":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.3 70b Instruct","open_weights":true,"reasoning":false,"release_date":"2024-11-26","structured_output":true,"temperature":true,"tool_call":true},"meta/llama-4-maverick-17b-128e-instruct":{"attachment":true,"cost":{"input":0,"output":0},"id":"meta/llama-4-maverick-17b-128e-instruct","knowledge":"2024-02","last_updated":"2025-04-01","limit":{"context":128000,"output":4096},"modalities":{"input":["text","image"],"output":["text"]},"name":"Llama 4 Maverick 17b 128e Instruct","open_weights":true,"reasoning":false,"release_date":"2025-04-01","structured_output":true,"temperature":true,"tool_call":true},"meta/llama-guard-4-12b":{"attachment":true,"cost":{"input":0,"output":0},"family":"llama","id":"meta/llama-guard-4-12b","last_updated":"2026-04-30","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"Llama Guard 4 12B","open_weights":true,"reasoning":false,"release_date":"2025-04-05","temperature":true,"tool_call":false},"microsoft/phi-4-mini-instruct":{"attachment":true,"cost":{"input":0,"output":0},"family":"phi","id":"microsoft/phi-4-mini-instruct","knowledge":"2024-12","last_updated":"2025-09-05","limit":{"context":131072,"output":8192},"modalities":{"input":["text","image","audio"],"output":["text"]},"name":"Phi-4-Mini","open_weights":false,"reasoning":true,"release_date":"2024-12-01","temperature":true,"tool_call":true},"microsoft/phi-4-multimodal-instruct":{"attachment":false,"cost":{"input":0,"output":0},"id":"microsoft/phi-4-multimodal-instruct","last_updated":"2025-07-26","limit":{"context":128000,"input":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Phi 4 Multimodal","open_weights":false,"reasoning":false,"release_date":"2025-07-26","structured_output":false,"tool_call":false},"minimaxai/minimax-m2.5":{"attachment":false,"cost":{"input":0,"output":0},"family":"minimax","id":"minimaxai/minimax-m2.5","knowledge":"2025-08","last_updated":"2026-02-12","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2.5","open_weights":true,"reasoning":true,"release_date":"2026-02-12","temperature":true,"tool_call":true},"minimaxai/minimax-m2.7":{"attachment":false,"cost":{"input":0,"output":0},"family":"minimax","id":"minimaxai/minimax-m2.7","last_updated":"2026-04-11","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2.7","open_weights":true,"reasoning":true,"release_date":"2026-03-18","temperature":true,"tool_call":true},"mistralai/devstral-2-123b-instruct-2512":{"attachment":true,"cost":{"input":0,"output":0},"family":"devstral","id":"mistralai/devstral-2-123b-instruct-2512","knowledge":"2025-12","last_updated":"2025-12-09","limit":{"context":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Devstral-2-123B-Instruct-2512","open_weights":true,"reasoning":true,"release_date":"2025-12-08","structured_output":true,"temperature":true,"tool_call":true},"mistralai/magistral-small-2506":{"attachment":false,"cost":{"input":0,"output":0},"id":"mistralai/magistral-small-2506","last_updated":"2025-09-25","limit":{"context":32768,"input":32768,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Magistral Small 2506","open_weights":false,"reasoning":false,"release_date":"2025-09-25","structured_output":false,"tool_call":false},"mistralai/mistral-7b-instruct-v03":{"attachment":false,"cost":{"input":0,"output":0},"id":"mistralai/mistral-7b-instruct-v03","last_updated":"2025-04-01","limit":{"context":65536,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Mistral-7B-Instruct-v0.3","open_weights":true,"reasoning":false,"release_date":"2025-04-01","structured_output":true,"temperature":true,"tool_call":true},"mistralai/mistral-large-3-675b-instruct-2512":{"attachment":true,"cost":{"input":0,"output":0},"family":"mistral-large","id":"mistralai/mistral-large-3-675b-instruct-2512","knowledge":"2025-01","last_updated":"2025-12-02","limit":{"context":262144,"output":262144},"modalities":{"input":["text","image"],"output":["text"]},"name":"Mistral Large 3 675B Instruct 2512","open_weights":true,"reasoning":false,"release_date":"2025-12-02","structured_output":true,"temperature":true,"tool_call":true},"mistralai/mistral-medium-3-instruct":{"attachment":true,"cost":{"input":0,"output":0},"family":"mistral-medium","id":"mistralai/mistral-medium-3-instruct","last_updated":"2025-09-25","limit":{"context":131072,"input":131072,"output":32768},"modalities":{"input":["text","image"],"output":["text"]},"name":"Mistral Medium 3","open_weights":false,"reasoning":false,"release_date":"2025-09-25","structured_output":false,"tool_call":false},"mistralai/mistral-nemotron":{"attachment":false,"cost":{"input":0,"output":0},"id":"mistralai/mistral-nemotron","last_updated":"2025-06-12","limit":{"context":128000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"mistral-nemotron","open_weights":true,"reasoning":false,"release_date":"2025-06-11","temperature":true,"tool_call":true},"mistralai/mistral-small-4-119b-2603":{"attachment":false,"cost":{"input":0,"output":0},"id":"mistralai/mistral-small-4-119b-2603","last_updated":"2026-03-16","limit":{"context":128000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"mistral-small-4-119b-2603","open_weights":true,"reasoning":false,"release_date":"2026-03-16","temperature":true,"tool_call":true},"mistralai/mixtral-8x22b-instruct":{"attachment":false,"cost":{"input":0,"output":0},"id":"mistralai/mixtral-8x22b-instruct","last_updated":"2024-04-17","limit":{"context":65536,"output":13108},"modalities":{"input":["text"],"output":["text"]},"name":"Mistral: Mixtral 8x22B Instruct","open_weights":true,"reasoning":false,"release_date":"2024-04-17","temperature":true,"tool_call":true},"mistralai/mixtral-8x7b-instruct":{"attachment":false,"cost":{"input":0,"output":0},"id":"mistralai/mixtral-8x7b-instruct","last_updated":"2026-03-15","limit":{"context":32768,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Mistral: Mixtral 8x7B Instruct","open_weights":true,"reasoning":false,"release_date":"2023-12-10","temperature":true,"tool_call":true},"moonshotai/kimi-k2-instruct":{"attachment":false,"cost":{"input":0,"output":0},"family":"kimi","id":"moonshotai/kimi-k2-instruct","knowledge":"2024-01","last_updated":"2025-09-05","limit":{"context":128000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Kimi K2 Instruct","open_weights":false,"reasoning":true,"release_date":"2025-01-01","temperature":true,"tool_call":true},"moonshotai/kimi-k2-instruct-0905":{"attachment":false,"cost":{"input":0,"output":0},"family":"kimi","id":"moonshotai/kimi-k2-instruct-0905","knowledge":"2024-10","last_updated":"2025-09-05","limit":{"context":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Kimi K2 0905","open_weights":true,"reasoning":false,"release_date":"2025-09-05","temperature":true,"tool_call":true},"moonshotai/kimi-k2-thinking":{"attachment":false,"cost":{"cache_read":0,"cache_write":0,"input":0,"output":0},"family":"kimi-thinking","id":"moonshotai/kimi-k2-thinking","interleaved":true,"knowledge":"2025-07","last_updated":"2025-12","limit":{"context":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Kimi K2 Thinking","open_weights":true,"reasoning":true,"release_date":"2025-11","structured_output":true,"temperature":true,"tool_call":true},"moonshotai/kimi-k2.6":{"attachment":true,"cost":{"input":0,"output":0},"family":"kimi-k2.6","id":"moonshotai/kimi-k2.6","interleaved":{"field":"reasoning_content"},"knowledge":"2025-01","last_updated":"2026-04-21","limit":{"context":262144,"output":262144},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Kimi K2.6","open_weights":true,"reasoning":true,"release_date":"2026-04-21","structured_output":true,"temperature":true,"tool_call":true},"nvidia/active-speaker-detection":{"attachment":true,"cost":{"input":0,"output":0},"id":"nvidia/active-speaker-detection","last_updated":"2026-04-16","limit":{"context":0,"output":4096},"modalities":{"input":["video"],"output":["text"]},"name":"Active Speaker Detection","open_weights":true,"reasoning":false,"release_date":"2026-04-16","temperature":false,"tool_call":false},"nvidia/bevformer":{"attachment":true,"cost":{"input":0,"output":0},"id":"nvidia/bevformer","last_updated":"2025-07-20","limit":{"context":128000,"output":8192},"modalities":{"input":["video"],"output":["text"]},"name":"bevformer","open_weights":true,"reasoning":false,"release_date":"2025-03-18","temperature":true,"tool_call":false},"nvidia/cosmos-predict1-5b":{"attachment":true,"cost":{"input":0,"output":0},"id":"nvidia/cosmos-predict1-5b","last_updated":"2025-03-18","limit":{"context":0,"output":4096},"modalities":{"input":["text","image","video"],"output":["video"]},"name":"cosmos-predict1-5b","open_weights":true,"reasoning":false,"release_date":"2025-03-18","temperature":false,"tool_call":false},"nvidia/cosmos-transfer1-7b":{"attachment":true,"cost":{"input":0,"output":0},"id":"nvidia/cosmos-transfer1-7b","last_updated":"2025-06-30","limit":{"context":0,"output":4096},"modalities":{"input":["text","image","video"],"output":["video"]},"name":"cosmos-transfer1-7b","open_weights":true,"reasoning":false,"release_date":"2025-06-13","temperature":false,"tool_call":false},"nvidia/cosmos-transfer2_5-2b":{"attachment":true,"cost":{"input":0,"output":0},"id":"nvidia/cosmos-transfer2_5-2b","last_updated":"2026-02-26","limit":{"context":0,"output":4096},"modalities":{"input":["text","image","video"],"output":["video"]},"name":"cosmos-transfer2.5-2b","open_weights":true,"reasoning":false,"release_date":"2026-02-26","temperature":false,"tool_call":false},"nvidia/gliner-pii":{"attachment":false,"cost":{"input":0,"output":0},"id":"nvidia/gliner-pii","last_updated":"2026-03-03","limit":{"context":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"gliner-pii","open_weights":true,"reasoning":false,"release_date":"2026-03-03","temperature":true,"tool_call":false},"nvidia/llama-3_1-nemotron-safety-guard-8b-v3":{"attachment":false,"cost":{"input":0,"output":0},"id":"nvidia/llama-3_1-nemotron-safety-guard-8b-v3","last_updated":"2025-10-28","limit":{"context":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"llama-3.1-nemotron-safety-guard-8b-v3","open_weights":true,"reasoning":false,"release_date":"2025-10-28","temperature":false,"tool_call":false},"nvidia/llama-3_2-nemoretriever-300m-embed-v1":{"attachment":false,"cost":{"input":0,"output":0},"id":"nvidia/llama-3_2-nemoretriever-300m-embed-v1","last_updated":"2025-07-24","limit":{"context":32768,"output":2048},"modalities":{"input":["text"],"output":["text"]},"name":"llama-3_2-nemoretriever-300m-embed-v1","open_weights":true,"reasoning":false,"release_date":"2025-07-24","temperature":false,"tool_call":false},"nvidia/llama-3_3-nemotron-super-49b-v1":{"attachment":false,"cost":{"input":0,"output":0},"family":"nemotron","id":"nvidia/llama-3_3-nemotron-super-49b-v1","knowledge":"2023-12","last_updated":"2025-04-07","limit":{"context":131072,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.3 Nemotron Super 49B v1","open_weights":true,"reasoning":true,"release_date":"2025-04-07","temperature":true,"tool_call":true},"nvidia/llama-3_3-nemotron-super-49b-v1_5":{"attachment":false,"cost":{"input":0,"output":0},"family":"nemotron","id":"nvidia/llama-3_3-nemotron-super-49b-v1_5","knowledge":"2023-12","last_updated":"2025-07-25","limit":{"context":131072,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.3 Nemotron Super 49B v1.5","open_weights":true,"reasoning":true,"release_date":"2025-07-25","temperature":true,"tool_call":true},"nvidia/llama-nemotron-embed-vl-1b-v2":{"attachment":true,"cost":{"input":0,"output":0},"id":"nvidia/llama-nemotron-embed-vl-1b-v2","last_updated":"2026-02-10","limit":{"context":32768,"output":2048},"modalities":{"input":["text","image"],"output":["text"]},"name":"llama-nemotron-embed-vl-1b-v2","open_weights":true,"reasoning":false,"release_date":"2026-02-10","temperature":false,"tool_call":false},"nvidia/llama-nemotron-rerank-vl-1b-v2":{"attachment":true,"cost":{"input":0,"output":0},"id":"nvidia/llama-nemotron-rerank-vl-1b-v2","last_updated":"2026-03-31","limit":{"context":128000,"output":4096},"modalities":{"input":["text","image"],"output":["text"]},"name":"llama-nemotron-rerank-vl-1b-v2","open_weights":true,"reasoning":false,"release_date":"2026-03-31","temperature":false,"tool_call":false},"nvidia/magpie-tts-zeroshot":{"attachment":true,"cost":{"input":0,"output":0},"id":"nvidia/magpie-tts-zeroshot","last_updated":"2025-06-12","limit":{"context":0,"output":4096},"modalities":{"input":["text","audio"],"output":["audio"]},"name":"magpie-tts-zeroshot","open_weights":true,"reasoning":false,"release_date":"2025-05-22","temperature":false,"tool_call":false},"nvidia/nemotron-3-content-safety":{"attachment":false,"cost":{"input":0,"output":0},"id":"nvidia/nemotron-3-content-safety","last_updated":"2026-04-16","limit":{"context":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"nemotron-3-content-safety","open_weights":true,"reasoning":false,"release_date":"2026-04-16","temperature":false,"tool_call":false},"nvidia/nemotron-3-nano-30b-a3b":{"attachment":false,"cost":{"input":0,"output":0},"family":"nemotron","id":"nvidia/nemotron-3-nano-30b-a3b","knowledge":"2024-09","last_updated":"2024-12","limit":{"context":131072,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"nemotron-3-nano-30b-a3b","open_weights":true,"reasoning":true,"release_date":"2024-12","temperature":true,"tool_call":true},"nvidia/nemotron-3-nano-omni-30b-a3b-reasoning":{"attachment":true,"cost":{"input":0,"output":0},"family":"nemotron","id":"nvidia/nemotron-3-nano-omni-30b-a3b-reasoning","last_updated":"2026-04-28","limit":{"context":256000,"output":65536},"modalities":{"input":["text","image","video","audio"],"output":["text"]},"name":"Nemotron 3 Nano Omni","open_weights":true,"reasoning":true,"release_date":"2026-04-28","structured_output":true,"temperature":true,"tool_call":true},"nvidia/nemotron-3-super-120b-a12b":{"attachment":false,"cost":{"input":0.2,"output":0.8},"family":"nemotron","id":"nvidia/nemotron-3-super-120b-a12b","knowledge":"2024-04","last_updated":"2026-03-11","limit":{"context":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Nemotron 3 Super","open_weights":true,"reasoning":true,"release_date":"2026-03-11","temperature":true,"tool_call":true},"nvidia/nemotron-content-safety-reasoning-4b":{"attachment":false,"cost":{"input":0,"output":0},"id":"nvidia/nemotron-content-safety-reasoning-4b","last_updated":"2026-01-22","limit":{"context":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"nemotron-content-safety-reasoning-4b","open_weights":true,"reasoning":true,"release_date":"2026-01-22","temperature":false,"tool_call":false},"nvidia/nemotron-mini-4b-instruct":{"attachment":false,"cost":{"input":0,"output":0},"id":"nvidia/nemotron-mini-4b-instruct","last_updated":"2024-08-26","limit":{"context":128000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"nemotron-mini-4b-instruct","open_weights":true,"reasoning":false,"release_date":"2024-08-21","temperature":true,"tool_call":true},"nvidia/nemotron-voicechat":{"attachment":true,"cost":{"input":0,"output":0},"id":"nvidia/nemotron-voicechat","last_updated":"2026-03-16","limit":{"context":128000,"output":8192},"modalities":{"input":["text","audio"],"output":["text"]},"name":"nemotron-voicechat","open_weights":true,"reasoning":false,"release_date":"2026-03-16","temperature":true,"tool_call":true},"nvidia/nv-embed-v1":{"attachment":false,"cost":{"input":0,"output":0},"id":"nvidia/nv-embed-v1","last_updated":"2025-07-22","limit":{"context":32768,"output":2048},"modalities":{"input":["text"],"output":["text"]},"name":"nv-embed-v1","open_weights":true,"reasoning":false,"release_date":"2024-06-07","temperature":false,"tool_call":false},"nvidia/nv-embedcode-7b-v1":{"attachment":false,"cost":{"input":0,"output":0},"id":"nvidia/nv-embedcode-7b-v1","last_updated":"2025-05-29","limit":{"context":32768,"output":2048},"modalities":{"input":["text"],"output":["text"]},"name":"nv-embedcode-7b-v1","open_weights":true,"reasoning":false,"release_date":"2025-03-17","temperature":false,"tool_call":false},"nvidia/nvidia-nemotron-nano-9b-v2":{"attachment":false,"cost":{"input":0,"output":0},"family":"nemotron","id":"nvidia/nvidia-nemotron-nano-9b-v2","knowledge":"2024-09","last_updated":"2025-08-18","limit":{"context":131072,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"nvidia-nemotron-nano-9b-v2","open_weights":true,"reasoning":true,"release_date":"2025-08-18","temperature":true,"tool_call":true},"nvidia/rerank-qa-mistral-4b":{"attachment":false,"cost":{"input":0,"output":0},"id":"nvidia/rerank-qa-mistral-4b","last_updated":"2025-01-17","limit":{"context":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"rerank-qa-mistral-4b","open_weights":true,"reasoning":false,"release_date":"2024-03-17","temperature":false,"tool_call":false},"nvidia/riva-translate-4b-instruct-v1_1":{"attachment":false,"cost":{"input":0,"output":0},"id":"nvidia/riva-translate-4b-instruct-v1_1","last_updated":"2025-12-12","limit":{"context":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"riva-translate-4b-instruct-v1_1","open_weights":true,"reasoning":false,"release_date":"2025-12-12","temperature":false,"tool_call":false},"nvidia/sparsedrive":{"attachment":true,"cost":{"input":0,"output":0},"id":"nvidia/sparsedrive","last_updated":"2025-07-20","limit":{"context":128000,"output":8192},"modalities":{"input":["video"],"output":["text"]},"name":"sparsedrive","open_weights":true,"reasoning":false,"release_date":"2025-03-18","temperature":true,"tool_call":false},"nvidia/streampetr":{"attachment":true,"cost":{"input":0,"output":0},"id":"nvidia/streampetr","last_updated":"2025-11-13","limit":{"context":128000,"output":8192},"modalities":{"input":["video"],"output":["text"]},"name":"streampetr","open_weights":true,"reasoning":false,"release_date":"2025-11-13","temperature":true,"tool_call":false},"nvidia/studiovoice":{"attachment":false,"cost":{"input":0,"output":0},"id":"nvidia/studiovoice","last_updated":"2025-06-13","limit":{"context":128000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"studiovoice","open_weights":true,"reasoning":false,"release_date":"2024-10-03","temperature":true,"tool_call":false},"nvidia/synthetic-video-detector":{"attachment":true,"cost":{"input":0,"output":0},"id":"nvidia/synthetic-video-detector","last_updated":"2026-04-16","limit":{"context":0,"output":4096},"modalities":{"input":["video"],"output":["text"]},"name":"synthetic-video-detector","open_weights":true,"reasoning":false,"release_date":"2026-04-16","temperature":true,"tool_call":false},"nvidia/usdcode":{"attachment":false,"cost":{"input":0,"output":0},"id":"nvidia/usdcode","last_updated":"2026-01-01","limit":{"context":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"usdcode","open_weights":false,"reasoning":false,"release_date":"2026-01-01","temperature":true,"tool_call":false},"nvidia/usdvalidate":{"attachment":false,"cost":{"input":0,"output":0},"id":"nvidia/usdvalidate","last_updated":"2025-01-08","limit":{"context":0,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"usdvalidate","open_weights":true,"reasoning":false,"release_date":"2024-07-24","temperature":false,"tool_call":false},"openai/gpt-oss-120b":{"attachment":true,"cost":{"input":0,"output":0},"family":"gpt-oss","id":"openai/gpt-oss-120b","knowledge":"2025-08","last_updated":"2025-08-14","limit":{"context":128000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"GPT-OSS-120B","open_weights":false,"reasoning":true,"release_date":"2025-08-04","temperature":true,"tool_call":false},"openai/gpt-oss-20b":{"attachment":false,"cost":{"input":0,"output":0},"family":"gpt-oss","id":"openai/gpt-oss-20b","last_updated":"2025-08-05","limit":{"context":131072,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"GPT OSS 20B","open_weights":true,"reasoning":true,"release_date":"2025-08-05","structured_output":true,"temperature":true,"tool_call":true},"openai/whisper-large-v3":{"attachment":false,"cost":{"input":0,"output":0},"family":"whisper","id":"openai/whisper-large-v3","knowledge":"2023-09","last_updated":"2025-09-05","limit":{"context":0,"output":4096},"modalities":{"input":["audio"],"output":["text"]},"name":"Whisper Large v3","open_weights":true,"reasoning":false,"release_date":"2023-09-01","temperature":false,"tool_call":false},"qwen/qwen-image":{"attachment":true,"cost":{"input":0,"output":0},"family":"qwen","id":"qwen/qwen-image","last_updated":"2025-08-07","limit":{"context":0,"output":0},"modalities":{"input":["text","image"],"output":["image"]},"name":"Qwen Image","open_weights":false,"reasoning":false,"release_date":"2025-08-07","structured_output":false,"temperature":true,"tool_call":false},"qwen/qwen-image-edit":{"attachment":true,"cost":{"input":0,"output":0},"family":"qwen","id":"qwen/qwen-image-edit","last_updated":"2025-08-19","limit":{"context":0,"output":0},"modalities":{"input":["text","image"],"output":["image"]},"name":"Qwen Image Edit","open_weights":false,"reasoning":false,"release_date":"2025-08-19","structured_output":false,"temperature":true,"tool_call":false},"qwen/qwen2.5-coder-32b-instruct":{"attachment":false,"cost":{"input":0,"output":0},"id":"qwen/qwen2.5-coder-32b-instruct","last_updated":"2024-11-06","limit":{"context":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen2.5 Coder 32b Instruct","open_weights":true,"reasoning":false,"release_date":"2024-11-06","structured_output":true,"temperature":true,"tool_call":true},"qwen/qwen3-coder-480b-a35b-instruct":{"attachment":false,"cost":{"input":0,"output":0},"family":"qwen","id":"qwen/qwen3-coder-480b-a35b-instruct","knowledge":"2025-04","last_updated":"2025-07-23","limit":{"context":262144,"output":66536},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Coder 480B A35B Instruct","open_weights":false,"reasoning":false,"release_date":"2025-07-23","temperature":true,"tool_call":true},"qwen/qwen3-next-80b-a3b-instruct":{"attachment":false,"cost":{"input":0,"output":0},"family":"qwen","id":"qwen/qwen3-next-80b-a3b-instruct","knowledge":"2024-12","last_updated":"2025-09-05","limit":{"context":262144,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3-Next-80B-A3B-Instruct","open_weights":false,"reasoning":false,"release_date":"2024-12-01","temperature":true,"tool_call":true},"qwen/qwen3-next-80b-a3b-thinking":{"attachment":false,"cost":{"input":0,"output":0},"family":"qwen","id":"qwen/qwen3-next-80b-a3b-thinking","knowledge":"2024-12","last_updated":"2025-09-05","limit":{"context":262144,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3-Next-80B-A3B-Thinking","open_weights":true,"reasoning":true,"release_date":"2024-12-01","temperature":true,"tool_call":true},"qwen/qwen3.5-122b-a10b":{"attachment":true,"cost":{"input":0,"output":0},"family":"qwen","id":"qwen/qwen3.5-122b-a10b","last_updated":"2026-02-23","limit":{"context":262144,"output":65536},"modalities":{"input":["text","image","video","audio"],"output":["text"]},"name":"Qwen3.5 122B-A10B","open_weights":true,"reasoning":true,"release_date":"2026-02-23","structured_output":true,"temperature":true,"tool_call":true},"qwen/qwen3.5-397b-a17b":{"attachment":true,"cost":{"input":0,"output":0},"family":"qwen","id":"qwen/qwen3.5-397b-a17b","knowledge":"2026-01","last_updated":"2026-02-16","limit":{"context":262144,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen3.5-397B-A17B","open_weights":true,"reasoning":true,"release_date":"2026-02-16","structured_output":true,"temperature":true,"tool_call":true},"sarvamai/sarvam-m":{"attachment":false,"cost":{"input":0,"output":0},"id":"sarvamai/sarvam-m","last_updated":"2025-07-25","limit":{"context":128000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"sarvam-m","open_weights":true,"reasoning":false,"release_date":"2025-07-25","temperature":true,"tool_call":true},"stepfun-ai/step-3.5-flash":{"attachment":false,"cost":{"input":0,"output":0},"id":"stepfun-ai/step-3.5-flash","last_updated":"2026-02-02","limit":{"context":256000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Step 3.5 Flash","open_weights":true,"reasoning":true,"release_date":"2026-02-02","temperature":true,"tool_call":true},"stepfun-ai/step-3.7-flash":{"attachment":true,"cost":{"input":0,"output":0},"id":"stepfun-ai/step-3.7-flash","last_updated":"2026-05-28","limit":{"context":256000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"Step 3.7 Flash","open_weights":true,"reasoning":true,"release_date":"2026-05-28","temperature":true,"tool_call":true},"upstage/solar-10_7b-instruct":{"attachment":false,"cost":{"input":0,"output":0},"id":"upstage/solar-10_7b-instruct","last_updated":"2025-04-10","limit":{"context":128000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"solar-10.7b-instruct","open_weights":true,"reasoning":false,"release_date":"2024-06-05","temperature":true,"tool_call":true},"z-ai/glm-5.1":{"attachment":false,"cost":{"input":0,"output":0},"family":"glm","id":"z-ai/glm-5.1","interleaved":{"field":"reasoning_content"},"last_updated":"2026-03-27","limit":{"context":131072,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-5.1","open_weights":true,"reasoning":true,"release_date":"2026-03-27","structured_output":true,"temperature":true,"tool_call":true},"z-ai/glm4.7":{"attachment":false,"cost":{"input":0,"output":0},"family":"glm","id":"z-ai/glm4.7","interleaved":{"field":"reasoning_content"},"knowledge":"2025-04","last_updated":"2025-12-22","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4.7","open_weights":true,"reasoning":true,"release_date":"2025-12-22","temperature":true,"tool_call":true}},"name":"Nvidia","npm":"@ai-sdk/openai-compatible"},"ollama-cloud":{"api":"https://ollama.com/v1","doc":"https://docs.ollama.com/cloud","env":["OLLAMA_API_KEY"],"id":"ollama-cloud","models":{"cogito-2.1:671b":{"attachment":false,"family":"cogito","id":"cogito-2.1:671b","last_updated":"2026-01-19","limit":{"context":163840,"output":32000},"modalities":{"input":["text"],"output":["text"]},"name":"cogito-2.1:671b","open_weights":true,"reasoning":true,"release_date":"2025-11-19","tool_call":true},"deepseek-v3.1:671b":{"attachment":false,"family":"deepseek","id":"deepseek-v3.1:671b","last_updated":"2026-01-19","limit":{"context":163840,"output":163840},"modalities":{"input":["text"],"output":["text"]},"name":"deepseek-v3.1:671b","open_weights":true,"reasoning":true,"release_date":"2025-08-21","tool_call":true},"deepseek-v3.2":{"attachment":false,"family":"deepseek","id":"deepseek-v3.2","last_updated":"2026-01-19","limit":{"context":163840,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"deepseek-v3.2","open_weights":true,"reasoning":true,"release_date":"2025-06-15","tool_call":true},"deepseek-v4-flash":{"attachment":false,"family":"deepseek-flash","id":"deepseek-v4-flash","last_updated":"2026-04-24","limit":{"context":1048576,"output":1048576},"modalities":{"input":["text"],"output":["text"]},"name":"deepseek-v4-flash","open_weights":true,"reasoning":true,"release_date":"2026-04-24","tool_call":true},"deepseek-v4-pro":{"attachment":false,"family":"deepseek-thinking","id":"deepseek-v4-pro","last_updated":"2026-04-24","limit":{"context":1048576,"output":1048576},"modalities":{"input":["text"],"output":["text"]},"name":"deepseek-v4-pro","open_weights":true,"reasoning":true,"release_date":"2026-04-24","tool_call":true},"devstral-2:123b":{"attachment":false,"family":"devstral","id":"devstral-2:123b","last_updated":"2026-01-19","limit":{"context":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"devstral-2:123b","open_weights":true,"reasoning":false,"release_date":"2025-12-09","tool_call":true},"devstral-small-2:24b":{"attachment":true,"family":"devstral","id":"devstral-small-2:24b","last_updated":"2026-01-19","limit":{"context":262144,"output":262144},"modalities":{"input":["text","image"],"output":["text"]},"name":"devstral-small-2:24b","open_weights":true,"reasoning":false,"release_date":"2025-12-09","tool_call":true},"gemini-3-flash-preview":{"attachment":true,"family":"gemini-flash","id":"gemini-3-flash-preview","knowledge":"2025-01","last_updated":"2026-04-08","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image"],"output":["text"]},"name":"gemini-3-flash-preview","open_weights":true,"reasoning":true,"release_date":"2025-12-17","tool_call":true},"gemma3:12b":{"attachment":true,"family":"gemma","id":"gemma3:12b","last_updated":"2026-01-19","limit":{"context":131072,"output":131072},"modalities":{"input":["text","image"],"output":["text"]},"name":"gemma3:12b","open_weights":true,"reasoning":false,"release_date":"2024-12-01","tool_call":false},"gemma3:27b":{"attachment":true,"family":"gemma","id":"gemma3:27b","last_updated":"2026-01-19","limit":{"context":131072,"output":131072},"modalities":{"input":["text","image"],"output":["text"]},"name":"gemma3:27b","open_weights":true,"reasoning":false,"release_date":"2025-07-27","tool_call":false},"gemma3:4b":{"attachment":true,"family":"gemma","id":"gemma3:4b","last_updated":"2026-01-19","limit":{"context":131072,"output":131072},"modalities":{"input":["text","image"],"output":["text"]},"name":"gemma3:4b","open_weights":true,"reasoning":false,"release_date":"2024-12-01","tool_call":false},"gemma4:31b":{"attachment":true,"family":"gemma","id":"gemma4:31b","knowledge":"2025-01","last_updated":"2026-04-08","limit":{"context":262144,"output":262144},"modalities":{"input":["text","image"],"output":["text"]},"name":"gemma4:31b","open_weights":true,"reasoning":true,"release_date":"2026-04-02","tool_call":true},"glm-4.6":{"attachment":false,"family":"glm","id":"glm-4.6","last_updated":"2026-01-19","limit":{"context":202752,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"glm-4.6","open_weights":true,"reasoning":true,"release_date":"2025-09-29","tool_call":true},"glm-4.7":{"attachment":false,"family":"glm","id":"glm-4.7","last_updated":"2026-01-19","limit":{"context":202752,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"glm-4.7","open_weights":true,"reasoning":true,"release_date":"2025-12-22","tool_call":true},"glm-5":{"attachment":false,"family":"glm","id":"glm-5","interleaved":{"field":"reasoning_content"},"last_updated":"2026-02-11","limit":{"context":202752,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"glm-5","open_weights":true,"reasoning":true,"release_date":"2026-02-11","tool_call":true},"glm-5.1":{"attachment":false,"family":"glm","id":"glm-5.1","interleaved":{"field":"reasoning_content"},"last_updated":"2026-04-07","limit":{"context":202752,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"glm-5.1","open_weights":true,"reasoning":true,"release_date":"2026-03-27","tool_call":true},"gpt-oss:120b":{"attachment":false,"family":"gpt-oss","id":"gpt-oss:120b","last_updated":"2026-01-19","limit":{"context":131072,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"gpt-oss:120b","open_weights":true,"reasoning":true,"release_date":"2025-08-05","tool_call":true},"gpt-oss:20b":{"attachment":false,"family":"gpt-oss","id":"gpt-oss:20b","last_updated":"2026-01-19","limit":{"context":131072,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"gpt-oss:20b","open_weights":true,"reasoning":true,"release_date":"2025-08-05","tool_call":true},"kimi-k2-thinking":{"attachment":false,"family":"kimi-thinking","id":"kimi-k2-thinking","knowledge":"2024-08","last_updated":"2026-01-19","limit":{"context":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"kimi-k2-thinking","open_weights":true,"reasoning":true,"release_date":"2025-11-06","tool_call":true},"kimi-k2.5":{"attachment":true,"family":"kimi","id":"kimi-k2.5","last_updated":"2026-01-27","limit":{"context":262144,"output":262144},"modalities":{"input":["text","image"],"output":["text"]},"name":"kimi-k2.5","open_weights":true,"reasoning":true,"release_date":"2026-01-27","tool_call":true},"kimi-k2.6":{"attachment":true,"family":"kimi","id":"kimi-k2.6","last_updated":"2026-04-20","limit":{"context":262144,"output":262144},"modalities":{"input":["text","image"],"output":["text"]},"name":"kimi-k2.6","open_weights":true,"reasoning":true,"release_date":"2026-04-20","tool_call":true},"kimi-k2:1t":{"attachment":false,"family":"kimi","id":"kimi-k2:1t","knowledge":"2024-10","last_updated":"2026-01-19","limit":{"context":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"kimi-k2:1t","open_weights":true,"reasoning":false,"release_date":"2025-07-11","tool_call":true},"minimax-m2":{"attachment":false,"family":"minimax","id":"minimax-m2","last_updated":"2026-01-19","limit":{"context":204800,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"minimax-m2","open_weights":true,"reasoning":false,"release_date":"2025-10-23","tool_call":true},"minimax-m2.1":{"attachment":false,"family":"minimax","id":"minimax-m2.1","last_updated":"2026-01-19","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"minimax-m2.1","open_weights":true,"reasoning":true,"release_date":"2025-12-23","tool_call":true},"minimax-m2.5":{"attachment":false,"family":"minimax","id":"minimax-m2.5","knowledge":"2025-01","last_updated":"2026-02-12","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"minimax-m2.5","open_weights":true,"reasoning":true,"release_date":"2026-02-12","tool_call":true},"minimax-m2.7":{"attachment":false,"family":"minimax","id":"minimax-m2.7","last_updated":"2026-03-18","limit":{"context":196608,"output":196608},"modalities":{"input":["text"],"output":["text"]},"name":"minimax-m2.7","open_weights":true,"reasoning":true,"release_date":"2026-03-18","tool_call":true},"minimax-m3":{"attachment":false,"family":"minimax-m3","id":"minimax-m3","knowledge":"2025-01","last_updated":"2026-05-31","limit":{"context":512000,"output":131072},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"minimax-m3","open_weights":true,"reasoning":true,"release_date":"2026-05-31","temperature":true,"tool_call":true},"ministral-3:14b":{"attachment":true,"family":"ministral","id":"ministral-3:14b","last_updated":"2026-01-19","limit":{"context":262144,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"ministral-3:14b","open_weights":true,"reasoning":false,"release_date":"2024-12-01","tool_call":true},"ministral-3:3b":{"attachment":true,"family":"ministral","id":"ministral-3:3b","last_updated":"2026-01-19","limit":{"context":262144,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"ministral-3:3b","open_weights":true,"reasoning":false,"release_date":"2024-10-22","tool_call":true},"ministral-3:8b":{"attachment":true,"family":"ministral","id":"ministral-3:8b","last_updated":"2026-01-19","limit":{"context":262144,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"ministral-3:8b","open_weights":true,"reasoning":false,"release_date":"2024-12-01","tool_call":true},"mistral-large-3:675b":{"attachment":true,"family":"mistral-large","id":"mistral-large-3:675b","last_updated":"2026-01-19","limit":{"context":262144,"output":262144},"modalities":{"input":["text","image"],"output":["text"]},"name":"mistral-large-3:675b","open_weights":true,"reasoning":false,"release_date":"2025-12-02","tool_call":true},"nemotron-3-nano:30b":{"attachment":false,"family":"nemotron","id":"nemotron-3-nano:30b","last_updated":"2026-01-19","limit":{"context":1048576,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"nemotron-3-nano:30b","open_weights":true,"reasoning":true,"release_date":"2025-12-15","tool_call":true},"nemotron-3-super":{"attachment":false,"family":"nemotron","id":"nemotron-3-super","last_updated":"2026-03-12","limit":{"context":262144,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"nemotron-3-super","open_weights":true,"reasoning":true,"release_date":"2026-03-11","tool_call":true},"qwen3-coder-next":{"attachment":false,"family":"qwen","id":"qwen3-coder-next","last_updated":"2026-02-08","limit":{"context":262144,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"qwen3-coder-next","open_weights":true,"reasoning":false,"release_date":"2026-02-02","tool_call":true},"qwen3-coder:480b":{"attachment":false,"family":"qwen","id":"qwen3-coder:480b","last_updated":"2026-01-19","limit":{"context":262144,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"qwen3-coder:480b","open_weights":true,"reasoning":false,"release_date":"2025-07-22","tool_call":true},"qwen3-next:80b":{"attachment":false,"family":"qwen","id":"qwen3-next:80b","last_updated":"2026-01-19","limit":{"context":262144,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"qwen3-next:80b","open_weights":true,"reasoning":true,"release_date":"2025-09-15","tool_call":true},"qwen3-vl:235b":{"attachment":true,"family":"qwen","id":"qwen3-vl:235b","last_updated":"2026-01-19","limit":{"context":262144,"output":32768},"modalities":{"input":["text","image"],"output":["text"]},"name":"qwen3-vl:235b","open_weights":true,"reasoning":true,"release_date":"2025-09-22","tool_call":true},"qwen3-vl:235b-instruct":{"attachment":true,"family":"qwen","id":"qwen3-vl:235b-instruct","last_updated":"2026-01-19","limit":{"context":262144,"output":131072},"modalities":{"input":["text","image"],"output":["text"]},"name":"qwen3-vl:235b-instruct","open_weights":true,"reasoning":false,"release_date":"2025-09-22","tool_call":true},"qwen3.5:397b":{"attachment":true,"family":"qwen","id":"qwen3.5:397b","interleaved":{"field":"reasoning_details"},"last_updated":"2026-02-17","limit":{"context":262144,"output":65536},"modalities":{"input":["text","image"],"output":["text"]},"name":"qwen3.5:397b","open_weights":true,"reasoning":true,"release_date":"2026-02-15","tool_call":true},"rnj-1:8b":{"attachment":false,"family":"rnj","id":"rnj-1:8b","last_updated":"2026-01-19","limit":{"context":32768,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"rnj-1:8b","open_weights":true,"reasoning":false,"release_date":"2025-12-06","tool_call":true}},"name":"Ollama Cloud","npm":"@ai-sdk/openai-compatible"},"openai":{"doc":"https://platform.openai.com/docs/models","env":["OPENAI_API_KEY"],"id":"openai","models":{"chatgpt-image-latest":{"attachment":true,"family":"gpt-image","id":"chatgpt-image-latest","last_updated":"2025-12-16","limit":{"context":0,"input":0,"output":0},"modalities":{"input":["text","image"],"output":["text","image"]},"name":"chatgpt-image-latest","open_weights":false,"reasoning":false,"release_date":"2025-12-16","temperature":false,"tool_call":false},"gpt-3.5-turbo":{"attachment":false,"cost":{"cache_read":0,"input":0.5,"output":1.5},"family":"gpt","id":"gpt-3.5-turbo","knowledge":"2021-09-01","last_updated":"2023-11-06","limit":{"context":16385,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"GPT-3.5-turbo","open_weights":false,"reasoning":false,"release_date":"2023-03-01","structured_output":false,"temperature":true,"tool_call":false},"gpt-4":{"attachment":true,"cost":{"input":30,"output":60},"family":"gpt","id":"gpt-4","knowledge":"2023-11","last_updated":"2024-04-09","limit":{"context":8192,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"GPT-4","open_weights":false,"reasoning":false,"release_date":"2023-11-06","structured_output":false,"temperature":true,"tool_call":true},"gpt-4-turbo":{"attachment":true,"cost":{"input":10,"output":30},"family":"gpt","id":"gpt-4-turbo","knowledge":"2023-12","last_updated":"2024-04-09","limit":{"context":128000,"output":4096},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-4 Turbo","open_weights":false,"reasoning":false,"release_date":"2023-11-06","structured_output":false,"temperature":true,"tool_call":true},"gpt-4.1":{"attachment":true,"cost":{"cache_read":0.5,"input":2,"output":8},"family":"gpt","id":"gpt-4.1","knowledge":"2024-04","last_updated":"2025-04-14","limit":{"context":1047576,"output":32768},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-4.1","open_weights":false,"reasoning":false,"release_date":"2025-04-14","structured_output":true,"temperature":true,"tool_call":true},"gpt-4.1-mini":{"attachment":true,"cost":{"cache_read":0.1,"input":0.4,"output":1.6},"family":"gpt-mini","id":"gpt-4.1-mini","knowledge":"2024-04","last_updated":"2025-04-14","limit":{"context":1047576,"output":32768},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-4.1 mini","open_weights":false,"reasoning":false,"release_date":"2025-04-14","structured_output":true,"temperature":true,"tool_call":true},"gpt-4.1-nano":{"attachment":true,"cost":{"cache_read":0.025,"input":0.1,"output":0.4},"family":"gpt-nano","id":"gpt-4.1-nano","knowledge":"2024-04","last_updated":"2025-04-14","limit":{"context":1047576,"output":32768},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-4.1 nano","open_weights":false,"reasoning":false,"release_date":"2025-04-14","structured_output":true,"temperature":true,"tool_call":true},"gpt-4o":{"attachment":true,"cost":{"cache_read":1.25,"input":2.5,"output":10},"family":"gpt","id":"gpt-4o","knowledge":"2023-09","last_updated":"2024-08-06","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-4o","open_weights":false,"reasoning":false,"release_date":"2024-05-13","structured_output":true,"temperature":true,"tool_call":true},"gpt-4o-2024-05-13":{"attachment":true,"cost":{"input":5,"output":15},"family":"gpt","id":"gpt-4o-2024-05-13","knowledge":"2023-09","last_updated":"2024-05-13","limit":{"context":128000,"output":4096},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-4o (2024-05-13)","open_weights":false,"reasoning":false,"release_date":"2024-05-13","structured_output":true,"temperature":true,"tool_call":true},"gpt-4o-2024-08-06":{"attachment":true,"cost":{"cache_read":1.25,"input":2.5,"output":10},"family":"gpt","id":"gpt-4o-2024-08-06","knowledge":"2023-09","last_updated":"2024-08-06","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-4o (2024-08-06)","open_weights":false,"reasoning":false,"release_date":"2024-08-06","structured_output":true,"temperature":true,"tool_call":true},"gpt-4o-2024-11-20":{"attachment":true,"cost":{"cache_read":1.25,"input":2.5,"output":10},"family":"gpt","id":"gpt-4o-2024-11-20","knowledge":"2023-09","last_updated":"2024-11-20","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-4o (2024-11-20)","open_weights":false,"reasoning":false,"release_date":"2024-11-20","structured_output":true,"temperature":true,"tool_call":true},"gpt-4o-mini":{"attachment":true,"cost":{"cache_read":0.075,"input":0.15,"output":0.6},"family":"gpt-mini","id":"gpt-4o-mini","knowledge":"2023-09","last_updated":"2024-07-18","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-4o mini","open_weights":false,"reasoning":false,"release_date":"2024-07-18","structured_output":true,"temperature":true,"tool_call":true},"gpt-5":{"attachment":true,"cost":{"cache_read":0.125,"input":1.25,"output":10},"family":"gpt","id":"gpt-5","knowledge":"2024-09-30","last_updated":"2025-08-07","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5","open_weights":false,"reasoning":true,"release_date":"2025-08-07","structured_output":true,"temperature":false,"tool_call":true},"gpt-5-chat-latest":{"attachment":true,"cost":{"cache_read":0.125,"input":1.25,"output":10},"family":"gpt-codex","id":"gpt-5-chat-latest","knowledge":"2024-09-30","last_updated":"2025-08-07","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5 Chat (latest)","open_weights":false,"reasoning":true,"release_date":"2025-08-07","structured_output":true,"temperature":true,"tool_call":false},"gpt-5-codex":{"attachment":false,"cost":{"cache_read":0.125,"input":1.25,"output":10},"family":"gpt-codex","id":"gpt-5-codex","knowledge":"2024-09-30","last_updated":"2025-09-15","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5-Codex","open_weights":false,"reasoning":true,"release_date":"2025-09-15","structured_output":true,"temperature":false,"tool_call":true},"gpt-5-mini":{"attachment":true,"cost":{"cache_read":0.025,"input":0.25,"output":2},"family":"gpt-mini","id":"gpt-5-mini","knowledge":"2024-05-30","last_updated":"2025-08-07","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5 Mini","open_weights":false,"reasoning":true,"release_date":"2025-08-07","structured_output":true,"temperature":false,"tool_call":true},"gpt-5-nano":{"attachment":true,"cost":{"cache_read":0.005,"input":0.05,"output":0.4},"family":"gpt-nano","id":"gpt-5-nano","knowledge":"2024-05-30","last_updated":"2025-08-07","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5 Nano","open_weights":false,"reasoning":true,"release_date":"2025-08-07","structured_output":true,"temperature":false,"tool_call":true},"gpt-5-pro":{"attachment":true,"cost":{"input":15,"output":120},"family":"gpt-pro","id":"gpt-5-pro","knowledge":"2024-09-30","last_updated":"2025-10-06","limit":{"context":400000,"input":272000,"output":272000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5 Pro","open_weights":false,"reasoning":true,"release_date":"2025-10-06","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.1":{"attachment":true,"cost":{"cache_read":0.125,"input":1.25,"output":10},"family":"gpt","id":"gpt-5.1","knowledge":"2024-09-30","last_updated":"2025-11-13","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.1","open_weights":false,"reasoning":true,"release_date":"2025-11-13","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.1-chat-latest":{"attachment":true,"cost":{"cache_read":0.125,"input":1.25,"output":10},"family":"gpt-codex","id":"gpt-5.1-chat-latest","knowledge":"2024-09-30","last_updated":"2025-11-13","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.1 Chat","open_weights":false,"reasoning":true,"release_date":"2025-11-13","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.1-codex":{"attachment":true,"cost":{"cache_read":0.125,"input":1.25,"output":10},"family":"gpt-codex","id":"gpt-5.1-codex","knowledge":"2024-09-30","last_updated":"2025-11-13","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.1 Codex","open_weights":false,"reasoning":true,"release_date":"2025-11-13","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.1-codex-max":{"attachment":true,"cost":{"cache_read":0.125,"input":1.25,"output":10},"family":"gpt-codex","id":"gpt-5.1-codex-max","knowledge":"2024-09-30","last_updated":"2025-11-13","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.1 Codex Max","open_weights":false,"reasoning":true,"release_date":"2025-11-13","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.1-codex-mini":{"attachment":true,"cost":{"cache_read":0.025,"input":0.25,"output":2},"family":"gpt-codex","id":"gpt-5.1-codex-mini","knowledge":"2024-09-30","last_updated":"2025-11-13","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.1 Codex mini","open_weights":false,"reasoning":true,"release_date":"2025-11-13","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.2":{"attachment":true,"cost":{"cache_read":0.175,"input":1.75,"output":14},"family":"gpt","id":"gpt-5.2","knowledge":"2025-08-31","last_updated":"2025-12-11","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.2","open_weights":false,"reasoning":true,"release_date":"2025-12-11","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.2-chat-latest":{"attachment":true,"cost":{"cache_read":0.175,"input":1.75,"output":14},"family":"gpt-codex","id":"gpt-5.2-chat-latest","knowledge":"2025-08-31","last_updated":"2025-12-11","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.2 Chat","open_weights":false,"reasoning":true,"release_date":"2025-12-11","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.2-codex":{"attachment":true,"cost":{"cache_read":0.175,"input":1.75,"output":14},"family":"gpt-codex","id":"gpt-5.2-codex","knowledge":"2025-08-31","last_updated":"2025-12-11","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5.2 Codex","open_weights":false,"reasoning":true,"release_date":"2025-12-11","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.2-pro":{"attachment":true,"cost":{"input":21,"output":168},"family":"gpt-pro","id":"gpt-5.2-pro","knowledge":"2025-08-31","last_updated":"2025-12-11","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.2 Pro","open_weights":false,"reasoning":true,"release_date":"2025-12-11","structured_output":false,"temperature":false,"tool_call":true},"gpt-5.3-chat-latest":{"attachment":true,"cost":{"cache_read":0.175,"input":1.75,"output":14},"family":"gpt","id":"gpt-5.3-chat-latest","knowledge":"2025-08-31","last_updated":"2026-03-03","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.3 Chat (latest)","open_weights":false,"reasoning":false,"release_date":"2026-03-03","structured_output":true,"temperature":true,"tool_call":true},"gpt-5.3-codex":{"attachment":true,"cost":{"cache_read":0.175,"input":1.75,"output":14},"family":"gpt-codex","id":"gpt-5.3-codex","knowledge":"2025-08-31","last_updated":"2026-02-05","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5.3 Codex","open_weights":false,"reasoning":true,"release_date":"2026-02-05","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.3-codex-spark":{"attachment":true,"cost":{"cache_read":0.175,"input":1.75,"output":14},"family":"gpt-codex-spark","id":"gpt-5.3-codex-spark","knowledge":"2025-08-31","last_updated":"2026-02-05","limit":{"context":128000,"input":100000,"output":32000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5.3 Codex Spark","open_weights":false,"reasoning":true,"release_date":"2026-02-05","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.4":{"attachment":true,"cost":{"cache_read":0.25,"context_over_200k":{"cache_read":0.5,"input":5,"output":22.5},"input":2.5,"output":15,"tiers":[{"cache_read":0.5,"input":5,"output":22.5,"tier":{"size":272000,"type":"context"}}]},"experimental":{"modes":{"fast":{"cost":{"cache_read":0.5,"input":5,"output":30},"provider":{"body":{"service_tier":"priority"}}}}},"family":"gpt","id":"gpt-5.4","knowledge":"2025-08-31","last_updated":"2026-03-05","limit":{"context":1050000,"input":922000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5.4","open_weights":false,"reasoning":true,"release_date":"2026-03-05","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.4-mini":{"attachment":true,"cost":{"cache_read":0.075,"input":0.75,"output":4.5},"experimental":{"modes":{"fast":{"cost":{"cache_read":0.15,"input":1.5,"output":9},"provider":{"body":{"service_tier":"priority"}}}}},"family":"gpt-mini","id":"gpt-5.4-mini","knowledge":"2025-08-31","last_updated":"2026-03-17","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.4 mini","open_weights":false,"reasoning":true,"release_date":"2026-03-17","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.4-nano":{"attachment":true,"cost":{"cache_read":0.02,"input":0.2,"output":1.25},"family":"gpt-nano","id":"gpt-5.4-nano","knowledge":"2025-08-31","last_updated":"2026-03-17","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.4 nano","open_weights":false,"reasoning":true,"release_date":"2026-03-17","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.4-pro":{"attachment":true,"cost":{"context_over_200k":{"input":60,"output":270},"input":30,"output":180,"tiers":[{"input":60,"output":270,"tier":{"size":272000,"type":"context"}}]},"family":"gpt-pro","id":"gpt-5.4-pro","knowledge":"2025-08-31","last_updated":"2026-03-05","limit":{"context":1050000,"input":922000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.4 Pro","open_weights":false,"reasoning":true,"release_date":"2026-03-05","structured_output":false,"temperature":false,"tool_call":true},"gpt-5.5":{"attachment":true,"cost":{"cache_read":0.5,"context_over_200k":{"cache_read":1,"input":10,"output":45},"input":5,"output":30,"tiers":[{"cache_read":1,"input":10,"output":45,"tier":{"size":272000,"type":"context"}}]},"experimental":{"modes":{"fast":{"cost":{"cache_read":1.25,"input":12.5,"output":75},"provider":{"body":{"service_tier":"priority"}}}}},"family":"gpt","id":"gpt-5.5","knowledge":"2025-12-01","last_updated":"2026-04-23","limit":{"context":1050000,"input":922000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5.5","open_weights":false,"reasoning":true,"release_date":"2026-04-23","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.5-pro":{"attachment":true,"cost":{"context_over_200k":{"input":60,"output":270},"input":30,"output":180,"tiers":[{"input":60,"output":270,"tier":{"size":272000,"type":"context"}}]},"family":"gpt-pro","id":"gpt-5.5-pro","knowledge":"2025-12-01","last_updated":"2026-04-23","limit":{"context":1050000,"input":922000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5.5 Pro","open_weights":false,"reasoning":true,"release_date":"2026-04-23","structured_output":true,"temperature":false,"tool_call":true},"gpt-image-1":{"attachment":true,"family":"gpt-image","id":"gpt-image-1","last_updated":"2025-04-24","limit":{"context":0,"input":0,"output":0},"modalities":{"input":["text","image"],"output":["image"]},"name":"gpt-image-1","open_weights":false,"reasoning":false,"release_date":"2025-04-24","temperature":false,"tool_call":false},"gpt-image-1-mini":{"attachment":true,"family":"gpt-image","id":"gpt-image-1-mini","last_updated":"2025-09-26","limit":{"context":0,"input":0,"output":0},"modalities":{"input":["text","image"],"output":["text","image"]},"name":"gpt-image-1-mini","open_weights":false,"reasoning":false,"release_date":"2025-09-26","temperature":false,"tool_call":false},"gpt-image-1.5":{"attachment":true,"family":"gpt-image","id":"gpt-image-1.5","last_updated":"2025-11-25","limit":{"context":0,"input":0,"output":0},"modalities":{"input":["text","image"],"output":["text","image"]},"name":"gpt-image-1.5","open_weights":false,"reasoning":false,"release_date":"2025-11-25","temperature":false,"tool_call":false},"o1":{"attachment":true,"cost":{"cache_read":7.5,"input":15,"output":60},"family":"o","id":"o1","knowledge":"2023-09","last_updated":"2024-12-05","limit":{"context":200000,"output":100000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"o1","open_weights":false,"reasoning":true,"release_date":"2024-12-05","structured_output":true,"temperature":false,"tool_call":true},"o1-mini":{"attachment":false,"cost":{"cache_read":0.55,"input":1.1,"output":4.4},"family":"o-mini","id":"o1-mini","knowledge":"2023-09","last_updated":"2024-09-12","limit":{"context":128000,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"o1-mini","open_weights":false,"reasoning":true,"release_date":"2024-09-12","status":"deprecated","structured_output":true,"temperature":false,"tool_call":false},"o1-preview":{"attachment":false,"cost":{"cache_read":7.5,"input":15,"output":60},"family":"o","id":"o1-preview","knowledge":"2023-09","last_updated":"2024-09-12","limit":{"context":128000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"o1-preview","open_weights":false,"reasoning":true,"release_date":"2024-09-12","status":"deprecated","temperature":true,"tool_call":false},"o1-pro":{"attachment":true,"cost":{"input":150,"output":600},"family":"o-pro","id":"o1-pro","knowledge":"2023-09","last_updated":"2025-03-19","limit":{"context":200000,"output":100000},"modalities":{"input":["text","image"],"output":["text"]},"name":"o1-pro","open_weights":false,"reasoning":true,"release_date":"2025-03-19","structured_output":true,"temperature":false,"tool_call":true},"o3":{"attachment":true,"cost":{"cache_read":0.5,"input":2,"output":8},"family":"o","id":"o3","knowledge":"2024-05","last_updated":"2025-04-16","limit":{"context":200000,"output":100000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"o3","open_weights":false,"reasoning":true,"release_date":"2025-04-16","structured_output":true,"temperature":false,"tool_call":true},"o3-deep-research":{"attachment":true,"cost":{"cache_read":2.5,"input":10,"output":40},"family":"o","id":"o3-deep-research","knowledge":"2024-05","last_updated":"2024-06-26","limit":{"context":200000,"output":100000},"modalities":{"input":["text","image"],"output":["text"]},"name":"o3-deep-research","open_weights":false,"reasoning":true,"release_date":"2024-06-26","temperature":false,"tool_call":true},"o3-mini":{"attachment":false,"cost":{"cache_read":0.55,"input":1.1,"output":4.4},"family":"o-mini","id":"o3-mini","knowledge":"2024-05","last_updated":"2025-01-29","limit":{"context":200000,"output":100000},"modalities":{"input":["text"],"output":["text"]},"name":"o3-mini","open_weights":false,"reasoning":true,"release_date":"2024-12-20","structured_output":true,"temperature":false,"tool_call":true},"o3-pro":{"attachment":true,"cost":{"input":20,"output":80},"family":"o-pro","id":"o3-pro","knowledge":"2024-05","last_updated":"2025-06-10","limit":{"context":200000,"output":100000},"modalities":{"input":["text","image"],"output":["text"]},"name":"o3-pro","open_weights":false,"reasoning":true,"release_date":"2025-06-10","structured_output":true,"temperature":false,"tool_call":true},"o4-mini":{"attachment":true,"cost":{"cache_read":0.275,"input":1.1,"output":4.4},"family":"o-mini","id":"o4-mini","knowledge":"2024-05","last_updated":"2025-04-16","limit":{"context":200000,"output":100000},"modalities":{"input":["text","image"],"output":["text"]},"name":"o4-mini","open_weights":false,"reasoning":true,"release_date":"2025-04-16","structured_output":true,"temperature":false,"tool_call":true},"o4-mini-deep-research":{"attachment":true,"cost":{"cache_read":0.5,"input":2,"output":8},"family":"o-mini","id":"o4-mini-deep-research","knowledge":"2024-05","last_updated":"2024-06-26","limit":{"context":200000,"output":100000},"modalities":{"input":["text","image"],"output":["text"]},"name":"o4-mini-deep-research","open_weights":false,"reasoning":true,"release_date":"2024-06-26","temperature":false,"tool_call":true},"text-embedding-3-large":{"attachment":false,"cost":{"input":0.13,"output":0},"family":"text-embedding","id":"text-embedding-3-large","knowledge":"2024-01","last_updated":"2024-01-25","limit":{"context":8191,"output":3072},"modalities":{"input":["text"],"output":["text"]},"name":"text-embedding-3-large","open_weights":false,"reasoning":false,"release_date":"2024-01-25","temperature":false,"tool_call":false},"text-embedding-3-small":{"attachment":false,"cost":{"input":0.02,"output":0},"family":"text-embedding","id":"text-embedding-3-small","knowledge":"2024-01","last_updated":"2024-01-25","limit":{"context":8191,"output":1536},"modalities":{"input":["text"],"output":["text"]},"name":"text-embedding-3-small","open_weights":false,"reasoning":false,"release_date":"2024-01-25","temperature":false,"tool_call":false},"text-embedding-ada-002":{"attachment":false,"cost":{"input":0.1,"output":0},"family":"text-embedding","id":"text-embedding-ada-002","knowledge":"2022-12","last_updated":"2022-12-15","limit":{"context":8192,"output":1536},"modalities":{"input":["text"],"output":["text"]},"name":"text-embedding-ada-002","open_weights":false,"reasoning":false,"release_date":"2022-12-15","temperature":false,"tool_call":false}},"name":"OpenAI","npm":"@ai-sdk/openai"},"opencode":{"api":"https://opencode.ai/zen/v1","doc":"https://opencode.ai/docs/zen","env":["OPENCODE_API_KEY"],"id":"opencode","models":{"big-pickle":{"attachment":false,"cost":{"cache_read":0,"cache_write":0,"input":0,"output":0},"family":"big-pickle","id":"big-pickle","interleaved":{"field":"reasoning_content"},"knowledge":"2025-01","last_updated":"2025-10-17","limit":{"context":200000,"input":160000,"output":32000},"modalities":{"input":["text"],"output":["text"]},"name":"Big Pickle","open_weights":false,"reasoning":true,"release_date":"2025-10-17","structured_output":true,"temperature":true,"tool_call":true},"claude-3-5-haiku":{"attachment":true,"cost":{"cache_read":0.08,"cache_write":1,"input":0.8,"output":4},"family":"claude-haiku","id":"claude-3-5-haiku","knowledge":"2024-07-31","last_updated":"2024-10-22","limit":{"context":200000,"output":8192},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Haiku 3.5","open_weights":false,"provider":{"npm":"@ai-sdk/anthropic"},"reasoning":false,"release_date":"2024-10-22","status":"deprecated","temperature":true,"tool_call":true},"claude-haiku-4-5":{"attachment":true,"cost":{"cache_read":0.1,"cache_write":1.25,"input":1,"output":5},"family":"claude-haiku","id":"claude-haiku-4-5","knowledge":"2025-02-28","last_updated":"2025-10-15","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Haiku 4.5","open_weights":false,"provider":{"npm":"@ai-sdk/anthropic"},"reasoning":true,"release_date":"2025-10-15","temperature":true,"tool_call":true},"claude-opus-4-1":{"attachment":true,"cost":{"cache_read":1.5,"cache_write":18.75,"input":15,"output":75},"family":"claude-opus","id":"claude-opus-4-1","knowledge":"2025-03-31","last_updated":"2025-08-05","limit":{"context":200000,"output":32000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.1","open_weights":false,"provider":{"npm":"@ai-sdk/anthropic"},"reasoning":true,"release_date":"2025-08-05","temperature":true,"tool_call":true},"claude-opus-4-5":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"input":5,"output":25},"family":"claude-opus","id":"claude-opus-4-5","knowledge":"2025-03-31","last_updated":"2025-11-24","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.5","open_weights":false,"provider":{"npm":"@ai-sdk/anthropic"},"reasoning":true,"release_date":"2025-11-24","temperature":true,"tool_call":true},"claude-opus-4-6":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"input":5,"output":25},"family":"claude-opus","id":"claude-opus-4-6","knowledge":"2025-05-31","last_updated":"2026-03-13","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.6","open_weights":false,"provider":{"npm":"@ai-sdk/anthropic"},"reasoning":true,"release_date":"2026-02-05","temperature":true,"tool_call":true},"claude-opus-4-7":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"input":5,"output":25},"family":"claude-opus","id":"claude-opus-4-7","knowledge":"2026-01-31","last_updated":"2026-04-16","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.7","open_weights":false,"provider":{"npm":"@ai-sdk/anthropic"},"reasoning":true,"release_date":"2026-04-16","temperature":false,"tool_call":true},"claude-opus-4-8":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"input":5,"output":25},"family":"claude-opus","id":"claude-opus-4-8","last_updated":"2026-05-28","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.8","open_weights":false,"provider":{"npm":"@ai-sdk/anthropic"},"reasoning":true,"release_date":"2026-05-28","temperature":false,"tool_call":true},"claude-sonnet-4":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"context_over_200k":{"cache_read":0.6,"cache_write":7.5,"input":6,"output":22.5},"input":3,"output":15,"tiers":[{"cache_read":0.6,"cache_write":7.5,"input":6,"output":22.5,"tier":{"size":200000,"type":"context"}}]},"family":"claude-sonnet","id":"claude-sonnet-4","knowledge":"2025-03-31","last_updated":"2025-05-22","limit":{"context":1000000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 4","open_weights":false,"provider":{"npm":"@ai-sdk/anthropic"},"reasoning":true,"release_date":"2025-05-22","temperature":true,"tool_call":true},"claude-sonnet-4-5":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"context_over_200k":{"cache_read":0.6,"cache_write":7.5,"input":6,"output":22.5},"input":3,"output":15,"tiers":[{"cache_read":0.6,"cache_write":7.5,"input":6,"output":22.5,"tier":{"size":200000,"type":"context"}}]},"family":"claude-sonnet","id":"claude-sonnet-4-5","interleaved":true,"knowledge":"2025-07-31","last_updated":"2025-09-29","limit":{"context":1000000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 4.5","open_weights":false,"provider":{"npm":"@ai-sdk/anthropic"},"reasoning":true,"release_date":"2025-09-29","temperature":true,"tool_call":true},"claude-sonnet-4-6":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"input":3,"output":15},"family":"claude-sonnet","id":"claude-sonnet-4-6","interleaved":true,"knowledge":"2025-08-31","last_updated":"2026-02-17","limit":{"context":1000000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 4.6","open_weights":false,"provider":{"npm":"@ai-sdk/anthropic"},"reasoning":true,"release_date":"2026-02-17","temperature":true,"tool_call":true},"deepseek-v4-flash":{"attachment":false,"cost":{"cache_read":0.03,"input":0.14,"output":0.28},"family":"deepseek-flash","id":"deepseek-v4-flash","interleaved":{"field":"reasoning_content"},"knowledge":"2025-05","last_updated":"2026-04-24","limit":{"context":1000000,"output":384000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V4 Flash","open_weights":true,"reasoning":true,"release_date":"2026-04-24","structured_output":true,"temperature":true,"tool_call":true},"deepseek-v4-flash-free":{"attachment":false,"cost":{"cache_read":0,"input":0,"output":0},"family":"deepseek-flash-free","id":"deepseek-v4-flash-free","interleaved":{"field":"reasoning_content"},"knowledge":"2025-05","last_updated":"2026-04-24","limit":{"context":200000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V4 Flash Free","open_weights":true,"reasoning":true,"release_date":"2026-04-24","structured_output":true,"temperature":true,"tool_call":true},"gemini-3-flash":{"attachment":true,"cost":{"cache_read":0.05,"input":0.5,"output":3},"family":"gemini-flash","id":"gemini-3-flash","knowledge":"2025-01","last_updated":"2025-12-17","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"name":"Gemini 3 Flash","open_weights":false,"provider":{"npm":"@ai-sdk/google"},"reasoning":true,"release_date":"2025-12-17","structured_output":true,"temperature":true,"tool_call":true},"gemini-3-pro":{"attachment":true,"cost":{"cache_read":0.2,"context_over_200k":{"cache_read":0.4,"input":4,"output":18},"input":2,"output":12,"tiers":[{"cache_read":0.4,"input":4,"output":18,"tier":{"size":200000,"type":"context"}}]},"family":"gemini-pro","id":"gemini-3-pro","knowledge":"2025-01","last_updated":"2025-11-18","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"name":"Gemini 3 Pro","open_weights":false,"provider":{"npm":"@ai-sdk/google"},"reasoning":true,"release_date":"2025-11-18","status":"deprecated","structured_output":true,"temperature":true,"tool_call":true},"gemini-3.1-pro":{"attachment":true,"cost":{"cache_read":0.2,"context_over_200k":{"cache_read":0.4,"input":4,"output":18},"input":2,"output":12,"tiers":[{"cache_read":0.4,"input":4,"output":18,"tier":{"size":200000,"type":"context"}}]},"family":"gemini-pro","id":"gemini-3.1-pro","knowledge":"2025-01","last_updated":"2026-02-19","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"name":"Gemini 3.1 Pro Preview","open_weights":false,"provider":{"npm":"@ai-sdk/google"},"reasoning":true,"release_date":"2026-02-19","structured_output":true,"temperature":true,"tool_call":true},"gemini-3.5-flash":{"attachment":true,"cost":{"cache_read":0.15,"input":1.5,"input_audio":1.5,"output":9},"family":"gemini-flash","id":"gemini-3.5-flash","knowledge":"2025-01","last_updated":"2026-05-19","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"name":"Gemini 3.5 Flash","open_weights":false,"provider":{"npm":"@ai-sdk/google"},"reasoning":true,"release_date":"2026-05-19","structured_output":true,"temperature":true,"tool_call":true},"glm-4.6":{"attachment":false,"cost":{"cache_read":0.1,"input":0.6,"output":2.2},"family":"glm","id":"glm-4.6","knowledge":"2025-04","last_updated":"2025-09-30","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4.6","open_weights":true,"reasoning":true,"release_date":"2025-09-30","status":"deprecated","temperature":true,"tool_call":true},"glm-4.7":{"attachment":false,"cost":{"cache_read":0.1,"input":0.6,"output":2.2},"family":"glm","id":"glm-4.7","interleaved":{"field":"reasoning_content"},"knowledge":"2025-04","last_updated":"2025-12-22","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4.7","open_weights":true,"reasoning":true,"release_date":"2025-12-22","status":"deprecated","temperature":true,"tool_call":true},"glm-4.7-free":{"attachment":false,"cost":{"cache_read":0,"input":0,"output":0},"family":"glm-free","id":"glm-4.7-free","interleaved":{"field":"reasoning_content"},"knowledge":"2025-04","last_updated":"2025-12-22","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4.7 Free","open_weights":true,"reasoning":true,"release_date":"2025-12-22","status":"deprecated","temperature":true,"tool_call":true},"glm-5":{"attachment":false,"cost":{"cache_read":0.2,"input":1,"output":3.2},"family":"glm","id":"glm-5","interleaved":{"field":"reasoning_content"},"knowledge":"2025-04","last_updated":"2026-02-11","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-5","open_weights":true,"reasoning":true,"release_date":"2026-02-11","temperature":true,"tool_call":true},"glm-5-free":{"attachment":false,"cost":{"cache_read":0,"input":0,"output":0},"family":"glm-free","id":"glm-5-free","interleaved":{"field":"reasoning_content"},"knowledge":"2025-04","last_updated":"2026-02-11","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-5 Free","open_weights":true,"reasoning":true,"release_date":"2026-02-11","status":"deprecated","temperature":true,"tool_call":true},"glm-5.1":{"attachment":false,"cost":{"cache_read":0.26,"input":1.4,"output":4.4},"family":"glm","id":"glm-5.1","interleaved":{"field":"reasoning_content"},"knowledge":"2025-04","last_updated":"2026-04-07","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-5.1","open_weights":true,"reasoning":true,"release_date":"2026-04-07","temperature":true,"tool_call":true},"gpt-5":{"attachment":true,"cost":{"cache_read":0.107,"input":1.07,"output":8.5},"family":"gpt","id":"gpt-5","knowledge":"2024-09-30","last_updated":"2025-08-07","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5","open_weights":false,"provider":{"npm":"@ai-sdk/openai"},"reasoning":true,"release_date":"2025-08-07","structured_output":true,"temperature":false,"tool_call":true},"gpt-5-codex":{"attachment":true,"cost":{"cache_read":0.107,"input":1.07,"output":8.5},"family":"gpt-codex","id":"gpt-5-codex","knowledge":"2024-09-30","last_updated":"2025-09-15","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5 Codex","open_weights":false,"provider":{"npm":"@ai-sdk/openai"},"reasoning":true,"release_date":"2025-09-15","structured_output":true,"temperature":false,"tool_call":true},"gpt-5-nano":{"attachment":true,"cost":{"cache_read":0.005,"input":0.05,"output":0.4},"family":"gpt-nano","id":"gpt-5-nano","knowledge":"2024-05-30","last_updated":"2025-08-07","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5 Nano","open_weights":false,"provider":{"npm":"@ai-sdk/openai"},"reasoning":true,"release_date":"2025-08-07","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.1":{"attachment":true,"cost":{"cache_read":0.107,"input":1.07,"output":8.5},"family":"gpt","id":"gpt-5.1","knowledge":"2024-09-30","last_updated":"2025-11-13","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.1","open_weights":false,"provider":{"npm":"@ai-sdk/openai"},"reasoning":true,"release_date":"2025-11-13","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.1-codex":{"attachment":true,"cost":{"cache_read":0.107,"input":1.07,"output":8.5},"family":"gpt-codex","id":"gpt-5.1-codex","knowledge":"2024-09-30","last_updated":"2025-11-13","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.1 Codex","open_weights":false,"provider":{"npm":"@ai-sdk/openai"},"reasoning":true,"release_date":"2025-11-13","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.1-codex-max":{"attachment":true,"cost":{"cache_read":0.125,"input":1.25,"output":10},"family":"gpt-codex","id":"gpt-5.1-codex-max","knowledge":"2024-09-30","last_updated":"2025-11-13","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.1 Codex Max","open_weights":false,"provider":{"npm":"@ai-sdk/openai"},"reasoning":true,"release_date":"2025-11-13","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.1-codex-mini":{"attachment":true,"cost":{"cache_read":0.025,"input":0.25,"output":2},"family":"gpt-codex","id":"gpt-5.1-codex-mini","knowledge":"2024-09-30","last_updated":"2025-11-13","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.1 Codex Mini","open_weights":false,"provider":{"npm":"@ai-sdk/openai"},"reasoning":true,"release_date":"2025-11-13","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.2":{"attachment":true,"cost":{"cache_read":0.175,"input":1.75,"output":14},"family":"gpt","id":"gpt-5.2","knowledge":"2025-08-31","last_updated":"2025-12-11","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.2","open_weights":false,"provider":{"npm":"@ai-sdk/openai"},"reasoning":true,"release_date":"2025-12-11","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.2-codex":{"attachment":true,"cost":{"cache_read":0.175,"input":1.75,"output":14},"family":"gpt-codex","id":"gpt-5.2-codex","knowledge":"2025-08-31","last_updated":"2026-01-14","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5.2 Codex","open_weights":false,"provider":{"npm":"@ai-sdk/openai"},"reasoning":true,"release_date":"2026-01-14","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.3-codex":{"attachment":true,"cost":{"cache_read":0.175,"input":1.75,"output":14},"family":"gpt-codex","id":"gpt-5.3-codex","knowledge":"2025-08-31","last_updated":"2026-02-24","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5.3 Codex","open_weights":false,"provider":{"npm":"@ai-sdk/openai"},"reasoning":true,"release_date":"2026-02-24","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.3-codex-spark":{"attachment":false,"cost":{"cache_read":0.175,"input":1.75,"output":14},"family":"gpt-codex-spark","id":"gpt-5.3-codex-spark","knowledge":"2025-08-31","last_updated":"2026-02-12","limit":{"context":128000,"input":128000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"GPT-5.3 Codex Spark","open_weights":false,"provider":{"npm":"@ai-sdk/openai"},"reasoning":true,"release_date":"2026-02-12","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.4":{"attachment":true,"cost":{"cache_read":0.25,"context_over_200k":{"cache_read":0.5,"input":5,"output":22.5},"input":2.5,"output":15,"tiers":[{"cache_read":0.5,"input":5,"output":22.5,"tier":{"size":272000,"type":"context"}}]},"family":"gpt","id":"gpt-5.4","knowledge":"2025-08-31","last_updated":"2026-03-05","limit":{"context":1050000,"input":922000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5.4","open_weights":false,"provider":{"npm":"@ai-sdk/openai"},"reasoning":true,"release_date":"2026-03-05","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.4-mini":{"attachment":true,"cost":{"cache_read":0.075,"input":0.75,"output":4.5},"family":"gpt-mini","id":"gpt-5.4-mini","knowledge":"2025-08-31","last_updated":"2026-03-17","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5.4 Mini","open_weights":false,"provider":{"npm":"@ai-sdk/openai"},"reasoning":true,"release_date":"2026-03-17","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.4-nano":{"attachment":true,"cost":{"cache_read":0.02,"input":0.2,"output":1.25},"family":"gpt-nano","id":"gpt-5.4-nano","knowledge":"2025-08-31","last_updated":"2026-03-17","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5.4 Nano","open_weights":false,"provider":{"npm":"@ai-sdk/openai"},"reasoning":true,"release_date":"2026-03-17","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.4-pro":{"attachment":true,"cost":{"cache_read":30,"input":30,"output":180},"family":"gpt-pro","id":"gpt-5.4-pro","knowledge":"2025-08-31","last_updated":"2026-03-05","limit":{"context":1050000,"input":922000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5.4 Pro","open_weights":false,"provider":{"npm":"@ai-sdk/openai"},"reasoning":true,"release_date":"2026-03-05","structured_output":false,"temperature":false,"tool_call":true},"gpt-5.5":{"attachment":true,"cost":{"cache_read":0.5,"context_over_200k":{"cache_read":1,"input":10,"output":45},"input":5,"output":30,"tiers":[{"cache_read":1,"input":10,"output":45,"tier":{"size":272000,"type":"context"}}]},"family":"gpt","id":"gpt-5.5","knowledge":"2025-12-01","last_updated":"2026-04-23","limit":{"context":1050000,"input":922000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5.5","open_weights":false,"provider":{"npm":"@ai-sdk/openai"},"reasoning":true,"release_date":"2026-04-23","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.5-pro":{"attachment":true,"cost":{"cache_read":30,"input":30,"output":180},"family":"gpt-pro","id":"gpt-5.5-pro","knowledge":"2025-12-01","last_updated":"2026-04-24","limit":{"context":1050000,"input":922000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5.5 Pro","open_weights":false,"provider":{"npm":"@ai-sdk/openai"},"reasoning":true,"release_date":"2026-04-24","structured_output":false,"temperature":false,"tool_call":true},"grok-build-0.1":{"attachment":true,"cost":{"cache_read":0.2,"input":1,"output":2},"family":"grok-build","id":"grok-build-0.1","last_updated":"2026-05-20","limit":{"context":256000,"output":256000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Grok Build 0.1","open_weights":false,"reasoning":true,"release_date":"2026-05-20","structured_output":true,"temperature":true,"tool_call":true},"grok-code":{"attachment":true,"cost":{"cache_read":0,"cache_write":0,"input":0,"output":0},"family":"grok","id":"grok-code","last_updated":"2025-08-20","limit":{"context":256000,"output":256000},"modalities":{"input":["text"],"output":["text"]},"name":"Grok Code Fast 1","open_weights":false,"reasoning":true,"release_date":"2025-08-20","status":"deprecated","temperature":true,"tool_call":true},"hy3-preview-free":{"attachment":false,"cost":{"cache_read":0,"input":0,"output":0},"family":"hy3-free","id":"hy3-preview-free","knowledge":"2025-06","last_updated":"2026-04-20","limit":{"context":256000,"output":64000},"modalities":{"input":["text"],"output":["text"]},"name":"Hy3 preview Free","open_weights":true,"reasoning":true,"release_date":"2026-04-20","status":"deprecated","temperature":true,"tool_call":true},"kimi-k2":{"attachment":false,"cost":{"cache_read":0.4,"input":0.4,"output":2.5},"family":"kimi","id":"kimi-k2","knowledge":"2024-10","last_updated":"2025-09-05","limit":{"context":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Kimi K2","open_weights":true,"reasoning":false,"release_date":"2025-09-05","status":"deprecated","temperature":true,"tool_call":true},"kimi-k2-thinking":{"attachment":false,"cost":{"cache_read":0.4,"input":0.4,"output":2.5},"family":"kimi-thinking","id":"kimi-k2-thinking","interleaved":{"field":"reasoning_content"},"knowledge":"2024-10","last_updated":"2025-09-05","limit":{"context":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Kimi K2 Thinking","open_weights":true,"reasoning":true,"release_date":"2025-09-05","status":"deprecated","temperature":true,"tool_call":true},"kimi-k2.5":{"attachment":true,"cost":{"cache_read":0.08,"input":0.6,"output":3},"family":"kimi","id":"kimi-k2.5","interleaved":{"field":"reasoning_content"},"knowledge":"2024-10","last_updated":"2026-01-27","limit":{"context":262144,"output":65536},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Kimi K2.5","open_weights":true,"reasoning":true,"release_date":"2026-01-27","temperature":true,"tool_call":true},"kimi-k2.5-free":{"attachment":true,"cost":{"cache_read":0,"input":0,"output":0},"family":"kimi-free","id":"kimi-k2.5-free","interleaved":{"field":"reasoning_content"},"knowledge":"2024-10","last_updated":"2026-01-27","limit":{"context":262144,"output":262144},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Kimi K2.5 Free","open_weights":true,"reasoning":true,"release_date":"2026-01-27","status":"deprecated","temperature":true,"tool_call":true},"kimi-k2.6":{"attachment":true,"cost":{"cache_read":0.16,"input":0.95,"output":4},"family":"kimi","id":"kimi-k2.6","interleaved":{"field":"reasoning_content"},"knowledge":"2024-10","last_updated":"2026-04-21","limit":{"context":262144,"output":65536},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Kimi K2.6","open_weights":true,"reasoning":true,"release_date":"2026-04-21","temperature":true,"tool_call":true},"ling-2.6-flash-free":{"attachment":false,"cost":{"input":0,"output":0},"family":"ling-flash-free","id":"ling-2.6-flash-free","knowledge":"2025-06","last_updated":"2026-04-21","limit":{"context":262100,"output":32800},"modalities":{"input":["text"],"output":["text"]},"name":"Ling 2.6 Flash Free","open_weights":true,"reasoning":false,"release_date":"2026-04-21","status":"deprecated","temperature":true,"tool_call":true},"mimo-v2-flash-free":{"attachment":false,"cost":{"cache_read":0,"input":0,"output":0},"family":"mimo-flash-free","id":"mimo-v2-flash-free","interleaved":{"field":"reasoning_content"},"knowledge":"2024-12","last_updated":"2025-12-16","limit":{"context":262144,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"MiMo V2 Flash Free","open_weights":true,"reasoning":true,"release_date":"2025-12-16","status":"deprecated","temperature":true,"tool_call":true},"mimo-v2-omni-free":{"attachment":true,"cost":{"cache_read":0,"input":0,"output":0},"family":"mimo-omni-free","id":"mimo-v2-omni-free","interleaved":{"field":"reasoning_content"},"knowledge":"2024-12","last_updated":"2026-03-18","limit":{"context":262144,"output":64000},"modalities":{"input":["text","image","audio","pdf"],"output":["text"]},"name":"MiMo V2 Omni Free","open_weights":true,"reasoning":true,"release_date":"2026-03-18","status":"deprecated","temperature":true,"tool_call":true},"mimo-v2-pro-free":{"attachment":true,"cost":{"cache_read":0,"input":0,"output":0},"family":"mimo-pro-free","id":"mimo-v2-pro-free","interleaved":{"field":"reasoning_content"},"knowledge":"2024-12","last_updated":"2026-03-18","limit":{"context":1048576,"output":64000},"modalities":{"input":["text"],"output":["text"]},"name":"MiMo V2 Pro Free","open_weights":true,"reasoning":true,"release_date":"2026-03-18","status":"deprecated","temperature":true,"tool_call":true},"mimo-v2.5-free":{"attachment":true,"cost":{"cache_read":0,"input":0,"output":0},"family":"mimo-v2.5-free","id":"mimo-v2.5-free","interleaved":{"field":"reasoning_content"},"knowledge":"2024-12","last_updated":"2026-04-24","limit":{"context":200000,"output":32000},"modalities":{"input":["text","image","audio","video"],"output":["text"]},"name":"MiMo V2.5 Free","open_weights":true,"reasoning":true,"release_date":"2026-04-24","temperature":true,"tool_call":true},"minimax-m2.1":{"attachment":false,"cost":{"cache_read":0.1,"input":0.3,"output":1.2},"family":"minimax","id":"minimax-m2.1","interleaved":{"field":"reasoning_content"},"knowledge":"2025-01","last_updated":"2025-12-23","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax M2.1","open_weights":true,"reasoning":true,"release_date":"2025-12-23","status":"deprecated","temperature":true,"tool_call":true},"minimax-m2.1-free":{"attachment":false,"cost":{"cache_read":0,"input":0,"output":0},"family":"minimax-free","id":"minimax-m2.1-free","knowledge":"2025-01","last_updated":"2025-12-23","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax M2.1 Free","open_weights":true,"provider":{"npm":"@ai-sdk/anthropic"},"reasoning":true,"release_date":"2025-12-23","status":"deprecated","temperature":true,"tool_call":true},"minimax-m2.5":{"attachment":false,"cost":{"cache_read":0.06,"input":0.3,"output":1.2},"family":"minimax","id":"minimax-m2.5","interleaved":{"field":"reasoning_content"},"knowledge":"2025-01","last_updated":"2026-02-12","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax M2.5","open_weights":true,"reasoning":true,"release_date":"2026-02-12","temperature":true,"tool_call":true},"minimax-m2.5-free":{"attachment":false,"cost":{"cache_read":0,"input":0,"output":0},"family":"minimax-free","id":"minimax-m2.5-free","knowledge":"2025-01","last_updated":"2026-02-12","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax M2.5 Free","open_weights":true,"provider":{"npm":"@ai-sdk/anthropic"},"reasoning":true,"release_date":"2026-02-12","status":"deprecated","temperature":true,"tool_call":true},"minimax-m2.7":{"attachment":false,"cost":{"cache_read":0.06,"input":0.3,"output":1.2},"family":"minimax","id":"minimax-m2.7","interleaved":{"field":"reasoning_content"},"knowledge":"2025-01","last_updated":"2026-03-18","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax M2.7","open_weights":true,"reasoning":true,"release_date":"2026-03-18","temperature":true,"tool_call":true},"minimax-m3-free":{"attachment":false,"cost":{"cache_read":0,"input":0,"output":0},"family":"minimax-m3-free","id":"minimax-m3-free","knowledge":"2025-01","last_updated":"2026-05-31","limit":{"context":200000,"output":32000},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"MiniMax M3 Free","open_weights":true,"provider":{"npm":"@ai-sdk/anthropic"},"reasoning":true,"release_date":"2026-05-31","temperature":true,"tool_call":true},"nemotron-3-super-free":{"attachment":false,"cost":{"cache_read":0,"input":0,"output":0},"family":"nemotron-free","id":"nemotron-3-super-free","interleaved":{"field":"reasoning_content"},"knowledge":"2026-02","last_updated":"2026-03-11","limit":{"context":204800,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"Nemotron 3 Super Free","open_weights":true,"reasoning":true,"release_date":"2026-03-11","temperature":true,"tool_call":true},"qwen3-coder":{"attachment":false,"cost":{"input":0.45,"output":1.8},"family":"qwen","id":"qwen3-coder","knowledge":"2025-04","last_updated":"2025-07-23","limit":{"context":262144,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Coder","open_weights":true,"reasoning":false,"release_date":"2025-07-23","status":"deprecated","temperature":true,"tool_call":true},"qwen3.5-plus":{"attachment":true,"cost":{"cache_read":0.02,"cache_write":0.25,"input":0.2,"output":1.2},"family":"qwen3.5","id":"qwen3.5-plus","knowledge":"2025-04","last_updated":"2026-02-16","limit":{"context":262144,"output":65536},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.5 Plus","open_weights":false,"provider":{"npm":"@ai-sdk/anthropic"},"reasoning":true,"release_date":"2026-02-16","temperature":true,"tool_call":true},"qwen3.6-plus":{"attachment":true,"cost":{"cache_read":0.05,"cache_write":0.625,"input":0.5,"output":3},"family":"qwen3.6","id":"qwen3.6-plus","knowledge":"2025-04","last_updated":"2026-04-02","limit":{"context":262144,"output":65536},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.6 Plus","open_weights":false,"provider":{"npm":"@ai-sdk/anthropic"},"reasoning":true,"release_date":"2026-04-02","temperature":true,"tool_call":true},"qwen3.6-plus-free":{"attachment":true,"cost":{"cache_read":0,"input":0,"output":0},"family":"qwen-free","id":"qwen3.6-plus-free","knowledge":"2025-04","last_updated":"2026-04-02","limit":{"context":262144,"output":65536},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.6 Plus Free","open_weights":false,"provider":{"npm":"@ai-sdk/anthropic"},"reasoning":true,"release_date":"2026-04-02","status":"deprecated","temperature":true,"tool_call":true},"ring-2.6-1t-free":{"attachment":false,"cost":{"input":0,"output":0},"family":"ring-1t-free","id":"ring-2.6-1t-free","interleaved":{"field":"reasoning_content"},"knowledge":"2025-06","last_updated":"2026-05-08","limit":{"context":262000,"output":66000},"modalities":{"input":["text"],"output":["text"]},"name":"Ring 2.6 1T Free","open_weights":true,"reasoning":true,"release_date":"2026-05-08","status":"deprecated","temperature":true,"tool_call":true},"trinity-large-preview-free":{"attachment":false,"cost":{"input":0,"output":0},"family":"trinity","id":"trinity-large-preview-free","knowledge":"2025-06","last_updated":"2026-01-28","limit":{"context":131072,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"Trinity Large Preview","open_weights":true,"reasoning":false,"release_date":"2026-01-28","status":"deprecated","temperature":true,"tool_call":true}},"name":"OpenCode Zen","npm":"@ai-sdk/openai-compatible"},"opencode-go":{"api":"https://opencode.ai/zen/go/v1","doc":"https://opencode.ai/docs/zen","env":["OPENCODE_API_KEY"],"id":"opencode-go","models":{"deepseek-v4-flash":{"attachment":false,"cost":{"cache_read":0.0028,"input":0.14,"output":0.28},"family":"deepseek-flash","id":"deepseek-v4-flash","interleaved":{"field":"reasoning_content"},"knowledge":"2025-05","last_updated":"2026-04-24","limit":{"context":1000000,"output":384000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V4 Flash","open_weights":true,"reasoning":true,"release_date":"2026-04-24","structured_output":true,"temperature":true,"tool_call":true},"deepseek-v4-pro":{"attachment":false,"cost":{"cache_read":0.0145,"input":1.74,"output":3.48},"family":"deepseek-thinking","id":"deepseek-v4-pro","interleaved":{"field":"reasoning_content"},"knowledge":"2025-05","last_updated":"2026-04-24","limit":{"context":1000000,"output":384000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V4 Pro","open_weights":true,"reasoning":true,"release_date":"2026-04-24","structured_output":true,"temperature":true,"tool_call":true},"glm-5":{"attachment":false,"cost":{"cache_read":0.2,"input":1,"output":3.2},"family":"glm","id":"glm-5","interleaved":{"field":"reasoning_content"},"knowledge":"2025-04","last_updated":"2026-02-11","limit":{"context":202752,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-5","open_weights":true,"reasoning":true,"release_date":"2026-02-11","temperature":true,"tool_call":true},"glm-5.1":{"attachment":false,"cost":{"cache_read":0.26,"input":1.4,"output":4.4},"family":"glm","id":"glm-5.1","interleaved":{"field":"reasoning_content"},"knowledge":"2025-04","last_updated":"2026-04-07","limit":{"context":202752,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-5.1","open_weights":true,"reasoning":true,"release_date":"2026-04-07","temperature":true,"tool_call":true},"kimi-k2.5":{"attachment":true,"cost":{"cache_read":0.1,"input":0.6,"output":3},"family":"kimi-k2.5","id":"kimi-k2.5","interleaved":{"field":"reasoning_content"},"knowledge":"2024-10","last_updated":"2026-01-27","limit":{"context":262144,"output":65536},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Kimi K2.5","open_weights":true,"reasoning":true,"release_date":"2026-01-27","temperature":true,"tool_call":true},"kimi-k2.6":{"attachment":true,"cost":{"cache_read":0.16,"input":0.95,"output":4},"family":"kimi-k2.6","id":"kimi-k2.6","interleaved":{"field":"reasoning_content"},"knowledge":"2024-10","last_updated":"2026-04-21","limit":{"context":262144,"output":65536},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Kimi K2.6","open_weights":true,"reasoning":true,"release_date":"2026-04-21","temperature":true,"tool_call":true},"mimo-v2-omni":{"attachment":true,"cost":{"cache_read":0.08,"input":0.4,"output":2},"family":"mimo-v2-omni","id":"mimo-v2-omni","interleaved":{"field":"reasoning_content"},"knowledge":"2024-12","last_updated":"2026-03-18","limit":{"context":262144,"output":128000},"modalities":{"input":["text","image","audio","pdf"],"output":["text"]},"name":"MiMo V2 Omni","open_weights":true,"reasoning":true,"release_date":"2026-03-18","status":"deprecated","temperature":true,"tool_call":true},"mimo-v2-pro":{"attachment":true,"cost":{"cache_read":0.2,"context_over_200k":{"cache_read":0.4,"input":2,"output":6},"input":1,"output":3,"tiers":[{"cache_read":0.4,"input":2,"output":6,"tier":{"size":256000,"type":"context"}}]},"family":"mimo-v2-pro","id":"mimo-v2-pro","interleaved":{"field":"reasoning_content"},"knowledge":"2024-12","last_updated":"2026-03-18","limit":{"context":1048576,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"MiMo V2 Pro","open_weights":true,"reasoning":true,"release_date":"2026-03-18","status":"deprecated","temperature":true,"tool_call":true},"mimo-v2.5":{"attachment":true,"cost":{"cache_read":0.0028,"input":0.14,"output":0.28},"family":"mimo-v2.5","id":"mimo-v2.5","interleaved":{"field":"reasoning_content"},"knowledge":"2024-12","last_updated":"2026-04-22","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","audio","video"],"output":["text"]},"name":"MiMo V2.5","open_weights":true,"reasoning":true,"release_date":"2026-04-22","temperature":true,"tool_call":true},"mimo-v2.5-pro":{"attachment":true,"cost":{"cache_read":0.0145,"input":1.74,"output":3.48},"family":"mimo-v2.5-pro","id":"mimo-v2.5-pro","interleaved":{"field":"reasoning_content"},"knowledge":"2024-12","last_updated":"2026-04-22","limit":{"context":1048576,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"MiMo V2.5 Pro","open_weights":true,"reasoning":true,"release_date":"2026-04-22","temperature":true,"tool_call":true},"minimax-m2.5":{"attachment":false,"cost":{"cache_read":0.03,"input":0.3,"output":1.2},"family":"minimax-m2.5","id":"minimax-m2.5","knowledge":"2025-01","last_updated":"2026-02-12","limit":{"context":204800,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax M2.5","open_weights":true,"provider":{"npm":"@ai-sdk/anthropic"},"reasoning":true,"release_date":"2026-02-12","temperature":true,"tool_call":true},"minimax-m2.7":{"attachment":false,"cost":{"cache_read":0.06,"input":0.3,"output":1.2},"family":"minimax-m2.7","id":"minimax-m2.7","knowledge":"2025-01","last_updated":"2026-03-18","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax M2.7","open_weights":true,"provider":{"npm":"@ai-sdk/anthropic"},"reasoning":true,"release_date":"2026-03-18","temperature":true,"tool_call":true},"minimax-m3":{"attachment":false,"cost":{"cache_read":0.12,"input":0.6,"output":2.4},"family":"minimax-m3","id":"minimax-m3","knowledge":"2025-01","last_updated":"2026-05-31","limit":{"context":512000,"output":131072},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"MiniMax M3","open_weights":true,"provider":{"npm":"@ai-sdk/anthropic"},"reasoning":true,"release_date":"2026-05-31","temperature":true,"tool_call":true},"qwen3.5-plus":{"attachment":true,"cost":{"cache_read":0.02,"cache_write":0.25,"input":0.2,"output":1.2},"family":"qwen3.5","id":"qwen3.5-plus","knowledge":"2025-04","last_updated":"2026-02-16","limit":{"context":262144,"output":65536},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.5 Plus","open_weights":false,"provider":{"npm":"@ai-sdk/anthropic"},"reasoning":true,"release_date":"2026-02-16","status":"deprecated","temperature":true,"tool_call":true},"qwen3.6-plus":{"attachment":true,"cost":{"cache_read":0.05,"cache_write":0.625,"input":0.5,"output":3},"family":"qwen3.6","id":"qwen3.6-plus","knowledge":"2025-04","last_updated":"2026-04-02","limit":{"context":262144,"output":65536},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.6 Plus","open_weights":false,"provider":{"npm":"@ai-sdk/anthropic"},"reasoning":true,"release_date":"2026-04-02","temperature":true,"tool_call":true},"qwen3.7-max":{"attachment":false,"cost":{"cache_read":0.5,"cache_write":3.125,"input":2.5,"output":7.5},"family":"qwen3.7-max","id":"qwen3.7-max","last_updated":"2026-05-21","limit":{"context":1000000,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3.7 Max","open_weights":false,"provider":{"npm":"@ai-sdk/anthropic"},"reasoning":true,"release_date":"2026-05-21","temperature":true,"tool_call":true},"qwen3.7-plus":{"attachment":true,"cost":{"cache_read":0.04,"cache_write":0.5,"input":0.4,"output":1.6},"family":"qwen3.7-plus","id":"qwen3.7-plus","last_updated":"2026-06-02","limit":{"context":262144,"output":65536},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.7 Plus","open_weights":false,"provider":{"npm":"@ai-sdk/anthropic"},"reasoning":true,"release_date":"2026-06-02","temperature":true,"tool_call":true}},"name":"OpenCode Go","npm":"@ai-sdk/openai-compatible"},"openrouter":{"api":"https://openrouter.ai/api/v1","doc":"https://openrouter.ai/models","env":["OPENROUTER_API_KEY"],"id":"openrouter","models":{"ai21/jamba-large-1.7":{"attachment":false,"cost":{"input":2,"output":8},"family":"jamba","id":"ai21/jamba-large-1.7","knowledge":"2024-08-31","last_updated":"2025-08-08","limit":{"context":256000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Jamba Large 1.7","open_weights":true,"reasoning":false,"release_date":"2025-08-08","structured_output":false,"temperature":true,"tool_call":true},"aion-labs/aion-1.0":{"attachment":false,"cost":{"input":4,"output":8},"id":"aion-labs/aion-1.0","last_updated":"2025-02-04","limit":{"context":131072,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Aion-1.0","open_weights":false,"reasoning":true,"release_date":"2025-02-04","structured_output":false,"temperature":true,"tool_call":false},"aion-labs/aion-1.0-mini":{"attachment":false,"cost":{"input":0.7,"output":1.4},"id":"aion-labs/aion-1.0-mini","last_updated":"2025-02-04","limit":{"context":131072,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Aion-1.0-Mini","open_weights":true,"reasoning":true,"release_date":"2025-02-04","structured_output":false,"temperature":true,"tool_call":false},"aion-labs/aion-2.0":{"attachment":false,"cost":{"cache_read":0.2,"input":0.8,"output":1.6},"id":"aion-labs/aion-2.0","last_updated":"2026-02-23","limit":{"context":131072,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Aion-2.0","open_weights":false,"reasoning":true,"release_date":"2026-02-23","structured_output":false,"temperature":true,"tool_call":false},"aion-labs/aion-rp-llama-3.1-8b":{"attachment":false,"cost":{"input":0.8,"output":1.6},"family":"llama","id":"aion-labs/aion-rp-llama-3.1-8b","knowledge":"2023-12-31","last_updated":"2025-02-04","limit":{"context":32768,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Aion-RP 1.0 (8B)","open_weights":false,"reasoning":false,"release_date":"2025-02-04","structured_output":false,"temperature":true,"tool_call":false},"allenai/olmo-3-32b-think":{"attachment":false,"cost":{"input":0.15,"output":0.5},"family":"allenai","id":"allenai/olmo-3-32b-think","last_updated":"2025-11-21","limit":{"context":65536,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Olmo 3 32B Think","open_weights":true,"reasoning":true,"release_date":"2025-11-21","structured_output":true,"temperature":true,"tool_call":false},"amazon/nova-2-lite-v1":{"attachment":true,"cost":{"input":0.3,"output":2.5},"family":"nova","id":"amazon/nova-2-lite-v1","last_updated":"2025-12-02","limit":{"context":1000000,"output":65535},"modalities":{"input":["text","image","video","pdf"],"output":["text"]},"name":"Nova 2 Lite","open_weights":false,"reasoning":true,"release_date":"2025-12-02","structured_output":false,"temperature":true,"tool_call":true},"amazon/nova-lite-v1":{"attachment":true,"cost":{"input":0.06,"output":0.24},"family":"nova-lite","id":"amazon/nova-lite-v1","knowledge":"2024-10-31","last_updated":"2024-12-05","limit":{"context":300000,"output":5120},"modalities":{"input":["text","image"],"output":["text"]},"name":"Nova Lite 1.0","open_weights":false,"reasoning":false,"release_date":"2024-12-05","structured_output":false,"temperature":true,"tool_call":true},"amazon/nova-micro-v1":{"attachment":false,"cost":{"input":0.035,"output":0.14},"family":"nova-micro","id":"amazon/nova-micro-v1","knowledge":"2024-10-31","last_updated":"2024-12-05","limit":{"context":128000,"output":5120},"modalities":{"input":["text"],"output":["text"]},"name":"Nova Micro 1.0","open_weights":false,"reasoning":false,"release_date":"2024-12-05","structured_output":false,"temperature":true,"tool_call":true},"amazon/nova-premier-v1":{"attachment":true,"cost":{"cache_read":0.625,"input":2.5,"output":12.5},"family":"nova","id":"amazon/nova-premier-v1","last_updated":"2025-10-31","limit":{"context":1000000,"output":32000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Nova Premier 1.0","open_weights":false,"reasoning":false,"release_date":"2025-10-31","structured_output":false,"temperature":true,"tool_call":true},"amazon/nova-pro-v1":{"attachment":true,"cost":{"input":0.8,"output":3.2},"family":"nova-pro","id":"amazon/nova-pro-v1","knowledge":"2024-10-31","last_updated":"2024-12-05","limit":{"context":300000,"output":5120},"modalities":{"input":["text","image"],"output":["text"]},"name":"Nova Pro 1.0","open_weights":false,"reasoning":false,"release_date":"2024-12-05","structured_output":false,"temperature":true,"tool_call":true},"anthracite-org/magnum-v4-72b":{"attachment":false,"cost":{"input":3,"output":5},"id":"anthracite-org/magnum-v4-72b","knowledge":"2024-06-30","last_updated":"2024-10-22","limit":{"context":16384,"output":2048},"modalities":{"input":["text"],"output":["text"]},"name":"Magnum v4 72B","open_weights":true,"reasoning":false,"release_date":"2024-10-22","structured_output":false,"temperature":true,"tool_call":false},"anthropic/claude-3-haiku":{"attachment":true,"cost":{"cache_read":0.03,"cache_write":0.3,"input":0.25,"output":1.25},"family":"claude","id":"anthropic/claude-3-haiku","knowledge":"2023-08-31","last_updated":"2024-03-13","limit":{"context":200000,"output":4096},"modalities":{"input":["text","image"],"output":["text"]},"name":"Claude 3 Haiku","open_weights":false,"reasoning":false,"release_date":"2024-03-13","structured_output":false,"temperature":true,"tool_call":true},"anthropic/claude-3.5-haiku":{"attachment":true,"cost":{"cache_read":0.08,"cache_write":1,"input":0.8,"output":4},"family":"claude","id":"anthropic/claude-3.5-haiku","knowledge":"2024-07-31","last_updated":"2024-11-04","limit":{"context":200000,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Claude 3.5 Haiku","open_weights":false,"reasoning":false,"release_date":"2024-11-04","structured_output":false,"temperature":true,"tool_call":true},"anthropic/claude-haiku-4.5":{"attachment":true,"cost":{"cache_read":0.1,"cache_write":1.25,"input":1,"output":5},"family":"claude-haiku","id":"anthropic/claude-haiku-4.5","knowledge":"2025-02-28","last_updated":"2025-10-15","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Haiku 4.5 (latest)","open_weights":false,"reasoning":true,"release_date":"2025-10-15","structured_output":true,"temperature":true,"tool_call":true},"anthropic/claude-opus-4":{"attachment":true,"cost":{"cache_read":1.5,"cache_write":18.75,"input":15,"output":75},"family":"claude-opus","id":"anthropic/claude-opus-4","knowledge":"2025-01-31","last_updated":"2025-05-22","limit":{"context":200000,"output":32000},"modalities":{"input":["image","text","pdf"],"output":["text"]},"name":"Claude Opus 4","open_weights":false,"reasoning":true,"release_date":"2025-05-22","structured_output":false,"temperature":true,"tool_call":true},"anthropic/claude-opus-4.1":{"attachment":true,"cost":{"cache_read":1.5,"cache_write":18.75,"input":15,"output":75},"family":"claude-opus","id":"anthropic/claude-opus-4.1","knowledge":"2025-03-31","last_updated":"2025-08-05","limit":{"context":200000,"output":32000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.1 (latest)","open_weights":false,"reasoning":true,"release_date":"2025-08-05","structured_output":true,"temperature":true,"tool_call":true},"anthropic/claude-opus-4.5":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"input":5,"output":25},"family":"claude-opus","id":"anthropic/claude-opus-4.5","knowledge":"2025-03-31","last_updated":"2025-11-24","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.5 (latest)","open_weights":false,"reasoning":true,"release_date":"2025-11-24","structured_output":true,"temperature":true,"tool_call":true},"anthropic/claude-opus-4.6":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"context_over_200k":{"cache_read":1,"cache_write":12.5,"input":10,"output":37.5},"input":5,"output":25,"tiers":[{"cache_read":1,"cache_write":12.5,"input":10,"output":37.5,"tier":{"size":200000,"type":"context"}}]},"family":"claude-opus","id":"anthropic/claude-opus-4.6","knowledge":"2025-05-31","last_updated":"2026-03-13","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.6","open_weights":false,"reasoning":true,"release_date":"2026-02-05","structured_output":true,"temperature":true,"tool_call":true},"anthropic/claude-opus-4.6-fast":{"attachment":true,"cost":{"cache_read":3,"cache_write":37.5,"input":30,"output":150},"family":"claude-opus","id":"anthropic/claude-opus-4.6-fast","last_updated":"2026-04-07","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.6 (Fast)","open_weights":false,"reasoning":true,"release_date":"2026-04-07","structured_output":true,"temperature":true,"tool_call":true},"anthropic/claude-opus-4.7":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"context_over_200k":{"cache_read":1,"cache_write":12.5,"input":10,"output":37.5},"input":5,"output":25,"tiers":[{"cache_read":1,"cache_write":12.5,"input":10,"output":37.5,"tier":{"size":200000,"type":"context"}}]},"family":"claude-opus","id":"anthropic/claude-opus-4.7","knowledge":"2026-01-31","last_updated":"2026-04-16","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.7","open_weights":false,"reasoning":true,"release_date":"2026-04-16","structured_output":true,"temperature":false,"tool_call":true},"anthropic/claude-opus-4.7-fast":{"attachment":true,"cost":{"cache_read":3,"cache_write":37.5,"input":30,"output":150},"family":"claude-opus","id":"anthropic/claude-opus-4.7-fast","last_updated":"2026-05-12","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.7 (Fast)","open_weights":false,"reasoning":true,"release_date":"2026-05-12","structured_output":true,"temperature":false,"tool_call":true},"anthropic/claude-opus-4.8":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"input":5,"output":25},"family":"claude-opus","id":"anthropic/claude-opus-4.8","last_updated":"2026-05-28","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.8","open_weights":false,"reasoning":true,"release_date":"2026-05-28","structured_output":true,"temperature":false,"tool_call":true},"anthropic/claude-opus-4.8-fast":{"attachment":true,"cost":{"cache_read":1,"cache_write":12.5,"input":10,"output":50},"family":"claude-opus","id":"anthropic/claude-opus-4.8-fast","last_updated":"2026-05-27","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.8 (Fast)","open_weights":false,"reasoning":true,"release_date":"2026-05-27","structured_output":true,"temperature":false,"tool_call":true},"anthropic/claude-sonnet-4":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"context_over_200k":{"cache_read":0.6,"cache_write":7.5,"input":6,"output":22.5},"input":3,"output":15,"tiers":[{"cache_read":0.6,"cache_write":7.5,"input":6,"output":22.5,"tier":{"size":200000,"type":"context"}}]},"family":"claude-sonnet","id":"anthropic/claude-sonnet-4","knowledge":"2025-01-31","last_updated":"2025-05-22","limit":{"context":1000000,"output":64000},"modalities":{"input":["image","text","pdf"],"output":["text"]},"name":"Claude Sonnet 4","open_weights":false,"reasoning":true,"release_date":"2025-05-22","structured_output":false,"temperature":true,"tool_call":true},"anthropic/claude-sonnet-4.5":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"context_over_200k":{"cache_read":0.6,"cache_write":7.5,"input":6,"output":22.5},"input":3,"output":15,"tiers":[{"cache_read":0.6,"cache_write":7.5,"input":6,"output":22.5,"tier":{"size":200000,"type":"context"}}]},"family":"claude-sonnet","id":"anthropic/claude-sonnet-4.5","knowledge":"2025-07-31","last_updated":"2025-09-29","limit":{"context":1000000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 4.5 (latest)","open_weights":false,"reasoning":true,"release_date":"2025-09-29","structured_output":true,"temperature":true,"tool_call":true},"anthropic/claude-sonnet-4.6":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"context_over_200k":{"cache_read":0.6,"cache_write":7.5,"input":6,"output":22.5},"input":3,"output":15,"tiers":[{"cache_read":0.6,"cache_write":7.5,"input":6,"output":22.5,"tier":{"size":200000,"type":"context"}}]},"family":"claude-sonnet","id":"anthropic/claude-sonnet-4.6","knowledge":"2025-08-31","last_updated":"2026-03-13","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 4.6","open_weights":false,"reasoning":true,"release_date":"2026-02-17","structured_output":true,"temperature":true,"tool_call":true},"arcee-ai/coder-large":{"attachment":false,"cost":{"input":0.5,"output":0.8},"id":"arcee-ai/coder-large","knowledge":"2025-03-31","last_updated":"2025-05-05","limit":{"context":32768,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Coder Large","open_weights":false,"reasoning":false,"release_date":"2025-05-05","structured_output":false,"temperature":true,"tool_call":false},"arcee-ai/maestro-reasoning":{"attachment":false,"cost":{"input":0.9,"output":3.3},"id":"arcee-ai/maestro-reasoning","knowledge":"2025-03-31","last_updated":"2025-05-05","limit":{"context":131072,"output":32000},"modalities":{"input":["text"],"output":["text"]},"name":"Maestro Reasoning","open_weights":false,"reasoning":false,"release_date":"2025-05-05","structured_output":false,"temperature":true,"tool_call":false},"arcee-ai/spotlight":{"attachment":true,"cost":{"input":0.18,"output":0.18},"id":"arcee-ai/spotlight","knowledge":"2025-03-31","last_updated":"2025-05-05","limit":{"context":131072,"output":65537},"modalities":{"input":["image","text"],"output":["text"]},"name":"Spotlight","open_weights":false,"reasoning":false,"release_date":"2025-05-05","structured_output":false,"temperature":true,"tool_call":false},"arcee-ai/trinity-large-thinking":{"attachment":false,"cost":{"cache_read":0.06,"input":0.22,"output":0.85},"family":"trinity","id":"arcee-ai/trinity-large-thinking","last_updated":"2026-04-01","limit":{"context":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Trinity Large Thinking","open_weights":true,"reasoning":true,"release_date":"2026-04-01","structured_output":true,"temperature":true,"tool_call":true},"arcee-ai/trinity-mini":{"attachment":false,"cost":{"input":0.045,"output":0.15},"family":"trinity-mini","id":"arcee-ai/trinity-mini","last_updated":"2025-12-01","limit":{"context":131072,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"Trinity Mini","open_weights":true,"reasoning":true,"release_date":"2025-12-01","structured_output":true,"temperature":true,"tool_call":true},"arcee-ai/virtuoso-large":{"attachment":false,"cost":{"input":0.75,"output":1.2},"id":"arcee-ai/virtuoso-large","knowledge":"2025-03-31","last_updated":"2025-05-05","limit":{"context":131072,"output":64000},"modalities":{"input":["text"],"output":["text"]},"name":"Virtuoso Large","open_weights":false,"reasoning":false,"release_date":"2025-05-05","structured_output":false,"temperature":true,"tool_call":true},"baidu/ernie-4.5-vl-28b-a3b":{"attachment":true,"cost":{"input":0.14,"output":0.56},"family":"ernie","id":"baidu/ernie-4.5-vl-28b-a3b","knowledge":"2025-03-31","last_updated":"2025-08-12","limit":{"context":30000,"output":8000},"modalities":{"input":["text","image"],"output":["text"]},"name":"ERNIE 4.5 VL 28B A3B","open_weights":true,"reasoning":true,"release_date":"2025-08-12","structured_output":false,"temperature":true,"tool_call":true},"baidu/ernie-4.5-vl-424b-a47b":{"attachment":true,"cost":{"input":0.42,"output":1.25},"family":"ernie","id":"baidu/ernie-4.5-vl-424b-a47b","knowledge":"2025-03-31","last_updated":"2025-06-30","limit":{"context":123000,"output":16000},"modalities":{"input":["image","text"],"output":["text"]},"name":"ERNIE 4.5 VL 424B A47B ","open_weights":true,"reasoning":true,"release_date":"2025-06-30","structured_output":false,"temperature":true,"tool_call":false},"bytedance-seed/seed-1.6":{"attachment":true,"cost":{"input":0.25,"output":2},"family":"seed","id":"bytedance-seed/seed-1.6","last_updated":"2025-12-23","limit":{"context":262144,"output":32768},"modalities":{"input":["image","text","video"],"output":["text"]},"name":"Seed 1.6","open_weights":false,"reasoning":true,"release_date":"2025-12-23","structured_output":true,"temperature":true,"tool_call":true},"bytedance-seed/seed-1.6-flash":{"attachment":true,"cost":{"input":0.075,"output":0.3},"family":"seed","id":"bytedance-seed/seed-1.6-flash","last_updated":"2025-12-23","limit":{"context":262144,"output":32768},"modalities":{"input":["image","text","video"],"output":["text"]},"name":"Seed 1.6 Flash","open_weights":false,"reasoning":true,"release_date":"2025-12-23","structured_output":true,"temperature":true,"tool_call":true},"bytedance-seed/seed-2.0-lite":{"attachment":true,"cost":{"input":0.25,"output":2},"family":"seed","id":"bytedance-seed/seed-2.0-lite","last_updated":"2026-03-10","limit":{"context":262144,"output":131072},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Seed-2.0-Lite","open_weights":false,"reasoning":true,"release_date":"2026-03-10","structured_output":true,"temperature":true,"tool_call":true},"bytedance-seed/seed-2.0-mini":{"attachment":true,"cost":{"input":0.1,"output":0.4},"family":"seed","id":"bytedance-seed/seed-2.0-mini","last_updated":"2026-02-26","limit":{"context":262144,"output":131072},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Seed-2.0-Mini","open_weights":false,"reasoning":true,"release_date":"2026-02-26","structured_output":true,"temperature":true,"tool_call":true},"bytedance/ui-tars-1.5-7b":{"attachment":true,"cost":{"cache_read":0.1,"input":0.1,"output":0.2},"id":"bytedance/ui-tars-1.5-7b","knowledge":"2025-01-31","last_updated":"2025-07-22","limit":{"context":128000,"output":2048},"modalities":{"input":["image","text"],"output":["text"]},"name":"UI-TARS 7B ","open_weights":true,"reasoning":false,"release_date":"2025-07-22","structured_output":false,"temperature":true,"tool_call":false},"cognitivecomputations/dolphin-mistral-24b-venice-edition:free":{"attachment":false,"cost":{"input":0,"output":0},"family":"mistral","id":"cognitivecomputations/dolphin-mistral-24b-venice-edition:free","knowledge":"2024-04-30","last_updated":"2025-07-09","limit":{"context":32768,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Uncensored (free)","open_weights":true,"reasoning":false,"release_date":"2025-07-09","structured_output":true,"temperature":true,"tool_call":false},"cohere/command-a":{"attachment":false,"cost":{"input":2.5,"output":10},"family":"command-a","id":"cohere/command-a","knowledge":"2024-08-31","last_updated":"2025-03-13","limit":{"context":256000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Command A","open_weights":true,"reasoning":false,"release_date":"2025-03-13","structured_output":true,"temperature":true,"tool_call":false},"cohere/command-r-08-2024":{"attachment":false,"cost":{"input":0.15,"output":0.6},"family":"command-r","id":"cohere/command-r-08-2024","knowledge":"2024-06-01","last_updated":"2024-08-30","limit":{"context":128000,"output":4000},"modalities":{"input":["text"],"output":["text"]},"name":"Command R","open_weights":true,"reasoning":false,"release_date":"2024-08-30","structured_output":true,"temperature":true,"tool_call":true},"cohere/command-r-plus-08-2024":{"attachment":false,"cost":{"input":2.5,"output":10},"family":"command-r","id":"cohere/command-r-plus-08-2024","knowledge":"2024-06-01","last_updated":"2024-08-30","limit":{"context":128000,"output":4000},"modalities":{"input":["text"],"output":["text"]},"name":"Command R+","open_weights":true,"reasoning":false,"release_date":"2024-08-30","structured_output":true,"temperature":true,"tool_call":true},"cohere/command-r7b-12-2024":{"attachment":false,"cost":{"input":0.0375,"output":0.15},"family":"command-r","id":"cohere/command-r7b-12-2024","knowledge":"2024-06-01","last_updated":"2024-02-27","limit":{"context":128000,"output":4000},"modalities":{"input":["text"],"output":["text"]},"name":"Command R7B","open_weights":true,"reasoning":false,"release_date":"2024-02-27","structured_output":true,"temperature":true,"tool_call":false},"deepcogito/cogito-v2.1-671b":{"attachment":false,"cost":{"input":1.25,"output":1.25},"family":"cogito","id":"deepcogito/cogito-v2.1-671b","last_updated":"2025-11-13","limit":{"context":128000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"Cogito v2.1 671B","open_weights":false,"reasoning":true,"release_date":"2025-11-13","structured_output":true,"temperature":true,"tool_call":false},"deepseek/deepseek-chat":{"attachment":false,"cost":{"input":0.2002,"output":0.8001},"family":"deepseek","id":"deepseek/deepseek-chat","knowledge":"2025-09","last_updated":"2026-02-28","limit":{"context":128000,"output":16000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek Chat","open_weights":true,"reasoning":false,"release_date":"2025-12-01","structured_output":true,"temperature":true,"tool_call":true},"deepseek/deepseek-chat-v3-0324":{"attachment":false,"cost":{"cache_read":0.135,"input":0.2,"output":0.77},"family":"deepseek","id":"deepseek/deepseek-chat-v3-0324","knowledge":"2024-07-31","last_updated":"2025-03-24","limit":{"context":163840,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V3 0324","open_weights":true,"reasoning":false,"release_date":"2025-03-24","structured_output":true,"temperature":true,"tool_call":true},"deepseek/deepseek-chat-v3.1":{"attachment":false,"cost":{"cache_read":0.13,"input":0.21,"output":0.79},"family":"deepseek","id":"deepseek/deepseek-chat-v3.1","knowledge":"2025-03-31","last_updated":"2025-08-21","limit":{"context":163840,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V3.1","open_weights":true,"reasoning":true,"release_date":"2025-08-21","structured_output":true,"temperature":true,"tool_call":true},"deepseek/deepseek-r1":{"attachment":false,"cost":{"input":0.7,"output":2.5},"family":"deepseek-thinking","id":"deepseek/deepseek-r1","knowledge":"2024-07-31","last_updated":"2025-01-20","limit":{"context":64000,"output":16000},"modalities":{"input":["text"],"output":["text"]},"name":"R1","open_weights":true,"reasoning":true,"release_date":"2025-01-20","structured_output":true,"temperature":true,"tool_call":true},"deepseek/deepseek-r1-0528":{"attachment":false,"cost":{"cache_read":0.35,"input":0.5,"output":2.15},"family":"deepseek","id":"deepseek/deepseek-r1-0528","knowledge":"2025-03-31","last_updated":"2025-05-28","limit":{"context":163840,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"R1 0528","open_weights":true,"reasoning":true,"release_date":"2025-05-28","structured_output":true,"temperature":true,"tool_call":true},"deepseek/deepseek-r1-distill-llama-70b":{"attachment":false,"cost":{"input":0.7,"output":0.8},"family":"deepseek-thinking","id":"deepseek/deepseek-r1-distill-llama-70b","knowledge":"2024-07-31","last_updated":"2025-01-23","limit":{"context":131072,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"R1 Distill Llama 70B","open_weights":true,"reasoning":true,"release_date":"2025-01-23","structured_output":false,"temperature":true,"tool_call":false},"deepseek/deepseek-r1-distill-qwen-32b":{"attachment":false,"cost":{"input":0.29,"output":0.29},"family":"deepseek","id":"deepseek/deepseek-r1-distill-qwen-32b","knowledge":"2024-07-31","last_updated":"2025-01-29","limit":{"context":32768,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"R1 Distill Qwen 32B","open_weights":true,"reasoning":true,"release_date":"2025-01-29","structured_output":true,"temperature":true,"tool_call":false},"deepseek/deepseek-v3.1-terminus":{"attachment":false,"cost":{"cache_read":0.13,"input":0.27,"output":0.95},"family":"deepseek","id":"deepseek/deepseek-v3.1-terminus","knowledge":"2025-03-31","last_updated":"2025-09-22","limit":{"context":163840,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V3.1 Terminus","open_weights":true,"reasoning":true,"release_date":"2025-09-22","structured_output":true,"temperature":true,"tool_call":true},"deepseek/deepseek-v3.2":{"attachment":false,"cost":{"input":0.2288,"output":0.3432},"family":"deepseek","id":"deepseek/deepseek-v3.2","knowledge":"2024-07","last_updated":"2025-12-01","limit":{"context":128000,"output":64000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V3.2","open_weights":true,"reasoning":true,"release_date":"2025-12-01","structured_output":true,"temperature":true,"tool_call":true},"deepseek/deepseek-v3.2-exp":{"attachment":false,"cost":{"input":0.27,"output":0.41},"family":"deepseek","id":"deepseek/deepseek-v3.2-exp","knowledge":"2025-07-31","last_updated":"2025-09-29","limit":{"context":163840,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V3.2 Exp","open_weights":true,"reasoning":true,"release_date":"2025-09-29","structured_output":true,"temperature":true,"tool_call":true},"deepseek/deepseek-v4-flash":{"attachment":false,"cost":{"cache_read":0.0197,"input":0.0983,"output":0.1966},"family":"deepseek-flash","id":"deepseek/deepseek-v4-flash","interleaved":{"field":"reasoning_content"},"knowledge":"2025-05","last_updated":"2026-04-24","limit":{"context":1048576,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V4 Flash","open_weights":true,"reasoning":true,"release_date":"2026-04-24","structured_output":true,"temperature":true,"tool_call":true},"deepseek/deepseek-v4-pro":{"attachment":false,"cost":{"cache_read":0.003625,"input":0.435,"output":0.87},"family":"deepseek-thinking","id":"deepseek/deepseek-v4-pro","interleaved":{"field":"reasoning_content"},"knowledge":"2025-05","last_updated":"2026-04-24","limit":{"context":1048576,"output":384000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V4 Pro","open_weights":true,"reasoning":true,"release_date":"2026-04-24","structured_output":true,"temperature":true,"tool_call":true},"essentialai/rnj-1-instruct":{"attachment":false,"cost":{"input":0.15,"output":0.15},"family":"rnj","id":"essentialai/rnj-1-instruct","last_updated":"2025-12-07","limit":{"context":32768,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Rnj 1 Instruct","open_weights":true,"reasoning":false,"release_date":"2025-12-07","structured_output":true,"temperature":true,"tool_call":true},"google/gemini-2.5-flash":{"attachment":true,"cost":{"cache_read":0.03,"cache_write":0.083333,"input":0.3,"output":2.5,"reasoning":2.5},"family":"gemini-flash","id":"google/gemini-2.5-flash","knowledge":"2025-01","last_updated":"2025-06-05","limit":{"context":1048576,"output":65535},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"Gemini 2.5 Flash","open_weights":false,"reasoning":true,"release_date":"2025-03-20","structured_output":true,"temperature":true,"tool_call":true},"google/gemini-2.5-flash-image":{"attachment":true,"cost":{"cache_read":0.03,"cache_write":0.083333,"input":0.3,"output":2.5},"family":"gemini-flash","id":"google/gemini-2.5-flash-image","knowledge":"2025-06","last_updated":"2025-08-26","limit":{"context":32768,"output":32768},"modalities":{"input":["text","image"],"output":["text","image"]},"name":"Nano Banana","open_weights":false,"reasoning":false,"release_date":"2025-08-26","structured_output":true,"temperature":true,"tool_call":false},"google/gemini-2.5-flash-lite":{"attachment":true,"cost":{"cache_read":0.01,"cache_write":0.083333,"input":0.1,"output":0.4,"reasoning":0.4},"family":"gemini-flash-lite","id":"google/gemini-2.5-flash-lite","knowledge":"2025-01","last_updated":"2025-06-17","limit":{"context":1048576,"output":65535},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"Gemini 2.5 Flash-Lite","open_weights":false,"reasoning":true,"release_date":"2025-06-17","structured_output":true,"temperature":true,"tool_call":true},"google/gemini-2.5-flash-lite-preview-09-2025":{"attachment":true,"cost":{"cache_read":0.01,"cache_write":0.083333,"input":0.1,"output":0.4,"reasoning":0.4},"family":"gemini-flash-lite","id":"google/gemini-2.5-flash-lite-preview-09-2025","knowledge":"2025-01-31","last_updated":"2025-09-25","limit":{"context":1048576,"output":65535},"modalities":{"input":["text","image","pdf","audio","video"],"output":["text"]},"name":"Gemini 2.5 Flash Lite Preview 09-2025","open_weights":false,"reasoning":true,"release_date":"2025-09-25","structured_output":true,"temperature":true,"tool_call":true},"google/gemini-2.5-pro":{"attachment":true,"cost":{"cache_read":0.125,"cache_write":0.375,"input":1.25,"output":10,"reasoning":10},"family":"gemini-pro","id":"google/gemini-2.5-pro","knowledge":"2025-01","last_updated":"2025-06-05","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"Gemini 2.5 Pro","open_weights":false,"reasoning":true,"release_date":"2025-03-20","structured_output":true,"temperature":true,"tool_call":true},"google/gemini-2.5-pro-preview":{"attachment":true,"cost":{"cache_read":0.125,"cache_write":0.375,"input":1.25,"output":10,"reasoning":10},"family":"gemini","id":"google/gemini-2.5-pro-preview","knowledge":"2025-01-31","last_updated":"2025-06-05","limit":{"context":1048576,"output":65536},"modalities":{"input":["pdf","image","text","audio"],"output":["text"]},"name":"Gemini 2.5 Pro Preview 06-05","open_weights":false,"reasoning":true,"release_date":"2025-06-05","structured_output":true,"temperature":true,"tool_call":true},"google/gemini-2.5-pro-preview-05-06":{"attachment":true,"cost":{"cache_read":0.125,"cache_write":0.375,"input":1.25,"output":10,"reasoning":10},"family":"gemini-pro","id":"google/gemini-2.5-pro-preview-05-06","knowledge":"2025-01-31","last_updated":"2025-05-07","limit":{"context":1048576,"output":65535},"modalities":{"input":["text","image","pdf","audio","video"],"output":["text"]},"name":"Gemini 2.5 Pro Preview 05-06","open_weights":false,"reasoning":true,"release_date":"2025-05-07","structured_output":true,"temperature":true,"tool_call":true},"google/gemini-3-flash-preview":{"attachment":true,"cost":{"cache_read":0.05,"cache_write":0.083333,"input":0.5,"output":3,"reasoning":3},"family":"gemini-flash","id":"google/gemini-3-flash-preview","interleaved":{"field":"reasoning_details"},"knowledge":"2025-01","last_updated":"2025-12-17","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"name":"Gemini 3 Flash Preview","open_weights":false,"reasoning":true,"release_date":"2025-12-17","structured_output":true,"temperature":true,"tool_call":true},"google/gemini-3-pro-image-preview":{"attachment":true,"cost":{"cache_read":0.2,"cache_write":0.375,"input":2,"output":12,"reasoning":12},"family":"gemini","id":"google/gemini-3-pro-image-preview","last_updated":"2025-11-20","limit":{"context":65536,"output":32768},"modalities":{"input":["image","text"],"output":["image","text"]},"name":"Nano Banana Pro (Gemini 3 Pro Image Preview)","open_weights":false,"reasoning":true,"release_date":"2025-11-20","structured_output":true,"temperature":true,"tool_call":false},"google/gemini-3.1-flash-image-preview":{"attachment":true,"cost":{"input":0.5,"output":3},"family":"gemini-flash","id":"google/gemini-3.1-flash-image-preview","knowledge":"2025-01","last_updated":"2026-02-26","limit":{"context":65536,"output":65536},"modalities":{"input":["image","text"],"output":["image","text"]},"name":"Nano Banana 2","open_weights":false,"reasoning":true,"release_date":"2026-02-26","structured_output":true,"temperature":true,"tool_call":false},"google/gemini-3.1-flash-lite":{"attachment":true,"cost":{"cache_read":0.025,"cache_write":0.083333,"input":0.25,"output":1.5,"reasoning":1.5},"family":"gemini-flash-lite","id":"google/gemini-3.1-flash-lite","knowledge":"2025-01","last_updated":"2026-05-07","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"name":"Gemini 3.1 Flash Lite","open_weights":false,"reasoning":true,"release_date":"2026-05-07","structured_output":true,"temperature":true,"tool_call":true},"google/gemini-3.1-flash-lite-preview":{"attachment":true,"cost":{"cache_read":0.025,"cache_write":0.083333,"input":0.25,"output":1.5,"reasoning":1.5},"family":"gemini-flash-lite","id":"google/gemini-3.1-flash-lite-preview","knowledge":"2025-01","last_updated":"2026-03-03","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"name":"Gemini 3.1 Flash Lite Preview","open_weights":false,"reasoning":true,"release_date":"2026-03-03","structured_output":true,"temperature":true,"tool_call":true},"google/gemini-3.1-pro-preview":{"attachment":true,"cost":{"cache_read":0.2,"cache_write":0.375,"context_over_200k":{"cache_read":0.4,"input":4,"output":18},"input":2,"output":12,"reasoning":12,"tiers":[{"cache_read":0.4,"input":4,"output":18,"tier":{"size":200000,"type":"context"}}]},"family":"gemini-pro","id":"google/gemini-3.1-pro-preview","interleaved":{"field":"reasoning_details"},"knowledge":"2025-01","last_updated":"2026-02-19","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"name":"Gemini 3.1 Pro Preview","open_weights":false,"reasoning":true,"release_date":"2026-02-19","structured_output":true,"temperature":true,"tool_call":true},"google/gemini-3.1-pro-preview-customtools":{"attachment":true,"cost":{"cache_read":0.2,"cache_write":0.375,"context_over_200k":{"cache_read":0.4,"input":4,"output":18},"input":2,"output":12,"reasoning":12,"tiers":[{"cache_read":0.4,"input":4,"output":18,"tier":{"size":200000,"type":"context"}}]},"family":"gemini-pro","id":"google/gemini-3.1-pro-preview-customtools","interleaved":{"field":"reasoning_details"},"knowledge":"2025-01","last_updated":"2026-02-19","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"name":"Gemini 3.1 Pro Preview Custom Tools","open_weights":false,"reasoning":true,"release_date":"2026-02-19","structured_output":true,"temperature":true,"tool_call":true},"google/gemini-3.5-flash":{"attachment":true,"cost":{"cache_read":0.15,"cache_write":0.083333,"input":1.5,"output":9,"reasoning":9},"family":"gemini-flash","id":"google/gemini-3.5-flash","knowledge":"2025-01","last_updated":"2026-05-19","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"name":"Gemini 3.5 Flash","open_weights":false,"reasoning":true,"release_date":"2026-05-19","structured_output":true,"temperature":true,"tool_call":true},"google/gemma-2-27b-it":{"attachment":false,"cost":{"input":0.65,"output":0.65},"family":"gemma","id":"google/gemma-2-27b-it","knowledge":"2024-06-30","last_updated":"2024-07-13","limit":{"context":8192,"output":2048},"modalities":{"input":["text"],"output":["text"]},"name":"Gemma 2 27B","open_weights":true,"reasoning":false,"release_date":"2024-07-13","structured_output":true,"temperature":true,"tool_call":false},"google/gemma-3-12b-it":{"attachment":true,"cost":{"input":0.04,"output":0.13},"family":"gemma","id":"google/gemma-3-12b-it","knowledge":"2024-08-31","last_updated":"2025-03-13","limit":{"context":131072,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"Gemma 3 12B","open_weights":true,"reasoning":false,"release_date":"2025-03-13","structured_output":true,"temperature":true,"tool_call":true},"google/gemma-3-27b-it":{"attachment":true,"cost":{"input":0.08,"output":0.16},"family":"gemma","id":"google/gemma-3-27b-it","knowledge":"2024-08-31","last_updated":"2025-03-12","limit":{"context":131072,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"Gemma 3 27B","open_weights":true,"reasoning":false,"release_date":"2025-03-12","structured_output":true,"temperature":true,"tool_call":true},"google/gemma-3-4b-it":{"attachment":true,"cost":{"input":0.04,"output":0.08},"family":"gemma","id":"google/gemma-3-4b-it","knowledge":"2024-08-31","last_updated":"2025-03-13","limit":{"context":131072,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"Gemma 3 4B","open_weights":true,"reasoning":false,"release_date":"2025-03-13","structured_output":true,"temperature":true,"tool_call":false},"google/gemma-3n-e4b-it":{"attachment":false,"cost":{"input":0.06,"output":0.12},"family":"gemma","id":"google/gemma-3n-e4b-it","knowledge":"2024-08-31","last_updated":"2025-05-20","limit":{"context":32768,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Gemma 3n 4B","open_weights":true,"reasoning":false,"release_date":"2025-05-20","structured_output":false,"temperature":true,"tool_call":false},"google/gemma-4-26b-a4b-it":{"attachment":true,"cost":{"input":0.06,"output":0.33},"family":"gemma","id":"google/gemma-4-26b-a4b-it","last_updated":"2026-04-02","limit":{"context":262144,"output":262144},"modalities":{"input":["image","text","video"],"output":["text"]},"name":"Gemma 4 26B A4B IT","open_weights":true,"reasoning":true,"release_date":"2026-04-02","structured_output":true,"temperature":true,"tool_call":true},"google/gemma-4-26b-a4b-it:free":{"attachment":true,"cost":{"input":0,"output":0},"family":"gemma","id":"google/gemma-4-26b-a4b-it:free","last_updated":"2026-04-02","limit":{"context":262144,"output":32768},"modalities":{"input":["image","text","video"],"output":["text"]},"name":"Gemma 4 26B A4B (free)","open_weights":true,"reasoning":true,"release_date":"2026-04-02","structured_output":false,"temperature":true,"tool_call":true},"google/gemma-4-31b-it":{"attachment":true,"cost":{"input":0.12,"output":0.37},"family":"gemma","id":"google/gemma-4-31b-it","last_updated":"2026-04-02","limit":{"context":262144,"output":16384},"modalities":{"input":["image","text","video"],"output":["text"]},"name":"Gemma 4 31B IT","open_weights":true,"reasoning":true,"release_date":"2026-04-02","structured_output":true,"temperature":true,"tool_call":true},"google/gemma-4-31b-it:free":{"attachment":true,"cost":{"input":0,"output":0},"family":"gemma","id":"google/gemma-4-31b-it:free","last_updated":"2026-04-02","limit":{"context":262144,"output":32768},"modalities":{"input":["image","text","video"],"output":["text"]},"name":"Gemma 4 31B (free)","open_weights":true,"reasoning":true,"release_date":"2026-04-02","structured_output":false,"temperature":true,"tool_call":true},"google/lyria-3-clip-preview":{"attachment":true,"cost":{"input":0,"output":0},"family":"lyria","id":"google/lyria-3-clip-preview","last_updated":"2026-03-30","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image"],"output":["text","audio"]},"name":"Lyria 3 Clip Preview","open_weights":false,"reasoning":false,"release_date":"2026-03-30","structured_output":false,"temperature":true,"tool_call":false},"google/lyria-3-pro-preview":{"attachment":true,"cost":{"input":0,"output":0},"family":"lyria","id":"google/lyria-3-pro-preview","last_updated":"2026-03-30","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image"],"output":["text","audio"]},"name":"Lyria 3 Pro Preview","open_weights":false,"reasoning":false,"release_date":"2026-03-30","structured_output":false,"temperature":true,"tool_call":false},"gryphe/mythomax-l2-13b":{"attachment":false,"cost":{"input":0.06,"output":0.06},"id":"gryphe/mythomax-l2-13b","knowledge":"2023-06-30","last_updated":"2023-07-02","limit":{"context":4096,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"MythoMax 13B","open_weights":true,"reasoning":false,"release_date":"2023-07-02","structured_output":true,"temperature":true,"tool_call":false},"ibm-granite/granite-4.0-h-micro":{"attachment":false,"cost":{"input":0.017,"output":0.112},"family":"granite","id":"ibm-granite/granite-4.0-h-micro","last_updated":"2025-10-20","limit":{"context":131000,"output":131000},"modalities":{"input":["text"],"output":["text"]},"name":"Granite 4.0 Micro","open_weights":true,"reasoning":false,"release_date":"2025-10-20","structured_output":false,"temperature":true,"tool_call":false},"ibm-granite/granite-4.1-8b":{"attachment":false,"cost":{"cache_read":0.05,"input":0.05,"output":0.1},"family":"granite","id":"ibm-granite/granite-4.1-8b","last_updated":"2026-04-30","limit":{"context":131072,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"Granite 4.1 8B","open_weights":true,"reasoning":false,"release_date":"2026-04-30","structured_output":true,"temperature":true,"tool_call":true},"inception/mercury-2":{"attachment":false,"cost":{"cache_read":0.025,"input":0.25,"output":0.75},"family":"mercury","id":"inception/mercury-2","last_updated":"2026-03-04","limit":{"context":128000,"output":50000},"modalities":{"input":["text"],"output":["text"]},"name":"Mercury 2","open_weights":false,"reasoning":true,"release_date":"2026-03-04","structured_output":true,"temperature":true,"tool_call":true},"inclusionai/ling-2.6-1t":{"attachment":false,"cost":{"cache_read":0.015,"input":0.075,"output":0.625},"family":"ling","id":"inclusionai/ling-2.6-1t","last_updated":"2026-04-23","limit":{"context":262144,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Ling-2.6-1T","open_weights":false,"reasoning":false,"release_date":"2026-04-23","structured_output":true,"temperature":true,"tool_call":true},"inclusionai/ling-2.6-flash":{"attachment":false,"cost":{"cache_read":0.002,"input":0.01,"output":0.03},"family":"ling","id":"inclusionai/ling-2.6-flash","last_updated":"2026-04-21","limit":{"context":262144,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Ling-2.6-flash","open_weights":false,"reasoning":false,"release_date":"2026-04-21","structured_output":true,"temperature":true,"tool_call":true},"inclusionai/ring-2.6-1t":{"attachment":false,"cost":{"cache_read":0.015,"input":0.075,"output":0.625},"family":"ring","id":"inclusionai/ring-2.6-1t","last_updated":"2026-05-08","limit":{"context":262144,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Ring-2.6-1T","open_weights":false,"reasoning":true,"release_date":"2026-05-08","structured_output":false,"temperature":true,"tool_call":true},"inflection/inflection-3-pi":{"attachment":false,"cost":{"input":2.5,"output":10},"id":"inflection/inflection-3-pi","knowledge":"2024-10-31","last_updated":"2024-10-11","limit":{"context":8000,"output":1024},"modalities":{"input":["text"],"output":["text"]},"name":"Inflection 3 Pi","open_weights":false,"reasoning":false,"release_date":"2024-10-11","structured_output":false,"temperature":true,"tool_call":false},"inflection/inflection-3-productivity":{"attachment":false,"cost":{"input":2.5,"output":10},"id":"inflection/inflection-3-productivity","knowledge":"2024-10-31","last_updated":"2024-10-11","limit":{"context":8000,"output":1024},"modalities":{"input":["text"],"output":["text"]},"name":"Inflection 3 Productivity","open_weights":false,"reasoning":false,"release_date":"2024-10-11","structured_output":false,"temperature":true,"tool_call":false},"kwaipilot/kat-coder-pro-v2":{"attachment":false,"cost":{"cache_read":0.06,"input":0.3,"output":1.2},"family":"kat-coder","id":"kwaipilot/kat-coder-pro-v2","last_updated":"2026-03-27","limit":{"context":256000,"output":80000},"modalities":{"input":["text"],"output":["text"]},"name":"KAT-Coder-Pro V2","open_weights":false,"reasoning":false,"release_date":"2026-03-27","structured_output":true,"temperature":true,"tool_call":true},"liquid/lfm-2-24b-a2b":{"attachment":false,"cost":{"input":0.03,"output":0.12},"family":"liquid","id":"liquid/lfm-2-24b-a2b","last_updated":"2026-02-25","limit":{"context":32768,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"LFM2-24B-A2B","open_weights":true,"reasoning":false,"release_date":"2026-02-25","structured_output":false,"temperature":true,"tool_call":false},"liquid/lfm-2.5-1.2b-instruct:free":{"attachment":false,"cost":{"input":0,"output":0},"family":"liquid","id":"liquid/lfm-2.5-1.2b-instruct:free","knowledge":"2025-06","last_updated":"2026-01-20","limit":{"context":32768,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"LFM2.5-1.2B-Instruct (free)","open_weights":true,"reasoning":false,"release_date":"2026-01-20","structured_output":false,"temperature":true,"tool_call":false},"liquid/lfm-2.5-1.2b-thinking:free":{"attachment":false,"cost":{"input":0,"output":0},"family":"liquid","id":"liquid/lfm-2.5-1.2b-thinking:free","knowledge":"2025-06","last_updated":"2026-01-20","limit":{"context":32768,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"LFM2.5-1.2B-Thinking (free)","open_weights":true,"reasoning":true,"release_date":"2026-01-20","structured_output":false,"temperature":true,"tool_call":false},"mancer/weaver":{"attachment":false,"cost":{"input":0.75,"output":1},"family":"alpha","id":"mancer/weaver","knowledge":"2023-06-30","last_updated":"2023-08-02","limit":{"context":8000,"output":2000},"modalities":{"input":["text"],"output":["text"]},"name":"Weaver (alpha)","open_weights":false,"reasoning":false,"release_date":"2023-08-02","structured_output":false,"temperature":true,"tool_call":false},"meta-llama/llama-3-70b-instruct":{"attachment":false,"cost":{"input":0.51,"output":0.74},"family":"llama","id":"meta-llama/llama-3-70b-instruct","knowledge":"2023-12-31","last_updated":"2024-04-18","limit":{"context":8192,"output":8000},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3 70B Instruct","open_weights":true,"reasoning":false,"release_date":"2024-04-18","structured_output":true,"temperature":true,"tool_call":false},"meta-llama/llama-3-8b-instruct":{"attachment":false,"cost":{"input":0.04,"output":0.04},"family":"llama","id":"meta-llama/llama-3-8b-instruct","knowledge":"2023-12-31","last_updated":"2024-04-18","limit":{"context":8192,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3 8B Instruct","open_weights":true,"reasoning":false,"release_date":"2024-04-18","structured_output":false,"temperature":true,"tool_call":false},"meta-llama/llama-3.1-70b-instruct":{"attachment":false,"cost":{"input":0.4,"output":0.4},"family":"llama","id":"meta-llama/llama-3.1-70b-instruct","knowledge":"2023-12-31","last_updated":"2024-07-23","limit":{"context":131072,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.1 70B Instruct","open_weights":true,"reasoning":false,"release_date":"2024-07-23","structured_output":true,"temperature":true,"tool_call":true},"meta-llama/llama-3.1-8b-instruct":{"attachment":false,"cost":{"input":0.02,"output":0.05},"family":"llama","id":"meta-llama/llama-3.1-8b-instruct","knowledge":"2023-12-31","last_updated":"2024-07-23","limit":{"context":16384,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.1 8B Instruct","open_weights":true,"reasoning":false,"release_date":"2024-07-23","structured_output":true,"temperature":true,"tool_call":true},"meta-llama/llama-3.2-11b-vision-instruct":{"attachment":true,"cost":{"input":0.245,"output":0.245},"family":"llama","id":"meta-llama/llama-3.2-11b-vision-instruct","knowledge":"2023-12-31","last_updated":"2024-09-25","limit":{"context":131072,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"Llama 3.2 11B Vision Instruct","open_weights":true,"reasoning":false,"release_date":"2024-09-25","structured_output":false,"temperature":true,"tool_call":false},"meta-llama/llama-3.2-1b-instruct":{"attachment":false,"cost":{"input":0.027,"output":0.201},"family":"llama","id":"meta-llama/llama-3.2-1b-instruct","knowledge":"2023-12-31","last_updated":"2024-09-25","limit":{"context":60000,"output":60000},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.2 1B Instruct","open_weights":true,"reasoning":false,"release_date":"2024-09-25","structured_output":false,"temperature":true,"tool_call":false},"meta-llama/llama-3.2-3b-instruct":{"attachment":false,"cost":{"input":0.0509,"output":0.335},"family":"llama","id":"meta-llama/llama-3.2-3b-instruct","knowledge":"2023-12-31","last_updated":"2024-09-25","limit":{"context":80000,"output":80000},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.2 3B Instruct","open_weights":true,"reasoning":false,"release_date":"2024-09-25","structured_output":false,"temperature":true,"tool_call":false},"meta-llama/llama-3.2-3b-instruct:free":{"attachment":false,"cost":{"input":0,"output":0},"family":"llama","id":"meta-llama/llama-3.2-3b-instruct:free","knowledge":"2023-12-31","last_updated":"2024-09-25","limit":{"context":131072,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.2 3B Instruct (free)","open_weights":true,"reasoning":false,"release_date":"2024-09-25","structured_output":false,"temperature":true,"tool_call":false},"meta-llama/llama-3.3-70b-instruct":{"attachment":false,"cost":{"input":0.1,"output":0.32},"family":"llama","id":"meta-llama/llama-3.3-70b-instruct","knowledge":"2023-12","last_updated":"2024-12-06","limit":{"context":131072,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Llama-3.3-70B-Instruct","open_weights":true,"reasoning":false,"release_date":"2024-12-06","structured_output":true,"temperature":true,"tool_call":true},"meta-llama/llama-3.3-70b-instruct:free":{"attachment":false,"cost":{"input":0,"output":0},"family":"llama","id":"meta-llama/llama-3.3-70b-instruct:free","knowledge":"2023-12","last_updated":"2024-12-06","limit":{"context":65536,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.3 70B Instruct (free)","open_weights":true,"reasoning":false,"release_date":"2024-12-06","structured_output":false,"temperature":true,"tool_call":true},"meta-llama/llama-4-maverick":{"attachment":true,"cost":{"input":0.15,"output":0.6},"family":"llama","id":"meta-llama/llama-4-maverick","knowledge":"2024-08-31","last_updated":"2025-04-05","limit":{"context":1048576,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"Llama 4 Maverick","open_weights":true,"reasoning":false,"release_date":"2025-04-05","structured_output":true,"temperature":true,"tool_call":true},"meta-llama/llama-4-scout":{"attachment":true,"cost":{"input":0.08,"output":0.3},"family":"llama","id":"meta-llama/llama-4-scout","knowledge":"2024-08-31","last_updated":"2025-04-05","limit":{"context":327680,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"Llama 4 Scout","open_weights":true,"reasoning":false,"release_date":"2025-04-05","structured_output":true,"temperature":true,"tool_call":true},"meta-llama/llama-guard-3-8b":{"attachment":false,"cost":{"input":0.484,"output":0.03},"family":"llama","id":"meta-llama/llama-guard-3-8b","knowledge":"2023-12-31","last_updated":"2025-02-12","limit":{"context":131072,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"Llama Guard 3 8B","open_weights":true,"reasoning":false,"release_date":"2025-02-12","structured_output":false,"temperature":true,"tool_call":false},"meta-llama/llama-guard-4-12b":{"attachment":true,"cost":{"input":0.18,"output":0.18},"family":"llama","id":"meta-llama/llama-guard-4-12b","knowledge":"2024-08-31","last_updated":"2025-04-30","limit":{"context":163840,"output":16384},"modalities":{"input":["image","text"],"output":["text"]},"name":"Llama Guard 4 12B","open_weights":true,"reasoning":false,"release_date":"2025-04-30","structured_output":false,"temperature":true,"tool_call":false},"microsoft/phi-4":{"attachment":false,"cost":{"input":0.065,"output":0.14},"family":"phi","id":"microsoft/phi-4","knowledge":"2024-06-30","last_updated":"2025-01-10","limit":{"context":16384,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Phi 4","open_weights":true,"reasoning":false,"release_date":"2025-01-10","structured_output":true,"temperature":true,"tool_call":false},"microsoft/phi-4-mini-instruct":{"attachment":false,"cost":{"cache_read":0.08,"input":0.08,"output":0.35},"family":"phi","id":"microsoft/phi-4-mini-instruct","last_updated":"2025-10-17","limit":{"context":128000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"Phi 4 Mini Instruct","open_weights":true,"reasoning":false,"release_date":"2025-10-17","structured_output":true,"temperature":true,"tool_call":false},"microsoft/wizardlm-2-8x22b":{"attachment":false,"cost":{"input":0.62,"output":0.62},"id":"microsoft/wizardlm-2-8x22b","knowledge":"2024-04-30","last_updated":"2024-04-16","limit":{"context":65535,"output":8000},"modalities":{"input":["text"],"output":["text"]},"name":"WizardLM-2 8x22B","open_weights":true,"reasoning":false,"release_date":"2024-04-16","structured_output":false,"temperature":true,"tool_call":false},"minimax/minimax-01":{"attachment":true,"cost":{"input":0.2,"output":1.1},"family":"minimax","id":"minimax/minimax-01","knowledge":"2024-03-31","last_updated":"2025-01-15","limit":{"context":1000192,"output":1000192},"modalities":{"input":["text","image"],"output":["text"]},"name":"MiniMax-01","open_weights":true,"reasoning":false,"release_date":"2025-01-15","structured_output":false,"temperature":true,"tool_call":false},"minimax/minimax-m1":{"attachment":false,"cost":{"input":0.4,"output":2.2},"family":"minimax","id":"minimax/minimax-m1","knowledge":"2024-06-30","last_updated":"2025-06-17","limit":{"context":1000000,"output":40000},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax M1","open_weights":false,"reasoning":true,"release_date":"2025-06-17","structured_output":false,"temperature":true,"tool_call":true},"minimax/minimax-m2":{"attachment":false,"cost":{"cache_read":0.03,"input":0.255,"output":1},"family":"minimax","id":"minimax/minimax-m2","interleaved":{"field":"reasoning_details"},"last_updated":"2025-10-27","limit":{"context":196608,"output":196608},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2","open_weights":true,"reasoning":true,"release_date":"2025-10-27","structured_output":true,"temperature":true,"tool_call":true},"minimax/minimax-m2-her":{"attachment":false,"cost":{"cache_read":0.03,"input":0.3,"output":1.2},"family":"minimax","id":"minimax/minimax-m2-her","last_updated":"2026-01-23","limit":{"context":65536,"output":2048},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax M2-her","open_weights":false,"reasoning":false,"release_date":"2026-01-23","structured_output":false,"temperature":true,"tool_call":false},"minimax/minimax-m2.1":{"attachment":false,"cost":{"cache_read":0.03,"input":0.29,"output":0.95},"family":"minimax","id":"minimax/minimax-m2.1","interleaved":{"field":"reasoning_details"},"last_updated":"2025-12-23","limit":{"context":196608,"output":196608},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2.1","open_weights":true,"reasoning":true,"release_date":"2025-12-23","structured_output":true,"temperature":true,"tool_call":true},"minimax/minimax-m2.5":{"attachment":false,"cost":{"input":0.15,"output":1.15},"family":"minimax","id":"minimax/minimax-m2.5","interleaved":{"field":"reasoning_details"},"last_updated":"2026-02-12","limit":{"context":196608,"output":196608},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2.5","open_weights":true,"reasoning":true,"release_date":"2026-02-12","structured_output":true,"temperature":true,"tool_call":true},"minimax/minimax-m2.7":{"attachment":false,"cost":{"input":0.279,"output":1.2},"family":"minimax","id":"minimax/minimax-m2.7","last_updated":"2026-03-18","limit":{"context":196608,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2.7","open_weights":true,"reasoning":true,"release_date":"2026-03-18","structured_output":true,"temperature":true,"tool_call":true},"minimax/minimax-m3":{"attachment":true,"cost":{"cache_read":0.06,"input":0.3,"output":1.2},"family":"minimax","id":"minimax/minimax-m3","last_updated":"2026-06-01","limit":{"context":524288,"output":512000},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"MiniMax-M3","open_weights":true,"reasoning":true,"release_date":"2026-06-01","structured_output":false,"temperature":true,"tool_call":true},"mistralai/codestral-2508":{"attachment":true,"cost":{"cache_read":0.03,"input":0.3,"output":0.9},"family":"codestral","id":"mistralai/codestral-2508","knowledge":"2025-03-31","last_updated":"2025-08-01","limit":{"context":256000,"output":256000},"modalities":{"input":["text","pdf"],"output":["text"]},"name":"Codestral 2508","open_weights":false,"reasoning":false,"release_date":"2025-08-01","structured_output":true,"temperature":true,"tool_call":true},"mistralai/devstral-2512":{"attachment":true,"cost":{"cache_read":0.04,"input":0.4,"output":2},"family":"devstral","id":"mistralai/devstral-2512","knowledge":"2025-12","last_updated":"2025-12-09","limit":{"context":262144,"output":262144},"modalities":{"input":["text","pdf"],"output":["text"]},"name":"Devstral 2","open_weights":true,"reasoning":false,"release_date":"2025-12-09","status":"deprecated","structured_output":true,"temperature":true,"tool_call":true},"mistralai/ministral-14b-2512":{"attachment":true,"cost":{"cache_read":0.02,"input":0.2,"output":0.2},"family":"ministral","id":"mistralai/ministral-14b-2512","last_updated":"2025-12-02","limit":{"context":262144,"output":262144},"modalities":{"input":["text","image"],"output":["text"]},"name":"Ministral 3 14B 2512","open_weights":true,"reasoning":false,"release_date":"2025-12-02","structured_output":true,"temperature":true,"tool_call":true},"mistralai/ministral-3b-2512":{"attachment":true,"cost":{"cache_read":0.01,"input":0.1,"output":0.1},"family":"ministral","id":"mistralai/ministral-3b-2512","last_updated":"2025-12-02","limit":{"context":131072,"output":131072},"modalities":{"input":["text","image"],"output":["text"]},"name":"Ministral 3 3B 2512","open_weights":true,"reasoning":false,"release_date":"2025-12-02","structured_output":true,"temperature":true,"tool_call":true},"mistralai/ministral-8b-2512":{"attachment":true,"cost":{"cache_read":0.015,"input":0.15,"output":0.15},"family":"ministral","id":"mistralai/ministral-8b-2512","last_updated":"2025-12-02","limit":{"context":262144,"output":262144},"modalities":{"input":["text","image"],"output":["text"]},"name":"Ministral 3 8B 2512","open_weights":true,"reasoning":false,"release_date":"2025-12-02","structured_output":true,"temperature":true,"tool_call":true},"mistralai/mistral-large":{"attachment":true,"cost":{"cache_read":0.2,"input":2,"output":6},"family":"mistral-large","id":"mistralai/mistral-large","knowledge":"2024-11-30","last_updated":"2024-02-26","limit":{"context":128000,"output":128000},"modalities":{"input":["text","pdf"],"output":["text"]},"name":"Mistral Large","open_weights":false,"reasoning":false,"release_date":"2024-02-26","structured_output":true,"temperature":true,"tool_call":true},"mistralai/mistral-large-2407":{"attachment":true,"cost":{"cache_read":0.2,"input":2,"output":6},"family":"mistral-large","id":"mistralai/mistral-large-2407","knowledge":"2024-03-31","last_updated":"2024-11-19","limit":{"context":131072,"output":131072},"modalities":{"input":["text","pdf"],"output":["text"]},"name":"Mistral Large 2407","open_weights":false,"reasoning":false,"release_date":"2024-11-19","structured_output":true,"temperature":true,"tool_call":true},"mistralai/mistral-large-2512":{"attachment":true,"cost":{"cache_read":0.05,"input":0.5,"output":1.5},"family":"mistral-large","id":"mistralai/mistral-large-2512","knowledge":"2024-11","last_updated":"2025-12-02","limit":{"context":262144,"output":262144},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Mistral Large 3","open_weights":true,"reasoning":false,"release_date":"2024-11-01","structured_output":true,"temperature":true,"tool_call":true},"mistralai/mistral-medium-3":{"attachment":true,"cost":{"cache_read":0.04,"input":0.4,"output":2},"family":"mistral-medium","id":"mistralai/mistral-medium-3","knowledge":"2025-03-31","last_updated":"2025-05-07","limit":{"context":131072,"output":131072},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Mistral Medium 3","open_weights":false,"reasoning":false,"release_date":"2025-05-07","structured_output":true,"temperature":true,"tool_call":true},"mistralai/mistral-medium-3-5":{"attachment":true,"cost":{"input":1.5,"output":7.5},"family":"mistral-medium","id":"mistralai/mistral-medium-3-5","last_updated":"2026-04-30","limit":{"context":262144,"output":262144},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Mistral Medium 3.5","open_weights":false,"reasoning":true,"release_date":"2026-04-30","structured_output":true,"temperature":true,"tool_call":true},"mistralai/mistral-medium-3.1":{"attachment":true,"cost":{"cache_read":0.04,"input":0.4,"output":2},"family":"mistral-medium","id":"mistralai/mistral-medium-3.1","knowledge":"2025-06-30","last_updated":"2025-08-13","limit":{"context":131072,"output":262144},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Mistral Medium 3.1","open_weights":false,"reasoning":false,"release_date":"2025-08-13","structured_output":true,"temperature":true,"tool_call":true},"mistralai/mistral-nemo":{"attachment":false,"cost":{"input":0.02,"output":0.03},"family":"mistral-nemo","id":"mistralai/mistral-nemo","knowledge":"2024-07","last_updated":"2024-07-01","limit":{"context":131072,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"Mistral Nemo","open_weights":true,"reasoning":false,"release_date":"2024-07-01","structured_output":true,"temperature":true,"tool_call":true},"mistralai/mistral-saba":{"attachment":true,"cost":{"cache_read":0.02,"input":0.2,"output":0.6},"family":"mistral","id":"mistralai/mistral-saba","knowledge":"2024-09-30","last_updated":"2025-02-17","limit":{"context":32768,"output":32768},"modalities":{"input":["text","pdf"],"output":["text"]},"name":"Saba","open_weights":false,"reasoning":false,"release_date":"2025-02-17","structured_output":true,"temperature":true,"tool_call":true},"mistralai/mistral-small-24b-instruct-2501":{"attachment":false,"cost":{"input":0.05,"output":0.08},"family":"mistral-small","id":"mistralai/mistral-small-24b-instruct-2501","knowledge":"2023-10-31","last_updated":"2025-01-30","limit":{"context":32768,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Mistral Small 3","open_weights":true,"reasoning":false,"release_date":"2025-01-30","structured_output":true,"temperature":true,"tool_call":false},"mistralai/mistral-small-2603":{"attachment":true,"cost":{"cache_read":0.015,"input":0.15,"output":0.6},"family":"mistral-small","id":"mistralai/mistral-small-2603","knowledge":"2025-06","last_updated":"2026-03-16","limit":{"context":262144,"output":262144},"modalities":{"input":["text","image"],"output":["text"]},"name":"Mistral Small 4","open_weights":true,"reasoning":true,"release_date":"2026-03-16","structured_output":true,"temperature":true,"tool_call":true},"mistralai/mistral-small-3.1-24b-instruct":{"attachment":true,"cost":{"input":0.351,"output":0.555},"family":"mistral-small","id":"mistralai/mistral-small-3.1-24b-instruct","knowledge":"2023-10-31","last_updated":"2025-03-17","limit":{"context":128000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Mistral Small 3.1 24B","open_weights":true,"reasoning":false,"release_date":"2025-03-17","structured_output":false,"temperature":true,"tool_call":false},"mistralai/mistral-small-3.2-24b-instruct":{"attachment":true,"cost":{"input":0.075,"output":0.2},"family":"mistral-small","id":"mistralai/mistral-small-3.2-24b-instruct","knowledge":"2023-10-31","last_updated":"2025-06-20","limit":{"context":128000,"output":16384},"modalities":{"input":["image","text"],"output":["text"]},"name":"Mistral Small 3.2 24B","open_weights":true,"reasoning":false,"release_date":"2025-06-20","structured_output":true,"temperature":true,"tool_call":true},"mistralai/mixtral-8x22b-instruct":{"attachment":true,"cost":{"cache_read":0.2,"input":2,"output":6},"family":"mistral","id":"mistralai/mixtral-8x22b-instruct","knowledge":"2024-01-31","last_updated":"2024-04-17","limit":{"context":65536,"output":65536},"modalities":{"input":["text","pdf"],"output":["text"]},"name":"Mixtral 8x22B Instruct","open_weights":true,"reasoning":false,"release_date":"2024-04-17","structured_output":true,"temperature":true,"tool_call":true},"mistralai/voxtral-small-24b-2507":{"attachment":true,"cost":{"cache_read":0.01,"input":0.1,"output":0.3},"family":"mistral","id":"mistralai/voxtral-small-24b-2507","last_updated":"2025-10-30","limit":{"context":32000,"output":32000},"modalities":{"input":["text","audio","pdf"],"output":["text"]},"name":"Voxtral Small 24B 2507","open_weights":true,"reasoning":false,"release_date":"2025-10-30","structured_output":true,"temperature":true,"tool_call":true},"moonshotai/kimi-k2":{"attachment":false,"cost":{"input":0.57,"output":2.3},"family":"kimi","id":"moonshotai/kimi-k2","knowledge":"2024-12-31","last_updated":"2025-07-11","limit":{"context":131072,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Kimi K2 0711","open_weights":true,"reasoning":false,"release_date":"2025-07-11","structured_output":false,"temperature":true,"tool_call":true},"moonshotai/kimi-k2-0905":{"attachment":false,"cost":{"input":0.6,"output":2.5},"family":"kimi","id":"moonshotai/kimi-k2-0905","knowledge":"2024-12-31","last_updated":"2025-09-04","limit":{"context":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Kimi K2 0905","open_weights":true,"reasoning":false,"release_date":"2025-09-04","structured_output":true,"temperature":true,"tool_call":true},"moonshotai/kimi-k2-thinking":{"attachment":false,"cost":{"input":0.6,"output":2.5},"family":"kimi-thinking","id":"moonshotai/kimi-k2-thinking","interleaved":{"field":"reasoning_details"},"knowledge":"2024-08","last_updated":"2025-11-06","limit":{"context":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Kimi K2 Thinking","open_weights":true,"reasoning":true,"release_date":"2025-11-06","structured_output":true,"temperature":true,"tool_call":true},"moonshotai/kimi-k2.5":{"attachment":true,"cost":{"cache_read":0.09,"input":0.4,"output":1.9},"family":"kimi-k2.5","id":"moonshotai/kimi-k2.5","interleaved":{"field":"reasoning_details"},"knowledge":"2025-01","last_updated":"2026-01","limit":{"context":262144,"output":262144},"modalities":{"input":["text","image"],"output":["text"]},"name":"Kimi K2.5","open_weights":true,"reasoning":true,"release_date":"2026-01","structured_output":true,"temperature":true,"tool_call":true},"moonshotai/kimi-k2.6":{"attachment":true,"cost":{"cache_read":0.144,"input":0.684,"output":3.42},"family":"kimi-k2.6","id":"moonshotai/kimi-k2.6","interleaved":{"field":"reasoning_details"},"knowledge":"2025-01","last_updated":"2026-04-21","limit":{"context":262144,"output":262144},"modalities":{"input":["text","image"],"output":["text"]},"name":"Kimi K2.6","open_weights":true,"reasoning":true,"release_date":"2026-04-21","structured_output":true,"temperature":true,"tool_call":true},"moonshotai/kimi-k2.6:free":{"attachment":true,"cost":{"input":0,"output":0},"family":"kimi-k2.6","id":"moonshotai/kimi-k2.6:free","interleaved":{"field":"reasoning_content"},"knowledge":"2025-01","last_updated":"2026-04-21","limit":{"context":262144,"output":262144},"modalities":{"input":["text","image"],"output":["text"]},"name":"Kimi K2.6 (free)","open_weights":true,"reasoning":true,"release_date":"2026-04-21","structured_output":false,"temperature":false,"tool_call":true},"morph/morph-v3-fast":{"attachment":false,"cost":{"input":0.8,"output":1.2},"family":"morph","id":"morph/morph-v3-fast","last_updated":"2025-07-07","limit":{"context":81920,"output":38000},"modalities":{"input":["text"],"output":["text"]},"name":"Morph V3 Fast","open_weights":false,"reasoning":false,"release_date":"2025-07-07","structured_output":false,"temperature":true,"tool_call":false},"morph/morph-v3-large":{"attachment":false,"cost":{"input":0.9,"output":1.9},"family":"morph","id":"morph/morph-v3-large","last_updated":"2025-07-07","limit":{"context":262144,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"Morph V3 Large","open_weights":false,"reasoning":false,"release_date":"2025-07-07","structured_output":false,"temperature":true,"tool_call":false},"nex-agi/deepseek-v3.1-nex-n1":{"attachment":false,"cost":{"input":0.135,"output":0.5},"family":"deepseek","id":"nex-agi/deepseek-v3.1-nex-n1","last_updated":"2025-12-08","limit":{"context":131072,"output":163840},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V3.1 Nex N1","open_weights":true,"reasoning":false,"release_date":"2025-12-08","structured_output":true,"temperature":true,"tool_call":true},"nousresearch/hermes-2-pro-llama-3-8b":{"attachment":false,"cost":{"input":0.14,"output":0.14},"family":"nousresearch","id":"nousresearch/hermes-2-pro-llama-3-8b","knowledge":"2023-12-31","last_updated":"2024-05-27","limit":{"context":8192,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Hermes 2 Pro - Llama-3 8B","open_weights":true,"reasoning":false,"release_date":"2024-05-27","structured_output":true,"temperature":true,"tool_call":false},"nousresearch/hermes-3-llama-3.1-405b":{"attachment":false,"cost":{"input":1,"output":1},"family":"nousresearch","id":"nousresearch/hermes-3-llama-3.1-405b","knowledge":"2023-12-31","last_updated":"2024-08-16","limit":{"context":131072,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Hermes 3 405B Instruct","open_weights":true,"reasoning":false,"release_date":"2024-08-16","structured_output":true,"temperature":true,"tool_call":false},"nousresearch/hermes-3-llama-3.1-405b:free":{"attachment":false,"cost":{"input":0,"output":0},"family":"hermes","id":"nousresearch/hermes-3-llama-3.1-405b:free","knowledge":"2023-12-31","last_updated":"2024-08-16","limit":{"context":131072,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"Hermes 3 405B Instruct (free)","open_weights":true,"reasoning":false,"release_date":"2024-08-16","structured_output":false,"temperature":true,"tool_call":false},"nousresearch/hermes-3-llama-3.1-70b":{"attachment":false,"cost":{"input":0.3,"output":0.3},"family":"nousresearch","id":"nousresearch/hermes-3-llama-3.1-70b","knowledge":"2023-12-31","last_updated":"2024-08-18","limit":{"context":131072,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Hermes 3 70B Instruct","open_weights":true,"reasoning":false,"release_date":"2024-08-18","structured_output":true,"temperature":true,"tool_call":false},"nousresearch/hermes-4-405b":{"attachment":false,"cost":{"input":1,"output":3},"family":"hermes","id":"nousresearch/hermes-4-405b","knowledge":"2024-08-31","last_updated":"2025-08-26","limit":{"context":131072,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"Hermes 4 405B","open_weights":true,"reasoning":true,"release_date":"2025-08-26","structured_output":false,"temperature":true,"tool_call":false},"nousresearch/hermes-4-70b":{"attachment":false,"cost":{"input":0.13,"output":0.4},"family":"hermes","id":"nousresearch/hermes-4-70b","knowledge":"2024-08-31","last_updated":"2025-08-26","limit":{"context":131072,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"Hermes 4 70B","open_weights":true,"reasoning":true,"release_date":"2025-08-26","structured_output":false,"temperature":true,"tool_call":false},"nvidia/llama-3.3-nemotron-super-49b-v1.5":{"attachment":false,"cost":{"input":0.1,"output":0.4},"family":"nemotron","id":"nvidia/llama-3.3-nemotron-super-49b-v1.5","knowledge":"2024-03-31","last_updated":"2025-10-10","limit":{"context":131072,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.3 Nemotron Super 49B V1.5","open_weights":true,"reasoning":true,"release_date":"2025-10-10","structured_output":false,"temperature":true,"tool_call":true},"nvidia/nemotron-3-nano-30b-a3b":{"attachment":false,"cost":{"input":0.05,"output":0.2},"family":"nemotron","id":"nvidia/nemotron-3-nano-30b-a3b","last_updated":"2025-12-14","limit":{"context":262144,"output":228000},"modalities":{"input":["text"],"output":["text"]},"name":"Nemotron 3 Nano 30B A3B","open_weights":true,"reasoning":true,"release_date":"2025-12-14","structured_output":false,"temperature":true,"tool_call":true},"nvidia/nemotron-3-nano-30b-a3b:free":{"attachment":false,"cost":{"input":0,"output":0},"family":"nemotron","id":"nvidia/nemotron-3-nano-30b-a3b:free","knowledge":"2025-11","last_updated":"2025-12-14","limit":{"context":256000,"output":256000},"modalities":{"input":["text"],"output":["text"]},"name":"Nemotron 3 Nano 30B A3B (free)","open_weights":true,"reasoning":true,"release_date":"2025-12-14","structured_output":false,"temperature":true,"tool_call":true},"nvidia/nemotron-3-nano-omni-30b-a3b-reasoning:free":{"attachment":true,"cost":{"input":0,"output":0},"family":"nemotron","id":"nvidia/nemotron-3-nano-omni-30b-a3b-reasoning:free","last_updated":"2026-04-28","limit":{"context":256000,"output":65536},"modalities":{"input":["text","audio","image","video"],"output":["text"]},"name":"Nemotron 3 Nano Omni (free)","open_weights":false,"reasoning":true,"release_date":"2026-04-28","structured_output":false,"temperature":true,"tool_call":true},"nvidia/nemotron-3-super-120b-a12b":{"attachment":false,"cost":{"input":0.09,"output":0.45},"family":"nemotron","id":"nvidia/nemotron-3-super-120b-a12b","knowledge":"2024-04","last_updated":"2026-03-11","limit":{"context":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Nemotron 3 Super","open_weights":true,"reasoning":true,"release_date":"2026-03-11","structured_output":false,"temperature":true,"tool_call":true},"nvidia/nemotron-3-super-120b-a12b:free":{"attachment":false,"cost":{"input":0,"output":0},"family":"nemotron","id":"nvidia/nemotron-3-super-120b-a12b:free","knowledge":"2024-04","last_updated":"2026-03-11","limit":{"context":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Nemotron 3 Super (free)","open_weights":true,"reasoning":true,"release_date":"2026-03-11","structured_output":true,"temperature":true,"tool_call":true},"nvidia/nemotron-nano-12b-v2-vl:free":{"attachment":true,"cost":{"input":0,"output":0},"family":"nemotron","id":"nvidia/nemotron-nano-12b-v2-vl:free","knowledge":"2025-11","last_updated":"2025-10-28","limit":{"context":128000,"output":128000},"modalities":{"input":["image","text","video"],"output":["text"]},"name":"Nemotron Nano 12B 2 VL (free)","open_weights":true,"reasoning":true,"release_date":"2025-10-28","structured_output":false,"temperature":true,"tool_call":true},"nvidia/nemotron-nano-9b-v2":{"attachment":false,"cost":{"input":0.04,"output":0.16},"family":"nemotron","id":"nvidia/nemotron-nano-9b-v2","knowledge":"2025-03-31","last_updated":"2025-09-05","limit":{"context":131072,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Nemotron Nano 9B V2","open_weights":true,"reasoning":true,"release_date":"2025-09-05","structured_output":false,"temperature":true,"tool_call":true},"nvidia/nemotron-nano-9b-v2:free":{"attachment":false,"cost":{"input":0,"output":0},"family":"nemotron","id":"nvidia/nemotron-nano-9b-v2:free","knowledge":"2025-03-31","last_updated":"2025-09-05","limit":{"context":128000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"Nemotron Nano 9B V2 (free)","open_weights":true,"reasoning":true,"release_date":"2025-09-05","structured_output":true,"temperature":true,"tool_call":true},"openai/gpt-3.5-turbo":{"attachment":false,"cost":{"input":0.5,"output":1.5},"family":"gpt","id":"openai/gpt-3.5-turbo","knowledge":"2021-09-01","last_updated":"2023-11-06","limit":{"context":16385,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"GPT-3.5-turbo","open_weights":false,"reasoning":false,"release_date":"2023-03-01","structured_output":true,"temperature":true,"tool_call":true},"openai/gpt-3.5-turbo-0613":{"attachment":false,"cost":{"input":1,"output":2},"family":"gpt","id":"openai/gpt-3.5-turbo-0613","knowledge":"2021-09-30","last_updated":"2024-01-25","limit":{"context":4095,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"GPT-3.5 Turbo (older v0613)","open_weights":false,"reasoning":false,"release_date":"2024-01-25","structured_output":true,"temperature":true,"tool_call":true},"openai/gpt-3.5-turbo-16k":{"attachment":false,"cost":{"input":3,"output":4},"family":"gpt","id":"openai/gpt-3.5-turbo-16k","knowledge":"2021-09-30","last_updated":"2023-08-28","limit":{"context":16385,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"GPT-3.5 Turbo 16k","open_weights":false,"reasoning":false,"release_date":"2023-08-28","structured_output":true,"temperature":true,"tool_call":true},"openai/gpt-3.5-turbo-instruct":{"attachment":false,"cost":{"input":1.5,"output":2},"family":"gpt","id":"openai/gpt-3.5-turbo-instruct","knowledge":"2021-09-30","last_updated":"2023-09-28","limit":{"context":4095,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"GPT-3.5 Turbo Instruct","open_weights":false,"reasoning":false,"release_date":"2023-09-28","structured_output":true,"temperature":true,"tool_call":false},"openai/gpt-4":{"attachment":false,"cost":{"input":30,"output":60},"family":"gpt","id":"openai/gpt-4","knowledge":"2023-11","last_updated":"2024-04-09","limit":{"context":8191,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"GPT-4","open_weights":false,"reasoning":false,"release_date":"2023-11-06","structured_output":true,"temperature":true,"tool_call":true},"openai/gpt-4-1106-preview":{"attachment":false,"cost":{"input":10,"output":30},"family":"gpt","id":"openai/gpt-4-1106-preview","knowledge":"2023-04-30","last_updated":"2023-11-06","limit":{"context":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"GPT-4 Turbo (older v1106)","open_weights":false,"reasoning":false,"release_date":"2023-11-06","structured_output":true,"temperature":true,"tool_call":true},"openai/gpt-4-turbo":{"attachment":true,"cost":{"input":10,"output":30},"family":"gpt","id":"openai/gpt-4-turbo","knowledge":"2023-12","last_updated":"2024-04-09","limit":{"context":128000,"output":4096},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-4 Turbo","open_weights":false,"reasoning":false,"release_date":"2023-11-06","structured_output":true,"temperature":true,"tool_call":true},"openai/gpt-4-turbo-preview":{"attachment":false,"cost":{"input":10,"output":30},"family":"gpt","id":"openai/gpt-4-turbo-preview","knowledge":"2023-12-31","last_updated":"2024-01-25","limit":{"context":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"GPT-4 Turbo Preview","open_weights":false,"reasoning":false,"release_date":"2024-01-25","structured_output":true,"temperature":true,"tool_call":true},"openai/gpt-4.1":{"attachment":true,"cost":{"cache_read":0.5,"input":2,"output":8},"family":"gpt","id":"openai/gpt-4.1","knowledge":"2024-04","last_updated":"2025-04-14","limit":{"context":1047576,"output":32768},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-4.1","open_weights":false,"reasoning":false,"release_date":"2025-04-14","structured_output":true,"temperature":true,"tool_call":true},"openai/gpt-4.1-mini":{"attachment":true,"cost":{"cache_read":0.1,"input":0.4,"output":1.6},"family":"gpt-mini","id":"openai/gpt-4.1-mini","knowledge":"2024-04","last_updated":"2025-04-14","limit":{"context":1047576,"output":32768},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-4.1 mini","open_weights":false,"reasoning":false,"release_date":"2025-04-14","structured_output":true,"temperature":true,"tool_call":true},"openai/gpt-4.1-nano":{"attachment":true,"cost":{"cache_read":0.025,"input":0.1,"output":0.4},"family":"gpt-nano","id":"openai/gpt-4.1-nano","knowledge":"2024-04","last_updated":"2025-04-14","limit":{"context":1047576,"output":32768},"modalities":{"input":["image","text","pdf"],"output":["text"]},"name":"GPT-4.1 nano","open_weights":false,"reasoning":false,"release_date":"2025-04-14","structured_output":true,"temperature":true,"tool_call":true},"openai/gpt-4o":{"attachment":true,"cost":{"input":2.5,"output":10},"family":"gpt","id":"openai/gpt-4o","knowledge":"2023-09","last_updated":"2024-08-06","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-4o","open_weights":false,"reasoning":false,"release_date":"2024-05-13","structured_output":true,"temperature":true,"tool_call":true},"openai/gpt-4o-2024-05-13":{"attachment":true,"cost":{"input":5,"output":15},"family":"gpt","id":"openai/gpt-4o-2024-05-13","knowledge":"2023-09","last_updated":"2024-05-13","limit":{"context":128000,"output":4096},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-4o (2024-05-13)","open_weights":false,"reasoning":false,"release_date":"2024-05-13","structured_output":true,"temperature":true,"tool_call":true},"openai/gpt-4o-2024-08-06":{"attachment":true,"cost":{"cache_read":1.25,"input":2.5,"output":10},"family":"gpt","id":"openai/gpt-4o-2024-08-06","knowledge":"2023-09","last_updated":"2024-08-06","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-4o (2024-08-06)","open_weights":false,"reasoning":false,"release_date":"2024-08-06","structured_output":true,"temperature":true,"tool_call":true},"openai/gpt-4o-2024-11-20":{"attachment":true,"cost":{"cache_read":1.25,"input":2.5,"output":10},"family":"gpt","id":"openai/gpt-4o-2024-11-20","knowledge":"2023-09","last_updated":"2024-11-20","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-4o (2024-11-20)","open_weights":false,"reasoning":false,"release_date":"2024-11-20","structured_output":true,"temperature":true,"tool_call":true},"openai/gpt-4o-mini":{"attachment":true,"cost":{"cache_read":0.075,"input":0.15,"output":0.6},"family":"gpt-mini","id":"openai/gpt-4o-mini","knowledge":"2023-09","last_updated":"2024-07-18","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-4o mini","open_weights":false,"reasoning":false,"release_date":"2024-07-18","structured_output":true,"temperature":true,"tool_call":true},"openai/gpt-4o-mini-2024-07-18":{"attachment":true,"cost":{"cache_read":0.075,"input":0.15,"output":0.6},"family":"o-mini","id":"openai/gpt-4o-mini-2024-07-18","knowledge":"2023-10-31","last_updated":"2024-07-18","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-4o-mini (2024-07-18)","open_weights":false,"reasoning":false,"release_date":"2024-07-18","structured_output":true,"temperature":true,"tool_call":true},"openai/gpt-4o-mini-search-preview":{"attachment":false,"cost":{"input":0.15,"output":0.6},"family":"o-mini","id":"openai/gpt-4o-mini-search-preview","knowledge":"2023-10-31","last_updated":"2025-03-12","limit":{"context":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"GPT-4o-mini Search Preview","open_weights":false,"reasoning":false,"release_date":"2025-03-12","structured_output":true,"temperature":false,"tool_call":false},"openai/gpt-4o-search-preview":{"attachment":false,"cost":{"input":2.5,"output":10},"family":"gpt","id":"openai/gpt-4o-search-preview","knowledge":"2023-10-31","last_updated":"2025-03-12","limit":{"context":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"GPT-4o Search Preview","open_weights":false,"reasoning":false,"release_date":"2025-03-12","structured_output":true,"temperature":false,"tool_call":false},"openai/gpt-5":{"attachment":true,"cost":{"cache_read":0.125,"input":1.25,"output":10},"family":"gpt","id":"openai/gpt-5","knowledge":"2024-09-30","last_updated":"2025-08-07","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5","open_weights":false,"reasoning":true,"release_date":"2025-08-07","structured_output":true,"temperature":false,"tool_call":true},"openai/gpt-5-chat":{"attachment":true,"cost":{"cache_read":0.125,"input":1.25,"output":10},"family":"gpt-codex","id":"openai/gpt-5-chat","knowledge":"2024-09-30","last_updated":"2025-08-07","limit":{"context":128000,"output":16384},"modalities":{"input":["pdf","image","text"],"output":["text"]},"name":"GPT-5 Chat","open_weights":false,"reasoning":false,"release_date":"2025-08-07","structured_output":true,"temperature":false,"tool_call":false},"openai/gpt-5-codex":{"attachment":true,"cost":{"cache_read":0.125,"input":1.25,"output":10},"family":"gpt-codex","id":"openai/gpt-5-codex","knowledge":"2024-09-30","last_updated":"2025-09-15","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5-Codex","open_weights":false,"reasoning":true,"release_date":"2025-09-15","structured_output":true,"temperature":false,"tool_call":true},"openai/gpt-5-image":{"attachment":true,"cost":{"cache_read":1.25,"input":10,"output":10},"family":"gpt","id":"openai/gpt-5-image","knowledge":"2024-10-01","last_updated":"2025-10-14","limit":{"context":400000,"output":128000},"modalities":{"input":["image","text","pdf"],"output":["image","text"]},"name":"GPT-5 Image","open_weights":false,"reasoning":true,"release_date":"2025-10-14","structured_output":true,"temperature":true,"tool_call":false},"openai/gpt-5-image-mini":{"attachment":true,"cost":{"cache_read":0.25,"input":2.5,"output":2},"family":"gpt","id":"openai/gpt-5-image-mini","last_updated":"2025-10-16","limit":{"context":400000,"output":128000},"modalities":{"input":["pdf","image","text"],"output":["image","text"]},"name":"GPT-5 Image Mini","open_weights":false,"reasoning":true,"release_date":"2025-10-16","structured_output":true,"temperature":true,"tool_call":false},"openai/gpt-5-mini":{"attachment":true,"cost":{"cache_read":0.025,"input":0.25,"output":2},"family":"gpt-mini","id":"openai/gpt-5-mini","knowledge":"2024-05-30","last_updated":"2025-08-07","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5 Mini","open_weights":false,"reasoning":true,"release_date":"2025-08-07","structured_output":true,"temperature":false,"tool_call":true},"openai/gpt-5-nano":{"attachment":true,"cost":{"cache_read":0.01,"input":0.05,"output":0.4},"family":"gpt-nano","id":"openai/gpt-5-nano","knowledge":"2024-05-30","last_updated":"2025-08-07","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5 Nano","open_weights":false,"reasoning":true,"release_date":"2025-08-07","structured_output":true,"temperature":false,"tool_call":true},"openai/gpt-5-pro":{"attachment":true,"cost":{"input":15,"output":120},"family":"gpt-pro","id":"openai/gpt-5-pro","knowledge":"2024-09-30","last_updated":"2025-10-06","limit":{"context":400000,"output":128000},"modalities":{"input":["image","text","pdf"],"output":["text"]},"name":"GPT-5 Pro","open_weights":false,"reasoning":true,"release_date":"2025-10-06","structured_output":true,"temperature":false,"tool_call":true},"openai/gpt-5.1":{"attachment":true,"cost":{"cache_read":0.13,"input":1.25,"output":10},"family":"gpt","id":"openai/gpt-5.1","knowledge":"2024-09-30","last_updated":"2025-11-13","limit":{"context":400000,"output":128000},"modalities":{"input":["image","text","pdf"],"output":["text"]},"name":"GPT-5.1","open_weights":false,"reasoning":true,"release_date":"2025-11-13","structured_output":true,"temperature":false,"tool_call":true},"openai/gpt-5.1-chat":{"attachment":true,"cost":{"cache_read":0.13,"input":1.25,"output":10},"family":"gpt-codex","id":"openai/gpt-5.1-chat","knowledge":"2024-09-30","last_updated":"2025-11-13","limit":{"context":128000,"output":32000},"modalities":{"input":["pdf","image","text"],"output":["text"]},"name":"GPT-5.1 Chat","open_weights":false,"reasoning":false,"release_date":"2025-11-13","structured_output":true,"temperature":false,"tool_call":true},"openai/gpt-5.1-codex":{"attachment":true,"cost":{"cache_read":0.13,"input":1.25,"output":10},"family":"gpt-codex","id":"openai/gpt-5.1-codex","knowledge":"2024-09-30","last_updated":"2025-11-13","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.1 Codex","open_weights":false,"reasoning":true,"release_date":"2025-11-13","structured_output":true,"temperature":false,"tool_call":true},"openai/gpt-5.1-codex-max":{"attachment":true,"cost":{"cache_read":0.125,"input":1.25,"output":10},"family":"gpt-codex","id":"openai/gpt-5.1-codex-max","knowledge":"2024-09-30","last_updated":"2025-11-13","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.1 Codex Max","open_weights":false,"reasoning":true,"release_date":"2025-11-13","structured_output":true,"temperature":false,"tool_call":true},"openai/gpt-5.1-codex-mini":{"attachment":true,"cost":{"cache_read":0.025,"input":0.25,"output":2},"family":"gpt-codex","id":"openai/gpt-5.1-codex-mini","knowledge":"2024-09-30","last_updated":"2025-11-13","limit":{"context":400000,"output":100000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.1 Codex mini","open_weights":false,"reasoning":true,"release_date":"2025-11-13","structured_output":true,"temperature":false,"tool_call":true},"openai/gpt-5.2":{"attachment":true,"cost":{"cache_read":0.175,"input":1.75,"output":14},"family":"gpt","id":"openai/gpt-5.2","knowledge":"2025-08-31","last_updated":"2025-12-11","limit":{"context":400000,"output":128000},"modalities":{"input":["pdf","image","text"],"output":["text"]},"name":"GPT-5.2","open_weights":false,"reasoning":true,"release_date":"2025-12-11","structured_output":true,"temperature":false,"tool_call":true},"openai/gpt-5.2-chat":{"attachment":true,"cost":{"cache_read":0.175,"input":1.75,"output":14},"family":"gpt-codex","id":"openai/gpt-5.2-chat","knowledge":"2025-08-31","last_updated":"2025-12-10","limit":{"context":128000,"output":16384},"modalities":{"input":["pdf","image","text"],"output":["text"]},"name":"GPT-5.2 Chat","open_weights":false,"reasoning":false,"release_date":"2025-12-10","structured_output":true,"temperature":false,"tool_call":true},"openai/gpt-5.2-codex":{"attachment":true,"cost":{"cache_read":0.175,"input":1.75,"output":14},"family":"gpt-codex","id":"openai/gpt-5.2-codex","knowledge":"2025-08-31","last_updated":"2025-12-11","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.2 Codex","open_weights":false,"reasoning":true,"release_date":"2025-12-11","structured_output":true,"temperature":false,"tool_call":true},"openai/gpt-5.2-pro":{"attachment":true,"cost":{"input":21,"output":168},"family":"gpt-pro","id":"openai/gpt-5.2-pro","knowledge":"2025-08-31","last_updated":"2025-12-11","limit":{"context":400000,"output":128000},"modalities":{"input":["image","text","pdf"],"output":["text"]},"name":"GPT-5.2 Pro","open_weights":false,"reasoning":true,"release_date":"2025-12-11","structured_output":true,"temperature":false,"tool_call":true},"openai/gpt-5.3-chat":{"attachment":true,"cost":{"cache_read":0.175,"input":1.75,"output":14},"family":"gpt","id":"openai/gpt-5.3-chat","last_updated":"2026-03-03","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5.3 Chat","open_weights":false,"reasoning":false,"release_date":"2026-03-03","structured_output":true,"temperature":false,"tool_call":true},"openai/gpt-5.3-codex":{"attachment":true,"cost":{"cache_read":0.175,"input":1.75,"output":14},"family":"gpt-codex","id":"openai/gpt-5.3-codex","knowledge":"2025-08-31","last_updated":"2026-02-05","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5.3 Codex","open_weights":false,"reasoning":true,"release_date":"2026-02-05","structured_output":true,"temperature":false,"tool_call":true},"openai/gpt-5.4":{"attachment":true,"cost":{"cache_read":0.25,"input":2.5,"output":15},"family":"gpt","id":"openai/gpt-5.4","knowledge":"2025-08-31","last_updated":"2026-03-05","limit":{"context":1050000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5.4","open_weights":false,"reasoning":true,"release_date":"2026-03-05","structured_output":true,"temperature":false,"tool_call":true},"openai/gpt-5.4-image-2":{"attachment":true,"cost":{"cache_read":2,"input":8,"output":15},"family":"gpt","id":"openai/gpt-5.4-image-2","last_updated":"2026-04-21","limit":{"context":272000,"output":128000},"modalities":{"input":["image","text","pdf"],"output":["image","text"]},"name":"GPT-5.4 Image 2","open_weights":false,"reasoning":true,"release_date":"2026-04-21","structured_output":true,"temperature":false,"tool_call":false},"openai/gpt-5.4-mini":{"attachment":true,"cost":{"cache_read":0.075,"input":0.75,"output":4.5},"family":"gpt-mini","id":"openai/gpt-5.4-mini","knowledge":"2025-08-31","last_updated":"2026-03-17","limit":{"context":400000,"output":128000},"modalities":{"input":["pdf","image","text"],"output":["text"]},"name":"GPT-5.4 mini","open_weights":false,"reasoning":true,"release_date":"2026-03-17","structured_output":true,"temperature":false,"tool_call":true},"openai/gpt-5.4-nano":{"attachment":true,"cost":{"cache_read":0.02,"input":0.2,"output":1.25},"family":"gpt-nano","id":"openai/gpt-5.4-nano","knowledge":"2025-08-31","last_updated":"2026-03-17","limit":{"context":400000,"output":128000},"modalities":{"input":["pdf","image","text"],"output":["text"]},"name":"GPT-5.4 nano","open_weights":false,"reasoning":true,"release_date":"2026-03-17","structured_output":true,"temperature":false,"tool_call":true},"openai/gpt-5.4-pro":{"attachment":true,"cost":{"input":30,"output":180},"family":"gpt-pro","id":"openai/gpt-5.4-pro","knowledge":"2025-08-31","last_updated":"2026-03-05","limit":{"context":1050000,"input":922000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5.4 Pro","open_weights":false,"reasoning":true,"release_date":"2026-03-05","structured_output":true,"temperature":false,"tool_call":true},"openai/gpt-5.5":{"attachment":true,"cost":{"cache_read":0.5,"input":5,"output":30},"family":"gpt","id":"openai/gpt-5.5","knowledge":"2025-12-01","last_updated":"2026-04-23","limit":{"context":1050000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5.5","open_weights":false,"reasoning":true,"release_date":"2026-04-23","structured_output":true,"temperature":false,"tool_call":true},"openai/gpt-5.5-pro":{"attachment":true,"cost":{"input":30,"output":180},"family":"gpt-pro","id":"openai/gpt-5.5-pro","knowledge":"2025-12-01","last_updated":"2026-04-23","limit":{"context":1050000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5.5 Pro","open_weights":false,"reasoning":true,"release_date":"2026-04-23","structured_output":true,"temperature":false,"tool_call":true},"openai/gpt-audio":{"attachment":true,"cost":{"input":2.5,"output":10},"family":"gpt","id":"openai/gpt-audio","last_updated":"2026-01-19","limit":{"context":128000,"output":16384},"modalities":{"input":["text","audio"],"output":["text","audio"]},"name":"GPT Audio","open_weights":false,"reasoning":false,"release_date":"2026-01-19","structured_output":true,"temperature":true,"tool_call":true},"openai/gpt-audio-mini":{"attachment":true,"cost":{"input":0.6,"output":2.4},"family":"o-mini","id":"openai/gpt-audio-mini","last_updated":"2026-01-19","limit":{"context":128000,"output":16384},"modalities":{"input":["text","audio"],"output":["text","audio"]},"name":"GPT Audio Mini","open_weights":false,"reasoning":false,"release_date":"2026-01-19","structured_output":true,"temperature":true,"tool_call":true},"openai/gpt-chat-latest":{"attachment":true,"cost":{"cache_read":0.5,"input":5,"output":30},"family":"gpt","id":"openai/gpt-chat-latest","last_updated":"2026-05-05","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT Chat Latest","open_weights":false,"reasoning":false,"release_date":"2026-05-05","structured_output":true,"temperature":false,"tool_call":true},"openai/gpt-oss-120b":{"attachment":false,"cost":{"input":0.039,"output":0.18},"family":"gpt-oss","id":"openai/gpt-oss-120b","knowledge":"2024-06-30","last_updated":"2025-08-05","limit":{"context":131072,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"gpt-oss-120b","open_weights":true,"reasoning":true,"release_date":"2025-08-05","structured_output":true,"temperature":true,"tool_call":true},"openai/gpt-oss-120b:free":{"attachment":false,"cost":{"input":0,"output":0},"family":"gpt-oss","id":"openai/gpt-oss-120b:free","knowledge":"2024-06-30","last_updated":"2025-08-05","limit":{"context":131072,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"gpt-oss-120b (free)","open_weights":true,"reasoning":true,"release_date":"2025-08-05","structured_output":false,"temperature":true,"tool_call":true},"openai/gpt-oss-20b":{"attachment":false,"cost":{"input":0.029,"output":0.14},"family":"gpt-oss","id":"openai/gpt-oss-20b","knowledge":"2024-06-30","last_updated":"2025-08-05","limit":{"context":131072,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"gpt-oss-20b","open_weights":true,"reasoning":true,"release_date":"2025-08-05","structured_output":true,"temperature":true,"tool_call":true},"openai/gpt-oss-20b:free":{"attachment":false,"cost":{"input":0,"output":0},"family":"gpt-oss","id":"openai/gpt-oss-20b:free","knowledge":"2024-06-30","last_updated":"2025-08-05","limit":{"context":131072,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"gpt-oss-20b (free)","open_weights":true,"reasoning":true,"release_date":"2025-08-05","structured_output":false,"temperature":true,"tool_call":true},"openai/gpt-oss-safeguard-20b":{"attachment":false,"cost":{"cache_read":0.037,"input":0.075,"output":0.3},"family":"gpt-oss","id":"openai/gpt-oss-safeguard-20b","last_updated":"2025-10-29","limit":{"context":131072,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"gpt-oss-safeguard-20b","open_weights":true,"reasoning":true,"release_date":"2025-10-29","structured_output":false,"temperature":true,"tool_call":true},"openai/o1":{"attachment":true,"cost":{"cache_read":7.5,"input":15,"output":60},"family":"o","id":"openai/o1","knowledge":"2023-09","last_updated":"2024-12-05","limit":{"context":200000,"output":100000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"o1","open_weights":false,"reasoning":true,"release_date":"2024-12-05","structured_output":true,"temperature":false,"tool_call":true},"openai/o1-pro":{"attachment":true,"cost":{"input":150,"output":600},"family":"o-pro","id":"openai/o1-pro","knowledge":"2023-09","last_updated":"2025-03-19","limit":{"context":200000,"output":100000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"o1-pro","open_weights":false,"reasoning":true,"release_date":"2025-03-19","structured_output":true,"temperature":false,"tool_call":false},"openai/o3":{"attachment":true,"cost":{"cache_read":0.5,"input":2,"output":8},"family":"o","id":"openai/o3","knowledge":"2024-05","last_updated":"2025-04-16","limit":{"context":200000,"output":100000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"o3","open_weights":false,"reasoning":true,"release_date":"2025-04-16","structured_output":true,"temperature":false,"tool_call":true},"openai/o3-deep-research":{"attachment":true,"cost":{"cache_read":2.5,"input":10,"output":40},"family":"o","id":"openai/o3-deep-research","knowledge":"2024-05","last_updated":"2024-06-26","limit":{"context":200000,"output":100000},"modalities":{"input":["image","text","pdf"],"output":["text"]},"name":"o3-deep-research","open_weights":false,"reasoning":true,"release_date":"2024-06-26","structured_output":true,"temperature":true,"tool_call":true},"openai/o3-mini":{"attachment":true,"cost":{"cache_read":0.55,"input":1.1,"output":4.4},"family":"o-mini","id":"openai/o3-mini","knowledge":"2024-05","last_updated":"2025-01-29","limit":{"context":200000,"output":100000},"modalities":{"input":["text","pdf"],"output":["text"]},"name":"o3-mini","open_weights":false,"reasoning":true,"release_date":"2024-12-20","structured_output":true,"temperature":false,"tool_call":true},"openai/o3-mini-high":{"attachment":true,"cost":{"cache_read":0.55,"input":1.1,"output":4.4},"family":"o","id":"openai/o3-mini-high","knowledge":"2023-10-31","last_updated":"2025-02-12","limit":{"context":200000,"output":100000},"modalities":{"input":["text","pdf"],"output":["text"]},"name":"o3 Mini High","open_weights":false,"reasoning":true,"release_date":"2025-02-12","structured_output":true,"temperature":false,"tool_call":true},"openai/o3-pro":{"attachment":true,"cost":{"input":20,"output":80},"family":"o-pro","id":"openai/o3-pro","knowledge":"2024-05","last_updated":"2025-06-10","limit":{"context":200000,"output":100000},"modalities":{"input":["text","pdf","image"],"output":["text"]},"name":"o3-pro","open_weights":false,"reasoning":true,"release_date":"2025-06-10","structured_output":true,"temperature":false,"tool_call":true},"openai/o4-mini":{"attachment":true,"cost":{"cache_read":0.275,"input":1.1,"output":4.4},"family":"o-mini","id":"openai/o4-mini","knowledge":"2024-05","last_updated":"2025-04-16","limit":{"context":200000,"output":100000},"modalities":{"input":["image","text","pdf"],"output":["text"]},"name":"o4-mini","open_weights":false,"reasoning":true,"release_date":"2025-04-16","structured_output":true,"temperature":false,"tool_call":true},"openai/o4-mini-deep-research":{"attachment":true,"cost":{"cache_read":0.5,"input":2,"output":8},"family":"o-mini","id":"openai/o4-mini-deep-research","knowledge":"2024-05","last_updated":"2024-06-26","limit":{"context":200000,"output":100000},"modalities":{"input":["pdf","image","text"],"output":["text"]},"name":"o4-mini-deep-research","open_weights":false,"reasoning":true,"release_date":"2024-06-26","structured_output":true,"temperature":true,"tool_call":true},"openai/o4-mini-high":{"attachment":true,"cost":{"cache_read":0.275,"input":1.1,"output":4.4},"family":"o","id":"openai/o4-mini-high","knowledge":"2024-06-30","last_updated":"2025-04-16","limit":{"context":200000,"output":100000},"modalities":{"input":["image","text","pdf"],"output":["text"]},"name":"o4 Mini High","open_weights":false,"reasoning":true,"release_date":"2025-04-16","structured_output":true,"temperature":false,"tool_call":true},"openrouter/auto":{"attachment":true,"family":"auto","id":"openrouter/auto","last_updated":"2023-11-08","limit":{"context":2000000,"output":2000000},"modalities":{"input":["text","image","audio","pdf","video"],"output":["text","image"]},"name":"Auto Router","open_weights":false,"reasoning":true,"release_date":"2023-11-08","structured_output":true,"temperature":true,"tool_call":true},"openrouter/bodybuilder":{"attachment":false,"id":"openrouter/bodybuilder","last_updated":"2025-12-05","limit":{"context":128000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"Body Builder (beta)","open_weights":false,"reasoning":false,"release_date":"2025-12-05","structured_output":false,"temperature":false,"tool_call":false},"openrouter/free":{"attachment":true,"cost":{"input":0,"output":0},"id":"openrouter/free","last_updated":"2026-02-01","limit":{"context":200000,"input":200000,"output":8000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Free Models Router","open_weights":false,"reasoning":true,"release_date":"2026-02-01","structured_output":true,"temperature":true,"tool_call":true},"openrouter/fusion":{"attachment":false,"id":"openrouter/fusion","last_updated":"2026-05-12","limit":{"context":128000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"Fusion","open_weights":false,"reasoning":false,"release_date":"2026-05-12","structured_output":false,"temperature":false,"tool_call":false},"openrouter/owl-alpha":{"attachment":false,"cost":{"input":0,"output":0},"family":"alpha","id":"openrouter/owl-alpha","last_updated":"2026-04-28","limit":{"context":1048756,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Owl Alpha","open_weights":false,"reasoning":false,"release_date":"2026-04-28","status":"alpha","structured_output":true,"temperature":true,"tool_call":true},"openrouter/pareto-code":{"attachment":false,"id":"openrouter/pareto-code","last_updated":"2026-04-21","limit":{"context":2000000,"output":200000},"modalities":{"input":["text"],"output":["text"]},"name":"Pareto Code Router","open_weights":false,"reasoning":false,"release_date":"2026-04-21","structured_output":false,"temperature":false,"tool_call":false},"perceptron/perceptron-mk1":{"attachment":true,"cost":{"input":0.15,"output":1.5},"id":"perceptron/perceptron-mk1","last_updated":"2026-05-12","limit":{"context":32768,"output":8192},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Perceptron Mk1","open_weights":false,"reasoning":true,"release_date":"2026-05-12","structured_output":true,"temperature":true,"tool_call":false},"perplexity/sonar":{"attachment":true,"cost":{"input":1,"output":1},"family":"sonar","id":"perplexity/sonar","last_updated":"2025-01-27","limit":{"context":127072,"output":127072},"modalities":{"input":["text","image"],"output":["text"]},"name":"Sonar","open_weights":false,"reasoning":false,"release_date":"2025-01-27","structured_output":false,"temperature":true,"tool_call":false},"perplexity/sonar-deep-research":{"attachment":false,"cost":{"input":2,"output":8,"reasoning":3},"family":"sonar-deep-research","id":"perplexity/sonar-deep-research","last_updated":"2025-03-07","limit":{"context":128000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"Sonar Deep Research","open_weights":false,"reasoning":true,"release_date":"2025-03-07","structured_output":false,"temperature":true,"tool_call":false},"perplexity/sonar-pro":{"attachment":true,"cost":{"input":3,"output":15},"family":"sonar-pro","id":"perplexity/sonar-pro","last_updated":"2025-03-07","limit":{"context":200000,"output":8000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Sonar Pro","open_weights":false,"reasoning":false,"release_date":"2025-03-07","structured_output":false,"temperature":true,"tool_call":false},"perplexity/sonar-pro-search":{"attachment":true,"cost":{"input":3,"output":15},"family":"sonar-pro","id":"perplexity/sonar-pro-search","last_updated":"2025-10-30","limit":{"context":200000,"output":8000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Sonar Pro Search","open_weights":false,"reasoning":true,"release_date":"2025-10-30","structured_output":true,"temperature":true,"tool_call":false},"perplexity/sonar-reasoning-pro":{"attachment":true,"cost":{"input":2,"output":8},"family":"sonar-reasoning","id":"perplexity/sonar-reasoning-pro","last_updated":"2025-03-07","limit":{"context":128000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Sonar Reasoning Pro","open_weights":false,"reasoning":true,"release_date":"2025-03-07","structured_output":false,"temperature":true,"tool_call":false},"poolside/laguna-m.1:free":{"attachment":false,"cost":{"input":0,"output":0},"id":"poolside/laguna-m.1:free","interleaved":{"field":"reasoning_content"},"last_updated":"2026-04-28","limit":{"context":262144,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Laguna M.1 (free)","open_weights":false,"reasoning":true,"release_date":"2026-04-28","structured_output":false,"temperature":true,"tool_call":true},"poolside/laguna-xs.2:free":{"attachment":false,"cost":{"input":0,"output":0},"id":"poolside/laguna-xs.2:free","interleaved":{"field":"reasoning_content"},"last_updated":"2026-04-28","limit":{"context":262144,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Laguna XS.2 (free)","open_weights":true,"reasoning":true,"release_date":"2026-04-28","structured_output":false,"temperature":true,"tool_call":true},"prime-intellect/intellect-3":{"attachment":false,"cost":{"input":0.2,"output":1.1},"family":"glm","id":"prime-intellect/intellect-3","knowledge":"2024-10","last_updated":"2025-11-27","limit":{"context":131072,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"INTELLECT-3","open_weights":true,"reasoning":true,"release_date":"2025-11-27","structured_output":true,"temperature":true,"tool_call":true},"qwen/qwen-2.5-72b-instruct":{"attachment":false,"cost":{"input":0.36,"output":0.4},"family":"qwen","id":"qwen/qwen-2.5-72b-instruct","knowledge":"2024-06-30","last_updated":"2024-09-19","limit":{"context":32768,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen2.5 72B Instruct","open_weights":true,"reasoning":false,"release_date":"2024-09-19","structured_output":true,"temperature":true,"tool_call":true},"qwen/qwen-2.5-7b-instruct":{"attachment":false,"cost":{"input":0.04,"output":0.1},"family":"qwen","id":"qwen/qwen-2.5-7b-instruct","knowledge":"2024-06-30","last_updated":"2024-10-16","limit":{"context":32768,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen2.5 7B Instruct","open_weights":true,"reasoning":false,"release_date":"2024-10-16","structured_output":false,"temperature":true,"tool_call":false},"qwen/qwen-2.5-coder-32b-instruct":{"attachment":false,"cost":{"input":0.66,"output":1},"family":"qwen","id":"qwen/qwen-2.5-coder-32b-instruct","knowledge":"2024-06-30","last_updated":"2024-11-11","limit":{"context":32768,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen2.5 Coder 32B Instruct","open_weights":true,"reasoning":false,"release_date":"2024-11-11","structured_output":false,"temperature":true,"tool_call":false},"qwen/qwen-plus":{"attachment":false,"cost":{"cache_read":0.052,"cache_write":0.325,"input":0.26,"output":0.78},"family":"qwen","id":"qwen/qwen-plus","knowledge":"2025-03-31","last_updated":"2025-02-01","limit":{"context":1000000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen-Plus","open_weights":false,"reasoning":false,"release_date":"2025-02-01","structured_output":false,"temperature":true,"tool_call":true},"qwen/qwen-plus-2025-07-28":{"attachment":false,"cost":{"input":0.26,"output":0.78},"family":"qwen","id":"qwen/qwen-plus-2025-07-28","knowledge":"2025-03-31","last_updated":"2025-09-08","limit":{"context":1000000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen Plus 0728","open_weights":false,"reasoning":false,"release_date":"2025-09-08","structured_output":true,"temperature":true,"tool_call":true},"qwen/qwen-plus-2025-07-28:thinking":{"attachment":false,"cost":{"cache_write":0.325,"input":0.26,"output":0.78},"family":"qwen","id":"qwen/qwen-plus-2025-07-28:thinking","knowledge":"2025-03-31","last_updated":"2025-09-08","limit":{"context":1000000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen Plus 0728 (thinking)","open_weights":false,"reasoning":true,"release_date":"2025-09-08","structured_output":true,"temperature":true,"tool_call":true},"qwen/qwen2.5-vl-72b-instruct":{"attachment":true,"cost":{"input":0.25,"output":0.75},"family":"qwen","id":"qwen/qwen2.5-vl-72b-instruct","knowledge":"2024-06-30","last_updated":"2025-02-01","limit":{"context":32000,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen2.5 VL 72B Instruct","open_weights":true,"reasoning":false,"release_date":"2025-02-01","structured_output":true,"temperature":true,"tool_call":false},"qwen/qwen3-14b":{"attachment":false,"cost":{"input":0.1,"output":0.24},"family":"qwen","id":"qwen/qwen3-14b","knowledge":"2025-03-31","last_updated":"2025-04-28","limit":{"context":40960,"output":40960},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 14B","open_weights":true,"reasoning":true,"release_date":"2025-04-28","structured_output":true,"temperature":true,"tool_call":true},"qwen/qwen3-235b-a22b":{"attachment":false,"cost":{"input":0.455,"output":1.82},"family":"qwen","id":"qwen/qwen3-235b-a22b","knowledge":"2025-03-31","last_updated":"2025-04-28","limit":{"context":131072,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 235B A22B","open_weights":true,"reasoning":true,"release_date":"2025-04-28","structured_output":false,"temperature":true,"tool_call":true},"qwen/qwen3-235b-a22b-2507":{"attachment":false,"cost":{"input":0.071,"output":0.1},"family":"qwen","id":"qwen/qwen3-235b-a22b-2507","knowledge":"2025-06-30","last_updated":"2025-07-21","limit":{"context":262144,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 235B A22B Instruct 2507","open_weights":true,"reasoning":false,"release_date":"2025-07-21","structured_output":true,"temperature":true,"tool_call":true},"qwen/qwen3-235b-a22b-thinking-2507":{"attachment":false,"cost":{"cache_read":0.1,"input":0.1,"output":0.1},"family":"qwen","id":"qwen/qwen3-235b-a22b-thinking-2507","knowledge":"2025-06-30","last_updated":"2025-07-25","limit":{"context":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 235B A22B Thinking 2507","open_weights":true,"reasoning":true,"release_date":"2025-07-25","structured_output":true,"temperature":true,"tool_call":true},"qwen/qwen3-30b-a3b":{"attachment":false,"cost":{"input":0.09,"output":0.45},"family":"qwen","id":"qwen/qwen3-30b-a3b","knowledge":"2025-03-31","last_updated":"2025-04-28","limit":{"context":40960,"output":20000},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 30B A3B","open_weights":true,"reasoning":true,"release_date":"2025-04-28","structured_output":true,"temperature":true,"tool_call":true},"qwen/qwen3-30b-a3b-instruct-2507":{"attachment":false,"cost":{"input":0.0428,"output":0.1716},"family":"qwen","id":"qwen/qwen3-30b-a3b-instruct-2507","knowledge":"2025-06-30","last_updated":"2025-07-29","limit":{"context":128000,"output":32000},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 30B A3B Instruct 2507","open_weights":true,"reasoning":false,"release_date":"2025-07-29","structured_output":true,"temperature":true,"tool_call":true},"qwen/qwen3-30b-a3b-thinking-2507":{"attachment":false,"cost":{"cache_read":0.08,"input":0.08,"output":0.4},"family":"qwen","id":"qwen/qwen3-30b-a3b-thinking-2507","knowledge":"2025-06-30","last_updated":"2025-08-28","limit":{"context":131072,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 30B A3B Thinking 2507","open_weights":true,"reasoning":true,"release_date":"2025-08-28","structured_output":true,"temperature":true,"tool_call":true},"qwen/qwen3-32b":{"attachment":false,"cost":{"input":0.08,"output":0.28},"family":"qwen","id":"qwen/qwen3-32b","knowledge":"2025-03-31","last_updated":"2025-04-28","limit":{"context":40960,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 32B","open_weights":true,"reasoning":true,"release_date":"2025-04-28","structured_output":true,"temperature":true,"tool_call":true},"qwen/qwen3-8b":{"attachment":false,"cost":{"cache_read":0.05,"input":0.05,"output":0.4},"family":"qwen","id":"qwen/qwen3-8b","knowledge":"2025-03-31","last_updated":"2025-04-28","limit":{"context":40960,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 8B","open_weights":true,"reasoning":true,"release_date":"2025-04-28","structured_output":true,"temperature":true,"tool_call":true},"qwen/qwen3-coder":{"attachment":false,"cost":{"input":0.22,"output":1.8},"family":"qwen","id":"qwen/qwen3-coder","knowledge":"2025-06-30","last_updated":"2025-07-23","limit":{"context":262144,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Coder 480B A35B","open_weights":true,"reasoning":false,"release_date":"2025-07-23","structured_output":true,"temperature":true,"tool_call":true},"qwen/qwen3-coder-30b-a3b-instruct":{"attachment":false,"cost":{"input":0.07,"output":0.27},"family":"qwen","id":"qwen/qwen3-coder-30b-a3b-instruct","knowledge":"2025-06-30","last_updated":"2025-07-31","limit":{"context":160000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Coder 30B A3B Instruct","open_weights":true,"reasoning":false,"release_date":"2025-07-31","structured_output":true,"temperature":true,"tool_call":true},"qwen/qwen3-coder-flash":{"attachment":false,"cost":{"cache_read":0.039,"cache_write":0.24375,"input":0.195,"output":0.975},"family":"qwen","id":"qwen/qwen3-coder-flash","knowledge":"2025-06-30","last_updated":"2025-09-17","limit":{"context":1000000,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Coder Flash","open_weights":false,"reasoning":false,"release_date":"2025-09-17","structured_output":false,"temperature":true,"tool_call":true},"qwen/qwen3-coder-next":{"attachment":false,"cost":{"cache_read":0.07,"input":0.11,"output":0.8},"family":"qwen","id":"qwen/qwen3-coder-next","last_updated":"2026-02-04","limit":{"context":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Coder Next","open_weights":true,"reasoning":false,"release_date":"2026-02-04","structured_output":true,"temperature":true,"tool_call":true},"qwen/qwen3-coder-plus":{"attachment":false,"cost":{"cache_read":0.13,"cache_write":0.8125,"input":0.65,"output":3.25},"family":"qwen","id":"qwen/qwen3-coder-plus","knowledge":"2025-06-30","last_updated":"2025-09-23","limit":{"context":1000000,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Coder Plus","open_weights":false,"reasoning":false,"release_date":"2025-09-23","structured_output":true,"temperature":true,"tool_call":true},"qwen/qwen3-coder:free":{"attachment":false,"cost":{"input":0,"output":0},"family":"qwen","id":"qwen/qwen3-coder:free","knowledge":"2025-06-30","last_updated":"2025-07-23","limit":{"context":262000,"output":262000},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Coder 480B A35B (free)","open_weights":true,"reasoning":false,"release_date":"2025-07-23","structured_output":false,"temperature":true,"tool_call":true},"qwen/qwen3-max":{"attachment":false,"cost":{"cache_read":0.156,"cache_write":0.975,"input":0.78,"output":3.9},"family":"qwen","id":"qwen/qwen3-max","knowledge":"2025-06-30","last_updated":"2025-09-23","limit":{"context":262144,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Max","open_weights":false,"reasoning":false,"release_date":"2025-09-23","structured_output":false,"temperature":true,"tool_call":true},"qwen/qwen3-max-thinking":{"attachment":false,"cost":{"input":0.78,"output":3.9},"family":"qwen","id":"qwen/qwen3-max-thinking","last_updated":"2026-02-09","limit":{"context":262144,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Max Thinking","open_weights":false,"reasoning":true,"release_date":"2026-02-09","structured_output":true,"temperature":true,"tool_call":true},"qwen/qwen3-next-80b-a3b-instruct":{"attachment":false,"cost":{"input":0.09,"output":1.1},"family":"qwen","id":"qwen/qwen3-next-80b-a3b-instruct","knowledge":"2025-09-30","last_updated":"2025-09-11","limit":{"context":262144,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Next 80B A3B Instruct","open_weights":true,"reasoning":false,"release_date":"2025-09-11","structured_output":true,"temperature":true,"tool_call":true},"qwen/qwen3-next-80b-a3b-instruct:free":{"attachment":false,"cost":{"input":0,"output":0},"family":"qwen","id":"qwen/qwen3-next-80b-a3b-instruct:free","knowledge":"2025-09-30","last_updated":"2025-09-11","limit":{"context":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Next 80B A3B Instruct (free)","open_weights":true,"reasoning":false,"release_date":"2025-09-11","structured_output":true,"temperature":true,"tool_call":true},"qwen/qwen3-next-80b-a3b-thinking":{"attachment":false,"cost":{"input":0.0975,"output":0.78},"family":"qwen","id":"qwen/qwen3-next-80b-a3b-thinking","knowledge":"2025-09-30","last_updated":"2025-09-11","limit":{"context":131072,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Next 80B A3B Thinking","open_weights":true,"reasoning":true,"release_date":"2025-09-11","structured_output":true,"temperature":true,"tool_call":true},"qwen/qwen3-vl-235b-a22b-instruct":{"attachment":true,"cost":{"cache_read":0.11,"input":0.2,"output":0.88},"family":"qwen","id":"qwen/qwen3-vl-235b-a22b-instruct","knowledge":"2025-03-31","last_updated":"2025-09-23","limit":{"context":262144,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen3 VL 235B A22B Instruct","open_weights":true,"reasoning":false,"release_date":"2025-09-23","structured_output":true,"temperature":true,"tool_call":true},"qwen/qwen3-vl-235b-a22b-thinking":{"attachment":true,"cost":{"input":0.26,"output":2.6},"family":"qwen","id":"qwen/qwen3-vl-235b-a22b-thinking","knowledge":"2025-03-31","last_updated":"2025-09-23","limit":{"context":131072,"output":32768},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen3 VL 235B A22B Thinking","open_weights":true,"reasoning":true,"release_date":"2025-09-23","structured_output":false,"temperature":true,"tool_call":true},"qwen/qwen3-vl-30b-a3b-instruct":{"attachment":true,"cost":{"input":0.13,"output":0.52},"family":"qwen","id":"qwen/qwen3-vl-30b-a3b-instruct","knowledge":"2025-03-31","last_updated":"2025-10-06","limit":{"context":131072,"output":32768},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen3 VL 30B A3B Instruct","open_weights":true,"reasoning":false,"release_date":"2025-10-06","structured_output":true,"temperature":true,"tool_call":true},"qwen/qwen3-vl-30b-a3b-thinking":{"attachment":true,"cost":{"input":0.13,"output":1.56},"family":"qwen","id":"qwen/qwen3-vl-30b-a3b-thinking","knowledge":"2025-03-31","last_updated":"2025-10-06","limit":{"context":131072,"output":32768},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen3 VL 30B A3B Thinking","open_weights":true,"reasoning":true,"release_date":"2025-10-06","structured_output":true,"temperature":true,"tool_call":true},"qwen/qwen3-vl-32b-instruct":{"attachment":true,"cost":{"input":0.104,"output":0.416},"family":"qwen","id":"qwen/qwen3-vl-32b-instruct","last_updated":"2025-10-23","limit":{"context":131072,"output":32768},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen3 VL 32B Instruct","open_weights":true,"reasoning":false,"release_date":"2025-10-23","structured_output":false,"temperature":true,"tool_call":true},"qwen/qwen3-vl-8b-instruct":{"attachment":true,"cost":{"input":0.08,"output":0.5},"family":"qwen","id":"qwen/qwen3-vl-8b-instruct","last_updated":"2025-10-14","limit":{"context":131072,"output":32768},"modalities":{"input":["image","text"],"output":["text"]},"name":"Qwen3 VL 8B Instruct","open_weights":true,"reasoning":false,"release_date":"2025-10-14","structured_output":true,"temperature":true,"tool_call":true},"qwen/qwen3-vl-8b-thinking":{"attachment":true,"cost":{"input":0.117,"output":1.365},"family":"qwen","id":"qwen/qwen3-vl-8b-thinking","last_updated":"2025-10-14","limit":{"context":131072,"output":32768},"modalities":{"input":["image","text"],"output":["text"]},"name":"Qwen3 VL 8B Thinking","open_weights":true,"reasoning":true,"release_date":"2025-10-14","structured_output":true,"temperature":true,"tool_call":true},"qwen/qwen3.5-122b-a10b":{"attachment":true,"cost":{"input":0.26,"output":2.08},"family":"qwen3.5","id":"qwen/qwen3.5-122b-a10b","last_updated":"2026-02-25","limit":{"context":262144,"output":262144},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.5-122B-A10B","open_weights":true,"reasoning":true,"release_date":"2026-02-25","structured_output":true,"temperature":true,"tool_call":true},"qwen/qwen3.5-27b":{"attachment":true,"cost":{"input":0.195,"output":1.56},"family":"qwen3.5","id":"qwen/qwen3.5-27b","last_updated":"2026-02-25","limit":{"context":262144,"output":65536},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.5-27B","open_weights":true,"reasoning":true,"release_date":"2026-02-25","structured_output":true,"temperature":true,"tool_call":true},"qwen/qwen3.5-35b-a3b":{"attachment":true,"cost":{"cache_read":0.05,"input":0.14,"output":1},"family":"qwen3.5","id":"qwen/qwen3.5-35b-a3b","last_updated":"2026-02-25","limit":{"context":262144,"output":262144},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.5-35B-A3B","open_weights":true,"reasoning":true,"release_date":"2026-02-25","structured_output":true,"temperature":true,"tool_call":true},"qwen/qwen3.5-397b-a17b":{"attachment":true,"cost":{"input":0.39,"output":2.34},"family":"qwen","id":"qwen/qwen3.5-397b-a17b","knowledge":"2025-04","last_updated":"2026-02-16","limit":{"context":262144,"output":65536},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.5 397B A17B","open_weights":true,"reasoning":true,"release_date":"2026-02-16","structured_output":true,"temperature":true,"tool_call":true},"qwen/qwen3.5-9b":{"attachment":true,"cost":{"input":0.04,"output":0.15},"family":"qwen3.5","id":"qwen/qwen3.5-9b","last_updated":"2026-03-10","limit":{"context":262144,"output":81920},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.5-9B","open_weights":true,"reasoning":true,"release_date":"2026-03-10","structured_output":true,"temperature":true,"tool_call":true},"qwen/qwen3.5-flash-02-23":{"attachment":true,"cost":{"input":0.065,"output":0.26},"family":"qwen","id":"qwen/qwen3.5-flash-02-23","last_updated":"2026-02-25","limit":{"context":1000000,"output":65536},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.5-Flash","open_weights":false,"reasoning":true,"release_date":"2026-02-25","structured_output":true,"temperature":true,"tool_call":true},"qwen/qwen3.5-plus-02-15":{"attachment":true,"cost":{"input":0.26,"output":1.56},"family":"qwen","id":"qwen/qwen3.5-plus-02-15","knowledge":"2025-04","last_updated":"2026-02-16","limit":{"context":1000000,"output":65536},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.5 Plus 2026-02-15","open_weights":false,"reasoning":true,"release_date":"2026-02-16","structured_output":true,"temperature":true,"tool_call":true},"qwen/qwen3.5-plus-20260420":{"attachment":true,"cost":{"cache_write":0.375,"input":0.3,"output":1.8},"family":"qwen3.5","id":"qwen/qwen3.5-plus-20260420","last_updated":"2026-04-27","limit":{"context":1000000,"output":65536},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.5 Plus 2026-04-20","open_weights":false,"reasoning":true,"release_date":"2026-04-27","structured_output":true,"temperature":true,"tool_call":true},"qwen/qwen3.6-27b":{"attachment":true,"cost":{"input":0.29,"output":3.2},"family":"qwen3.6","id":"qwen/qwen3.6-27b","last_updated":"2026-04-27","limit":{"context":262140,"output":262140},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.6 27B","open_weights":true,"reasoning":true,"release_date":"2026-04-27","structured_output":true,"temperature":true,"tool_call":true},"qwen/qwen3.6-35b-a3b":{"attachment":true,"cost":{"input":0.14,"output":1},"family":"qwen3.6","id":"qwen/qwen3.6-35b-a3b","last_updated":"2026-04-27","limit":{"context":262140,"output":262140},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.6 35B A3B","open_weights":true,"reasoning":true,"release_date":"2026-04-27","structured_output":true,"temperature":true,"tool_call":true},"qwen/qwen3.6-flash":{"attachment":true,"cost":{"cache_write":0.234375,"input":0.1875,"output":1.125},"family":"qwen3.6","id":"qwen/qwen3.6-flash","last_updated":"2026-04-27","limit":{"context":1000000,"output":65536},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.6 Flash","open_weights":false,"reasoning":true,"release_date":"2026-04-27","structured_output":true,"temperature":true,"tool_call":true},"qwen/qwen3.6-max-preview":{"attachment":false,"cost":{"cache_write":1.3,"input":1.04,"output":6.24},"family":"qwen3.6","id":"qwen/qwen3.6-max-preview","last_updated":"2026-04-27","limit":{"context":262144,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3.6 Max Preview","open_weights":false,"reasoning":true,"release_date":"2026-04-27","structured_output":true,"temperature":true,"tool_call":true},"qwen/qwen3.6-plus":{"attachment":true,"cost":{"cache_write":0.40625,"input":0.325,"output":1.95},"family":"qwen","id":"qwen/qwen3.6-plus","knowledge":"2025-04","last_updated":"2026-04-02","limit":{"context":1000000,"output":65536},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.6 Plus","open_weights":false,"reasoning":true,"release_date":"2026-04-02","structured_output":true,"temperature":true,"tool_call":true},"qwen/qwen3.7-max":{"attachment":false,"cost":{"cache_read":0.25,"cache_write":1.5625,"input":1.25,"output":3.75},"family":"qwen","id":"qwen/qwen3.7-max","last_updated":"2026-05-21","limit":{"context":1000000,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3.7 Max","open_weights":false,"reasoning":true,"release_date":"2026-05-21","structured_output":true,"temperature":true,"tool_call":true},"qwen/qwen3.7-plus":{"attachment":true,"cost":{"cache_read":0.08,"cache_write":0.5,"input":0.4,"output":1.6},"family":"qwen","id":"qwen/qwen3.7-plus","last_updated":"2026-06-03","limit":{"context":1000000,"output":65536},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen3.7 Plus","open_weights":false,"reasoning":true,"release_date":"2026-06-03","structured_output":true,"temperature":true,"tool_call":true},"rekaai/reka-edge":{"attachment":true,"cost":{"input":0.1,"output":0.1},"family":"reka","id":"rekaai/reka-edge","last_updated":"2026-03-20","limit":{"context":16384,"output":16384},"modalities":{"input":["image","text","video"],"output":["text"]},"name":"Reka Edge","open_weights":true,"reasoning":false,"release_date":"2026-03-20","structured_output":true,"temperature":true,"tool_call":true},"rekaai/reka-flash-3":{"attachment":false,"cost":{"input":0.1,"output":0.2},"family":"reka","id":"rekaai/reka-flash-3","knowledge":"2025-01-31","last_updated":"2025-03-12","limit":{"context":65536,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Reka Flash 3","open_weights":true,"reasoning":true,"release_date":"2025-03-12","structured_output":false,"temperature":true,"tool_call":false},"relace/relace-apply-3":{"attachment":false,"cost":{"input":0.85,"output":1.25},"id":"relace/relace-apply-3","last_updated":"2025-09-26","limit":{"context":256000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"Relace Apply 3","open_weights":false,"reasoning":false,"release_date":"2025-09-26","structured_output":false,"temperature":false,"tool_call":false},"relace/relace-search":{"attachment":false,"cost":{"input":1,"output":3},"id":"relace/relace-search","last_updated":"2025-12-08","limit":{"context":256000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"Relace Search","open_weights":false,"reasoning":false,"release_date":"2025-12-08","structured_output":false,"temperature":true,"tool_call":true},"sao10k/l3-euryale-70b":{"attachment":false,"cost":{"input":1.48,"output":1.48},"family":"llama","id":"sao10k/l3-euryale-70b","knowledge":"2023-12-31","last_updated":"2024-06-18","limit":{"context":8192,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3 Euryale 70B v2.1","open_weights":true,"reasoning":false,"release_date":"2024-06-18","structured_output":false,"temperature":true,"tool_call":true},"sao10k/l3-lunaris-8b":{"attachment":false,"cost":{"input":0.04,"output":0.05},"family":"llama","id":"sao10k/l3-lunaris-8b","knowledge":"2023-12-31","last_updated":"2024-08-13","limit":{"context":8192,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3 8B Lunaris","open_weights":true,"reasoning":false,"release_date":"2024-08-13","structured_output":true,"temperature":true,"tool_call":false},"sao10k/l3.1-70b-hanami-x1":{"attachment":false,"cost":{"input":3,"output":3},"family":"llama","id":"sao10k/l3.1-70b-hanami-x1","knowledge":"2023-12-31","last_updated":"2025-01-08","limit":{"context":16000,"output":16000},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.1 70B Hanami x1","open_weights":true,"reasoning":false,"release_date":"2025-01-08","structured_output":false,"temperature":true,"tool_call":false},"sao10k/l3.1-euryale-70b":{"attachment":false,"cost":{"input":0.85,"output":0.85},"family":"llama","id":"sao10k/l3.1-euryale-70b","knowledge":"2023-12-31","last_updated":"2024-08-28","limit":{"context":131072,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.1 Euryale 70B v2.2","open_weights":true,"reasoning":false,"release_date":"2024-08-28","structured_output":true,"temperature":true,"tool_call":true},"sao10k/l3.3-euryale-70b":{"attachment":false,"cost":{"input":0.65,"output":0.75},"family":"llama","id":"sao10k/l3.3-euryale-70b","knowledge":"2023-12-31","last_updated":"2024-12-18","limit":{"context":131072,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.3 Euryale 70B","open_weights":true,"reasoning":false,"release_date":"2024-12-18","structured_output":true,"temperature":true,"tool_call":false},"stepfun/step-3.5-flash":{"attachment":false,"cost":{"cache_read":0.02,"input":0.09,"output":0.3},"family":"step","id":"stepfun/step-3.5-flash","knowledge":"2025-01","last_updated":"2026-01-29","limit":{"context":262144,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Step 3.5 Flash","open_weights":true,"reasoning":true,"release_date":"2026-01-29","structured_output":false,"temperature":true,"tool_call":true},"stepfun/step-3.7-flash":{"attachment":true,"cost":{"cache_read":0.04,"input":0.2,"output":1.15},"family":"step","id":"stepfun/step-3.7-flash","last_updated":"2026-05-28","limit":{"context":256000,"output":256000},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Step 3.7 Flash","open_weights":false,"reasoning":true,"release_date":"2026-05-28","structured_output":true,"temperature":true,"tool_call":true},"switchpoint/router":{"attachment":false,"cost":{"input":0.85,"output":3.4},"id":"switchpoint/router","last_updated":"2025-07-11","limit":{"context":131072,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"Switchpoint Router","open_weights":false,"reasoning":true,"release_date":"2025-07-11","structured_output":false,"temperature":true,"tool_call":false},"tencent/hunyuan-a13b-instruct":{"attachment":false,"cost":{"input":0.14,"output":0.57},"family":"hunyuan","id":"tencent/hunyuan-a13b-instruct","knowledge":"2025-03-31","last_updated":"2025-07-08","limit":{"context":131072,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"Hunyuan A13B Instruct","open_weights":true,"reasoning":true,"release_date":"2025-07-08","structured_output":true,"temperature":true,"tool_call":false},"tencent/hy3-preview":{"attachment":false,"cost":{"cache_read":0.021,"input":0.063,"output":0.21},"family":"Hy","id":"tencent/hy3-preview","last_updated":"2026-04-22","limit":{"context":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Hy3 preview","open_weights":true,"reasoning":true,"release_date":"2026-04-22","structured_output":false,"temperature":true,"tool_call":true},"thedrummer/cydonia-24b-v4.1":{"attachment":false,"cost":{"cache_read":0.15,"input":0.3,"output":0.5},"id":"thedrummer/cydonia-24b-v4.1","knowledge":"2024-04-30","last_updated":"2025-09-27","limit":{"context":131072,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"Cydonia 24B V4.1","open_weights":true,"reasoning":false,"release_date":"2025-09-27","structured_output":false,"temperature":true,"tool_call":false},"thedrummer/rocinante-12b":{"attachment":false,"cost":{"input":0.17,"output":0.43},"id":"thedrummer/rocinante-12b","knowledge":"2024-04-30","last_updated":"2024-09-30","limit":{"context":32768,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Rocinante 12B","open_weights":true,"reasoning":false,"release_date":"2024-09-30","structured_output":true,"temperature":true,"tool_call":true},"thedrummer/skyfall-36b-v2":{"attachment":false,"cost":{"cache_read":0.25,"input":0.55,"output":0.8},"id":"thedrummer/skyfall-36b-v2","knowledge":"2024-06-30","last_updated":"2025-03-10","limit":{"context":32768,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Skyfall 36B V2","open_weights":true,"reasoning":false,"release_date":"2025-03-10","structured_output":false,"temperature":true,"tool_call":false},"thedrummer/unslopnemo-12b":{"attachment":false,"cost":{"input":0.4,"output":0.4},"id":"thedrummer/unslopnemo-12b","knowledge":"2024-04-30","last_updated":"2024-11-08","limit":{"context":32768,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"UnslopNemo 12B","open_weights":true,"reasoning":false,"release_date":"2024-11-08","structured_output":true,"temperature":true,"tool_call":true},"undi95/remm-slerp-l2-13b":{"attachment":false,"cost":{"input":0.45,"output":0.65},"id":"undi95/remm-slerp-l2-13b","knowledge":"2023-06-30","last_updated":"2023-07-22","limit":{"context":6144,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"ReMM SLERP 13B","open_weights":true,"reasoning":false,"release_date":"2023-07-22","structured_output":true,"temperature":true,"tool_call":false},"upstage/solar-pro-3":{"attachment":false,"cost":{"cache_read":0.015,"input":0.15,"output":0.6},"family":"solar-pro","id":"upstage/solar-pro-3","last_updated":"2026-01-27","limit":{"context":128000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"Solar Pro 3","open_weights":false,"reasoning":true,"release_date":"2026-01-27","structured_output":true,"temperature":true,"tool_call":true},"writer/palmyra-x5":{"attachment":false,"cost":{"input":0.6,"output":6},"family":"palmyra","id":"writer/palmyra-x5","last_updated":"2026-01-21","limit":{"context":1040000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Palmyra X5","open_weights":false,"reasoning":false,"release_date":"2026-01-21","structured_output":false,"temperature":true,"tool_call":false},"x-ai/grok-4.20":{"attachment":true,"cost":{"cache_read":0.2,"input":1.25,"output":2.5},"family":"grok","id":"x-ai/grok-4.20","knowledge":"2025-09-01","last_updated":"2026-03-31","limit":{"context":2000000,"output":2000000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Grok 4.20","open_weights":false,"reasoning":true,"release_date":"2026-03-31","structured_output":true,"temperature":true,"tool_call":true},"x-ai/grok-4.20-multi-agent":{"attachment":true,"cost":{"cache_read":0.2,"input":2,"output":6},"family":"grok","id":"x-ai/grok-4.20-multi-agent","knowledge":"2025-09-01","last_updated":"2026-03-31","limit":{"context":2000000,"output":2000000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Grok 4.20 Multi-Agent","open_weights":false,"reasoning":true,"release_date":"2026-03-31","structured_output":true,"temperature":true,"tool_call":false},"x-ai/grok-4.3":{"attachment":true,"cost":{"cache_read":0.2,"context_over_200k":{"cache_read":0.4,"input":2.5,"output":5},"input":1.25,"output":2.5,"tiers":[{"cache_read":0.4,"input":2.5,"output":5,"tier":{"size":200000,"type":"context"}}]},"family":"grok","id":"x-ai/grok-4.3","last_updated":"2026-04-17","limit":{"context":1000000,"output":1000000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Grok 4.3","open_weights":false,"reasoning":true,"release_date":"2026-04-17","structured_output":true,"temperature":true,"tool_call":true},"x-ai/grok-build-0.1":{"attachment":true,"cost":{"cache_read":0.2,"input":1,"output":2},"family":"grok-build","id":"x-ai/grok-build-0.1","last_updated":"2026-04-16","limit":{"context":256000,"output":256000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Grok Build 0.1","open_weights":false,"reasoning":true,"release_date":"2026-04-16","structured_output":true,"temperature":true,"tool_call":true},"xiaomi/mimo-v2-flash":{"attachment":false,"cost":{"cache_read":0.01,"input":0.1,"output":0.3},"family":"mimo","id":"xiaomi/mimo-v2-flash","interleaved":{"field":"reasoning_details"},"knowledge":"2024-12-01","last_updated":"2026-02-04","limit":{"context":262144,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"MiMo-V2-Flash","open_weights":true,"reasoning":true,"release_date":"2025-12-16","structured_output":false,"temperature":true,"tool_call":true},"xiaomi/mimo-v2.5":{"attachment":true,"cost":{"cache_read":0.0028,"input":0.14,"output":0.28},"family":"mimo","id":"xiaomi/mimo-v2.5","interleaved":{"field":"reasoning_details"},"knowledge":"2024-12","last_updated":"2026-04-22","limit":{"context":1048576,"output":131072},"modalities":{"input":["text","image","audio","video"],"output":["text"]},"name":"MiMo-V2.5","open_weights":true,"reasoning":true,"release_date":"2026-04-22","structured_output":false,"temperature":true,"tool_call":true},"xiaomi/mimo-v2.5-pro":{"attachment":false,"cost":{"cache_read":0.0036,"input":0.435,"output":0.87},"family":"mimo","id":"xiaomi/mimo-v2.5-pro","interleaved":{"field":"reasoning_content"},"knowledge":"2024-12","last_updated":"2026-04-22","limit":{"context":1048576,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiMo-V2.5-Pro","open_weights":true,"reasoning":true,"release_date":"2026-04-22","structured_output":true,"temperature":true,"tool_call":true},"z-ai/glm-4-32b":{"attachment":false,"cost":{"input":0.1,"output":0.1},"family":"glm","id":"z-ai/glm-4-32b","knowledge":"2024-06-30","last_updated":"2025-07-24","limit":{"context":128000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 4 32B ","open_weights":false,"reasoning":false,"release_date":"2025-07-24","structured_output":false,"temperature":true,"tool_call":true},"z-ai/glm-4.5":{"attachment":false,"cost":{"cache_read":0.11,"input":0.6,"output":2.2},"family":"glm","id":"z-ai/glm-4.5","knowledge":"2025-04","last_updated":"2025-07-28","limit":{"context":131072,"output":98304},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4.5","open_weights":true,"reasoning":true,"release_date":"2025-07-28","structured_output":false,"temperature":true,"tool_call":true},"z-ai/glm-4.5-air":{"attachment":false,"cost":{"cache_read":0.06,"input":0.125,"output":0.85},"family":"glm-air","id":"z-ai/glm-4.5-air","knowledge":"2025-04","last_updated":"2025-07-28","limit":{"context":131070,"output":131070},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4.5-Air","open_weights":true,"reasoning":true,"release_date":"2025-07-28","structured_output":false,"temperature":true,"tool_call":true},"z-ai/glm-4.5-air:free":{"attachment":false,"cost":{"input":0,"output":0},"family":"glm-air","id":"z-ai/glm-4.5-air:free","knowledge":"2025-04","last_updated":"2025-07-28","limit":{"context":131072,"output":96000},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 4.5 Air (free)","open_weights":true,"reasoning":true,"release_date":"2025-07-28","structured_output":false,"temperature":true,"tool_call":true},"z-ai/glm-4.5v":{"attachment":true,"cost":{"cache_read":0.11,"input":0.6,"output":1.8},"family":"glm","id":"z-ai/glm-4.5v","knowledge":"2025-04","last_updated":"2025-08-11","limit":{"context":65536,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"GLM-4.5V","open_weights":true,"reasoning":true,"release_date":"2025-08-11","structured_output":false,"temperature":true,"tool_call":true},"z-ai/glm-4.6":{"attachment":false,"cost":{"cache_read":0.08,"input":0.43,"output":1.74},"family":"glm","id":"z-ai/glm-4.6","knowledge":"2025-04","last_updated":"2025-09-30","limit":{"context":202752,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4.6","open_weights":true,"reasoning":true,"release_date":"2025-09-30","structured_output":true,"temperature":true,"tool_call":true},"z-ai/glm-4.6v":{"attachment":true,"cost":{"cache_read":0.05,"input":0.3,"output":0.9},"family":"glm","id":"z-ai/glm-4.6v","knowledge":"2025-04","last_updated":"2025-12-08","limit":{"context":131072,"output":24000},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"GLM-4.6V","open_weights":true,"reasoning":true,"release_date":"2025-12-08","structured_output":false,"temperature":true,"tool_call":true},"z-ai/glm-4.7":{"attachment":false,"cost":{"cache_read":0.08,"input":0.4,"output":1.75},"family":"glm","id":"z-ai/glm-4.7","interleaved":{"field":"reasoning_details"},"knowledge":"2025-04","last_updated":"2025-12-22","limit":{"context":202752,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4.7","open_weights":true,"reasoning":true,"release_date":"2025-12-22","structured_output":true,"temperature":true,"tool_call":true},"z-ai/glm-4.7-flash":{"attachment":false,"cost":{"cache_read":0.01,"input":0.06,"output":0.4},"family":"glm-flash","id":"z-ai/glm-4.7-flash","interleaved":{"field":"reasoning_details"},"knowledge":"2025-04","last_updated":"2026-01-19","limit":{"context":202752,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4.7-Flash","open_weights":true,"reasoning":true,"release_date":"2026-01-19","structured_output":true,"temperature":true,"tool_call":true},"z-ai/glm-5":{"attachment":false,"cost":{"cache_read":0.12,"input":0.6,"output":1.92},"family":"glm","id":"z-ai/glm-5","interleaved":{"field":"reasoning_content"},"last_updated":"2026-02-11","limit":{"context":202752,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-5","open_weights":true,"reasoning":true,"release_date":"2026-02-11","structured_output":true,"temperature":true,"tool_call":true},"z-ai/glm-5-turbo":{"attachment":false,"cost":{"cache_read":0.24,"input":1.2,"output":4},"family":"glm","id":"z-ai/glm-5-turbo","interleaved":{"field":"reasoning_content"},"last_updated":"2026-03-16","limit":{"context":202752,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-5-Turbo","open_weights":false,"reasoning":true,"release_date":"2026-03-16","structured_output":false,"temperature":true,"tool_call":true},"z-ai/glm-5.1":{"attachment":false,"cost":{"cache_read":0.182,"input":0.98,"output":3.08},"family":"glm","id":"z-ai/glm-5.1","interleaved":{"field":"reasoning_content"},"last_updated":"2026-03-27","limit":{"context":202752,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-5.1","open_weights":false,"reasoning":true,"release_date":"2026-03-27","structured_output":true,"temperature":true,"tool_call":true},"z-ai/glm-5v-turbo":{"attachment":true,"cost":{"cache_read":0.24,"input":1.2,"output":4},"family":"glm","id":"z-ai/glm-5v-turbo","interleaved":{"field":"reasoning_content"},"last_updated":"2026-04-01","limit":{"context":202752,"output":131072},"modalities":{"input":["image","text","video"],"output":["text"]},"name":"GLM-5V-Turbo","open_weights":false,"reasoning":true,"release_date":"2026-04-01","structured_output":false,"temperature":true,"tool_call":true},"~anthropic/claude-haiku-latest":{"attachment":true,"cost":{"cache_read":0.1,"cache_write":1.25,"input":1,"output":5},"family":"claude-haiku","id":"~anthropic/claude-haiku-latest","last_updated":"2026-04-27","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Anthropic Claude Haiku Latest","open_weights":false,"reasoning":true,"release_date":"2026-04-27","structured_output":true,"temperature":true,"tool_call":true},"~anthropic/claude-opus-latest":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"input":5,"output":25},"family":"claude-opus","id":"~anthropic/claude-opus-latest","last_updated":"2026-04-21","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus Latest","open_weights":false,"reasoning":true,"release_date":"2026-04-21","structured_output":true,"temperature":false,"tool_call":true},"~anthropic/claude-sonnet-latest":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"input":3,"output":15},"family":"claude-sonnet","id":"~anthropic/claude-sonnet-latest","last_updated":"2026-04-27","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Anthropic Claude Sonnet Latest","open_weights":false,"reasoning":true,"release_date":"2026-04-27","structured_output":true,"temperature":true,"tool_call":true},"~google/gemini-flash-latest":{"attachment":true,"cost":{"cache_read":0.15,"cache_write":0.083333,"input":1.5,"output":9,"reasoning":9},"family":"gemini-flash","id":"~google/gemini-flash-latest","knowledge":"2025-01-01","last_updated":"2026-04-27","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","video","pdf","audio"],"output":["text"]},"name":"Google Gemini Flash Latest","open_weights":false,"reasoning":true,"release_date":"2026-04-27","structured_output":true,"temperature":true,"tool_call":true},"~google/gemini-pro-latest":{"attachment":true,"cost":{"cache_read":0.2,"cache_write":0.375,"input":2,"output":12,"reasoning":12},"family":"gemini-pro","id":"~google/gemini-pro-latest","last_updated":"2026-04-27","limit":{"context":1048576,"output":65536},"modalities":{"input":["audio","pdf","image","text","video"],"output":["text"]},"name":"Google Gemini Pro Latest","open_weights":false,"reasoning":true,"release_date":"2026-04-27","structured_output":true,"temperature":true,"tool_call":true},"~moonshotai/kimi-latest":{"attachment":true,"cost":{"cache_read":0.144,"input":0.684,"output":3.42},"family":"kimi","id":"~moonshotai/kimi-latest","last_updated":"2026-04-27","limit":{"context":262144,"output":262144},"modalities":{"input":["text","image"],"output":["text"]},"name":"MoonshotAI Kimi Latest","open_weights":false,"reasoning":true,"release_date":"2026-04-27","structured_output":true,"temperature":true,"tool_call":true},"~openai/gpt-latest":{"attachment":true,"cost":{"cache_read":0.5,"input":5,"output":30},"family":"gpt","id":"~openai/gpt-latest","knowledge":"2025-12-01","last_updated":"2026-04-27","limit":{"context":1050000,"output":128000},"modalities":{"input":["pdf","image","text"],"output":["text"]},"name":"OpenAI GPT Latest","open_weights":false,"reasoning":true,"release_date":"2026-04-27","structured_output":true,"temperature":false,"tool_call":true},"~openai/gpt-mini-latest":{"attachment":true,"cost":{"cache_read":0.075,"input":0.75,"output":4.5},"family":"gpt-mini","id":"~openai/gpt-mini-latest","knowledge":"2025-08-31","last_updated":"2026-04-27","limit":{"context":400000,"output":128000},"modalities":{"input":["pdf","image","text"],"output":["text"]},"name":"OpenAI GPT Mini Latest","open_weights":false,"reasoning":true,"release_date":"2026-04-27","structured_output":true,"temperature":false,"tool_call":true}},"name":"OpenRouter","npm":"@openrouter/ai-sdk-provider"},"orcarouter":{"api":"https://api.orcarouter.ai/v1","doc":"https://docs.orcarouter.ai","env":["ORCAROUTER_API_KEY"],"id":"orcarouter","models":{"anthropic/claude-haiku-4.5":{"attachment":true,"cost":{"cache_read":0.1,"cache_write":1.25,"input":1,"output":5},"family":"claude-haiku","id":"anthropic/claude-haiku-4.5","knowledge":"2025-02-28","last_updated":"2025-10-15","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Haiku 4.5 (latest)","open_weights":false,"reasoning":true,"release_date":"2025-10-15","temperature":true,"tool_call":true},"anthropic/claude-opus-4":{"attachment":true,"cost":{"cache_read":1.5,"cache_write":18.75,"input":15,"output":75},"family":"claude-opus","id":"anthropic/claude-opus-4","knowledge":"2025-03-31","last_updated":"2025-05-22","limit":{"context":200000,"output":32000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4 (latest)","open_weights":false,"reasoning":true,"release_date":"2025-05-22","temperature":true,"tool_call":true},"anthropic/claude-opus-4.1":{"attachment":true,"cost":{"cache_read":1.5,"cache_write":18.75,"input":15,"output":75},"family":"claude-opus","id":"anthropic/claude-opus-4.1","knowledge":"2025-03-31","last_updated":"2025-08-05","limit":{"context":200000,"output":32000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.1 (latest)","open_weights":false,"reasoning":true,"release_date":"2025-08-05","temperature":true,"tool_call":true},"anthropic/claude-opus-4.5":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"input":5,"output":25},"family":"claude-opus","id":"anthropic/claude-opus-4.5","knowledge":"2025-03-31","last_updated":"2025-11-24","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.5 (latest)","open_weights":false,"reasoning":true,"release_date":"2025-11-24","temperature":true,"tool_call":true},"anthropic/claude-opus-4.6":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"input":5,"output":25},"experimental":{"modes":{"fast":{"cost":{"cache_read":3,"cache_write":37.5,"input":30,"output":150},"provider":{"body":{"speed":"fast"},"headers":{"anthropic-beta":"fast-mode-2026-02-01"}}}}},"family":"claude-opus","id":"anthropic/claude-opus-4.6","knowledge":"2025-05-31","last_updated":"2026-03-13","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.6","open_weights":false,"reasoning":true,"release_date":"2026-02-05","temperature":true,"tool_call":true},"anthropic/claude-opus-4.7":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"input":5,"output":25},"experimental":{"modes":{"fast":{"cost":{"cache_read":3,"cache_write":37.5,"input":30,"output":150},"provider":{"body":{"speed":"fast"},"headers":{"anthropic-beta":"fast-mode-2026-02-01"}}}}},"family":"claude-opus","id":"anthropic/claude-opus-4.7","knowledge":"2026-01-31","last_updated":"2026-04-16","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.7","open_weights":false,"reasoning":true,"release_date":"2026-04-16","temperature":false,"tool_call":true},"anthropic/claude-sonnet-4":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"input":3,"output":15},"family":"claude-sonnet","id":"anthropic/claude-sonnet-4","knowledge":"2025-03-31","last_updated":"2025-05-22","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 4 (latest)","open_weights":false,"reasoning":true,"release_date":"2025-05-22","temperature":true,"tool_call":true},"anthropic/claude-sonnet-4.5":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"input":3,"output":15},"family":"claude-sonnet","id":"anthropic/claude-sonnet-4.5","knowledge":"2025-07-31","last_updated":"2025-09-29","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 4.5 (latest)","open_weights":false,"reasoning":true,"release_date":"2025-09-29","temperature":true,"tool_call":true},"anthropic/claude-sonnet-4.6":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"input":3,"output":15},"family":"claude-sonnet","id":"anthropic/claude-sonnet-4.6","knowledge":"2025-08-31","last_updated":"2026-03-13","limit":{"context":1000000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 4.6","open_weights":false,"reasoning":true,"release_date":"2026-02-17","temperature":true,"tool_call":true},"deepseek/deepseek-chat":{"attachment":true,"cost":{"cache_read":0.028,"input":0.14,"output":0.28},"family":"deepseek","id":"deepseek/deepseek-chat","knowledge":"2025-09","last_updated":"2026-02-28","limit":{"context":1000000,"output":384000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek Chat","open_weights":true,"reasoning":false,"release_date":"2025-12-01","temperature":true,"tool_call":true},"deepseek/deepseek-reasoner":{"attachment":true,"cost":{"cache_read":0.028,"input":0.435,"output":0.87},"family":"deepseek-thinking","id":"deepseek/deepseek-reasoner","interleaved":{"field":"reasoning_content"},"knowledge":"2025-09","last_updated":"2026-02-28","limit":{"context":1000000,"output":384000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek Reasoner","open_weights":true,"reasoning":true,"release_date":"2025-12-01","temperature":true,"tool_call":true},"deepseek/deepseek-v4-flash":{"attachment":false,"cost":{"cache_read":0.0028,"input":0.19,"output":0.37},"family":"deepseek-flash","id":"deepseek/deepseek-v4-flash","interleaved":{"field":"reasoning_content"},"knowledge":"2025-05","last_updated":"2026-04-24","limit":{"context":1000000,"output":384000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V4 Flash","open_weights":true,"reasoning":true,"release_date":"2026-04-24","structured_output":true,"temperature":true,"tool_call":true},"deepseek/deepseek-v4-pro":{"attachment":false,"cost":{"cache_read":0.003625,"input":0.56,"output":1.12},"family":"deepseek-thinking","id":"deepseek/deepseek-v4-pro","interleaved":{"field":"reasoning_content"},"knowledge":"2025-05","last_updated":"2026-04-24","limit":{"context":1000000,"output":384000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V4 Pro","open_weights":true,"reasoning":true,"release_date":"2026-04-24","structured_output":true,"temperature":true,"tool_call":true},"google/gemini-2.5-flash":{"attachment":true,"cost":{"cache_read":0.03,"input":0.3,"input_audio":1,"output":2.5},"family":"gemini-flash","id":"google/gemini-2.5-flash","knowledge":"2025-01","last_updated":"2025-06-05","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"Gemini 2.5 Flash","open_weights":false,"reasoning":true,"release_date":"2025-03-20","structured_output":true,"temperature":true,"tool_call":true},"google/gemini-2.5-flash-lite":{"attachment":true,"cost":{"cache_read":0.01,"input":0.1,"input_audio":0.3,"output":0.4},"family":"gemini-flash-lite","id":"google/gemini-2.5-flash-lite","knowledge":"2025-01","last_updated":"2025-06-17","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"Gemini 2.5 Flash-Lite","open_weights":false,"reasoning":true,"release_date":"2025-06-17","structured_output":true,"temperature":true,"tool_call":true},"google/gemini-2.5-pro":{"attachment":true,"cost":{"cache_read":0.125,"context_over_200k":{"cache_read":0.25,"input":2.5,"output":15},"input":2.5,"output":15,"tiers":[{"cache_read":0.25,"input":2.5,"output":15,"tier":{"size":200000,"type":"context"}}]},"family":"gemini-pro","id":"google/gemini-2.5-pro","knowledge":"2025-01","last_updated":"2025-06-05","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"Gemini 2.5 Pro","open_weights":false,"reasoning":true,"release_date":"2025-03-20","structured_output":true,"temperature":true,"tool_call":true},"google/gemini-3-flash-preview":{"attachment":true,"cost":{"cache_read":0.05,"input":0.5,"input_audio":1,"output":3},"family":"gemini-flash","id":"google/gemini-3-flash-preview","knowledge":"2025-01","last_updated":"2025-12-17","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"name":"Gemini 3 Flash Preview","open_weights":false,"reasoning":true,"release_date":"2025-12-17","structured_output":true,"temperature":true,"tool_call":true},"google/gemini-3-pro-preview":{"attachment":true,"cost":{"cache_read":0.2,"context_over_200k":{"cache_read":0.4,"input":4,"output":18},"input":4,"output":18,"tiers":[{"cache_read":0.4,"input":4,"output":18,"tier":{"size":200000,"type":"context"}}]},"family":"gemini-pro","id":"google/gemini-3-pro-preview","knowledge":"2025-01","last_updated":"2025-11-18","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"name":"Gemini 3 Pro Preview","open_weights":false,"reasoning":true,"release_date":"2025-11-18","structured_output":true,"temperature":true,"tool_call":true},"google/gemini-3.1-flash-lite-preview":{"attachment":true,"cost":{"cache_read":0.025,"input":0.25,"input_audio":0.5,"output":1.5},"family":"gemini-flash-lite","id":"google/gemini-3.1-flash-lite-preview","knowledge":"2025-01","last_updated":"2026-03-03","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"name":"Gemini 3.1 Flash Lite Preview","open_weights":false,"reasoning":true,"release_date":"2026-03-03","structured_output":true,"temperature":true,"tool_call":true},"google/gemini-3.1-pro-preview":{"attachment":true,"cost":{"cache_read":0.2,"context_over_200k":{"cache_read":0.4,"input":4,"output":18},"input":4,"output":18,"tiers":[{"cache_read":0.4,"input":4,"output":18,"tier":{"size":200000,"type":"context"}}]},"family":"gemini-pro","id":"google/gemini-3.1-pro-preview","knowledge":"2025-01","last_updated":"2026-02-19","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"name":"Gemini 3.1 Pro Preview","open_weights":false,"reasoning":true,"release_date":"2026-02-19","structured_output":true,"temperature":true,"tool_call":true},"google/gemini-3.1-pro-preview-customtools":{"attachment":true,"cost":{"cache_read":0.2,"context_over_200k":{"cache_read":0.4,"input":4,"output":18},"input":4,"output":18,"tiers":[{"cache_read":0.4,"input":4,"output":18,"tier":{"size":200000,"type":"context"}}]},"family":"gemini-pro","id":"google/gemini-3.1-pro-preview-customtools","knowledge":"2025-01","last_updated":"2026-02-19","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"name":"Gemini 3.1 Pro Preview Custom Tools","open_weights":false,"reasoning":true,"release_date":"2026-02-19","structured_output":true,"temperature":true,"tool_call":true},"google/gemini-flash-latest":{"attachment":true,"cost":{"cache_read":0.075,"input":0.5,"input_audio":1,"output":3},"family":"gemini-flash","id":"google/gemini-flash-latest","knowledge":"2025-01","last_updated":"2025-09-25","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"Gemini Flash Latest","open_weights":false,"reasoning":true,"release_date":"2025-09-25","structured_output":true,"temperature":true,"tool_call":true},"google/gemini-flash-lite-latest":{"attachment":true,"cost":{"cache_read":0.025,"input":0.25,"output":1.5},"family":"gemini-flash-lite","id":"google/gemini-flash-lite-latest","knowledge":"2025-01","last_updated":"2025-09-25","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"Gemini Flash-Lite Latest","open_weights":false,"reasoning":true,"release_date":"2025-09-25","structured_output":true,"temperature":true,"tool_call":true},"google/gemma-4-26b-a4b-it":{"attachment":true,"cost":{"input":0.06,"output":0.33},"family":"gemma","id":"google/gemma-4-26b-a4b-it","last_updated":"2026-04-02","limit":{"context":262144,"output":32768},"modalities":{"input":["text","image"],"output":["text"]},"name":"Gemma 4 26B A4B IT","open_weights":true,"reasoning":true,"release_date":"2026-04-02","structured_output":true,"temperature":true,"tool_call":true},"google/gemma-4-31b-it":{"attachment":true,"cost":{"input":0.13,"output":0.38},"family":"gemma","id":"google/gemma-4-31b-it","last_updated":"2026-04-02","limit":{"context":262144,"output":32768},"modalities":{"input":["text","image"],"output":["text"]},"name":"Gemma 4 31B IT","open_weights":true,"reasoning":true,"release_date":"2026-04-02","structured_output":true,"temperature":true,"tool_call":true},"grok/grok-4.3":{"attachment":true,"cost":{"cache_read":0.2,"context_over_200k":{"cache_read":0.4,"input":2.5,"output":5},"input":1.25,"output":2.5,"tiers":[{"cache_read":0.4,"input":2.5,"output":5,"tier":{"size":200000,"type":"context"}}]},"family":"grok","id":"grok/grok-4.3","last_updated":"2026-04-17","limit":{"context":1000000,"output":30000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Grok 4.3","open_weights":false,"reasoning":true,"release_date":"2026-04-17","temperature":true,"tool_call":true},"kimi/kimi-k2.5":{"attachment":false,"cost":{"cache_read":0.1,"input":0.6,"output":3},"family":"kimi-k2.5","id":"kimi/kimi-k2.5","interleaved":{"field":"reasoning_content"},"knowledge":"2025-01","last_updated":"2026-01","limit":{"context":262144,"output":262144},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Kimi K2.5","open_weights":true,"reasoning":true,"release_date":"2026-01","structured_output":true,"temperature":false,"tool_call":true},"kimi/kimi-k2.6":{"attachment":true,"cost":{"cache_read":0.16,"input":0.95,"output":4},"family":"kimi-k2.6","id":"kimi/kimi-k2.6","interleaved":{"field":"reasoning_content"},"knowledge":"2025-01","last_updated":"2026-04-21","limit":{"context":262144,"output":262144},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Kimi K2.6","open_weights":true,"reasoning":true,"release_date":"2026-04-21","structured_output":true,"temperature":true,"tool_call":true},"minimax/minimax-m2.5":{"attachment":false,"cost":{"cache_read":0.03,"cache_write":0.375,"input":0.3,"output":1.2},"family":"minimax","id":"minimax/minimax-m2.5","last_updated":"2026-02-12","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2.5","open_weights":true,"reasoning":true,"release_date":"2026-02-12","temperature":true,"tool_call":true},"minimax/minimax-m2.5-highspeed":{"attachment":false,"cost":{"cache_read":0.06,"cache_write":0.375,"input":0.6,"output":2.4},"family":"minimax","id":"minimax/minimax-m2.5-highspeed","last_updated":"2026-02-13","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2.5-highspeed","open_weights":true,"reasoning":true,"release_date":"2026-02-13","temperature":true,"tool_call":true},"minimax/minimax-m2.7":{"attachment":false,"cost":{"cache_read":0.06,"cache_write":0.375,"input":0.3,"output":1.2},"family":"minimax","id":"minimax/minimax-m2.7","last_updated":"2026-03-18","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2.7","open_weights":true,"reasoning":true,"release_date":"2026-03-18","temperature":true,"tool_call":true},"minimax/minimax-m2.7-highspeed":{"attachment":false,"cost":{"cache_read":0.06,"cache_write":0.375,"input":0.6,"output":2.4},"family":"minimax","id":"minimax/minimax-m2.7-highspeed","last_updated":"2026-03-18","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2.7-highspeed","open_weights":true,"reasoning":true,"release_date":"2026-03-18","temperature":true,"tool_call":true},"openai/gpt-3.5-turbo":{"attachment":false,"cost":{"cache_read":0,"input":0.5,"output":1.5},"family":"gpt","id":"openai/gpt-3.5-turbo","knowledge":"2021-09-01","last_updated":"2023-11-06","limit":{"context":16385,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"GPT-3.5-turbo","open_weights":false,"reasoning":false,"release_date":"2023-03-01","structured_output":false,"temperature":true,"tool_call":false},"openai/gpt-4":{"attachment":true,"cost":{"input":30,"output":60},"family":"gpt","id":"openai/gpt-4","knowledge":"2023-11","last_updated":"2024-04-09","limit":{"context":8192,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"GPT-4","open_weights":false,"reasoning":false,"release_date":"2023-11-06","structured_output":false,"temperature":true,"tool_call":true},"openai/gpt-4-turbo":{"attachment":true,"cost":{"input":10,"output":30},"family":"gpt","id":"openai/gpt-4-turbo","knowledge":"2023-12","last_updated":"2024-04-09","limit":{"context":128000,"output":4096},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-4 Turbo","open_weights":false,"reasoning":false,"release_date":"2023-11-06","structured_output":false,"temperature":true,"tool_call":true},"openai/gpt-4.1":{"attachment":true,"cost":{"cache_read":0.5,"input":2,"output":8},"family":"gpt","id":"openai/gpt-4.1","knowledge":"2024-04","last_updated":"2025-04-14","limit":{"context":1047576,"output":32768},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-4.1","open_weights":false,"reasoning":false,"release_date":"2025-04-14","structured_output":true,"temperature":true,"tool_call":true},"openai/gpt-4.1-mini":{"attachment":true,"cost":{"cache_read":0.1,"input":0.4,"output":1.6},"family":"gpt-mini","id":"openai/gpt-4.1-mini","knowledge":"2024-04","last_updated":"2025-04-14","limit":{"context":1047576,"output":32768},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-4.1 mini","open_weights":false,"reasoning":false,"release_date":"2025-04-14","structured_output":true,"temperature":true,"tool_call":true},"openai/gpt-4.1-nano":{"attachment":true,"cost":{"cache_read":0.025,"input":0.1,"output":0.4},"family":"gpt-nano","id":"openai/gpt-4.1-nano","knowledge":"2024-04","last_updated":"2025-04-14","limit":{"context":1047576,"output":32768},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-4.1 nano","open_weights":false,"reasoning":false,"release_date":"2025-04-14","structured_output":true,"temperature":true,"tool_call":true},"openai/gpt-4o":{"attachment":true,"cost":{"cache_read":1.25,"input":2.5,"output":10},"family":"gpt","id":"openai/gpt-4o","knowledge":"2023-09","last_updated":"2024-08-06","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-4o","open_weights":false,"reasoning":false,"release_date":"2024-05-13","structured_output":true,"temperature":true,"tool_call":true},"openai/gpt-4o-2024-05-13":{"attachment":true,"cost":{"input":5,"output":15},"family":"gpt","id":"openai/gpt-4o-2024-05-13","knowledge":"2023-09","last_updated":"2024-05-13","limit":{"context":128000,"output":4096},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-4o (2024-05-13)","open_weights":false,"reasoning":false,"release_date":"2024-05-13","structured_output":true,"temperature":true,"tool_call":true},"openai/gpt-4o-2024-08-06":{"attachment":true,"cost":{"cache_read":1.25,"input":2.5,"output":10},"family":"gpt","id":"openai/gpt-4o-2024-08-06","knowledge":"2023-09","last_updated":"2024-08-06","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-4o (2024-08-06)","open_weights":false,"reasoning":false,"release_date":"2024-08-06","structured_output":true,"temperature":true,"tool_call":true},"openai/gpt-4o-2024-11-20":{"attachment":true,"cost":{"cache_read":1.25,"input":2.5,"output":10},"family":"gpt","id":"openai/gpt-4o-2024-11-20","knowledge":"2023-09","last_updated":"2024-11-20","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-4o (2024-11-20)","open_weights":false,"reasoning":false,"release_date":"2024-11-20","structured_output":true,"temperature":true,"tool_call":true},"openai/gpt-4o-mini":{"attachment":true,"cost":{"cache_read":0.075,"input":0.15,"output":0.6},"family":"gpt-mini","id":"openai/gpt-4o-mini","knowledge":"2023-09","last_updated":"2024-07-18","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-4o mini","open_weights":false,"reasoning":false,"release_date":"2024-07-18","structured_output":true,"temperature":true,"tool_call":true},"openai/gpt-5":{"attachment":true,"cost":{"cache_read":0.125,"input":1.25,"output":10},"family":"gpt","id":"openai/gpt-5","knowledge":"2024-09-30","last_updated":"2025-08-07","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5","open_weights":false,"reasoning":true,"release_date":"2025-08-07","structured_output":true,"temperature":false,"tool_call":true},"openai/gpt-5-chat-latest":{"attachment":true,"cost":{"cache_read":0.125,"input":1.25,"output":10},"family":"gpt-codex","id":"openai/gpt-5-chat-latest","knowledge":"2024-09-30","last_updated":"2025-08-07","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5 Chat (latest)","open_weights":false,"reasoning":true,"release_date":"2025-08-07","structured_output":true,"temperature":true,"tool_call":false},"openai/gpt-5-codex":{"attachment":false,"cost":{"cache_read":0.125,"input":1.25,"output":10},"family":"gpt-codex","id":"openai/gpt-5-codex","knowledge":"2024-09-30","last_updated":"2025-09-15","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5-Codex","open_weights":false,"reasoning":true,"release_date":"2025-09-15","structured_output":true,"temperature":false,"tool_call":true},"openai/gpt-5-mini":{"attachment":true,"cost":{"cache_read":0.025,"input":0.25,"output":2},"family":"gpt-mini","id":"openai/gpt-5-mini","knowledge":"2024-05-30","last_updated":"2025-08-07","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5 Mini","open_weights":false,"reasoning":true,"release_date":"2025-08-07","structured_output":true,"temperature":false,"tool_call":true},"openai/gpt-5-nano":{"attachment":true,"cost":{"cache_read":0.005,"input":0.05,"output":0.4},"family":"gpt-nano","id":"openai/gpt-5-nano","knowledge":"2024-05-30","last_updated":"2025-08-07","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5 Nano","open_weights":false,"reasoning":true,"release_date":"2025-08-07","structured_output":true,"temperature":false,"tool_call":true},"openai/gpt-5-pro":{"attachment":true,"cost":{"input":15,"output":120},"family":"gpt-pro","id":"openai/gpt-5-pro","knowledge":"2024-09-30","last_updated":"2025-10-06","limit":{"context":400000,"input":272000,"output":272000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5 Pro","open_weights":false,"reasoning":true,"release_date":"2025-10-06","structured_output":true,"temperature":false,"tool_call":true},"openai/gpt-5.1":{"attachment":true,"cost":{"cache_read":0.125,"input":1.25,"output":10},"family":"gpt","id":"openai/gpt-5.1","knowledge":"2024-09-30","last_updated":"2025-11-13","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.1","open_weights":false,"reasoning":true,"release_date":"2025-11-13","structured_output":true,"temperature":false,"tool_call":true},"openai/gpt-5.1-chat-latest":{"attachment":true,"cost":{"cache_read":0.125,"input":1.25,"output":10},"family":"gpt-codex","id":"openai/gpt-5.1-chat-latest","knowledge":"2024-09-30","last_updated":"2025-11-13","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.1 Chat","open_weights":false,"reasoning":true,"release_date":"2025-11-13","structured_output":true,"temperature":false,"tool_call":true},"openai/gpt-5.1-codex":{"attachment":true,"cost":{"cache_read":0.125,"input":1.25,"output":10},"family":"gpt-codex","id":"openai/gpt-5.1-codex","knowledge":"2024-09-30","last_updated":"2025-11-13","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.1 Codex","open_weights":false,"reasoning":true,"release_date":"2025-11-13","structured_output":true,"temperature":false,"tool_call":true},"openai/gpt-5.1-codex-max":{"attachment":true,"cost":{"cache_read":0.125,"input":1.25,"output":10},"family":"gpt-codex","id":"openai/gpt-5.1-codex-max","knowledge":"2024-09-30","last_updated":"2025-11-13","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.1 Codex Max","open_weights":false,"reasoning":true,"release_date":"2025-11-13","structured_output":true,"temperature":false,"tool_call":true},"openai/gpt-5.1-codex-mini":{"attachment":true,"cost":{"cache_read":0.025,"input":0.25,"output":2},"family":"gpt-codex","id":"openai/gpt-5.1-codex-mini","knowledge":"2024-09-30","last_updated":"2025-11-13","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.1 Codex mini","open_weights":false,"reasoning":true,"release_date":"2025-11-13","structured_output":true,"temperature":false,"tool_call":true},"openai/gpt-5.2":{"attachment":true,"cost":{"cache_read":0.175,"input":1.75,"output":14},"family":"gpt","id":"openai/gpt-5.2","knowledge":"2025-08-31","last_updated":"2025-12-11","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.2","open_weights":false,"reasoning":true,"release_date":"2025-12-11","structured_output":true,"temperature":false,"tool_call":true},"openai/gpt-5.2-chat-latest":{"attachment":true,"cost":{"cache_read":0.175,"input":1.75,"output":14},"family":"gpt-codex","id":"openai/gpt-5.2-chat-latest","knowledge":"2025-08-31","last_updated":"2025-12-11","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.2 Chat","open_weights":false,"reasoning":true,"release_date":"2025-12-11","structured_output":true,"temperature":false,"tool_call":true},"openai/gpt-5.2-codex":{"attachment":true,"cost":{"cache_read":0.175,"input":1.75,"output":14},"family":"gpt-codex","id":"openai/gpt-5.2-codex","knowledge":"2025-08-31","last_updated":"2025-12-11","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5.2 Codex","open_weights":false,"reasoning":true,"release_date":"2025-12-11","structured_output":true,"temperature":false,"tool_call":true},"openai/gpt-5.2-pro":{"attachment":true,"cost":{"input":21,"output":168},"family":"gpt-pro","id":"openai/gpt-5.2-pro","knowledge":"2025-08-31","last_updated":"2025-12-11","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.2 Pro","open_weights":false,"reasoning":true,"release_date":"2025-12-11","structured_output":false,"temperature":false,"tool_call":true},"openai/gpt-5.3-chat-latest":{"attachment":true,"cost":{"cache_read":0.175,"input":1.75,"output":14},"family":"gpt","id":"openai/gpt-5.3-chat-latest","knowledge":"2025-08-31","last_updated":"2026-03-03","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.3 Chat (latest)","open_weights":false,"reasoning":false,"release_date":"2026-03-03","structured_output":true,"temperature":true,"tool_call":true},"openai/gpt-5.3-codex":{"attachment":true,"cost":{"cache_read":0.175,"input":1.75,"output":14},"family":"gpt-codex","id":"openai/gpt-5.3-codex","knowledge":"2025-08-31","last_updated":"2026-02-05","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5.3 Codex","open_weights":false,"reasoning":true,"release_date":"2026-02-05","structured_output":true,"temperature":false,"tool_call":true},"openai/gpt-5.4":{"attachment":true,"cost":{"cache_read":0.25,"context_over_200k":{"cache_read":0.5,"input":5,"output":22.5},"input":5,"output":22.5,"tiers":[{"cache_read":0.5,"input":5,"output":22.5,"tier":{"size":272000,"type":"context"}}]},"experimental":{"modes":{"fast":{"cost":{"cache_read":0.5,"input":5,"output":30},"provider":{"body":{"service_tier":"priority"}}}}},"family":"gpt","id":"openai/gpt-5.4","knowledge":"2025-08-31","last_updated":"2026-03-05","limit":{"context":1050000,"input":922000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5.4","open_weights":false,"reasoning":true,"release_date":"2026-03-05","structured_output":true,"temperature":false,"tool_call":true},"openai/gpt-5.4-mini":{"attachment":true,"cost":{"cache_read":0.075,"input":0.75,"output":4.5},"experimental":{"modes":{"fast":{"cost":{"cache_read":0.15,"input":1.5,"output":9},"provider":{"body":{"service_tier":"priority"}}}}},"family":"gpt-mini","id":"openai/gpt-5.4-mini","knowledge":"2025-08-31","last_updated":"2026-03-17","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.4 mini","open_weights":false,"reasoning":true,"release_date":"2026-03-17","structured_output":true,"temperature":false,"tool_call":true},"openai/gpt-5.4-nano":{"attachment":true,"cost":{"cache_read":0.02,"input":0.2,"output":1.25},"family":"gpt-nano","id":"openai/gpt-5.4-nano","knowledge":"2025-08-31","last_updated":"2026-03-17","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.4 nano","open_weights":false,"reasoning":true,"release_date":"2026-03-17","structured_output":true,"temperature":false,"tool_call":true},"openai/gpt-5.4-pro":{"attachment":true,"cost":{"context_over_200k":{"input":60,"output":270},"input":60,"output":270,"tiers":[{"input":60,"output":270,"tier":{"size":272000,"type":"context"}}]},"family":"gpt-pro","id":"openai/gpt-5.4-pro","knowledge":"2025-08-31","last_updated":"2026-03-05","limit":{"context":1050000,"input":922000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.4 Pro","open_weights":false,"reasoning":true,"release_date":"2026-03-05","structured_output":false,"temperature":false,"tool_call":true},"openai/gpt-5.5":{"attachment":true,"cost":{"cache_read":0.5,"context_over_200k":{"cache_read":1,"input":10,"output":45},"input":5,"output":30,"tiers":[{"cache_read":1,"input":10,"output":45,"tier":{"size":272000,"type":"context"}}]},"experimental":{"modes":{"fast":{"cost":{"cache_read":1.25,"input":12.5,"output":75},"provider":{"body":{"service_tier":"priority"}}}}},"family":"gpt","id":"openai/gpt-5.5","knowledge":"2025-12-01","last_updated":"2026-04-23","limit":{"context":1050000,"input":922000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5.5","open_weights":false,"reasoning":true,"release_date":"2026-04-23","structured_output":true,"temperature":false,"tool_call":true},"openai/gpt-5.5-pro":{"attachment":true,"cost":{"context_over_200k":{"input":60,"output":270},"input":30,"output":180,"tiers":[{"input":60,"output":270,"tier":{"size":272000,"type":"context"}}]},"family":"gpt-pro","id":"openai/gpt-5.5-pro","knowledge":"2025-12-01","last_updated":"2026-04-23","limit":{"context":1050000,"input":922000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5.5 Pro","open_weights":false,"reasoning":true,"release_date":"2026-04-23","structured_output":true,"temperature":false,"tool_call":true},"orcarouter/auto":{"attachment":true,"cost":{"input":0,"output":0},"family":"auto","id":"orcarouter/auto","last_updated":"2026-05-14","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"OrcaRouter Auto","open_weights":false,"reasoning":false,"release_date":"2025-01-01","structured_output":true,"temperature":true,"tool_call":true},"qwen/qwen3-max":{"attachment":false,"cost":{"input":0.359,"output":1.434},"family":"qwen","id":"qwen/qwen3-max","knowledge":"2025-04","last_updated":"2025-09-23","limit":{"context":262144,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Max","open_weights":false,"reasoning":false,"release_date":"2025-09-23","temperature":true,"tool_call":true},"qwen/qwen3.5-122b-a10b":{"attachment":true,"cost":{"input":0.115,"output":0.917},"family":"qwen","id":"qwen/qwen3.5-122b-a10b","last_updated":"2026-02-23","limit":{"context":262144,"output":65536},"modalities":{"input":["text","image","video","audio"],"output":["text"]},"name":"Qwen3.5 122B-A10B","open_weights":true,"reasoning":true,"release_date":"2026-02-23","structured_output":true,"temperature":true,"tool_call":true},"qwen/qwen3.5-27b":{"attachment":true,"cost":{"input":0.086,"output":0.688},"family":"qwen","id":"qwen/qwen3.5-27b","last_updated":"2026-02-23","limit":{"context":262144,"output":65536},"modalities":{"input":["text","image","video","audio"],"output":["text"]},"name":"Qwen3.5 27B","open_weights":true,"reasoning":true,"release_date":"2026-02-23","structured_output":true,"temperature":true,"tool_call":true},"qwen/qwen3.5-35b-a3b":{"attachment":true,"cost":{"input":0.057,"output":0.459},"family":"qwen","id":"qwen/qwen3.5-35b-a3b","last_updated":"2026-02-23","limit":{"context":262144,"output":65536},"modalities":{"input":["text","image","video","audio"],"output":["text"]},"name":"Qwen3.5 35B-A3B","open_weights":true,"reasoning":true,"release_date":"2026-02-23","structured_output":true,"temperature":true,"tool_call":true},"qwen/qwen3.5-397b-a17b":{"attachment":true,"cost":{"input":0.172,"output":1.032},"family":"qwen","id":"qwen/qwen3.5-397b-a17b","last_updated":"2026-02-15","limit":{"context":262144,"output":65536},"modalities":{"input":["text","image","video","audio"],"output":["text"]},"name":"Qwen3.5 397B-A17B","open_weights":true,"reasoning":true,"release_date":"2026-02-15","structured_output":true,"temperature":true,"tool_call":true},"qwen/qwen3.5-plus":{"attachment":false,"cost":{"input":0.115,"output":0.688,"reasoning":2.4},"family":"qwen","id":"qwen/qwen3.5-plus","knowledge":"2025-04","last_updated":"2026-02-16","limit":{"context":1000000,"output":65536},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.5 Plus","open_weights":false,"reasoning":true,"release_date":"2026-02-16","temperature":true,"tool_call":true},"qwen/qwen3.6-35b-a3b":{"attachment":true,"cost":{"input":0.248,"output":1.485},"family":"qwen","id":"qwen/qwen3.6-35b-a3b","last_updated":"2026-04-17","limit":{"context":262144,"output":65536},"modalities":{"input":["text","image","video","audio"],"output":["text"]},"name":"Qwen3.6 35B-A3B","open_weights":true,"reasoning":true,"release_date":"2026-04-17","structured_output":true,"temperature":true,"tool_call":true},"qwen/qwen3.6-plus":{"attachment":false,"cost":{"cache_read":0.05,"cache_write":0.625,"context_over_200k":{"cache_read":0.2,"cache_write":2.5,"input":2,"output":6},"input":0.5,"output":3,"tiers":[{"cache_read":0.2,"cache_write":2.5,"input":2,"output":6,"tier":{"size":256000,"type":"context"}}]},"family":"qwen","id":"qwen/qwen3.6-plus","knowledge":"2025-04","last_updated":"2026-04-02","limit":{"context":1000000,"output":65536},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.6 Plus","open_weights":false,"reasoning":true,"release_date":"2026-04-02","temperature":true,"tool_call":true},"z-ai/glm-4.5":{"attachment":false,"cost":{"cache_read":0.11,"cache_write":0,"input":0.6,"output":2.2},"family":"glm","id":"z-ai/glm-4.5","knowledge":"2025-04","last_updated":"2025-07-28","limit":{"context":131072,"output":98304},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4.5","open_weights":true,"reasoning":true,"release_date":"2025-07-28","temperature":true,"tool_call":true},"z-ai/glm-4.5-air":{"attachment":false,"cost":{"cache_read":0.03,"cache_write":0,"input":0.2,"output":1.1},"family":"glm-air","id":"z-ai/glm-4.5-air","knowledge":"2025-04","last_updated":"2025-07-28","limit":{"context":131072,"output":98304},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4.5-Air","open_weights":true,"reasoning":true,"release_date":"2025-07-28","temperature":true,"tool_call":true},"z-ai/glm-4.6":{"attachment":false,"cost":{"cache_read":0.11,"cache_write":0,"input":0.6,"output":2.2},"family":"glm","id":"z-ai/glm-4.6","knowledge":"2025-04","last_updated":"2025-09-30","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4.6","open_weights":true,"reasoning":true,"release_date":"2025-09-30","temperature":true,"tool_call":true},"z-ai/glm-4.7":{"attachment":false,"cost":{"cache_read":0.11,"cache_write":0,"input":0.6,"output":2.2},"family":"glm","id":"z-ai/glm-4.7","interleaved":{"field":"reasoning_content"},"knowledge":"2025-04","last_updated":"2025-12-22","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4.7","open_weights":true,"reasoning":true,"release_date":"2025-12-22","temperature":true,"tool_call":true},"z-ai/glm-5":{"attachment":false,"cost":{"cache_read":0.2,"cache_write":0,"input":1,"output":3.2},"family":"glm","id":"z-ai/glm-5","interleaved":{"field":"reasoning_content"},"last_updated":"2026-02-11","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-5","open_weights":true,"reasoning":true,"release_date":"2026-02-11","temperature":true,"tool_call":true},"z-ai/glm-5.1":{"attachment":false,"cost":{"cache_read":0.26,"cache_write":0,"input":1.4,"output":4.4},"family":"glm","id":"z-ai/glm-5.1","interleaved":{"field":"reasoning_content"},"last_updated":"2026-03-27","limit":{"context":200000,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-5.1","open_weights":false,"reasoning":true,"release_date":"2026-03-27","structured_output":true,"temperature":true,"tool_call":true}},"name":"OrcaRouter","npm":"@ai-sdk/openai-compatible"},"ovhcloud":{"api":"https://oai.endpoints.kepler.ai.cloud.ovh.net/v1","doc":"https://www.ovhcloud.com/en/public-cloud/ai-endpoints/catalog//","env":["OVHCLOUD_API_KEY"],"id":"ovhcloud","models":{"gpt-oss-120b":{"attachment":false,"cost":{"input":0.09,"output":0.47},"id":"gpt-oss-120b","last_updated":"2025-08-28","limit":{"context":131072,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"gpt-oss-120b","open_weights":true,"reasoning":true,"release_date":"2025-08-28","structured_output":true,"tool_call":true},"gpt-oss-20b":{"attachment":false,"cost":{"input":0.05,"output":0.18},"id":"gpt-oss-20b","last_updated":"2025-08-28","limit":{"context":131072,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"gpt-oss-20b","open_weights":true,"reasoning":true,"release_date":"2025-08-28","structured_output":true,"tool_call":true},"llama-3.1-8b-instruct":{"attachment":false,"cost":{"input":0.11,"output":0.11},"id":"llama-3.1-8b-instruct","last_updated":"2025-06-11","limit":{"context":131072,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"Llama-3.1-8B-Instruct","open_weights":true,"reasoning":false,"release_date":"2025-06-11","structured_output":true,"temperature":true,"tool_call":true},"meta-llama-3_3-70b-instruct":{"attachment":false,"cost":{"input":0.74,"output":0.74},"id":"meta-llama-3_3-70b-instruct","last_updated":"2025-04-01","limit":{"context":131072,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"Meta-Llama-3_3-70B-Instruct","open_weights":true,"reasoning":false,"release_date":"2025-04-01","structured_output":true,"temperature":true,"tool_call":true},"mistral-7b-instruct-v0.3":{"attachment":false,"cost":{"input":0.11,"output":0.11},"id":"mistral-7b-instruct-v0.3","last_updated":"2025-04-01","limit":{"context":65536,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Mistral-7B-Instruct-v0.3","open_weights":true,"reasoning":false,"release_date":"2025-04-01","structured_output":true,"temperature":true,"tool_call":true},"mistral-nemo-instruct-2407":{"attachment":false,"cost":{"input":0.14,"output":0.14},"id":"mistral-nemo-instruct-2407","last_updated":"2024-11-20","limit":{"context":65536,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Mistral-Nemo-Instruct-2407","open_weights":true,"reasoning":false,"release_date":"2024-11-20","structured_output":true,"temperature":true,"tool_call":true},"mistral-small-3.2-24b-instruct-2506":{"attachment":true,"cost":{"input":0.1,"output":0.31},"id":"mistral-small-3.2-24b-instruct-2506","last_updated":"2025-07-16","limit":{"context":131072,"output":131072},"modalities":{"input":["text","image"],"output":["text"]},"name":"Mistral-Small-3.2-24B-Instruct-2506","open_weights":true,"reasoning":false,"release_date":"2025-07-16","structured_output":true,"temperature":true,"tool_call":true},"qwen2.5-vl-72b-instruct":{"attachment":true,"cost":{"input":1.01,"output":1.01},"id":"qwen2.5-vl-72b-instruct","last_updated":"2025-03-31","limit":{"context":32768,"output":32768},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen2.5-VL-72B-Instruct","open_weights":true,"reasoning":false,"release_date":"2025-03-31","structured_output":true,"temperature":true,"tool_call":false},"qwen3-32b":{"attachment":false,"cost":{"input":0.09,"output":0.25},"id":"qwen3-32b","last_updated":"2025-07-16","limit":{"context":32768,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3-32B","open_weights":true,"reasoning":true,"release_date":"2025-07-16","structured_output":true,"temperature":true,"tool_call":true},"qwen3-coder-30b-a3b-instruct":{"attachment":false,"cost":{"input":0.07,"output":0.26},"id":"qwen3-coder-30b-a3b-instruct","last_updated":"2025-10-28","limit":{"context":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3-Coder-30B-A3B-Instruct","open_weights":true,"reasoning":false,"release_date":"2025-10-28","structured_output":true,"temperature":true,"tool_call":true},"qwen3.5-397b-a17b":{"attachment":true,"cost":{"input":0.71,"output":4.25},"id":"qwen3.5-397b-a17b","last_updated":"2026-05-18","limit":{"context":262144,"output":262144},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen3.5-397B-A17B","open_weights":true,"reasoning":true,"release_date":"2026-05-18","structured_output":true,"temperature":true,"tool_call":true},"qwen3.5-9b":{"attachment":true,"cost":{"input":0.12,"output":0.18},"id":"qwen3.5-9b","last_updated":"2026-04-22","limit":{"context":262144,"output":262144},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen3.5-9B","open_weights":true,"reasoning":true,"release_date":"2026-04-22","structured_output":true,"temperature":true,"tool_call":true},"qwen3.6-27b":{"attachment":true,"cost":{"input":0.47,"output":3.19},"id":"qwen3.6-27b","last_updated":"2026-06-01","limit":{"context":262144,"output":262144},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen3.6-27B","open_weights":true,"reasoning":true,"release_date":"2026-06-01","structured_output":true,"temperature":true,"tool_call":true},"qwen3guard-gen-0.6b":{"attachment":false,"id":"qwen3guard-gen-0.6b","last_updated":"2026-01-22","limit":{"context":32768,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3Guard-Gen-0.6B","open_weights":true,"reasoning":false,"release_date":"2026-01-22","temperature":true,"tool_call":false},"qwen3guard-gen-8b":{"attachment":false,"id":"qwen3guard-gen-8b","last_updated":"2026-01-22","limit":{"context":32768,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3Guard-Gen-8B","open_weights":true,"reasoning":false,"release_date":"2026-01-22","temperature":true,"tool_call":false}},"name":"OVHcloud AI Endpoints","npm":"@ai-sdk/openai-compatible"},"perplexity":{"doc":"https://docs.perplexity.ai","env":["PERPLEXITY_API_KEY"],"id":"perplexity","models":{"sonar":{"attachment":false,"cost":{"input":1,"output":1},"family":"sonar","id":"sonar","knowledge":"2025-09-01","last_updated":"2025-09-01","limit":{"context":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Sonar","open_weights":false,"reasoning":false,"release_date":"2024-01-01","temperature":true,"tool_call":false},"sonar-deep-research":{"attachment":false,"cost":{"input":2,"output":8,"reasoning":3},"id":"sonar-deep-research","knowledge":"2025-01","last_updated":"2025-09-01","limit":{"context":128000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Perplexity Sonar Deep Research","open_weights":false,"reasoning":true,"release_date":"2025-02-01","temperature":false,"tool_call":false},"sonar-pro":{"attachment":true,"cost":{"input":3,"output":15},"family":"sonar-pro","id":"sonar-pro","knowledge":"2025-09-01","last_updated":"2025-09-01","limit":{"context":200000,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Sonar Pro","open_weights":false,"reasoning":false,"release_date":"2024-01-01","temperature":true,"tool_call":false},"sonar-reasoning-pro":{"attachment":true,"cost":{"input":2,"output":8},"family":"sonar-reasoning","id":"sonar-reasoning-pro","knowledge":"2025-09-01","last_updated":"2025-09-01","limit":{"context":128000,"output":4096},"modalities":{"input":["text","image"],"output":["text"]},"name":"Sonar Reasoning Pro","open_weights":false,"reasoning":true,"release_date":"2024-01-01","temperature":true,"tool_call":false}},"name":"Perplexity","npm":"@ai-sdk/perplexity"},"perplexity-agent":{"api":"https://api.perplexity.ai/v1","doc":"https://docs.perplexity.ai/docs/agent-api/models","env":["PERPLEXITY_API_KEY"],"id":"perplexity-agent","models":{"anthropic/claude-haiku-4-5":{"attachment":true,"cost":{"cache_read":0.1,"input":1,"output":5},"family":"claude-haiku","id":"anthropic/claude-haiku-4-5","knowledge":"2025-02-28","last_updated":"2025-10-15","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Haiku 4.5","open_weights":false,"reasoning":true,"release_date":"2025-10-15","temperature":true,"tool_call":true},"anthropic/claude-opus-4-5":{"attachment":true,"cost":{"cache_read":0.5,"input":5,"output":25},"family":"claude-opus","id":"anthropic/claude-opus-4-5","knowledge":"2025-03-31","last_updated":"2025-11-24","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.5","open_weights":false,"reasoning":true,"release_date":"2025-11-24","temperature":true,"tool_call":true},"anthropic/claude-opus-4-6":{"attachment":true,"cost":{"cache_read":0.5,"input":5,"output":25},"family":"claude-opus","id":"anthropic/claude-opus-4-6","knowledge":"2025-05-31","last_updated":"2026-02-05","limit":{"context":200000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.6","open_weights":false,"reasoning":true,"release_date":"2026-02-05","temperature":true,"tool_call":true},"anthropic/claude-opus-4-7":{"attachment":true,"cost":{"cache_read":0.5,"input":5,"output":25},"family":"claude-opus","id":"anthropic/claude-opus-4-7","knowledge":"2026-01-31","last_updated":"2026-04-16","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.7","open_weights":false,"reasoning":true,"release_date":"2026-04-16","temperature":false,"tool_call":true},"anthropic/claude-sonnet-4-5":{"attachment":true,"cost":{"cache_read":0.3,"input":3,"output":15},"family":"claude-sonnet","id":"anthropic/claude-sonnet-4-5","knowledge":"2025-07-31","last_updated":"2025-09-29","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 4.5","open_weights":false,"reasoning":true,"release_date":"2025-09-29","temperature":true,"tool_call":true},"anthropic/claude-sonnet-4-6":{"attachment":true,"cost":{"cache_read":0.3,"input":3,"output":15},"family":"claude-sonnet","id":"anthropic/claude-sonnet-4-6","knowledge":"2025-08-31","last_updated":"2026-02-17","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 4.6","open_weights":false,"reasoning":true,"release_date":"2026-02-17","temperature":true,"tool_call":true},"google/gemini-2.5-flash":{"attachment":true,"cost":{"cache_read":0.03,"input":0.3,"output":2.5},"family":"gemini-flash","id":"google/gemini-2.5-flash","knowledge":"2025-01","last_updated":"2025-06-05","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"Gemini 2.5 Flash","open_weights":false,"reasoning":true,"release_date":"2025-03-20","temperature":true,"tool_call":true},"google/gemini-2.5-pro":{"attachment":true,"cost":{"cache_read":0.125,"context_over_200k":{"cache_read":0.25,"input":2.5,"output":15},"input":1.25,"output":10,"tiers":[{"cache_read":0.25,"input":2.5,"output":15,"tier":{"size":200000,"type":"context"}}]},"family":"gemini-pro","id":"google/gemini-2.5-pro","knowledge":"2025-01","last_updated":"2025-06-05","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"Gemini 2.5 Pro","open_weights":false,"reasoning":true,"release_date":"2025-03-20","temperature":true,"tool_call":true},"google/gemini-3-flash-preview":{"attachment":true,"cost":{"cache_read":0.05,"context_over_200k":{"cache_read":0.05,"input":0.5,"output":3},"input":0.5,"output":3,"tiers":[{"cache_read":0.05,"input":0.5,"output":3,"tier":{"size":200000,"type":"context"}}]},"family":"gemini-flash","id":"google/gemini-3-flash-preview","knowledge":"2025-01","last_updated":"2025-12-17","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"name":"Gemini 3 Flash Preview","open_weights":false,"reasoning":true,"release_date":"2025-12-17","temperature":true,"tool_call":true},"google/gemini-3.1-pro-preview":{"attachment":true,"cost":{"cache_read":0.2,"context_over_200k":{"cache_read":0.4,"input":4,"output":18},"input":2,"output":12,"tiers":[{"cache_read":0.4,"input":4,"output":18,"tier":{"size":200000,"type":"context"}}]},"family":"gemini-pro","id":"google/gemini-3.1-pro-preview","knowledge":"2025-01","last_updated":"2026-02-19","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"name":"Gemini 3.1 Pro Preview","open_weights":false,"reasoning":true,"release_date":"2026-02-19","temperature":true,"tool_call":true},"nvidia/nemotron-3-super-120b-a12b":{"attachment":false,"cost":{"input":0.25,"output":2.5},"family":"nemotron","id":"nvidia/nemotron-3-super-120b-a12b","knowledge":"2026-02","last_updated":"2026-03-11","limit":{"context":1000000,"output":32000},"modalities":{"input":["text"],"output":["text"]},"name":"Nemotron 3 Super 120B","open_weights":true,"reasoning":true,"release_date":"2026-03-11","temperature":true,"tool_call":true},"openai/gpt-5-mini":{"attachment":true,"cost":{"cache_read":0.025,"input":0.25,"output":2},"family":"gpt-mini","id":"openai/gpt-5-mini","knowledge":"2024-05-30","last_updated":"2025-08-07","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5 Mini","open_weights":false,"reasoning":true,"release_date":"2025-08-07","temperature":false,"tool_call":true},"openai/gpt-5.1":{"attachment":true,"cost":{"cache_read":0.125,"input":1.25,"output":10},"family":"gpt","id":"openai/gpt-5.1","knowledge":"2024-09-30","last_updated":"2025-11-13","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.1","open_weights":false,"reasoning":true,"release_date":"2025-11-13","temperature":false,"tool_call":true},"openai/gpt-5.2":{"attachment":true,"cost":{"cache_read":0.175,"input":1.75,"output":14},"family":"gpt","id":"openai/gpt-5.2","knowledge":"2025-08-31","last_updated":"2025-12-11","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.2","open_weights":false,"reasoning":true,"release_date":"2025-12-11","temperature":false,"tool_call":true},"openai/gpt-5.4":{"attachment":true,"cost":{"cache_read":0.25,"input":2.5,"output":15},"family":"gpt","id":"openai/gpt-5.4","knowledge":"2025-08-31","last_updated":"2026-03-05","limit":{"context":1050000,"input":922000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.4","open_weights":false,"reasoning":true,"release_date":"2026-03-05","temperature":false,"tool_call":true},"openai/gpt-5.5":{"attachment":true,"cost":{"cache_read":0.5,"input":5,"output":30},"family":"gpt","id":"openai/gpt-5.5","knowledge":"2025-12-01","last_updated":"2026-04-23","limit":{"context":1050000,"input":922000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5.5","open_weights":false,"reasoning":true,"release_date":"2026-04-23","temperature":false,"tool_call":true},"perplexity/sonar":{"attachment":false,"cost":{"cache_read":0.0625,"input":0.25,"output":2.5},"family":"sonar","id":"perplexity/sonar","knowledge":"2025-09-01","last_updated":"2025-09-01","limit":{"context":128000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Sonar","open_weights":false,"reasoning":false,"release_date":"2024-01-01","temperature":true,"tool_call":true},"xai/grok-4-1-fast-non-reasoning":{"attachment":true,"cost":{"cache_read":0.05,"input":0.2,"output":0.5},"family":"grok","id":"xai/grok-4-1-fast-non-reasoning","knowledge":"2025-07","last_updated":"2025-11-19","limit":{"context":2000000,"output":30000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Grok 4.1 Fast (Non-Reasoning)","open_weights":false,"reasoning":false,"release_date":"2025-11-19","temperature":true,"tool_call":true}},"name":"Perplexity Agent","npm":"@ai-sdk/openai"},"poe":{"api":"https://api.poe.com/v1","doc":"https://creator.poe.com/docs/external-applications/openai-compatible-api","env":["POE_API_KEY"],"id":"poe","models":{"anthropic/claude-haiku-3":{"attachment":true,"cost":{"cache_read":0.021,"cache_write":0.26,"input":0.21,"output":1.1},"family":"claude-haiku","id":"anthropic/claude-haiku-3","last_updated":"2024-03-09","limit":{"context":189096,"output":8192},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude-Haiku-3","open_weights":false,"reasoning":false,"release_date":"2024-03-09","temperature":false,"tool_call":true},"anthropic/claude-haiku-3.5":{"attachment":true,"cost":{"cache_read":0.068,"cache_write":0.85,"input":0.68,"output":3.4},"family":"claude-haiku","id":"anthropic/claude-haiku-3.5","last_updated":"2024-10-01","limit":{"context":189096,"output":8192},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude-Haiku-3.5","open_weights":false,"reasoning":false,"release_date":"2024-10-01","temperature":false,"tool_call":true},"anthropic/claude-haiku-4.5":{"attachment":true,"cost":{"cache_read":0.085,"cache_write":1.1,"input":0.85,"output":4.3},"family":"claude-haiku","id":"anthropic/claude-haiku-4.5","last_updated":"2025-10-15","limit":{"context":192000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude-Haiku-4.5","open_weights":false,"reasoning":true,"release_date":"2025-10-15","temperature":false,"tool_call":true},"anthropic/claude-opus-4":{"attachment":true,"cost":{"cache_read":1.3,"cache_write":16,"input":13,"output":64},"family":"claude-opus","id":"anthropic/claude-opus-4","last_updated":"2025-05-21","limit":{"context":192512,"output":28672},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude-Opus-4","open_weights":false,"reasoning":true,"release_date":"2025-05-21","temperature":false,"tool_call":true},"anthropic/claude-opus-4.1":{"attachment":true,"cost":{"cache_read":1.3,"cache_write":16,"input":13,"output":64},"family":"claude-opus","id":"anthropic/claude-opus-4.1","last_updated":"2025-08-05","limit":{"context":196608,"output":32000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude-Opus-4.1","open_weights":false,"reasoning":true,"release_date":"2025-08-05","temperature":false,"tool_call":true},"anthropic/claude-opus-4.5":{"attachment":true,"cost":{"cache_read":0.43,"cache_write":5.3,"input":4.3,"output":21},"family":"claude-opus","id":"anthropic/claude-opus-4.5","last_updated":"2025-11-21","limit":{"context":196608,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude-Opus-4.5","open_weights":false,"reasoning":true,"release_date":"2025-11-21","temperature":false,"tool_call":true},"anthropic/claude-opus-4.6":{"attachment":true,"cost":{"cache_read":0.43,"cache_write":5.3,"input":4.3,"output":21},"id":"anthropic/claude-opus-4.6","last_updated":"2026-02-04","limit":{"context":983040,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude-Opus-4.6","open_weights":false,"reasoning":true,"release_date":"2026-02-04","temperature":false,"tool_call":true},"anthropic/claude-opus-4.7":{"attachment":true,"cost":{"cache_read":0.43,"cache_write":5.4,"input":4.3,"output":21},"id":"anthropic/claude-opus-4.7","last_updated":"2026-04-15","limit":{"context":1048576,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude-Opus-4.7","open_weights":false,"reasoning":true,"release_date":"2026-04-15","temperature":false,"tool_call":true},"anthropic/claude-opus-4.8":{"attachment":true,"cost":{"input":4.2929,"output":21.4646},"family":"claude-opus","id":"anthropic/claude-opus-4.8","last_updated":"2026-05-28","limit":{"context":1048576,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude-Opus-4.8","open_weights":false,"reasoning":true,"release_date":"2026-05-28","temperature":false,"tool_call":true},"anthropic/claude-sonnet-3.5":{"attachment":true,"cost":{"cache_read":0.26,"cache_write":3.2,"input":2.6,"output":13},"family":"claude-sonnet","id":"anthropic/claude-sonnet-3.5","last_updated":"2024-06-05","limit":{"context":189096,"output":8192},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude-Sonnet-3.5","open_weights":false,"reasoning":false,"release_date":"2024-06-05","status":"deprecated","temperature":false,"tool_call":true},"anthropic/claude-sonnet-3.5-june":{"attachment":true,"cost":{"cache_read":0.26,"cache_write":3.2,"input":2.6,"output":13},"family":"claude-sonnet","id":"anthropic/claude-sonnet-3.5-june","last_updated":"2024-11-18","limit":{"context":189096,"output":8192},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude-Sonnet-3.5-June","open_weights":false,"reasoning":false,"release_date":"2024-11-18","status":"deprecated","temperature":false,"tool_call":true},"anthropic/claude-sonnet-3.7":{"attachment":true,"cost":{"cache_read":0.26,"cache_write":3.2,"input":2.6,"output":13},"family":"claude-sonnet","id":"anthropic/claude-sonnet-3.7","last_updated":"2025-02-19","limit":{"context":196608,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude-Sonnet-3.7","open_weights":false,"reasoning":true,"release_date":"2025-02-19","temperature":false,"tool_call":true},"anthropic/claude-sonnet-4":{"attachment":true,"cost":{"cache_read":0.26,"cache_write":3.2,"input":2.6,"output":13},"family":"claude-sonnet","id":"anthropic/claude-sonnet-4","last_updated":"2025-05-21","limit":{"context":983040,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude-Sonnet-4","open_weights":false,"reasoning":true,"release_date":"2025-05-21","temperature":false,"tool_call":true},"anthropic/claude-sonnet-4.5":{"attachment":true,"cost":{"cache_read":0.26,"cache_write":3.2,"input":2.6,"output":13},"family":"claude-sonnet","id":"anthropic/claude-sonnet-4.5","last_updated":"2025-09-26","limit":{"context":983040,"output":32768},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude-Sonnet-4.5","open_weights":false,"reasoning":true,"release_date":"2025-09-26","temperature":false,"tool_call":true},"anthropic/claude-sonnet-4.6":{"attachment":true,"cost":{"cache_read":0.26,"cache_write":3.2,"input":2.6,"output":13},"id":"anthropic/claude-sonnet-4.6","last_updated":"2026-02-05","limit":{"context":983040,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude-Sonnet-4.6","open_weights":false,"reasoning":true,"release_date":"2026-02-05","temperature":false,"tool_call":true},"cerebras/gpt-oss-120b-cs":{"attachment":true,"cost":{"input":0.35,"output":0.75},"id":"cerebras/gpt-oss-120b-cs","last_updated":"2025-08-06","limit":{"context":128000,"output":0},"modalities":{"input":["text"],"output":["text"]},"name":"GPT-OSS-120B-CS","open_weights":false,"reasoning":true,"release_date":"2025-08-06","temperature":false,"tool_call":true},"cerebras/llama-3.1-8b-cs":{"attachment":true,"cost":{"input":0.1,"output":0.1},"id":"cerebras/llama-3.1-8b-cs","last_updated":"2025-05-13","limit":{"context":128000,"output":0},"modalities":{"input":["text"],"output":["text"]},"name":"Llama-3.1-8B-CS","open_weights":false,"reasoning":false,"release_date":"2025-05-13","temperature":false,"tool_call":true},"cerebras/llama-3.3-70b-cs":{"attachment":true,"id":"cerebras/llama-3.3-70b-cs","last_updated":"2025-05-13","limit":{"context":0,"output":0},"modalities":{"input":["text"],"output":["text"]},"name":"llama-3.3-70b-cs","open_weights":false,"reasoning":false,"release_date":"2025-05-13","status":"deprecated","temperature":false,"tool_call":false},"cerebras/qwen3-235b-2507-cs":{"attachment":true,"id":"cerebras/qwen3-235b-2507-cs","last_updated":"2025-08-06","limit":{"context":0,"output":0},"modalities":{"input":["text"],"output":["text"]},"name":"qwen3-235b-2507-cs","open_weights":false,"reasoning":true,"release_date":"2025-08-06","status":"deprecated","temperature":false,"tool_call":true},"cerebras/qwen3-32b-cs":{"attachment":true,"id":"cerebras/qwen3-32b-cs","last_updated":"2025-05-15","limit":{"context":0,"output":0},"modalities":{"input":["text"],"output":["text"]},"name":"qwen3-32b-cs","open_weights":false,"reasoning":true,"release_date":"2025-05-15","status":"deprecated","temperature":false,"tool_call":true},"elevenlabs/elevenlabs-music":{"attachment":true,"family":"elevenlabs","id":"elevenlabs/elevenlabs-music","last_updated":"2025-08-29","limit":{"context":2000,"output":0},"modalities":{"input":["text"],"output":["audio"]},"name":"ElevenLabs-Music","open_weights":false,"reasoning":false,"release_date":"2025-08-29","temperature":false,"tool_call":true},"elevenlabs/elevenlabs-v2.5-turbo":{"attachment":true,"family":"elevenlabs","id":"elevenlabs/elevenlabs-v2.5-turbo","last_updated":"2024-10-28","limit":{"context":128000,"output":0},"modalities":{"input":["text"],"output":["audio"]},"name":"ElevenLabs-v2.5-Turbo","open_weights":false,"reasoning":false,"release_date":"2024-10-28","temperature":false,"tool_call":true},"elevenlabs/elevenlabs-v3":{"attachment":true,"family":"elevenlabs","id":"elevenlabs/elevenlabs-v3","last_updated":"2025-06-05","limit":{"context":128000,"output":0},"modalities":{"input":["text"],"output":["audio"]},"name":"ElevenLabs-v3","open_weights":false,"reasoning":false,"release_date":"2025-06-05","temperature":false,"tool_call":true},"empiriolabs/deepseek-v4-flash-el":{"attachment":true,"cost":{"input":0.14,"output":0.28},"id":"empiriolabs/deepseek-v4-flash-el","last_updated":"2026-05-02","limit":{"context":1000000,"input":1000000,"output":384000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek-V4-Flash-EL","open_weights":true,"reasoning":true,"release_date":"2026-04-24","tool_call":true},"empiriolabs/deepseek-v4-pro-el":{"attachment":true,"cost":{"input":1.67,"output":3.33},"id":"empiriolabs/deepseek-v4-pro-el","last_updated":"2026-05-02","limit":{"context":1000000,"input":1000000,"output":384000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek-V4-Pro-EL","open_weights":true,"reasoning":true,"release_date":"2026-04-24","tool_call":true},"fireworks-ai/kimi-k2.5-fw":{"attachment":true,"cost":{"input":0,"output":0},"id":"fireworks-ai/kimi-k2.5-fw","last_updated":"2026-01-27","limit":{"context":262144,"input":245760,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"Kimi-K2.5-FW","open_weights":false,"reasoning":false,"release_date":"2026-01-27","temperature":false,"tool_call":true},"google/gemini-2.0-flash":{"attachment":true,"cost":{"input":0.1,"output":0.42},"family":"gemini-flash","id":"google/gemini-2.0-flash","last_updated":"2024-12-11","limit":{"context":990000,"output":8192},"modalities":{"input":["text","image","video","audio"],"output":["text"]},"name":"Gemini-2.0-Flash","open_weights":false,"reasoning":false,"release_date":"2024-12-11","temperature":false,"tool_call":true},"google/gemini-2.0-flash-lite":{"attachment":true,"cost":{"input":0.052,"output":0.21},"family":"gemini-flash-lite","id":"google/gemini-2.0-flash-lite","last_updated":"2025-02-05","limit":{"context":990000,"output":8192},"modalities":{"input":["text","image","video","audio"],"output":["text"]},"name":"Gemini-2.0-Flash-Lite","open_weights":false,"reasoning":false,"release_date":"2025-02-05","temperature":false,"tool_call":true},"google/gemini-2.5-flash":{"attachment":true,"cost":{"cache_read":0.021,"input":0.21,"output":1.8},"family":"gemini-flash","id":"google/gemini-2.5-flash","last_updated":"2025-04-26","limit":{"context":1065535,"output":65535},"modalities":{"input":["text","image","video","audio"],"output":["text"]},"name":"Gemini-2.5-Flash","open_weights":false,"reasoning":true,"release_date":"2025-04-26","temperature":false,"tool_call":true},"google/gemini-2.5-flash-lite":{"attachment":true,"cost":{"input":0.07,"output":0.28},"family":"gemini-flash-lite","id":"google/gemini-2.5-flash-lite","last_updated":"2025-06-19","limit":{"context":1024000,"output":64000},"modalities":{"input":["text","image","video","audio"],"output":["text"]},"name":"Gemini-2.5-Flash-Lite","open_weights":false,"reasoning":true,"release_date":"2025-06-19","temperature":false,"tool_call":true},"google/gemini-2.5-pro":{"attachment":true,"cost":{"cache_read":0.087,"input":0.87,"output":7},"family":"gemini-pro","id":"google/gemini-2.5-pro","last_updated":"2025-02-05","limit":{"context":1065535,"output":65535},"modalities":{"input":["text","image","video","audio"],"output":["text"]},"name":"Gemini-2.5-Pro","open_weights":false,"reasoning":true,"release_date":"2025-02-05","temperature":false,"tool_call":true},"google/gemini-3-flash":{"attachment":true,"cost":{"cache_read":0.04,"input":0.4,"output":2.4},"id":"google/gemini-3-flash","last_updated":"2025-10-07","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","video","audio"],"output":["text"]},"name":"Gemini-3-Flash","open_weights":false,"reasoning":true,"release_date":"2025-10-07","temperature":false,"tool_call":true},"google/gemini-3-pro":{"attachment":true,"cost":{"cache_read":0.16,"input":1.6,"output":9.6},"family":"gemini-pro","id":"google/gemini-3-pro","last_updated":"2025-10-22","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","video","audio"],"output":["text"]},"name":"Gemini-3-Pro","open_weights":false,"reasoning":true,"release_date":"2025-10-22","status":"deprecated","temperature":false,"tool_call":true},"google/gemini-3.1-flash-lite":{"attachment":true,"cost":{"input":0.25,"output":1.5},"id":"google/gemini-3.1-flash-lite","last_updated":"2026-02-18","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","video","audio"],"output":["text"]},"name":"Gemini-3.1-Flash-Lite","open_weights":false,"reasoning":true,"release_date":"2026-02-18","temperature":false,"tool_call":true},"google/gemini-3.1-pro":{"attachment":true,"cost":{"cache_read":0.2,"input":2,"output":12},"id":"google/gemini-3.1-pro","last_updated":"2026-02-19","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","video","audio"],"output":["text"]},"name":"Gemini-3.1-Pro","open_weights":false,"reasoning":true,"release_date":"2026-02-19","temperature":false,"tool_call":true},"google/gemini-3.5-flash":{"attachment":true,"cost":{"cache_read":0.1515,"input":1.5152,"output":9.0909},"family":"gemini-flash","id":"google/gemini-3.5-flash","knowledge":"2025-01","last_updated":"2026-05-19","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","audio"],"output":["text"]},"name":"Gemini-3.5-Flash","open_weights":false,"reasoning":true,"release_date":"2026-05-19","structured_output":true,"temperature":false,"tool_call":true},"google/gemini-deep-research":{"attachment":true,"cost":{"input":1.6,"output":9.6},"id":"google/gemini-deep-research","last_updated":"2025-12-11","limit":{"context":1048576,"output":0},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"gemini-deep-research","open_weights":false,"reasoning":true,"release_date":"2025-12-11","status":"deprecated","temperature":false,"tool_call":true},"google/gemma-4-31b":{"attachment":true,"cost":{"input":0,"output":0},"id":"google/gemma-4-31b","last_updated":"2026-04-02","limit":{"context":262144,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Gemma-4-31B","open_weights":false,"reasoning":false,"release_date":"2026-04-02","temperature":false,"tool_call":true},"google/imagen-3":{"attachment":true,"family":"imagen","id":"google/imagen-3","last_updated":"2024-10-15","limit":{"context":480,"output":0},"modalities":{"input":["text"],"output":["image"]},"name":"Imagen-3","open_weights":false,"reasoning":false,"release_date":"2024-10-15","temperature":false,"tool_call":true},"google/imagen-3-fast":{"attachment":true,"family":"imagen","id":"google/imagen-3-fast","last_updated":"2024-10-17","limit":{"context":480,"output":0},"modalities":{"input":["text"],"output":["image"]},"name":"Imagen-3-Fast","open_weights":false,"reasoning":false,"release_date":"2024-10-17","temperature":false,"tool_call":true},"google/imagen-4":{"attachment":true,"family":"imagen","id":"google/imagen-4","last_updated":"2025-05-22","limit":{"context":480,"output":0},"modalities":{"input":["text"],"output":["image"]},"name":"Imagen-4","open_weights":false,"reasoning":false,"release_date":"2025-05-22","temperature":false,"tool_call":true},"google/imagen-4-fast":{"attachment":true,"family":"imagen","id":"google/imagen-4-fast","last_updated":"2025-06-25","limit":{"context":480,"output":0},"modalities":{"input":["text"],"output":["image"]},"name":"Imagen-4-Fast","open_weights":false,"reasoning":false,"release_date":"2025-06-25","temperature":false,"tool_call":true},"google/imagen-4-ultra":{"attachment":true,"family":"imagen","id":"google/imagen-4-ultra","last_updated":"2025-05-24","limit":{"context":480,"output":0},"modalities":{"input":["text"],"output":["image"]},"name":"Imagen-4-Ultra","open_weights":false,"reasoning":false,"release_date":"2025-05-24","temperature":false,"tool_call":true},"google/lyria":{"attachment":true,"family":"lyria","id":"google/lyria","last_updated":"2025-06-04","limit":{"context":0,"output":0},"modalities":{"input":["text"],"output":["audio"]},"name":"Lyria","open_weights":false,"reasoning":false,"release_date":"2025-06-04","temperature":false,"tool_call":true},"google/nano-banana":{"attachment":true,"cost":{"cache_read":0.021,"input":0.21,"output":1.8},"family":"nano-banana","id":"google/nano-banana","last_updated":"2025-08-21","limit":{"context":65536,"output":0},"modalities":{"input":["text","image"],"output":["text","image"]},"name":"Nano-Banana","open_weights":false,"reasoning":false,"release_date":"2025-08-21","temperature":false,"tool_call":true},"google/nano-banana-pro":{"attachment":true,"cost":{"cache_read":0.2,"input":2,"output":12},"family":"nano-banana","id":"google/nano-banana-pro","last_updated":"2025-11-19","limit":{"context":65536,"output":0},"modalities":{"input":["text","image"],"output":["image"]},"name":"Nano-Banana-Pro","open_weights":false,"reasoning":false,"release_date":"2025-11-19","temperature":false,"tool_call":true},"google/veo-2":{"attachment":true,"family":"veo","id":"google/veo-2","last_updated":"2024-12-02","limit":{"context":480,"output":0},"modalities":{"input":["text"],"output":["video"]},"name":"Veo-2","open_weights":false,"reasoning":false,"release_date":"2024-12-02","temperature":false,"tool_call":true},"google/veo-3":{"attachment":true,"family":"veo","id":"google/veo-3","last_updated":"2025-05-21","limit":{"context":480,"output":0},"modalities":{"input":["text"],"output":["video"]},"name":"Veo-3","open_weights":false,"reasoning":false,"release_date":"2025-05-21","temperature":false,"tool_call":true},"google/veo-3-fast":{"attachment":true,"family":"veo","id":"google/veo-3-fast","last_updated":"2025-10-13","limit":{"context":480,"output":0},"modalities":{"input":["text"],"output":["video"]},"name":"Veo-3-Fast","open_weights":false,"reasoning":false,"release_date":"2025-10-13","temperature":false,"tool_call":true},"google/veo-3.1":{"attachment":true,"family":"veo","id":"google/veo-3.1","last_updated":"2025-10-15","limit":{"context":480,"output":0},"modalities":{"input":["text"],"output":["video"]},"name":"Veo-3.1","open_weights":false,"reasoning":false,"release_date":"2025-10-15","temperature":false,"tool_call":true},"google/veo-3.1-fast":{"attachment":true,"family":"veo","id":"google/veo-3.1-fast","last_updated":"2025-10-15","limit":{"context":480,"output":0},"modalities":{"input":["text","image"],"output":["video"]},"name":"Veo-3.1-Fast","open_weights":false,"reasoning":false,"release_date":"2025-10-15","temperature":false,"tool_call":true},"ideogramai/ideogram":{"attachment":true,"family":"ideogram","id":"ideogramai/ideogram","last_updated":"2024-04-03","limit":{"context":150,"output":0},"modalities":{"input":["text","image"],"output":["image"]},"name":"Ideogram","open_weights":false,"reasoning":false,"release_date":"2024-04-03","temperature":false,"tool_call":true},"ideogramai/ideogram-v2":{"attachment":true,"family":"ideogram","id":"ideogramai/ideogram-v2","last_updated":"2024-08-21","limit":{"context":150,"output":0},"modalities":{"input":["text","image"],"output":["image"]},"name":"Ideogram-v2","open_weights":false,"reasoning":false,"release_date":"2024-08-21","temperature":false,"tool_call":true},"ideogramai/ideogram-v2a":{"attachment":true,"family":"ideogram","id":"ideogramai/ideogram-v2a","last_updated":"2025-02-27","limit":{"context":150,"output":0},"modalities":{"input":["text"],"output":["image"]},"name":"Ideogram-v2a","open_weights":false,"reasoning":false,"release_date":"2025-02-27","temperature":false,"tool_call":true},"ideogramai/ideogram-v2a-turbo":{"attachment":true,"family":"ideogram","id":"ideogramai/ideogram-v2a-turbo","last_updated":"2025-02-27","limit":{"context":150,"output":0},"modalities":{"input":["text"],"output":["image"]},"name":"Ideogram-v2a-Turbo","open_weights":false,"reasoning":false,"release_date":"2025-02-27","temperature":false,"tool_call":true},"lumalabs/ray2":{"attachment":true,"family":"ray","id":"lumalabs/ray2","last_updated":"2025-02-20","limit":{"context":5000,"output":0},"modalities":{"input":["text","image"],"output":["video"]},"name":"Ray2","open_weights":false,"reasoning":false,"release_date":"2025-02-20","temperature":false,"tool_call":true},"novita/deepseek-v3.2":{"attachment":true,"cost":{"cache_read":0.13,"input":0.27,"output":0.4},"id":"novita/deepseek-v3.2","last_updated":"2025-12-01","limit":{"context":128000,"output":0},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek-V3.2","open_weights":true,"reasoning":true,"release_date":"2025-12-01","temperature":true,"tool_call":true},"novita/glm-4.6":{"attachment":true,"family":"glm","id":"novita/glm-4.6","last_updated":"2025-09-30","limit":{"context":0,"output":0},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4.6","open_weights":false,"reasoning":false,"release_date":"2025-09-30","temperature":false,"tool_call":true},"novita/glm-4.6v":{"attachment":true,"id":"novita/glm-4.6v","last_updated":"2025-12-09","limit":{"context":131000,"output":32768},"modalities":{"input":["text","image"],"output":["text"]},"name":"glm-4.6v","open_weights":false,"reasoning":true,"release_date":"2025-12-09","temperature":false,"tool_call":true},"novita/glm-4.7":{"attachment":true,"id":"novita/glm-4.7","last_updated":"2025-12-22","limit":{"context":205000,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"glm-4.7","open_weights":false,"reasoning":true,"release_date":"2025-12-22","status":"deprecated","temperature":true,"tool_call":true},"novita/glm-4.7-flash":{"attachment":true,"id":"novita/glm-4.7-flash","last_updated":"2026-01-19","limit":{"context":200000,"output":65500},"modalities":{"input":["text"],"output":["text"]},"name":"glm-4.7-flash","open_weights":false,"reasoning":true,"release_date":"2026-01-19","temperature":false,"tool_call":true},"novita/glm-4.7-n":{"attachment":true,"id":"novita/glm-4.7-n","last_updated":"2025-12-22","limit":{"context":205000,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"glm-4.7-n","open_weights":false,"reasoning":true,"release_date":"2025-12-22","temperature":false,"tool_call":true},"novita/glm-5":{"attachment":true,"cost":{"cache_read":0.2,"input":1,"output":3.2},"id":"novita/glm-5","last_updated":"2026-02-15","limit":{"context":205000,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-5","open_weights":false,"reasoning":true,"release_date":"2026-02-15","temperature":true,"tool_call":true},"novita/kimi-k2-thinking":{"attachment":true,"family":"kimi","id":"novita/kimi-k2-thinking","last_updated":"2025-11-07","limit":{"context":256000,"output":0},"modalities":{"input":["text"],"output":["text"]},"name":"kimi-k2-thinking","open_weights":false,"reasoning":true,"release_date":"2025-11-07","temperature":false,"tool_call":true},"novita/kimi-k2.5":{"attachment":true,"cost":{"cache_read":0.1,"input":0.6,"output":3},"id":"novita/kimi-k2.5","last_updated":"2026-01-27","limit":{"context":128000,"output":262144},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Kimi-K2.5","open_weights":false,"reasoning":true,"release_date":"2026-01-27","temperature":true,"tool_call":true},"novita/kimi-k2.6":{"attachment":true,"cost":{"cache_read":0.16,"input":0.96,"output":4.04},"id":"novita/kimi-k2.6","knowledge":"2025-04","last_updated":"2026-05-02","limit":{"context":262144,"input":262144,"output":262144},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Kimi-K2.6","open_weights":true,"reasoning":true,"release_date":"2026-04-20","temperature":true,"tool_call":true},"novita/minimax-m2.1":{"attachment":true,"id":"novita/minimax-m2.1","last_updated":"2025-12-26","limit":{"context":205000,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"minimax-m2.1","open_weights":false,"reasoning":true,"release_date":"2025-12-26","temperature":false,"tool_call":true},"openai/chatgpt-4o-latest":{"attachment":true,"cost":{"input":4.5,"output":14},"family":"gpt","id":"openai/chatgpt-4o-latest","last_updated":"2024-08-14","limit":{"context":128000,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"ChatGPT-4o-Latest","open_weights":false,"reasoning":false,"release_date":"2024-08-14","status":"deprecated","temperature":false,"tool_call":true},"openai/dall-e-3":{"attachment":true,"family":"dall-e","id":"openai/dall-e-3","last_updated":"2023-11-06","limit":{"context":800,"output":0},"modalities":{"input":["text"],"output":["image"]},"name":"DALL-E-3","open_weights":false,"reasoning":false,"release_date":"2023-11-06","temperature":false,"tool_call":true},"openai/gpt-3.5-turbo":{"attachment":true,"cost":{"input":0.45,"output":1.4},"family":"gpt","id":"openai/gpt-3.5-turbo","last_updated":"2023-09-13","limit":{"context":16384,"output":2048},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-3.5-Turbo","open_weights":false,"reasoning":false,"release_date":"2023-09-13","temperature":false,"tool_call":true},"openai/gpt-3.5-turbo-instruct":{"attachment":true,"cost":{"input":1.4,"output":1.8},"family":"gpt","id":"openai/gpt-3.5-turbo-instruct","last_updated":"2023-09-20","limit":{"context":3500,"output":1024},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-3.5-Turbo-Instruct","open_weights":false,"reasoning":false,"release_date":"2023-09-20","temperature":false,"tool_call":true},"openai/gpt-3.5-turbo-raw":{"attachment":true,"cost":{"input":0.45,"output":1.4},"family":"gpt","id":"openai/gpt-3.5-turbo-raw","last_updated":"2023-09-27","limit":{"context":4524,"output":2048},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-3.5-Turbo-Raw","open_weights":false,"reasoning":false,"release_date":"2023-09-27","temperature":false,"tool_call":true},"openai/gpt-4-classic":{"attachment":true,"cost":{"input":27,"output":54},"family":"gpt","id":"openai/gpt-4-classic","last_updated":"2024-03-25","limit":{"context":8192,"output":4096},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-4-Classic","open_weights":false,"reasoning":false,"release_date":"2024-03-25","status":"deprecated","temperature":false,"tool_call":true},"openai/gpt-4-classic-0314":{"attachment":true,"cost":{"input":27,"output":54},"family":"gpt","id":"openai/gpt-4-classic-0314","last_updated":"2024-08-26","limit":{"context":8192,"output":4096},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-4-Classic-0314","open_weights":false,"reasoning":false,"release_date":"2024-08-26","status":"deprecated","temperature":false,"tool_call":true},"openai/gpt-4-turbo":{"attachment":true,"cost":{"input":9,"output":27},"family":"gpt","id":"openai/gpt-4-turbo","last_updated":"2023-09-13","limit":{"context":128000,"output":4096},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-4-Turbo","open_weights":false,"reasoning":false,"release_date":"2023-09-13","temperature":false,"tool_call":true},"openai/gpt-4.1":{"attachment":true,"cost":{"cache_read":0.45,"input":1.8,"output":7.2},"family":"gpt","id":"openai/gpt-4.1","last_updated":"2025-04-14","limit":{"context":1047576,"output":32768},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-4.1","open_weights":false,"reasoning":false,"release_date":"2025-04-14","temperature":false,"tool_call":true},"openai/gpt-4.1-mini":{"attachment":true,"cost":{"cache_read":0.09,"input":0.36,"output":1.4},"family":"gpt-mini","id":"openai/gpt-4.1-mini","last_updated":"2025-04-15","limit":{"context":1047576,"output":32768},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-4.1-mini","open_weights":false,"reasoning":false,"release_date":"2025-04-15","temperature":false,"tool_call":true},"openai/gpt-4.1-nano":{"attachment":true,"cost":{"cache_read":0.022,"input":0.09,"output":0.36},"family":"gpt-nano","id":"openai/gpt-4.1-nano","last_updated":"2025-04-15","limit":{"context":1047576,"output":32768},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-4.1-nano","open_weights":false,"reasoning":false,"release_date":"2025-04-15","temperature":false,"tool_call":true},"openai/gpt-4o":{"attachment":true,"family":"gpt","id":"openai/gpt-4o","last_updated":"2024-05-13","limit":{"context":128000,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-4o","open_weights":false,"reasoning":false,"release_date":"2024-05-13","temperature":false,"tool_call":true},"openai/gpt-4o-aug":{"attachment":true,"cost":{"cache_read":1.1,"input":2.2,"output":9},"family":"gpt","id":"openai/gpt-4o-aug","last_updated":"2024-11-21","limit":{"context":128000,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-4o-Aug","open_weights":false,"reasoning":false,"release_date":"2024-11-21","temperature":false,"tool_call":true},"openai/gpt-4o-mini":{"attachment":true,"cost":{"cache_read":0.068,"input":0.14,"output":0.54},"family":"gpt-mini","id":"openai/gpt-4o-mini","last_updated":"2024-07-18","limit":{"context":124096,"output":4096},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-4o-mini","open_weights":false,"reasoning":false,"release_date":"2024-07-18","temperature":false,"tool_call":true},"openai/gpt-4o-mini-search":{"attachment":true,"cost":{"input":0.14,"output":0.54},"family":"gpt-mini","id":"openai/gpt-4o-mini-search","last_updated":"2025-03-11","limit":{"context":128000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"GPT-4o-mini-Search","open_weights":false,"reasoning":false,"release_date":"2025-03-11","temperature":false,"tool_call":true},"openai/gpt-4o-search":{"attachment":true,"cost":{"input":2.2,"output":9},"family":"gpt","id":"openai/gpt-4o-search","last_updated":"2025-03-11","limit":{"context":128000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"GPT-4o-Search","open_weights":false,"reasoning":false,"release_date":"2025-03-11","temperature":false,"tool_call":true},"openai/gpt-5":{"attachment":true,"cost":{"cache_read":0.11,"input":1.1,"output":9},"family":"gpt","id":"openai/gpt-5","last_updated":"2025-08-05","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5","open_weights":false,"reasoning":true,"release_date":"2025-08-05","temperature":false,"tool_call":true},"openai/gpt-5-chat":{"attachment":true,"cost":{"cache_read":0.11,"input":1.1,"output":9},"family":"gpt-codex","id":"openai/gpt-5-chat","last_updated":"2025-08-07","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5-Chat","open_weights":false,"reasoning":false,"release_date":"2025-08-07","temperature":false,"tool_call":true},"openai/gpt-5-codex":{"attachment":true,"cost":{"input":1.1,"output":9},"family":"gpt-codex","id":"openai/gpt-5-codex","last_updated":"2025-09-23","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5-Codex","open_weights":false,"reasoning":true,"release_date":"2025-09-23","temperature":false,"tool_call":true},"openai/gpt-5-mini":{"attachment":true,"cost":{"cache_read":0.022,"input":0.22,"output":1.8},"family":"gpt-mini","id":"openai/gpt-5-mini","last_updated":"2025-06-25","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5-mini","open_weights":false,"reasoning":true,"release_date":"2025-06-25","temperature":false,"tool_call":true},"openai/gpt-5-nano":{"attachment":true,"cost":{"cache_read":0.0045,"input":0.045,"output":0.36},"family":"gpt-nano","id":"openai/gpt-5-nano","last_updated":"2025-08-05","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5-nano","open_weights":false,"reasoning":true,"release_date":"2025-08-05","temperature":false,"tool_call":true},"openai/gpt-5-pro":{"attachment":true,"cost":{"input":14,"output":110},"family":"gpt-pro","id":"openai/gpt-5-pro","last_updated":"2025-10-06","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5-Pro","open_weights":false,"reasoning":true,"release_date":"2025-10-06","temperature":false,"tool_call":true},"openai/gpt-5.1":{"attachment":true,"cost":{"cache_read":0.11,"input":1.1,"output":9},"family":"gpt","id":"openai/gpt-5.1","last_updated":"2025-11-12","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.1","open_weights":false,"reasoning":true,"release_date":"2025-11-12","temperature":false,"tool_call":true},"openai/gpt-5.1-codex":{"attachment":true,"cost":{"cache_read":0.11,"input":1.1,"output":9},"family":"gpt-codex","id":"openai/gpt-5.1-codex","last_updated":"2025-11-12","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.1-Codex","open_weights":false,"reasoning":true,"release_date":"2025-11-12","temperature":false,"tool_call":true},"openai/gpt-5.1-codex-max":{"attachment":true,"cost":{"cache_read":0.11,"input":1.1,"output":9},"id":"openai/gpt-5.1-codex-max","last_updated":"2025-12-08","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.1-Codex-Max","open_weights":false,"reasoning":true,"release_date":"2025-12-08","temperature":false,"tool_call":true},"openai/gpt-5.1-codex-mini":{"attachment":true,"cost":{"cache_read":0.022,"input":0.22,"output":1.8},"family":"gpt-codex","id":"openai/gpt-5.1-codex-mini","last_updated":"2025-11-12","limit":{"context":400000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"GPT-5.1-Codex-Mini","open_weights":false,"reasoning":true,"release_date":"2025-11-12","temperature":false,"tool_call":true},"openai/gpt-5.1-instant":{"attachment":true,"cost":{"cache_read":0.11,"input":1.1,"output":9},"family":"gpt","id":"openai/gpt-5.1-instant","last_updated":"2025-11-12","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.1-Instant","open_weights":false,"reasoning":true,"release_date":"2025-11-12","temperature":false,"tool_call":true},"openai/gpt-5.2":{"attachment":true,"cost":{"cache_read":0.16,"input":1.6,"output":13},"id":"openai/gpt-5.2","last_updated":"2025-12-08","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.2","open_weights":false,"reasoning":true,"release_date":"2025-12-08","temperature":false,"tool_call":true},"openai/gpt-5.2-codex":{"attachment":true,"cost":{"cache_read":0.16,"input":1.6,"output":13},"id":"openai/gpt-5.2-codex","last_updated":"2026-01-14","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.2-Codex","open_weights":false,"reasoning":true,"release_date":"2026-01-14","temperature":false,"tool_call":true},"openai/gpt-5.2-instant":{"attachment":true,"cost":{"cache_read":0.16,"input":1.6,"output":13},"id":"openai/gpt-5.2-instant","last_updated":"2025-12-11","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.2-Instant","open_weights":false,"reasoning":false,"release_date":"2025-12-11","temperature":false,"tool_call":true},"openai/gpt-5.2-pro":{"attachment":true,"cost":{"input":19,"output":150},"id":"openai/gpt-5.2-pro","last_updated":"2025-12-11","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.2-Pro","open_weights":false,"reasoning":true,"release_date":"2025-12-11","temperature":false,"tool_call":true},"openai/gpt-5.3-codex":{"attachment":true,"cost":{"cache_read":0.16,"input":1.6,"output":13},"id":"openai/gpt-5.3-codex","last_updated":"2026-02-10","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.3-Codex","open_weights":false,"reasoning":true,"release_date":"2026-02-10","temperature":false,"tool_call":true},"openai/gpt-5.3-codex-spark":{"attachment":true,"cost":{"input":0,"output":0},"id":"openai/gpt-5.3-codex-spark","last_updated":"2026-03-04","limit":{"context":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"GPT-5.3-Codex-Spark","open_weights":false,"reasoning":true,"release_date":"2026-03-04","temperature":false,"tool_call":true},"openai/gpt-5.3-instant":{"attachment":true,"cost":{"cache_read":0.16,"input":1.6,"output":13},"id":"openai/gpt-5.3-instant","last_updated":"2026-03-03","limit":{"context":128000,"input":111616,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.3-Instant","open_weights":false,"reasoning":false,"release_date":"2026-03-03","temperature":false,"tool_call":true},"openai/gpt-5.4":{"attachment":true,"cost":{"cache_read":0.22,"input":2.2,"output":14},"id":"openai/gpt-5.4","last_updated":"2026-02-26","limit":{"context":1050000,"input":922000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["image"]},"name":"GPT-5.4","open_weights":false,"reasoning":true,"release_date":"2026-02-26","temperature":false,"tool_call":true},"openai/gpt-5.4-mini":{"attachment":true,"cost":{"cache_read":0.068,"input":0.68,"output":4},"id":"openai/gpt-5.4-mini","last_updated":"2026-03-12","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.4-Mini","open_weights":false,"reasoning":true,"release_date":"2026-03-12","temperature":false,"tool_call":true},"openai/gpt-5.4-nano":{"attachment":true,"cost":{"cache_read":0.018,"input":0.18,"output":1.1},"id":"openai/gpt-5.4-nano","last_updated":"2026-03-11","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.4-Nano","open_weights":false,"reasoning":true,"release_date":"2026-03-11","temperature":false,"tool_call":true},"openai/gpt-5.4-pro":{"attachment":true,"cost":{"input":27,"output":160},"id":"openai/gpt-5.4-pro","last_updated":"2026-03-05","limit":{"context":1050000,"input":922000,"output":128000},"modalities":{"input":["text","image"],"output":["image"]},"name":"GPT-5.4-Pro","open_weights":false,"reasoning":true,"release_date":"2026-03-05","temperature":false,"tool_call":true},"openai/gpt-5.5":{"attachment":true,"cost":{"cache_read":0.4545,"input":4.5455,"output":27.2727},"family":"gpt","id":"openai/gpt-5.5","knowledge":"2025-12-01","last_updated":"2026-04-08","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text","image"]},"name":"GPT-5.5","open_weights":false,"reasoning":true,"release_date":"2026-04-08","structured_output":true,"temperature":false,"tool_call":true},"openai/gpt-5.5-pro":{"attachment":true,"cost":{"input":27.2727,"output":163.6364},"family":"gpt-pro","id":"openai/gpt-5.5-pro","knowledge":"2025-12-01","last_updated":"2026-04-08","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text","image"]},"name":"GPT-5.5-Pro","open_weights":false,"reasoning":true,"release_date":"2026-04-08","structured_output":false,"temperature":false,"tool_call":true},"openai/gpt-image-1":{"attachment":true,"family":"gpt","id":"openai/gpt-image-1","last_updated":"2025-03-31","limit":{"context":128000,"output":0},"modalities":{"input":["text","image"],"output":["image"]},"name":"GPT-Image-1","open_weights":false,"reasoning":false,"release_date":"2025-03-31","temperature":false,"tool_call":true},"openai/gpt-image-1-mini":{"attachment":true,"family":"gpt","id":"openai/gpt-image-1-mini","last_updated":"2025-08-26","limit":{"context":0,"output":0},"modalities":{"input":["text","image"],"output":["image"]},"name":"GPT-Image-1-Mini","open_weights":false,"reasoning":false,"release_date":"2025-08-26","temperature":false,"tool_call":true},"openai/gpt-image-1.5":{"attachment":true,"id":"openai/gpt-image-1.5","last_updated":"2025-12-16","limit":{"context":128000,"output":0},"modalities":{"input":["text","image"],"output":["image"]},"name":"gpt-image-1.5","open_weights":false,"reasoning":false,"release_date":"2025-12-16","temperature":false,"tool_call":false},"openai/gpt-image-2":{"attachment":true,"cost":{"cache_read":1.2626,"input":5.0505,"output":32.3232},"id":"openai/gpt-image-2","last_updated":"2026-04-21","limit":{"context":0,"output":0},"modalities":{"input":["text","image"],"output":["image"]},"name":"GPT-Image-2","open_weights":false,"reasoning":false,"release_date":"2026-04-21","temperature":false,"tool_call":false},"openai/o1":{"attachment":true,"cost":{"input":14,"output":54},"family":"o","id":"openai/o1","last_updated":"2024-12-18","limit":{"context":200000,"output":100000},"modalities":{"input":["text","image"],"output":["text"]},"name":"o1","open_weights":false,"reasoning":true,"release_date":"2024-12-18","temperature":false,"tool_call":true},"openai/o1-pro":{"attachment":true,"cost":{"input":140,"output":540},"family":"o-pro","id":"openai/o1-pro","last_updated":"2025-03-19","limit":{"context":200000,"output":100000},"modalities":{"input":["text","image"],"output":["text"]},"name":"o1-pro","open_weights":false,"reasoning":true,"release_date":"2025-03-19","temperature":false,"tool_call":true},"openai/o3":{"attachment":true,"cost":{"cache_read":0.45,"input":1.8,"output":7.2},"family":"o","id":"openai/o3","last_updated":"2025-04-16","limit":{"context":200000,"output":100000},"modalities":{"input":["text","image"],"output":["text"]},"name":"o3","open_weights":false,"reasoning":true,"release_date":"2025-04-16","temperature":false,"tool_call":true},"openai/o3-deep-research":{"attachment":true,"cost":{"cache_read":2.2,"input":9,"output":36},"family":"o","id":"openai/o3-deep-research","last_updated":"2025-06-27","limit":{"context":200000,"output":100000},"modalities":{"input":["text"],"output":["text"]},"name":"o3-deep-research","open_weights":false,"reasoning":true,"release_date":"2025-06-27","temperature":false,"tool_call":true},"openai/o3-mini":{"attachment":true,"cost":{"input":0.99,"output":4},"family":"o-mini","id":"openai/o3-mini","last_updated":"2025-01-31","limit":{"context":200000,"output":100000},"modalities":{"input":["text","image"],"output":["text"]},"name":"o3-mini","open_weights":false,"reasoning":true,"release_date":"2025-01-31","temperature":false,"tool_call":true},"openai/o3-mini-high":{"attachment":true,"cost":{"input":0.99,"output":4},"family":"o-mini","id":"openai/o3-mini-high","last_updated":"2025-01-31","limit":{"context":200000,"output":100000},"modalities":{"input":["text","image"],"output":["text"]},"name":"o3-mini-high","open_weights":false,"reasoning":true,"release_date":"2025-01-31","temperature":false,"tool_call":true},"openai/o3-pro":{"attachment":true,"cost":{"input":18,"output":72},"family":"o-pro","id":"openai/o3-pro","last_updated":"2025-06-10","limit":{"context":200000,"output":100000},"modalities":{"input":["text","image"],"output":["text"]},"name":"o3-pro","open_weights":false,"reasoning":true,"release_date":"2025-06-10","temperature":false,"tool_call":true},"openai/o4-mini":{"attachment":true,"cost":{"cache_read":0.25,"input":0.99,"output":4},"family":"o-mini","id":"openai/o4-mini","last_updated":"2025-04-16","limit":{"context":200000,"output":100000},"modalities":{"input":["text","image"],"output":["text"]},"name":"o4-mini","open_weights":false,"reasoning":true,"release_date":"2025-04-16","temperature":false,"tool_call":true},"openai/o4-mini-deep-research":{"attachment":true,"cost":{"cache_read":0.45,"input":1.8,"output":7.2},"family":"o-mini","id":"openai/o4-mini-deep-research","last_updated":"2025-06-27","limit":{"context":200000,"output":100000},"modalities":{"input":["text"],"output":["text"]},"name":"o4-mini-deep-research","open_weights":false,"reasoning":true,"release_date":"2025-06-27","temperature":false,"tool_call":true},"openai/sora-2":{"attachment":true,"family":"sora","id":"openai/sora-2","last_updated":"2025-10-06","limit":{"context":0,"output":0},"modalities":{"input":["text","image"],"output":["video"]},"name":"Sora-2","open_weights":false,"reasoning":false,"release_date":"2025-10-06","temperature":false,"tool_call":true},"openai/sora-2-pro":{"attachment":true,"family":"sora","id":"openai/sora-2-pro","last_updated":"2025-10-06","limit":{"context":0,"output":0},"modalities":{"input":["text","image"],"output":["video"]},"name":"Sora-2-Pro","open_weights":false,"reasoning":false,"release_date":"2025-10-06","temperature":false,"tool_call":true},"poetools/claude-code":{"attachment":true,"id":"poetools/claude-code","last_updated":"2025-11-27","limit":{"context":0,"output":0},"modalities":{"input":["text"],"output":["text"]},"name":"claude-code","open_weights":false,"reasoning":true,"release_date":"2025-11-27","temperature":false,"tool_call":true},"runwayml/runway":{"attachment":true,"family":"runway","id":"runwayml/runway","last_updated":"2024-10-11","limit":{"context":256,"output":0},"modalities":{"input":["text","image"],"output":["video"]},"name":"Runway","open_weights":false,"reasoning":false,"release_date":"2024-10-11","temperature":false,"tool_call":true},"runwayml/runway-gen-4-turbo":{"attachment":true,"family":"runway","id":"runwayml/runway-gen-4-turbo","last_updated":"2025-05-09","limit":{"context":256,"output":0},"modalities":{"input":["text","image"],"output":["video"]},"name":"Runway-Gen-4-Turbo","open_weights":false,"reasoning":false,"release_date":"2025-05-09","temperature":false,"tool_call":true},"stabilityai/stablediffusionxl":{"attachment":true,"family":"stable-diffusion","id":"stabilityai/stablediffusionxl","last_updated":"2023-07-09","limit":{"context":200,"output":0},"modalities":{"input":["text","image"],"output":["image"]},"name":"StableDiffusionXL","open_weights":false,"reasoning":false,"release_date":"2023-07-09","temperature":false,"tool_call":true},"topazlabs-co/topazlabs":{"attachment":true,"family":"topazlabs","id":"topazlabs-co/topazlabs","last_updated":"2024-12-03","limit":{"context":204,"output":0},"modalities":{"input":["text"],"output":["image"]},"name":"TopazLabs","open_weights":false,"reasoning":false,"release_date":"2024-12-03","temperature":false,"tool_call":true},"trytako/tako":{"attachment":true,"family":"tako","id":"trytako/tako","last_updated":"2024-08-15","limit":{"context":2048,"output":0},"modalities":{"input":["text"],"output":["text"]},"name":"Tako","open_weights":false,"reasoning":false,"release_date":"2024-08-15","temperature":false,"tool_call":true},"xai/grok-3":{"attachment":true,"cost":{"cache_read":0.75,"input":3,"output":15},"family":"grok","id":"xai/grok-3","last_updated":"2025-04-11","limit":{"context":131072,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Grok 3","open_weights":false,"reasoning":false,"release_date":"2025-04-11","temperature":false,"tool_call":true},"xai/grok-3-mini":{"attachment":true,"cost":{"cache_read":0.075,"input":0.3,"output":0.5},"family":"grok","id":"xai/grok-3-mini","last_updated":"2025-04-11","limit":{"context":131072,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Grok 3 Mini","open_weights":false,"reasoning":true,"release_date":"2025-04-11","temperature":false,"tool_call":true},"xai/grok-4":{"attachment":true,"cost":{"cache_read":0.75,"input":3,"output":15},"family":"grok","id":"xai/grok-4","last_updated":"2025-07-10","limit":{"context":256000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Grok-4","open_weights":false,"reasoning":true,"release_date":"2025-07-10","temperature":false,"tool_call":true},"xai/grok-4-fast-non-reasoning":{"attachment":true,"cost":{"cache_read":0.05,"input":0.2,"output":0.5},"family":"grok","id":"xai/grok-4-fast-non-reasoning","last_updated":"2025-09-16","limit":{"context":2000000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Grok-4-Fast-Non-Reasoning","open_weights":false,"reasoning":false,"release_date":"2025-09-16","temperature":false,"tool_call":true},"xai/grok-4-fast-reasoning":{"attachment":true,"cost":{"cache_read":0.05,"input":0.2,"output":0.5},"family":"grok","id":"xai/grok-4-fast-reasoning","last_updated":"2025-09-16","limit":{"context":2000000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Grok-4-Fast-Reasoning","open_weights":false,"reasoning":true,"release_date":"2025-09-16","temperature":false,"tool_call":true},"xai/grok-4.1-fast-non-reasoning":{"attachment":true,"family":"grok","id":"xai/grok-4.1-fast-non-reasoning","last_updated":"2025-11-19","limit":{"context":2000000,"output":30000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Grok-4.1-Fast-Non-Reasoning","open_weights":false,"reasoning":false,"release_date":"2025-11-19","temperature":false,"tool_call":true},"xai/grok-4.1-fast-reasoning":{"attachment":true,"family":"grok","id":"xai/grok-4.1-fast-reasoning","last_updated":"2025-11-19","limit":{"context":2000000,"output":30000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Grok-4.1-Fast-Reasoning","open_weights":false,"reasoning":true,"release_date":"2025-11-19","temperature":false,"tool_call":true},"xai/grok-4.20-multi-agent":{"attachment":true,"cost":{"cache_read":0.2,"input":2,"output":6},"id":"xai/grok-4.20-multi-agent","last_updated":"2026-03-13","limit":{"context":128000,"output":0},"modalities":{"input":["text","image"],"output":["text"]},"name":"Grok-4.20-Multi-Agent","open_weights":false,"reasoning":false,"release_date":"2026-03-13","temperature":false,"tool_call":true},"xai/grok-code-fast-1":{"attachment":true,"cost":{"cache_read":0.02,"input":0.2,"output":1.5},"family":"grok","id":"xai/grok-code-fast-1","last_updated":"2025-08-22","limit":{"context":256000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"Grok Code Fast 1","open_weights":false,"reasoning":true,"release_date":"2025-08-22","temperature":false,"tool_call":true}},"name":"Poe","npm":"@ai-sdk/openai-compatible"},"poolside":{"api":"https://inference.poolside.ai/v1","doc":"https://platform.poolside.ai","env":["POOLSIDE_API_KEY"],"id":"poolside","models":{"poolside/laguna-m.1":{"attachment":false,"cost":{"cache_read":0,"cache_write":0,"input":0,"output":0},"id":"poolside/laguna-m.1","interleaved":{"field":"reasoning_content"},"last_updated":"2026-04-28","limit":{"context":131040,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Laguna M.1","open_weights":false,"reasoning":true,"release_date":"2026-04-28","temperature":true,"tool_call":true},"poolside/laguna-xs.2":{"attachment":false,"cost":{"cache_read":0,"cache_write":0,"input":0,"output":0},"id":"poolside/laguna-xs.2","interleaved":{"field":"reasoning_content"},"last_updated":"2026-04-28","limit":{"context":131040,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Laguna XS.2","open_weights":true,"reasoning":true,"release_date":"2026-04-28","temperature":true,"tool_call":true}},"name":"Poolside","npm":"@ai-sdk/openai-compatible"},"privatemode-ai":{"api":"http://localhost:8080/v1","doc":"https://docs.privatemode.ai/api/overview","env":["PRIVATEMODE_API_KEY","PRIVATEMODE_ENDPOINT"],"id":"privatemode-ai","models":{"gemma-3-27b":{"attachment":true,"cost":{"input":0,"output":0},"family":"gemma","id":"gemma-3-27b","knowledge":"2024-08","last_updated":"2025-03-12","limit":{"context":128000,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Gemma 3 27B","open_weights":true,"reasoning":false,"release_date":"2025-03-12","structured_output":true,"temperature":true,"tool_call":true},"gpt-oss-120b":{"attachment":false,"cost":{"input":0,"output":0},"family":"gpt-oss","id":"gpt-oss-120b","knowledge":"2025-08","last_updated":"2025-08-14","limit":{"context":128000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"gpt-oss-120b","open_weights":true,"reasoning":true,"release_date":"2025-08-04","structured_output":true,"temperature":true,"tool_call":true},"qwen3-coder-30b-a3b":{"attachment":false,"cost":{"input":0,"output":0},"family":"qwen","id":"qwen3-coder-30b-a3b","knowledge":"2025-04","last_updated":"2025-04","limit":{"context":128000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3-Coder 30B-A3B","open_weights":true,"reasoning":false,"release_date":"2025-04","structured_output":true,"temperature":true,"tool_call":true},"qwen3-embedding-4b":{"attachment":false,"cost":{"input":0,"output":0},"family":"qwen","id":"qwen3-embedding-4b","knowledge":"2025-06","last_updated":"2025-06-06","limit":{"context":32000,"output":2560},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3-Embedding 4B","open_weights":true,"reasoning":false,"release_date":"2025-06-06","structured_output":false,"temperature":true,"tool_call":false},"whisper-large-v3":{"attachment":true,"cost":{"input":0,"output":0},"family":"whisper","id":"whisper-large-v3","knowledge":"2023-09","last_updated":"2023-09-01","limit":{"context":0,"output":4096},"modalities":{"input":["audio"],"output":["text"]},"name":"Whisper large-v3","open_weights":true,"reasoning":false,"release_date":"2023-09-01","structured_output":false,"temperature":true,"tool_call":false}},"name":"Privatemode AI","npm":"@ai-sdk/openai-compatible"},"qihang-ai":{"api":"https://api.qhaigc.net/v1","doc":"https://www.qhaigc.net/docs","env":["QIHANG_API_KEY"],"id":"qihang-ai","models":{"claude-haiku-4-5-20251001":{"attachment":true,"cost":{"input":0.14,"output":0.71},"family":"claude-haiku","id":"claude-haiku-4-5-20251001","knowledge":"2025-07-31","last_updated":"2025-10-01","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Haiku 4.5","open_weights":false,"reasoning":true,"release_date":"2025-10-01","temperature":true,"tool_call":true},"claude-opus-4-5-20251101":{"attachment":true,"cost":{"input":0.71,"output":3.57},"family":"claude-opus","id":"claude-opus-4-5-20251101","knowledge":"2025-03","last_updated":"2025-11-01","limit":{"context":200000,"output":32000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Claude Opus 4.5","open_weights":false,"reasoning":true,"release_date":"2025-11-01","temperature":true,"tool_call":true},"claude-sonnet-4-5-20250929":{"attachment":true,"cost":{"input":0.43,"output":2.14},"family":"claude-sonnet","id":"claude-sonnet-4-5-20250929","knowledge":"2025-07-31","last_updated":"2025-09-29","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 4.5","open_weights":false,"reasoning":true,"release_date":"2025-09-29","temperature":true,"tool_call":true},"gemini-2.5-flash":{"attachment":true,"cost":{"context_over_200k":{"input":0.09,"output":0.71},"input":0.09,"output":0.71,"tiers":[{"input":0.09,"output":0.71,"tier":{"size":200000,"type":"context"}}]},"family":"gemini-flash","id":"gemini-2.5-flash","knowledge":"2025-01","last_updated":"2025-12-17","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"name":"Gemini 2.5 Flash","open_weights":false,"reasoning":true,"release_date":"2025-12-17","structured_output":true,"temperature":true,"tool_call":true},"gemini-3-flash-preview":{"attachment":true,"cost":{"context_over_200k":{"input":0.07,"output":0.43},"input":0.07,"output":0.43,"tiers":[{"input":0.07,"output":0.43,"tier":{"size":200000,"type":"context"}}]},"family":"gemini-flash","id":"gemini-3-flash-preview","knowledge":"2025-01","last_updated":"2025-12-17","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"name":"Gemini 3 Flash Preview","open_weights":false,"reasoning":true,"release_date":"2025-12-17","structured_output":true,"temperature":true,"tool_call":true},"gemini-3-pro-preview":{"attachment":true,"cost":{"input":0.57,"output":3.43},"family":"gemini-pro","id":"gemini-3-pro-preview","knowledge":"2025-11","last_updated":"2025-11-19","limit":{"context":1000000,"output":65000},"modalities":{"input":["text","image","audio","video"],"output":["text"]},"name":"Gemini 3 Pro Preview","open_weights":false,"reasoning":true,"release_date":"2025-11-19","temperature":true,"tool_call":true},"gpt-5-mini":{"attachment":true,"cost":{"input":0.04,"output":0.29},"family":"gpt-mini","id":"gpt-5-mini","knowledge":"2024-09-30","last_updated":"2025-09-15","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5-Mini","open_weights":false,"reasoning":true,"release_date":"2025-09-15","temperature":true,"tool_call":true},"gpt-5.2":{"attachment":true,"cost":{"input":0.25,"output":2},"family":"gpt","id":"gpt-5.2","knowledge":"2025-08-31","last_updated":"2025-12-11","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.2","open_weights":false,"reasoning":true,"release_date":"2025-12-11","structured_output":true,"temperature":true,"tool_call":true},"gpt-5.2-codex":{"attachment":true,"cost":{"input":0.14,"output":1.14},"family":"gpt-codex","id":"gpt-5.2-codex","knowledge":"2025-08-31","last_updated":"2025-12-11","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.2 Codex","open_weights":false,"reasoning":true,"release_date":"2025-12-11","structured_output":true,"temperature":false,"tool_call":true}},"name":"QiHang","npm":"@ai-sdk/openai-compatible"},"qiniu-ai":{"api":"https://api.qnaigc.com/v1","doc":"https://developer.qiniu.com/aitokenapi","env":["QINIU_API_KEY"],"id":"qiniu-ai","models":{"MiniMax-M1":{"attachment":false,"id":"MiniMax-M1","last_updated":"2025-08-05","limit":{"context":1000000,"output":80000},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax M1","open_weights":false,"reasoning":true,"release_date":"2025-08-05","structured_output":false,"temperature":true,"tool_call":true},"claude-3.5-haiku":{"attachment":true,"id":"claude-3.5-haiku","last_updated":"2025-08-26","limit":{"context":200000,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Claude 3.5 Haiku","open_weights":false,"reasoning":false,"release_date":"2025-08-26","structured_output":false,"temperature":true,"tool_call":true},"claude-3.5-sonnet":{"attachment":true,"id":"claude-3.5-sonnet","last_updated":"2025-09-09","limit":{"context":200000,"output":8200},"modalities":{"input":["text","image"],"output":["text"]},"name":"Claude 3.5 Sonnet","open_weights":false,"reasoning":true,"release_date":"2025-09-09","structured_output":false,"temperature":true,"tool_call":true},"claude-3.7-sonnet":{"attachment":true,"id":"claude-3.7-sonnet","last_updated":"2025-08-05","limit":{"context":200000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Claude 3.7 Sonnet","open_weights":false,"reasoning":true,"release_date":"2025-08-05","structured_output":false,"temperature":true,"tool_call":true},"claude-4.0-opus":{"attachment":true,"id":"claude-4.0-opus","last_updated":"2025-08-05","limit":{"context":200000,"output":32000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Claude 4.0 Opus","open_weights":false,"reasoning":true,"release_date":"2025-08-05","structured_output":false,"temperature":true,"tool_call":true},"claude-4.0-sonnet":{"attachment":true,"id":"claude-4.0-sonnet","last_updated":"2025-08-05","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Claude 4.0 Sonnet","open_weights":false,"reasoning":true,"release_date":"2025-08-05","structured_output":false,"temperature":true,"tool_call":true},"claude-4.1-opus":{"attachment":true,"id":"claude-4.1-opus","last_updated":"2025-08-06","limit":{"context":200000,"output":32000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Claude 4.1 Opus","open_weights":false,"reasoning":true,"release_date":"2025-08-06","structured_output":false,"temperature":true,"tool_call":true},"claude-4.5-haiku":{"attachment":true,"id":"claude-4.5-haiku","last_updated":"2025-10-16","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Claude 4.5 Haiku","open_weights":false,"reasoning":true,"release_date":"2025-10-16","structured_output":false,"temperature":true,"tool_call":true},"claude-4.5-opus":{"attachment":true,"id":"claude-4.5-opus","last_updated":"2025-11-25","limit":{"context":200000,"output":200000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Claude 4.5 Opus","open_weights":false,"reasoning":true,"release_date":"2025-11-25","structured_output":false,"temperature":true,"tool_call":true},"claude-4.5-sonnet":{"attachment":true,"id":"claude-4.5-sonnet","last_updated":"2025-09-30","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Claude 4.5 Sonnet","open_weights":false,"reasoning":true,"release_date":"2025-09-30","structured_output":false,"temperature":true,"tool_call":true},"deepseek-r1":{"attachment":false,"id":"deepseek-r1","last_updated":"2025-08-05","limit":{"context":128000,"output":32000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek-R1","open_weights":false,"reasoning":true,"release_date":"2025-08-05","structured_output":false,"temperature":true,"tool_call":true},"deepseek-r1-0528":{"attachment":false,"id":"deepseek-r1-0528","last_updated":"2025-08-05","limit":{"context":128000,"output":32000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek-R1-0528","open_weights":false,"reasoning":true,"release_date":"2025-08-05","structured_output":false,"temperature":true,"tool_call":true},"deepseek-v3":{"attachment":false,"id":"deepseek-v3","last_updated":"2025-08-13","limit":{"context":128000,"output":16000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek-V3","open_weights":false,"reasoning":false,"release_date":"2025-08-13","structured_output":false,"temperature":true,"tool_call":false},"deepseek-v3-0324":{"attachment":false,"id":"deepseek-v3-0324","last_updated":"2025-08-05","limit":{"context":128000,"output":16000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek-V3-0324","open_weights":false,"reasoning":false,"release_date":"2025-08-05","structured_output":false,"temperature":true,"tool_call":true},"deepseek-v3.1":{"attachment":false,"id":"deepseek-v3.1","last_updated":"2025-08-19","limit":{"context":128000,"output":32000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek-V3.1","open_weights":false,"reasoning":true,"release_date":"2025-08-19","structured_output":false,"temperature":true,"tool_call":true},"deepseek/deepseek-math-v2":{"attachment":false,"id":"deepseek/deepseek-math-v2","last_updated":"2025-12-04","limit":{"context":160000,"output":160000},"modalities":{"input":["text"],"output":["text"]},"name":"Deepseek/Deepseek-Math-V2","open_weights":false,"reasoning":true,"release_date":"2025-12-04","structured_output":false,"temperature":true,"tool_call":false},"deepseek/deepseek-v3.1-terminus":{"attachment":false,"id":"deepseek/deepseek-v3.1-terminus","last_updated":"2025-09-22","limit":{"context":128000,"output":32000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek/DeepSeek-V3.1-Terminus","open_weights":false,"reasoning":false,"release_date":"2025-09-22","structured_output":false,"temperature":true,"tool_call":true},"deepseek/deepseek-v3.1-terminus-thinking":{"attachment":false,"id":"deepseek/deepseek-v3.1-terminus-thinking","last_updated":"2025-09-22","limit":{"context":128000,"output":32000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek/DeepSeek-V3.1-Terminus-Thinking","open_weights":false,"reasoning":true,"release_date":"2025-09-22","structured_output":false,"temperature":true,"tool_call":false},"deepseek/deepseek-v3.2-251201":{"attachment":false,"id":"deepseek/deepseek-v3.2-251201","last_updated":"2025-12-01","limit":{"context":128000,"output":32000},"modalities":{"input":["text"],"output":["text"]},"name":"Deepseek/DeepSeek-V3.2","open_weights":false,"reasoning":true,"release_date":"2025-12-01","structured_output":false,"temperature":true,"tool_call":true},"deepseek/deepseek-v3.2-exp":{"attachment":false,"id":"deepseek/deepseek-v3.2-exp","last_updated":"2025-09-29","limit":{"context":128000,"output":32000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek/DeepSeek-V3.2-Exp","open_weights":false,"reasoning":false,"release_date":"2025-09-29","structured_output":false,"temperature":true,"tool_call":true},"deepseek/deepseek-v3.2-exp-thinking":{"attachment":false,"id":"deepseek/deepseek-v3.2-exp-thinking","last_updated":"2025-09-29","limit":{"context":128000,"output":32000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek/DeepSeek-V3.2-Exp-Thinking","open_weights":false,"reasoning":true,"release_date":"2025-09-29","structured_output":false,"temperature":true,"tool_call":false},"doubao-1.5-pro-32k":{"attachment":false,"id":"doubao-1.5-pro-32k","last_updated":"2025-08-05","limit":{"context":128000,"output":12000},"modalities":{"input":["text"],"output":["text"]},"name":"Doubao 1.5 Pro 32k","open_weights":false,"reasoning":false,"release_date":"2025-08-05","structured_output":false,"temperature":true,"tool_call":true},"doubao-1.5-thinking-pro":{"attachment":false,"id":"doubao-1.5-thinking-pro","last_updated":"2025-08-05","limit":{"context":128000,"output":16000},"modalities":{"input":["text"],"output":["text"]},"name":"Doubao 1.5 Thinking Pro","open_weights":false,"reasoning":true,"release_date":"2025-08-05","structured_output":false,"temperature":true,"tool_call":true},"doubao-1.5-vision-pro":{"attachment":true,"id":"doubao-1.5-vision-pro","last_updated":"2025-08-05","limit":{"context":128000,"output":16000},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Doubao 1.5 Vision Pro","open_weights":false,"reasoning":false,"release_date":"2025-08-05","structured_output":false,"temperature":true,"tool_call":false},"doubao-seed-1.6":{"attachment":true,"id":"doubao-seed-1.6","last_updated":"2025-08-15","limit":{"context":256000,"output":32000},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Doubao-Seed 1.6","open_weights":false,"reasoning":true,"release_date":"2025-08-15","structured_output":false,"temperature":true,"tool_call":true},"doubao-seed-1.6-flash":{"attachment":true,"id":"doubao-seed-1.6-flash","last_updated":"2025-08-15","limit":{"context":256000,"output":32000},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Doubao-Seed 1.6 Flash","open_weights":false,"reasoning":true,"release_date":"2025-08-15","structured_output":false,"temperature":true,"tool_call":true},"doubao-seed-1.6-thinking":{"attachment":true,"id":"doubao-seed-1.6-thinking","last_updated":"2025-08-15","limit":{"context":256000,"output":32000},"modalities":{"input":["image","text","video"],"output":["text"]},"name":"Doubao-Seed 1.6 Thinking","open_weights":false,"reasoning":true,"release_date":"2025-08-15","structured_output":false,"temperature":true,"tool_call":true},"doubao-seed-2.0-code":{"attachment":true,"id":"doubao-seed-2.0-code","last_updated":"2026-02-14","limit":{"context":256000,"output":128000},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Doubao Seed 2.0 Code","open_weights":false,"reasoning":true,"release_date":"2026-02-14","structured_output":false,"temperature":true,"tool_call":true},"doubao-seed-2.0-lite":{"attachment":true,"id":"doubao-seed-2.0-lite","last_updated":"2026-02-14","limit":{"context":256000,"output":32000},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Doubao Seed 2.0 Lite","open_weights":false,"reasoning":true,"release_date":"2026-02-14","structured_output":false,"temperature":true,"tool_call":true},"doubao-seed-2.0-mini":{"attachment":true,"id":"doubao-seed-2.0-mini","last_updated":"2026-02-14","limit":{"context":256000,"output":32000},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Doubao Seed 2.0 Mini","open_weights":false,"reasoning":true,"release_date":"2026-02-14","structured_output":false,"temperature":true,"tool_call":true},"doubao-seed-2.0-pro":{"attachment":true,"id":"doubao-seed-2.0-pro","last_updated":"2026-02-14","limit":{"context":256000,"output":128000},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Doubao Seed 2.0 Pro","open_weights":false,"reasoning":true,"release_date":"2026-02-14","structured_output":false,"temperature":true,"tool_call":true},"gemini-2.0-flash":{"attachment":true,"id":"gemini-2.0-flash","last_updated":"2025-08-05","limit":{"context":1048576,"output":8192},"modalities":{"input":["text","image","audio","video"],"output":["text"]},"name":"Gemini 2.0 Flash","open_weights":false,"reasoning":false,"release_date":"2025-08-05","structured_output":false,"temperature":true,"tool_call":true},"gemini-2.0-flash-lite":{"attachment":true,"id":"gemini-2.0-flash-lite","last_updated":"2025-08-05","limit":{"context":1048576,"output":8192},"modalities":{"input":["text","image","audio","video"],"output":["text"]},"name":"Gemini 2.0 Flash Lite","open_weights":false,"reasoning":true,"release_date":"2025-08-05","structured_output":false,"temperature":true,"tool_call":true},"gemini-2.5-flash":{"attachment":true,"id":"gemini-2.5-flash","last_updated":"2025-08-05","limit":{"context":1048576,"output":64000},"modalities":{"input":["text","image","audio","video"],"output":["text"]},"name":"Gemini 2.5 Flash","open_weights":false,"reasoning":true,"release_date":"2025-08-05","structured_output":false,"temperature":true,"tool_call":true},"gemini-2.5-flash-image":{"attachment":true,"id":"gemini-2.5-flash-image","last_updated":"2025-10-22","limit":{"context":32768,"output":8192},"modalities":{"input":["text","image"],"output":["image"]},"name":"Gemini 2.5 Flash Image","open_weights":false,"reasoning":false,"release_date":"2025-10-22","structured_output":false,"temperature":true,"tool_call":false},"gemini-2.5-flash-lite":{"attachment":true,"id":"gemini-2.5-flash-lite","last_updated":"2025-08-05","limit":{"context":1048576,"output":64000},"modalities":{"input":["text","image","audio","video"],"output":["text"]},"name":"Gemini 2.5 Flash Lite","open_weights":false,"reasoning":false,"release_date":"2025-08-05","structured_output":false,"temperature":true,"tool_call":true},"gemini-2.5-pro":{"attachment":true,"id":"gemini-2.5-pro","last_updated":"2025-08-05","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","video","audio"],"output":["text"]},"name":"Gemini 2.5 Pro","open_weights":false,"reasoning":true,"release_date":"2025-08-05","structured_output":false,"temperature":true,"tool_call":true},"gemini-3.0-flash-preview":{"attachment":true,"id":"gemini-3.0-flash-preview","last_updated":"2025-12-18","limit":{"context":1000000,"output":64000},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"Gemini 3.0 Flash Preview","open_weights":false,"reasoning":true,"release_date":"2025-12-18","structured_output":false,"temperature":true,"tool_call":true},"gemini-3.0-pro-image-preview":{"attachment":true,"id":"gemini-3.0-pro-image-preview","last_updated":"2025-11-20","limit":{"context":32768,"output":8192},"modalities":{"input":["text","image"],"output":["text","image"]},"name":"Gemini 3.0 Pro Image Preview","open_weights":false,"reasoning":false,"release_date":"2025-11-20","structured_output":false,"temperature":true,"tool_call":false},"gemini-3.0-pro-preview":{"attachment":true,"id":"gemini-3.0-pro-preview","last_updated":"2025-11-19","limit":{"context":1000000,"output":64000},"modalities":{"input":["text","image","video","pdf","audio"],"output":["text"]},"name":"Gemini 3.0 Pro Preview","open_weights":false,"reasoning":true,"release_date":"2025-11-19","structured_output":false,"temperature":true,"tool_call":true},"glm-4.5":{"attachment":false,"id":"glm-4.5","last_updated":"2025-08-05","limit":{"context":131072,"output":98304},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 4.5","open_weights":false,"reasoning":true,"release_date":"2025-08-05","structured_output":false,"temperature":true,"tool_call":true},"glm-4.5-air":{"attachment":false,"id":"glm-4.5-air","last_updated":"2025-08-05","limit":{"context":131000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 4.5 Air","open_weights":false,"reasoning":true,"release_date":"2025-08-05","structured_output":false,"temperature":true,"tool_call":true},"gpt-oss-120b":{"attachment":false,"id":"gpt-oss-120b","last_updated":"2025-08-06","limit":{"context":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"gpt-oss-120b","open_weights":false,"reasoning":true,"release_date":"2025-08-06","structured_output":false,"temperature":true,"tool_call":true},"gpt-oss-20b":{"attachment":false,"id":"gpt-oss-20b","last_updated":"2025-08-06","limit":{"context":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"gpt-oss-20b","open_weights":false,"reasoning":true,"release_date":"2025-08-06","structured_output":false,"temperature":true,"tool_call":true},"kimi-k2":{"attachment":false,"id":"kimi-k2","last_updated":"2025-08-05","limit":{"context":128000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"Kimi K2","open_weights":false,"reasoning":false,"release_date":"2025-08-05","structured_output":false,"temperature":true,"tool_call":true},"kling-v2-6":{"attachment":true,"id":"kling-v2-6","last_updated":"2026-01-13","limit":{"context":99999999,"output":99999999},"modalities":{"input":["text","image","video"],"output":["video"]},"name":"Kling-V2 6","open_weights":false,"reasoning":false,"release_date":"2026-01-13","structured_output":false,"temperature":true,"tool_call":false},"meituan/longcat-flash-chat":{"attachment":false,"id":"meituan/longcat-flash-chat","last_updated":"2025-11-05","limit":{"context":131072,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"Meituan/Longcat-Flash-Chat","open_weights":false,"reasoning":false,"release_date":"2025-11-05","structured_output":false,"temperature":true,"tool_call":false},"meituan/longcat-flash-lite":{"attachment":false,"id":"meituan/longcat-flash-lite","last_updated":"2026-02-06","limit":{"context":256000,"output":320000},"modalities":{"input":["text"],"output":["text"]},"name":"Meituan/Longcat-Flash-Lite","open_weights":false,"reasoning":false,"release_date":"2026-02-06","structured_output":false,"temperature":true,"tool_call":true},"mimo-v2-flash":{"attachment":false,"cost":{"cache_read":0.01,"input":0.1,"output":0.3},"family":"mimo","id":"mimo-v2-flash","knowledge":"2024-12-01","last_updated":"2026-02-04","limit":{"context":256000,"output":256000},"modalities":{"input":["text"],"output":["text"]},"name":"Mimo-V2-Flash","open_weights":true,"reasoning":true,"release_date":"2025-12-16","temperature":true,"tool_call":true},"minimax/minimax-m2":{"attachment":false,"id":"minimax/minimax-m2","last_updated":"2025-10-28","limit":{"context":200000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"Minimax/Minimax-M2","open_weights":false,"reasoning":true,"release_date":"2025-10-28","structured_output":false,"temperature":true,"tool_call":true},"minimax/minimax-m2.1":{"attachment":false,"id":"minimax/minimax-m2.1","last_updated":"2025-12-23","limit":{"context":204800,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"Minimax/Minimax-M2.1","open_weights":false,"reasoning":true,"release_date":"2025-12-23","structured_output":false,"temperature":true,"tool_call":true},"minimax/minimax-m2.5":{"attachment":false,"id":"minimax/minimax-m2.5","last_updated":"2026-02-12","limit":{"context":204800,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"Minimax/Minimax-M2.5","open_weights":false,"reasoning":true,"release_date":"2026-02-12","structured_output":false,"temperature":true,"tool_call":true},"minimax/minimax-m2.5-highspeed":{"attachment":false,"id":"minimax/minimax-m2.5-highspeed","last_updated":"2026-02-14","limit":{"context":204800,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"Minimax/Minimax-M2.5 Highspeed","open_weights":false,"reasoning":true,"release_date":"2026-02-14","structured_output":false,"temperature":true,"tool_call":true},"moonshotai/kimi-k2-0905":{"attachment":false,"id":"moonshotai/kimi-k2-0905","last_updated":"2025-09-08","limit":{"context":256000,"output":100000},"modalities":{"input":["text"],"output":["text"]},"name":"Kimi K2 0905","open_weights":false,"reasoning":false,"release_date":"2025-09-08","structured_output":false,"temperature":true,"tool_call":true},"moonshotai/kimi-k2-thinking":{"attachment":false,"id":"moonshotai/kimi-k2-thinking","last_updated":"2025-11-07","limit":{"context":256000,"output":100000},"modalities":{"input":["text"],"output":["text"]},"name":"Kimi K2 Thinking","open_weights":false,"reasoning":false,"release_date":"2025-11-07","structured_output":false,"temperature":true,"tool_call":true},"moonshotai/kimi-k2.5":{"attachment":true,"id":"moonshotai/kimi-k2.5","last_updated":"2026-01-28","limit":{"context":256000,"output":256000},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Moonshotai/Kimi-K2.5","open_weights":false,"reasoning":false,"release_date":"2026-01-28","structured_output":false,"temperature":true,"tool_call":true},"openai/gpt-5":{"attachment":false,"id":"openai/gpt-5","last_updated":"2025-09-19","limit":{"context":400000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"OpenAI/GPT-5","open_weights":false,"reasoning":false,"release_date":"2025-09-19","structured_output":false,"temperature":true,"tool_call":true},"openai/gpt-5.2":{"attachment":true,"id":"openai/gpt-5.2","last_updated":"2025-12-11","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"OpenAI/GPT-5.2","open_weights":false,"reasoning":true,"release_date":"2025-12-11","structured_output":false,"temperature":true,"tool_call":true},"qwen-max-2025-01-25":{"attachment":false,"id":"qwen-max-2025-01-25","last_updated":"2025-08-05","limit":{"context":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen2.5-Max-2025-01-25","open_weights":false,"reasoning":false,"release_date":"2025-08-05","structured_output":false,"temperature":true,"tool_call":true},"qwen-turbo":{"attachment":false,"id":"qwen-turbo","last_updated":"2025-08-05","limit":{"context":1000000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen-Turbo","open_weights":false,"reasoning":true,"release_date":"2025-08-05","structured_output":false,"temperature":true,"tool_call":true},"qwen-vl-max-2025-01-25":{"attachment":true,"id":"qwen-vl-max-2025-01-25","last_updated":"2025-08-05","limit":{"context":128000,"output":4096},"modalities":{"input":["text","image","audio","video"],"output":["text"]},"name":"Qwen VL-MAX-2025-01-25","open_weights":false,"reasoning":false,"release_date":"2025-08-05","structured_output":false,"temperature":true,"tool_call":true},"qwen2.5-vl-72b-instruct":{"attachment":true,"id":"qwen2.5-vl-72b-instruct","last_updated":"2025-08-05","limit":{"context":128000,"output":8192},"modalities":{"input":["text","image","audio","video"],"output":["text"]},"name":"Qwen 2.5 VL 72B Instruct","open_weights":false,"reasoning":false,"release_date":"2025-08-05","structured_output":false,"temperature":true,"tool_call":true},"qwen2.5-vl-7b-instruct":{"attachment":true,"id":"qwen2.5-vl-7b-instruct","last_updated":"2025-08-05","limit":{"context":128000,"output":8192},"modalities":{"input":["text","image","audio","video"],"output":["text"]},"name":"Qwen 2.5 VL 7B Instruct","open_weights":false,"reasoning":false,"release_date":"2025-08-05","structured_output":false,"temperature":true,"tool_call":true},"qwen3-235b-a22b":{"attachment":false,"id":"qwen3-235b-a22b","last_updated":"2025-08-05","limit":{"context":128000,"output":32000},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen 3 235B A22B","open_weights":false,"reasoning":false,"release_date":"2025-08-05","structured_output":false,"temperature":true,"tool_call":true},"qwen3-235b-a22b-instruct-2507":{"attachment":false,"id":"qwen3-235b-a22b-instruct-2507","last_updated":"2025-08-12","limit":{"context":262144,"output":64000},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 235b A22B Instruct 2507","open_weights":false,"reasoning":false,"release_date":"2025-08-12","structured_output":false,"temperature":true,"tool_call":true},"qwen3-235b-a22b-thinking-2507":{"attachment":false,"id":"qwen3-235b-a22b-thinking-2507","last_updated":"2025-08-12","limit":{"context":262144,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 235B A22B Thinking 2507","open_weights":false,"reasoning":true,"release_date":"2025-08-12","structured_output":false,"temperature":true,"tool_call":true},"qwen3-30b-a3b":{"attachment":false,"id":"qwen3-30b-a3b","last_updated":"2025-08-05","limit":{"context":40000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 30B A3B","open_weights":false,"reasoning":true,"release_date":"2025-08-05","structured_output":false,"temperature":true,"tool_call":true},"qwen3-30b-a3b-instruct-2507":{"attachment":false,"id":"qwen3-30b-a3b-instruct-2507","last_updated":"2026-02-04","limit":{"context":128000,"output":32000},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 30b A3b Instruct 2507","open_weights":false,"reasoning":false,"release_date":"2026-02-04","structured_output":false,"temperature":true,"tool_call":true},"qwen3-30b-a3b-thinking-2507":{"attachment":false,"id":"qwen3-30b-a3b-thinking-2507","last_updated":"2026-02-04","limit":{"context":126000,"output":32000},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 30b A3b Thinking 2507","open_weights":false,"reasoning":true,"release_date":"2026-02-04","structured_output":false,"temperature":true,"tool_call":true},"qwen3-32b":{"attachment":false,"id":"qwen3-32b","last_updated":"2025-08-05","limit":{"context":40000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 32B","open_weights":false,"reasoning":true,"release_date":"2025-08-05","structured_output":false,"temperature":true,"tool_call":true},"qwen3-coder-480b-a35b-instruct":{"attachment":false,"id":"qwen3-coder-480b-a35b-instruct","last_updated":"2025-08-14","limit":{"context":262000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Coder 480B A35B Instruct","open_weights":false,"reasoning":false,"release_date":"2025-08-14","structured_output":false,"temperature":true,"tool_call":true},"qwen3-max":{"attachment":false,"id":"qwen3-max","last_updated":"2025-09-24","limit":{"context":262144,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Max","open_weights":false,"reasoning":false,"release_date":"2025-09-24","structured_output":false,"temperature":true,"tool_call":true},"qwen3-max-preview":{"attachment":false,"id":"qwen3-max-preview","last_updated":"2025-09-06","limit":{"context":256000,"output":64000},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Max Preview","open_weights":false,"reasoning":false,"release_date":"2025-09-06","structured_output":false,"temperature":true,"tool_call":true},"qwen3-next-80b-a3b-instruct":{"attachment":false,"id":"qwen3-next-80b-a3b-instruct","last_updated":"2025-09-12","limit":{"context":131072,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Next 80B A3B Instruct","open_weights":false,"reasoning":false,"release_date":"2025-09-12","structured_output":false,"temperature":true,"tool_call":true},"qwen3-next-80b-a3b-thinking":{"attachment":false,"id":"qwen3-next-80b-a3b-thinking","last_updated":"2025-09-12","limit":{"context":131072,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Next 80B A3B Thinking","open_weights":false,"reasoning":true,"release_date":"2025-09-12","structured_output":false,"temperature":true,"tool_call":true},"qwen3-vl-30b-a3b-thinking":{"attachment":true,"id":"qwen3-vl-30b-a3b-thinking","last_updated":"2026-02-09","limit":{"context":128000,"output":32000},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3-Vl 30b A3b Thinking","open_weights":false,"reasoning":false,"release_date":"2026-02-09","structured_output":false,"temperature":true,"tool_call":true},"qwen3.5-397b-a17b":{"attachment":true,"id":"qwen3.5-397b-a17b","last_updated":"2026-02-22","limit":{"context":256000,"output":64000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen3.5 397B A17B","open_weights":false,"reasoning":true,"release_date":"2026-02-22","structured_output":false,"temperature":true,"tool_call":true},"stepfun-ai/gelab-zero-4b-preview":{"attachment":true,"id":"stepfun-ai/gelab-zero-4b-preview","last_updated":"2025-12-23","limit":{"context":8192,"output":4096},"modalities":{"input":["text","image"],"output":["text"]},"name":"Stepfun-Ai/Gelab Zero 4b Preview","open_weights":false,"reasoning":false,"release_date":"2025-12-23","structured_output":false,"temperature":true,"tool_call":true},"stepfun/step-3.5-flash":{"attachment":true,"id":"stepfun/step-3.5-flash","last_updated":"2026-02-02","limit":{"context":64000,"output":4096},"modalities":{"input":["text","image"],"output":["text"]},"name":"Stepfun/Step-3.5 Flash","open_weights":false,"reasoning":false,"release_date":"2026-02-02","structured_output":false,"temperature":true,"tool_call":false},"x-ai/grok-4-fast":{"attachment":true,"id":"x-ai/grok-4-fast","last_updated":"2025-09-20","limit":{"context":2000000,"output":2000000},"modalities":{"input":["text","image","audio","video"],"output":["text"]},"name":"x-AI/Grok-4-Fast","open_weights":false,"reasoning":true,"release_date":"2025-09-20","structured_output":false,"temperature":true,"tool_call":true},"x-ai/grok-4-fast-non-reasoning":{"attachment":true,"id":"x-ai/grok-4-fast-non-reasoning","last_updated":"2025-12-18","limit":{"context":2000000,"output":2000000},"modalities":{"input":["text","image","audio","video"],"output":["text"]},"name":"X-Ai/Grok-4-Fast-Non-Reasoning","open_weights":false,"reasoning":true,"release_date":"2025-12-18","structured_output":false,"temperature":true,"tool_call":true},"x-ai/grok-4-fast-reasoning":{"attachment":true,"id":"x-ai/grok-4-fast-reasoning","last_updated":"2025-12-18","limit":{"context":2000000,"output":2000000},"modalities":{"input":["text","image","audio","video"],"output":["text"]},"name":"X-Ai/Grok-4-Fast-Reasoning","open_weights":false,"reasoning":true,"release_date":"2025-12-18","structured_output":false,"temperature":true,"tool_call":true},"x-ai/grok-4.1-fast":{"attachment":false,"id":"x-ai/grok-4.1-fast","last_updated":"2025-11-20","limit":{"context":2000000,"output":2000000},"modalities":{"input":["text"],"output":["text"]},"name":"x-AI/Grok-4.1-Fast","open_weights":false,"reasoning":true,"release_date":"2025-11-20","structured_output":false,"temperature":true,"tool_call":true},"x-ai/grok-4.1-fast-non-reasoning":{"attachment":true,"id":"x-ai/grok-4.1-fast-non-reasoning","last_updated":"2025-12-19","limit":{"context":2000000,"output":2000000},"modalities":{"input":["text","image","audio","video"],"output":["text"]},"name":"X-Ai/Grok 4.1 Fast Non Reasoning","open_weights":false,"reasoning":true,"release_date":"2025-12-19","structured_output":false,"temperature":true,"tool_call":true},"x-ai/grok-4.1-fast-reasoning":{"attachment":true,"id":"x-ai/grok-4.1-fast-reasoning","last_updated":"2025-12-19","limit":{"context":20000000,"output":2000000},"modalities":{"input":["text","image","audio","video"],"output":["text"]},"name":"X-Ai/Grok 4.1 Fast Reasoning","open_weights":false,"reasoning":true,"release_date":"2025-12-19","structured_output":false,"temperature":true,"tool_call":true},"x-ai/grok-code-fast-1":{"attachment":false,"id":"x-ai/grok-code-fast-1","last_updated":"2025-09-02","limit":{"context":256000,"output":10000},"modalities":{"input":["text"],"output":["text"]},"name":"x-AI/Grok-Code-Fast 1","open_weights":false,"reasoning":true,"release_date":"2025-09-02","structured_output":false,"temperature":true,"tool_call":true},"xiaomi/mimo-v2-flash":{"attachment":false,"cost":{"cache_read":0.01,"input":0.1,"output":0.3},"family":"mimo","id":"xiaomi/mimo-v2-flash","knowledge":"2024-12-01","last_updated":"2026-02-04","limit":{"context":256000,"output":256000},"modalities":{"input":["text"],"output":["text"]},"name":"Xiaomi/Mimo-V2-Flash","open_weights":true,"reasoning":true,"release_date":"2025-12-16","temperature":true,"tool_call":true},"z-ai/autoglm-phone-9b":{"attachment":true,"id":"z-ai/autoglm-phone-9b","last_updated":"2025-12-23","limit":{"context":12800,"output":4096},"modalities":{"input":["text","image"],"output":["text"]},"name":"Z-Ai/Autoglm Phone 9b","open_weights":false,"reasoning":false,"release_date":"2025-12-23","structured_output":false,"temperature":true,"tool_call":true},"z-ai/glm-4.6":{"attachment":false,"id":"z-ai/glm-4.6","last_updated":"2025-10-11","limit":{"context":200000,"output":200000},"modalities":{"input":["text"],"output":["text"]},"name":"Z-AI/GLM 4.6","open_weights":false,"reasoning":false,"release_date":"2025-10-11","structured_output":false,"temperature":true,"tool_call":true},"z-ai/glm-4.7":{"attachment":false,"id":"z-ai/glm-4.7","last_updated":"2025-12-23","limit":{"context":200000,"output":200000},"modalities":{"input":["text"],"output":["text"]},"name":"Z-Ai/GLM 4.7","open_weights":false,"reasoning":true,"release_date":"2025-12-23","structured_output":false,"temperature":true,"tool_call":true},"z-ai/glm-5":{"attachment":false,"id":"z-ai/glm-5","last_updated":"2026-02-12","limit":{"context":200000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"Z-Ai/GLM 5","open_weights":false,"reasoning":true,"release_date":"2026-02-12","structured_output":false,"temperature":true,"tool_call":true}},"name":"Qiniu","npm":"@ai-sdk/openai-compatible"},"regolo-ai":{"api":"https://api.regolo.ai/v1","doc":"https://docs.regolo.ai/","env":["REGOLO_API_KEY"],"id":"regolo-ai","models":{"gpt-oss-120b":{"attachment":false,"cost":{"input":1,"output":4.2},"family":"gpt-oss","id":"gpt-oss-120b","last_updated":"2025-08-05","limit":{"context":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"GPT-OSS-120B","open_weights":false,"reasoning":true,"release_date":"2025-08-05","temperature":true,"tool_call":true},"gpt-oss-20b":{"attachment":false,"cost":{"input":0.4,"output":1.8},"family":"gpt-oss","id":"gpt-oss-20b","last_updated":"2026-03-01","limit":{"context":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"GPT-OSS-20B","open_weights":true,"reasoning":true,"release_date":"2026-03-01","temperature":true,"tool_call":true},"llama-3.1-8b-instruct":{"attachment":false,"cost":{"input":0.05,"output":0.25},"family":"llama","id":"llama-3.1-8b-instruct","last_updated":"2025-04-07","limit":{"context":120000,"output":120000},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.1 8B Instruct","open_weights":false,"reasoning":false,"release_date":"2025-04-07","temperature":true,"tool_call":true},"llama-3.3-70b-instruct":{"attachment":false,"cost":{"input":0.6,"output":2.7},"family":"llama","id":"llama-3.3-70b-instruct","last_updated":"2025-04-28","limit":{"context":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.3 70B Instruct","open_weights":false,"reasoning":false,"release_date":"2025-04-28","temperature":true,"tool_call":true},"minimax-m2.5":{"attachment":false,"cost":{"input":0.8,"output":3.5},"family":"minimax","id":"minimax-m2.5","last_updated":"2026-03-10","limit":{"context":190000,"output":64000},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax 2.5","open_weights":false,"reasoning":true,"release_date":"2026-03-10","temperature":true,"tool_call":true},"mistral-small-4-119b":{"attachment":true,"cost":{"input":0.75,"output":3},"family":"mistral-small","id":"mistral-small-4-119b","last_updated":"2026-03-15","limit":{"context":256000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"Mistral Small 4 119B","open_weights":false,"reasoning":true,"release_date":"2026-03-15","temperature":true,"tool_call":true},"mistral-small3.2":{"attachment":false,"cost":{"input":0.5,"output":2.2},"family":"mistral-small","id":"mistral-small3.2","last_updated":"2025-01-31","limit":{"context":120000,"output":120000},"modalities":{"input":["text"],"output":["text"]},"name":"Mistral Small 3.2","open_weights":false,"reasoning":true,"release_date":"2025-01-31","temperature":true,"tool_call":true},"qwen-image":{"attachment":false,"cost":{"input":0.5,"output":2},"family":"qwen","id":"qwen-image","last_updated":"2026-03-01","limit":{"context":8192,"output":4096},"modalities":{"input":["text"],"output":["image"]},"name":"Qwen-Image","open_weights":false,"reasoning":false,"release_date":"2026-03-01","temperature":true,"tool_call":false},"qwen3-coder-next":{"attachment":false,"cost":{"input":0.3,"output":1.2},"family":"qwen","id":"qwen3-coder-next","last_updated":"2026-03-01","limit":{"context":262144,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3-Coder-Next","open_weights":true,"reasoning":true,"release_date":"2026-03-01","temperature":true,"tool_call":true},"qwen3-embedding-8b":{"attachment":false,"cost":{"input":0.1,"output":0.1},"family":"qwen","id":"qwen3-embedding-8b","last_updated":"2026-02-01","limit":{"context":32768,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3-Embedding-8B","open_weights":true,"reasoning":false,"release_date":"2026-02-01","temperature":false,"tool_call":false},"qwen3-reranker-4b":{"attachment":false,"cost":{"input":0.12,"output":0.12},"family":"qwen","id":"qwen3-reranker-4b","last_updated":"2026-02-01","limit":{"context":32768,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3-Reranker-4B","open_weights":true,"reasoning":false,"release_date":"2026-02-01","temperature":false,"tool_call":false},"qwen3.5-122b":{"attachment":true,"cost":{"input":0.9,"output":3.6},"family":"qwen","id":"qwen3.5-122b","last_updated":"2026-02-01","limit":{"context":262144,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen3.5-122B","open_weights":true,"reasoning":true,"release_date":"2026-02-01","temperature":true,"tool_call":true},"qwen3.5-9b":{"attachment":true,"cost":{"input":0.15,"output":0.6},"family":"qwen","id":"qwen3.5-9b","last_updated":"2026-02-01","limit":{"context":262144,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen3.5-9B","open_weights":true,"reasoning":true,"release_date":"2026-02-01","temperature":true,"tool_call":true}},"name":"Regolo AI","npm":"@ai-sdk/openai-compatible"},"requesty":{"api":"https://router.requesty.ai/v1","doc":"https://requesty.ai/solution/llm-routing/models","env":["REQUESTY_API_KEY"],"id":"requesty","models":{"anthropic/claude-3-7-sonnet":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"input":3,"output":15},"family":"claude-sonnet","id":"anthropic/claude-3-7-sonnet","knowledge":"2024-01","last_updated":"2025-02-19","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 3.7","open_weights":false,"reasoning":true,"release_date":"2025-02-19","temperature":true,"tool_call":true},"anthropic/claude-haiku-4-5":{"attachment":true,"cost":{"cache_read":0.1,"cache_write":1.25,"input":1,"output":5},"family":"claude-haiku","id":"anthropic/claude-haiku-4-5","knowledge":"2025-02-01","last_updated":"2025-10-15","limit":{"context":200000,"output":62000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Haiku 4.5","open_weights":false,"reasoning":true,"release_date":"2025-10-15","temperature":true,"tool_call":true},"anthropic/claude-opus-4":{"attachment":true,"cost":{"cache_read":1.5,"cache_write":18.75,"input":15,"output":75},"family":"claude-opus","id":"anthropic/claude-opus-4","knowledge":"2025-03-31","last_updated":"2025-05-22","limit":{"context":200000,"output":32000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4","open_weights":false,"reasoning":true,"release_date":"2025-05-22","temperature":true,"tool_call":true},"anthropic/claude-opus-4-1":{"attachment":true,"cost":{"cache_read":1.5,"cache_write":18.75,"input":15,"output":75},"family":"claude-opus","id":"anthropic/claude-opus-4-1","knowledge":"2025-03-31","last_updated":"2025-08-05","limit":{"context":200000,"output":32000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.1","open_weights":false,"reasoning":true,"release_date":"2025-08-05","temperature":true,"tool_call":true},"anthropic/claude-opus-4-5":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"input":5,"output":25},"family":"claude-opus","id":"anthropic/claude-opus-4-5","knowledge":"2025-03-31","last_updated":"2025-11-24","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.5","open_weights":false,"reasoning":true,"release_date":"2025-11-24","temperature":true,"tool_call":true},"anthropic/claude-opus-4-6":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"context_over_200k":{"cache_read":1,"cache_write":12.5,"input":10,"output":37.5},"input":5,"output":25,"tiers":[{"cache_read":1,"cache_write":12.5,"input":10,"output":37.5,"tier":{"size":200000,"type":"context"}}]},"family":"claude-opus","id":"anthropic/claude-opus-4-6","knowledge":"2025-05-31","last_updated":"2026-02-05","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.6","open_weights":false,"reasoning":true,"release_date":"2026-02-05","structured_output":true,"temperature":true,"tool_call":true},"anthropic/claude-sonnet-4":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"input":3,"output":15},"family":"claude-sonnet","id":"anthropic/claude-sonnet-4","knowledge":"2025-03-31","last_updated":"2025-05-22","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 4","open_weights":false,"reasoning":true,"release_date":"2025-05-22","temperature":true,"tool_call":true},"anthropic/claude-sonnet-4-5":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"input":3,"output":15},"family":"claude-sonnet","id":"anthropic/claude-sonnet-4-5","knowledge":"2025-07-31","last_updated":"2025-09-29","limit":{"context":1000000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 4.5","open_weights":false,"reasoning":true,"release_date":"2025-09-29","temperature":true,"tool_call":true},"anthropic/claude-sonnet-4-6":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"context_over_200k":{"cache_read":0.6,"cache_write":7.5,"input":6,"output":22.5},"input":3,"output":15,"tiers":[{"cache_read":0.6,"cache_write":7.5,"input":6,"output":22.5,"tier":{"size":200000,"type":"context"}}]},"family":"claude-sonnet","id":"anthropic/claude-sonnet-4-6","knowledge":"2025-08-31","last_updated":"2026-02-17","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Claude Sonnet 4.6","open_weights":false,"reasoning":true,"release_date":"2026-02-17","structured_output":true,"temperature":true,"tool_call":true},"google/gemini-2.5-flash":{"attachment":true,"cost":{"cache_read":0.075,"cache_write":0.55,"input":0.3,"output":2.5},"family":"gemini-flash","id":"google/gemini-2.5-flash","knowledge":"2025-01","last_updated":"2025-06-17","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"Gemini 2.5 Flash","open_weights":false,"reasoning":true,"release_date":"2025-06-17","temperature":true,"tool_call":true},"google/gemini-2.5-pro":{"attachment":true,"cost":{"cache_read":0.31,"cache_write":2.375,"context_over_200k":{"cache_read":0.25,"input":2.5,"output":15},"input":1.25,"output":10,"tiers":[{"cache_read":0.25,"input":2.5,"output":15,"tier":{"size":200000,"type":"context"}}]},"family":"gemini-pro","id":"google/gemini-2.5-pro","knowledge":"2025-01","last_updated":"2025-06-05","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"Gemini 2.5 Pro","open_weights":false,"reasoning":true,"release_date":"2025-03-20","temperature":true,"tool_call":true},"google/gemini-3-flash-preview":{"attachment":true,"cost":{"cache_read":0.05,"cache_write":1,"input":0.5,"output":3},"id":"google/gemini-3-flash-preview","knowledge":"2025-01","last_updated":"2025-12-17","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"Gemini 3 Flash","open_weights":false,"reasoning":true,"release_date":"2025-12-17","temperature":true,"tool_call":true},"google/gemini-3-pro-preview":{"attachment":true,"cost":{"cache_read":0.2,"cache_write":4.5,"input":2,"output":12},"family":"gemini-pro","id":"google/gemini-3-pro-preview","knowledge":"2025-01","last_updated":"2025-11-18","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"Gemini 3 Pro","open_weights":false,"reasoning":true,"release_date":"2025-11-18","temperature":true,"tool_call":true},"openai/gpt-4.1":{"attachment":true,"cost":{"cache_read":0.5,"input":2,"output":8},"family":"gpt","id":"openai/gpt-4.1","knowledge":"2024-04","last_updated":"2025-04-14","limit":{"context":1047576,"output":32768},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-4.1","open_weights":false,"reasoning":false,"release_date":"2025-04-14","temperature":true,"tool_call":true},"openai/gpt-4.1-mini":{"attachment":true,"cost":{"cache_read":0.1,"input":0.4,"output":1.6},"family":"gpt-mini","id":"openai/gpt-4.1-mini","knowledge":"2024-04","last_updated":"2025-04-14","limit":{"context":1047576,"output":32768},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-4.1 Mini","open_weights":false,"reasoning":false,"release_date":"2025-04-14","temperature":true,"tool_call":true},"openai/gpt-4o-mini":{"attachment":true,"cost":{"cache_read":0.08,"input":0.15,"output":0.6},"family":"gpt-mini","id":"openai/gpt-4o-mini","knowledge":"2024-10","last_updated":"2024-07-18","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-4o Mini","open_weights":false,"reasoning":false,"release_date":"2024-07-18","temperature":true,"tool_call":true},"openai/gpt-5":{"attachment":true,"cost":{"cache_read":0.13,"input":1.25,"output":10},"family":"gpt","id":"openai/gpt-5","knowledge":"2024-09-30","last_updated":"2025-08-07","limit":{"context":400000,"output":128000},"modalities":{"input":["text","audio","image","video"],"output":["text","audio","image"]},"name":"GPT-5","open_weights":false,"reasoning":true,"release_date":"2025-08-07","temperature":false,"tool_call":true},"openai/gpt-5-chat":{"attachment":true,"cost":{"input":1.25,"output":10},"family":"gpt-codex","id":"openai/gpt-5-chat","knowledge":"2024-09-30","last_updated":"2025-08-07","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5 Chat (latest)","open_weights":false,"reasoning":true,"release_date":"2025-08-07","structured_output":true,"temperature":true,"tool_call":false},"openai/gpt-5-codex":{"attachment":true,"cost":{"cache_read":0.125,"input":1.25,"output":10},"family":"gpt-codex","id":"openai/gpt-5-codex","knowledge":"2024-10-01","last_updated":"2025-09-15","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5 Codex","open_weights":false,"reasoning":true,"release_date":"2025-09-15","structured_output":true,"temperature":true,"tool_call":true},"openai/gpt-5-image":{"attachment":true,"cost":{"cache_read":1.25,"input":5,"output":10},"family":"gpt","id":"openai/gpt-5-image","knowledge":"2024-10-01","last_updated":"2025-10-14","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text","image"]},"name":"GPT-5 Image","open_weights":false,"reasoning":true,"release_date":"2025-10-14","structured_output":true,"temperature":true,"tool_call":true},"openai/gpt-5-mini":{"attachment":true,"cost":{"cache_read":0.03,"input":0.25,"output":2},"family":"gpt-mini","id":"openai/gpt-5-mini","knowledge":"2024-05-30","last_updated":"2025-08-07","limit":{"context":128000,"output":32000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5 Mini","open_weights":false,"reasoning":true,"release_date":"2025-08-07","temperature":false,"tool_call":true},"openai/gpt-5-nano":{"attachment":true,"cost":{"cache_read":0.01,"input":0.05,"output":0.4},"family":"gpt-nano","id":"openai/gpt-5-nano","knowledge":"2024-05-30","last_updated":"2025-08-07","limit":{"context":16000,"output":4000},"modalities":{"input":["text"],"output":["text"]},"name":"GPT-5 Nano","open_weights":false,"reasoning":true,"release_date":"2025-08-07","temperature":false,"tool_call":true},"openai/gpt-5-pro":{"attachment":true,"cost":{"input":15,"output":120},"family":"gpt-pro","id":"openai/gpt-5-pro","knowledge":"2024-09-30","last_updated":"2025-10-06","limit":{"context":400000,"output":272000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5 Pro","open_weights":false,"reasoning":true,"release_date":"2025-10-06","structured_output":true,"temperature":false,"tool_call":true},"openai/gpt-5.1":{"attachment":true,"cost":{"cache_read":0.125,"input":1.25,"output":10},"family":"gpt","id":"openai/gpt-5.1","knowledge":"2024-09-30","last_updated":"2025-11-13","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.1","open_weights":false,"reasoning":true,"release_date":"2025-11-13","structured_output":true,"temperature":true,"tool_call":true},"openai/gpt-5.1-chat":{"attachment":true,"cost":{"cache_read":0.125,"input":1.25,"output":10},"family":"gpt-codex","id":"openai/gpt-5.1-chat","knowledge":"2024-09-30","last_updated":"2025-11-13","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.1 Chat","open_weights":false,"reasoning":true,"release_date":"2025-11-13","structured_output":true,"temperature":true,"tool_call":true},"openai/gpt-5.1-codex":{"attachment":true,"cost":{"cache_read":0.125,"input":1.25,"output":10},"family":"gpt-codex","id":"openai/gpt-5.1-codex","knowledge":"2024-09-30","last_updated":"2025-11-13","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.1-Codex","open_weights":false,"reasoning":true,"release_date":"2025-11-13","structured_output":true,"temperature":true,"tool_call":true},"openai/gpt-5.1-codex-max":{"attachment":true,"cost":{"cache_read":0.11,"input":1.1,"output":9},"family":"gpt-codex","id":"openai/gpt-5.1-codex-max","knowledge":"2024-09-30","last_updated":"2025-11-13","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.1-Codex-Max","open_weights":false,"reasoning":true,"release_date":"2025-11-13","structured_output":true,"temperature":true,"tool_call":true},"openai/gpt-5.1-codex-mini":{"attachment":true,"cost":{"cache_read":0.025,"input":0.25,"output":2},"family":"gpt-codex","id":"openai/gpt-5.1-codex-mini","knowledge":"2024-09-30","last_updated":"2025-11-13","limit":{"context":400000,"output":100000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.1-Codex-Mini","open_weights":false,"reasoning":true,"release_date":"2025-11-13","structured_output":true,"temperature":true,"tool_call":true},"openai/gpt-5.2":{"attachment":true,"cost":{"cache_read":0.175,"input":1.75,"output":14},"family":"gpt","id":"openai/gpt-5.2","knowledge":"2025-08-31","last_updated":"2025-12-11","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.2","open_weights":false,"reasoning":true,"release_date":"2025-12-11","structured_output":true,"temperature":false,"tool_call":true},"openai/gpt-5.2-chat":{"attachment":true,"cost":{"cache_read":0.175,"input":1.75,"output":14},"family":"gpt-codex","id":"openai/gpt-5.2-chat","knowledge":"2025-08-31","last_updated":"2025-12-11","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.2 Chat","open_weights":false,"reasoning":true,"release_date":"2025-12-11","structured_output":true,"temperature":false,"tool_call":true},"openai/gpt-5.2-codex":{"attachment":true,"cost":{"cache_read":0.175,"input":1.75,"output":14},"family":"gpt-codex","id":"openai/gpt-5.2-codex","knowledge":"2025-08-31","last_updated":"2026-01-14","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.2-Codex","open_weights":false,"reasoning":true,"release_date":"2026-01-14","structured_output":true,"temperature":true,"tool_call":true},"openai/gpt-5.2-pro":{"attachment":true,"cost":{"input":21,"output":168},"family":"gpt-pro","id":"openai/gpt-5.2-pro","knowledge":"2025-08-31","last_updated":"2025-12-11","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.2 Pro","open_weights":false,"reasoning":true,"release_date":"2025-12-11","structured_output":true,"temperature":false,"tool_call":true},"openai/gpt-5.3-codex":{"attachment":true,"cost":{"cache_read":0.175,"input":1.75,"output":14},"family":"gpt-codex","id":"openai/gpt-5.3-codex","knowledge":"2025-08-31","last_updated":"2026-02-24","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5.3-Codex","open_weights":false,"reasoning":true,"release_date":"2026-02-24","structured_output":true,"temperature":false,"tool_call":true},"openai/gpt-5.4":{"attachment":true,"cost":{"cache_read":0.25,"context_over_200k":{"cache_read":0.5,"input":5,"output":22.5},"input":2.5,"output":15,"tiers":[{"cache_read":0.5,"input":5,"output":22.5,"tier":{"size":272000,"type":"context"}}]},"family":"gpt","id":"openai/gpt-5.4","knowledge":"2025-08-31","last_updated":"2026-03-05","limit":{"context":1050000,"input":922000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5.4","open_weights":false,"reasoning":true,"release_date":"2026-03-05","structured_output":true,"temperature":false,"tool_call":true},"openai/gpt-5.4-pro":{"attachment":true,"cost":{"cache_read":30,"input":30,"output":180},"family":"gpt-pro","id":"openai/gpt-5.4-pro","knowledge":"2025-08-31","last_updated":"2026-03-05","limit":{"context":1050000,"input":922000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5.4 Pro","open_weights":false,"reasoning":true,"release_date":"2026-03-05","structured_output":false,"temperature":false,"tool_call":true},"openai/o4-mini":{"attachment":true,"cost":{"cache_read":0.28,"input":1.1,"output":4.4},"family":"o-mini","id":"openai/o4-mini","knowledge":"2024-06","last_updated":"2025-04-16","limit":{"context":200000,"output":100000},"modalities":{"input":["text","image"],"output":["text"]},"name":"o4 Mini","open_weights":false,"reasoning":true,"release_date":"2025-04-16","temperature":true,"tool_call":true},"xai/grok-4":{"attachment":true,"cost":{"cache_read":0.75,"cache_write":3,"input":3,"output":15},"family":"grok","id":"xai/grok-4","knowledge":"2025-01","last_updated":"2025-09-09","limit":{"context":256000,"output":64000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Grok 4","open_weights":false,"reasoning":true,"release_date":"2025-09-09","temperature":true,"tool_call":true},"xai/grok-4-fast":{"attachment":true,"cost":{"cache_read":0.05,"cache_write":0.2,"input":0.2,"output":0.5},"family":"grok","id":"xai/grok-4-fast","knowledge":"2025-01","last_updated":"2025-09-19","limit":{"context":2000000,"output":64000},"modalities":{"input":["text"],"output":["text"]},"name":"Grok 4 Fast","open_weights":false,"reasoning":true,"release_date":"2025-09-19","temperature":true,"tool_call":true}},"name":"Requesty","npm":"@ai-sdk/openai-compatible"},"routing-run":{"api":"https://ai.routing.sh/v1","doc":"https://docs.routing.run/api-reference/models","env":["ROUTING_RUN_API_KEY"],"id":"routing-run","models":{"route/deepseek-v3.2":{"attachment":true,"cost":{"input":0.4928,"output":0.7392},"family":"deepseek","id":"route/deepseek-v3.2","interleaved":{"field":"reasoning_content"},"knowledge":"2024-07","last_updated":"2025-12-01","limit":{"context":163840,"output":163840},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"DeepSeek V3.2","open_weights":true,"reasoning":true,"release_date":"2025-12-01","structured_output":true,"temperature":true,"tool_call":true},"route/deepseek-v4-flash":{"attachment":false,"cost":{"cache_read":0.0028,"input":0.4928,"output":0.7392},"family":"deepseek-flash","id":"route/deepseek-v4-flash","interleaved":{"field":"reasoning_content"},"knowledge":"2025-05","last_updated":"2026-04-24","limit":{"context":1000000,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V4 Flash","open_weights":true,"reasoning":true,"release_date":"2026-04-24","structured_output":true,"temperature":true,"tool_call":true},"route/deepseek-v4-flash-6bit":{"attachment":false,"cost":{"cache_read":0.0028,"input":0.4928,"output":0.7392},"family":"deepseek-flash","id":"route/deepseek-v4-flash-6bit","interleaved":{"field":"reasoning_content"},"knowledge":"2025-05","last_updated":"2026-04-24","limit":{"context":1000000,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V4 Flash 6bit","open_weights":true,"reasoning":true,"release_date":"2026-04-24","structured_output":true,"temperature":true,"tool_call":true},"route/deepseek-v4-pro":{"attachment":false,"cost":{"cache_read":0.003625,"input":0.4928,"output":0.7392},"family":"deepseek-thinking","id":"route/deepseek-v4-pro","interleaved":{"field":"reasoning_content"},"knowledge":"2025-05","last_updated":"2026-04-24","limit":{"context":1000000,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V4 Pro","open_weights":true,"reasoning":true,"release_date":"2026-04-24","structured_output":true,"temperature":true,"tool_call":true},"route/deepseek-v4-pro-6bit":{"attachment":false,"cost":{"cache_read":0.003625,"input":0.4928,"output":0.7392},"family":"deepseek-thinking","id":"route/deepseek-v4-pro-6bit","interleaved":{"field":"reasoning_content"},"knowledge":"2025-05","last_updated":"2026-04-24","limit":{"context":1000000,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V4 Pro 6bit","open_weights":true,"reasoning":true,"release_date":"2026-04-24","structured_output":true,"temperature":true,"tool_call":true},"route/gemma-4-31b-it":{"attachment":true,"cost":{"input":0.1,"output":0.3},"family":"gemma","id":"route/gemma-4-31b-it","last_updated":"2026-04-02","limit":{"context":131072,"output":65536},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Gemma 4 31B IT","open_weights":true,"reasoning":false,"release_date":"2026-04-02","structured_output":true,"temperature":true,"tool_call":true},"route/glm-5.1":{"attachment":false,"cost":{"cache_read":0.26,"cache_write":0,"input":1,"output":3},"family":"glm","id":"route/glm-5.1","interleaved":{"field":"reasoning_content"},"last_updated":"2026-03-27","limit":{"context":202752,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 5.1","open_weights":false,"reasoning":true,"release_date":"2026-03-27","structured_output":true,"temperature":true,"tool_call":true},"route/glm-5.1-6bit":{"attachment":false,"cost":{"cache_read":0.26,"cache_write":0,"input":1,"output":3},"family":"glm","id":"route/glm-5.1-6bit","interleaved":{"field":"reasoning_content"},"last_updated":"2026-03-27","limit":{"context":202752,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 5.1 6bit","open_weights":false,"reasoning":true,"release_date":"2026-03-27","structured_output":true,"temperature":true,"tool_call":true},"route/kimi-k2.5":{"attachment":true,"cost":{"cache_read":0.1,"input":0.462,"output":2.42},"family":"kimi-k2.5","id":"route/kimi-k2.5","knowledge":"2025-01","last_updated":"2026-01","limit":{"context":131072,"output":32768},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Kimi K2.5","open_weights":true,"reasoning":false,"release_date":"2026-01","structured_output":true,"temperature":false,"tool_call":true},"route/kimi-k2.6":{"attachment":true,"cost":{"cache_read":0.16,"input":0.462,"output":2.42},"family":"kimi-k2.6","id":"route/kimi-k2.6","interleaved":{"field":"reasoning_content"},"knowledge":"2025-01","last_updated":"2026-04-21","limit":{"context":262144,"output":262144},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Kimi K2.6","open_weights":true,"reasoning":true,"release_date":"2026-04-21","structured_output":true,"temperature":true,"tool_call":true},"route/kimi-k2.6-6bit":{"attachment":true,"cost":{"cache_read":0.16,"input":0.462,"output":2.42},"family":"kimi-k2.6","id":"route/kimi-k2.6-6bit","interleaved":{"field":"reasoning_content"},"knowledge":"2025-01","last_updated":"2026-04-21","limit":{"context":262144,"output":262144},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Kimi K2.6 6bit","open_weights":true,"reasoning":true,"release_date":"2026-04-21","structured_output":true,"temperature":true,"tool_call":true},"route/mimo-v2.5":{"attachment":true,"cost":{"cache_read":0.2,"context_over_200k":{"cache_read":0.4,"input":2,"output":6},"input":0.45,"output":1.35,"tiers":[{"cache_read":0.4,"input":2,"output":6,"tier":{"size":256000,"type":"context"}}]},"family":"mimo","id":"route/mimo-v2.5","interleaved":{"field":"reasoning_content"},"knowledge":"2024-12","last_updated":"2026-04-22","limit":{"context":1000000,"output":262144},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"MiMo V2.5","open_weights":true,"reasoning":true,"release_date":"2026-04-22","temperature":true,"tool_call":true},"route/mimo-v2.5-pro":{"attachment":true,"cost":{"cache_read":0.2,"context_over_200k":{"cache_read":0.4,"input":2,"output":6},"input":0.45,"output":1.35,"tiers":[{"cache_read":0.4,"input":2,"output":6,"tier":{"size":256000,"type":"context"}}]},"family":"mimo","id":"route/mimo-v2.5-pro","interleaved":{"field":"reasoning_content"},"knowledge":"2024-12","last_updated":"2026-04-22","limit":{"context":1000000,"output":262144},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"MiMo V2.5 Pro","open_weights":true,"reasoning":true,"release_date":"2026-04-22","temperature":true,"tool_call":true},"route/mimo-v2.5-pro-6bit":{"attachment":true,"cost":{"cache_read":0.2,"context_over_200k":{"cache_read":0.4,"input":2,"output":6},"input":0.45,"output":1.35,"tiers":[{"cache_read":0.4,"input":2,"output":6,"tier":{"size":256000,"type":"context"}}]},"family":"mimo","id":"route/mimo-v2.5-pro-6bit","interleaved":{"field":"reasoning_content"},"knowledge":"2024-12","last_updated":"2026-04-22","limit":{"context":1000000,"output":262144},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"MiMo V2.5 Pro 6bit","open_weights":true,"reasoning":true,"release_date":"2026-04-22","temperature":true,"tool_call":true},"route/minimax-m2.5":{"attachment":false,"cost":{"cache_read":0.03,"cache_write":0.375,"input":0.193,"output":1.238},"family":"minimax","id":"route/minimax-m2.5","last_updated":"2026-02-12","limit":{"context":100000,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax M2.5","open_weights":true,"reasoning":false,"release_date":"2026-02-12","temperature":true,"tool_call":true},"route/minimax-m2.5-highspeed":{"attachment":false,"cost":{"cache_read":0.06,"cache_write":0.375,"input":0.193,"output":1.238},"family":"minimax","id":"route/minimax-m2.5-highspeed","last_updated":"2026-02-13","limit":{"context":100000,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax M2.5 Highspeed","open_weights":true,"reasoning":false,"release_date":"2026-02-13","temperature":true,"tool_call":true},"route/minimax-m2.7":{"attachment":false,"cost":{"cache_read":0.06,"cache_write":0.375,"input":0.33,"output":1.32},"family":"minimax","id":"route/minimax-m2.7","interleaved":{"field":"reasoning_content"},"last_updated":"2026-03-18","limit":{"context":100000,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax M2.7","open_weights":true,"reasoning":true,"release_date":"2026-03-18","temperature":true,"tool_call":true},"route/minimax-m2.7-highspeed":{"attachment":false,"cost":{"cache_read":0.06,"cache_write":0.375,"input":0.33,"output":1.32},"family":"minimax","id":"route/minimax-m2.7-highspeed","interleaved":{"field":"reasoning_content"},"last_updated":"2026-03-18","limit":{"context":100000,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax M2.7 Highspeed","open_weights":true,"reasoning":true,"release_date":"2026-03-18","temperature":true,"tool_call":true},"route/mistral-large-3":{"attachment":false,"cost":{"input":0.5,"output":1.5},"family":"mistral-large","id":"route/mistral-large-3","knowledge":"2024-11","last_updated":"2025-12-02","limit":{"context":128000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Mistral Large 3","open_weights":true,"reasoning":false,"release_date":"2024-11-01","temperature":true,"tool_call":true},"route/mistral-medium-2505":{"attachment":true,"cost":{"input":0.4,"output":2},"family":"mistral-medium","id":"route/mistral-medium-2505","knowledge":"2025-05","last_updated":"2025-05-07","limit":{"context":128000,"output":32768},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Mistral Medium 2505","open_weights":false,"reasoning":false,"release_date":"2025-05-07","temperature":true,"tool_call":true},"route/mistral-small-2503":{"attachment":true,"cost":{"input":0.15,"output":0.6},"family":"mistral-small","id":"route/mistral-small-2503","knowledge":"2025-06","last_updated":"2026-03-16","limit":{"context":128000,"output":32768},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Mistral Small 2503","open_weights":true,"reasoning":false,"release_date":"2026-03-16","temperature":true,"tool_call":true},"route/qwen3.6-27b":{"attachment":false,"cost":{"input":1.1,"output":3.3},"family":"qwen","id":"route/qwen3.6-27b","last_updated":"2026-04-22","limit":{"context":202000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3.6 27B","open_weights":true,"reasoning":false,"release_date":"2026-04-22","structured_output":true,"temperature":true,"tool_call":true},"route/qwen3.6-27b-202k":{"attachment":false,"cost":{"input":1.1,"output":3.3},"family":"qwen","id":"route/qwen3.6-27b-202k","last_updated":"2026-04-22","limit":{"context":202000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3.6 27B 202K","open_weights":true,"reasoning":false,"release_date":"2026-04-22","structured_output":true,"temperature":true,"tool_call":true},"route/step-3.5-flash":{"attachment":false,"cost":{"cache_read":0.019,"input":0.096,"output":0.288},"id":"route/step-3.5-flash","interleaved":{"field":"reasoning_content"},"knowledge":"2025-01","last_updated":"2026-02-13","limit":{"context":262144,"input":256000,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Step 3.5 Flash","open_weights":true,"reasoning":true,"release_date":"2026-01-29","temperature":true,"tool_call":true},"route/step-3.5-flash-2603":{"attachment":false,"cost":{"cache_read":0.02,"input":0.1,"output":0.3},"id":"route/step-3.5-flash-2603","interleaved":{"field":"reasoning_content"},"knowledge":"2025-01","last_updated":"2026-04-02","limit":{"context":262144,"input":256000,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Step 3.5 Flash 2603","open_weights":true,"reasoning":true,"release_date":"2026-04-02","temperature":true,"tool_call":true},"route/stepfun-3.5-flash":{"attachment":false,"cost":{"cache_read":0.019,"input":0.096,"output":0.288},"id":"route/stepfun-3.5-flash","interleaved":{"field":"reasoning_content"},"knowledge":"2025-01","last_updated":"2026-02-13","limit":{"context":262144,"input":256000,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"StepFun 3.5 Flash","open_weights":true,"reasoning":true,"release_date":"2026-01-29","temperature":true,"tool_call":true}},"name":"routing.run","npm":"@ai-sdk/openai-compatible"},"sap-ai-core":{"doc":"https://help.sap.com/docs/sap-ai-core","env":["AICORE_SERVICE_KEY"],"id":"sap-ai-core","models":{"anthropic--claude-3-haiku":{"attachment":true,"cost":{"cache_read":0.03,"cache_write":0.3,"input":0.25,"output":1.25},"family":"claude-haiku","id":"anthropic--claude-3-haiku","knowledge":"2023-08-31","last_updated":"2024-03-13","limit":{"context":200000,"output":4096},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"anthropic--claude-3-haiku","open_weights":false,"reasoning":false,"release_date":"2024-03-13","temperature":true,"tool_call":true},"anthropic--claude-3-opus":{"attachment":true,"cost":{"cache_read":1.5,"cache_write":18.75,"input":15,"output":75},"family":"claude-opus","id":"anthropic--claude-3-opus","knowledge":"2023-08-31","last_updated":"2024-02-29","limit":{"context":200000,"output":4096},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"anthropic--claude-3-opus","open_weights":false,"reasoning":false,"release_date":"2024-02-29","temperature":true,"tool_call":true},"anthropic--claude-3-sonnet":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"input":3,"output":15},"family":"claude-sonnet","id":"anthropic--claude-3-sonnet","knowledge":"2023-08-31","last_updated":"2024-03-04","limit":{"context":200000,"output":4096},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"anthropic--claude-3-sonnet","open_weights":false,"reasoning":false,"release_date":"2024-03-04","temperature":true,"tool_call":true},"anthropic--claude-3.5-sonnet":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"input":3,"output":15},"family":"claude-sonnet","id":"anthropic--claude-3.5-sonnet","knowledge":"2024-04-30","last_updated":"2024-10-22","limit":{"context":200000,"output":8192},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"anthropic--claude-3.5-sonnet","open_weights":false,"reasoning":false,"release_date":"2024-10-22","temperature":true,"tool_call":true},"anthropic--claude-3.7-sonnet":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"input":3,"output":15},"family":"claude-sonnet","id":"anthropic--claude-3.7-sonnet","knowledge":"2024-10-31","last_updated":"2025-02-24","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"anthropic--claude-3.7-sonnet","open_weights":false,"reasoning":true,"release_date":"2025-02-24","temperature":true,"tool_call":true},"anthropic--claude-4-opus":{"attachment":true,"cost":{"cache_read":1.5,"cache_write":18.75,"input":15,"output":75},"family":"claude-opus","id":"anthropic--claude-4-opus","knowledge":"2025-03-31","last_updated":"2025-05-22","limit":{"context":200000,"output":32000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"anthropic--claude-4-opus","open_weights":false,"reasoning":true,"release_date":"2025-05-22","temperature":true,"tool_call":true},"anthropic--claude-4-sonnet":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"input":3,"output":15},"family":"claude-sonnet","id":"anthropic--claude-4-sonnet","knowledge":"2025-03-31","last_updated":"2025-05-22","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"anthropic--claude-4-sonnet","open_weights":false,"reasoning":true,"release_date":"2025-05-22","temperature":true,"tool_call":true},"anthropic--claude-4.5-haiku":{"attachment":true,"cost":{"cache_read":0.1,"cache_write":1.25,"input":1,"output":5},"family":"claude-haiku","id":"anthropic--claude-4.5-haiku","knowledge":"2025-02-28","last_updated":"2025-10-15","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"anthropic--claude-4.5-haiku","open_weights":false,"reasoning":true,"release_date":"2025-10-15","temperature":true,"tool_call":true},"anthropic--claude-4.5-opus":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"input":5,"output":25},"family":"claude-opus","id":"anthropic--claude-4.5-opus","knowledge":"2025-05","last_updated":"2025-11-24","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"anthropic--claude-4.5-opus","open_weights":false,"reasoning":true,"release_date":"2025-11-24","temperature":true,"tool_call":true},"anthropic--claude-4.5-sonnet":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"input":3,"output":15},"family":"claude-sonnet","id":"anthropic--claude-4.5-sonnet","knowledge":"2025-07-31","last_updated":"2025-09-29","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"anthropic--claude-4.5-sonnet","open_weights":false,"reasoning":true,"release_date":"2025-09-29","temperature":true,"tool_call":true},"anthropic--claude-4.6-opus":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"input":5,"output":25},"family":"claude-opus","id":"anthropic--claude-4.6-opus","knowledge":"2025-05","last_updated":"2026-03-13","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"anthropic--claude-4.6-opus","open_weights":false,"reasoning":true,"release_date":"2026-02-05","temperature":true,"tool_call":true},"anthropic--claude-4.6-sonnet":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"input":3,"output":15},"family":"claude-sonnet","id":"anthropic--claude-4.6-sonnet","knowledge":"2025-08","last_updated":"2026-03-13","limit":{"context":1000000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"anthropic--claude-4.6-sonnet","open_weights":false,"reasoning":true,"release_date":"2026-02-17","temperature":true,"tool_call":true},"anthropic--claude-4.7-opus":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"input":5,"output":25},"family":"claude-opus","id":"anthropic--claude-4.7-opus","knowledge":"2026-01-31","last_updated":"2026-04-16","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"anthropic--claude-4.7-opus","open_weights":false,"reasoning":true,"release_date":"2026-04-16","temperature":false,"tool_call":true},"gemini-2.5-flash":{"attachment":true,"cost":{"cache_read":0.03,"input":0.3,"input_audio":1,"output":2.5},"family":"gemini-flash","id":"gemini-2.5-flash","knowledge":"2025-01","last_updated":"2025-06-05","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"gemini-2.5-flash","open_weights":false,"reasoning":true,"release_date":"2025-04-17","structured_output":true,"temperature":true,"tool_call":true},"gemini-2.5-flash-lite":{"attachment":true,"cost":{"cache_read":0.01,"input":0.1,"input_audio":0.3,"output":0.4},"family":"gemini-flash-lite","id":"gemini-2.5-flash-lite","knowledge":"2025-01","last_updated":"2025-06-17","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"gemini-2.5-flash-lite","open_weights":false,"reasoning":true,"release_date":"2025-06-17","structured_output":true,"temperature":true,"tool_call":true},"gemini-2.5-pro":{"attachment":true,"cost":{"cache_read":0.125,"input":1.25,"output":10},"family":"gemini-pro","id":"gemini-2.5-pro","knowledge":"2025-01","last_updated":"2025-06-05","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"gemini-2.5-pro","open_weights":false,"reasoning":true,"release_date":"2025-03-25","structured_output":true,"temperature":true,"tool_call":true},"gpt-4.1":{"attachment":true,"cost":{"cache_read":0.5,"input":2,"output":8},"family":"gpt","id":"gpt-4.1","knowledge":"2024-04","last_updated":"2025-04-14","limit":{"context":1047576,"output":32768},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"gpt-4.1","open_weights":false,"reasoning":false,"release_date":"2025-04-14","structured_output":true,"temperature":true,"tool_call":true},"gpt-4.1-mini":{"attachment":true,"cost":{"cache_read":0.1,"input":0.4,"output":1.6},"family":"gpt-mini","id":"gpt-4.1-mini","knowledge":"2024-04","last_updated":"2025-04-14","limit":{"context":1047576,"output":32768},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"gpt-4.1-mini","open_weights":false,"reasoning":false,"release_date":"2025-04-14","structured_output":true,"temperature":true,"tool_call":true},"gpt-5":{"attachment":true,"cost":{"cache_read":0.125,"input":1.25,"output":10},"family":"gpt","id":"gpt-5","knowledge":"2024-09-30","last_updated":"2025-08-07","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"gpt-5","open_weights":false,"reasoning":true,"release_date":"2025-08-07","structured_output":true,"temperature":false,"tool_call":true},"gpt-5-mini":{"attachment":true,"cost":{"cache_read":0.025,"input":0.25,"output":2},"family":"gpt-mini","id":"gpt-5-mini","knowledge":"2024-05-30","last_updated":"2025-08-07","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"gpt-5-mini","open_weights":false,"reasoning":true,"release_date":"2025-08-07","structured_output":true,"temperature":false,"tool_call":true},"gpt-5-nano":{"attachment":true,"cost":{"cache_read":0.005,"input":0.05,"output":0.4},"family":"gpt-nano","id":"gpt-5-nano","knowledge":"2024-05-30","last_updated":"2025-08-07","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"gpt-5-nano","open_weights":false,"reasoning":true,"release_date":"2025-08-07","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.4":{"attachment":true,"cost":{"cache_read":0.25,"input":2.5,"output":15},"family":"gpt","id":"gpt-5.4","knowledge":"2025-08-31","last_updated":"2026-03-05","limit":{"context":1050000,"input":922000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"gpt-5.4","open_weights":false,"reasoning":true,"release_date":"2026-03-05","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.5":{"attachment":true,"cost":{"cache_read":0.5,"input":5,"output":30},"family":"gpt","id":"gpt-5.5","knowledge":"2025-12-01","last_updated":"2026-04-23","limit":{"context":1050000,"input":922000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"gpt-5.5","open_weights":false,"reasoning":true,"release_date":"2026-04-23","structured_output":true,"temperature":false,"tool_call":true},"sonar":{"attachment":false,"cost":{"input":1,"output":1},"family":"sonar","id":"sonar","knowledge":"2025-09-01","last_updated":"2025-09-01","limit":{"context":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"sonar","open_weights":false,"reasoning":false,"release_date":"2024-01-01","temperature":true,"tool_call":false},"sonar-deep-research":{"attachment":false,"cost":{"input":2,"output":8,"reasoning":3},"family":"sonar-deep-research","id":"sonar-deep-research","knowledge":"2025-01","last_updated":"2025-09-01","limit":{"context":128000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"sonar-deep-research","open_weights":false,"reasoning":true,"release_date":"2025-02-01","temperature":false,"tool_call":false},"sonar-pro":{"attachment":true,"cost":{"input":3,"output":15},"family":"sonar-pro","id":"sonar-pro","knowledge":"2025-09-01","last_updated":"2025-09-01","limit":{"context":200000,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"sonar-pro","open_weights":false,"reasoning":false,"release_date":"2024-01-01","temperature":true,"tool_call":false}},"name":"SAP AI Core","npm":"@jerome-benoit/sap-ai-provider-v2"},"sarvam":{"api":"https://api.sarvam.ai/v1","doc":"https://docs.sarvam.ai/api-reference-docs/getting-started/models","env":["SARVAM_API_KEY"],"id":"sarvam","models":{"sarvam-105b":{"attachment":false,"family":"sarvam","id":"sarvam-105b","interleaved":{"field":"reasoning_content"},"last_updated":"2026-03-06","limit":{"context":131072,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"Sarvam-105B","open_weights":true,"reasoning":true,"release_date":"2026-02-18","temperature":true,"tool_call":true},"sarvam-30b":{"attachment":false,"family":"sarvam","id":"sarvam-30b","interleaved":{"field":"reasoning_content"},"last_updated":"2026-03-06","limit":{"context":65536,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Sarvam-30B","open_weights":true,"reasoning":true,"release_date":"2026-02-18","temperature":true,"tool_call":true}},"name":"Sarvam AI","npm":"@ai-sdk/openai-compatible"},"scaleway":{"api":"https://api.scaleway.ai/v1","doc":"https://www.scaleway.com/en/docs/generative-apis/","env":["SCALEWAY_API_KEY"],"id":"scaleway","models":{"bge-multilingual-gemma2":{"attachment":false,"cost":{"input":0.1,"output":0},"family":"gemma","id":"bge-multilingual-gemma2","last_updated":"2025-06-15","limit":{"context":8191,"output":3072},"modalities":{"input":["text"],"output":["text"]},"name":"BGE Multilingual Gemma2","open_weights":false,"reasoning":false,"release_date":"2024-07-26","temperature":false,"tool_call":false},"devstral-2-123b-instruct-2512":{"attachment":false,"cost":{"input":0.4,"output":2},"family":"devstral","id":"devstral-2-123b-instruct-2512","knowledge":"2025-12","last_updated":"2026-03-17","limit":{"context":256000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Devstral 2 123B Instruct (2512)","open_weights":true,"reasoning":false,"release_date":"2026-01-07","status":"deprecated","temperature":true,"tool_call":true},"gemma-3-27b-it":{"attachment":true,"cost":{"input":0.25,"output":0.5},"family":"gemma","id":"gemma-3-27b-it","knowledge":"2024-12","last_updated":"2026-03-17","limit":{"context":40000,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Gemma-3-27B-IT","open_weights":false,"reasoning":true,"release_date":"2024-12-01","temperature":true,"tool_call":true},"gemma-4-26b-a4b-it":{"attachment":true,"cost":{"input":0.25,"output":0.5},"family":"gemma","id":"gemma-4-26b-a4b-it","knowledge":"2025-04","last_updated":"2026-05-22","limit":{"context":256000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"Gemma 4 26B A4B IT","open_weights":true,"reasoning":true,"release_date":"2026-04-01","status":"beta","structured_output":true,"temperature":true,"tool_call":true},"gpt-oss-120b":{"attachment":true,"cost":{"input":0.15,"output":0.6},"family":"gpt-oss","id":"gpt-oss-120b","last_updated":"2026-03-17","limit":{"context":128000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"GPT-OSS 120B","open_weights":true,"reasoning":false,"release_date":"2024-01-01","temperature":true,"tool_call":true},"llama-3.3-70b-instruct":{"attachment":true,"cost":{"input":0.9,"output":0.9},"family":"llama","id":"llama-3.3-70b-instruct","knowledge":"2023-12","last_updated":"2026-03-17","limit":{"context":100000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Llama-3.3-70B-Instruct","open_weights":true,"reasoning":false,"release_date":"2024-12-06","temperature":true,"tool_call":true},"mistral-medium-3.5-128b":{"attachment":true,"cost":{"input":1.5,"output":7.5},"family":"mistral-medium","id":"mistral-medium-3.5-128b","last_updated":"2026-04-29","limit":{"context":256000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"Mistral Medium 3.5 128B","open_weights":true,"reasoning":true,"release_date":"2026-04-29","structured_output":true,"temperature":true,"tool_call":true},"mistral-small-3.2-24b-instruct-2506":{"attachment":false,"cost":{"input":0.15,"output":0.35},"family":"mistral-small","id":"mistral-small-3.2-24b-instruct-2506","knowledge":"2025-03","last_updated":"2026-03-17","limit":{"context":128000,"output":32768},"modalities":{"input":["text","image"],"output":["text"]},"name":"Mistral Small 3.2 24B Instruct (2506)","open_weights":true,"reasoning":false,"release_date":"2025-06-20","temperature":true,"tool_call":true},"pixtral-12b-2409":{"attachment":true,"cost":{"input":0.2,"output":0.2},"family":"pixtral","id":"pixtral-12b-2409","knowledge":"2024-09","last_updated":"2026-03-17","limit":{"context":128000,"output":4096},"modalities":{"input":["text","image"],"output":["text"]},"name":"Pixtral 12B 2409","open_weights":true,"reasoning":false,"release_date":"2024-09-25","temperature":true,"tool_call":true},"qwen3-235b-a22b-instruct-2507":{"attachment":false,"cost":{"input":0.75,"output":2.25,"reasoning":8.4},"family":"qwen","id":"qwen3-235b-a22b-instruct-2507","knowledge":"2025-04","last_updated":"2026-03-17","limit":{"context":260000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 235B A22B Instruct 2507","open_weights":true,"reasoning":true,"release_date":"2025-07-01","temperature":true,"tool_call":true},"qwen3-coder-30b-a3b-instruct":{"attachment":false,"cost":{"input":0.2,"output":0.8},"family":"qwen","id":"qwen3-coder-30b-a3b-instruct","knowledge":"2025-04","last_updated":"2026-03-17","limit":{"context":128000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3-Coder 30B-A3B Instruct","open_weights":true,"reasoning":false,"release_date":"2025-04","temperature":true,"tool_call":true},"qwen3-embedding-8b":{"attachment":false,"cost":{"input":0.1,"output":0},"family":"qwen","id":"qwen3-embedding-8b","last_updated":"2026-03-17","limit":{"context":32768,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Embedding 8B","open_weights":false,"reasoning":false,"release_date":"2025-25-11","temperature":false,"tool_call":false},"qwen3.5-397b-a17b":{"attachment":true,"cost":{"input":0.6,"output":3.6},"family":"qwen","id":"qwen3.5-397b-a17b","knowledge":"2025-04","last_updated":"2026-03-17","limit":{"context":256000,"output":16384},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.5 397B A17B","open_weights":true,"reasoning":true,"release_date":"2026-03-17","structured_output":true,"temperature":true,"tool_call":true},"qwen3.6-35b-a3b":{"attachment":true,"cost":{"input":0.25,"output":1.5},"family":"qwen","id":"qwen3.6-35b-a3b","knowledge":"2025-04","last_updated":"2026-05-22","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen3.6 35B A3B","open_weights":true,"reasoning":true,"release_date":"2026-05-01","status":"beta","structured_output":true,"temperature":true,"tool_call":true},"voxtral-small-24b-2507":{"attachment":true,"cost":{"input":0.15,"output":0.35},"family":"voxtral","id":"voxtral-small-24b-2507","last_updated":"2026-03-17","limit":{"context":32000,"output":16384},"modalities":{"input":["text","audio"],"output":["text"]},"name":"Voxtral Small 24B 2507","open_weights":true,"reasoning":false,"release_date":"2025-07-01","temperature":true,"tool_call":true},"whisper-large-v3":{"attachment":false,"cost":{"input":0.003,"output":0},"family":"whisper","id":"whisper-large-v3","knowledge":"2023-09","last_updated":"2026-03-17","limit":{"context":0,"output":8192},"modalities":{"input":["audio"],"output":["text"]},"name":"Whisper Large v3","open_weights":true,"reasoning":false,"release_date":"2023-09-01","temperature":false,"tool_call":false}},"name":"Scaleway","npm":"@ai-sdk/openai-compatible"},"siliconflow":{"api":"https://api.siliconflow.com/v1","doc":"https://cloud.siliconflow.com/models","env":["SILICONFLOW_API_KEY"],"id":"siliconflow","models":{"ByteDance-Seed/Seed-OSS-36B-Instruct":{"attachment":false,"cost":{"input":0.21,"output":0.57},"family":"seed","id":"ByteDance-Seed/Seed-OSS-36B-Instruct","last_updated":"2025-11-25","limit":{"context":262000,"output":262000},"modalities":{"input":["text"],"output":["text"]},"name":"ByteDance-Seed/Seed-OSS-36B-Instruct","open_weights":false,"reasoning":false,"release_date":"2025-09-04","structured_output":true,"temperature":true,"tool_call":true},"MiniMaxAI/MiniMax-M2.1":{"attachment":false,"cost":{"input":0.3,"output":1.2},"family":"minimax","id":"MiniMaxAI/MiniMax-M2.1","last_updated":"2025-12-23","limit":{"context":197000,"output":131000},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMaxAI/MiniMax-M2.1","open_weights":false,"reasoning":false,"release_date":"2025-12-23","structured_output":true,"temperature":true,"tool_call":true},"MiniMaxAI/MiniMax-M2.5":{"attachment":false,"cost":{"input":0.3,"output":1.2},"family":"minimax","id":"MiniMaxAI/MiniMax-M2.5","last_updated":"2026-02-15","limit":{"context":197000,"output":131000},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMaxAI/MiniMax-M2.5","open_weights":false,"reasoning":false,"release_date":"2026-02-15","structured_output":false,"temperature":true,"tool_call":true},"Qwen/QwQ-32B":{"attachment":false,"cost":{"input":0.15,"output":0.58},"family":"qwen","id":"Qwen/QwQ-32B","last_updated":"2025-11-25","limit":{"context":131000,"output":131000},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen/QwQ-32B","open_weights":false,"reasoning":true,"release_date":"2025-03-06","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen2.5-14B-Instruct":{"attachment":false,"cost":{"input":0.1,"output":0.1},"family":"qwen","id":"Qwen/Qwen2.5-14B-Instruct","last_updated":"2025-11-25","limit":{"context":33000,"output":4000},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen/Qwen2.5-14B-Instruct","open_weights":false,"reasoning":false,"release_date":"2024-09-18","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen2.5-32B-Instruct":{"attachment":false,"cost":{"input":0.18,"output":0.18},"family":"qwen","id":"Qwen/Qwen2.5-32B-Instruct","last_updated":"2025-11-25","limit":{"context":33000,"output":4000},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen/Qwen2.5-32B-Instruct","open_weights":false,"reasoning":false,"release_date":"2024-09-19","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen2.5-72B-Instruct":{"attachment":false,"cost":{"input":0.59,"output":0.59},"family":"qwen","id":"Qwen/Qwen2.5-72B-Instruct","last_updated":"2025-11-25","limit":{"context":33000,"output":4000},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen/Qwen2.5-72B-Instruct","open_weights":false,"reasoning":false,"release_date":"2024-09-18","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen2.5-72B-Instruct-128K":{"attachment":false,"cost":{"input":0.59,"output":0.59},"family":"qwen","id":"Qwen/Qwen2.5-72B-Instruct-128K","last_updated":"2025-11-25","limit":{"context":131000,"output":4000},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen/Qwen2.5-72B-Instruct-128K","open_weights":false,"reasoning":false,"release_date":"2024-09-18","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen2.5-7B-Instruct":{"attachment":false,"cost":{"input":0.05,"output":0.05},"family":"qwen","id":"Qwen/Qwen2.5-7B-Instruct","last_updated":"2025-11-25","limit":{"context":33000,"output":4000},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen/Qwen2.5-7B-Instruct","open_weights":false,"reasoning":false,"release_date":"2024-09-18","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen2.5-Coder-32B-Instruct":{"attachment":false,"cost":{"input":0.18,"output":0.18},"family":"qwen","id":"Qwen/Qwen2.5-Coder-32B-Instruct","last_updated":"2025-11-25","limit":{"context":33000,"output":4000},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen/Qwen2.5-Coder-32B-Instruct","open_weights":false,"reasoning":false,"release_date":"2024-11-11","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen2.5-VL-32B-Instruct":{"attachment":true,"cost":{"input":0.27,"output":0.27},"family":"qwen","id":"Qwen/Qwen2.5-VL-32B-Instruct","last_updated":"2025-11-25","limit":{"context":131000,"output":131000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen/Qwen2.5-VL-32B-Instruct","open_weights":false,"reasoning":false,"release_date":"2025-03-24","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen2.5-VL-72B-Instruct":{"attachment":true,"cost":{"input":0.59,"output":0.59},"family":"qwen","id":"Qwen/Qwen2.5-VL-72B-Instruct","last_updated":"2025-11-25","limit":{"context":131000,"output":4000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen/Qwen2.5-VL-72B-Instruct","open_weights":false,"reasoning":false,"release_date":"2025-01-28","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen2.5-VL-7B-Instruct":{"attachment":true,"cost":{"input":0.05,"output":0.05},"family":"qwen","id":"Qwen/Qwen2.5-VL-7B-Instruct","last_updated":"2025-11-25","limit":{"context":33000,"output":4000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen/Qwen2.5-VL-7B-Instruct","open_weights":false,"reasoning":false,"release_date":"2025-01-28","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen3-14B":{"attachment":false,"cost":{"input":0.07,"output":0.28},"family":"qwen","id":"Qwen/Qwen3-14B","last_updated":"2025-11-25","limit":{"context":131000,"output":131000},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen/Qwen3-14B","open_weights":false,"reasoning":false,"release_date":"2025-04-30","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen3-235B-A22B":{"attachment":false,"cost":{"input":0.35,"output":1.42},"family":"qwen","id":"Qwen/Qwen3-235B-A22B","last_updated":"2025-11-25","limit":{"context":131000,"output":131000},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen/Qwen3-235B-A22B","open_weights":false,"reasoning":false,"release_date":"2025-04-30","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen3-235B-A22B-Instruct-2507":{"attachment":false,"cost":{"input":0.09,"output":0.6},"family":"qwen","id":"Qwen/Qwen3-235B-A22B-Instruct-2507","last_updated":"2025-11-25","limit":{"context":262000,"output":262000},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen/Qwen3-235B-A22B-Instruct-2507","open_weights":false,"reasoning":false,"release_date":"2025-07-23","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen3-235B-A22B-Thinking-2507":{"attachment":false,"cost":{"input":0.13,"output":0.6},"family":"qwen","id":"Qwen/Qwen3-235B-A22B-Thinking-2507","last_updated":"2025-11-25","limit":{"context":262000,"output":262000},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen/Qwen3-235B-A22B-Thinking-2507","open_weights":false,"reasoning":true,"release_date":"2025-07-28","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen3-30B-A3B-Instruct-2507":{"attachment":false,"cost":{"input":0.09,"output":0.3},"family":"qwen","id":"Qwen/Qwen3-30B-A3B-Instruct-2507","last_updated":"2025-11-25","limit":{"context":262000,"output":262000},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen/Qwen3-30B-A3B-Instruct-2507","open_weights":false,"reasoning":false,"release_date":"2025-07-30","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen3-30B-A3B-Thinking-2507":{"attachment":false,"cost":{"input":0.09,"output":0.3},"family":"qwen","id":"Qwen/Qwen3-30B-A3B-Thinking-2507","last_updated":"2025-11-25","limit":{"context":262000,"output":131000},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen/Qwen3-30B-A3B-Thinking-2507","open_weights":false,"reasoning":true,"release_date":"2025-07-31","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen3-32B":{"attachment":false,"cost":{"input":0.14,"output":0.57},"family":"qwen","id":"Qwen/Qwen3-32B","last_updated":"2025-11-25","limit":{"context":131000,"output":131000},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen/Qwen3-32B","open_weights":false,"reasoning":false,"release_date":"2025-04-30","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen3-8B":{"attachment":false,"cost":{"input":0.06,"output":0.06},"family":"qwen","id":"Qwen/Qwen3-8B","last_updated":"2025-11-25","limit":{"context":131000,"output":131000},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen/Qwen3-8B","open_weights":false,"reasoning":false,"release_date":"2025-04-30","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen3-Coder-30B-A3B-Instruct":{"attachment":false,"cost":{"input":0.07,"output":0.28},"family":"qwen","id":"Qwen/Qwen3-Coder-30B-A3B-Instruct","last_updated":"2025-11-25","limit":{"context":262000,"output":262000},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen/Qwen3-Coder-30B-A3B-Instruct","open_weights":false,"reasoning":false,"release_date":"2025-08-01","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen3-Coder-480B-A35B-Instruct":{"attachment":false,"cost":{"input":0.25,"output":1},"family":"qwen","id":"Qwen/Qwen3-Coder-480B-A35B-Instruct","last_updated":"2025-11-25","limit":{"context":262000,"output":262000},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen/Qwen3-Coder-480B-A35B-Instruct","open_weights":false,"reasoning":false,"release_date":"2025-07-31","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen3-Next-80B-A3B-Instruct":{"attachment":false,"cost":{"input":0.14,"output":1.4},"family":"qwen","id":"Qwen/Qwen3-Next-80B-A3B-Instruct","last_updated":"2025-11-25","limit":{"context":262000,"output":262000},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen/Qwen3-Next-80B-A3B-Instruct","open_weights":false,"reasoning":false,"release_date":"2025-09-18","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen3-Next-80B-A3B-Thinking":{"attachment":false,"cost":{"input":0.14,"output":0.57},"family":"qwen","id":"Qwen/Qwen3-Next-80B-A3B-Thinking","last_updated":"2025-11-25","limit":{"context":262000,"output":262000},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen/Qwen3-Next-80B-A3B-Thinking","open_weights":false,"reasoning":true,"release_date":"2025-09-25","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen3-Omni-30B-A3B-Captioner":{"attachment":true,"cost":{"input":0.1,"output":0.4},"family":"qwen","id":"Qwen/Qwen3-Omni-30B-A3B-Captioner","last_updated":"2025-11-25","limit":{"context":66000,"output":66000},"modalities":{"input":["audio"],"output":["text"]},"name":"Qwen/Qwen3-Omni-30B-A3B-Captioner","open_weights":false,"reasoning":false,"release_date":"2025-10-04","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen3-Omni-30B-A3B-Instruct":{"attachment":true,"cost":{"input":0.1,"output":0.4},"family":"qwen","id":"Qwen/Qwen3-Omni-30B-A3B-Instruct","last_updated":"2025-11-25","limit":{"context":66000,"output":66000},"modalities":{"input":["text","image","audio"],"output":["text"]},"name":"Qwen/Qwen3-Omni-30B-A3B-Instruct","open_weights":false,"reasoning":false,"release_date":"2025-10-04","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen3-Omni-30B-A3B-Thinking":{"attachment":true,"cost":{"input":0.1,"output":0.4},"family":"qwen","id":"Qwen/Qwen3-Omni-30B-A3B-Thinking","last_updated":"2025-11-25","limit":{"context":66000,"output":66000},"modalities":{"input":["text","image","audio"],"output":["text"]},"name":"Qwen/Qwen3-Omni-30B-A3B-Thinking","open_weights":false,"reasoning":true,"release_date":"2025-10-04","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen3-VL-235B-A22B-Instruct":{"attachment":true,"cost":{"input":0.3,"output":1.5},"family":"qwen","id":"Qwen/Qwen3-VL-235B-A22B-Instruct","last_updated":"2025-11-25","limit":{"context":262000,"output":262000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen/Qwen3-VL-235B-A22B-Instruct","open_weights":false,"reasoning":false,"release_date":"2025-10-04","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen3-VL-235B-A22B-Thinking":{"attachment":true,"cost":{"input":0.45,"output":3.5},"family":"qwen","id":"Qwen/Qwen3-VL-235B-A22B-Thinking","last_updated":"2025-11-25","limit":{"context":262000,"output":262000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen/Qwen3-VL-235B-A22B-Thinking","open_weights":false,"reasoning":true,"release_date":"2025-10-04","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen3-VL-30B-A3B-Instruct":{"attachment":true,"cost":{"input":0.29,"output":1},"family":"qwen","id":"Qwen/Qwen3-VL-30B-A3B-Instruct","last_updated":"2025-11-25","limit":{"context":262000,"output":262000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen/Qwen3-VL-30B-A3B-Instruct","open_weights":false,"reasoning":false,"release_date":"2025-10-05","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen3-VL-30B-A3B-Thinking":{"attachment":true,"cost":{"input":0.29,"output":1},"family":"qwen","id":"Qwen/Qwen3-VL-30B-A3B-Thinking","last_updated":"2025-11-25","limit":{"context":262000,"output":262000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen/Qwen3-VL-30B-A3B-Thinking","open_weights":false,"reasoning":true,"release_date":"2025-10-11","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen3-VL-32B-Instruct":{"attachment":true,"cost":{"input":0.2,"output":0.6},"family":"qwen","id":"Qwen/Qwen3-VL-32B-Instruct","last_updated":"2025-11-25","limit":{"context":262000,"output":262000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen/Qwen3-VL-32B-Instruct","open_weights":false,"reasoning":false,"release_date":"2025-10-21","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen3-VL-32B-Thinking":{"attachment":true,"cost":{"input":0.2,"output":1.5},"family":"qwen","id":"Qwen/Qwen3-VL-32B-Thinking","last_updated":"2025-11-25","limit":{"context":262000,"output":262000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen/Qwen3-VL-32B-Thinking","open_weights":false,"reasoning":true,"release_date":"2025-10-21","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen3-VL-8B-Instruct":{"attachment":true,"cost":{"input":0.18,"output":0.68},"family":"qwen","id":"Qwen/Qwen3-VL-8B-Instruct","last_updated":"2025-11-25","limit":{"context":262000,"output":262000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen/Qwen3-VL-8B-Instruct","open_weights":false,"reasoning":false,"release_date":"2025-10-15","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen3-VL-8B-Thinking":{"attachment":true,"cost":{"input":0.18,"output":2},"family":"qwen","id":"Qwen/Qwen3-VL-8B-Thinking","last_updated":"2025-11-25","limit":{"context":262000,"output":262000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen/Qwen3-VL-8B-Thinking","open_weights":false,"reasoning":true,"release_date":"2025-10-15","structured_output":true,"temperature":true,"tool_call":true},"THUDM/GLM-4-32B-0414":{"attachment":false,"cost":{"input":0.27,"output":0.27},"family":"glm","id":"THUDM/GLM-4-32B-0414","last_updated":"2025-11-25","limit":{"context":33000,"output":33000},"modalities":{"input":["text"],"output":["text"]},"name":"THUDM/GLM-4-32B-0414","open_weights":false,"reasoning":false,"release_date":"2025-04-18","structured_output":true,"temperature":true,"tool_call":true},"THUDM/GLM-4-9B-0414":{"attachment":false,"cost":{"input":0.086,"output":0.086},"family":"glm","id":"THUDM/GLM-4-9B-0414","last_updated":"2025-11-25","limit":{"context":33000,"output":33000},"modalities":{"input":["text"],"output":["text"]},"name":"THUDM/GLM-4-9B-0414","open_weights":false,"reasoning":false,"release_date":"2025-04-18","structured_output":true,"temperature":true,"tool_call":true},"THUDM/GLM-Z1-32B-0414":{"attachment":false,"cost":{"input":0.14,"output":0.57},"family":"glm-z","id":"THUDM/GLM-Z1-32B-0414","last_updated":"2025-11-25","limit":{"context":131000,"output":131000},"modalities":{"input":["text"],"output":["text"]},"name":"THUDM/GLM-Z1-32B-0414","open_weights":false,"reasoning":true,"release_date":"2025-04-18","structured_output":true,"temperature":true,"tool_call":true},"THUDM/GLM-Z1-9B-0414":{"attachment":false,"cost":{"input":0.086,"output":0.086},"family":"glm-z","id":"THUDM/GLM-Z1-9B-0414","last_updated":"2025-11-25","limit":{"context":131000,"output":131000},"modalities":{"input":["text"],"output":["text"]},"name":"THUDM/GLM-Z1-9B-0414","open_weights":false,"reasoning":true,"release_date":"2025-04-18","structured_output":true,"temperature":true,"tool_call":true},"baidu/ERNIE-4.5-300B-A47B":{"attachment":false,"cost":{"input":0.28,"output":1.1},"family":"ernie","id":"baidu/ERNIE-4.5-300B-A47B","last_updated":"2025-11-25","limit":{"context":131000,"output":131000},"modalities":{"input":["text"],"output":["text"]},"name":"baidu/ERNIE-4.5-300B-A47B","open_weights":false,"reasoning":false,"release_date":"2025-07-02","structured_output":true,"temperature":true,"tool_call":true},"deepseek-ai/DeepSeek-R1":{"attachment":false,"cost":{"input":0.5,"output":2.18},"family":"deepseek-thinking","id":"deepseek-ai/DeepSeek-R1","last_updated":"2025-11-25","limit":{"context":164000,"output":164000},"modalities":{"input":["text"],"output":["text"]},"name":"deepseek-ai/DeepSeek-R1","open_weights":false,"reasoning":true,"release_date":"2025-05-28","structured_output":true,"temperature":true,"tool_call":true},"deepseek-ai/DeepSeek-R1-Distill-Qwen-14B":{"attachment":false,"cost":{"input":0.1,"output":0.1},"family":"qwen","id":"deepseek-ai/DeepSeek-R1-Distill-Qwen-14B","last_updated":"2025-11-25","limit":{"context":131000,"output":131000},"modalities":{"input":["text"],"output":["text"]},"name":"deepseek-ai/DeepSeek-R1-Distill-Qwen-14B","open_weights":false,"reasoning":true,"release_date":"2025-01-20","structured_output":true,"temperature":true,"tool_call":true},"deepseek-ai/DeepSeek-R1-Distill-Qwen-32B":{"attachment":false,"cost":{"input":0.18,"output":0.18},"family":"qwen","id":"deepseek-ai/DeepSeek-R1-Distill-Qwen-32B","last_updated":"2025-11-25","limit":{"context":131000,"output":131000},"modalities":{"input":["text"],"output":["text"]},"name":"deepseek-ai/DeepSeek-R1-Distill-Qwen-32B","open_weights":false,"reasoning":true,"release_date":"2025-01-20","structured_output":true,"temperature":true,"tool_call":true},"deepseek-ai/DeepSeek-V3":{"attachment":false,"cost":{"input":0.25,"output":1},"family":"deepseek","id":"deepseek-ai/DeepSeek-V3","last_updated":"2025-11-25","limit":{"context":164000,"output":164000},"modalities":{"input":["text"],"output":["text"]},"name":"deepseek-ai/DeepSeek-V3","open_weights":false,"reasoning":false,"release_date":"2024-12-26","structured_output":true,"temperature":true,"tool_call":true},"deepseek-ai/DeepSeek-V3.1":{"attachment":false,"cost":{"input":0.27,"output":1},"family":"deepseek","id":"deepseek-ai/DeepSeek-V3.1","last_updated":"2025-11-25","limit":{"context":164000,"output":164000},"modalities":{"input":["text"],"output":["text"]},"name":"deepseek-ai/DeepSeek-V3.1","open_weights":false,"reasoning":true,"release_date":"2025-08-25","structured_output":true,"temperature":true,"tool_call":true},"deepseek-ai/DeepSeek-V3.1-Terminus":{"attachment":false,"cost":{"input":0.27,"output":1},"family":"deepseek","id":"deepseek-ai/DeepSeek-V3.1-Terminus","last_updated":"2025-11-25","limit":{"context":164000,"output":164000},"modalities":{"input":["text"],"output":["text"]},"name":"deepseek-ai/DeepSeek-V3.1-Terminus","open_weights":false,"reasoning":true,"release_date":"2025-09-29","structured_output":true,"temperature":true,"tool_call":true},"deepseek-ai/DeepSeek-V3.2":{"attachment":false,"cost":{"input":0.27,"output":0.42},"family":"deepseek","id":"deepseek-ai/DeepSeek-V3.2","last_updated":"2025-12-03","limit":{"context":164000,"output":164000},"modalities":{"input":["text"],"output":["text"]},"name":"deepseek-ai/DeepSeek-V3.2","open_weights":false,"reasoning":true,"release_date":"2025-12-03","structured_output":true,"temperature":true,"tool_call":true},"deepseek-ai/DeepSeek-V3.2-Exp":{"attachment":false,"cost":{"input":0.27,"output":0.41},"family":"deepseek","id":"deepseek-ai/DeepSeek-V3.2-Exp","last_updated":"2025-11-25","limit":{"context":164000,"output":164000},"modalities":{"input":["text"],"output":["text"]},"name":"deepseek-ai/DeepSeek-V3.2-Exp","open_weights":false,"reasoning":true,"release_date":"2025-10-10","structured_output":true,"temperature":true,"tool_call":true},"deepseek-ai/deepseek-v4-flash":{"attachment":false,"cost":{"cache_read":0.028,"input":0.14,"output":0.28},"family":"deepseek-flash","id":"deepseek-ai/deepseek-v4-flash","interleaved":{"field":"reasoning_content"},"knowledge":"2025-05","last_updated":"2026-04-24","limit":{"context":1000000,"output":384000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V4 Flash","open_weights":true,"reasoning":true,"release_date":"2026-04-24","structured_output":true,"temperature":true,"tool_call":true},"deepseek-ai/deepseek-v4-pro":{"attachment":false,"cost":{"cache_read":0.145,"input":1.74,"output":3.48},"family":"deepseek-thinking","id":"deepseek-ai/deepseek-v4-pro","interleaved":{"field":"reasoning_content"},"knowledge":"2025-05","last_updated":"2026-04-24","limit":{"context":1000000,"output":384000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V4 Pro","open_weights":true,"reasoning":true,"release_date":"2026-04-24","structured_output":true,"temperature":true,"tool_call":true},"deepseek-ai/deepseek-vl2":{"attachment":true,"cost":{"input":0.15,"output":0.15},"family":"deepseek","id":"deepseek-ai/deepseek-vl2","last_updated":"2025-11-25","limit":{"context":4000,"output":4000},"modalities":{"input":["text","image"],"output":["text"]},"name":"deepseek-ai/deepseek-vl2","open_weights":false,"reasoning":false,"release_date":"2024-12-13","structured_output":true,"temperature":true,"tool_call":true},"inclusionAI/Ling-flash-2.0":{"attachment":false,"cost":{"input":0.14,"output":0.57},"family":"ling","id":"inclusionAI/Ling-flash-2.0","last_updated":"2025-11-25","limit":{"context":131000,"output":131000},"modalities":{"input":["text"],"output":["text"]},"name":"inclusionAI/Ling-flash-2.0","open_weights":false,"reasoning":false,"release_date":"2025-09-18","structured_output":true,"temperature":true,"tool_call":true},"inclusionAI/Ling-mini-2.0":{"attachment":false,"cost":{"input":0.07,"output":0.28},"family":"ling","id":"inclusionAI/Ling-mini-2.0","last_updated":"2025-11-25","limit":{"context":131000,"output":131000},"modalities":{"input":["text"],"output":["text"]},"name":"inclusionAI/Ling-mini-2.0","open_weights":false,"reasoning":false,"release_date":"2025-09-10","structured_output":true,"temperature":true,"tool_call":true},"inclusionAI/Ring-flash-2.0":{"attachment":false,"cost":{"input":0.14,"output":0.57},"family":"ring","id":"inclusionAI/Ring-flash-2.0","last_updated":"2025-11-25","limit":{"context":131000,"output":131000},"modalities":{"input":["text"],"output":["text"]},"name":"inclusionAI/Ring-flash-2.0","open_weights":false,"reasoning":true,"release_date":"2025-09-29","structured_output":true,"temperature":true,"tool_call":true},"meta-llama/Meta-Llama-3.1-8B-Instruct":{"attachment":false,"cost":{"input":0.06,"output":0.06},"family":"llama","id":"meta-llama/Meta-Llama-3.1-8B-Instruct","last_updated":"2025-11-25","limit":{"context":33000,"output":4000},"modalities":{"input":["text"],"output":["text"]},"name":"meta-llama/Meta-Llama-3.1-8B-Instruct","open_weights":false,"reasoning":false,"release_date":"2025-04-23","structured_output":true,"temperature":true,"tool_call":true},"moonshotai/Kimi-K2-Instruct":{"attachment":false,"cost":{"input":0.58,"output":2.29},"family":"kimi","id":"moonshotai/Kimi-K2-Instruct","last_updated":"2025-11-25","limit":{"context":131000,"output":131000},"modalities":{"input":["text"],"output":["text"]},"name":"moonshotai/Kimi-K2-Instruct","open_weights":false,"reasoning":false,"release_date":"2025-07-13","structured_output":true,"temperature":true,"tool_call":true},"moonshotai/Kimi-K2-Instruct-0905":{"attachment":false,"cost":{"input":0.4,"output":2},"family":"kimi","id":"moonshotai/Kimi-K2-Instruct-0905","last_updated":"2025-11-25","limit":{"context":262000,"output":262000},"modalities":{"input":["text"],"output":["text"]},"name":"moonshotai/Kimi-K2-Instruct-0905","open_weights":false,"reasoning":false,"release_date":"2025-09-08","structured_output":true,"temperature":true,"tool_call":true},"moonshotai/Kimi-K2-Thinking":{"attachment":false,"cost":{"input":0.55,"output":2.5},"family":"kimi-thinking","id":"moonshotai/Kimi-K2-Thinking","last_updated":"2025-11-25","limit":{"context":262000,"output":262000},"modalities":{"input":["text"],"output":["text"]},"name":"moonshotai/Kimi-K2-Thinking","open_weights":false,"reasoning":true,"release_date":"2025-11-07","structured_output":true,"temperature":true,"tool_call":true},"moonshotai/Kimi-K2.5":{"attachment":false,"cost":{"input":0.45,"output":2.25},"family":"kimi","id":"moonshotai/Kimi-K2.5","interleaved":{"field":"reasoning_content"},"last_updated":"2026-01-27","limit":{"context":262000,"output":262000},"modalities":{"input":["text","image"],"output":["text"]},"name":"moonshotai/Kimi-K2.5","open_weights":true,"reasoning":true,"release_date":"2026-01-27","structured_output":true,"temperature":true,"tool_call":true},"moonshotai/Kimi-K2.6":{"attachment":false,"cost":{"cache_read":0.16,"input":0.95,"output":4},"family":"kimi","id":"moonshotai/Kimi-K2.6","interleaved":{"field":"reasoning_content"},"last_updated":"2026-04-21","limit":{"context":262000,"output":262000},"modalities":{"input":["text","image"],"output":["text"]},"name":"moonshotai/Kimi-K2.6","open_weights":true,"reasoning":true,"release_date":"2026-04-21","structured_output":true,"temperature":true,"tool_call":true},"nex-agi/DeepSeek-V3.1-Nex-N1":{"attachment":false,"cost":{"input":0.5,"output":2},"family":"deepseek","id":"nex-agi/DeepSeek-V3.1-Nex-N1","last_updated":"2025-11-25","limit":{"context":131000,"output":131000},"modalities":{"input":["text"],"output":["text"]},"name":"nex-agi/DeepSeek-V3.1-Nex-N1","open_weights":false,"reasoning":true,"release_date":"2025-01-01","structured_output":true,"temperature":true,"tool_call":true},"openai/gpt-oss-120b":{"attachment":false,"cost":{"input":0.05,"output":0.45},"family":"gpt-oss","id":"openai/gpt-oss-120b","last_updated":"2025-11-25","limit":{"context":131000,"output":8000},"modalities":{"input":["text"],"output":["text"]},"name":"openai/gpt-oss-120b","open_weights":false,"reasoning":true,"release_date":"2025-08-13","structured_output":true,"temperature":true,"tool_call":true},"openai/gpt-oss-20b":{"attachment":false,"cost":{"input":0.04,"output":0.18},"family":"gpt-oss","id":"openai/gpt-oss-20b","last_updated":"2025-11-25","limit":{"context":131000,"output":8000},"modalities":{"input":["text"],"output":["text"]},"name":"openai/gpt-oss-20b","open_weights":false,"reasoning":false,"release_date":"2025-08-13","structured_output":true,"temperature":true,"tool_call":true},"stepfun-ai/Step-3.5-Flash":{"attachment":false,"cost":{"input":0.1,"output":0.3},"family":"step","id":"stepfun-ai/Step-3.5-Flash","last_updated":"2026-02-11","limit":{"context":262000,"output":262000},"modalities":{"input":["text"],"output":["text"]},"name":"stepfun-ai/Step-3.5-Flash","open_weights":false,"reasoning":true,"release_date":"2026-02-11","structured_output":true,"temperature":true,"tool_call":true},"tencent/Hunyuan-A13B-Instruct":{"attachment":false,"cost":{"input":0.14,"output":0.57},"family":"hunyuan","id":"tencent/Hunyuan-A13B-Instruct","last_updated":"2025-11-25","limit":{"context":131000,"output":131000},"modalities":{"input":["text"],"output":["text"]},"name":"tencent/Hunyuan-A13B-Instruct","open_weights":false,"reasoning":false,"release_date":"2025-06-30","structured_output":true,"temperature":true,"tool_call":true},"tencent/Hunyuan-MT-7B":{"attachment":false,"cost":{"input":0,"output":0},"family":"hunyuan","id":"tencent/Hunyuan-MT-7B","last_updated":"2025-11-25","limit":{"context":33000,"output":33000},"modalities":{"input":["text"],"output":["text"]},"name":"tencent/Hunyuan-MT-7B","open_weights":false,"reasoning":false,"release_date":"2025-09-18","structured_output":true,"temperature":true,"tool_call":true},"zai-org/GLM-4.5":{"attachment":false,"cost":{"input":0.4,"output":2},"family":"glm","id":"zai-org/GLM-4.5","last_updated":"2025-11-25","limit":{"context":131000,"output":131000},"modalities":{"input":["text"],"output":["text"]},"name":"zai-org/GLM-4.5","open_weights":false,"reasoning":false,"release_date":"2025-07-28","structured_output":true,"temperature":true,"tool_call":true},"zai-org/GLM-4.5-Air":{"attachment":false,"cost":{"input":0.14,"output":0.86},"family":"glm-air","id":"zai-org/GLM-4.5-Air","last_updated":"2025-11-25","limit":{"context":131000,"output":131000},"modalities":{"input":["text"],"output":["text"]},"name":"zai-org/GLM-4.5-Air","open_weights":false,"reasoning":false,"release_date":"2025-07-28","structured_output":true,"temperature":true,"tool_call":true},"zai-org/GLM-4.5V":{"attachment":true,"cost":{"input":0.14,"output":0.86},"family":"glm","id":"zai-org/GLM-4.5V","last_updated":"2025-11-25","limit":{"context":66000,"output":66000},"modalities":{"input":["text","image"],"output":["text"]},"name":"zai-org/GLM-4.5V","open_weights":false,"reasoning":false,"release_date":"2025-08-13","structured_output":true,"temperature":true,"tool_call":true},"zai-org/GLM-4.6":{"attachment":false,"cost":{"input":0.5,"output":1.9},"family":"glm","id":"zai-org/GLM-4.6","last_updated":"2025-11-25","limit":{"context":205000,"output":205000},"modalities":{"input":["text"],"output":["text"]},"name":"zai-org/GLM-4.6","open_weights":false,"reasoning":false,"release_date":"2025-10-04","structured_output":true,"temperature":true,"tool_call":true},"zai-org/GLM-4.6V":{"attachment":true,"cost":{"input":0.3,"output":0.9},"family":"glm","id":"zai-org/GLM-4.6V","last_updated":"2025-12-07","limit":{"context":131000,"output":131000},"modalities":{"input":["text","image"],"output":["text"]},"name":"zai-org/GLM-4.6V","open_weights":false,"reasoning":true,"release_date":"2025-12-07","structured_output":false,"temperature":true,"tool_call":true},"zai-org/GLM-4.7":{"attachment":false,"cost":{"input":0.6,"output":2.2},"family":"glm","id":"zai-org/GLM-4.7","interleaved":{"field":"reasoning_content"},"last_updated":"2025-12-22","limit":{"context":205000,"output":205000},"modalities":{"input":["text"],"output":["text"]},"name":"zai-org/GLM-4.7","open_weights":false,"reasoning":true,"release_date":"2025-12-22","structured_output":true,"temperature":true,"tool_call":true},"zai-org/GLM-5":{"attachment":false,"cost":{"input":1,"output":3.2},"family":"glm","id":"zai-org/GLM-5","interleaved":{"field":"reasoning_content"},"last_updated":"2026-02-12","limit":{"context":205000,"output":205000},"modalities":{"input":["text"],"output":["text"]},"name":"zai-org/GLM-5","open_weights":true,"reasoning":true,"release_date":"2026-02-12","structured_output":true,"temperature":true,"tool_call":true},"zai-org/GLM-5.1":{"attachment":false,"cost":{"cache_write":0,"input":1.4,"output":4.4},"family":"glm","id":"zai-org/GLM-5.1","interleaved":{"field":"reasoning_content"},"last_updated":"2026-04-08","limit":{"context":205000,"output":205000},"modalities":{"input":["text"],"output":["text"]},"name":"zai-org/GLM-5.1","open_weights":true,"reasoning":true,"release_date":"2026-04-08","structured_output":true,"temperature":true,"tool_call":true},"zai-org/GLM-5V-Turbo":{"attachment":true,"cost":{"cache_write":0,"input":1.2,"output":4},"family":"glm","id":"zai-org/GLM-5V-Turbo","interleaved":{"field":"reasoning_content"},"last_updated":"2026-04-01","limit":{"context":200000,"output":131072},"modalities":{"input":["text","image"],"output":["text"]},"name":"zai-org/GLM-5V-Turbo","open_weights":false,"reasoning":true,"release_date":"2026-04-01","temperature":true,"tool_call":true}},"name":"SiliconFlow","npm":"@ai-sdk/openai-compatible"},"siliconflow-cn":{"api":"https://api.siliconflow.cn/v1","doc":"https://cloud.siliconflow.com/models","env":["SILICONFLOW_CN_API_KEY"],"id":"siliconflow-cn","models":{"ByteDance-Seed/Seed-OSS-36B-Instruct":{"attachment":false,"cost":{"input":0.21,"output":0.57},"family":"seed","id":"ByteDance-Seed/Seed-OSS-36B-Instruct","last_updated":"2025-11-25","limit":{"context":262000,"output":262000},"modalities":{"input":["text"],"output":["text"]},"name":"ByteDance-Seed/Seed-OSS-36B-Instruct","open_weights":false,"reasoning":false,"release_date":"2025-09-04","structured_output":true,"temperature":true,"tool_call":true},"Kwaipilot/KAT-Dev":{"attachment":false,"cost":{"input":0.2,"output":0.6},"family":"kat-coder","id":"Kwaipilot/KAT-Dev","last_updated":"2026-01-16","limit":{"context":128000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"Kwaipilot/KAT-Dev","open_weights":false,"reasoning":false,"release_date":"2025-09-27","structured_output":true,"temperature":true,"tool_call":true},"PaddlePaddle/PaddleOCR-VL":{"attachment":true,"cost":{"input":0,"output":0},"id":"PaddlePaddle/PaddleOCR-VL","last_updated":"2025-10-16","limit":{"context":16384,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"PaddlePaddle/PaddleOCR-VL","open_weights":true,"reasoning":false,"release_date":"2025-10-16","temperature":true,"tool_call":false},"PaddlePaddle/PaddleOCR-VL-1.5":{"attachment":true,"cost":{"input":0,"output":0},"id":"PaddlePaddle/PaddleOCR-VL-1.5","last_updated":"2026-01-29","limit":{"context":16384,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"PaddlePaddle/PaddleOCR-VL-1.5","open_weights":true,"reasoning":false,"release_date":"2026-01-29","temperature":true,"tool_call":false},"Pro/MiniMaxAI/MiniMax-M2.1":{"attachment":false,"cost":{"input":0.3,"output":1.2},"family":"minimax","id":"Pro/MiniMaxAI/MiniMax-M2.1","last_updated":"2025-12-23","limit":{"context":197000,"output":131000},"modalities":{"input":["text"],"output":["text"]},"name":"Pro/MiniMaxAI/MiniMax-M2.1","open_weights":false,"reasoning":false,"release_date":"2025-12-23","structured_output":true,"temperature":true,"tool_call":true},"Pro/MiniMaxAI/MiniMax-M2.5":{"attachment":false,"cost":{"input":0.3,"output":1.22},"family":"minimax","id":"Pro/MiniMaxAI/MiniMax-M2.5","interleaved":{"field":"reasoning_content"},"last_updated":"2026-02-13","limit":{"context":192000,"output":131000},"modalities":{"input":["text"],"output":["text"]},"name":"Pro/MiniMaxAI/MiniMax-M2.5","open_weights":false,"reasoning":false,"release_date":"2026-02-13","structured_output":true,"temperature":true,"tool_call":true},"Pro/deepseek-ai/DeepSeek-R1":{"attachment":false,"cost":{"input":0.5,"output":2.18},"family":"deepseek-thinking","id":"Pro/deepseek-ai/DeepSeek-R1","last_updated":"2025-11-25","limit":{"context":164000,"output":164000},"modalities":{"input":["text"],"output":["text"]},"name":"Pro/deepseek-ai/DeepSeek-R1","open_weights":false,"reasoning":true,"release_date":"2025-05-28","structured_output":true,"temperature":true,"tool_call":true},"Pro/deepseek-ai/DeepSeek-V3":{"attachment":false,"cost":{"input":0.25,"output":1},"family":"deepseek","id":"Pro/deepseek-ai/DeepSeek-V3","last_updated":"2025-11-25","limit":{"context":164000,"output":164000},"modalities":{"input":["text"],"output":["text"]},"name":"Pro/deepseek-ai/DeepSeek-V3","open_weights":false,"reasoning":false,"release_date":"2024-12-26","structured_output":true,"temperature":true,"tool_call":true},"Pro/deepseek-ai/DeepSeek-V3.1-Terminus":{"attachment":false,"cost":{"input":0.27,"output":1},"family":"deepseek","id":"Pro/deepseek-ai/DeepSeek-V3.1-Terminus","last_updated":"2025-11-25","limit":{"context":164000,"output":164000},"modalities":{"input":["text"],"output":["text"]},"name":"Pro/deepseek-ai/DeepSeek-V3.1-Terminus","open_weights":false,"reasoning":true,"release_date":"2025-09-29","structured_output":true,"temperature":true,"tool_call":true},"Pro/deepseek-ai/DeepSeek-V3.2":{"attachment":false,"cost":{"input":0.27,"output":0.42},"family":"deepseek","id":"Pro/deepseek-ai/DeepSeek-V3.2","last_updated":"2025-12-03","limit":{"context":164000,"output":164000},"modalities":{"input":["text"],"output":["text"]},"name":"Pro/deepseek-ai/DeepSeek-V3.2","open_weights":false,"reasoning":true,"release_date":"2025-12-03","structured_output":true,"temperature":true,"tool_call":true},"Pro/moonshotai/Kimi-K2-Instruct-0905":{"attachment":false,"cost":{"input":0.4,"output":2},"family":"kimi","id":"Pro/moonshotai/Kimi-K2-Instruct-0905","last_updated":"2025-11-25","limit":{"context":262000,"output":262000},"modalities":{"input":["text"],"output":["text"]},"name":"Pro/moonshotai/Kimi-K2-Instruct-0905","open_weights":false,"reasoning":false,"release_date":"2025-09-08","structured_output":true,"temperature":true,"tool_call":true},"Pro/moonshotai/Kimi-K2-Thinking":{"attachment":false,"cost":{"input":0.55,"output":2.5},"family":"kimi-thinking","id":"Pro/moonshotai/Kimi-K2-Thinking","last_updated":"2025-11-25","limit":{"context":262000,"output":262000},"modalities":{"input":["text"],"output":["text"]},"name":"Pro/moonshotai/Kimi-K2-Thinking","open_weights":false,"reasoning":true,"release_date":"2025-11-07","structured_output":true,"temperature":true,"tool_call":true},"Pro/moonshotai/Kimi-K2.5":{"attachment":false,"cost":{"input":0.45,"output":2.25},"family":"kimi","id":"Pro/moonshotai/Kimi-K2.5","interleaved":{"field":"reasoning_content"},"last_updated":"2026-01-27","limit":{"context":262000,"output":262000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Pro/moonshotai/Kimi-K2.5","open_weights":true,"reasoning":true,"release_date":"2026-01-27","structured_output":true,"temperature":true,"tool_call":true},"Pro/moonshotai/Kimi-K2.6":{"attachment":false,"cost":{"cache_read":0.16,"input":0.95,"output":4},"family":"kimi","id":"Pro/moonshotai/Kimi-K2.6","interleaved":{"field":"reasoning_content"},"last_updated":"2026-04-21","limit":{"context":262000,"output":262000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Pro/moonshotai/Kimi-K2.6","open_weights":true,"reasoning":true,"release_date":"2026-04-21","structured_output":true,"temperature":true,"tool_call":true},"Pro/zai-org/GLM-4.7":{"attachment":false,"cost":{"input":0.6,"output":2.2},"family":"glm","id":"Pro/zai-org/GLM-4.7","interleaved":{"field":"reasoning_content"},"last_updated":"2025-12-22","limit":{"context":205000,"output":205000},"modalities":{"input":["text"],"output":["text"]},"name":"Pro/zai-org/GLM-4.7","open_weights":false,"reasoning":true,"release_date":"2025-12-22","structured_output":true,"temperature":true,"tool_call":true},"Pro/zai-org/GLM-5":{"attachment":false,"cost":{"input":1,"output":3.2},"family":"glm","id":"Pro/zai-org/GLM-5","interleaved":{"field":"reasoning_content"},"last_updated":"2026-02-12","limit":{"context":205000,"output":205000},"modalities":{"input":["text"],"output":["text"]},"name":"Pro/zai-org/GLM-5","open_weights":true,"reasoning":true,"release_date":"2026-02-12","structured_output":true,"temperature":true,"tool_call":true},"Pro/zai-org/GLM-5.1":{"attachment":false,"cost":{"cache_write":0,"input":1.4,"output":4.4},"family":"glm","id":"Pro/zai-org/GLM-5.1","interleaved":{"field":"reasoning_content"},"last_updated":"2026-04-08","limit":{"context":205000,"output":205000},"modalities":{"input":["text"],"output":["text"]},"name":"Pro/zai-org/GLM-5.1","open_weights":true,"reasoning":true,"release_date":"2026-04-08","structured_output":true,"temperature":true,"tool_call":true},"Qwen/QwQ-32B":{"attachment":false,"cost":{"input":0.15,"output":0.58},"family":"qwen","id":"Qwen/QwQ-32B","last_updated":"2025-11-25","limit":{"context":131000,"output":131000},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen/QwQ-32B","open_weights":false,"reasoning":true,"release_date":"2025-03-06","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen2.5-14B-Instruct":{"attachment":false,"cost":{"input":0.1,"output":0.1},"family":"qwen","id":"Qwen/Qwen2.5-14B-Instruct","last_updated":"2025-11-25","limit":{"context":33000,"output":4000},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen/Qwen2.5-14B-Instruct","open_weights":false,"reasoning":false,"release_date":"2024-09-18","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen2.5-32B-Instruct":{"attachment":false,"cost":{"input":0.18,"output":0.18},"family":"qwen","id":"Qwen/Qwen2.5-32B-Instruct","last_updated":"2025-11-25","limit":{"context":33000,"output":4000},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen/Qwen2.5-32B-Instruct","open_weights":false,"reasoning":false,"release_date":"2024-09-19","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen2.5-72B-Instruct":{"attachment":false,"cost":{"input":0.59,"output":0.59},"family":"qwen","id":"Qwen/Qwen2.5-72B-Instruct","last_updated":"2025-11-25","limit":{"context":33000,"output":4000},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen/Qwen2.5-72B-Instruct","open_weights":false,"reasoning":false,"release_date":"2024-09-18","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen2.5-72B-Instruct-128K":{"attachment":false,"cost":{"input":0.59,"output":0.59},"family":"qwen","id":"Qwen/Qwen2.5-72B-Instruct-128K","last_updated":"2025-11-25","limit":{"context":131000,"output":4000},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen/Qwen2.5-72B-Instruct-128K","open_weights":false,"reasoning":false,"release_date":"2024-09-18","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen2.5-7B-Instruct":{"attachment":false,"cost":{"input":0.05,"output":0.05},"family":"qwen","id":"Qwen/Qwen2.5-7B-Instruct","last_updated":"2025-11-25","limit":{"context":33000,"output":4000},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen/Qwen2.5-7B-Instruct","open_weights":false,"reasoning":false,"release_date":"2024-09-18","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen2.5-Coder-32B-Instruct":{"attachment":false,"cost":{"input":0.18,"output":0.18},"family":"qwen","id":"Qwen/Qwen2.5-Coder-32B-Instruct","last_updated":"2025-11-25","limit":{"context":33000,"output":4000},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen/Qwen2.5-Coder-32B-Instruct","open_weights":false,"reasoning":false,"release_date":"2024-11-11","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen2.5-VL-32B-Instruct":{"attachment":true,"cost":{"input":0.27,"output":0.27},"family":"qwen","id":"Qwen/Qwen2.5-VL-32B-Instruct","last_updated":"2025-11-25","limit":{"context":131000,"output":131000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen/Qwen2.5-VL-32B-Instruct","open_weights":false,"reasoning":false,"release_date":"2025-03-24","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen2.5-VL-72B-Instruct":{"attachment":true,"cost":{"input":0.59,"output":0.59},"family":"qwen","id":"Qwen/Qwen2.5-VL-72B-Instruct","last_updated":"2025-11-25","limit":{"context":131000,"output":4000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen/Qwen2.5-VL-72B-Instruct","open_weights":false,"reasoning":false,"release_date":"2025-01-28","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen3-14B":{"attachment":false,"cost":{"input":0.07,"output":0.28},"family":"qwen","id":"Qwen/Qwen3-14B","last_updated":"2025-11-25","limit":{"context":131000,"output":131000},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen/Qwen3-14B","open_weights":false,"reasoning":false,"release_date":"2025-04-30","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen3-235B-A22B-Instruct-2507":{"attachment":false,"cost":{"input":0.09,"output":0.6},"family":"qwen","id":"Qwen/Qwen3-235B-A22B-Instruct-2507","last_updated":"2025-11-25","limit":{"context":262000,"output":262000},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen/Qwen3-235B-A22B-Instruct-2507","open_weights":false,"reasoning":false,"release_date":"2025-07-23","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen3-235B-A22B-Thinking-2507":{"attachment":false,"cost":{"input":0.13,"output":0.6},"family":"qwen","id":"Qwen/Qwen3-235B-A22B-Thinking-2507","last_updated":"2025-11-25","limit":{"context":262000,"output":262000},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen/Qwen3-235B-A22B-Thinking-2507","open_weights":false,"reasoning":true,"release_date":"2025-07-28","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen3-30B-A3B-Instruct-2507":{"attachment":false,"cost":{"input":0.09,"output":0.3},"family":"qwen","id":"Qwen/Qwen3-30B-A3B-Instruct-2507","last_updated":"2025-11-25","limit":{"context":262000,"output":262000},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen/Qwen3-30B-A3B-Instruct-2507","open_weights":false,"reasoning":false,"release_date":"2025-07-30","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen3-30B-A3B-Thinking-2507":{"attachment":false,"cost":{"input":0.09,"output":0.3},"family":"qwen","id":"Qwen/Qwen3-30B-A3B-Thinking-2507","last_updated":"2025-11-25","limit":{"context":262000,"output":131000},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen/Qwen3-30B-A3B-Thinking-2507","open_weights":false,"reasoning":true,"release_date":"2025-07-31","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen3-32B":{"attachment":false,"cost":{"input":0.14,"output":0.57},"family":"qwen","id":"Qwen/Qwen3-32B","last_updated":"2025-11-25","limit":{"context":131000,"output":131000},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen/Qwen3-32B","open_weights":false,"reasoning":false,"release_date":"2025-04-30","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen3-8B":{"attachment":false,"cost":{"input":0.06,"output":0.06},"family":"qwen","id":"Qwen/Qwen3-8B","last_updated":"2025-11-25","limit":{"context":131000,"output":131000},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen/Qwen3-8B","open_weights":false,"reasoning":false,"release_date":"2025-04-30","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen3-Coder-30B-A3B-Instruct":{"attachment":false,"cost":{"input":0.07,"output":0.28},"family":"qwen","id":"Qwen/Qwen3-Coder-30B-A3B-Instruct","last_updated":"2025-11-25","limit":{"context":262000,"output":262000},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen/Qwen3-Coder-30B-A3B-Instruct","open_weights":false,"reasoning":false,"release_date":"2025-08-01","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen3-Coder-480B-A35B-Instruct":{"attachment":false,"cost":{"input":0.25,"output":1},"family":"qwen","id":"Qwen/Qwen3-Coder-480B-A35B-Instruct","last_updated":"2025-11-25","limit":{"context":262000,"output":262000},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen/Qwen3-Coder-480B-A35B-Instruct","open_weights":false,"reasoning":false,"release_date":"2025-07-31","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen3-Next-80B-A3B-Instruct":{"attachment":false,"cost":{"input":0.14,"output":1.4},"family":"qwen","id":"Qwen/Qwen3-Next-80B-A3B-Instruct","last_updated":"2025-11-25","limit":{"context":262000,"output":262000},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen/Qwen3-Next-80B-A3B-Instruct","open_weights":false,"reasoning":false,"release_date":"2025-09-18","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen3-Next-80B-A3B-Thinking":{"attachment":false,"cost":{"input":0.14,"output":0.57},"family":"qwen","id":"Qwen/Qwen3-Next-80B-A3B-Thinking","last_updated":"2025-11-25","limit":{"context":262000,"output":262000},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen/Qwen3-Next-80B-A3B-Thinking","open_weights":false,"reasoning":true,"release_date":"2025-09-25","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen3-Omni-30B-A3B-Captioner":{"attachment":true,"cost":{"input":0.1,"output":0.4},"family":"qwen","id":"Qwen/Qwen3-Omni-30B-A3B-Captioner","last_updated":"2025-11-25","limit":{"context":66000,"output":66000},"modalities":{"input":["audio"],"output":["text"]},"name":"Qwen/Qwen3-Omni-30B-A3B-Captioner","open_weights":false,"reasoning":false,"release_date":"2025-10-04","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen3-Omni-30B-A3B-Instruct":{"attachment":true,"cost":{"input":0.1,"output":0.4},"family":"qwen","id":"Qwen/Qwen3-Omni-30B-A3B-Instruct","last_updated":"2025-11-25","limit":{"context":66000,"output":66000},"modalities":{"input":["text","image","audio"],"output":["text"]},"name":"Qwen/Qwen3-Omni-30B-A3B-Instruct","open_weights":false,"reasoning":false,"release_date":"2025-10-04","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen3-Omni-30B-A3B-Thinking":{"attachment":true,"cost":{"input":0.1,"output":0.4},"family":"qwen","id":"Qwen/Qwen3-Omni-30B-A3B-Thinking","last_updated":"2025-11-25","limit":{"context":66000,"output":66000},"modalities":{"input":["text","image","audio"],"output":["text"]},"name":"Qwen/Qwen3-Omni-30B-A3B-Thinking","open_weights":false,"reasoning":true,"release_date":"2025-10-04","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen3-VL-235B-A22B-Instruct":{"attachment":true,"cost":{"input":0.3,"output":1.5},"family":"qwen","id":"Qwen/Qwen3-VL-235B-A22B-Instruct","last_updated":"2025-11-25","limit":{"context":262000,"output":262000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen/Qwen3-VL-235B-A22B-Instruct","open_weights":false,"reasoning":false,"release_date":"2025-10-04","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen3-VL-235B-A22B-Thinking":{"attachment":true,"cost":{"input":0.45,"output":3.5},"family":"qwen","id":"Qwen/Qwen3-VL-235B-A22B-Thinking","last_updated":"2025-11-25","limit":{"context":262000,"output":262000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen/Qwen3-VL-235B-A22B-Thinking","open_weights":false,"reasoning":true,"release_date":"2025-10-04","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen3-VL-30B-A3B-Instruct":{"attachment":true,"cost":{"input":0.29,"output":1},"family":"qwen","id":"Qwen/Qwen3-VL-30B-A3B-Instruct","last_updated":"2025-11-25","limit":{"context":262000,"output":262000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen/Qwen3-VL-30B-A3B-Instruct","open_weights":false,"reasoning":false,"release_date":"2025-10-05","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen3-VL-30B-A3B-Thinking":{"attachment":true,"cost":{"input":0.29,"output":1},"family":"qwen","id":"Qwen/Qwen3-VL-30B-A3B-Thinking","last_updated":"2025-11-25","limit":{"context":262000,"output":262000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen/Qwen3-VL-30B-A3B-Thinking","open_weights":false,"reasoning":true,"release_date":"2025-10-11","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen3-VL-32B-Instruct":{"attachment":true,"cost":{"input":0.2,"output":0.6},"family":"qwen","id":"Qwen/Qwen3-VL-32B-Instruct","last_updated":"2025-11-25","limit":{"context":262000,"output":262000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen/Qwen3-VL-32B-Instruct","open_weights":false,"reasoning":false,"release_date":"2025-10-21","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen3-VL-32B-Thinking":{"attachment":true,"cost":{"input":0.2,"output":1.5},"family":"qwen","id":"Qwen/Qwen3-VL-32B-Thinking","last_updated":"2025-11-25","limit":{"context":262000,"output":262000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen/Qwen3-VL-32B-Thinking","open_weights":false,"reasoning":true,"release_date":"2025-10-21","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen3-VL-8B-Instruct":{"attachment":true,"cost":{"input":0.18,"output":0.68},"family":"qwen","id":"Qwen/Qwen3-VL-8B-Instruct","last_updated":"2025-11-25","limit":{"context":262000,"output":262000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen/Qwen3-VL-8B-Instruct","open_weights":false,"reasoning":false,"release_date":"2025-10-15","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen3-VL-8B-Thinking":{"attachment":true,"cost":{"input":0.18,"output":2},"family":"qwen","id":"Qwen/Qwen3-VL-8B-Thinking","last_updated":"2025-11-25","limit":{"context":262000,"output":262000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen/Qwen3-VL-8B-Thinking","open_weights":false,"reasoning":true,"release_date":"2025-10-15","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen3.5-122B-A10B":{"attachment":false,"cost":{"input":0.29,"output":2.32},"family":"qwen","id":"Qwen/Qwen3.5-122B-A10B","knowledge":"2025-04","last_updated":"2026-02-26","limit":{"context":262144,"output":65536},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen/Qwen3.5-122B-A10B","open_weights":true,"reasoning":true,"release_date":"2026-02-26","temperature":true,"tool_call":true},"Qwen/Qwen3.5-27B":{"attachment":false,"cost":{"input":0.26,"output":2.09},"family":"qwen","id":"Qwen/Qwen3.5-27B","knowledge":"2025-04","last_updated":"2026-02-25","limit":{"context":262144,"output":65536},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen/Qwen3.5-27B","open_weights":true,"reasoning":true,"release_date":"2026-02-25","temperature":true,"tool_call":true},"Qwen/Qwen3.5-35B-A3B":{"attachment":false,"cost":{"input":0.23,"output":1.86},"family":"qwen","id":"Qwen/Qwen3.5-35B-A3B","knowledge":"2025-04","last_updated":"2026-02-25","limit":{"context":262144,"output":65536},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen/Qwen3.5-35B-A3B","open_weights":true,"reasoning":true,"release_date":"2026-02-25","temperature":true,"tool_call":true},"Qwen/Qwen3.5-397B-A17B":{"attachment":false,"cost":{"input":0.29,"output":1.74},"family":"qwen","id":"Qwen/Qwen3.5-397B-A17B","knowledge":"2025-04","last_updated":"2026-02-16","limit":{"context":262144,"output":65536},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen/Qwen3.5-397B-A17B","open_weights":true,"reasoning":true,"release_date":"2026-02-16","temperature":true,"tool_call":true},"Qwen/Qwen3.5-4B":{"attachment":false,"cost":{"input":0,"output":0},"family":"qwen","id":"Qwen/Qwen3.5-4B","knowledge":"2025-04","last_updated":"2026-03-03","limit":{"context":262144,"output":65536},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen/Qwen3.5-4B","open_weights":true,"reasoning":true,"release_date":"2026-03-03","temperature":true,"tool_call":true},"Qwen/Qwen3.5-9B":{"attachment":false,"cost":{"input":0.22,"output":1.74},"family":"qwen","id":"Qwen/Qwen3.5-9B","knowledge":"2025-04","last_updated":"2026-03-03","limit":{"context":262144,"output":65536},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen/Qwen3.5-9B","open_weights":true,"reasoning":true,"release_date":"2026-03-03","temperature":true,"tool_call":true},"Qwen/Qwen3.6-35B-A3B":{"attachment":false,"cost":{"input":0.23,"output":1.86},"family":"qwen","id":"Qwen/Qwen3.6-35B-A3B","knowledge":"2025-04","last_updated":"2026-04-17","limit":{"context":262144,"output":65536},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen/Qwen3.6-35B-A3B","open_weights":true,"reasoning":true,"release_date":"2026-04-17","temperature":true,"tool_call":true},"THUDM/GLM-4-32B-0414":{"attachment":false,"cost":{"input":0.27,"output":0.27},"family":"glm","id":"THUDM/GLM-4-32B-0414","last_updated":"2025-11-25","limit":{"context":33000,"output":33000},"modalities":{"input":["text"],"output":["text"]},"name":"THUDM/GLM-4-32B-0414","open_weights":false,"reasoning":false,"release_date":"2025-04-18","structured_output":true,"temperature":true,"tool_call":true},"THUDM/GLM-4-9B-0414":{"attachment":false,"cost":{"input":0.086,"output":0.086},"family":"glm","id":"THUDM/GLM-4-9B-0414","last_updated":"2025-11-25","limit":{"context":33000,"output":33000},"modalities":{"input":["text"],"output":["text"]},"name":"THUDM/GLM-4-9B-0414","open_weights":false,"reasoning":false,"release_date":"2025-04-18","structured_output":true,"temperature":true,"tool_call":true},"THUDM/GLM-Z1-32B-0414":{"attachment":false,"cost":{"input":0.14,"output":0.57},"family":"glm-z","id":"THUDM/GLM-Z1-32B-0414","last_updated":"2025-11-25","limit":{"context":131000,"output":131000},"modalities":{"input":["text"],"output":["text"]},"name":"THUDM/GLM-Z1-32B-0414","open_weights":false,"reasoning":true,"release_date":"2025-04-18","structured_output":true,"temperature":true,"tool_call":true},"THUDM/GLM-Z1-9B-0414":{"attachment":false,"cost":{"input":0.086,"output":0.086},"family":"glm-z","id":"THUDM/GLM-Z1-9B-0414","last_updated":"2025-11-25","limit":{"context":131000,"output":131000},"modalities":{"input":["text"],"output":["text"]},"name":"THUDM/GLM-Z1-9B-0414","open_weights":false,"reasoning":true,"release_date":"2025-04-18","structured_output":true,"temperature":true,"tool_call":true},"ascend-tribe/pangu-pro-moe":{"attachment":false,"cost":{"input":0.2,"output":0.6},"family":"pangu","id":"ascend-tribe/pangu-pro-moe","last_updated":"2026-01-16","limit":{"context":128000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"ascend-tribe/pangu-pro-moe","open_weights":false,"reasoning":true,"release_date":"2025-07-02","structured_output":true,"temperature":true,"tool_call":false},"baidu/ERNIE-4.5-300B-A47B":{"attachment":false,"cost":{"input":0.28,"output":1.1},"family":"ernie","id":"baidu/ERNIE-4.5-300B-A47B","last_updated":"2025-11-25","limit":{"context":131000,"output":131000},"modalities":{"input":["text"],"output":["text"]},"name":"baidu/ERNIE-4.5-300B-A47B","open_weights":false,"reasoning":false,"release_date":"2025-07-02","structured_output":true,"temperature":true,"tool_call":true},"deepseek-ai/DeepSeek-OCR":{"attachment":true,"cost":{"input":0,"output":0},"id":"deepseek-ai/DeepSeek-OCR","last_updated":"2025-10-20","limit":{"context":8192,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"deepseek-ai/DeepSeek-OCR","open_weights":true,"reasoning":false,"release_date":"2025-10-20","temperature":true,"tool_call":false},"deepseek-ai/DeepSeek-R1":{"attachment":false,"cost":{"input":0.5,"output":2.18},"family":"deepseek-thinking","id":"deepseek-ai/DeepSeek-R1","last_updated":"2025-11-25","limit":{"context":164000,"output":164000},"modalities":{"input":["text"],"output":["text"]},"name":"deepseek-ai/DeepSeek-R1","open_weights":false,"reasoning":true,"release_date":"2025-05-28","structured_output":true,"temperature":true,"tool_call":true},"deepseek-ai/DeepSeek-R1-Distill-Qwen-14B":{"attachment":false,"cost":{"input":0.1,"output":0.1},"family":"qwen","id":"deepseek-ai/DeepSeek-R1-Distill-Qwen-14B","last_updated":"2025-11-25","limit":{"context":131000,"output":131000},"modalities":{"input":["text"],"output":["text"]},"name":"deepseek-ai/DeepSeek-R1-Distill-Qwen-14B","open_weights":false,"reasoning":true,"release_date":"2025-01-20","structured_output":true,"temperature":true,"tool_call":true},"deepseek-ai/DeepSeek-R1-Distill-Qwen-32B":{"attachment":false,"cost":{"input":0.18,"output":0.18},"family":"qwen","id":"deepseek-ai/DeepSeek-R1-Distill-Qwen-32B","last_updated":"2025-11-25","limit":{"context":131000,"output":131000},"modalities":{"input":["text"],"output":["text"]},"name":"deepseek-ai/DeepSeek-R1-Distill-Qwen-32B","open_weights":false,"reasoning":true,"release_date":"2025-01-20","structured_output":true,"temperature":true,"tool_call":true},"deepseek-ai/DeepSeek-V3":{"attachment":false,"cost":{"input":0.25,"output":1},"family":"deepseek","id":"deepseek-ai/DeepSeek-V3","last_updated":"2025-11-25","limit":{"context":164000,"output":164000},"modalities":{"input":["text"],"output":["text"]},"name":"deepseek-ai/DeepSeek-V3","open_weights":false,"reasoning":false,"release_date":"2024-12-26","structured_output":true,"temperature":true,"tool_call":true},"deepseek-ai/DeepSeek-V3.1-Terminus":{"attachment":false,"cost":{"input":0.27,"output":1},"family":"deepseek","id":"deepseek-ai/DeepSeek-V3.1-Terminus","last_updated":"2025-11-25","limit":{"context":164000,"output":164000},"modalities":{"input":["text"],"output":["text"]},"name":"deepseek-ai/DeepSeek-V3.1-Terminus","open_weights":false,"reasoning":true,"release_date":"2025-09-29","structured_output":true,"temperature":true,"tool_call":true},"deepseek-ai/DeepSeek-V3.2":{"attachment":false,"cost":{"input":0.27,"output":0.42},"family":"deepseek","id":"deepseek-ai/DeepSeek-V3.2","last_updated":"2025-12-03","limit":{"context":164000,"output":164000},"modalities":{"input":["text"],"output":["text"]},"name":"deepseek-ai/DeepSeek-V3.2","open_weights":false,"reasoning":true,"release_date":"2025-12-03","structured_output":true,"temperature":true,"tool_call":true},"deepseek-ai/DeepSeek-V4-Pro":{"attachment":false,"cost":{"cache_read":0.145,"input":1.74,"output":3.48},"family":"deepseek-thinking","id":"deepseek-ai/DeepSeek-V4-Pro","last_updated":"2026-04-24","limit":{"context":1049000,"output":393000},"modalities":{"input":["text"],"output":["text"]},"name":"deepseek-ai/DeepSeek-V4-Pro","open_weights":true,"reasoning":true,"release_date":"2026-04-24","structured_output":false,"temperature":true,"tool_call":true},"deepseek-ai/deepseek-vl2":{"attachment":true,"cost":{"input":0.15,"output":0.15},"family":"deepseek","id":"deepseek-ai/deepseek-vl2","last_updated":"2025-11-25","limit":{"context":4000,"output":4000},"modalities":{"input":["text","image"],"output":["text"]},"name":"deepseek-ai/deepseek-vl2","open_weights":false,"reasoning":false,"release_date":"2024-12-13","structured_output":true,"temperature":true,"tool_call":true},"inclusionAI/Ling-flash-2.0":{"attachment":false,"cost":{"input":0.14,"output":0.57},"family":"ling","id":"inclusionAI/Ling-flash-2.0","last_updated":"2025-11-25","limit":{"context":131000,"output":131000},"modalities":{"input":["text"],"output":["text"]},"name":"inclusionAI/Ling-flash-2.0","open_weights":false,"reasoning":false,"release_date":"2025-09-18","structured_output":true,"temperature":true,"tool_call":true},"inclusionAI/Ling-mini-2.0":{"attachment":false,"cost":{"input":0.07,"output":0.28},"family":"ling","id":"inclusionAI/Ling-mini-2.0","last_updated":"2025-11-25","limit":{"context":131000,"output":131000},"modalities":{"input":["text"],"output":["text"]},"name":"inclusionAI/Ling-mini-2.0","open_weights":false,"reasoning":false,"release_date":"2025-09-10","structured_output":true,"temperature":true,"tool_call":true},"inclusionAI/Ring-flash-2.0":{"attachment":false,"cost":{"input":0.14,"output":0.57},"family":"ring","id":"inclusionAI/Ring-flash-2.0","last_updated":"2025-11-25","limit":{"context":131000,"output":131000},"modalities":{"input":["text"],"output":["text"]},"name":"inclusionAI/Ring-flash-2.0","open_weights":false,"reasoning":true,"release_date":"2025-09-29","structured_output":true,"temperature":true,"tool_call":true},"moonshotai/Kimi-K2-Instruct-0905":{"attachment":false,"cost":{"input":0.4,"output":2},"family":"kimi","id":"moonshotai/Kimi-K2-Instruct-0905","last_updated":"2025-11-25","limit":{"context":262000,"output":262000},"modalities":{"input":["text"],"output":["text"]},"name":"moonshotai/Kimi-K2-Instruct-0905","open_weights":false,"reasoning":false,"release_date":"2025-09-08","structured_output":true,"temperature":true,"tool_call":true},"moonshotai/Kimi-K2-Thinking":{"attachment":false,"cost":{"input":0.55,"output":2.5},"family":"kimi-thinking","id":"moonshotai/Kimi-K2-Thinking","last_updated":"2025-11-25","limit":{"context":262000,"output":262000},"modalities":{"input":["text"],"output":["text"]},"name":"moonshotai/Kimi-K2-Thinking","open_weights":false,"reasoning":true,"release_date":"2025-11-07","structured_output":true,"temperature":true,"tool_call":true},"stepfun-ai/Step-3.5-Flash":{"attachment":false,"cost":{"input":0.1,"output":0.3},"family":"step","id":"stepfun-ai/Step-3.5-Flash","last_updated":"2026-02-11","limit":{"context":262000,"output":262000},"modalities":{"input":["text"],"output":["text"]},"name":"stepfun-ai/Step-3.5-Flash","open_weights":false,"reasoning":true,"release_date":"2026-02-11","structured_output":true,"temperature":true,"tool_call":true},"tencent/Hunyuan-A13B-Instruct":{"attachment":false,"cost":{"input":0.14,"output":0.57},"family":"hunyuan","id":"tencent/Hunyuan-A13B-Instruct","last_updated":"2025-11-25","limit":{"context":131000,"output":131000},"modalities":{"input":["text"],"output":["text"]},"name":"tencent/Hunyuan-A13B-Instruct","open_weights":false,"reasoning":false,"release_date":"2025-06-30","structured_output":true,"temperature":true,"tool_call":true},"tencent/Hunyuan-MT-7B":{"attachment":false,"cost":{"input":0,"output":0},"family":"hunyuan","id":"tencent/Hunyuan-MT-7B","last_updated":"2025-11-25","limit":{"context":33000,"output":33000},"modalities":{"input":["text"],"output":["text"]},"name":"tencent/Hunyuan-MT-7B","open_weights":false,"reasoning":false,"release_date":"2025-09-18","structured_output":true,"temperature":true,"tool_call":true},"zai-org/GLM-4.5-Air":{"attachment":false,"cost":{"input":0.14,"output":0.86},"family":"glm-air","id":"zai-org/GLM-4.5-Air","last_updated":"2025-11-25","limit":{"context":131000,"output":131000},"modalities":{"input":["text"],"output":["text"]},"name":"zai-org/GLM-4.5-Air","open_weights":false,"reasoning":false,"release_date":"2025-07-28","structured_output":true,"temperature":true,"tool_call":true},"zai-org/GLM-4.5V":{"attachment":true,"cost":{"input":0.14,"output":0.86},"family":"glm","id":"zai-org/GLM-4.5V","last_updated":"2025-11-25","limit":{"context":66000,"output":66000},"modalities":{"input":["text","image"],"output":["text"]},"name":"zai-org/GLM-4.5V","open_weights":false,"reasoning":false,"release_date":"2025-08-13","structured_output":true,"temperature":true,"tool_call":true},"zai-org/GLM-4.6":{"attachment":false,"cost":{"input":0.5,"output":1.9},"family":"glm","id":"zai-org/GLM-4.6","last_updated":"2025-11-25","limit":{"context":205000,"output":205000},"modalities":{"input":["text"],"output":["text"]},"name":"zai-org/GLM-4.6","open_weights":false,"reasoning":false,"release_date":"2025-10-04","structured_output":true,"temperature":true,"tool_call":true},"zai-org/GLM-4.6V":{"attachment":true,"cost":{"input":0.3,"output":0.9},"family":"glm","id":"zai-org/GLM-4.6V","last_updated":"2025-12-07","limit":{"context":131000,"output":131000},"modalities":{"input":["text","image"],"output":["text"]},"name":"zai-org/GLM-4.6V","open_weights":false,"reasoning":true,"release_date":"2025-12-07","structured_output":false,"temperature":true,"tool_call":true}},"name":"SiliconFlow (China)","npm":"@ai-sdk/openai-compatible"},"snowflake-cortex":{"api":"https://${SNOWFLAKE_ACCOUNT}.snowflakecomputing.com/api/v2/cortex/v1","doc":"https://docs.snowflake.com/en/user-guide/snowflake-cortex/cortex-rest-api","env":["SNOWFLAKE_ACCOUNT","SNOWFLAKE_CORTEX_PAT"],"id":"snowflake-cortex","models":{"claude-haiku-4-5":{"attachment":true,"family":"claude-haiku","id":"claude-haiku-4-5","knowledge":"2025-02-28","last_updated":"2025-10-15","limit":{"context":200000,"output":16384},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Haiku 4.5 (latest)","open_weights":false,"reasoning":true,"release_date":"2025-10-15","temperature":true,"tool_call":true},"claude-opus-4-7":{"attachment":true,"experimental":{"modes":{"fast":{"cost":{"cache_read":3,"cache_write":37.5,"input":30,"output":150},"provider":{"body":{"speed":"fast"},"headers":{"anthropic-beta":"fast-mode-2026-02-01"}}}}},"family":"claude-opus","id":"claude-opus-4-7","knowledge":"2026-01-31","last_updated":"2026-04-16","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.7","open_weights":false,"reasoning":true,"release_date":"2026-04-16","status":"beta","temperature":false,"tool_call":true},"claude-sonnet-4-5":{"attachment":true,"family":"claude-sonnet","id":"claude-sonnet-4-5","knowledge":"2025-07-31","last_updated":"2025-09-29","limit":{"context":200000,"output":16384},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 4.5 (latest)","open_weights":false,"reasoning":true,"release_date":"2025-09-29","temperature":true,"tool_call":true},"claude-sonnet-4-6":{"attachment":true,"family":"claude-sonnet","id":"claude-sonnet-4-6","knowledge":"2025-08-31","last_updated":"2026-03-13","limit":{"context":1000000,"output":16384},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 4.6","open_weights":false,"reasoning":true,"release_date":"2026-02-17","temperature":true,"tool_call":true},"openai-gpt-4.1":{"attachment":true,"family":"gpt","id":"openai-gpt-4.1","knowledge":"2024-04","last_updated":"2025-04-14","limit":{"context":1047576,"output":32768},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-4.1","open_weights":false,"reasoning":false,"release_date":"2025-04-14","structured_output":true,"temperature":true,"tool_call":true},"openai-gpt-5":{"attachment":true,"family":"gpt","id":"openai-gpt-5","knowledge":"2024-09-30","last_updated":"2025-08-07","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5","open_weights":false,"reasoning":true,"release_date":"2025-08-07","status":"beta","structured_output":true,"temperature":false,"tool_call":true},"openai-gpt-5-mini":{"attachment":true,"family":"gpt-mini","id":"openai-gpt-5-mini","knowledge":"2024-05-30","last_updated":"2025-08-07","limit":{"context":272000,"input":272000,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5 Mini","open_weights":false,"reasoning":true,"release_date":"2025-08-07","status":"beta","structured_output":true,"temperature":false,"tool_call":true},"openai-gpt-5-nano":{"attachment":true,"family":"gpt-nano","id":"openai-gpt-5-nano","knowledge":"2024-05-30","last_updated":"2025-08-07","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5 Nano","open_weights":false,"reasoning":true,"release_date":"2025-08-07","status":"beta","structured_output":true,"temperature":false,"tool_call":true},"openai-gpt-5.1":{"attachment":true,"family":"gpt","id":"openai-gpt-5.1","knowledge":"2024-09-30","last_updated":"2025-11-13","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.1","open_weights":false,"reasoning":true,"release_date":"2025-11-13","structured_output":true,"temperature":false,"tool_call":true},"openai-gpt-5.2":{"attachment":true,"family":"gpt","id":"openai-gpt-5.2","knowledge":"2025-08-31","last_updated":"2025-12-11","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.2","open_weights":false,"reasoning":true,"release_date":"2025-12-11","structured_output":true,"temperature":false,"tool_call":true},"openai-gpt-5.4":{"attachment":true,"experimental":{"modes":{"fast":{"cost":{"cache_read":0.5,"input":5,"output":30},"provider":{"body":{"service_tier":"priority"}}}}},"family":"gpt","id":"openai-gpt-5.4","knowledge":"2025-08-31","last_updated":"2026-03-05","limit":{"context":1050000,"input":922000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5.4","open_weights":false,"reasoning":true,"release_date":"2026-03-05","status":"beta","structured_output":true,"temperature":false,"tool_call":true}},"name":"Snowflake Cortex","npm":"@ai-sdk/openai-compatible"},"stackit":{"api":"https://api.openai-compat.model-serving.eu01.onstackit.cloud/v1","doc":"https://docs.stackit.cloud/products/data-and-ai/ai-model-serving/basics/available-shared-models","env":["STACKIT_API_KEY"],"id":"stackit","models":{"Qwen/Qwen3-VL-235B-A22B-Instruct-FP8":{"attachment":true,"cost":{"input":1.64,"output":1.91},"family":"qwen","id":"Qwen/Qwen3-VL-235B-A22B-Instruct-FP8","last_updated":"2024-11-01","limit":{"context":218000,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen3-VL 235B","open_weights":true,"reasoning":false,"release_date":"2024-11-01","structured_output":false,"temperature":true,"tool_call":true},"Qwen/Qwen3-VL-Embedding-8B":{"attachment":true,"cost":{"input":0.09,"output":0.09},"family":"qwen","id":"Qwen/Qwen3-VL-Embedding-8B","last_updated":"2026-02-05","limit":{"context":32000,"output":4096},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen3-VL Embedding 8B","open_weights":true,"reasoning":false,"release_date":"2026-02-05","structured_output":false,"temperature":false,"tool_call":false},"cortecs/Llama-3.3-70B-Instruct-FP8-Dynamic":{"attachment":false,"cost":{"input":0.49,"output":0.71},"family":"llama","id":"cortecs/Llama-3.3-70B-Instruct-FP8-Dynamic","last_updated":"2024-12-05","limit":{"context":128000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.3 70B","open_weights":true,"reasoning":false,"release_date":"2024-12-05","structured_output":false,"temperature":true,"tool_call":true},"google/gemma-3-27b-it":{"attachment":true,"cost":{"input":0.49,"output":0.71},"family":"gemma","id":"google/gemma-3-27b-it","last_updated":"2025-05-17","limit":{"context":37000,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Gemma 3 27B","open_weights":true,"reasoning":false,"release_date":"2025-05-17","structured_output":false,"temperature":true,"tool_call":false},"intfloat/e5-mistral-7b-instruct":{"attachment":false,"cost":{"input":0.02,"output":0.02},"family":"mistral","id":"intfloat/e5-mistral-7b-instruct","last_updated":"2023-12-11","limit":{"context":4096,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"E5 Mistral 7B","open_weights":true,"reasoning":false,"release_date":"2023-12-11","structured_output":false,"temperature":false,"tool_call":false},"neuralmagic/Meta-Llama-3.1-8B-Instruct-FP8":{"attachment":false,"cost":{"input":0.16,"output":0.27},"family":"llama","id":"neuralmagic/Meta-Llama-3.1-8B-Instruct-FP8","last_updated":"2024-07-23","limit":{"context":128000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.1 8B","open_weights":true,"reasoning":false,"release_date":"2024-07-23","structured_output":true,"temperature":true,"tool_call":true},"neuralmagic/Mistral-Nemo-Instruct-2407-FP8":{"attachment":false,"cost":{"input":0.49,"output":0.71},"family":"mistral","id":"neuralmagic/Mistral-Nemo-Instruct-2407-FP8","last_updated":"2024-07-01","limit":{"context":128000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Mistral Nemo","open_weights":true,"reasoning":false,"release_date":"2024-07-01","structured_output":false,"temperature":true,"tool_call":true},"openai/gpt-oss-120b":{"attachment":false,"cost":{"input":0.49,"output":0.71},"family":"gpt","id":"openai/gpt-oss-120b","last_updated":"2025-08-05","limit":{"context":131000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"GPT-OSS 120B","open_weights":true,"reasoning":true,"release_date":"2025-08-05","structured_output":false,"temperature":true,"tool_call":true}},"name":"STACKIT","npm":"@ai-sdk/openai-compatible"},"stepfun":{"api":"https://api.stepfun.com/v1","doc":"https://platform.stepfun.com/docs/zh/overview/concept","env":["STEPFUN_API_KEY"],"id":"stepfun","models":{"step-1-32k":{"attachment":false,"cost":{"cache_read":0.41,"input":2.05,"output":9.59},"id":"step-1-32k","knowledge":"2024-06","last_updated":"2026-02-13","limit":{"context":32768,"input":32768,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Step 1 (32K)","open_weights":false,"reasoning":true,"release_date":"2025-01-01","temperature":true,"tool_call":true},"step-2-16k":{"attachment":false,"cost":{"cache_read":1.04,"input":5.21,"output":16.44},"id":"step-2-16k","knowledge":"2024-06","last_updated":"2026-02-13","limit":{"context":16384,"input":16384,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Step 2 (16K)","open_weights":false,"reasoning":true,"release_date":"2025-01-01","temperature":true,"tool_call":true},"step-3.5-flash":{"attachment":false,"cost":{"cache_read":0.019,"input":0.096,"output":0.288},"id":"step-3.5-flash","knowledge":"2025-01","last_updated":"2026-02-13","limit":{"context":256000,"input":256000,"output":256000},"modalities":{"input":["text"],"output":["text"]},"name":"Step 3.5 Flash","open_weights":true,"reasoning":true,"release_date":"2026-01-29","temperature":true,"tool_call":true},"step-3.5-flash-2603":{"attachment":false,"cost":{"cache_read":0.02,"input":0.1,"output":0.3},"id":"step-3.5-flash-2603","knowledge":"2025-01","last_updated":"2026-04-02","limit":{"context":256000,"input":256000,"output":256000},"modalities":{"input":["text"],"output":["text"]},"name":"Step 3.5 Flash 2603","open_weights":true,"reasoning":true,"reasoning_options":[{"type":"effort","values":["low","high"]}],"release_date":"2026-04-02","temperature":true,"tool_call":true}},"name":"StepFun (China)","npm":"@ai-sdk/openai-compatible"},"stepfun-ai":{"api":"https://api.stepfun.ai/step_plan/v1","doc":"https://platform.stepfun.ai/docs/en/step-plan/integrations/open-code","env":["STEPFUN_API_KEY"],"id":"stepfun-ai","models":{"step-3.5-flash":{"attachment":false,"cost":{"cache_read":0.019,"input":0.096,"output":0.288},"id":"step-3.5-flash","knowledge":"2025-01","last_updated":"2026-02-13","limit":{"context":256000,"input":256000,"output":256000},"modalities":{"input":["text"],"output":["text"]},"name":"Step 3.5 Flash","open_weights":true,"reasoning":true,"release_date":"2026-01-29","temperature":true,"tool_call":true},"step-3.5-flash-2603":{"attachment":false,"cost":{"cache_read":0.02,"input":0.1,"output":0.3},"id":"step-3.5-flash-2603","knowledge":"2025-01","last_updated":"2026-04-02","limit":{"context":256000,"input":256000,"output":256000},"modalities":{"input":["text"],"output":["text"]},"name":"Step 3.5 Flash 2603","open_weights":true,"reasoning":true,"reasoning_options":[{"type":"effort","values":["low","high"]}],"release_date":"2026-04-02","temperature":true,"tool_call":true}},"name":"StepFun","npm":"@ai-sdk/openai-compatible"},"submodel":{"api":"https://llm.submodel.ai/v1","doc":"https://submodel.gitbook.io","env":["SUBMODEL_INSTAGEN_ACCESS_KEY"],"id":"submodel","models":{"Qwen/Qwen3-235B-A22B-Instruct-2507":{"attachment":false,"cost":{"input":0.2,"output":0.3},"family":"qwen","id":"Qwen/Qwen3-235B-A22B-Instruct-2507","last_updated":"2025-08-23","limit":{"context":262144,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 235B A22B Instruct 2507","open_weights":true,"reasoning":false,"release_date":"2025-08-23","temperature":true,"tool_call":true},"Qwen/Qwen3-235B-A22B-Thinking-2507":{"attachment":false,"cost":{"input":0.2,"output":0.6},"family":"qwen","id":"Qwen/Qwen3-235B-A22B-Thinking-2507","last_updated":"2025-08-23","limit":{"context":262144,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 235B A22B Thinking 2507","open_weights":true,"reasoning":true,"release_date":"2025-08-23","temperature":true,"tool_call":true},"Qwen/Qwen3-Coder-480B-A35B-Instruct-FP8":{"attachment":false,"cost":{"input":0.2,"output":0.8},"family":"qwen","id":"Qwen/Qwen3-Coder-480B-A35B-Instruct-FP8","last_updated":"2025-08-23","limit":{"context":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Coder 480B A35B Instruct","open_weights":false,"reasoning":false,"release_date":"2025-08-23","temperature":true,"tool_call":true},"deepseek-ai/DeepSeek-R1-0528":{"attachment":false,"cost":{"input":0.5,"output":2.15},"family":"deepseek-thinking","id":"deepseek-ai/DeepSeek-R1-0528","last_updated":"2025-08-23","limit":{"context":75000,"output":163840},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek R1 0528","open_weights":false,"reasoning":true,"release_date":"2025-08-23","temperature":true,"tool_call":true},"deepseek-ai/DeepSeek-V3-0324":{"attachment":false,"cost":{"input":0.2,"output":0.8},"family":"deepseek","id":"deepseek-ai/DeepSeek-V3-0324","last_updated":"2025-08-23","limit":{"context":75000,"output":163840},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V3 0324","open_weights":false,"reasoning":false,"release_date":"2025-08-23","temperature":true,"tool_call":true},"deepseek-ai/DeepSeek-V3.1":{"attachment":false,"cost":{"input":0.2,"output":0.8},"family":"deepseek","id":"deepseek-ai/DeepSeek-V3.1","last_updated":"2025-08-23","limit":{"context":75000,"output":163840},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V3.1","open_weights":false,"reasoning":true,"release_date":"2025-08-23","temperature":true,"tool_call":true},"openai/gpt-oss-120b":{"attachment":false,"cost":{"input":0.1,"output":0.5},"family":"gpt-oss","id":"openai/gpt-oss-120b","last_updated":"2025-08-23","limit":{"context":131072,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"GPT OSS 120B","open_weights":true,"reasoning":true,"release_date":"2025-08-23","temperature":true,"tool_call":true},"zai-org/GLM-4.5-Air":{"attachment":false,"cost":{"input":0.1,"output":0.5},"family":"glm-air","id":"zai-org/GLM-4.5-Air","last_updated":"2025-07-28","limit":{"context":131072,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 4.5 Air","open_weights":true,"reasoning":false,"release_date":"2025-07-28","temperature":true,"tool_call":true},"zai-org/GLM-4.5-FP8":{"attachment":false,"cost":{"input":0.2,"output":0.8},"family":"glm","id":"zai-org/GLM-4.5-FP8","last_updated":"2025-07-28","limit":{"context":131072,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 4.5 FP8","open_weights":true,"reasoning":true,"release_date":"2025-07-28","temperature":true,"tool_call":true}},"name":"submodel","npm":"@ai-sdk/openai-compatible"},"synthetic":{"api":"https://api.synthetic.new/openai/v1","doc":"https://synthetic.new/pricing","env":["SYNTHETIC_API_KEY"],"id":"synthetic","models":{"hf:MiniMaxAI/MiniMax-M2":{"attachment":false,"cost":{"input":0.55,"output":2.19},"family":"minimax","id":"hf:MiniMaxAI/MiniMax-M2","last_updated":"2025-10-27","limit":{"context":196608,"output":131000},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2","open_weights":true,"reasoning":true,"release_date":"2025-10-27","temperature":true,"tool_call":true},"hf:MiniMaxAI/MiniMax-M2.1":{"attachment":false,"cost":{"input":0.55,"output":2.19},"family":"minimax","id":"hf:MiniMaxAI/MiniMax-M2.1","interleaved":{"field":"reasoning_content"},"last_updated":"2025-12-23","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2.1","open_weights":true,"reasoning":true,"release_date":"2025-12-23","temperature":true,"tool_call":true},"hf:MiniMaxAI/MiniMax-M2.5":{"attachment":false,"cost":{"cache_read":0.6,"input":0.6,"output":3},"family":"minimax","id":"hf:MiniMaxAI/MiniMax-M2.5","interleaved":{"field":"reasoning_content"},"last_updated":"2026-02-07","limit":{"context":191488,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2.5","open_weights":true,"reasoning":true,"release_date":"2026-02-07","structured_output":true,"temperature":true,"tool_call":true},"hf:Qwen/Qwen2.5-Coder-32B-Instruct":{"attachment":false,"cost":{"input":0.8,"output":0.8},"family":"qwen","id":"hf:Qwen/Qwen2.5-Coder-32B-Instruct","knowledge":"2024-10","last_updated":"2024-11-11","limit":{"context":32768,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen2.5-Coder-32B-Instruct","open_weights":true,"reasoning":false,"release_date":"2024-11-11","temperature":true,"tool_call":false},"hf:Qwen/Qwen3-235B-A22B-Instruct-2507":{"attachment":false,"cost":{"input":0.2,"output":0.6},"family":"qwen","id":"hf:Qwen/Qwen3-235B-A22B-Instruct-2507","knowledge":"2025-04","last_updated":"2025-07-21","limit":{"context":256000,"output":32000},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen 3 235B Instruct","open_weights":true,"reasoning":false,"release_date":"2025-04-28","temperature":true,"tool_call":true},"hf:Qwen/Qwen3-235B-A22B-Thinking-2507":{"attachment":false,"cost":{"input":0.65,"output":3},"family":"qwen","id":"hf:Qwen/Qwen3-235B-A22B-Thinking-2507","knowledge":"2025-04","last_updated":"2025-07-25","limit":{"context":256000,"output":32000},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 235B A22B Thinking 2507","open_weights":true,"reasoning":true,"release_date":"2025-07-25","temperature":true,"tool_call":true},"hf:Qwen/Qwen3-Coder-480B-A35B-Instruct":{"attachment":false,"cost":{"input":2,"output":2},"family":"qwen","id":"hf:Qwen/Qwen3-Coder-480B-A35B-Instruct","knowledge":"2025-04","last_updated":"2025-07-23","limit":{"context":256000,"output":32000},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen 3 Coder 480B","open_weights":true,"reasoning":false,"release_date":"2025-07-23","temperature":true,"tool_call":true},"hf:Qwen/Qwen3.5-397B-A17B":{"attachment":false,"cost":{"cache_read":0.6,"input":0.6,"output":3},"family":"qwen","id":"hf:Qwen/Qwen3.5-397B-A17B","interleaved":{"field":"reasoning_content"},"last_updated":"2026-02-11","limit":{"context":262144,"output":65536},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen3.5-97B-A17B","open_weights":true,"reasoning":true,"release_date":"2026-02-11","status":"beta","structured_output":true,"temperature":true,"tool_call":true},"hf:deepseek-ai/DeepSeek-R1":{"attachment":false,"cost":{"input":0.55,"output":2.19},"family":"deepseek-thinking","id":"hf:deepseek-ai/DeepSeek-R1","knowledge":"2025-01","last_updated":"2025-01-20","limit":{"context":128000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek R1","open_weights":true,"reasoning":true,"release_date":"2025-01-20","temperature":true,"tool_call":true},"hf:deepseek-ai/DeepSeek-R1-0528":{"attachment":false,"cost":{"input":3,"output":8},"family":"deepseek-thinking","id":"hf:deepseek-ai/DeepSeek-R1-0528","last_updated":"2025-08-01","limit":{"context":128000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek R1 (0528)","open_weights":false,"reasoning":true,"release_date":"2025-08-01","temperature":true,"tool_call":true},"hf:deepseek-ai/DeepSeek-V3":{"attachment":false,"cost":{"input":1.25,"output":1.25},"family":"deepseek","id":"hf:deepseek-ai/DeepSeek-V3","knowledge":"2024-07","last_updated":"2025-05-29","limit":{"context":128000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V3","open_weights":true,"reasoning":true,"release_date":"2025-01-20","temperature":true,"tool_call":true},"hf:deepseek-ai/DeepSeek-V3-0324":{"attachment":false,"cost":{"input":1.2,"output":1.2},"family":"deepseek","id":"hf:deepseek-ai/DeepSeek-V3-0324","last_updated":"2025-08-01","limit":{"context":128000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V3 (0324)","open_weights":false,"reasoning":false,"release_date":"2025-08-01","temperature":true,"tool_call":true},"hf:deepseek-ai/DeepSeek-V3.1":{"attachment":false,"cost":{"input":0.56,"output":1.68},"family":"deepseek","id":"hf:deepseek-ai/DeepSeek-V3.1","last_updated":"2025-08-21","limit":{"context":128000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V3.1","open_weights":false,"reasoning":true,"release_date":"2025-08-21","temperature":true,"tool_call":true},"hf:deepseek-ai/DeepSeek-V3.1-Terminus":{"attachment":false,"cost":{"input":1.2,"output":1.2},"family":"deepseek","id":"hf:deepseek-ai/DeepSeek-V3.1-Terminus","last_updated":"2025-09-25","limit":{"context":128000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V3.1 Terminus","open_weights":false,"reasoning":true,"release_date":"2025-09-22","temperature":true,"tool_call":true},"hf:deepseek-ai/DeepSeek-V3.2":{"attachment":false,"cost":{"cache_read":0.27,"cache_write":0,"input":0.27,"output":0.4},"family":"deepseek","id":"hf:deepseek-ai/DeepSeek-V3.2","last_updated":"2025-12-01","limit":{"context":162816,"input":162816,"output":8000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V3.2","open_weights":true,"reasoning":true,"release_date":"2025-12-01","structured_output":true,"temperature":true,"tool_call":true},"hf:meta-llama/Llama-3.1-405B-Instruct":{"attachment":false,"cost":{"input":3,"output":3},"family":"llama","id":"hf:meta-llama/Llama-3.1-405B-Instruct","knowledge":"2023-12","last_updated":"2024-07-23","limit":{"context":128000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Llama-3.1-405B-Instruct","open_weights":true,"reasoning":true,"release_date":"2024-07-23","temperature":true,"tool_call":true},"hf:meta-llama/Llama-3.1-70B-Instruct":{"attachment":false,"cost":{"input":0.9,"output":0.9},"family":"llama","id":"hf:meta-llama/Llama-3.1-70B-Instruct","knowledge":"2023-12","last_updated":"2024-07-23","limit":{"context":128000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Llama-3.1-70B-Instruct","open_weights":true,"reasoning":true,"release_date":"2024-07-23","temperature":true,"tool_call":true},"hf:meta-llama/Llama-3.1-8B-Instruct":{"attachment":false,"cost":{"input":0.2,"output":0.2},"family":"llama","id":"hf:meta-llama/Llama-3.1-8B-Instruct","knowledge":"2023-12","last_updated":"2024-07-23","limit":{"context":128000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Llama-3.1-8B-Instruct","open_weights":true,"reasoning":true,"release_date":"2024-07-23","temperature":true,"tool_call":true},"hf:meta-llama/Llama-3.3-70B-Instruct":{"attachment":false,"cost":{"input":0.9,"output":0.9},"family":"llama","id":"hf:meta-llama/Llama-3.3-70B-Instruct","knowledge":"2023-12","last_updated":"2024-12-06","limit":{"context":128000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Llama-3.3-70B-Instruct","open_weights":true,"reasoning":true,"release_date":"2024-12-06","temperature":true,"tool_call":true},"hf:meta-llama/Llama-4-Maverick-17B-128E-Instruct-FP8":{"attachment":true,"cost":{"input":0.22,"output":0.88},"family":"llama","id":"hf:meta-llama/Llama-4-Maverick-17B-128E-Instruct-FP8","knowledge":"2024-08","last_updated":"2025-04-05","limit":{"context":524000,"output":4096},"modalities":{"input":["text","image"],"output":["text"]},"name":"Llama-4-Maverick-17B-128E-Instruct-FP8","open_weights":true,"reasoning":false,"release_date":"2025-04-05","temperature":true,"tool_call":true},"hf:meta-llama/Llama-4-Scout-17B-16E-Instruct":{"attachment":true,"cost":{"input":0.15,"output":0.6},"family":"llama","id":"hf:meta-llama/Llama-4-Scout-17B-16E-Instruct","knowledge":"2024-08","last_updated":"2025-04-05","limit":{"context":328000,"output":4096},"modalities":{"input":["text","image"],"output":["text"]},"name":"Llama-4-Scout-17B-16E-Instruct","open_weights":true,"reasoning":false,"release_date":"2025-04-05","temperature":true,"tool_call":true},"hf:moonshotai/Kimi-K2-Instruct-0905":{"attachment":false,"cost":{"input":1.2,"output":1.2},"family":"kimi","id":"hf:moonshotai/Kimi-K2-Instruct-0905","knowledge":"2024-10","last_updated":"2025-09-05","limit":{"context":262144,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Kimi K2 0905","open_weights":true,"reasoning":false,"release_date":"2025-09-05","temperature":true,"tool_call":true},"hf:moonshotai/Kimi-K2-Thinking":{"attachment":false,"cost":{"input":0.55,"output":2.19},"family":"kimi-thinking","id":"hf:moonshotai/Kimi-K2-Thinking","knowledge":"2025-11","last_updated":"2025-11-07","limit":{"context":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Kimi K2 Thinking","open_weights":true,"reasoning":true,"release_date":"2025-11-07","temperature":true,"tool_call":true},"hf:moonshotai/Kimi-K2.5":{"attachment":false,"cost":{"input":0.55,"output":2.19},"family":"kimi","id":"hf:moonshotai/Kimi-K2.5","interleaved":{"field":"reasoning_content"},"knowledge":"2025-01","last_updated":"2026-01","limit":{"context":262144,"output":65536},"modalities":{"input":["text","image"],"output":["text"]},"name":"Kimi K2.5","open_weights":true,"reasoning":true,"release_date":"2026-01","temperature":true,"tool_call":true},"hf:moonshotai/Kimi-K2.6":{"attachment":true,"cost":{"cache_read":0.95,"input":0.95,"output":4},"family":"kimi-k2.6","id":"hf:moonshotai/Kimi-K2.6","interleaved":{"field":"reasoning_content"},"knowledge":"2025-01","last_updated":"2026-04-21","limit":{"context":262144,"output":65536},"modalities":{"input":["text","image"],"output":["text"]},"name":"Kimi K2.6","open_weights":true,"reasoning":true,"release_date":"2026-04-21","structured_output":true,"temperature":true,"tool_call":true},"hf:nvidia/Kimi-K2.5-NVFP4":{"attachment":false,"cost":{"input":0.55,"output":2.19},"family":"kimi","id":"hf:nvidia/Kimi-K2.5-NVFP4","interleaved":{"field":"reasoning_content"},"knowledge":"2025-01","last_updated":"2026-01","limit":{"context":262144,"output":65536},"modalities":{"input":["text","image"],"output":["text"]},"name":"Kimi K2.5 (NVFP4)","open_weights":true,"reasoning":true,"release_date":"2026-01","temperature":true,"tool_call":true},"hf:nvidia/NVIDIA-Nemotron-3-Super-120B-A12B-NVFP4":{"attachment":false,"cost":{"cache_read":0.3,"input":0.3,"output":1},"family":"nemotron","id":"hf:nvidia/NVIDIA-Nemotron-3-Super-120B-A12B-NVFP4","interleaved":{"field":"reasoning_content"},"knowledge":"2024-04","last_updated":"2026-04-03","limit":{"context":262144,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Nemotron 3 Super 120B","open_weights":true,"reasoning":true,"release_date":"2026-03-11","structured_output":true,"temperature":true,"tool_call":true},"hf:openai/gpt-oss-120b":{"attachment":false,"cost":{"input":0.1,"output":0.1},"family":"gpt-oss","id":"hf:openai/gpt-oss-120b","last_updated":"2025-08-05","limit":{"context":128000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"GPT OSS 120B","open_weights":true,"reasoning":true,"release_date":"2025-08-05","temperature":true,"tool_call":true},"hf:zai-org/GLM-4.6":{"attachment":false,"cost":{"input":0.55,"output":2.19},"family":"glm","id":"hf:zai-org/GLM-4.6","knowledge":"2025-04","last_updated":"2025-09-30","limit":{"context":200000,"output":64000},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 4.6","open_weights":true,"reasoning":true,"release_date":"2025-09-30","temperature":true,"tool_call":true},"hf:zai-org/GLM-4.7":{"attachment":false,"cost":{"input":0.55,"output":2.19},"family":"glm","id":"hf:zai-org/GLM-4.7","interleaved":{"field":"reasoning_content"},"knowledge":"2025-04","last_updated":"2025-12-22","limit":{"context":200000,"output":64000},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 4.7","open_weights":true,"reasoning":true,"release_date":"2025-12-22","temperature":true,"tool_call":true},"hf:zai-org/GLM-4.7-Flash":{"attachment":false,"cost":{"cache_read":0.06,"input":0.06,"output":0.4},"family":"glm","id":"hf:zai-org/GLM-4.7-Flash","interleaved":{"field":"reasoning_content"},"last_updated":"2026-01-18","limit":{"context":196608,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4.7-Flash","open_weights":true,"reasoning":true,"release_date":"2026-01-18","structured_output":true,"temperature":true,"tool_call":true},"hf:zai-org/GLM-5":{"attachment":false,"cost":{"cache_read":1,"input":1,"output":3},"family":"glm","id":"hf:zai-org/GLM-5","interleaved":{"field":"reasoning_content"},"last_updated":"2026-04-08","limit":{"context":196608,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-5","open_weights":true,"reasoning":true,"release_date":"2026-02-12","structured_output":true,"temperature":true,"tool_call":true},"hf:zai-org/GLM-5.1":{"attachment":false,"cost":{"cache_read":1,"input":1,"output":3},"family":"glm","id":"hf:zai-org/GLM-5.1","interleaved":{"field":"reasoning_content"},"last_updated":"2026-04-12","limit":{"context":196608,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 5.1","open_weights":true,"reasoning":true,"release_date":"2026-03-27","structured_output":true,"temperature":true,"tool_call":true}},"name":"Synthetic","npm":"@ai-sdk/openai-compatible"},"tencent-coding-plan":{"api":"https://api.lkeap.cloud.tencent.com/coding/v3","doc":"https://cloud.tencent.com/document/product/1772/128947","env":["TENCENT_CODING_PLAN_API_KEY"],"id":"tencent-coding-plan","models":{"glm-5":{"attachment":false,"cost":{"cache_read":0,"cache_write":0,"input":0,"output":0},"family":"glm","id":"glm-5","interleaved":{"field":"reasoning_content"},"last_updated":"2026-02-11","limit":{"context":202752,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-5","open_weights":false,"reasoning":true,"release_date":"2026-02-11","temperature":true,"tool_call":true},"hunyuan-2.0-instruct":{"attachment":false,"cost":{"cache_read":0,"cache_write":0,"input":0,"output":0},"family":"hunyuan","id":"hunyuan-2.0-instruct","last_updated":"2026-03-08","limit":{"context":131072,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Tencent HY 2.0 Instruct","open_weights":false,"reasoning":false,"release_date":"2026-03-08","temperature":true,"tool_call":true},"hunyuan-2.0-thinking":{"attachment":false,"cost":{"cache_read":0,"cache_write":0,"input":0,"output":0},"family":"hunyuan","id":"hunyuan-2.0-thinking","interleaved":{"field":"reasoning_content"},"last_updated":"2026-03-08","limit":{"context":131072,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Tencent HY 2.0 Think","open_weights":false,"reasoning":true,"release_date":"2026-03-08","temperature":true,"tool_call":true},"hunyuan-t1":{"attachment":false,"cost":{"cache_read":0,"cache_write":0,"input":0,"output":0},"family":"hunyuan","id":"hunyuan-t1","interleaved":{"field":"reasoning_content"},"last_updated":"2026-03-08","limit":{"context":131072,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Hunyuan-T1","open_weights":false,"reasoning":true,"release_date":"2026-03-08","temperature":true,"tool_call":true},"hunyuan-turbos":{"attachment":false,"cost":{"cache_read":0,"cache_write":0,"input":0,"output":0},"family":"hunyuan","id":"hunyuan-turbos","last_updated":"2026-03-08","limit":{"context":131072,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Hunyuan-TurboS","open_weights":false,"reasoning":false,"release_date":"2026-03-08","temperature":true,"tool_call":true},"kimi-k2.5":{"attachment":true,"cost":{"cache_read":0,"cache_write":0,"input":0,"output":0},"family":"kimi","id":"kimi-k2.5","interleaved":{"field":"reasoning_content"},"knowledge":"2025-01","last_updated":"2026-01-27","limit":{"context":262144,"output":32768},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Kimi-K2.5","open_weights":true,"reasoning":true,"release_date":"2026-01-27","temperature":true,"tool_call":true},"minimax-m2.5":{"attachment":false,"cost":{"cache_read":0,"cache_write":0,"input":0,"output":0},"family":"minimax","id":"minimax-m2.5","interleaved":{"field":"reasoning_content"},"last_updated":"2026-02-12","limit":{"context":204800,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2.5","open_weights":true,"reasoning":true,"release_date":"2026-02-12","temperature":true,"tool_call":true},"tc-code-latest":{"attachment":false,"cost":{"cache_read":0,"cache_write":0,"input":0,"output":0},"family":"auto","id":"tc-code-latest","last_updated":"2026-03-08","limit":{"context":131072,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Auto","open_weights":false,"reasoning":false,"release_date":"2026-03-08","temperature":true,"tool_call":true}},"name":"Tencent Coding Plan (China)","npm":"@ai-sdk/openai-compatible"},"tencent-tokenhub":{"api":"https://tokenhub.tencentmaas.com/v1","doc":"https://cloud.tencent.com/document/product/1823/130050","env":["TENCENT_TOKENHUB_API_KEY"],"id":"tencent-tokenhub","models":{"hy3-preview":{"attachment":false,"cost":{"cache_read":0,"cache_write":0,"input":0,"output":0},"family":"Hy","id":"hy3-preview","last_updated":"2026-04-20","limit":{"context":256000,"output":64000},"modalities":{"input":["text"],"output":["text"]},"name":"Hy3 preview","open_weights":true,"reasoning":true,"release_date":"2026-04-20","temperature":true,"tool_call":true}},"name":"Tencent TokenHub","npm":"@ai-sdk/openai-compatible"},"the-grid-ai":{"api":"https://api.thegrid.ai/v1","doc":"https://thegrid.ai/docs","env":["THEGRIDAI_API_KEY"],"id":"the-grid-ai","models":{"agent-max":{"attachment":false,"id":"agent-max","interleaved":{"field":"reasoning_content"},"last_updated":"2026-05-19","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Agent Max","open_weights":false,"reasoning":true,"release_date":"2026-05-04","status":"beta","structured_output":true,"temperature":true,"tool_call":true},"agent-prime":{"attachment":false,"id":"agent-prime","last_updated":"2026-05-19","limit":{"context":128000,"output":64000},"modalities":{"input":["text"],"output":["text"]},"name":"Agent Prime","open_weights":false,"reasoning":true,"release_date":"2026-05-04","status":"beta","structured_output":true,"temperature":true,"tool_call":true},"agent-standard":{"attachment":false,"id":"agent-standard","last_updated":"2026-05-19","limit":{"context":128000,"output":16000},"modalities":{"input":["text"],"output":["text"]},"name":"Agent Standard","open_weights":false,"reasoning":true,"release_date":"2026-05-04","status":"beta","structured_output":true,"temperature":true,"tool_call":true},"code-max":{"attachment":false,"id":"code-max","interleaved":{"field":"reasoning_content"},"last_updated":"2026-05-19","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Code Max","open_weights":false,"reasoning":true,"release_date":"2026-05-04","status":"beta","structured_output":true,"temperature":true,"tool_call":true},"code-prime":{"attachment":false,"id":"code-prime","last_updated":"2026-05-19","limit":{"context":128000,"output":64000},"modalities":{"input":["text"],"output":["text"]},"name":"Code Prime","open_weights":false,"reasoning":true,"release_date":"2026-05-04","status":"beta","structured_output":true,"temperature":true,"tool_call":true},"code-standard":{"attachment":false,"id":"code-standard","last_updated":"2026-05-19","limit":{"context":128000,"output":16000},"modalities":{"input":["text"],"output":["text"]},"name":"Code Standard","open_weights":false,"reasoning":true,"release_date":"2026-05-04","status":"beta","structured_output":true,"temperature":true,"tool_call":true},"text-max":{"attachment":false,"id":"text-max","interleaved":{"field":"reasoning_content"},"last_updated":"2026-05-19","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Text Max","open_weights":false,"reasoning":true,"release_date":"2026-03-24","structured_output":true,"temperature":true,"tool_call":true},"text-prime":{"attachment":false,"id":"text-prime","last_updated":"2026-05-19","limit":{"context":128000,"output":30000},"modalities":{"input":["text"],"output":["text"]},"name":"Text Prime","open_weights":false,"reasoning":true,"release_date":"2026-02-26","structured_output":true,"temperature":true,"tool_call":true},"text-standard":{"attachment":false,"id":"text-standard","last_updated":"2026-05-19","limit":{"context":128000,"output":16000},"modalities":{"input":["text"],"output":["text"]},"name":"Text Standard","open_weights":false,"reasoning":true,"release_date":"2026-02-26","structured_output":true,"temperature":true,"tool_call":true}},"name":"The Grid AI","npm":"@ai-sdk/openai-compatible"},"togetherai":{"doc":"https://docs.together.ai/docs/serverless-models","env":["TOGETHER_API_KEY"],"id":"togetherai","models":{"MiniMaxAI/MiniMax-M2.5":{"attachment":false,"cost":{"cache_read":0.06,"input":0.3,"output":1.2},"family":"minimax","id":"MiniMaxAI/MiniMax-M2.5","last_updated":"2026-02-12","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2.5","open_weights":true,"reasoning":true,"release_date":"2026-02-12","temperature":true,"tool_call":true},"MiniMaxAI/MiniMax-M2.7":{"attachment":false,"cost":{"cache_read":0.06,"input":0.3,"output":1.2},"family":"minimax","id":"MiniMaxAI/MiniMax-M2.7","last_updated":"2026-03-18","limit":{"context":202752,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2.7","open_weights":true,"reasoning":true,"release_date":"2026-03-18","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen3-235B-A22B-Instruct-2507-tput":{"attachment":false,"cost":{"input":0.2,"output":0.6},"family":"qwen","id":"Qwen/Qwen3-235B-A22B-Instruct-2507-tput","knowledge":"2025-07","last_updated":"2025-07-25","limit":{"context":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 235B A22B Instruct 2507 FP8","open_weights":true,"reasoning":true,"release_date":"2025-07-25","temperature":true,"tool_call":true},"Qwen/Qwen3-Coder-480B-A35B-Instruct-FP8":{"attachment":false,"cost":{"input":2,"output":2},"family":"qwen","id":"Qwen/Qwen3-Coder-480B-A35B-Instruct-FP8","knowledge":"2025-04","last_updated":"2025-07-23","limit":{"context":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Coder 480B A35B Instruct","open_weights":true,"reasoning":false,"release_date":"2025-07-23","temperature":true,"tool_call":true},"Qwen/Qwen3-Coder-Next-FP8":{"attachment":false,"cost":{"input":0.5,"output":1.2},"family":"qwen","id":"Qwen/Qwen3-Coder-Next-FP8","knowledge":"2026-02-03","last_updated":"2026-02-03","limit":{"context":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Coder Next FP8","open_weights":true,"reasoning":true,"release_date":"2026-02-03","temperature":true,"tool_call":true},"Qwen/Qwen3.5-397B-A17B":{"attachment":false,"cost":{"input":0.6,"output":3.6},"family":"qwen","id":"Qwen/Qwen3.5-397B-A17B","last_updated":"2026-02-16","limit":{"context":262144,"output":130000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen3.5 397B A17B","open_weights":true,"reasoning":true,"release_date":"2026-02-16","temperature":true,"tool_call":true},"Qwen/Qwen3.6-Plus":{"attachment":false,"cost":{"input":0.5,"output":3},"family":"qwen","id":"Qwen/Qwen3.6-Plus","last_updated":"2026-04-30","limit":{"context":1000000,"output":500000},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3.6 Plus","open_weights":true,"reasoning":true,"release_date":"2026-04-30","temperature":true,"tool_call":true},"Qwen/Qwen3.7-Max":{"attachment":false,"cost":{"input":2.5,"output":7.5},"family":"qwen","id":"Qwen/Qwen3.7-Max","last_updated":"2026-05-21","limit":{"context":1000000,"output":500000},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3.7 Max","open_weights":false,"reasoning":true,"release_date":"2026-05-21","temperature":true,"tool_call":true},"deepseek-ai/DeepSeek-R1":{"attachment":false,"cost":{"input":3,"output":7},"family":"deepseek-thinking","id":"deepseek-ai/DeepSeek-R1","knowledge":"2024-07","last_updated":"2025-03-24","limit":{"context":163839,"output":163839},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek R1","open_weights":true,"reasoning":true,"release_date":"2024-12-26","temperature":true,"tool_call":false},"deepseek-ai/DeepSeek-V3":{"attachment":false,"cost":{"input":1.25,"output":1.25},"family":"deepseek","id":"deepseek-ai/DeepSeek-V3","knowledge":"2024-07","last_updated":"2025-05-29","limit":{"context":131072,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V3","open_weights":true,"reasoning":true,"release_date":"2025-01-20","temperature":true,"tool_call":true},"deepseek-ai/DeepSeek-V3-1":{"attachment":false,"cost":{"input":0.6,"output":1.7},"family":"deepseek","id":"deepseek-ai/DeepSeek-V3-1","knowledge":"2025-08","last_updated":"2025-08-21","limit":{"context":131072,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V3.1","open_weights":true,"reasoning":true,"release_date":"2025-08-21","temperature":true,"tool_call":true},"deepseek-ai/DeepSeek-V4-Pro":{"attachment":false,"cost":{"cache_read":0.2,"input":2.1,"output":4.4},"family":"deepseek","id":"deepseek-ai/DeepSeek-V4-Pro","interleaved":{"field":"reasoning_content"},"last_updated":"2026-04-24","limit":{"context":512000,"output":384000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V4 Pro","open_weights":true,"reasoning":true,"release_date":"2026-04-24","structured_output":true,"temperature":true,"tool_call":true},"essentialai/Rnj-1-Instruct":{"attachment":false,"cost":{"input":0.15,"output":0.15},"family":"rnj","id":"essentialai/Rnj-1-Instruct","knowledge":"2024-10","last_updated":"2025-12-05","limit":{"context":32768,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Rnj-1 Instruct","open_weights":true,"reasoning":false,"release_date":"2025-12-05","temperature":true,"tool_call":true},"google/gemma-4-31B-it":{"attachment":true,"cost":{"input":0.2,"output":0.5},"family":"gemma","id":"google/gemma-4-31B-it","knowledge":"2025-01","last_updated":"2026-04-07","limit":{"context":262144,"output":131072},"modalities":{"input":["text","image"],"output":["text"]},"name":"Gemma 4 31B Instruct","open_weights":true,"reasoning":true,"release_date":"2026-04-07","temperature":true,"tool_call":true},"meta-llama/Llama-3.3-70B-Instruct-Turbo":{"attachment":false,"cost":{"input":0.88,"output":0.88},"family":"llama","id":"meta-llama/Llama-3.3-70B-Instruct-Turbo","knowledge":"2023-12","last_updated":"2024-12-06","limit":{"context":131072,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.3 70B","open_weights":true,"reasoning":false,"release_date":"2024-12-06","temperature":true,"tool_call":true},"moonshotai/Kimi-K2.5":{"attachment":false,"cost":{"input":0.5,"output":2.8},"family":"kimi","id":"moonshotai/Kimi-K2.5","interleaved":true,"knowledge":"2026-01","last_updated":"2026-01-27","limit":{"context":262144,"output":262144},"modalities":{"input":["text","image"],"output":["text"]},"name":"Kimi K2.5","open_weights":true,"reasoning":true,"release_date":"2026-01-27","temperature":true,"tool_call":true},"moonshotai/Kimi-K2.6":{"attachment":true,"cost":{"cache_read":0.2,"input":1.2,"output":4.5},"family":"kimi-k2.6","id":"moonshotai/Kimi-K2.6","knowledge":"2025-01","last_updated":"2026-04-21","limit":{"context":262144,"output":131000},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Kimi K2.6","open_weights":true,"reasoning":true,"release_date":"2026-04-21","structured_output":true,"temperature":true,"tool_call":true},"openai/gpt-oss-120b":{"attachment":false,"cost":{"input":0.15,"output":0.6},"family":"gpt-oss","id":"openai/gpt-oss-120b","knowledge":"2025-08","last_updated":"2025-08-05","limit":{"context":131072,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GPT OSS 120B","open_weights":true,"reasoning":true,"release_date":"2025-08-05","temperature":true,"tool_call":true},"zai-org/GLM-5.1":{"attachment":false,"cost":{"input":1.4,"output":4.4},"family":"glm","id":"zai-org/GLM-5.1","knowledge":"2025-11","last_updated":"2026-04-07","limit":{"context":202752,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-5.1","open_weights":true,"reasoning":true,"release_date":"2026-04-07","structured_output":true,"temperature":true,"tool_call":true}},"name":"Together AI","npm":"@ai-sdk/togetherai"},"umans-ai-coding-plan":{"api":"https://api.code.umans.ai/v1","doc":"https://app.umans.ai/offers/code/docs","env":["UMANS_AI_CODING_PLAN_API_KEY"],"id":"umans-ai-coding-plan","models":{"umans-coder":{"attachment":true,"cost":{"cache_read":0,"cache_write":0,"input":0,"output":0},"family":"kimi-k2.6","id":"umans-coder","interleaved":{"field":"reasoning_content"},"knowledge":"2025-01","last_updated":"2026-04-21","limit":{"context":262144,"output":262144},"modalities":{"input":["text","image"],"output":["text"]},"name":"Umans Coder","open_weights":true,"reasoning":true,"release_date":"2026-04-21","structured_output":true,"temperature":false,"tool_call":true},"umans-flash":{"attachment":true,"cost":{"cache_read":0,"cache_write":0,"input":0,"output":0},"family":"qwen","id":"umans-flash","last_updated":"2026-04-17","limit":{"context":262144,"output":262144},"modalities":{"input":["text","image"],"output":["text"]},"name":"Umans Flash","open_weights":true,"reasoning":true,"release_date":"2026-04-17","structured_output":true,"temperature":false,"tool_call":true},"umans-glm-5.1":{"attachment":false,"cost":{"cache_read":0,"cache_write":0,"input":0,"output":0},"family":"glm","id":"umans-glm-5.1","interleaved":{"field":"reasoning_content"},"last_updated":"2026-03-27","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 5.1","open_weights":false,"reasoning":true,"release_date":"2026-03-27","structured_output":true,"temperature":true,"tool_call":true},"umans-kimi-k2.6":{"attachment":true,"cost":{"cache_read":0,"cache_write":0,"input":0,"output":0},"family":"kimi-k2.6","id":"umans-kimi-k2.6","interleaved":{"field":"reasoning_content"},"knowledge":"2025-01","last_updated":"2026-04-21","limit":{"context":262144,"output":262144},"modalities":{"input":["text","image"],"output":["text"]},"name":"Kimi K2.6","open_weights":true,"reasoning":true,"release_date":"2026-04-21","structured_output":true,"temperature":false,"tool_call":true},"umans-qwen3.6-35b-a3b":{"attachment":true,"cost":{"cache_read":0,"cache_write":0,"input":0,"output":0},"family":"qwen","id":"umans-qwen3.6-35b-a3b","last_updated":"2026-04-17","limit":{"context":262144,"output":262144},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen3.6 35B A3B","open_weights":true,"reasoning":true,"release_date":"2026-04-17","structured_output":true,"temperature":false,"tool_call":true}},"name":"Umans AI Coding Plan","npm":"@ai-sdk/openai-compatible"},"upstage":{"api":"https://api.upstage.ai/v1/solar","doc":"https://developers.upstage.ai/docs/apis/chat","env":["UPSTAGE_API_KEY"],"id":"upstage","models":{"solar-mini":{"attachment":false,"cost":{"input":0.15,"output":0.15},"family":"solar-mini","id":"solar-mini","knowledge":"2024-09","last_updated":"2025-04-22","limit":{"context":32768,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"solar-mini","open_weights":false,"reasoning":false,"release_date":"2024-06-12","temperature":true,"tool_call":true},"solar-pro2":{"attachment":false,"cost":{"input":0.25,"output":0.25},"family":"solar-pro","id":"solar-pro2","knowledge":"2025-03","last_updated":"2025-05-20","limit":{"context":65536,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"solar-pro2","open_weights":false,"reasoning":true,"release_date":"2025-05-20","temperature":true,"tool_call":true},"solar-pro3":{"attachment":false,"cost":{"input":0.25,"output":0.25},"family":"solar-pro","id":"solar-pro3","knowledge":"2025-03","last_updated":"2026-01","limit":{"context":131072,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"solar-pro3","open_weights":false,"reasoning":true,"release_date":"2026-01","temperature":true,"tool_call":true}},"name":"Upstage","npm":"@ai-sdk/openai-compatible"},"v0":{"doc":"https://sdk.vercel.ai/providers/ai-sdk-providers/vercel","env":["V0_API_KEY"],"id":"v0","models":{"v0-1.0-md":{"attachment":true,"cost":{"input":3,"output":15},"family":"v0","id":"v0-1.0-md","last_updated":"2025-05-22","limit":{"context":128000,"output":32000},"modalities":{"input":["text","image"],"output":["text"]},"name":"v0-1.0-md","open_weights":false,"reasoning":true,"release_date":"2025-05-22","temperature":true,"tool_call":true},"v0-1.5-lg":{"attachment":true,"cost":{"input":15,"output":75},"family":"v0","id":"v0-1.5-lg","last_updated":"2025-06-09","limit":{"context":512000,"output":32000},"modalities":{"input":["text","image"],"output":["text"]},"name":"v0-1.5-lg","open_weights":false,"reasoning":true,"release_date":"2025-06-09","temperature":true,"tool_call":true},"v0-1.5-md":{"attachment":true,"cost":{"input":3,"output":15},"family":"v0","id":"v0-1.5-md","last_updated":"2025-06-09","limit":{"context":128000,"output":32000},"modalities":{"input":["text","image"],"output":["text"]},"name":"v0-1.5-md","open_weights":false,"reasoning":true,"release_date":"2025-06-09","temperature":true,"tool_call":true}},"name":"v0","npm":"@ai-sdk/vercel"},"venice":{"doc":"https://docs.venice.ai","env":["VENICE_API_KEY"],"id":"venice","models":{"aion-labs-aion-2-0":{"attachment":false,"cost":{"cache_read":0.25,"input":1,"output":2},"family":"o","id":"aion-labs-aion-2-0","last_updated":"2026-04-12","limit":{"context":128000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Aion 2.0","open_weights":false,"reasoning":true,"release_date":"2026-03-24","temperature":true,"tool_call":false},"arcee-trinity-large-thinking":{"attachment":false,"cost":{"cache_read":0.075,"input":0.3125,"output":1.125},"family":"trinity","id":"arcee-trinity-large-thinking","interleaved":{"field":"reasoning_content"},"last_updated":"2026-04-04","limit":{"context":256000,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Trinity Large Thinking","open_weights":true,"reasoning":true,"release_date":"2026-04-02","structured_output":true,"temperature":true,"tool_call":true},"claude-opus-4-5":{"attachment":true,"cost":{"cache_read":0.6,"cache_write":7.5,"input":6,"output":30},"family":"claude-opus","id":"claude-opus-4-5","last_updated":"2026-04-12","limit":{"context":198000,"output":32768},"modalities":{"input":["text","image"],"output":["text"]},"name":"Claude Opus 4.5","open_weights":false,"reasoning":true,"release_date":"2025-12-06","structured_output":true,"temperature":true,"tool_call":true},"claude-opus-4-6":{"attachment":true,"cost":{"cache_read":0.6,"cache_write":7.5,"input":6,"output":30},"family":"claude-opus","id":"claude-opus-4-6","knowledge":"2025-05-31","last_updated":"2026-03-16","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Claude Opus 4.6","open_weights":false,"reasoning":true,"release_date":"2026-02-05","structured_output":true,"temperature":true,"tool_call":true},"claude-opus-4-6-fast":{"attachment":true,"cost":{"cache_read":3.6,"cache_write":45,"input":36,"output":180},"family":"claude-opus","id":"claude-opus-4-6-fast","knowledge":"2025-05-31","last_updated":"2026-04-08","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Claude Opus 4.6 Fast","open_weights":false,"reasoning":true,"release_date":"2026-04-08","structured_output":true,"temperature":true,"tool_call":true},"claude-opus-4-7":{"attachment":true,"cost":{"cache_read":0.6,"cache_write":7.5,"input":6,"output":30},"family":"claude-opus","id":"claude-opus-4-7","last_updated":"2026-04-16","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Claude Opus 4.7","open_weights":false,"reasoning":true,"release_date":"2026-04-16","structured_output":true,"temperature":false,"tool_call":true},"claude-opus-4-7-fast":{"attachment":true,"cost":{"cache_read":3.6,"cache_write":45,"input":36,"output":180},"family":"claude-opus","id":"claude-opus-4-7-fast","last_updated":"2026-05-14","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Claude Opus 4.7 Fast","open_weights":false,"reasoning":true,"release_date":"2026-05-14","structured_output":true,"temperature":true,"tool_call":true},"claude-opus-4-8":{"attachment":true,"cost":{"cache_read":0.6,"cache_write":7.5,"input":6,"output":30},"family":"claude-opus","id":"claude-opus-4-8","last_updated":"2026-05-28","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Claude Opus 4.8","open_weights":false,"reasoning":true,"release_date":"2026-05-28","structured_output":true,"temperature":true,"tool_call":true},"claude-opus-4-8-fast":{"attachment":true,"cost":{"cache_read":1.2,"cache_write":15,"input":12,"output":60},"family":"claude-opus","id":"claude-opus-4-8-fast","last_updated":"2026-05-28","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Claude Opus 4.8 Fast","open_weights":false,"reasoning":true,"release_date":"2026-05-28","structured_output":true,"temperature":true,"tool_call":true},"claude-sonnet-4-5":{"attachment":true,"cost":{"cache_read":0.375,"cache_write":4.69,"input":3.75,"output":18.75},"family":"claude-sonnet","id":"claude-sonnet-4-5","last_updated":"2026-04-12","limit":{"context":198000,"output":64000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Claude Sonnet 4.5","open_weights":false,"reasoning":true,"release_date":"2025-01-15","structured_output":true,"temperature":true,"tool_call":true},"claude-sonnet-4-6":{"attachment":true,"cost":{"cache_read":0.36,"cache_write":4.5,"input":3.6,"output":18},"family":"claude-sonnet","id":"claude-sonnet-4-6","knowledge":"2025-08-31","last_updated":"2026-03-16","limit":{"context":1000000,"output":64000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Claude Sonnet 4.6","open_weights":false,"reasoning":true,"release_date":"2026-02-17","structured_output":true,"temperature":true,"tool_call":true},"deepseek-v3.2":{"attachment":false,"cost":{"cache_read":0.16,"input":0.33,"output":0.48},"family":"deepseek","id":"deepseek-v3.2","knowledge":"2025-10","last_updated":"2026-03-24","limit":{"context":160000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V3.2","open_weights":true,"reasoning":true,"release_date":"2025-12-04","structured_output":true,"temperature":true,"tool_call":true},"deepseek-v4-flash":{"attachment":false,"cost":{"cache_read":0.028,"input":0.17,"output":0.35},"family":"deepseek-flash","id":"deepseek-v4-flash","interleaved":{"field":"reasoning_content"},"last_updated":"2026-04-29","limit":{"context":1000000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V4 Flash","open_weights":true,"reasoning":true,"release_date":"2026-04-24","structured_output":true,"temperature":true,"tool_call":true},"deepseek-v4-pro":{"attachment":false,"cost":{"cache_read":0.33,"input":1.73,"output":3.796},"family":"deepseek","id":"deepseek-v4-pro","interleaved":{"field":"reasoning_content"},"last_updated":"2026-04-29","limit":{"context":1000000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V4 Pro","open_weights":true,"reasoning":true,"release_date":"2026-04-24","structured_output":true,"temperature":true,"tool_call":true},"gemini-3-1-pro-preview":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":0.5,"context_over_200k":{"cache_read":0.5,"input":5,"output":22.5},"input":2.5,"output":15,"tiers":[{"cache_read":0.5,"input":5,"output":22.5,"tier":{"size":200000,"type":"context"}}]},"family":"gemini-pro","id":"gemini-3-1-pro-preview","last_updated":"2026-03-12","limit":{"context":1000000,"output":32768},"modalities":{"input":["text","image","audio","video"],"output":["text"]},"name":"Gemini 3.1 Pro Preview","open_weights":false,"reasoning":true,"release_date":"2026-02-19","structured_output":true,"temperature":true,"tool_call":true},"gemini-3-5-flash":{"attachment":true,"cost":{"cache_read":0.155,"cache_write":0.086,"input":1.55,"output":9.45},"family":"gemini-flash","id":"gemini-3-5-flash","last_updated":"2026-05-25","limit":{"context":1000000,"output":65536},"modalities":{"input":["text","image","audio","video"],"output":["text"]},"name":"Gemini 3.5 Flash","open_weights":false,"reasoning":true,"release_date":"2026-05-22","structured_output":true,"temperature":true,"tool_call":true},"gemini-3-flash-preview":{"attachment":true,"cost":{"cache_read":0.07,"input":0.7,"output":3.75},"family":"gemini-flash","id":"gemini-3-flash-preview","interleaved":{"field":"reasoning_content"},"knowledge":"2025-01","last_updated":"2026-03-12","limit":{"context":256000,"output":65536},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"Gemini 3 Flash Preview","open_weights":false,"reasoning":true,"release_date":"2025-12-19","structured_output":true,"temperature":true,"tool_call":true},"gemma-4-uncensored":{"attachment":true,"cost":{"input":0.1625,"output":0.5},"family":"gemma","id":"gemma-4-uncensored","last_updated":"2026-04-19","limit":{"context":256000,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Gemma 4 Uncensored","open_weights":true,"reasoning":false,"release_date":"2026-04-13","structured_output":true,"temperature":true,"tool_call":true},"google-gemma-3-27b-it":{"attachment":true,"cost":{"input":0.12,"output":0.2},"family":"gemma","id":"google-gemma-3-27b-it","knowledge":"2025-07","last_updated":"2026-03-12","limit":{"context":198000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"Google Gemma 3 27B Instruct","open_weights":true,"reasoning":false,"release_date":"2025-11-04","structured_output":true,"temperature":true,"tool_call":true},"google-gemma-4-26b-a4b-it":{"attachment":true,"cost":{"input":0.1625,"output":0.5},"family":"gemma","id":"google-gemma-4-26b-a4b-it","last_updated":"2026-04-12","limit":{"context":256000,"output":8192},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Google Gemma 4 26B A4B Instruct","open_weights":true,"reasoning":true,"release_date":"2026-04-02","structured_output":true,"temperature":true,"tool_call":true},"google-gemma-4-31b-it":{"attachment":true,"cost":{"input":0.155,"output":0.44},"family":"gemma","id":"google-gemma-4-31b-it","last_updated":"2026-05-25","limit":{"context":256000,"output":8192},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Google Gemma 4 31B Instruct","open_weights":true,"reasoning":true,"release_date":"2026-04-03","structured_output":true,"temperature":true,"tool_call":true},"grok-4-20":{"attachment":true,"cost":{"cache_read":0.23,"context_over_200k":{"cache_read":0.45,"input":2.83,"output":5.67},"input":1.42,"output":2.83,"tiers":[{"cache_read":0.45,"input":2.83,"output":5.67,"tier":{"size":200000,"type":"context"}}]},"family":"grok","id":"grok-4-20","last_updated":"2026-05-07","limit":{"context":2000000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Grok 4.20","open_weights":false,"reasoning":true,"release_date":"2026-03-12","structured_output":true,"temperature":true,"tool_call":true},"grok-4-20-multi-agent":{"attachment":true,"cost":{"cache_read":0.23,"context_over_200k":{"cache_read":0.45,"input":2.83,"output":5.67},"input":1.42,"output":2.83,"tiers":[{"cache_read":0.45,"input":2.83,"output":5.67,"tier":{"size":200000,"type":"context"}}]},"family":"grok","id":"grok-4-20-multi-agent","last_updated":"2026-05-07","limit":{"context":2000000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Grok 4.20 Multi-Agent","open_weights":false,"reasoning":true,"release_date":"2026-03-12","structured_output":true,"temperature":true,"tool_call":false},"grok-4-3":{"attachment":true,"cost":{"cache_read":0.23,"context_over_200k":{"cache_read":0.45,"input":2.83,"output":5.67},"input":1.42,"output":2.83,"tiers":[{"cache_read":0.45,"input":2.83,"output":5.67,"tier":{"size":200000,"type":"context"}}]},"family":"grok","id":"grok-4-3","last_updated":"2026-05-04","limit":{"context":1000000,"output":32000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Grok 4.3","open_weights":false,"reasoning":true,"release_date":"2026-04-18","structured_output":true,"temperature":true,"tool_call":true},"grok-build-0-1":{"attachment":true,"cost":{"cache_read":0.2,"context_over_200k":{"cache_read":0.4,"input":2,"output":4},"input":1,"output":2,"tiers":[{"cache_read":0.4,"input":2,"output":4,"tier":{"size":200000,"type":"context"}}]},"family":"grok-build","id":"grok-build-0-1","last_updated":"2026-05-22","limit":{"context":256000,"output":65536},"modalities":{"input":["text","image"],"output":["text"]},"name":"Grok Build 0.1","open_weights":false,"reasoning":true,"release_date":"2026-05-21","structured_output":true,"temperature":true,"tool_call":true},"hermes-3-llama-3.1-405b":{"attachment":false,"cost":{"input":1.1,"output":3},"family":"hermes","id":"hermes-3-llama-3.1-405b","knowledge":"2024-04","last_updated":"2026-03-12","limit":{"context":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Hermes 3 Llama 3.1 405b","open_weights":true,"reasoning":false,"release_date":"2025-09-25","temperature":true,"tool_call":false},"kimi-k2-5":{"attachment":true,"cost":{"cache_read":0.22,"input":0.56,"output":3.5},"family":"kimi","id":"kimi-k2-5","interleaved":{"field":"reasoning_content"},"knowledge":"2024-04","last_updated":"2026-04-30","limit":{"context":256000,"output":65536},"modalities":{"input":["text","image"],"output":["text"]},"name":"Kimi K2.5","open_weights":false,"reasoning":true,"release_date":"2026-01-27","structured_output":true,"temperature":true,"tool_call":true},"kimi-k2-6":{"attachment":true,"cost":{"cache_read":0.22,"input":0.85,"output":4.655},"family":"kimi","id":"kimi-k2-6","interleaved":{"field":"reasoning_content"},"last_updated":"2026-04-30","limit":{"context":256000,"output":65536},"modalities":{"input":["text","image"],"output":["text"]},"name":"Kimi K2.6","open_weights":true,"reasoning":true,"release_date":"2026-04-20","structured_output":true,"temperature":true,"tool_call":true},"llama-3.2-3b":{"attachment":false,"cost":{"input":0.15,"output":0.6},"family":"llama","id":"llama-3.2-3b","knowledge":"2023-12","last_updated":"2026-03-12","limit":{"context":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.2 3B","open_weights":true,"reasoning":false,"release_date":"2024-10-03","temperature":true,"tool_call":true},"llama-3.3-70b":{"attachment":false,"cost":{"input":0.7,"output":2.8},"family":"llama","id":"llama-3.3-70b","knowledge":"2023-12","last_updated":"2026-03-12","limit":{"context":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.3 70B","open_weights":true,"reasoning":false,"release_date":"2025-04-06","temperature":true,"tool_call":true},"mercury-2":{"attachment":false,"cost":{"cache_read":0.03125,"input":0.3125,"output":0.9375},"family":"mercury","id":"mercury-2","last_updated":"2026-04-09","limit":{"context":128000,"output":50000},"modalities":{"input":["text"],"output":["text"]},"name":"Mercury 2","open_weights":false,"reasoning":true,"release_date":"2026-02-20","structured_output":true,"temperature":true,"tool_call":true},"minimax-m25":{"attachment":false,"cost":{"cache_read":0.04,"input":0.34,"output":1.19},"family":"minimax","id":"minimax-m25","interleaved":{"field":"reasoning_content"},"last_updated":"2026-04-12","limit":{"context":198000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax M2.5","open_weights":false,"reasoning":true,"release_date":"2026-02-12","temperature":true,"tool_call":true},"minimax-m27":{"attachment":false,"cost":{"cache_read":0.075,"input":0.375,"output":1.5},"family":"minimax","id":"minimax-m27","last_updated":"2026-04-12","limit":{"context":198000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax M2.7","open_weights":false,"reasoning":true,"release_date":"2026-03-18","temperature":true,"tool_call":true},"minimax-m3":{"attachment":true,"cost":{"cache_read":0.06,"input":0.3,"output":1.2},"family":"minimax-m3","id":"minimax-m3","last_updated":"2026-06-01","limit":{"context":500000,"output":32768},"modalities":{"input":["text","image"],"output":["text"]},"name":"MiniMax M3","open_weights":false,"reasoning":true,"release_date":"2026-06-01","temperature":true,"tool_call":true},"mistral-small-2603":{"attachment":true,"cost":{"input":0.1875,"output":0.75},"family":"mistral-small","id":"mistral-small-2603","last_updated":"2026-04-09","limit":{"context":256000,"output":65536},"modalities":{"input":["text","image"],"output":["text"]},"name":"Mistral Small 4","open_weights":true,"reasoning":true,"release_date":"2026-03-16","structured_output":true,"temperature":true,"tool_call":true},"mistral-small-3-2-24b-instruct":{"attachment":false,"cost":{"input":0.09375,"output":0.25},"family":"mistral-small","id":"mistral-small-3-2-24b-instruct","last_updated":"2026-03-16","limit":{"context":256000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Mistral Small 3.2 24B Instruct","open_weights":true,"reasoning":false,"release_date":"2026-01-15","structured_output":true,"temperature":true,"tool_call":true},"nvidia-nemotron-3-nano-30b-a3b":{"attachment":false,"cost":{"input":0.075,"output":0.3},"family":"nemotron","id":"nvidia-nemotron-3-nano-30b-a3b","last_updated":"2026-03-12","limit":{"context":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"NVIDIA Nemotron 3 Nano 30B","open_weights":true,"reasoning":false,"release_date":"2026-01-27","structured_output":true,"temperature":true,"tool_call":true},"nvidia-nemotron-cascade-2-30b-a3b":{"attachment":false,"cost":{"input":0.14,"output":0.8},"family":"nemotron","id":"nvidia-nemotron-cascade-2-30b-a3b","last_updated":"2026-04-09","limit":{"context":256000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Nemotron Cascade 2 30B A3B","open_weights":true,"reasoning":true,"release_date":"2026-03-24","structured_output":true,"temperature":true,"tool_call":true},"olafangensan-glm-4.7-flash-heretic":{"attachment":false,"cost":{"input":0.14,"output":0.8},"family":"glm-flash","id":"olafangensan-glm-4.7-flash-heretic","last_updated":"2026-03-12","limit":{"context":200000,"output":24000},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 4.7 Flash Heretic","open_weights":true,"reasoning":true,"release_date":"2026-02-04","structured_output":true,"temperature":true,"tool_call":true},"openai-gpt-4o-2024-11-20":{"attachment":true,"cost":{"input":3.125,"output":12.5},"family":"gpt","id":"openai-gpt-4o-2024-11-20","last_updated":"2026-03-06","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-4o","open_weights":false,"reasoning":false,"release_date":"2026-02-28","structured_output":true,"temperature":true,"tool_call":true},"openai-gpt-4o-mini-2024-07-18":{"attachment":true,"cost":{"cache_read":0.09375,"input":0.1875,"output":0.75},"family":"gpt-mini","id":"openai-gpt-4o-mini-2024-07-18","last_updated":"2026-03-06","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-4o Mini","open_weights":false,"reasoning":false,"release_date":"2026-02-28","structured_output":true,"temperature":true,"tool_call":true},"openai-gpt-52":{"attachment":false,"cost":{"cache_read":0.219,"input":2.19,"output":17.5},"family":"gpt","id":"openai-gpt-52","knowledge":"2025-08-31","last_updated":"2026-03-12","limit":{"context":256000,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"GPT-5.2","open_weights":false,"reasoning":true,"release_date":"2025-12-13","structured_output":true,"temperature":true,"tool_call":true},"openai-gpt-52-codex":{"attachment":true,"cost":{"cache_read":0.219,"input":2.19,"output":17.5},"family":"gpt-codex","id":"openai-gpt-52-codex","knowledge":"2025-08","last_updated":"2026-03-12","limit":{"context":256000,"output":65536},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.2 Codex","open_weights":false,"reasoning":true,"release_date":"2025-01-15","structured_output":true,"temperature":true,"tool_call":true},"openai-gpt-53-codex":{"attachment":true,"cost":{"cache_read":0.219,"input":2.19,"output":17.5},"family":"gpt-codex","id":"openai-gpt-53-codex","last_updated":"2026-03-12","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.3 Codex","open_weights":false,"reasoning":true,"release_date":"2026-02-24","structured_output":true,"temperature":true,"tool_call":true},"openai-gpt-54":{"attachment":true,"cost":{"cache_read":0.313,"input":3.13,"output":18.8},"family":"gpt","id":"openai-gpt-54","last_updated":"2026-03-09","limit":{"context":1000000,"output":131072},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.4","open_weights":false,"reasoning":true,"release_date":"2026-03-05","structured_output":true,"temperature":true,"tool_call":true},"openai-gpt-54-mini":{"attachment":true,"cost":{"cache_read":0.09375,"input":0.9375,"output":5.625},"family":"gpt-mini","id":"openai-gpt-54-mini","last_updated":"2026-03-31","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.4 Mini","open_weights":false,"reasoning":true,"release_date":"2026-03-27","structured_output":true,"temperature":true,"tool_call":true},"openai-gpt-54-pro":{"attachment":true,"cost":{"context_over_200k":{"input":75,"output":337.5},"input":37.5,"output":225,"tiers":[{"input":75,"output":337.5,"tier":{"size":272000,"type":"context"}}]},"family":"gpt-pro","id":"openai-gpt-54-pro","last_updated":"2026-03-09","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.4 Pro","open_weights":false,"reasoning":true,"release_date":"2026-03-05","structured_output":true,"temperature":true,"tool_call":true},"openai-gpt-55":{"attachment":true,"cost":{"cache_read":0.625,"context_over_200k":{"cache_read":1.25,"input":12.5,"output":56.25},"input":6.25,"output":37.5,"tiers":[{"cache_read":1.25,"input":12.5,"output":56.25,"tier":{"size":272000,"type":"context"}}]},"family":"gpt","id":"openai-gpt-55","last_updated":"2026-04-25","limit":{"context":1000000,"output":131072},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.5","open_weights":false,"reasoning":true,"release_date":"2026-04-23","structured_output":true,"temperature":true,"tool_call":true},"openai-gpt-55-pro":{"attachment":true,"cost":{"input":37.5,"output":225},"family":"gpt-pro","id":"openai-gpt-55-pro","last_updated":"2026-04-25","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.5 Pro","open_weights":false,"reasoning":true,"release_date":"2026-04-24","structured_output":true,"temperature":true,"tool_call":true},"openai-gpt-oss-120b":{"attachment":false,"cost":{"input":0.07,"output":0.3},"family":"gpt-oss","id":"openai-gpt-oss-120b","knowledge":"2025-07","last_updated":"2026-05-06","limit":{"context":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"OpenAI GPT OSS 120B","open_weights":true,"reasoning":true,"release_date":"2025-11-06","temperature":true,"tool_call":true},"qwen-3-6-plus":{"attachment":true,"cost":{"cache_read":0.0625,"cache_write":0.78,"context_over_200k":{"cache_read":0.0625,"cache_write":0.78,"input":2.5,"output":7.5},"input":0.625,"output":3.75,"tiers":[{"cache_read":0.0625,"cache_write":0.78,"input":2.5,"output":7.5,"tier":{"size":200000,"type":"context"}}]},"family":"qwen","id":"qwen-3-6-plus","last_updated":"2026-04-12","limit":{"context":1000000,"output":65536},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen 3.6 Plus Uncensored","open_weights":false,"reasoning":true,"release_date":"2026-04-06","structured_output":true,"temperature":true,"tool_call":true},"qwen-3-7-max":{"attachment":false,"cost":{"cache_read":0.27,"cache_write":3.35,"input":2.7,"output":8.05},"family":"qwen","id":"qwen-3-7-max","last_updated":"2026-05-25","limit":{"context":1000000,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen 3.7 Max","open_weights":false,"reasoning":true,"release_date":"2026-05-22","temperature":true,"tool_call":true},"qwen3-235b-a22b-instruct-2507":{"attachment":false,"cost":{"input":0.15,"output":0.75},"family":"qwen","id":"qwen3-235b-a22b-instruct-2507","knowledge":"2025-07","last_updated":"2026-03-12","limit":{"context":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen 3 235B A22B Instruct 2507","open_weights":true,"reasoning":false,"release_date":"2025-04-29","structured_output":true,"temperature":true,"tool_call":true},"qwen3-235b-a22b-thinking-2507":{"attachment":false,"cost":{"input":0.45,"output":3.5},"family":"qwen","id":"qwen3-235b-a22b-thinking-2507","interleaved":{"field":"reasoning_content"},"knowledge":"2025-07","last_updated":"2026-03-12","limit":{"context":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen 3 235B A22B Thinking 2507","open_weights":true,"reasoning":true,"release_date":"2025-04-29","structured_output":true,"temperature":true,"tool_call":true},"qwen3-5-35b-a3b":{"attachment":true,"cost":{"cache_read":0.15625,"input":0.3125,"output":1.25},"family":"qwen","id":"qwen3-5-35b-a3b","last_updated":"2026-05-25","limit":{"context":256000,"output":16384},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen 3.5 35B A3B","open_weights":true,"reasoning":true,"release_date":"2026-02-25","structured_output":true,"temperature":true,"tool_call":true},"qwen3-5-397b-a17b":{"attachment":true,"cost":{"input":0.75,"output":4.5},"family":"qwen","id":"qwen3-5-397b-a17b","last_updated":"2026-04-16","limit":{"context":128000,"output":32768},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen 3.5 397B","open_weights":true,"reasoning":true,"release_date":"2026-02-16","structured_output":true,"temperature":true,"tool_call":true},"qwen3-5-9b":{"attachment":true,"cost":{"input":0.1,"output":0.15},"family":"qwen","id":"qwen3-5-9b","last_updated":"2026-04-19","limit":{"context":256000,"output":32768},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen 3.5 9B","open_weights":true,"reasoning":true,"release_date":"2026-03-05","structured_output":true,"temperature":true,"tool_call":true},"qwen3-6-27b":{"attachment":true,"cost":{"input":0.325,"output":3.25},"family":"qwen","id":"qwen3-6-27b","last_updated":"2026-04-29","limit":{"context":256000,"output":65536},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen 3.6 27B","open_weights":false,"reasoning":true,"release_date":"2026-04-24","structured_output":true,"temperature":true,"tool_call":true},"qwen3-coder-480b-a35b-instruct-turbo":{"attachment":false,"cost":{"cache_read":0.04,"input":0.35,"output":1.5},"family":"qwen","id":"qwen3-coder-480b-a35b-instruct-turbo","last_updated":"2026-02-26","limit":{"context":256000,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen 3 Coder 480B Turbo","open_weights":true,"reasoning":false,"release_date":"2026-01-27","structured_output":true,"temperature":true,"tool_call":true},"qwen3-next-80b":{"attachment":false,"cost":{"input":0.35,"output":1.9},"family":"qwen","id":"qwen3-next-80b","knowledge":"2025-07","last_updated":"2026-03-12","limit":{"context":256000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen 3 Next 80b","open_weights":true,"reasoning":false,"release_date":"2025-04-29","structured_output":true,"temperature":true,"tool_call":true},"qwen3-vl-235b-a22b":{"attachment":true,"cost":{"input":0.25,"output":1.5},"family":"qwen","id":"qwen3-vl-235b-a22b","last_updated":"2026-03-12","limit":{"context":256000,"output":16384},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen3 VL 235B","open_weights":true,"reasoning":false,"release_date":"2026-01-16","structured_output":true,"temperature":true,"tool_call":true},"venice-uncensored-1-2":{"attachment":true,"cost":{"input":0.2,"output":0.9},"family":"venice","id":"venice-uncensored-1-2","last_updated":"2026-04-19","limit":{"context":128000,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Venice Uncensored 1.2","open_weights":true,"reasoning":false,"release_date":"2026-04-01","structured_output":true,"temperature":true,"tool_call":true},"venice-uncensored-role-play":{"attachment":true,"cost":{"input":0.5,"output":2},"family":"venice","id":"venice-uncensored-role-play","last_updated":"2026-03-16","limit":{"context":128000,"output":4096},"modalities":{"input":["text","image"],"output":["text"]},"name":"Venice Role Play Uncensored","open_weights":true,"reasoning":false,"release_date":"2026-02-20","structured_output":true,"temperature":true,"tool_call":true},"z-ai-glm-5-turbo":{"attachment":false,"cost":{"cache_read":0.24,"input":1.2,"output":4},"family":"glm","id":"z-ai-glm-5-turbo","last_updated":"2026-04-12","limit":{"context":200000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 5 Turbo","open_weights":true,"reasoning":true,"release_date":"2026-03-15","structured_output":true,"temperature":true,"tool_call":true},"z-ai-glm-5v-turbo":{"attachment":true,"cost":{"cache_read":0.3,"input":1.5,"output":5},"family":"glmv","id":"z-ai-glm-5v-turbo","last_updated":"2026-04-12","limit":{"context":200000,"output":32768},"modalities":{"input":["text","image"],"output":["text"]},"name":"GLM 5V Turbo","open_weights":false,"reasoning":true,"release_date":"2026-04-01","structured_output":true,"temperature":true,"tool_call":true},"zai-org-glm-4.6":{"attachment":false,"cost":{"cache_read":0.3,"input":0.85,"output":2.75},"family":"glm","id":"zai-org-glm-4.6","interleaved":{"field":"reasoning_content"},"last_updated":"2026-04-04","limit":{"context":198000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 4.6","open_weights":true,"reasoning":true,"release_date":"2024-04-01","structured_output":true,"temperature":true,"tool_call":true},"zai-org-glm-4.7":{"attachment":false,"cost":{"cache_read":0.11,"input":0.55,"output":2.65},"family":"glm","id":"zai-org-glm-4.7","interleaved":{"field":"reasoning_content"},"knowledge":"2025-04","last_updated":"2026-03-12","limit":{"context":198000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 4.7","open_weights":true,"reasoning":true,"release_date":"2025-12-24","structured_output":true,"temperature":true,"tool_call":true},"zai-org-glm-4.7-flash":{"attachment":false,"cost":{"input":0.125,"output":0.5},"family":"glm-flash","id":"zai-org-glm-4.7-flash","last_updated":"2026-03-12","limit":{"context":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 4.7 Flash","open_weights":true,"reasoning":true,"release_date":"2026-01-29","structured_output":true,"temperature":true,"tool_call":true},"zai-org-glm-5":{"attachment":false,"cost":{"cache_read":0.2,"input":1,"output":3.2},"family":"glm","id":"zai-org-glm-5","interleaved":{"field":"reasoning_content"},"last_updated":"2026-03-12","limit":{"context":198000,"output":32000},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 5","open_weights":true,"reasoning":true,"release_date":"2026-02-11","structured_output":true,"temperature":true,"tool_call":true},"zai-org-glm-5-1":{"attachment":false,"cost":{"cache_read":0.325,"input":1.75,"output":5.5},"family":"glm","id":"zai-org-glm-5-1","interleaved":{"field":"reasoning_content"},"last_updated":"2026-04-08","limit":{"context":200000,"output":24000},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 5.1","open_weights":true,"reasoning":true,"release_date":"2026-04-07","structured_output":true,"temperature":true,"tool_call":true}},"name":"Venice AI","npm":"venice-ai-sdk-provider"},"vercel":{"doc":"https://github.com/vercel/ai/tree/5eb85cc45a259553501f535b8ac79a77d0e79223/packages/gateway","env":["AI_GATEWAY_API_KEY"],"id":"vercel","models":{"alibaba/qwen-3-14b":{"attachment":false,"cost":{"input":0.06,"output":0.24},"family":"qwen","id":"alibaba/qwen-3-14b","knowledge":"2025-04","last_updated":"2025-04","limit":{"context":40960,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3-14B","open_weights":false,"reasoning":true,"release_date":"2025-04","temperature":true,"tool_call":true},"alibaba/qwen-3-235b":{"attachment":false,"cost":{"input":0.13,"output":0.6},"family":"qwen","id":"alibaba/qwen-3-235b","knowledge":"2025-04","last_updated":"2025-04","limit":{"context":40960,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 235B A22B Instruct 2507","open_weights":false,"reasoning":false,"release_date":"2025-04","temperature":true,"tool_call":true},"alibaba/qwen-3-30b":{"attachment":false,"cost":{"input":0.08,"output":0.29},"family":"qwen","id":"alibaba/qwen-3-30b","knowledge":"2025-04","last_updated":"2025-04","limit":{"context":40960,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3-30B-A3B","open_weights":false,"reasoning":true,"release_date":"2025-04","temperature":true,"tool_call":true},"alibaba/qwen-3-32b":{"attachment":false,"cost":{"input":0.1,"output":0.3},"family":"qwen","id":"alibaba/qwen-3-32b","knowledge":"2025-04","last_updated":"2025-04","limit":{"context":40960,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen 3.32B","open_weights":false,"reasoning":true,"release_date":"2025-04","temperature":true,"tool_call":true},"alibaba/qwen-3.6-max-preview":{"attachment":true,"cost":{"cache_read":0.26,"cache_write":1.625,"input":1.3,"output":7.8},"family":"qwen","id":"alibaba/qwen-3.6-max-preview","last_updated":"2026-04-24","limit":{"context":240000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Qwen 3.6 Max Preview","open_weights":true,"reasoning":true,"release_date":"2026-04-20","temperature":true,"tool_call":true},"alibaba/qwen3-235b-a22b-thinking":{"attachment":true,"cost":{"input":0.3,"output":2.9},"family":"qwen","id":"alibaba/qwen3-235b-a22b-thinking","knowledge":"2025-04","last_updated":"2025-04","limit":{"context":262114,"output":262114},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Qwen3 235B A22B Thinking 2507","open_weights":false,"reasoning":true,"release_date":"2025-04","temperature":true,"tool_call":true},"alibaba/qwen3-coder":{"attachment":false,"cost":{"input":0.38,"output":1.53},"family":"qwen","id":"alibaba/qwen3-coder","knowledge":"2025-04","last_updated":"2025-04","limit":{"context":262144,"output":66536},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Coder 480B A35B Instruct","open_weights":false,"reasoning":false,"release_date":"2025-04","temperature":true,"tool_call":true},"alibaba/qwen3-coder-30b-a3b":{"attachment":false,"cost":{"input":0.07,"output":0.27},"family":"qwen","id":"alibaba/qwen3-coder-30b-a3b","knowledge":"2025-04","last_updated":"2025-04","limit":{"context":160000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen 3 Coder 30B A3B Instruct","open_weights":false,"reasoning":true,"release_date":"2025-04","temperature":true,"tool_call":true},"alibaba/qwen3-coder-next":{"attachment":false,"cost":{"input":0.5,"output":1.2},"family":"qwen","id":"alibaba/qwen3-coder-next","last_updated":"2026-02-19","limit":{"context":256000,"output":256000},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Coder Next","open_weights":false,"reasoning":true,"release_date":"2025-07-22","temperature":true,"tool_call":true},"alibaba/qwen3-coder-plus":{"attachment":false,"cost":{"input":1,"output":5},"family":"qwen","id":"alibaba/qwen3-coder-plus","knowledge":"2025-04","last_updated":"2025-07-23","limit":{"context":1000000,"output":1000000},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Coder Plus","open_weights":true,"reasoning":false,"release_date":"2025-07-23","temperature":true,"tool_call":true},"alibaba/qwen3-embedding-0.6b":{"attachment":false,"cost":{"input":0.01,"output":0},"family":"qwen","id":"alibaba/qwen3-embedding-0.6b","last_updated":"2025-11-14","limit":{"context":32768,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Embedding 0.6B","open_weights":false,"reasoning":false,"release_date":"2025-11-14","temperature":false,"tool_call":false},"alibaba/qwen3-embedding-4b":{"attachment":false,"cost":{"input":0.02,"output":0},"family":"qwen","id":"alibaba/qwen3-embedding-4b","last_updated":"2025-06-05","limit":{"context":32768,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Embedding 4B","open_weights":false,"reasoning":false,"release_date":"2025-06-05","temperature":false,"tool_call":false},"alibaba/qwen3-embedding-8b":{"attachment":false,"cost":{"input":0.05,"output":0},"family":"qwen","id":"alibaba/qwen3-embedding-8b","last_updated":"2025-06-05","limit":{"context":32768,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Embedding 8B","open_weights":false,"reasoning":false,"release_date":"2025-06-05","temperature":false,"tool_call":false},"alibaba/qwen3-max":{"attachment":false,"cost":{"input":1.2,"output":6},"family":"qwen","id":"alibaba/qwen3-max","knowledge":"2025-04","last_updated":"2025-09-23","limit":{"context":262144,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Max","open_weights":false,"reasoning":false,"release_date":"2025-09-23","temperature":true,"tool_call":true},"alibaba/qwen3-max-preview":{"attachment":false,"cost":{"cache_read":0.24,"input":1.2,"output":6},"family":"qwen","id":"alibaba/qwen3-max-preview","knowledge":"2025-04","last_updated":"2025-09-23","limit":{"context":262144,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Max Preview","open_weights":false,"reasoning":false,"release_date":"2025-09-23","temperature":true,"tool_call":true},"alibaba/qwen3-max-thinking":{"attachment":false,"cost":{"cache_read":0.24,"input":1.2,"output":6},"family":"qwen","id":"alibaba/qwen3-max-thinking","knowledge":"2025-01","last_updated":"2025-01","limit":{"context":256000,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen 3 Max Thinking","open_weights":true,"reasoning":true,"release_date":"2025-01","temperature":true,"tool_call":true},"alibaba/qwen3-next-80b-a3b-instruct":{"attachment":false,"cost":{"input":0.09,"output":1.1},"family":"qwen","id":"alibaba/qwen3-next-80b-a3b-instruct","knowledge":"2025-04","last_updated":"2025-09-12","limit":{"context":262144,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Next 80B A3B Instruct","open_weights":true,"reasoning":false,"release_date":"2025-09-12","temperature":true,"tool_call":true},"alibaba/qwen3-next-80b-a3b-thinking":{"attachment":false,"cost":{"input":0.15,"output":1.5},"family":"qwen","id":"alibaba/qwen3-next-80b-a3b-thinking","knowledge":"2025-09","last_updated":"2025-09-12","limit":{"context":131072,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 Next 80B A3B Thinking","open_weights":true,"reasoning":true,"release_date":"2025-09-12","temperature":true,"tool_call":true},"alibaba/qwen3-vl-235b-a22b-instruct":{"attachment":true,"cost":{"input":0.39999999999999997,"output":1.5999999999999999},"family":"qwen","id":"alibaba/qwen3-vl-235b-a22b-instruct","last_updated":"2026-05-01","limit":{"context":131072,"output":129024},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen3 VL 235B A22B Instruct","open_weights":false,"reasoning":false,"release_date":"2025-09-24","temperature":true,"tool_call":false},"alibaba/qwen3-vl-instruct":{"attachment":true,"cost":{"input":0.7,"output":2.8},"family":"qwen","id":"alibaba/qwen3-vl-instruct","knowledge":"2025-04","last_updated":"2025-09-24","limit":{"context":131072,"output":129024},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen3 VL Instruct","open_weights":true,"reasoning":false,"release_date":"2025-09-24","temperature":true,"tool_call":true},"alibaba/qwen3-vl-thinking":{"attachment":true,"cost":{"input":0.7,"output":8.4},"family":"qwen","id":"alibaba/qwen3-vl-thinking","knowledge":"2025-09","last_updated":"2025-09-24","limit":{"context":131072,"output":129024},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen3 VL Thinking","open_weights":true,"reasoning":true,"release_date":"2025-09-24","temperature":true,"tool_call":true},"alibaba/qwen3.5-flash":{"attachment":true,"cost":{"cache_read":0.001,"cache_write":0.125,"input":0.1,"output":0.4},"family":"qwen","id":"alibaba/qwen3.5-flash","last_updated":"2026-02-24","limit":{"context":1000000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Qwen 3.5 Flash","open_weights":false,"reasoning":true,"release_date":"2026-02-24","temperature":true,"tool_call":true},"alibaba/qwen3.5-plus":{"attachment":true,"cost":{"cache_read":0.04,"cache_write":0.5,"input":0.4,"output":2.4},"family":"qwen","id":"alibaba/qwen3.5-plus","last_updated":"2026-02-19","limit":{"context":1000000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Qwen 3.5 Plus","open_weights":false,"reasoning":true,"release_date":"2026-02-16","temperature":true,"tool_call":true},"alibaba/qwen3.6-27b":{"attachment":true,"cost":{"input":0.6,"output":3.5999999999999996},"family":"qwen3.6","id":"alibaba/qwen3.6-27b","last_updated":"2026-05-01","limit":{"context":256000,"output":256000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Qwen 3.6 27B","open_weights":false,"reasoning":true,"release_date":"2026-04-22","temperature":true,"tool_call":true},"alibaba/qwen3.6-plus":{"attachment":true,"cost":{"cache_read":0.09999999999999999,"cache_write":0.625,"input":0.5,"output":3},"family":"qwen","id":"alibaba/qwen3.6-plus","last_updated":"2026-04-03","limit":{"context":1000000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Qwen 3.6 Plus","open_weights":false,"reasoning":true,"release_date":"2026-04-02","temperature":true,"tool_call":true},"alibaba/qwen3.7-max":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":3.125,"input":2.5,"output":7.5},"family":"qwen","id":"alibaba/qwen3.7-max","last_updated":"2026-05-21","limit":{"context":991000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Qwen 3.7 Max","open_weights":false,"reasoning":true,"release_date":"2026-05-21","temperature":true,"tool_call":true},"amazon/nova-2-lite":{"attachment":true,"cost":{"input":0.3,"output":2.5},"family":"nova","id":"amazon/nova-2-lite","knowledge":"2024-10","last_updated":"2024-12-01","limit":{"context":1000000,"output":1000000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Nova 2 Lite","open_weights":false,"reasoning":true,"release_date":"2024-12-01","temperature":true,"tool_call":false},"amazon/nova-lite":{"attachment":true,"cost":{"cache_read":0.015,"input":0.06,"output":0.24},"family":"nova-lite","id":"amazon/nova-lite","knowledge":"2024-10","last_updated":"2024-12-03","limit":{"context":300000,"output":8192},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Nova Lite","open_weights":false,"reasoning":false,"release_date":"2024-12-03","temperature":true,"tool_call":true},"amazon/nova-micro":{"attachment":false,"cost":{"cache_read":0.00875,"input":0.035,"output":0.14},"family":"nova-micro","id":"amazon/nova-micro","knowledge":"2024-10","last_updated":"2024-12-03","limit":{"context":128000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Nova Micro","open_weights":false,"reasoning":false,"release_date":"2024-12-03","temperature":true,"tool_call":true},"amazon/nova-pro":{"attachment":true,"cost":{"cache_read":0.2,"input":0.8,"output":3.2},"family":"nova-pro","id":"amazon/nova-pro","knowledge":"2024-10","last_updated":"2024-12-03","limit":{"context":300000,"output":8192},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Nova Pro","open_weights":false,"reasoning":false,"release_date":"2024-12-03","temperature":true,"tool_call":true},"amazon/titan-embed-text-v2":{"attachment":false,"cost":{"input":0.02,"output":0},"family":"titan-embed","id":"amazon/titan-embed-text-v2","last_updated":"2024-04","limit":{"context":8192,"output":1536},"modalities":{"input":["text"],"output":["text"]},"name":"Titan Text Embeddings V2","open_weights":false,"reasoning":false,"release_date":"2024-04","temperature":false,"tool_call":false},"anthropic/claude-3-haiku":{"attachment":true,"cost":{"cache_read":0.03,"cache_write":0.3,"input":0.25,"output":1.25},"family":"claude-haiku","id":"anthropic/claude-3-haiku","knowledge":"2023-08-31","last_updated":"2024-03-13","limit":{"context":200000,"output":4096},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Haiku 3","open_weights":false,"reasoning":false,"release_date":"2024-03-13","status":"deprecated","temperature":true,"tool_call":true},"anthropic/claude-3-opus":{"attachment":true,"cost":{"cache_read":1.5,"cache_write":18.75,"input":15,"output":75},"family":"claude-opus","id":"anthropic/claude-3-opus","knowledge":"2023-08-31","last_updated":"2024-02-29","limit":{"context":200000,"output":4096},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 3","open_weights":false,"reasoning":false,"release_date":"2024-02-29","status":"deprecated","temperature":true,"tool_call":true},"anthropic/claude-3.5-haiku":{"attachment":true,"cost":{"cache_read":0.08,"cache_write":1,"input":0.8,"output":4},"family":"claude-haiku","id":"anthropic/claude-3.5-haiku","knowledge":"2024-07-31","last_updated":"2024-10-22","limit":{"context":200000,"output":8192},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Haiku 3.5","open_weights":false,"reasoning":false,"release_date":"2024-10-22","status":"deprecated","temperature":true,"tool_call":true},"anthropic/claude-3.5-sonnet":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"input":3,"output":15},"family":"claude-sonnet","id":"anthropic/claude-3.5-sonnet","knowledge":"2024-04-30","last_updated":"2024-10-22","limit":{"context":200000,"output":8192},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 3.5 v2","open_weights":false,"reasoning":false,"release_date":"2024-10-22","status":"deprecated","temperature":true,"tool_call":true},"anthropic/claude-3.5-sonnet-20240620":{"attachment":true,"cost":{"input":3,"output":15},"family":"claude-sonnet","id":"anthropic/claude-3.5-sonnet-20240620","knowledge":"2024-04","last_updated":"2024-06-20","limit":{"context":200000,"output":8192},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude 3.5 Sonnet (2024-06-20)","open_weights":false,"reasoning":false,"release_date":"2024-06-20","temperature":true,"tool_call":true},"anthropic/claude-3.7-sonnet":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"input":3,"output":15},"family":"claude-sonnet","id":"anthropic/claude-3.7-sonnet","knowledge":"2024-10-31","last_updated":"2025-02-19","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 3.7","open_weights":false,"reasoning":true,"reasoning_options":[{"min":1024,"type":"budget_tokens"}],"release_date":"2025-02-19","status":"deprecated","temperature":true,"tool_call":true},"anthropic/claude-haiku-4.5":{"attachment":true,"cost":{"cache_read":0.1,"cache_write":1.25,"input":1,"output":5},"family":"claude-haiku","id":"anthropic/claude-haiku-4.5","interleaved":true,"knowledge":"2025-02-28","last_updated":"2025-10-15","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Haiku 4.5","open_weights":false,"reasoning":true,"release_date":"2025-10-15","temperature":true,"tool_call":true},"anthropic/claude-opus-4":{"attachment":true,"cost":{"cache_read":1.5,"cache_write":18.75,"input":15,"output":75},"family":"claude-opus","id":"anthropic/claude-opus-4","knowledge":"2025-03-31","last_updated":"2025-05-22","limit":{"context":200000,"output":32000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4","open_weights":false,"reasoning":true,"reasoning_options":[{"min":1024,"type":"budget_tokens"}],"release_date":"2025-05-22","temperature":true,"tool_call":true},"anthropic/claude-opus-4.1":{"attachment":true,"cost":{"cache_read":1.5,"cache_write":18.75,"input":15,"output":75},"family":"claude-opus","id":"anthropic/claude-opus-4.1","knowledge":"2025-03-31","last_updated":"2025-08-05","limit":{"context":200000,"output":32000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.1","open_weights":false,"reasoning":true,"reasoning_options":[{"min":1024,"type":"budget_tokens"}],"release_date":"2025-08-05","temperature":true,"tool_call":true},"anthropic/claude-opus-4.5":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":18.75,"input":5,"output":25},"family":"claude-opus","id":"anthropic/claude-opus-4.5","interleaved":true,"knowledge":"2025-03-31","last_updated":"2025-11-24","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.5","open_weights":false,"reasoning":true,"release_date":"2025-11-24","temperature":true,"tool_call":true},"anthropic/claude-opus-4.6":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"input":5,"output":25},"family":"claude-opus","id":"anthropic/claude-opus-4.6","interleaved":true,"knowledge":"2025-05-31","last_updated":"2026-02","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.6","open_weights":false,"reasoning":true,"release_date":"2026-02","temperature":true,"tool_call":true},"anthropic/claude-opus-4.7":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"input":5,"output":25},"family":"claude-opus","id":"anthropic/claude-opus-4.7","last_updated":"2026-04-16","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.7","open_weights":false,"reasoning":true,"release_date":"2026-04-16","temperature":false,"tool_call":true},"anthropic/claude-opus-4.8":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"input":5,"output":25},"family":"claude-opus","id":"anthropic/claude-opus-4.8","last_updated":"2026-05-28","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.8","open_weights":false,"reasoning":true,"release_date":"2026-05-28","temperature":true,"tool_call":true},"anthropic/claude-sonnet-4":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"input":3,"output":15},"family":"claude-sonnet","id":"anthropic/claude-sonnet-4","knowledge":"2025-03-31","last_updated":"2025-05-22","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 4","open_weights":false,"reasoning":true,"reasoning_options":[{"min":1024,"type":"budget_tokens"}],"release_date":"2025-05-22","temperature":true,"tool_call":true},"anthropic/claude-sonnet-4.5":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"input":3,"output":15},"family":"claude-sonnet","id":"anthropic/claude-sonnet-4.5","knowledge":"2025-07-31","last_updated":"2025-09-29","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 4.5","open_weights":false,"reasoning":true,"reasoning_options":[{"min":1024,"type":"budget_tokens"}],"release_date":"2025-09-29","temperature":true,"tool_call":true},"anthropic/claude-sonnet-4.6":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"context_over_200k":{"cache_read":0.6,"cache_write":7.5,"input":6,"output":22.5},"input":3,"output":15,"tiers":[{"cache_read":0.6,"cache_write":7.5,"input":6,"output":22.5,"tier":{"size":200000,"type":"context"}}]},"family":"claude-sonnet","id":"anthropic/claude-sonnet-4.6","interleaved":true,"knowledge":"2025-08-31","last_updated":"2026-02-17","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 4.6","open_weights":false,"reasoning":true,"release_date":"2026-02-17","temperature":true,"tool_call":true},"arcee-ai/trinity-large-preview":{"attachment":false,"cost":{"input":0.25,"output":1},"family":"trinity","id":"arcee-ai/trinity-large-preview","knowledge":"2024-10","last_updated":"2025-01","limit":{"context":131000,"output":131000},"modalities":{"input":["text"],"output":["text"]},"name":"Trinity Large Preview","open_weights":false,"reasoning":false,"release_date":"2025-01","temperature":true,"tool_call":true},"arcee-ai/trinity-large-thinking":{"attachment":false,"cost":{"input":0.25,"output":0.8999999999999999},"family":"trinity","id":"arcee-ai/trinity-large-thinking","last_updated":"2026-04-03","limit":{"context":262100,"output":80000},"modalities":{"input":["text"],"output":["text"]},"name":"Trinity Large Thinking","open_weights":true,"reasoning":true,"release_date":"2026-04-01","temperature":true,"tool_call":true},"arcee-ai/trinity-mini":{"attachment":false,"cost":{"input":0.05,"output":0.15},"family":"trinity","id":"arcee-ai/trinity-mini","knowledge":"2024-10","last_updated":"2025-12","limit":{"context":131072,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"Trinity Mini","open_weights":false,"reasoning":false,"release_date":"2025-12","temperature":true,"tool_call":false},"bfl/flux-kontext-max":{"attachment":false,"family":"flux","id":"bfl/flux-kontext-max","last_updated":"2025-06","limit":{"context":512,"output":0},"modalities":{"input":["text"],"output":["image"]},"name":"FLUX.1 Kontext Max","open_weights":false,"reasoning":false,"release_date":"2025-06","temperature":false,"tool_call":false},"bfl/flux-kontext-pro":{"attachment":false,"family":"flux","id":"bfl/flux-kontext-pro","last_updated":"2025-06","limit":{"context":512,"output":0},"modalities":{"input":["text"],"output":["image"]},"name":"FLUX.1 Kontext Pro","open_weights":false,"reasoning":false,"release_date":"2025-06","temperature":false,"tool_call":false},"bfl/flux-pro-1.0-fill":{"attachment":false,"family":"flux","id":"bfl/flux-pro-1.0-fill","last_updated":"2024-10","limit":{"context":512,"output":0},"modalities":{"input":["text"],"output":["image"]},"name":"FLUX.1 Fill [pro]","open_weights":false,"reasoning":false,"release_date":"2024-10","temperature":false,"tool_call":false},"bfl/flux-pro-1.1":{"attachment":false,"family":"flux","id":"bfl/flux-pro-1.1","last_updated":"2024-10","limit":{"context":512,"output":0},"modalities":{"input":["text"],"output":["image"]},"name":"FLUX1.1 [pro]","open_weights":false,"reasoning":false,"release_date":"2024-10","temperature":false,"tool_call":false},"bfl/flux-pro-1.1-ultra":{"attachment":false,"family":"flux","id":"bfl/flux-pro-1.1-ultra","last_updated":"2024-11","limit":{"context":512,"output":0},"modalities":{"input":["text"],"output":["image"]},"name":"FLUX1.1 [pro] Ultra","open_weights":false,"reasoning":false,"release_date":"2024-11","temperature":false,"tool_call":false},"bytedance/seed-1.6":{"attachment":false,"cost":{"cache_read":0.05,"input":0.25,"output":2},"family":"seed","id":"bytedance/seed-1.6","knowledge":"2024-10","last_updated":"2025-09","limit":{"context":256000,"output":32000},"modalities":{"input":["text"],"output":["text"]},"name":"Seed 1.6","open_weights":false,"reasoning":true,"release_date":"2025-09","temperature":true,"tool_call":true},"bytedance/seed-1.8":{"attachment":false,"cost":{"cache_read":0.05,"input":0.25,"output":2},"family":"seed","id":"bytedance/seed-1.8","knowledge":"2024-10","last_updated":"2025-10","limit":{"context":256000,"output":64000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Seed 1.8","open_weights":false,"reasoning":true,"release_date":"2025-10","temperature":true,"tool_call":true},"cohere/command-a":{"attachment":false,"cost":{"input":2.5,"output":10},"family":"command","id":"cohere/command-a","knowledge":"2024-10","last_updated":"2025-03-13","limit":{"context":256000,"output":8000},"modalities":{"input":["text"],"output":["text"]},"name":"Command A","open_weights":false,"reasoning":false,"release_date":"2025-03-13","temperature":true,"tool_call":true},"cohere/embed-v4.0":{"attachment":false,"cost":{"input":0.12,"output":0},"family":"cohere-embed","id":"cohere/embed-v4.0","last_updated":"2025-04-15","limit":{"context":8192,"output":1536},"modalities":{"input":["text"],"output":["text"]},"name":"Embed v4.0","open_weights":false,"reasoning":false,"release_date":"2025-04-15","temperature":false,"tool_call":false},"deepseek/deepseek-r1":{"attachment":false,"cost":{"input":1.35,"output":5.4},"family":"deepseek-thinking","id":"deepseek/deepseek-r1","knowledge":"2024-07","last_updated":"2025-05-29","limit":{"context":128000,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek-R1","open_weights":false,"reasoning":true,"release_date":"2025-01-20","temperature":true,"tool_call":true},"deepseek/deepseek-v3":{"attachment":false,"cost":{"input":0.77,"output":0.77},"family":"deepseek","id":"deepseek/deepseek-v3","knowledge":"2024-07","last_updated":"2024-12-26","limit":{"context":163840,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V3 0324","open_weights":false,"reasoning":false,"release_date":"2024-12-26","temperature":true,"tool_call":true},"deepseek/deepseek-v3.1":{"attachment":false,"cost":{"input":0.3,"output":1},"family":"deepseek","id":"deepseek/deepseek-v3.1","knowledge":"2024-07","last_updated":"2025-08-21","limit":{"context":163840,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek-V3.1","open_weights":false,"reasoning":true,"release_date":"2025-08-21","temperature":true,"tool_call":true},"deepseek/deepseek-v3.1-terminus":{"attachment":false,"cost":{"input":0.27,"output":1},"family":"deepseek","id":"deepseek/deepseek-v3.1-terminus","knowledge":"2025-07","last_updated":"2025-09-22","limit":{"context":131072,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V3.1 Terminus","open_weights":true,"reasoning":true,"release_date":"2025-09-22","temperature":true,"tool_call":true},"deepseek/deepseek-v3.2":{"attachment":false,"cost":{"cache_read":0.22,"input":0.27,"output":0.4},"family":"deepseek","id":"deepseek/deepseek-v3.2","knowledge":"2024-07","last_updated":"2025-12-01","limit":{"context":163842,"output":8000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V3.2","open_weights":false,"reasoning":false,"release_date":"2025-12-01","temperature":true,"tool_call":false},"deepseek/deepseek-v3.2-exp":{"attachment":false,"cost":{"input":0.27,"output":0.4},"family":"deepseek","id":"deepseek/deepseek-v3.2-exp","knowledge":"2025-09","last_updated":"2025-09-29","limit":{"context":163840,"output":163840},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V3.2 Exp","open_weights":false,"reasoning":true,"release_date":"2025-09-29","temperature":true,"tool_call":true},"deepseek/deepseek-v3.2-thinking":{"attachment":false,"cost":{"cache_read":0.03,"input":0.28,"output":0.42},"family":"deepseek-thinking","id":"deepseek/deepseek-v3.2-thinking","interleaved":true,"knowledge":"2024-07","last_updated":"2025-12-01","limit":{"context":128000,"output":64000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V3.2 Thinking","open_weights":false,"reasoning":true,"release_date":"2025-12-01","temperature":true,"tool_call":true},"deepseek/deepseek-v4-flash":{"attachment":false,"cost":{"cache_read":0.028,"input":0.14,"output":0.28},"family":"deepseek","id":"deepseek/deepseek-v4-flash","last_updated":"2026-04-24","limit":{"context":1000000,"output":384000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V4 Flash","open_weights":true,"reasoning":true,"release_date":"2026-04-23","temperature":true,"tool_call":true},"deepseek/deepseek-v4-pro":{"attachment":false,"cost":{"cache_read":0.145,"input":1.74,"output":3.48},"family":"deepseek","id":"deepseek/deepseek-v4-pro","last_updated":"2026-04-24","limit":{"context":1000000,"output":384000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V4 Pro","open_weights":true,"reasoning":true,"release_date":"2026-04-23","temperature":true,"tool_call":true},"google/gemini-2.0-flash":{"attachment":true,"cost":{"cache_read":0.025,"input":0.1,"output":0.4},"family":"gemini-flash","id":"google/gemini-2.0-flash","knowledge":"2024-06","last_updated":"2024-12-11","limit":{"context":1048576,"output":8192},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"Gemini 2.0 Flash","open_weights":false,"reasoning":false,"release_date":"2024-12-11","status":"deprecated","structured_output":true,"temperature":true,"tool_call":true},"google/gemini-2.0-flash-lite":{"attachment":true,"cost":{"input":0.075,"output":0.3},"family":"gemini-flash-lite","id":"google/gemini-2.0-flash-lite","knowledge":"2024-06","last_updated":"2024-12-11","limit":{"context":1048576,"output":8192},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"Gemini 2.0 Flash-Lite","open_weights":false,"reasoning":false,"release_date":"2024-12-11","status":"deprecated","structured_output":true,"temperature":true,"tool_call":true},"google/gemini-2.5-flash":{"attachment":true,"cost":{"cache_read":0.03,"input":0.3,"input_audio":1,"output":2.5},"family":"gemini-flash","id":"google/gemini-2.5-flash","knowledge":"2025-01","last_updated":"2025-06-05","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"Gemini 2.5 Flash","open_weights":false,"reasoning":true,"reasoning_options":[{"type":"toggle"},{"max":24576,"min":0,"type":"budget_tokens"}],"release_date":"2025-03-20","structured_output":true,"temperature":true,"tool_call":true},"google/gemini-2.5-flash-image":{"attachment":false,"cost":{"input":0.3,"output":2.5},"family":"gemini-flash","id":"google/gemini-2.5-flash-image","knowledge":"2025-01","last_updated":"2025-03-20","limit":{"context":32768,"output":32768},"modalities":{"input":["text"],"output":["text","image"]},"name":"Nano Banana (Gemini 2.5 Flash Image)","open_weights":false,"reasoning":false,"release_date":"2025-03-20","temperature":true,"tool_call":false},"google/gemini-2.5-flash-image-preview":{"attachment":false,"cost":{"input":0.3,"output":2.5},"family":"gemini-flash","id":"google/gemini-2.5-flash-image-preview","knowledge":"2025-01","last_updated":"2025-03-20","limit":{"context":32768,"output":32768},"modalities":{"input":["text"],"output":["text","image"]},"name":"Nano Banana Preview (Gemini 2.5 Flash Image Preview)","open_weights":false,"reasoning":false,"release_date":"2025-03-20","temperature":true,"tool_call":false},"google/gemini-2.5-flash-lite":{"attachment":true,"cost":{"cache_read":0.01,"input":0.1,"output":0.4},"family":"gemini-flash-lite","id":"google/gemini-2.5-flash-lite","knowledge":"2025-01","last_updated":"2025-06-17","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"Gemini 2.5 Flash Lite","open_weights":false,"reasoning":true,"release_date":"2025-06-17","temperature":true,"tool_call":true},"google/gemini-2.5-flash-lite-preview-09-2025":{"attachment":true,"cost":{"cache_read":0.01,"input":0.1,"output":0.4},"family":"gemini-flash-lite","id":"google/gemini-2.5-flash-lite-preview-09-2025","knowledge":"2025-01","last_updated":"2025-09-25","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"Gemini 2.5 Flash Lite Preview 09-25","open_weights":false,"reasoning":true,"release_date":"2025-09-25","temperature":true,"tool_call":true},"google/gemini-2.5-flash-preview-09-2025":{"attachment":true,"cost":{"cache_read":0.03,"cache_write":0.383,"input":0.3,"output":2.5},"family":"gemini-flash","id":"google/gemini-2.5-flash-preview-09-2025","knowledge":"2025-01","last_updated":"2025-09-25","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"Gemini 2.5 Flash Preview 09-25","open_weights":false,"reasoning":true,"release_date":"2025-09-25","temperature":true,"tool_call":true},"google/gemini-2.5-pro":{"attachment":true,"cost":{"cache_read":0.125,"context_over_200k":{"cache_read":0.25,"input":2.5,"output":15},"input":1.25,"output":10,"tiers":[{"cache_read":0.25,"input":2.5,"output":15,"tier":{"size":200000,"type":"context"}}]},"family":"gemini-pro","id":"google/gemini-2.5-pro","knowledge":"2025-01","last_updated":"2025-06-05","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"Gemini 2.5 Pro","open_weights":false,"reasoning":true,"reasoning_options":[{"max":32768,"min":128,"type":"budget_tokens"}],"release_date":"2025-03-20","structured_output":true,"temperature":true,"tool_call":true},"google/gemini-3-flash":{"attachment":true,"cost":{"cache_read":0.05,"input":0.5,"output":3},"family":"gemini-flash","id":"google/gemini-3-flash","knowledge":"2025-03","last_updated":"2025-12-17","limit":{"context":1000000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Gemini 3 Flash","open_weights":false,"reasoning":true,"release_date":"2025-12-17","temperature":true,"tool_call":true},"google/gemini-3-pro-image":{"attachment":false,"cost":{"input":2,"output":120},"family":"gemini-pro","id":"google/gemini-3-pro-image","knowledge":"2025-03","last_updated":"2025-09","limit":{"context":65536,"output":32768},"modalities":{"input":["text"],"output":["text","image"]},"name":"Nano Banana Pro (Gemini 3 Pro Image)","open_weights":false,"reasoning":false,"release_date":"2025-09","temperature":true,"tool_call":false},"google/gemini-3-pro-preview":{"attachment":true,"cost":{"cache_read":0.2,"context_over_200k":{"cache_read":0.4,"input":4,"output":18},"input":2,"output":12,"tiers":[{"cache_read":0.4,"input":4,"output":18,"tier":{"size":200000,"type":"context"}}]},"family":"gemini-pro","id":"google/gemini-3-pro-preview","knowledge":"2025-01","last_updated":"2025-11-18","limit":{"context":1000000,"output":64000},"modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"name":"Gemini 3 Pro Preview","open_weights":false,"reasoning":true,"release_date":"2025-11-18","temperature":true,"tool_call":true},"google/gemini-3.1-flash-image-preview":{"attachment":true,"cost":{"input":0.5,"output":3},"family":"gemini","id":"google/gemini-3.1-flash-image-preview","last_updated":"2026-03-06","limit":{"context":131072,"output":32768},"modalities":{"input":["text","image"],"output":["text","image"]},"name":"Gemini 3.1 Flash Image Preview (Nano Banana 2)","open_weights":false,"reasoning":true,"release_date":"2026-02-26","temperature":true,"tool_call":false},"google/gemini-3.1-flash-lite":{"attachment":true,"cost":{"cache_read":0.03,"input":0.25,"output":1.5},"family":"gemini","id":"google/gemini-3.1-flash-lite","last_updated":"2026-05-08","limit":{"context":1000000,"output":65000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Gemini 3.1 Flash Lite","open_weights":false,"reasoning":true,"release_date":"2026-05-07","temperature":true,"tool_call":true},"google/gemini-3.1-flash-lite-preview":{"attachment":true,"cost":{"cache_read":0.025,"cache_write":1,"input":0.25,"output":1.5},"family":"gemini","id":"google/gemini-3.1-flash-lite-preview","last_updated":"2026-03-06","limit":{"context":1000000,"output":65000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Gemini 3.1 Flash Lite Preview","open_weights":false,"reasoning":true,"release_date":"2026-03-03","temperature":true,"tool_call":true},"google/gemini-3.1-pro-preview":{"attachment":true,"cost":{"cache_read":0.2,"input":2,"output":12},"family":"gemini","id":"google/gemini-3.1-pro-preview","last_updated":"2026-02-24","limit":{"context":1000000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Gemini 3.1 Pro Preview","open_weights":false,"reasoning":true,"release_date":"2026-02-19","temperature":true,"tool_call":true},"google/gemini-3.5-flash":{"attachment":true,"cost":{"cache_read":0.15,"input":1.5,"output":9},"family":"gemini","id":"google/gemini-3.5-flash","last_updated":"2026-05-21","limit":{"context":1000000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Gemini 3.5 Flash","open_weights":false,"reasoning":true,"release_date":"2026-05-19","temperature":true,"tool_call":true},"google/gemini-embedding-001":{"attachment":false,"cost":{"input":0.15,"output":0},"family":"gemini-embedding","id":"google/gemini-embedding-001","last_updated":"2025-05-20","limit":{"context":8192,"output":1536},"modalities":{"input":["text"],"output":["text"]},"name":"Gemini Embedding 001","open_weights":false,"reasoning":false,"release_date":"2025-05-20","temperature":false,"tool_call":false},"google/gemini-embedding-2":{"attachment":false,"family":"gemini-embedding","id":"google/gemini-embedding-2","last_updated":"2026-03-23","limit":{"context":0,"output":0},"modalities":{"input":["text"],"output":["text"]},"name":"Gemini Embedding 2","open_weights":false,"reasoning":false,"release_date":"2026-03-10","temperature":true,"tool_call":false},"google/gemma-4-26b-a4b-it":{"attachment":true,"cost":{"input":0.13,"output":0.39999999999999997},"family":"gemma","id":"google/gemma-4-26b-a4b-it","last_updated":"2026-04-03","limit":{"context":262144,"output":131072},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Gemma 4 26B A4B IT","open_weights":false,"reasoning":true,"release_date":"2026-04-02","temperature":true,"tool_call":true},"google/gemma-4-31b-it":{"attachment":true,"cost":{"input":0.14,"output":0.39999999999999997},"family":"gemma","id":"google/gemma-4-31b-it","last_updated":"2026-04-03","limit":{"context":262144,"output":131072},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Gemma 4 31B IT","open_weights":false,"reasoning":true,"release_date":"2026-04-02","temperature":true,"tool_call":true},"google/imagen-4.0-fast-generate-001":{"attachment":false,"family":"imagen","id":"google/imagen-4.0-fast-generate-001","last_updated":"2025-06","limit":{"context":480,"output":0},"modalities":{"input":["text"],"output":["image"]},"name":"Imagen 4 Fast","open_weights":false,"reasoning":false,"release_date":"2025-06","temperature":false,"tool_call":false},"google/imagen-4.0-generate-001":{"attachment":false,"family":"imagen","id":"google/imagen-4.0-generate-001","last_updated":"2025-05-22","limit":{"context":480,"output":0},"modalities":{"input":["text"],"output":["image"]},"name":"Imagen 4","open_weights":false,"reasoning":false,"release_date":"2025-05-22","temperature":false,"tool_call":false},"google/imagen-4.0-ultra-generate-001":{"attachment":false,"family":"imagen","id":"google/imagen-4.0-ultra-generate-001","last_updated":"2025-05-24","limit":{"context":480,"output":0},"modalities":{"input":["text"],"output":["image"]},"name":"Imagen 4 Ultra","open_weights":false,"reasoning":false,"release_date":"2025-05-24","temperature":false,"tool_call":false},"google/text-embedding-005":{"attachment":false,"cost":{"input":0.03,"output":0},"family":"text-embedding","id":"google/text-embedding-005","last_updated":"2024-08","limit":{"context":8192,"output":1536},"modalities":{"input":["text"],"output":["text"]},"name":"Text Embedding 005","open_weights":false,"reasoning":false,"release_date":"2024-08","temperature":false,"tool_call":false},"google/text-multilingual-embedding-002":{"attachment":false,"cost":{"input":0.03,"output":0},"family":"text-embedding","id":"google/text-multilingual-embedding-002","last_updated":"2024-03","limit":{"context":8192,"output":1536},"modalities":{"input":["text"],"output":["text"]},"name":"Text Multilingual Embedding 002","open_weights":false,"reasoning":false,"release_date":"2024-03","temperature":false,"tool_call":false},"inception/mercury-2":{"attachment":false,"cost":{"cache_read":0.024999999999999998,"input":0.25,"output":0.75},"family":"mercury","id":"inception/mercury-2","last_updated":"2026-03-06","limit":{"context":128000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"Mercury 2","open_weights":false,"reasoning":true,"release_date":"2026-02-24","temperature":true,"tool_call":true},"inception/mercury-coder-small":{"attachment":false,"cost":{"input":0.25,"output":1},"family":"mercury","id":"inception/mercury-coder-small","last_updated":"2026-05-01","limit":{"context":32000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Mercury Coder Small Beta","open_weights":false,"reasoning":false,"release_date":"2025-02-26","temperature":true,"tool_call":true},"inception/mercury-edit-2":{"attachment":false,"cost":{"cache_read":0.025,"input":0.25,"output":0.75},"id":"inception/mercury-edit-2","last_updated":"2026-03-30","limit":{"context":128000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Mercury Edit 2","open_weights":false,"reasoning":true,"release_date":"2026-03-30","temperature":true,"tool_call":false},"interfaze/interfaze-beta":{"attachment":false,"cost":{"input":1.5,"output":3.5},"id":"interfaze/interfaze-beta","last_updated":"2026-04-29","limit":{"context":1000000,"output":32000},"modalities":{"input":["text"],"output":["text"]},"name":"Interfaze Beta","open_weights":false,"reasoning":true,"release_date":"2025-10-07","temperature":true,"tool_call":false},"kwaipilot/kat-coder-pro-v1":{"attachment":false,"family":"kat-coder","id":"kwaipilot/kat-coder-pro-v1","knowledge":"2024-10","last_updated":"2025-10-24","limit":{"context":256000,"output":32000},"modalities":{"input":["text"],"output":["text"]},"name":"KAT-Coder-Pro V1","open_weights":false,"reasoning":true,"release_date":"2025-10-24","temperature":true,"tool_call":false},"kwaipilot/kat-coder-pro-v2":{"attachment":false,"cost":{"cache_read":0.06,"input":0.3,"output":1.2},"family":"kat-coder","id":"kwaipilot/kat-coder-pro-v2","last_updated":"2026-03-30","limit":{"context":256000,"output":256000},"modalities":{"input":["text"],"output":["text"]},"name":"Kat Coder Pro V2","open_weights":false,"reasoning":true,"release_date":"2026-03-27","temperature":true,"tool_call":true},"meituan/longcat-flash-chat":{"attachment":false,"family":"longcat","id":"meituan/longcat-flash-chat","knowledge":"2024-10","last_updated":"2025-08-30","limit":{"context":128000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"LongCat Flash Chat","open_weights":false,"reasoning":false,"release_date":"2025-08-30","temperature":true,"tool_call":true},"meituan/longcat-flash-thinking":{"attachment":false,"cost":{"input":0.15,"output":1.5},"family":"longcat","id":"meituan/longcat-flash-thinking","knowledge":"2024-10","last_updated":"2025-09-23","limit":{"context":128000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"LongCat Flash Thinking","open_weights":false,"reasoning":true,"release_date":"2025-09-23","temperature":true,"tool_call":true},"meituan/longcat-flash-thinking-2601":{"attachment":false,"family":"longcat","id":"meituan/longcat-flash-thinking-2601","last_updated":"2026-03-13","limit":{"context":32768,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"LongCat Flash Thinking 2601","open_weights":false,"reasoning":true,"release_date":"2026-03-13","temperature":true,"tool_call":false},"meta/llama-3.1-70b":{"attachment":false,"cost":{"input":0.4,"output":0.4},"family":"llama","id":"meta/llama-3.1-70b","knowledge":"2023-12","last_updated":"2024-07-23","limit":{"context":131072,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.1 70B Instruct","open_weights":false,"reasoning":false,"release_date":"2024-07-23","temperature":true,"tool_call":true},"meta/llama-3.1-8b":{"attachment":false,"cost":{"input":0.03,"output":0.05},"family":"llama","id":"meta/llama-3.1-8b","knowledge":"2023-12","last_updated":"2024-07-23","limit":{"context":131072,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.1 8B Instruct","open_weights":false,"reasoning":false,"release_date":"2024-07-23","temperature":true,"tool_call":true},"meta/llama-3.2-11b":{"attachment":true,"cost":{"input":0.16,"output":0.16},"family":"llama","id":"meta/llama-3.2-11b","knowledge":"2023-12","last_updated":"2024-09-25","limit":{"context":128000,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Llama 3.2 11B Vision Instruct","open_weights":false,"reasoning":false,"release_date":"2024-09-25","temperature":true,"tool_call":true},"meta/llama-3.2-1b":{"attachment":false,"cost":{"input":0.1,"output":0.1},"family":"llama","id":"meta/llama-3.2-1b","knowledge":"2023-12","last_updated":"2024-09-18","limit":{"context":128000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.2 1B Instruct","open_weights":false,"reasoning":false,"release_date":"2024-09-18","temperature":true,"tool_call":false},"meta/llama-3.2-3b":{"attachment":false,"cost":{"input":0.15,"output":0.15},"family":"llama","id":"meta/llama-3.2-3b","knowledge":"2023-12","last_updated":"2024-09-18","limit":{"context":128000,"output":8192},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.2 3B Instruct","open_weights":false,"reasoning":false,"release_date":"2024-09-18","temperature":true,"tool_call":false},"meta/llama-3.2-90b":{"attachment":true,"cost":{"input":0.72,"output":0.72},"family":"llama","id":"meta/llama-3.2-90b","knowledge":"2023-12","last_updated":"2024-09-25","limit":{"context":128000,"output":8192},"modalities":{"input":["text","image"],"output":["text"]},"name":"Llama 3.2 90B Vision Instruct","open_weights":false,"reasoning":false,"release_date":"2024-09-25","temperature":true,"tool_call":true},"meta/llama-3.3-70b":{"attachment":true,"cost":{"input":0,"output":0},"family":"llama","id":"meta/llama-3.3-70b","knowledge":"2023-12","last_updated":"2024-12-06","limit":{"context":128000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Llama-3.3-70B-Instruct","open_weights":true,"reasoning":false,"release_date":"2024-12-06","temperature":true,"tool_call":true},"meta/llama-4-maverick":{"attachment":true,"cost":{"input":0,"output":0},"family":"llama","id":"meta/llama-4-maverick","knowledge":"2024-08","last_updated":"2025-04-05","limit":{"context":128000,"output":4096},"modalities":{"input":["text","image"],"output":["text"]},"name":"Llama-4-Maverick-17B-128E-Instruct-FP8","open_weights":true,"reasoning":false,"release_date":"2025-04-05","temperature":true,"tool_call":true},"meta/llama-4-scout":{"attachment":true,"cost":{"input":0,"output":0},"family":"llama","id":"meta/llama-4-scout","knowledge":"2024-08","last_updated":"2025-04-05","limit":{"context":128000,"output":4096},"modalities":{"input":["text","image"],"output":["text"]},"name":"Llama-4-Scout-17B-16E-Instruct-FP8","open_weights":true,"reasoning":false,"release_date":"2025-04-05","temperature":true,"tool_call":true},"minimax/minimax-m2":{"attachment":false,"cost":{"cache_read":0.03,"cache_write":0.38,"input":0.27,"output":1.15},"family":"minimax","id":"minimax/minimax-m2","interleaved":true,"knowledge":"2024-10","last_updated":"2025-10-27","limit":{"context":262114,"output":262114},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax M2","open_weights":true,"reasoning":true,"release_date":"2025-10-27","temperature":true,"tool_call":true},"minimax/minimax-m2.1":{"attachment":false,"cost":{"cache_read":0.03,"cache_write":0.38,"input":0.3,"output":1.2},"family":"minimax","id":"minimax/minimax-m2.1","interleaved":true,"knowledge":"2024-10","last_updated":"2025-10-27","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax M2.1","open_weights":false,"reasoning":true,"release_date":"2025-10-27","temperature":true,"tool_call":true},"minimax/minimax-m2.1-lightning":{"attachment":false,"cost":{"cache_read":0.03,"cache_write":0.38,"input":0.3,"output":2.4},"family":"minimax","id":"minimax/minimax-m2.1-lightning","knowledge":"2024-10","last_updated":"2025-10-27","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax M2.1 Lightning","open_weights":false,"reasoning":true,"release_date":"2025-10-27","temperature":true,"tool_call":true},"minimax/minimax-m2.5":{"attachment":false,"cost":{"cache_read":0.03,"cache_write":0.375,"input":0.3,"output":1.2},"family":"minimax","id":"minimax/minimax-m2.5","last_updated":"2026-02-19","limit":{"context":204800,"output":131000},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax M2.5","open_weights":false,"reasoning":true,"release_date":"2026-02-12","temperature":true,"tool_call":true},"minimax/minimax-m2.5-highspeed":{"attachment":false,"cost":{"cache_read":0.03,"cache_write":0.375,"input":0.6,"output":2.4},"family":"minimax","id":"minimax/minimax-m2.5-highspeed","last_updated":"2026-03-13","limit":{"context":0,"output":0},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax M2.5 High Speed","open_weights":false,"reasoning":true,"release_date":"2026-02-12","temperature":true,"tool_call":true},"minimax/minimax-m2.7":{"attachment":true,"cost":{"cache_read":0.06,"cache_write":0.375,"input":0.3,"output":1.2},"family":"minimax","id":"minimax/minimax-m2.7","last_updated":"2026-03-18","limit":{"context":204800,"output":131000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Minimax M2.7","open_weights":true,"reasoning":true,"release_date":"2026-03-18","temperature":true,"tool_call":true},"minimax/minimax-m2.7-highspeed":{"attachment":true,"cost":{"cache_read":0.06,"cache_write":0.375,"input":0.6,"output":2.4},"family":"minimax","id":"minimax/minimax-m2.7-highspeed","last_updated":"2026-03-18","limit":{"context":204800,"output":131100},"modalities":{"input":["text","image"],"output":["text"]},"name":"MiniMax M2.7 High Speed","open_weights":true,"reasoning":true,"release_date":"2026-03-18","temperature":true,"tool_call":true},"mistral/codestral":{"attachment":false,"cost":{"input":0.3,"output":0.9},"family":"codestral","id":"mistral/codestral","knowledge":"2024-10","last_updated":"2025-01-04","limit":{"context":256000,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Codestral (latest)","open_weights":true,"reasoning":false,"release_date":"2024-05-29","temperature":true,"tool_call":true},"mistral/codestral-embed":{"attachment":false,"cost":{"input":0.15,"output":0},"family":"codestral-embed","id":"mistral/codestral-embed","last_updated":"2025-05-28","limit":{"context":8192,"output":1536},"modalities":{"input":["text"],"output":["text"]},"name":"Codestral Embed","open_weights":false,"reasoning":false,"release_date":"2025-05-28","temperature":false,"tool_call":false},"mistral/devstral-2":{"attachment":false,"family":"devstral","id":"mistral/devstral-2","knowledge":"2024-10","last_updated":"2025-12-09","limit":{"context":256000,"output":256000},"modalities":{"input":["text"],"output":["text"]},"name":"Devstral 2","open_weights":false,"reasoning":false,"release_date":"2025-12-09","temperature":true,"tool_call":true},"mistral/devstral-small":{"attachment":false,"cost":{"input":0.1,"output":0.3},"family":"devstral","id":"mistral/devstral-small","knowledge":"2024-10","last_updated":"2025-05-07","limit":{"context":128000,"output":64000},"modalities":{"input":["text"],"output":["text"]},"name":"Devstral Small 1.1","open_weights":false,"reasoning":false,"release_date":"2025-05-07","temperature":true,"tool_call":true},"mistral/devstral-small-2":{"attachment":false,"family":"devstral","id":"mistral/devstral-small-2","knowledge":"2024-10","last_updated":"2025-05-07","limit":{"context":256000,"output":256000},"modalities":{"input":["text"],"output":["text"]},"name":"Devstral Small 2","open_weights":false,"reasoning":false,"release_date":"2025-05-07","temperature":true,"tool_call":true},"mistral/magistral-medium":{"attachment":false,"cost":{"input":2,"output":5},"family":"magistral-medium","id":"mistral/magistral-medium","knowledge":"2025-06","last_updated":"2025-03-20","limit":{"context":128000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Magistral Medium (latest)","open_weights":true,"reasoning":true,"release_date":"2025-03-17","temperature":true,"tool_call":true},"mistral/magistral-small":{"attachment":false,"cost":{"input":0.5,"output":1.5},"family":"magistral-small","id":"mistral/magistral-small","knowledge":"2025-06","last_updated":"2025-03-17","limit":{"context":128000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"Magistral Small","open_weights":true,"reasoning":true,"release_date":"2025-03-17","temperature":true,"tool_call":true},"mistral/ministral-14b":{"attachment":true,"cost":{"input":0.2,"output":0.2},"family":"ministral","id":"mistral/ministral-14b","knowledge":"2024-10","last_updated":"2025-12-01","limit":{"context":256000,"output":256000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Ministral 14B","open_weights":false,"reasoning":false,"release_date":"2025-12-01","temperature":true,"tool_call":false},"mistral/ministral-3b":{"attachment":false,"cost":{"input":0.04,"output":0.04},"family":"ministral","id":"mistral/ministral-3b","knowledge":"2024-10","last_updated":"2024-10-04","limit":{"context":128000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"Ministral 3B (latest)","open_weights":true,"reasoning":false,"release_date":"2024-10-01","temperature":true,"tool_call":true},"mistral/ministral-8b":{"attachment":false,"cost":{"input":0.1,"output":0.1},"family":"ministral","id":"mistral/ministral-8b","knowledge":"2024-10","last_updated":"2024-10-04","limit":{"context":128000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"Ministral 8B (latest)","open_weights":true,"reasoning":false,"release_date":"2024-10-01","temperature":true,"tool_call":true},"mistral/mistral-embed":{"attachment":false,"cost":{"input":0.1,"output":0},"family":"mistral-embed","id":"mistral/mistral-embed","last_updated":"2023-12-11","limit":{"context":8192,"output":1536},"modalities":{"input":["text"],"output":["text"]},"name":"Mistral Embed","open_weights":false,"reasoning":false,"release_date":"2023-12-11","temperature":false,"tool_call":false},"mistral/mistral-large-3":{"attachment":true,"cost":{"input":0.5,"output":1.5},"family":"mistral-large","id":"mistral/mistral-large-3","knowledge":"2024-10","last_updated":"2025-12-02","limit":{"context":256000,"output":256000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Mistral Large 3","open_weights":false,"reasoning":false,"release_date":"2025-12-02","temperature":true,"tool_call":false},"mistral/mistral-medium":{"attachment":true,"cost":{"input":0.4,"output":2},"family":"mistral-medium","id":"mistral/mistral-medium","knowledge":"2024-10","last_updated":"2025-05-07","limit":{"context":128000,"output":64000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Mistral Medium 3.1","open_weights":false,"reasoning":false,"release_date":"2025-05-07","temperature":true,"tool_call":true},"mistral/mistral-medium-3.5":{"attachment":false,"cost":{"input":1.5,"output":7.5},"family":"mistral-medium","id":"mistral/mistral-medium-3.5","last_updated":"2026-05-21","limit":{"context":256000,"output":256000},"modalities":{"input":["text"],"output":["text"]},"name":"Mistral Medium Latest","open_weights":false,"reasoning":true,"release_date":"2026-05-21","temperature":true,"tool_call":true},"mistral/mistral-nemo":{"attachment":false,"cost":{"input":0.04,"output":0.17},"family":"mistral-nemo","id":"mistral/mistral-nemo","knowledge":"2024-04","last_updated":"2024-07-01","limit":{"context":60288,"output":16000},"modalities":{"input":["text"],"output":["text"]},"name":"Mistral Nemo","open_weights":false,"reasoning":false,"release_date":"2024-07-01","temperature":true,"tool_call":true},"mistral/mistral-small":{"attachment":true,"cost":{"input":0.15,"output":0.6},"family":"mistral-small","id":"mistral/mistral-small","knowledge":"2025-06","last_updated":"2026-03-16","limit":{"context":256000,"output":256000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Mistral Small (latest)","open_weights":true,"reasoning":true,"release_date":"2026-03-16","temperature":true,"tool_call":true},"mistral/mixtral-8x22b-instruct":{"attachment":false,"cost":{"input":2,"output":6},"family":"mixtral","id":"mistral/mixtral-8x22b-instruct","knowledge":"2024-04","last_updated":"2024-04-17","limit":{"context":64000,"output":64000},"modalities":{"input":["text"],"output":["text"]},"name":"Mixtral 8x22B","open_weights":true,"reasoning":false,"release_date":"2024-04-17","temperature":true,"tool_call":true},"mistral/pixtral-12b":{"attachment":true,"cost":{"input":0.15,"output":0.15},"family":"pixtral","id":"mistral/pixtral-12b","knowledge":"2024-09","last_updated":"2024-09-01","limit":{"context":128000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Pixtral 12B","open_weights":true,"reasoning":false,"release_date":"2024-09-01","temperature":true,"tool_call":true},"mistral/pixtral-large":{"attachment":true,"cost":{"input":2,"output":6},"family":"pixtral","id":"mistral/pixtral-large","knowledge":"2024-11","last_updated":"2024-11-04","limit":{"context":128000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Pixtral Large (latest)","open_weights":true,"reasoning":false,"release_date":"2024-11-01","temperature":true,"tool_call":true},"moonshotai/kimi-k2":{"attachment":false,"cost":{"input":1,"output":3},"family":"kimi","id":"moonshotai/kimi-k2","knowledge":"2024-10","last_updated":"2025-07-14","limit":{"context":131072,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Kimi K2 Instruct","open_weights":true,"reasoning":false,"release_date":"2025-07-14","status":"deprecated","temperature":true,"tool_call":true},"moonshotai/kimi-k2-0905":{"attachment":false,"cost":{"input":0.6,"output":2.5},"family":"kimi","id":"moonshotai/kimi-k2-0905","knowledge":"2024-10","last_updated":"2025-09-05","limit":{"context":131072,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Kimi K2 0905","open_weights":false,"reasoning":false,"release_date":"2025-09-05","temperature":true,"tool_call":false},"moonshotai/kimi-k2-thinking":{"attachment":false,"cost":{"cache_read":0.14,"input":0.47,"output":2},"family":"kimi-thinking","id":"moonshotai/kimi-k2-thinking","interleaved":true,"knowledge":"2024-08","last_updated":"2025-11-06","limit":{"context":216144,"output":216144},"modalities":{"input":["text"],"output":["text"]},"name":"Kimi K2 Thinking","open_weights":false,"reasoning":true,"release_date":"2025-11-06","temperature":true,"tool_call":true},"moonshotai/kimi-k2-thinking-turbo":{"attachment":false,"cost":{"cache_read":0.15,"input":1.15,"output":8},"family":"kimi-thinking","id":"moonshotai/kimi-k2-thinking-turbo","interleaved":true,"knowledge":"2024-08","last_updated":"2025-11-06","limit":{"context":262114,"output":262114},"modalities":{"input":["text"],"output":["text"]},"name":"Kimi K2 Thinking Turbo","open_weights":false,"reasoning":true,"release_date":"2025-11-06","temperature":true,"tool_call":true},"moonshotai/kimi-k2-turbo":{"attachment":false,"cost":{"input":2.4,"output":10},"family":"kimi","id":"moonshotai/kimi-k2-turbo","knowledge":"2024-08","last_updated":"2025-09-05","limit":{"context":256000,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"Kimi K2 Turbo","open_weights":false,"reasoning":false,"release_date":"2025-09-05","temperature":true,"tool_call":true},"moonshotai/kimi-k2.5":{"attachment":true,"cost":{"input":0.6,"output":1.2},"family":"kimi","id":"moonshotai/kimi-k2.5","interleaved":true,"knowledge":"2025-01","last_updated":"2026-01-26","limit":{"context":262144,"output":262144},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Kimi K2.5","open_weights":true,"reasoning":true,"release_date":"2026-01-26","temperature":true,"tool_call":true},"moonshotai/kimi-k2.6":{"attachment":true,"cost":{"cache_read":0.16,"input":0.95,"output":4},"family":"kimi-k2.6","id":"moonshotai/kimi-k2.6","last_updated":"2026-04-24","limit":{"context":262000,"output":262000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Kimi K2.6","open_weights":true,"reasoning":true,"release_date":"2026-04-20","temperature":true,"tool_call":true},"morph/morph-v3-fast":{"attachment":false,"cost":{"input":0.8,"output":1.2},"family":"morph","id":"morph/morph-v3-fast","last_updated":"2024-08-15","limit":{"context":16000,"output":16000},"modalities":{"input":["text"],"output":["text"]},"name":"Morph v3 Fast","open_weights":false,"reasoning":false,"release_date":"2024-08-15","temperature":false,"tool_call":false},"morph/morph-v3-large":{"attachment":false,"cost":{"input":0.9,"output":1.9},"family":"morph","id":"morph/morph-v3-large","last_updated":"2024-08-15","limit":{"context":32000,"output":32000},"modalities":{"input":["text"],"output":["text"]},"name":"Morph v3 Large","open_weights":false,"reasoning":false,"release_date":"2024-08-15","temperature":false,"tool_call":false},"nvidia/nemotron-3-nano-30b-a3b":{"attachment":false,"cost":{"input":0.06,"output":0.24},"family":"nemotron","id":"nvidia/nemotron-3-nano-30b-a3b","knowledge":"2024-10","last_updated":"2024-12","limit":{"context":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Nemotron 3 Nano 30B A3B","open_weights":false,"reasoning":true,"release_date":"2024-12","temperature":true,"tool_call":false},"nvidia/nemotron-3-super-120b-a12b":{"attachment":false,"cost":{"input":0.15,"output":0.65},"family":"nemotron","id":"nvidia/nemotron-3-super-120b-a12b","last_updated":"2026-03-30","limit":{"context":256000,"output":32000},"modalities":{"input":["text"],"output":["text"]},"name":"NVIDIA Nemotron 3 Super 120B A12B","open_weights":false,"reasoning":false,"release_date":"2026-03-18","temperature":true,"tool_call":false},"nvidia/nemotron-nano-12b-v2-vl":{"attachment":true,"cost":{"input":0.2,"output":0.6},"family":"nemotron","id":"nvidia/nemotron-nano-12b-v2-vl","knowledge":"2024-10","last_updated":"2024-12","limit":{"context":131072,"output":131072},"modalities":{"input":["text","image"],"output":["text"]},"name":"Nvidia Nemotron Nano 12B V2 VL","open_weights":false,"reasoning":true,"release_date":"2024-12","temperature":true,"tool_call":true},"nvidia/nemotron-nano-9b-v2":{"attachment":false,"cost":{"input":0.04,"output":0.16},"family":"nemotron","id":"nvidia/nemotron-nano-9b-v2","knowledge":"2024-10","last_updated":"2025-08-18","limit":{"context":131072,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"Nvidia Nemotron Nano 9B V2","open_weights":false,"reasoning":true,"release_date":"2025-08-18","temperature":true,"tool_call":true},"openai/codex-mini":{"attachment":true,"cost":{"cache_read":0.38,"input":1.5,"output":6},"family":"gpt-codex-mini","id":"openai/codex-mini","knowledge":"2024-10","last_updated":"2025-05-16","limit":{"context":200000,"input":100000,"output":100000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Codex Mini","open_weights":false,"reasoning":true,"release_date":"2025-05-16","temperature":true,"tool_call":true},"openai/gpt-3.5-turbo":{"attachment":false,"cost":{"input":0.5,"output":1.5},"family":"gpt","id":"openai/gpt-3.5-turbo","knowledge":"2021-09","last_updated":"2023-03-01","limit":{"context":16385,"input":12289,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"GPT-3.5 Turbo","open_weights":false,"reasoning":false,"release_date":"2023-03-01","temperature":true,"tool_call":false},"openai/gpt-3.5-turbo-instruct":{"attachment":false,"cost":{"input":1.5,"output":2},"family":"gpt","id":"openai/gpt-3.5-turbo-instruct","knowledge":"2021-09","last_updated":"2023-03-01","limit":{"context":8192,"input":4096,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"GPT-3.5 Turbo Instruct","open_weights":false,"reasoning":false,"release_date":"2023-03-01","temperature":true,"tool_call":false},"openai/gpt-4-turbo":{"attachment":true,"cost":{"input":10,"output":30},"family":"gpt","id":"openai/gpt-4-turbo","knowledge":"2023-12","last_updated":"2024-04-09","limit":{"context":128000,"output":4096},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-4 Turbo","open_weights":false,"reasoning":false,"release_date":"2023-11-06","structured_output":false,"temperature":true,"tool_call":true},"openai/gpt-4.1":{"attachment":true,"cost":{"cache_read":0.5,"input":2,"output":8},"family":"gpt","id":"openai/gpt-4.1","knowledge":"2024-04","last_updated":"2025-04-14","limit":{"context":1047576,"output":32768},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-4.1","open_weights":false,"reasoning":false,"release_date":"2025-04-14","structured_output":true,"temperature":true,"tool_call":true},"openai/gpt-4.1-mini":{"attachment":true,"cost":{"cache_read":0.1,"input":0.4,"output":1.6},"family":"gpt-mini","id":"openai/gpt-4.1-mini","knowledge":"2024-04","last_updated":"2025-04-14","limit":{"context":1047576,"output":32768},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-4.1 mini","open_weights":false,"reasoning":false,"release_date":"2025-04-14","structured_output":true,"temperature":true,"tool_call":true},"openai/gpt-4.1-nano":{"attachment":true,"cost":{"cache_read":0.025,"input":0.1,"output":0.4},"family":"gpt-nano","id":"openai/gpt-4.1-nano","knowledge":"2024-04","last_updated":"2025-04-14","limit":{"context":1047576,"output":32768},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-4.1 nano","open_weights":false,"reasoning":false,"release_date":"2025-04-14","structured_output":true,"temperature":true,"tool_call":true},"openai/gpt-4o":{"attachment":true,"cost":{"cache_read":1.25,"input":2.5,"output":10},"family":"gpt","id":"openai/gpt-4o","knowledge":"2023-09","last_updated":"2024-08-06","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-4o","open_weights":false,"reasoning":false,"release_date":"2024-05-13","structured_output":true,"temperature":true,"tool_call":true},"openai/gpt-4o-mini":{"attachment":true,"cost":{"cache_read":0.075,"input":0.15,"output":0.6},"family":"gpt-mini","id":"openai/gpt-4o-mini","knowledge":"2023-09","last_updated":"2024-07-18","limit":{"context":128000,"output":16384},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-4o mini","open_weights":false,"reasoning":false,"release_date":"2024-07-18","structured_output":true,"temperature":true,"tool_call":true},"openai/gpt-4o-mini-search-preview":{"attachment":false,"cost":{"input":0.15,"output":0.6},"family":"gpt-mini","id":"openai/gpt-4o-mini-search-preview","knowledge":"2023-09","last_updated":"2025-01","limit":{"context":128000,"input":111616,"output":16384},"modalities":{"input":["text"],"output":["text"]},"name":"GPT 4o Mini Search Preview","open_weights":false,"reasoning":false,"release_date":"2025-01","structured_output":false,"temperature":true,"tool_call":false},"openai/gpt-5":{"attachment":true,"cost":{"cache_read":0.125,"input":1.25,"output":10},"family":"gpt","id":"openai/gpt-5","knowledge":"2024-09-30","last_updated":"2025-08-07","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5","open_weights":false,"reasoning":true,"release_date":"2025-08-07","structured_output":true,"temperature":false,"tool_call":true},"openai/gpt-5-chat":{"attachment":true,"cost":{"cache_read":0.13,"input":1.25,"output":10},"family":"gpt","id":"openai/gpt-5-chat","knowledge":"2024-10","last_updated":"2025-08-07","limit":{"context":128000,"input":111616,"output":16384},"modalities":{"input":["text","image","pdf"],"output":["text","image"]},"name":"GPT-5 Chat","open_weights":false,"reasoning":true,"release_date":"2025-08-07","temperature":true,"tool_call":true},"openai/gpt-5-codex":{"attachment":false,"cost":{"cache_read":0.125,"input":1.25,"output":10},"family":"gpt-codex","id":"openai/gpt-5-codex","knowledge":"2024-09-30","last_updated":"2025-09-15","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5-Codex","open_weights":false,"reasoning":true,"release_date":"2025-09-15","structured_output":true,"temperature":false,"tool_call":true},"openai/gpt-5-mini":{"attachment":true,"cost":{"cache_read":0.025,"input":0.25,"output":2},"family":"gpt-mini","id":"openai/gpt-5-mini","knowledge":"2024-05-30","last_updated":"2025-08-07","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5 Mini","open_weights":false,"reasoning":true,"release_date":"2025-08-07","structured_output":true,"temperature":false,"tool_call":true},"openai/gpt-5-nano":{"attachment":true,"cost":{"cache_read":0.005,"input":0.05,"output":0.4},"family":"gpt-nano","id":"openai/gpt-5-nano","knowledge":"2024-05-30","last_updated":"2025-08-07","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5 Nano","open_weights":false,"reasoning":true,"release_date":"2025-08-07","structured_output":true,"temperature":false,"tool_call":true},"openai/gpt-5-pro":{"attachment":true,"cost":{"input":15,"output":120},"family":"gpt","id":"openai/gpt-5-pro","knowledge":"2024-10","last_updated":"2025-08-07","limit":{"context":400000,"input":128000,"output":272000},"modalities":{"input":["text","image","pdf"],"output":["text","image"]},"name":"GPT-5 pro","open_weights":false,"reasoning":true,"release_date":"2025-08-07","temperature":true,"tool_call":true},"openai/gpt-5.1-codex":{"attachment":true,"cost":{"cache_read":0.13,"input":1.25,"output":10},"family":"gpt","id":"openai/gpt-5.1-codex","knowledge":"2024-10","last_updated":"2025-08-07","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5.1-Codex","open_weights":false,"reasoning":true,"release_date":"2025-08-07","temperature":true,"tool_call":true},"openai/gpt-5.1-codex-max":{"attachment":true,"cost":{"cache_read":0.13,"input":1.25,"output":10},"family":"gpt","id":"openai/gpt-5.1-codex-max","knowledge":"2024-10","last_updated":"2025-08-07","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT 5.1 Codex Max","open_weights":false,"reasoning":true,"release_date":"2025-08-07","temperature":true,"tool_call":true},"openai/gpt-5.1-codex-mini":{"attachment":true,"cost":{"cache_read":0.03,"input":0.25,"output":2},"family":"gpt","id":"openai/gpt-5.1-codex-mini","knowledge":"2024-10","last_updated":"2025-05-16","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5.1 Codex mini","open_weights":false,"reasoning":true,"release_date":"2025-05-16","temperature":true,"tool_call":true},"openai/gpt-5.1-instant":{"attachment":true,"cost":{"cache_read":0.13,"input":1.25,"output":10},"family":"gpt","id":"openai/gpt-5.1-instant","knowledge":"2024-10","last_updated":"2025-08-07","limit":{"context":128000,"input":111616,"output":16384},"modalities":{"input":["text","image","pdf"],"output":["text","image"]},"name":"GPT-5.1 Instant","open_weights":false,"reasoning":true,"release_date":"2025-08-07","temperature":true,"tool_call":true},"openai/gpt-5.1-thinking":{"attachment":true,"cost":{"cache_read":0.13,"input":1.25,"output":10},"family":"gpt","id":"openai/gpt-5.1-thinking","knowledge":"2024-10","last_updated":"2025-08-07","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text","image"]},"name":"GPT 5.1 Thinking","open_weights":false,"reasoning":true,"release_date":"2025-08-07","temperature":false,"tool_call":true},"openai/gpt-5.2":{"attachment":true,"cost":{"cache_read":0.18,"input":1.75,"output":14},"family":"gpt","id":"openai/gpt-5.2","knowledge":"2024-10","last_updated":"2025-08-07","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5.2","open_weights":false,"reasoning":true,"release_date":"2025-08-07","temperature":true,"tool_call":true},"openai/gpt-5.2-chat":{"attachment":true,"cost":{"cache_read":0.18,"input":1.75,"output":14},"family":"gpt","id":"openai/gpt-5.2-chat","knowledge":"2024-10","last_updated":"2025-08-07","limit":{"context":128000,"input":111616,"output":16384},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5.2 Chat","open_weights":false,"reasoning":true,"release_date":"2025-08-07","temperature":true,"tool_call":true},"openai/gpt-5.2-codex":{"attachment":true,"cost":{"cache_read":0.175,"input":1.75,"output":14},"family":"gpt-codex","id":"openai/gpt-5.2-codex","knowledge":"2024-10","last_updated":"2025-12","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5.2-Codex","open_weights":false,"reasoning":true,"release_date":"2025-12","temperature":true,"tool_call":true},"openai/gpt-5.2-pro":{"attachment":true,"cost":{"input":21,"output":168},"family":"gpt","id":"openai/gpt-5.2-pro","knowledge":"2024-10","last_updated":"2025-08-07","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT 5.2 ","open_weights":false,"reasoning":true,"release_date":"2025-08-07","temperature":true,"tool_call":true},"openai/gpt-5.3-chat":{"attachment":true,"cost":{"cache_read":0.175,"input":1.75,"output":14},"family":"gpt","id":"openai/gpt-5.3-chat","last_updated":"2026-03-06","limit":{"context":128000,"input":111616,"output":16384},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5.3 Chat","open_weights":false,"reasoning":true,"release_date":"2026-03-03","temperature":true,"tool_call":true},"openai/gpt-5.3-codex":{"attachment":true,"cost":{"cache_read":0.175,"input":1.75,"output":14},"family":"gpt","id":"openai/gpt-5.3-codex","last_updated":"2026-02-24","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT 5.3 Codex","open_weights":false,"reasoning":true,"release_date":"2026-02-24","temperature":true,"tool_call":true},"openai/gpt-5.4":{"attachment":true,"cost":{"cache_read":0.25,"input":2.5,"output":15},"family":"gpt","id":"openai/gpt-5.4","last_updated":"2026-03-06","limit":{"context":1050000,"input":922000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT 5.4","open_weights":false,"reasoning":true,"release_date":"2026-03-05","temperature":true,"tool_call":true},"openai/gpt-5.4-mini":{"attachment":true,"cost":{"cache_read":0.075,"input":0.75,"output":4.5},"family":"gpt","id":"openai/gpt-5.4-mini","last_updated":"2026-03-17","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT 5.4 Mini","open_weights":false,"reasoning":true,"release_date":"2026-03-17","temperature":true,"tool_call":true},"openai/gpt-5.4-nano":{"attachment":true,"cost":{"cache_read":0.02,"input":0.19999999999999998,"output":1.25},"family":"gpt","id":"openai/gpt-5.4-nano","last_updated":"2026-03-17","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT 5.4 Nano","open_weights":false,"reasoning":true,"release_date":"2026-03-17","temperature":true,"tool_call":true},"openai/gpt-5.4-pro":{"attachment":true,"cost":{"input":30,"output":180},"family":"gpt","id":"openai/gpt-5.4-pro","last_updated":"2026-03-06","limit":{"context":1050000,"input":922000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT 5.4 Pro","open_weights":false,"reasoning":true,"release_date":"2026-03-05","temperature":true,"tool_call":true},"openai/gpt-5.5":{"attachment":true,"cost":{"cache_read":0.5,"input":5,"output":30},"family":"gpt","id":"openai/gpt-5.5","last_updated":"2026-04-24","limit":{"context":1000000,"input":872000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT 5.5","open_weights":false,"reasoning":true,"release_date":"2026-04-24","temperature":true,"tool_call":true},"openai/gpt-5.5-pro":{"attachment":true,"cost":{"input":30,"output":180},"family":"gpt","id":"openai/gpt-5.5-pro","last_updated":"2026-04-24","limit":{"context":1000000,"input":872000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT 5.5 Pro","open_weights":false,"reasoning":true,"release_date":"2026-04-24","temperature":true,"tool_call":true},"openai/gpt-oss-120b":{"attachment":false,"cost":{"input":0.1,"output":0.5},"family":"gpt-oss","id":"openai/gpt-oss-120b","knowledge":"2024-10","last_updated":"2025-08-05","limit":{"context":131072,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GPT OSS 120B","open_weights":true,"reasoning":true,"release_date":"2025-08-05","temperature":true,"tool_call":true},"openai/gpt-oss-20b":{"attachment":false,"cost":{"input":0.07,"output":0.3},"family":"gpt-oss","id":"openai/gpt-oss-20b","knowledge":"2024-10","last_updated":"2025-08-05","limit":{"context":131072,"input":98304,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"GPT OSS 20B","open_weights":true,"reasoning":true,"release_date":"2025-08-05","temperature":true,"tool_call":true},"openai/gpt-oss-safeguard-20b":{"attachment":false,"cost":{"cache_read":0.04,"input":0.08,"output":0.3},"family":"gpt-oss","id":"openai/gpt-oss-safeguard-20b","knowledge":"2024-10","last_updated":"2024-12-01","limit":{"context":131072,"input":65536,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"gpt-oss-safeguard-20b","open_weights":false,"reasoning":true,"release_date":"2024-12-01","temperature":true,"tool_call":true},"openai/o1":{"attachment":true,"cost":{"cache_read":7.5,"input":15,"output":60},"family":"o","id":"openai/o1","knowledge":"2023-09","last_updated":"2024-12-05","limit":{"context":200000,"output":100000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"o1","open_weights":false,"reasoning":true,"release_date":"2024-12-05","structured_output":true,"temperature":false,"tool_call":true},"openai/o3":{"attachment":true,"cost":{"cache_read":0.5,"input":2,"output":8},"family":"o","id":"openai/o3","knowledge":"2024-05","last_updated":"2025-04-16","limit":{"context":200000,"output":100000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"o3","open_weights":false,"reasoning":true,"release_date":"2025-04-16","structured_output":true,"temperature":false,"tool_call":true},"openai/o3-deep-research":{"attachment":true,"cost":{"cache_read":2.5,"input":10,"output":40},"family":"o","id":"openai/o3-deep-research","knowledge":"2024-10","last_updated":"2024-06-26","limit":{"context":200000,"input":100000,"output":100000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"o3-deep-research","open_weights":false,"reasoning":true,"release_date":"2024-06-26","temperature":false,"tool_call":true},"openai/o3-mini":{"attachment":false,"cost":{"cache_read":0.55,"input":1.1,"output":4.4},"family":"o-mini","id":"openai/o3-mini","knowledge":"2024-05","last_updated":"2025-01-29","limit":{"context":200000,"output":100000},"modalities":{"input":["text"],"output":["text"]},"name":"o3-mini","open_weights":false,"reasoning":true,"release_date":"2024-12-20","structured_output":true,"temperature":false,"tool_call":true},"openai/o3-pro":{"attachment":true,"cost":{"input":20,"output":80},"family":"o-pro","id":"openai/o3-pro","knowledge":"2024-10","last_updated":"2025-04-16","limit":{"context":200000,"input":100000,"output":100000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"o3 Pro","open_weights":false,"reasoning":true,"release_date":"2025-04-16","temperature":false,"tool_call":true},"openai/o4-mini":{"attachment":true,"cost":{"cache_read":0.275,"input":1.1,"output":4.4},"family":"o-mini","id":"openai/o4-mini","knowledge":"2024-05","last_updated":"2025-04-16","limit":{"context":200000,"output":100000},"modalities":{"input":["text","image"],"output":["text"]},"name":"o4-mini","open_weights":false,"reasoning":true,"release_date":"2025-04-16","structured_output":true,"temperature":false,"tool_call":true},"openai/text-embedding-3-large":{"attachment":false,"cost":{"input":0.13,"output":0},"family":"text-embedding","id":"openai/text-embedding-3-large","last_updated":"2024-01-25","limit":{"context":8192,"input":6656,"output":1536},"modalities":{"input":["text"],"output":["text"]},"name":"text-embedding-3-large","open_weights":false,"reasoning":false,"release_date":"2024-01-25","temperature":false,"tool_call":false},"openai/text-embedding-3-small":{"attachment":false,"cost":{"input":0.02,"output":0},"family":"text-embedding","id":"openai/text-embedding-3-small","last_updated":"2024-01-25","limit":{"context":8192,"input":6656,"output":1536},"modalities":{"input":["text"],"output":["text"]},"name":"text-embedding-3-small","open_weights":false,"reasoning":false,"release_date":"2024-01-25","temperature":false,"tool_call":false},"openai/text-embedding-ada-002":{"attachment":false,"cost":{"input":0.1,"output":0},"family":"text-embedding","id":"openai/text-embedding-ada-002","last_updated":"2022-12-15","limit":{"context":8192,"input":6656,"output":1536},"modalities":{"input":["text"],"output":["text"]},"name":"text-embedding-ada-002","open_weights":false,"reasoning":false,"release_date":"2022-12-15","temperature":false,"tool_call":false},"perplexity/sonar":{"attachment":true,"cost":{"input":1,"output":1},"family":"sonar","id":"perplexity/sonar","knowledge":"2025-02","last_updated":"2025-02-19","limit":{"context":127000,"output":8000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Sonar","open_weights":false,"reasoning":false,"release_date":"2025-02-19","temperature":true,"tool_call":true},"perplexity/sonar-pro":{"attachment":true,"cost":{"input":3,"output":15},"family":"sonar-pro","id":"perplexity/sonar-pro","knowledge":"2025-09","last_updated":"2025-02-19","limit":{"context":200000,"output":8000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Sonar Pro","open_weights":false,"reasoning":false,"release_date":"2025-02-19","temperature":true,"tool_call":true},"perplexity/sonar-reasoning":{"attachment":false,"cost":{"input":1,"output":5},"family":"sonar-reasoning","id":"perplexity/sonar-reasoning","knowledge":"2025-09","last_updated":"2025-02-19","limit":{"context":127000,"output":8000},"modalities":{"input":["text"],"output":["text"]},"name":"Sonar Reasoning","open_weights":false,"reasoning":true,"release_date":"2025-02-19","temperature":true,"tool_call":false},"perplexity/sonar-reasoning-pro":{"attachment":false,"cost":{"input":2,"output":8},"family":"sonar-reasoning","id":"perplexity/sonar-reasoning-pro","knowledge":"2025-09","last_updated":"2025-02-19","limit":{"context":127000,"output":8000},"modalities":{"input":["text"],"output":["text"]},"name":"Sonar Reasoning Pro","open_weights":false,"reasoning":true,"release_date":"2025-02-19","temperature":true,"tool_call":false},"prime-intellect/intellect-3":{"attachment":false,"cost":{"input":0.2,"output":1.1},"family":"intellect","id":"prime-intellect/intellect-3","knowledge":"2024-10","last_updated":"2025-11-26","limit":{"context":131072,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"INTELLECT 3","open_weights":false,"reasoning":true,"release_date":"2025-11-26","temperature":true,"tool_call":true},"recraft/recraft-v2":{"attachment":false,"family":"recraft","id":"recraft/recraft-v2","last_updated":"2024-03","limit":{"context":512,"output":0},"modalities":{"input":["text"],"output":["image"]},"name":"Recraft V2","open_weights":false,"reasoning":false,"release_date":"2024-03","temperature":false,"tool_call":false},"recraft/recraft-v3":{"attachment":false,"family":"recraft","id":"recraft/recraft-v3","last_updated":"2024-10","limit":{"context":512,"output":0},"modalities":{"input":["text"],"output":["image"]},"name":"Recraft V3","open_weights":false,"reasoning":false,"release_date":"2024-10","temperature":false,"tool_call":false},"vercel/v0-1.0-md":{"attachment":true,"cost":{"input":3,"output":15},"family":"v0","id":"vercel/v0-1.0-md","last_updated":"2025-05-22","limit":{"context":128000,"output":32000},"modalities":{"input":["text","image"],"output":["text"]},"name":"v0-1.0-md","open_weights":false,"reasoning":true,"release_date":"2025-05-22","temperature":true,"tool_call":true},"vercel/v0-1.5-md":{"attachment":true,"cost":{"input":3,"output":15},"family":"v0","id":"vercel/v0-1.5-md","last_updated":"2025-06-09","limit":{"context":128000,"output":32000},"modalities":{"input":["text","image"],"output":["text"]},"name":"v0-1.5-md","open_weights":false,"reasoning":true,"release_date":"2025-06-09","temperature":true,"tool_call":true},"voyage/voyage-3-large":{"attachment":false,"cost":{"input":0.18,"output":0},"family":"voyage","id":"voyage/voyage-3-large","last_updated":"2024-09","limit":{"context":8192,"output":1536},"modalities":{"input":["text"],"output":["text"]},"name":"voyage-3-large","open_weights":false,"reasoning":false,"release_date":"2024-09","temperature":false,"tool_call":false},"voyage/voyage-3.5":{"attachment":false,"cost":{"input":0.06,"output":0},"family":"voyage","id":"voyage/voyage-3.5","last_updated":"2025-05-20","limit":{"context":8192,"output":1536},"modalities":{"input":["text"],"output":["text"]},"name":"voyage-3.5","open_weights":false,"reasoning":false,"release_date":"2025-05-20","temperature":false,"tool_call":false},"voyage/voyage-3.5-lite":{"attachment":false,"cost":{"input":0.02,"output":0},"family":"voyage","id":"voyage/voyage-3.5-lite","last_updated":"2025-05-20","limit":{"context":8192,"output":1536},"modalities":{"input":["text"],"output":["text"]},"name":"voyage-3.5-lite","open_weights":false,"reasoning":false,"release_date":"2025-05-20","temperature":false,"tool_call":false},"voyage/voyage-4":{"attachment":false,"family":"voyage","id":"voyage/voyage-4","last_updated":"2026-03-06","limit":{"context":32000,"output":0},"modalities":{"input":["text"],"output":["text"]},"name":"voyage-4","open_weights":false,"reasoning":false,"release_date":"2026-03-06","temperature":true,"tool_call":false},"voyage/voyage-4-large":{"attachment":false,"family":"voyage","id":"voyage/voyage-4-large","last_updated":"2026-03-06","limit":{"context":32000,"output":0},"modalities":{"input":["text"],"output":["text"]},"name":"voyage-4-large","open_weights":false,"reasoning":false,"release_date":"2026-03-06","temperature":true,"tool_call":false},"voyage/voyage-4-lite":{"attachment":false,"family":"voyage","id":"voyage/voyage-4-lite","last_updated":"2026-03-06","limit":{"context":32000,"output":0},"modalities":{"input":["text"],"output":["text"]},"name":"voyage-4-lite","open_weights":false,"reasoning":false,"release_date":"2026-03-06","temperature":true,"tool_call":false},"voyage/voyage-code-2":{"attachment":false,"cost":{"input":0.12,"output":0},"family":"voyage","id":"voyage/voyage-code-2","last_updated":"2024-01","limit":{"context":8192,"output":1536},"modalities":{"input":["text"],"output":["text"]},"name":"voyage-code-2","open_weights":false,"reasoning":false,"release_date":"2024-01","temperature":false,"tool_call":false},"voyage/voyage-code-3":{"attachment":false,"cost":{"input":0.18,"output":0},"family":"voyage","id":"voyage/voyage-code-3","last_updated":"2024-09","limit":{"context":8192,"output":1536},"modalities":{"input":["text"],"output":["text"]},"name":"voyage-code-3","open_weights":false,"reasoning":false,"release_date":"2024-09","temperature":false,"tool_call":false},"voyage/voyage-finance-2":{"attachment":false,"cost":{"input":0.12,"output":0},"family":"voyage","id":"voyage/voyage-finance-2","last_updated":"2024-03","limit":{"context":8192,"output":1536},"modalities":{"input":["text"],"output":["text"]},"name":"voyage-finance-2","open_weights":false,"reasoning":false,"release_date":"2024-03","temperature":false,"tool_call":false},"voyage/voyage-law-2":{"attachment":false,"cost":{"input":0.12,"output":0},"family":"voyage","id":"voyage/voyage-law-2","last_updated":"2024-03","limit":{"context":8192,"output":1536},"modalities":{"input":["text"],"output":["text"]},"name":"voyage-law-2","open_weights":false,"reasoning":false,"release_date":"2024-03","temperature":false,"tool_call":false},"xai/grok-4-fast-reasoning":{"attachment":false,"cost":{"cache_read":0.05,"input":0.2,"output":0.5},"family":"grok","id":"xai/grok-4-fast-reasoning","knowledge":"2024-10","last_updated":"2025-07-09","limit":{"context":2000000,"output":256000},"modalities":{"input":["text"],"output":["text"]},"name":"Grok 4 Fast Reasoning","open_weights":false,"reasoning":true,"release_date":"2025-07-09","temperature":true,"tool_call":true},"xai/grok-4.1-fast-non-reasoning":{"attachment":false,"cost":{"cache_read":0.05,"input":0.2,"output":0.5},"family":"grok","id":"xai/grok-4.1-fast-non-reasoning","knowledge":"2024-10","last_updated":"2025-07-09","limit":{"context":2000000,"output":30000},"modalities":{"input":["text"],"output":["text"]},"name":"Grok 4.1 Fast Non-Reasoning","open_weights":false,"reasoning":false,"release_date":"2025-07-09","temperature":true,"tool_call":true},"xai/grok-4.1-fast-reasoning":{"attachment":false,"cost":{"cache_read":0.05,"input":0.2,"output":0.5},"family":"grok","id":"xai/grok-4.1-fast-reasoning","knowledge":"2024-10","last_updated":"2025-07-09","limit":{"context":2000000,"output":30000},"modalities":{"input":["text"],"output":["text"]},"name":"Grok 4.1 Fast Reasoning","open_weights":false,"reasoning":true,"release_date":"2025-07-09","temperature":true,"tool_call":true},"xai/grok-4.20-multi-agent":{"attachment":false,"cost":{"cache_read":0.19999999999999998,"input":2,"output":6},"family":"grok","id":"xai/grok-4.20-multi-agent","last_updated":"2026-03-23","limit":{"context":2000000,"output":2000000},"modalities":{"input":["text"],"output":["text"]},"name":"Grok 4.20 Multi-Agent","open_weights":false,"reasoning":true,"release_date":"2026-03-09","temperature":true,"tool_call":true},"xai/grok-4.20-multi-agent-beta":{"attachment":false,"cost":{"cache_read":0.19999999999999998,"input":2,"output":6},"family":"grok","id":"xai/grok-4.20-multi-agent-beta","last_updated":"2026-03-13","limit":{"context":2000000,"output":2000000},"modalities":{"input":["text"],"output":["text"]},"name":"Grok 4.20 Multi Agent Beta","open_weights":false,"reasoning":true,"release_date":"2026-03-11","temperature":true,"tool_call":true},"xai/grok-4.20-non-reasoning":{"attachment":true,"cost":{"cache_read":0.19999999999999998,"input":2,"output":6},"family":"grok","id":"xai/grok-4.20-non-reasoning","last_updated":"2026-03-23","limit":{"context":2000000,"output":2000000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Grok 4.20 Non-Reasoning","open_weights":false,"reasoning":false,"release_date":"2026-03-09","temperature":true,"tool_call":true},"xai/grok-4.20-non-reasoning-beta":{"attachment":true,"cost":{"cache_read":0.19999999999999998,"input":2,"output":6},"family":"grok","id":"xai/grok-4.20-non-reasoning-beta","last_updated":"2026-03-13","limit":{"context":2000000,"output":2000000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Grok 4.20 Beta Non-Reasoning","open_weights":false,"reasoning":false,"release_date":"2026-03-11","temperature":true,"tool_call":true},"xai/grok-4.20-reasoning":{"attachment":true,"cost":{"cache_read":0.19999999999999998,"input":2,"output":6},"family":"grok","id":"xai/grok-4.20-reasoning","last_updated":"2026-03-23","limit":{"context":2000000,"output":2000000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Grok 4.20 Reasoning","open_weights":false,"reasoning":true,"release_date":"2026-03-09","temperature":true,"tool_call":true},"xai/grok-4.20-reasoning-beta":{"attachment":true,"cost":{"cache_read":0.19999999999999998,"input":2,"output":6},"family":"grok","id":"xai/grok-4.20-reasoning-beta","last_updated":"2026-03-13","limit":{"context":2000000,"output":2000000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Grok 4.20 Beta Reasoning","open_weights":false,"reasoning":true,"release_date":"2026-03-11","temperature":true,"tool_call":true},"xai/grok-4.3":{"attachment":true,"cost":{"cache_read":0.19999999999999998,"input":1.25,"output":2.5},"family":"grok","id":"xai/grok-4.3","last_updated":"2026-05-01","limit":{"context":1000000,"output":1000000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Grok 4.3","open_weights":false,"reasoning":true,"release_date":"2026-04-30","temperature":true,"tool_call":true},"xai/grok-build-0.1":{"attachment":true,"cost":{"cache_read":0.19999999999999998,"input":1,"output":2},"family":"grok-build","id":"xai/grok-build-0.1","last_updated":"2026-05-21","limit":{"context":256000,"output":256000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Grok Build 0.1","open_weights":false,"reasoning":true,"release_date":"2026-05-20","temperature":true,"tool_call":true},"xai/grok-imagine-image":{"attachment":false,"family":"grok","id":"xai/grok-imagine-image","last_updated":"2026-02-19","limit":{"context":0,"output":0},"modalities":{"input":["text"],"output":["text","image"]},"name":"Grok Imagine Image","open_weights":false,"reasoning":false,"release_date":"2026-01-28","temperature":true,"tool_call":false},"xai/grok-imagine-image-pro":{"attachment":false,"family":"grok","id":"xai/grok-imagine-image-pro","last_updated":"2026-02-19","limit":{"context":0,"output":0},"modalities":{"input":["text"],"output":["text","image"]},"name":"Grok Imagine Image Pro","open_weights":false,"reasoning":false,"release_date":"2026-01-28","temperature":true,"tool_call":false},"xiaomi/mimo-v2-flash":{"attachment":false,"cost":{"input":0.1,"output":0.29},"family":"mimo","id":"xiaomi/mimo-v2-flash","knowledge":"2024-10","last_updated":"2025-12-17","limit":{"context":262144,"output":32000},"modalities":{"input":["text"],"output":["text"]},"name":"MiMo V2 Flash","open_weights":false,"reasoning":true,"release_date":"2025-12-17","temperature":true,"tool_call":true},"xiaomi/mimo-v2-pro":{"attachment":false,"cost":{"cache_read":0.19999999999999998,"input":1,"output":3},"family":"mimo","id":"xiaomi/mimo-v2-pro","last_updated":"2026-03-20","limit":{"context":1000000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"MiMo V2 Pro","open_weights":false,"reasoning":true,"release_date":"2026-03-18","temperature":true,"tool_call":true},"xiaomi/mimo-v2.5":{"attachment":true,"cost":{"cache_read":0.08,"input":0.39999999999999997,"output":2},"family":"mimo-v2.5","id":"xiaomi/mimo-v2.5","last_updated":"2026-05-01","limit":{"context":1050000,"output":131100},"modalities":{"input":["text","image","audio","video"],"output":["text"]},"name":"MiMo M2.5","open_weights":false,"reasoning":true,"release_date":"2026-04-22","temperature":true,"tool_call":true},"xiaomi/mimo-v2.5-pro":{"attachment":true,"cost":{"cache_read":0.19999999999999998,"input":1,"output":3},"family":"mimo-v2.5-pro","id":"xiaomi/mimo-v2.5-pro","last_updated":"2026-05-01","limit":{"context":1050000,"output":131000},"modalities":{"input":["text"],"output":["text"]},"name":"MiMo V2.5 Pro","open_weights":false,"reasoning":true,"release_date":"2026-04-22","temperature":true,"tool_call":true},"zai/glm-4.5":{"attachment":false,"cost":{"input":0.6,"output":2.2},"family":"glm","id":"zai/glm-4.5","interleaved":true,"knowledge":"2025-07","last_updated":"2025-07-28","limit":{"context":131072,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 4.5","open_weights":true,"reasoning":true,"release_date":"2025-07-28","temperature":true,"tool_call":true},"zai/glm-4.5-air":{"attachment":false,"cost":{"input":0.2,"output":1.1},"family":"glm-air","id":"zai/glm-4.5-air","knowledge":"2025-04","last_updated":"2025-07-28","limit":{"context":128000,"output":96000},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 4.5 Air","open_weights":true,"reasoning":true,"release_date":"2025-07-28","temperature":true,"tool_call":true},"zai/glm-4.5v":{"attachment":true,"cost":{"input":0.6,"output":1.8},"family":"glm","id":"zai/glm-4.5v","knowledge":"2025-08","last_updated":"2025-08-11","limit":{"context":66000,"output":66000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GLM 4.5V","open_weights":true,"reasoning":true,"release_date":"2025-08-11","temperature":true,"tool_call":true},"zai/glm-4.6":{"attachment":false,"cost":{"input":0.45,"output":1.8},"family":"glm","id":"zai/glm-4.6","interleaved":true,"knowledge":"2025-04","last_updated":"2025-09-30","limit":{"context":200000,"output":96000},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 4.6","open_weights":true,"reasoning":true,"release_date":"2025-09-30","temperature":true,"tool_call":true},"zai/glm-4.6v":{"attachment":true,"cost":{"cache_read":0.05,"input":0.3,"output":0.9},"family":"glm","id":"zai/glm-4.6v","knowledge":"2024-10","last_updated":"2025-09-30","limit":{"context":128000,"output":24000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GLM-4.6V","open_weights":false,"reasoning":true,"release_date":"2025-09-30","temperature":true,"tool_call":true},"zai/glm-4.6v-flash":{"attachment":true,"family":"glm","id":"zai/glm-4.6v-flash","knowledge":"2024-10","last_updated":"2025-09-30","limit":{"context":128000,"output":24000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GLM-4.6V-Flash","open_weights":false,"reasoning":true,"release_date":"2025-09-30","temperature":true,"tool_call":true},"zai/glm-4.7":{"attachment":false,"cost":{"cache_read":0.08,"input":0.43,"output":1.75},"family":"glm","id":"zai/glm-4.7","interleaved":true,"knowledge":"2024-10","last_updated":"2025-12-22","limit":{"context":202752,"output":120000},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 4.7","open_weights":false,"reasoning":true,"release_date":"2025-12-22","temperature":true,"tool_call":true},"zai/glm-4.7-flash":{"attachment":false,"cost":{"input":0.07,"output":0.39999999999999997},"family":"glm","id":"zai/glm-4.7-flash","last_updated":"2026-03-13","limit":{"context":200000,"output":131000},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 4.7 Flash","open_weights":false,"reasoning":true,"release_date":"2026-03-13","temperature":true,"tool_call":true},"zai/glm-4.7-flashx":{"attachment":false,"cost":{"cache_read":0.01,"input":0.06,"output":0.4},"family":"glm-flash","id":"zai/glm-4.7-flashx","interleaved":true,"knowledge":"2025-01","last_updated":"2025-01","limit":{"context":200000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 4.7 FlashX","open_weights":true,"reasoning":true,"release_date":"2025-01","temperature":true,"tool_call":true},"zai/glm-5":{"attachment":false,"cost":{"cache_read":0.2,"input":1,"output":3.2},"family":"glm","id":"zai/glm-5","last_updated":"2026-02-19","limit":{"context":202800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-5","open_weights":true,"reasoning":true,"release_date":"2026-02-12","temperature":true,"tool_call":true},"zai/glm-5-turbo":{"attachment":false,"cost":{"cache_read":0.24,"input":1.2,"output":4},"family":"glm","id":"zai/glm-5-turbo","last_updated":"2026-03-17","limit":{"context":202800,"output":131100},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 5 Turbo","open_weights":false,"reasoning":true,"release_date":"2026-03-15","temperature":true,"tool_call":true},"zai/glm-5.1":{"attachment":true,"cost":{"cache_read":0.26,"input":1.4,"output":4.4},"family":"glm","id":"zai/glm-5.1","last_updated":"2026-04-16","limit":{"context":202752,"output":202752},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GLM 5.1","open_weights":false,"reasoning":true,"release_date":"2026-04-07","temperature":true,"tool_call":true},"zai/glm-5v-turbo":{"attachment":true,"cost":{"cache_read":0.24,"input":1.2,"output":4},"family":"glm","id":"zai/glm-5v-turbo","last_updated":"2026-04-03","limit":{"context":200000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GLM 5V Turbo","open_weights":false,"reasoning":true,"release_date":"2026-04-01","temperature":true,"tool_call":true}},"name":"Vercel AI Gateway","npm":"@ai-sdk/gateway"},"vivgrid":{"api":"https://api.vivgrid.com/v1","doc":"https://docs.vivgrid.com/models","env":["VIVGRID_API_KEY"],"id":"vivgrid","models":{"deepseek-v3.2":{"attachment":false,"cost":{"input":0.28,"output":0.42},"family":"deepseek","id":"deepseek-v3.2","knowledge":"2024-07","last_updated":"2025-12-01","limit":{"context":128000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek-V3.2","open_weights":true,"provider":{"npm":"@ai-sdk/openai-compatible"},"reasoning":true,"release_date":"2025-12-01","temperature":true,"tool_call":true},"deepseek-v4-pro":{"attachment":false,"cost":{"cache_read":0.003625,"input":0.435,"output":0.87},"family":"deepseek-thinking","id":"deepseek-v4-pro","interleaved":{"field":"reasoning_content"},"knowledge":"2025-05","last_updated":"2026-04-24","limit":{"context":1000000,"output":384000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V4 Pro","open_weights":true,"provider":{"npm":"@ai-sdk/openai-compatible"},"reasoning":true,"release_date":"2026-04-24","structured_output":true,"temperature":true,"tool_call":true},"gemini-3.1-flash-lite-preview":{"attachment":true,"cost":{"cache_read":0.025,"cache_write":1,"input":0.25,"output":1.5},"family":"gemini-flash-lite","id":"gemini-3.1-flash-lite-preview","knowledge":"2025-01","last_updated":"2026-03-03","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"name":"Gemini 3.1 Flash Lite Preview","open_weights":false,"provider":{"npm":"@ai-sdk/openai-compatible"},"reasoning":true,"release_date":"2026-03-03","structured_output":true,"temperature":true,"tool_call":true},"gemini-3.1-pro-preview":{"attachment":true,"cost":{"cache_read":0.2,"context_over_200k":{"cache_read":0.4,"input":4,"output":18},"input":2,"output":12,"tiers":[{"cache_read":0.4,"input":4,"output":18,"tier":{"size":200000,"type":"context"}}]},"family":"gemini-pro","id":"gemini-3.1-pro-preview","knowledge":"2025-01","last_updated":"2026-02-19","limit":{"context":1048576,"output":65536},"modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"name":"Gemini 3.1 Pro Preview","open_weights":false,"provider":{"npm":"@ai-sdk/openai-compatible"},"reasoning":true,"release_date":"2026-02-19","structured_output":true,"temperature":true,"tool_call":true},"gpt-5-mini":{"attachment":true,"cost":{"cache_read":0.03,"input":0.25,"output":2},"family":"gpt-mini","id":"gpt-5-mini","knowledge":"2024-05-30","last_updated":"2025-08-07","limit":{"context":272000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5 Mini","open_weights":false,"provider":{"npm":"@ai-sdk/openai-compatible"},"reasoning":true,"release_date":"2025-08-07","temperature":false,"tool_call":true},"gpt-5.1-codex":{"attachment":false,"cost":{"cache_read":0.125,"input":1.25,"output":10},"family":"gpt-codex","id":"gpt-5.1-codex","knowledge":"2024-09-30","last_updated":"2025-11-13","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.1 Codex","open_weights":false,"reasoning":true,"release_date":"2025-11-13","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.1-codex-max":{"attachment":false,"cost":{"cache_read":0.125,"input":1.25,"output":10},"family":"gpt-codex","id":"gpt-5.1-codex-max","knowledge":"2024-09-30","last_updated":"2025-11-13","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.1 Codex Max","open_weights":false,"reasoning":true,"release_date":"2025-11-13","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.2-codex":{"attachment":false,"cost":{"cache_read":0.175,"input":1.75,"output":14},"family":"gpt-codex","id":"gpt-5.2-codex","knowledge":"2025-08-31","last_updated":"2026-01-14","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.2 Codex","open_weights":false,"reasoning":true,"release_date":"2026-01-14","temperature":false,"tool_call":true},"gpt-5.3-codex":{"attachment":false,"cost":{"cache_read":0.175,"input":1.75,"output":14},"family":"gpt-codex","id":"gpt-5.3-codex","knowledge":"2025-08-31","last_updated":"2026-02-24","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.3 Codex","open_weights":false,"reasoning":true,"release_date":"2026-02-24","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.4":{"attachment":true,"cost":{"cache_read":0.25,"input":2.5,"output":15},"family":"gpt","id":"gpt-5.4","knowledge":"2025-08-31","last_updated":"2026-03-05","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5.4","open_weights":false,"provider":{"npm":"@ai-sdk/openai-compatible"},"reasoning":true,"release_date":"2026-03-05","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.4-mini":{"attachment":true,"cost":{"cache_read":0.075,"input":0.75,"output":4.5},"family":"gpt-mini","id":"gpt-5.4-mini","knowledge":"2025-08-31","last_updated":"2026-03-17","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5.4 Mini","open_weights":false,"provider":{"npm":"@ai-sdk/openai-compatible"},"reasoning":true,"release_date":"2026-03-17","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.4-nano":{"attachment":true,"cost":{"cache_read":0.02,"input":0.2,"output":1.25},"family":"gpt-nano","id":"gpt-5.4-nano","knowledge":"2025-08-31","last_updated":"2026-03-17","limit":{"context":400000,"input":272000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5.4 Nano","open_weights":false,"provider":{"npm":"@ai-sdk/openai-compatible"},"reasoning":true,"release_date":"2026-03-17","structured_output":true,"temperature":false,"tool_call":true},"gpt-5.5":{"attachment":true,"cost":{"cache_read":0.5,"context_over_200k":{"cache_read":1,"input":10,"output":45},"input":5,"output":30,"tiers":[{"cache_read":1,"input":10,"output":45,"tier":{"size":272000,"type":"context"}}]},"family":"gpt","id":"gpt-5.5","knowledge":"2025-12-01","last_updated":"2026-04-23","limit":{"context":1050000,"input":922000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5.5","open_weights":false,"provider":{"npm":"@ai-sdk/openai-compatible"},"reasoning":true,"release_date":"2026-04-23","structured_output":true,"temperature":false,"tool_call":true}},"name":"Vivgrid","npm":"@ai-sdk/openai"},"vultr":{"api":"https://api.vultrinference.com/v1","doc":"https://api.vultrinference.com/","env":["VULTR_API_KEY"],"id":"vultr","models":{"MiniMaxAI/MiniMax-M2.7":{"attachment":false,"cost":{"input":0.3,"output":1.2},"family":"minimax","id":"MiniMaxAI/MiniMax-M2.7","last_updated":"2026-03-18","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax-M2.7","open_weights":true,"reasoning":true,"release_date":"2026-03-18","temperature":true,"tool_call":true},"moonshotai/Kimi-K2.6":{"attachment":true,"cost":{"input":0.15,"output":0.6},"family":"kimi-k2.6","id":"moonshotai/Kimi-K2.6","interleaved":{"field":"reasoning_content"},"knowledge":"2025-01","last_updated":"2026-04-21","limit":{"context":262144,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"Kimi K2.6","open_weights":true,"reasoning":true,"release_date":"2026-04-21","structured_output":true,"temperature":true,"tool_call":true},"nvidia/DeepSeek-V3.2-NVFP4":{"attachment":false,"cost":{"input":0.55,"output":1.65},"family":"deepseek","id":"nvidia/DeepSeek-V3.2-NVFP4","knowledge":"2024-07","last_updated":"2025-12-01","limit":{"context":131072,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V3.2","open_weights":true,"reasoning":true,"release_date":"2025-12-01","temperature":true,"tool_call":true},"nvidia/Llama-3.1-Nemotron-Safety-Guard-8B-v3":{"attachment":false,"cost":{"input":0.01,"output":0.01},"family":"llama","id":"nvidia/Llama-3.1-Nemotron-Safety-Guard-8B-v3","knowledge":"2023-12","last_updated":"2025-10-28","limit":{"context":8192,"output":4096},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.1 Nemotron Safety Guard","open_weights":true,"reasoning":false,"release_date":"2025-10-28","temperature":true,"tool_call":false},"nvidia/Nemotron-3-Nano-Omni-30B-A3B-Reasoning-BF16":{"attachment":false,"cost":{"input":0.13,"output":0.38},"family":"nemotron","id":"nvidia/Nemotron-3-Nano-Omni-30B-A3B-Reasoning-BF16","knowledge":"2025-05","last_updated":"2026-04-28","limit":{"context":262144,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"NVIDIA Nemotron 3 Nano Omni","open_weights":true,"reasoning":true,"release_date":"2026-04-28","temperature":true,"tool_call":true},"nvidia/Nemotron-Cascade-2-30B-A3B":{"attachment":false,"cost":{"input":0.15,"output":0.6},"family":"nemotron","id":"nvidia/Nemotron-Cascade-2-30B-A3B","knowledge":"2024-07","last_updated":"2025-12-01","limit":{"context":262144,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"NVIDIA Nemotron Cascade 2","open_weights":true,"reasoning":true,"release_date":"2025-12-01","temperature":true,"tool_call":true},"zai-org/GLM-5.1-FP8":{"attachment":false,"cost":{"input":0.85,"output":3.1},"family":"glm","id":"zai-org/GLM-5.1-FP8","interleaved":{"field":"reasoning_content"},"last_updated":"2026-03-27","limit":{"context":200000,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-5.1","open_weights":false,"reasoning":true,"release_date":"2026-03-27","structured_output":true,"temperature":true,"tool_call":true}},"name":"Vultr","npm":"@ai-sdk/openai-compatible"},"wafer.ai":{"api":"https://pass.wafer.ai/v1","doc":"https://docs.wafer.ai/wafer-pass","env":["WAFER_API_KEY"],"id":"wafer.ai","models":{"GLM-5.1":{"attachment":false,"cost":{"cache_read":0.1,"cache_write":0,"input":1,"output":3.2},"family":"glm","id":"GLM-5.1","knowledge":"2025-04","last_updated":"2026-06-01","limit":{"context":202752,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-5.1","open_weights":true,"reasoning":true,"release_date":"2026-04-07","structured_output":true,"temperature":true,"tool_call":true},"Kimi-K2.6":{"attachment":true,"cost":{"cache_read":0.07,"cache_write":0,"input":0.68,"output":3.15},"family":"kimi","id":"Kimi-K2.6","knowledge":"2025-01","last_updated":"2026-06-01","limit":{"context":262144,"output":65536},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Kimi-K2.6","open_weights":true,"reasoning":true,"release_date":"2026-05-13","structured_output":true,"temperature":true,"tool_call":true},"Qwen3.5-397B-A17B":{"attachment":true,"cost":{"cache_read":0.04,"cache_write":0,"input":0.43,"output":2.6},"family":"qwen","id":"Qwen3.5-397B-A17B","knowledge":"2025-04","last_updated":"2026-06-01","limit":{"context":262144,"output":65536},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.5-397B-A17B","open_weights":true,"reasoning":true,"release_date":"2026-02-16","structured_output":true,"temperature":true,"tool_call":true},"Qwen3.6-35B-A3B":{"attachment":true,"cost":{"cache_read":0.02,"cache_write":0,"input":0.15,"output":1},"family":"qwen","id":"Qwen3.6-35B-A3B","knowledge":"2025-04","last_updated":"2026-05-30","limit":{"context":256000,"input":229376,"output":65536},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Qwen3.6-35B-A3B","open_weights":true,"reasoning":true,"release_date":"2026-05-11","structured_output":true,"temperature":true,"tool_call":true},"deepseek-v4-flash":{"attachment":false,"cost":{"cache_read":0.01,"cache_write":0,"input":0.14,"output":0.28},"family":"deepseek-flash","id":"deepseek-v4-flash","interleaved":{"field":"reasoning_content"},"knowledge":"2025-05","last_updated":"2026-05-30","limit":{"context":1000000,"output":384000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V4 Flash","open_weights":true,"reasoning":true,"release_date":"2026-04-24","structured_output":true,"temperature":true,"tool_call":true},"deepseek-v4-pro":{"attachment":false,"cost":{"cache_read":0.02,"cache_write":0,"input":1.74,"output":3.48},"family":"deepseek-thinking","id":"deepseek-v4-pro","interleaved":{"field":"reasoning_content"},"knowledge":"2025-05","last_updated":"2026-05-30","limit":{"context":1000000,"output":384000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V4 Pro","open_weights":true,"reasoning":true,"release_date":"2026-04-24","structured_output":true,"temperature":true,"tool_call":true},"qwen3.7-max":{"attachment":false,"cost":{"cache_read":0.5,"cache_write":0,"input":5,"output":15},"family":"qwen3.7-max","id":"qwen3.7-max","last_updated":"2026-05-30","limit":{"context":256000,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3.7-Max","open_weights":false,"reasoning":true,"release_date":"2026-05-21","structured_output":true,"temperature":true,"tool_call":true}},"name":"Wafer","npm":"@ai-sdk/openai-compatible"},"wandb":{"api":"https://api.inference.wandb.ai/v1","doc":"https://docs.wandb.ai/guides/integrations/inference/","env":["WANDB_API_KEY"],"id":"wandb","models":{"MiniMaxAI/MiniMax-M2.5":{"attachment":false,"cost":{"input":0.3,"output":1.2},"family":"minimax","id":"MiniMaxAI/MiniMax-M2.5","last_updated":"2026-03-12","limit":{"context":196608,"output":196608},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax M2.5","open_weights":true,"reasoning":false,"release_date":"2026-02-12","structured_output":true,"temperature":true,"tool_call":true},"OpenPipe/Qwen3-14B-Instruct":{"attachment":false,"cost":{"input":0.05,"output":0.22},"family":"qwen","id":"OpenPipe/Qwen3-14B-Instruct","last_updated":"2026-03-12","limit":{"context":32768,"output":32768},"modalities":{"input":["text"],"output":["text"]},"name":"OpenPipe Qwen3 14B Instruct","open_weights":true,"reasoning":false,"release_date":"2025-04-29","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen3-235B-A22B-Instruct-2507":{"attachment":false,"cost":{"input":0.1,"output":0.1},"family":"qwen","id":"Qwen/Qwen3-235B-A22B-Instruct-2507","knowledge":"2025-04","last_updated":"2026-03-12","limit":{"context":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 235B A22B Instruct 2507","open_weights":true,"reasoning":false,"release_date":"2025-04-28","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen3-235B-A22B-Thinking-2507":{"attachment":false,"cost":{"input":0.1,"output":0.1},"family":"qwen","id":"Qwen/Qwen3-235B-A22B-Thinking-2507","knowledge":"2025-04","last_updated":"2026-03-12","limit":{"context":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3-235B-A22B-Thinking-2507","open_weights":true,"reasoning":true,"release_date":"2025-07-25","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen3-30B-A3B-Instruct-2507":{"attachment":false,"cost":{"input":0.1,"output":0.3},"family":"qwen","id":"Qwen/Qwen3-30B-A3B-Instruct-2507","last_updated":"2026-03-12","limit":{"context":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3 30B A3B Instruct 2507","open_weights":true,"reasoning":false,"release_date":"2025-07-29","structured_output":true,"temperature":true,"tool_call":true},"Qwen/Qwen3-Coder-480B-A35B-Instruct":{"attachment":false,"cost":{"input":1,"output":1.5},"family":"qwen","id":"Qwen/Qwen3-Coder-480B-A35B-Instruct","knowledge":"2025-04","last_updated":"2026-03-12","limit":{"context":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3-Coder-480B-A35B-Instruct","open_weights":true,"reasoning":false,"release_date":"2025-07-23","structured_output":true,"temperature":true,"tool_call":true},"deepseek-ai/DeepSeek-V3.1":{"attachment":false,"cost":{"input":0.55,"output":1.65},"family":"deepseek","id":"deepseek-ai/DeepSeek-V3.1","last_updated":"2026-03-12","limit":{"context":161000,"output":161000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V3.1","open_weights":true,"reasoning":false,"release_date":"2025-08-21","structured_output":true,"temperature":true,"tool_call":true},"meta-llama/Llama-3.1-70B-Instruct":{"attachment":false,"cost":{"input":0.8,"output":0.8},"family":"llama","id":"meta-llama/Llama-3.1-70B-Instruct","last_updated":"2026-03-12","limit":{"context":128000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"Llama 3.1 70B","open_weights":true,"reasoning":false,"release_date":"2024-07-23","structured_output":true,"temperature":true,"tool_call":true},"meta-llama/Llama-3.1-8B-Instruct":{"attachment":false,"cost":{"input":0.22,"output":0.22},"family":"llama","id":"meta-llama/Llama-3.1-8B-Instruct","knowledge":"2023-12","last_updated":"2026-03-12","limit":{"context":128000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"Meta-Llama-3.1-8B-Instruct","open_weights":true,"reasoning":true,"release_date":"2024-07-23","structured_output":true,"temperature":true,"tool_call":true},"meta-llama/Llama-3.3-70B-Instruct":{"attachment":false,"cost":{"input":0.71,"output":0.71},"family":"llama","id":"meta-llama/Llama-3.3-70B-Instruct","knowledge":"2023-12","last_updated":"2026-03-12","limit":{"context":128000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"Llama-3.3-70B-Instruct","open_weights":true,"reasoning":true,"release_date":"2024-12-06","structured_output":true,"temperature":true,"tool_call":true},"meta-llama/Llama-4-Scout-17B-16E-Instruct":{"attachment":false,"cost":{"input":0.17,"output":0.66},"family":"llama","id":"meta-llama/Llama-4-Scout-17B-16E-Instruct","knowledge":"2024-12","last_updated":"2026-03-12","limit":{"context":64000,"output":64000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Llama 4 Scout 17B 16E Instruct","open_weights":true,"reasoning":true,"release_date":"2025-01-31","structured_output":true,"temperature":true,"tool_call":true},"microsoft/Phi-4-mini-instruct":{"attachment":false,"cost":{"input":0.08,"output":0.35},"family":"phi","id":"microsoft/Phi-4-mini-instruct","knowledge":"2023-10","last_updated":"2026-03-12","limit":{"context":128000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"Phi-4-mini-instruct","open_weights":true,"reasoning":true,"release_date":"2024-12-11","structured_output":true,"temperature":true,"tool_call":true},"moonshotai/Kimi-K2.5":{"attachment":true,"cost":{"input":0.5,"output":2.85},"family":"kimi","id":"moonshotai/Kimi-K2.5","interleaved":{"field":"reasoning_content"},"last_updated":"2026-03-12","limit":{"context":262144,"output":262144},"modalities":{"input":["text","image"],"output":["text"]},"name":"Kimi K2.5","open_weights":true,"reasoning":true,"release_date":"2026-01-27","structured_output":true,"temperature":true,"tool_call":true},"nvidia/NVIDIA-Nemotron-3-Super-120B-A12B-FP8":{"attachment":false,"cost":{"input":0.2,"output":0.8},"family":"nemotron","id":"nvidia/NVIDIA-Nemotron-3-Super-120B-A12B-FP8","last_updated":"2026-03-12","limit":{"context":262144,"output":262144},"modalities":{"input":["text"],"output":["text"]},"name":"NVIDIA Nemotron 3 Super 120B","open_weights":true,"reasoning":false,"release_date":"2026-03-11","structured_output":true,"temperature":true,"tool_call":true},"openai/gpt-oss-120b":{"attachment":false,"cost":{"input":0.15,"output":0.6},"family":"gpt-oss","id":"openai/gpt-oss-120b","last_updated":"2026-03-12","limit":{"context":131072,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"gpt-oss-120b","open_weights":false,"reasoning":false,"release_date":"2025-08-05","structured_output":true,"temperature":true,"tool_call":true},"openai/gpt-oss-20b":{"attachment":false,"cost":{"input":0.05,"output":0.2},"family":"gpt-oss","id":"openai/gpt-oss-20b","last_updated":"2026-03-12","limit":{"context":131072,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"gpt-oss-20b","open_weights":false,"reasoning":false,"release_date":"2025-08-05","structured_output":true,"temperature":true,"tool_call":true},"zai-org/GLM-5-FP8":{"attachment":false,"cost":{"input":1,"output":3.2},"family":"glm","id":"zai-org/GLM-5-FP8","last_updated":"2026-03-12","limit":{"context":200000,"output":200000},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 5","open_weights":true,"reasoning":false,"release_date":"2026-02-11","structured_output":true,"temperature":true,"tool_call":true},"zai-org/GLM-5.1":{"attachment":false,"cost":{"cache_read":0.26,"cache_write":0,"input":1.4,"output":4.4},"family":"glm","id":"zai-org/GLM-5.1","interleaved":{"field":"reasoning_content"},"last_updated":"2026-03-27","limit":{"context":200000,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-5.1","open_weights":false,"reasoning":true,"release_date":"2026-03-27","structured_output":true,"temperature":true,"tool_call":true}},"name":"Weights & Biases","npm":"@ai-sdk/openai-compatible"},"xai":{"doc":"https://docs.x.ai/docs/models","env":["XAI_API_KEY"],"id":"xai","models":{"grok-4.20-0309-non-reasoning":{"attachment":true,"cost":{"cache_read":0.2,"context_over_200k":{"cache_read":0.4,"input":2.5,"output":5},"input":1.25,"output":2.5,"tiers":[{"cache_read":0.4,"input":2.5,"output":5,"tier":{"size":200000,"type":"context"}}]},"family":"grok","id":"grok-4.20-0309-non-reasoning","last_updated":"2026-03-09","limit":{"context":2000000,"output":30000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Grok 4.20 (Non-Reasoning)","open_weights":false,"reasoning":false,"release_date":"2026-03-09","temperature":true,"tool_call":true},"grok-4.20-0309-reasoning":{"attachment":true,"cost":{"cache_read":0.2,"context_over_200k":{"cache_read":0.4,"input":2.5,"output":5},"input":1.25,"output":2.5,"tiers":[{"cache_read":0.4,"input":2.5,"output":5,"tier":{"size":200000,"type":"context"}}]},"family":"grok","id":"grok-4.20-0309-reasoning","last_updated":"2026-03-09","limit":{"context":2000000,"output":30000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Grok 4.20 (Reasoning)","open_weights":false,"reasoning":true,"release_date":"2026-03-09","temperature":true,"tool_call":true},"grok-4.20-multi-agent-0309":{"attachment":true,"cost":{"cache_read":0.2,"context_over_200k":{"cache_read":0.4,"input":2.5,"output":5},"input":1.25,"output":2.5,"tiers":[{"cache_read":0.4,"input":2.5,"output":5,"tier":{"size":200000,"type":"context"}}]},"family":"grok","id":"grok-4.20-multi-agent-0309","last_updated":"2026-03-09","limit":{"context":2000000,"output":30000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Grok 4.20 Multi-Agent","open_weights":false,"reasoning":true,"release_date":"2026-03-09","temperature":true,"tool_call":false},"grok-4.3":{"attachment":true,"cost":{"cache_read":0.2,"context_over_200k":{"cache_read":0.4,"input":2.5,"output":5},"input":1.25,"output":2.5,"tiers":[{"cache_read":0.4,"input":2.5,"output":5,"tier":{"size":200000,"type":"context"}}]},"family":"grok","id":"grok-4.3","last_updated":"2026-04-17","limit":{"context":1000000,"output":30000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Grok 4.3","open_weights":false,"reasoning":true,"release_date":"2026-04-17","temperature":true,"tool_call":true},"grok-build-0.1":{"attachment":true,"cost":{"cache_read":0.2,"context_over_200k":{"cache_read":0.4,"input":2,"output":4},"input":1,"output":2,"tiers":[{"cache_read":0.4,"input":2,"output":4,"tier":{"size":200000,"type":"context"}}]},"family":"grok-build","id":"grok-build-0.1","last_updated":"2026-04-16","limit":{"context":256000,"output":256000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Grok Build 0.1","open_weights":false,"reasoning":true,"release_date":"2026-04-16","structured_output":true,"temperature":true,"tool_call":true},"grok-imagine-image":{"attachment":true,"family":"grok","id":"grok-imagine-image","last_updated":"2026-01-28","limit":{"context":8000,"output":0},"modalities":{"input":["text","image","pdf"],"output":["image","pdf"]},"name":"Grok Imagine Image","open_weights":false,"reasoning":false,"release_date":"2026-01-28","temperature":false,"tool_call":false},"grok-imagine-image-quality":{"attachment":true,"family":"grok","id":"grok-imagine-image-quality","last_updated":"2026-04-03","limit":{"context":8000,"output":0},"modalities":{"input":["text","image","pdf"],"output":["image","pdf"]},"name":"Grok Imagine Image Quality","open_weights":false,"reasoning":false,"release_date":"2026-04-03","temperature":false,"tool_call":false},"grok-imagine-video":{"attachment":true,"family":"grok","id":"grok-imagine-video","last_updated":"2026-01-28","limit":{"context":1024,"output":0},"modalities":{"input":["text","image","video","pdf"],"output":["video"]},"name":"Grok Imagine Video","open_weights":false,"reasoning":false,"release_date":"2026-01-28","temperature":false,"tool_call":false}},"name":"xAI","npm":"@ai-sdk/xai"},"xiaomi":{"api":"https://api.xiaomimimo.com/v1","doc":"https://platform.xiaomimimo.com/#/docs","env":["XIAOMI_API_KEY"],"id":"xiaomi","models":{"mimo-v2-flash":{"attachment":false,"cost":{"cache_read":0.01,"input":0.1,"output":0.3},"family":"mimo","id":"mimo-v2-flash","interleaved":{"field":"reasoning_content"},"knowledge":"2024-12-01","last_updated":"2026-02-04","limit":{"context":262144,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"MiMo-V2-Flash","open_weights":true,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"release_date":"2025-12-16","temperature":true,"tool_call":true},"mimo-v2-omni":{"attachment":true,"cost":{"cache_read":0.08,"input":0.4,"output":2},"family":"mimo","id":"mimo-v2-omni","interleaved":{"field":"reasoning_content"},"knowledge":"2024-12","last_updated":"2026-03-18","limit":{"context":262144,"output":131072},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"MiMo-V2-Omni","open_weights":false,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"release_date":"2026-03-18","temperature":true,"tool_call":true},"mimo-v2-pro":{"attachment":false,"cost":{"cache_read":0.2,"context_over_200k":{"cache_read":0.4,"input":2,"output":6},"input":1,"output":3,"tiers":[{"cache_read":0.4,"input":2,"output":6,"tier":{"size":256000,"type":"context"}}]},"family":"mimo","id":"mimo-v2-pro","interleaved":{"field":"reasoning_content"},"knowledge":"2024-12","last_updated":"2026-03-18","limit":{"context":1048576,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiMo-V2-Pro","open_weights":false,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"release_date":"2026-03-18","temperature":true,"tool_call":true},"mimo-v2.5":{"attachment":true,"cost":{"cache_read":0.08,"context_over_200k":{"cache_read":0.16,"input":0.8,"output":4},"input":0.4,"output":2,"tiers":[{"cache_read":0.16,"input":0.8,"output":4,"tier":{"size":256000,"type":"context"}}]},"family":"mimo","id":"mimo-v2.5","interleaved":{"field":"reasoning_content"},"knowledge":"2024-12","last_updated":"2026-04-22","limit":{"context":1048576,"output":131072},"modalities":{"input":["text","image","audio","video"],"output":["text"]},"name":"MiMo-V2.5","open_weights":true,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"release_date":"2026-04-22","temperature":true,"tool_call":true},"mimo-v2.5-pro":{"attachment":false,"cost":{"cache_read":0.2,"context_over_200k":{"cache_read":0.4,"input":2,"output":6},"input":1,"output":3,"tiers":[{"cache_read":0.4,"input":2,"output":6,"tier":{"size":256000,"type":"context"}}]},"family":"mimo","id":"mimo-v2.5-pro","interleaved":{"field":"reasoning_content"},"knowledge":"2024-12","last_updated":"2026-04-22","limit":{"context":1048576,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiMo-V2.5-Pro","open_weights":true,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"release_date":"2026-04-22","temperature":true,"tool_call":true}},"name":"Xiaomi","npm":"@ai-sdk/openai-compatible"},"xiaomi-token-plan-ams":{"api":"https://token-plan-ams.xiaomimimo.com/v1","doc":"https://platform.xiaomimimo.com/#/docs","env":["XIAOMI_API_KEY"],"id":"xiaomi-token-plan-ams","models":{"mimo-v2-omni":{"attachment":true,"cost":{"cache_read":0,"input":0,"output":0},"family":"mimo","id":"mimo-v2-omni","interleaved":{"field":"reasoning_content"},"knowledge":"2024-12","last_updated":"2026-03-18","limit":{"context":262144,"output":131072},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"MiMo-V2-Omni","open_weights":false,"reasoning":true,"release_date":"2026-03-18","temperature":true,"tool_call":true},"mimo-v2-pro":{"attachment":false,"cost":{"cache_read":0,"input":0,"output":0},"family":"mimo","id":"mimo-v2-pro","interleaved":{"field":"reasoning_content"},"knowledge":"2024-12","last_updated":"2026-03-18","limit":{"context":1048576,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiMo-V2-Pro","open_weights":false,"reasoning":true,"release_date":"2026-03-18","temperature":true,"tool_call":true},"mimo-v2-tts":{"attachment":false,"cost":{"input":0,"output":0},"family":"mimo","id":"mimo-v2-tts","last_updated":"2026-03-18","limit":{"context":8192,"output":8192},"modalities":{"input":["text"],"output":["audio"]},"name":"MiMo-V2-TTS","open_weights":true,"reasoning":false,"release_date":"2026-03-18","tool_call":false},"mimo-v2.5":{"attachment":true,"cost":{"cache_read":0,"input":0,"output":0},"family":"mimo","id":"mimo-v2.5","interleaved":{"field":"reasoning_content"},"knowledge":"2024-12","last_updated":"2026-04-22","limit":{"context":1048576,"output":131072},"modalities":{"input":["text","image","audio","video"],"output":["text"]},"name":"MiMo-V2.5","open_weights":true,"reasoning":true,"release_date":"2026-04-22","temperature":true,"tool_call":true},"mimo-v2.5-pro":{"attachment":false,"cost":{"cache_read":0,"input":0,"output":0},"family":"mimo","id":"mimo-v2.5-pro","interleaved":{"field":"reasoning_content"},"knowledge":"2024-12","last_updated":"2026-04-22","limit":{"context":1048576,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiMo-V2.5-Pro","open_weights":true,"reasoning":true,"release_date":"2026-04-22","temperature":true,"tool_call":true},"mimo-v2.5-tts":{"attachment":false,"cost":{"input":0,"output":0},"family":"mimo","id":"mimo-v2.5-tts","last_updated":"2026-04-22","limit":{"context":8192,"output":8192},"modalities":{"input":["text"],"output":["audio"]},"name":"MiMo-V2.5-TTS","open_weights":true,"reasoning":false,"release_date":"2026-04-22","tool_call":false},"mimo-v2.5-tts-voiceclone":{"attachment":false,"cost":{"input":0,"output":0},"family":"mimo","id":"mimo-v2.5-tts-voiceclone","last_updated":"2026-04-22","limit":{"context":8192,"output":8192},"modalities":{"input":["text"],"output":["audio"]},"name":"MiMo-V2.5-TTS-VoiceClone","open_weights":true,"reasoning":false,"release_date":"2026-04-22","tool_call":false},"mimo-v2.5-tts-voicedesign":{"attachment":false,"cost":{"input":0,"output":0},"family":"mimo","id":"mimo-v2.5-tts-voicedesign","last_updated":"2026-04-22","limit":{"context":8192,"output":8192},"modalities":{"input":["text"],"output":["audio"]},"name":"MiMo-V2.5-TTS-VoiceDesign","open_weights":true,"reasoning":false,"release_date":"2026-04-22","tool_call":false}},"name":"Xiaomi Token Plan (Europe)","npm":"@ai-sdk/openai-compatible"},"xiaomi-token-plan-cn":{"api":"https://token-plan-cn.xiaomimimo.com/v1","doc":"https://platform.xiaomimimo.com/#/docs","env":["XIAOMI_API_KEY"],"id":"xiaomi-token-plan-cn","models":{"mimo-v2-omni":{"attachment":true,"cost":{"cache_read":0,"input":0,"output":0},"family":"mimo","id":"mimo-v2-omni","interleaved":{"field":"reasoning_content"},"knowledge":"2024-12","last_updated":"2026-03-18","limit":{"context":262144,"output":131072},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"MiMo-V2-Omni","open_weights":false,"reasoning":true,"release_date":"2026-03-18","temperature":true,"tool_call":true},"mimo-v2-pro":{"attachment":false,"cost":{"cache_read":0,"input":0,"output":0},"family":"mimo","id":"mimo-v2-pro","interleaved":{"field":"reasoning_content"},"knowledge":"2024-12","last_updated":"2026-03-18","limit":{"context":1048576,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiMo-V2-Pro","open_weights":false,"reasoning":true,"release_date":"2026-03-18","temperature":true,"tool_call":true},"mimo-v2-tts":{"attachment":false,"cost":{"input":0,"output":0},"family":"mimo","id":"mimo-v2-tts","last_updated":"2026-03-18","limit":{"context":8192,"output":8192},"modalities":{"input":["text"],"output":["audio"]},"name":"MiMo-V2-TTS","open_weights":true,"reasoning":false,"release_date":"2026-03-18","tool_call":false},"mimo-v2.5":{"attachment":true,"cost":{"cache_read":0,"input":0,"output":0},"family":"mimo","id":"mimo-v2.5","interleaved":{"field":"reasoning_content"},"knowledge":"2024-12","last_updated":"2026-04-22","limit":{"context":1048576,"output":131072},"modalities":{"input":["text","image","audio","video"],"output":["text"]},"name":"MiMo-V2.5","open_weights":true,"reasoning":true,"release_date":"2026-04-22","temperature":true,"tool_call":true},"mimo-v2.5-pro":{"attachment":false,"cost":{"cache_read":0,"input":0,"output":0},"family":"mimo","id":"mimo-v2.5-pro","interleaved":{"field":"reasoning_content"},"knowledge":"2024-12","last_updated":"2026-04-22","limit":{"context":1048576,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiMo-V2.5-Pro","open_weights":true,"reasoning":true,"release_date":"2026-04-22","temperature":true,"tool_call":true},"mimo-v2.5-tts":{"attachment":false,"cost":{"input":0,"output":0},"family":"mimo","id":"mimo-v2.5-tts","last_updated":"2026-04-22","limit":{"context":8192,"output":8192},"modalities":{"input":["text"],"output":["audio"]},"name":"MiMo-V2.5-TTS","open_weights":true,"reasoning":false,"release_date":"2026-04-22","tool_call":false},"mimo-v2.5-tts-voiceclone":{"attachment":false,"cost":{"input":0,"output":0},"family":"mimo","id":"mimo-v2.5-tts-voiceclone","last_updated":"2026-04-22","limit":{"context":8192,"output":8192},"modalities":{"input":["text"],"output":["audio"]},"name":"MiMo-V2.5-TTS-VoiceClone","open_weights":true,"reasoning":false,"release_date":"2026-04-22","tool_call":false},"mimo-v2.5-tts-voicedesign":{"attachment":false,"cost":{"input":0,"output":0},"family":"mimo","id":"mimo-v2.5-tts-voicedesign","last_updated":"2026-04-22","limit":{"context":8192,"output":8192},"modalities":{"input":["text"],"output":["audio"]},"name":"MiMo-V2.5-TTS-VoiceDesign","open_weights":true,"reasoning":false,"release_date":"2026-04-22","tool_call":false}},"name":"Xiaomi Token Plan (China)","npm":"@ai-sdk/openai-compatible"},"xiaomi-token-plan-sgp":{"api":"https://token-plan-sgp.xiaomimimo.com/v1","doc":"https://platform.xiaomimimo.com/#/docs","env":["XIAOMI_API_KEY"],"id":"xiaomi-token-plan-sgp","models":{"mimo-v2-omni":{"attachment":true,"cost":{"cache_read":0,"input":0,"output":0},"family":"mimo","id":"mimo-v2-omni","interleaved":{"field":"reasoning_content"},"knowledge":"2024-12","last_updated":"2026-03-18","limit":{"context":262144,"output":131072},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"MiMo-V2-Omni","open_weights":false,"reasoning":true,"release_date":"2026-03-18","temperature":true,"tool_call":true},"mimo-v2-pro":{"attachment":false,"cost":{"cache_read":0,"input":0,"output":0},"family":"mimo","id":"mimo-v2-pro","interleaved":{"field":"reasoning_content"},"knowledge":"2024-12","last_updated":"2026-03-18","limit":{"context":1048576,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiMo-V2-Pro","open_weights":false,"reasoning":true,"release_date":"2026-03-18","temperature":true,"tool_call":true},"mimo-v2-tts":{"attachment":false,"cost":{"input":0,"output":0},"family":"mimo","id":"mimo-v2-tts","last_updated":"2026-03-18","limit":{"context":8192,"output":8192},"modalities":{"input":["text"],"output":["audio"]},"name":"MiMo-V2-TTS","open_weights":true,"reasoning":false,"release_date":"2026-03-18","tool_call":false},"mimo-v2.5":{"attachment":true,"cost":{"cache_read":0,"input":0,"output":0},"family":"mimo","id":"mimo-v2.5","interleaved":{"field":"reasoning_content"},"knowledge":"2024-12","last_updated":"2026-04-22","limit":{"context":1048576,"output":131072},"modalities":{"input":["text","image","audio","video"],"output":["text"]},"name":"MiMo-V2.5","open_weights":true,"reasoning":true,"release_date":"2026-04-22","temperature":true,"tool_call":true},"mimo-v2.5-pro":{"attachment":false,"cost":{"cache_read":0,"input":0,"output":0},"family":"mimo","id":"mimo-v2.5-pro","interleaved":{"field":"reasoning_content"},"knowledge":"2024-12","last_updated":"2026-04-22","limit":{"context":1048576,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiMo-V2.5-Pro","open_weights":true,"reasoning":true,"release_date":"2026-04-22","temperature":true,"tool_call":true},"mimo-v2.5-tts":{"attachment":false,"cost":{"input":0,"output":0},"family":"mimo","id":"mimo-v2.5-tts","last_updated":"2026-04-22","limit":{"context":8192,"output":8192},"modalities":{"input":["text"],"output":["audio"]},"name":"MiMo-V2.5-TTS","open_weights":true,"reasoning":false,"release_date":"2026-04-22","tool_call":false},"mimo-v2.5-tts-voiceclone":{"attachment":false,"cost":{"input":0,"output":0},"family":"mimo","id":"mimo-v2.5-tts-voiceclone","last_updated":"2026-04-22","limit":{"context":8192,"output":8192},"modalities":{"input":["text"],"output":["audio"]},"name":"MiMo-V2.5-TTS-VoiceClone","open_weights":true,"reasoning":false,"release_date":"2026-04-22","tool_call":false},"mimo-v2.5-tts-voicedesign":{"attachment":false,"cost":{"input":0,"output":0},"family":"mimo","id":"mimo-v2.5-tts-voicedesign","last_updated":"2026-04-22","limit":{"context":8192,"output":8192},"modalities":{"input":["text"],"output":["audio"]},"name":"MiMo-V2.5-TTS-VoiceDesign","open_weights":true,"reasoning":false,"release_date":"2026-04-22","tool_call":false}},"name":"Xiaomi Token Plan (Singapore)","npm":"@ai-sdk/openai-compatible"},"xpersona":{"api":"https://www.xpersona.co/v1","doc":"https://www.xpersona.co/docs","env":["XPERSONA_API_KEY"],"id":"xpersona","models":{"xpersona-frieren-coder":{"attachment":false,"cost":{"cache_read":0.15,"input":1.5,"output":6,"reasoning":6},"id":"xpersona-frieren-coder","knowledge":"2025-12-30","last_updated":"2026-05-25","limit":{"context":1000000,"output":384000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Xpersona Frieren 1","open_weights":false,"reasoning":true,"release_date":"2026-05-01","structured_output":true,"temperature":false,"tool_call":true}},"name":"Xpersona","npm":"@ai-sdk/openai-compatible"},"zai":{"api":"https://api.z.ai/api/paas/v4","doc":"https://docs.z.ai/guides/overview/pricing","env":["ZHIPU_API_KEY"],"id":"zai","models":{"glm-4.5":{"attachment":false,"cost":{"cache_read":0.11,"cache_write":0,"input":0.6,"output":2.2},"family":"glm","id":"glm-4.5","knowledge":"2025-04","last_updated":"2025-07-28","limit":{"context":131072,"output":98304},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4.5","open_weights":true,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"release_date":"2025-07-28","temperature":true,"tool_call":true},"glm-4.5-air":{"attachment":false,"cost":{"cache_read":0.03,"cache_write":0,"input":0.2,"output":1.1},"family":"glm-air","id":"glm-4.5-air","knowledge":"2025-04","last_updated":"2025-07-28","limit":{"context":131072,"output":98304},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4.5-Air","open_weights":true,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"release_date":"2025-07-28","temperature":true,"tool_call":true},"glm-4.5-flash":{"attachment":false,"cost":{"cache_read":0,"cache_write":0,"input":0,"output":0},"family":"glm-flash","id":"glm-4.5-flash","knowledge":"2025-04","last_updated":"2025-07-28","limit":{"context":131072,"output":98304},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4.5-Flash","open_weights":true,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"release_date":"2025-07-28","temperature":true,"tool_call":true},"glm-4.5v":{"attachment":true,"cost":{"input":0.6,"output":1.8},"family":"glm","id":"glm-4.5v","knowledge":"2025-04","last_updated":"2025-08-11","limit":{"context":64000,"output":16384},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"GLM-4.5V","open_weights":true,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"release_date":"2025-08-11","temperature":true,"tool_call":true},"glm-4.6":{"attachment":false,"cost":{"cache_read":0.11,"cache_write":0,"input":0.6,"output":2.2},"family":"glm","id":"glm-4.6","knowledge":"2025-04","last_updated":"2025-09-30","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4.6","open_weights":true,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"release_date":"2025-09-30","temperature":true,"tool_call":true},"glm-4.6v":{"attachment":true,"cost":{"input":0.3,"output":0.9},"family":"glm","id":"glm-4.6v","knowledge":"2025-04","last_updated":"2025-12-08","limit":{"context":128000,"output":32768},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"GLM-4.6V","open_weights":true,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"release_date":"2025-12-08","temperature":true,"tool_call":true},"glm-4.7":{"attachment":false,"cost":{"cache_read":0.11,"cache_write":0,"input":0.6,"output":2.2},"family":"glm","id":"glm-4.7","interleaved":{"field":"reasoning_content"},"knowledge":"2025-04","last_updated":"2025-12-22","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4.7","open_weights":true,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"release_date":"2025-12-22","temperature":true,"tool_call":true},"glm-4.7-flash":{"attachment":false,"cost":{"cache_read":0,"cache_write":0,"input":0,"output":0},"family":"glm-flash","id":"glm-4.7-flash","knowledge":"2025-04","last_updated":"2026-01-19","limit":{"context":200000,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4.7-Flash","open_weights":true,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"release_date":"2026-01-19","temperature":true,"tool_call":true},"glm-4.7-flashx":{"attachment":false,"cost":{"cache_read":0.01,"cache_write":0,"input":0.07,"output":0.4},"family":"glm-flash","id":"glm-4.7-flashx","knowledge":"2025-04","last_updated":"2026-01-19","limit":{"context":200000,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4.7-FlashX","open_weights":true,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"release_date":"2026-01-19","temperature":true,"tool_call":true},"glm-5":{"attachment":false,"cost":{"cache_read":0.2,"cache_write":0,"input":1,"output":3.2},"family":"glm","id":"glm-5","interleaved":{"field":"reasoning_content"},"last_updated":"2026-02-11","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-5","open_weights":true,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"release_date":"2026-02-11","temperature":true,"tool_call":true},"glm-5-turbo":{"attachment":false,"cost":{"cache_read":0.24,"cache_write":0,"input":1.2,"output":4},"family":"glm","id":"glm-5-turbo","interleaved":{"field":"reasoning_content"},"last_updated":"2026-03-16","limit":{"context":200000,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-5-Turbo","open_weights":false,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"release_date":"2026-03-16","structured_output":true,"temperature":true,"tool_call":true},"glm-5.1":{"attachment":false,"cost":{"cache_read":0.26,"cache_write":0,"input":1.4,"output":4.4},"family":"glm","id":"glm-5.1","interleaved":{"field":"reasoning_content"},"last_updated":"2026-03-27","limit":{"context":200000,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-5.1","open_weights":false,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"release_date":"2026-03-27","structured_output":true,"temperature":true,"tool_call":true},"glm-5v-turbo":{"attachment":true,"cost":{"cache_read":0.24,"cache_write":0,"input":1.2,"output":4},"family":"glm","id":"glm-5v-turbo","interleaved":{"field":"reasoning_content"},"last_updated":"2026-04-01","limit":{"context":200000,"output":131072},"modalities":{"input":["text","image","video","pdf"],"output":["text"]},"name":"GLM-5V-Turbo","open_weights":false,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"release_date":"2026-04-01","temperature":true,"tool_call":true}},"name":"Z.AI","npm":"@ai-sdk/openai-compatible"},"zai-coding-plan":{"api":"https://api.z.ai/api/coding/paas/v4","doc":"https://docs.z.ai/devpack/overview","env":["ZHIPU_API_KEY"],"id":"zai-coding-plan","models":{"glm-4.5-air":{"attachment":false,"cost":{"cache_read":0,"cache_write":0,"input":0,"output":0},"family":"glm-air","id":"glm-4.5-air","knowledge":"2025-04","last_updated":"2025-07-28","limit":{"context":131072,"output":98304},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4.5-Air","open_weights":true,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"release_date":"2025-07-28","temperature":true,"tool_call":true},"glm-4.7":{"attachment":false,"cost":{"cache_read":0,"cache_write":0,"input":0,"output":0},"family":"glm","id":"glm-4.7","interleaved":{"field":"reasoning_content"},"knowledge":"2025-04","last_updated":"2025-12-22","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4.7","open_weights":true,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"release_date":"2025-12-22","temperature":true,"tool_call":true},"glm-5-turbo":{"attachment":false,"cost":{"cache_read":0,"cache_write":0,"input":0,"output":0},"family":"glm","id":"glm-5-turbo","interleaved":{"field":"reasoning_content"},"last_updated":"2026-03-16","limit":{"context":200000,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-5-Turbo","open_weights":false,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"release_date":"2026-03-16","structured_output":true,"temperature":true,"tool_call":true},"glm-5.1":{"attachment":false,"cost":{"cache_read":0,"cache_write":0,"input":0,"output":0},"family":"glm","id":"glm-5.1","interleaved":{"field":"reasoning_content"},"last_updated":"2026-03-27","limit":{"context":200000,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-5.1","open_weights":false,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"release_date":"2026-03-27","structured_output":true,"temperature":true,"tool_call":true},"glm-5v-turbo":{"attachment":true,"cost":{"cache_read":0,"cache_write":0,"input":0,"output":0},"family":"glm","id":"glm-5v-turbo","interleaved":{"field":"reasoning_content"},"last_updated":"2026-04-01","limit":{"context":200000,"output":131072},"modalities":{"input":["text","image","video","pdf"],"output":["text"]},"name":"GLM-5V-Turbo","open_weights":false,"reasoning":true,"release_date":"2026-04-01","temperature":true,"tool_call":true}},"name":"Z.AI Coding Plan","npm":"@ai-sdk/openai-compatible"},"zenmux":{"api":"https://zenmux.ai/api/v1","doc":"https://docs.zenmux.ai","env":["ZENMUX_API_KEY"],"id":"zenmux","models":{"anthropic/claude-3.5-haiku":{"attachment":true,"cost":{"cache_read":0.08,"cache_write":1,"input":0.8,"output":4},"id":"anthropic/claude-3.5-haiku","knowledge":"2025-01-01","last_updated":"2024-11-04","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Claude 3.5 Haiku","open_weights":false,"provider":{"api":"https://zenmux.ai/api/anthropic/v1","npm":"@ai-sdk/anthropic"},"reasoning":false,"release_date":"2024-11-04","temperature":true,"tool_call":true},"anthropic/claude-3.7-sonnet":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"input":3,"output":15},"id":"anthropic/claude-3.7-sonnet","knowledge":"2025-01-01","last_updated":"2025-02-24","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude 3.7 Sonnet","open_weights":false,"provider":{"api":"https://zenmux.ai/api/anthropic/v1","npm":"@ai-sdk/anthropic"},"reasoning":true,"release_date":"2025-02-24","temperature":true,"tool_call":true},"anthropic/claude-haiku-4.5":{"attachment":true,"cost":{"cache_read":0.1,"cache_write":1.25,"input":1,"output":5},"id":"anthropic/claude-haiku-4.5","knowledge":"2025-01-01","last_updated":"2025-10-15","limit":{"context":200000,"output":64000},"modalities":{"input":["image","text"],"output":["text"]},"name":"Claude Haiku 4.5","open_weights":false,"provider":{"api":"https://zenmux.ai/api/anthropic/v1","npm":"@ai-sdk/anthropic"},"reasoning":false,"release_date":"2025-10-15","temperature":true,"tool_call":true},"anthropic/claude-opus-4":{"attachment":true,"cost":{"cache_read":1.5,"cache_write":18.75,"input":15,"output":75},"id":"anthropic/claude-opus-4","knowledge":"2025-01-01","last_updated":"2025-05-22","limit":{"context":200000,"output":32000},"modalities":{"input":["image","text","pdf"],"output":["text"]},"name":"Claude Opus 4","open_weights":false,"provider":{"api":"https://zenmux.ai/api/anthropic/v1","npm":"@ai-sdk/anthropic"},"reasoning":true,"release_date":"2025-05-22","temperature":true,"tool_call":true},"anthropic/claude-opus-4.1":{"attachment":true,"cost":{"cache_read":1.5,"cache_write":18.75,"input":15,"output":75},"id":"anthropic/claude-opus-4.1","knowledge":"2025-01-01","last_updated":"2025-08-05","limit":{"context":200000,"output":64000},"modalities":{"input":["image","text","pdf"],"output":["text"]},"name":"Claude Opus 4.1","open_weights":false,"provider":{"api":"https://zenmux.ai/api/anthropic/v1","npm":"@ai-sdk/anthropic"},"reasoning":true,"release_date":"2025-08-05","temperature":true,"tool_call":true},"anthropic/claude-opus-4.5":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"input":5,"output":25},"id":"anthropic/claude-opus-4.5","knowledge":"2025-01-01","last_updated":"2025-11-24","limit":{"context":200000,"output":64000},"modalities":{"input":["pdf","image","text"],"output":["text"]},"name":"Claude Opus 4.5","open_weights":false,"provider":{"api":"https://zenmux.ai/api/anthropic/v1","npm":"@ai-sdk/anthropic"},"reasoning":true,"release_date":"2025-11-24","temperature":true,"tool_call":true},"anthropic/claude-opus-4.6":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"input":5,"output":25},"id":"anthropic/claude-opus-4.6","knowledge":"2025-05-31","last_updated":"2026-02-06","limit":{"context":1000000,"output":128000},"modalities":{"input":["image","text"],"output":["text"]},"name":"Claude Opus 4.6","open_weights":false,"provider":{"api":"https://zenmux.ai/api/anthropic/v1","npm":"@ai-sdk/anthropic"},"reasoning":true,"release_date":"2026-02-06","temperature":true,"tool_call":true},"anthropic/claude-opus-4.7":{"attachment":true,"cost":{"cache_read":0.5,"cache_write":6.25,"input":5,"output":25},"id":"anthropic/claude-opus-4.7","knowledge":"2026-01-31","last_updated":"2026-04-16","limit":{"context":1000000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Opus 4.7","open_weights":false,"provider":{"api":"https://zenmux.ai/api/anthropic/v1","npm":"@ai-sdk/anthropic"},"reasoning":true,"release_date":"2026-04-16","temperature":false,"tool_call":true},"anthropic/claude-sonnet-4":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"input":3,"output":15},"id":"anthropic/claude-sonnet-4","knowledge":"2025-01-01","last_updated":"2025-05-22","limit":{"context":1000000,"output":64000},"modalities":{"input":["image","text","pdf"],"output":["text"]},"name":"Claude Sonnet 4","open_weights":false,"provider":{"api":"https://zenmux.ai/api/anthropic/v1","npm":"@ai-sdk/anthropic"},"reasoning":true,"release_date":"2025-05-22","temperature":true,"tool_call":true},"anthropic/claude-sonnet-4.5":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"input":3,"output":15},"id":"anthropic/claude-sonnet-4.5","knowledge":"2025-01-01","last_updated":"2025-09-29","limit":{"context":1000000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"Claude Sonnet 4.5","open_weights":false,"provider":{"api":"https://zenmux.ai/api/anthropic/v1","npm":"@ai-sdk/anthropic"},"reasoning":true,"release_date":"2025-09-29","temperature":true,"tool_call":true},"anthropic/claude-sonnet-4.6":{"attachment":true,"cost":{"cache_read":0.3,"cache_write":3.75,"input":3,"output":15},"id":"anthropic/claude-sonnet-4.6","knowledge":"2025-08-31","last_updated":"2026-02-18","limit":{"context":1000000,"output":64000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Claude Sonnet 4.6","open_weights":false,"provider":{"api":"https://zenmux.ai/api/anthropic/v1","npm":"@ai-sdk/anthropic"},"reasoning":true,"release_date":"2026-02-18","temperature":true,"tool_call":true},"baidu/ernie-5.0-thinking-preview":{"attachment":true,"cost":{"input":0.84,"output":3.37},"id":"baidu/ernie-5.0-thinking-preview","knowledge":"2025-01-01","last_updated":"2026-01-22","limit":{"context":128000,"output":64000},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"ERNIE 5.0","open_weights":false,"reasoning":true,"release_date":"2026-01-22","temperature":true,"tool_call":true},"deepseek/deepseek-chat":{"attachment":false,"cost":{"cache_read":0.03,"input":0.28,"output":0.42},"id":"deepseek/deepseek-chat","knowledge":"2025-01-01","last_updated":"2025-12-01","limit":{"context":128000,"output":64000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek-V3.2 (Non-thinking Mode)","open_weights":false,"reasoning":false,"release_date":"2025-12-01","temperature":true,"tool_call":true},"deepseek/deepseek-v3.2":{"attachment":false,"cost":{"input":0.28,"output":0.43},"id":"deepseek/deepseek-v3.2","knowledge":"2025-01-01","last_updated":"2025-12-05","limit":{"context":128000,"output":64000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V3.2","open_weights":false,"reasoning":true,"release_date":"2025-12-05","temperature":true,"tool_call":true},"deepseek/deepseek-v3.2-exp":{"attachment":false,"cost":{"input":0.22,"output":0.33},"id":"deepseek/deepseek-v3.2-exp","knowledge":"2025-01-01","last_updated":"2025-09-29","limit":{"context":163000,"output":64000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek-V3.2-Exp","open_weights":false,"reasoning":true,"release_date":"2025-09-29","temperature":true,"tool_call":true},"deepseek/deepseek-v4-flash":{"attachment":false,"cost":{"cache_read":0.0028,"input":0.14,"output":0.28},"family":"deepseek-flash","id":"deepseek/deepseek-v4-flash","interleaved":{"field":"reasoning_content"},"knowledge":"2025-05","last_updated":"2026-04-24","limit":{"context":1000000,"output":384000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V4 Flash","open_weights":true,"reasoning":true,"release_date":"2026-04-24","structured_output":true,"temperature":true,"tool_call":true},"deepseek/deepseek-v4-pro":{"attachment":false,"cost":{"cache_read":0.003625,"input":0.435,"output":0.87},"family":"deepseek-thinking","id":"deepseek/deepseek-v4-pro","interleaved":{"field":"reasoning_content"},"knowledge":"2025-05","last_updated":"2026-04-24","limit":{"context":1000000,"output":384000},"modalities":{"input":["text"],"output":["text"]},"name":"DeepSeek V4 Pro","open_weights":true,"reasoning":true,"release_date":"2026-04-24","structured_output":true,"temperature":true,"tool_call":true},"google/gemini-2.5-flash":{"attachment":true,"cost":{"cache_read":0.07,"cache_write":1,"input":0.3,"output":2.5},"id":"google/gemini-2.5-flash","knowledge":"2025-01-01","last_updated":"2025-06-17","limit":{"context":1048000,"output":64000},"modalities":{"input":["pdf","image","text","audio"],"output":["text"]},"name":"Gemini 2.5 Flash","open_weights":false,"reasoning":true,"release_date":"2025-06-17","temperature":true,"tool_call":true},"google/gemini-2.5-flash-lite":{"attachment":true,"cost":{"cache_read":0.03,"cache_write":1,"input":0.1,"output":0.4},"id":"google/gemini-2.5-flash-lite","knowledge":"2025-01-01","last_updated":"2025-07-22","limit":{"context":1048000,"output":64000},"modalities":{"input":["pdf","image","text","audio"],"output":["text"]},"name":"Gemini 2.5 Flash Lite","open_weights":false,"reasoning":false,"release_date":"2025-07-22","temperature":true,"tool_call":true},"google/gemini-2.5-pro":{"attachment":true,"cost":{"cache_read":0.31,"cache_write":4.5,"input":1.25,"output":10},"id":"google/gemini-2.5-pro","knowledge":"2025-01-01","last_updated":"2025-06-17","limit":{"context":1048000,"output":64000},"modalities":{"input":["pdf","image","text","audio","video"],"output":["text"]},"name":"Gemini 2.5 Pro","open_weights":false,"reasoning":true,"release_date":"2025-06-17","temperature":true,"tool_call":true},"google/gemini-3-flash-preview":{"attachment":true,"cost":{"cache_read":0.05,"cache_write":1,"input":0.5,"output":3},"id":"google/gemini-3-flash-preview","knowledge":"2025-01-01","last_updated":"2025-12-17","limit":{"context":1048000,"output":64000},"modalities":{"input":["text","image","pdf","audio"],"output":["text"]},"name":"Gemini 3 Flash Preview","open_weights":false,"reasoning":true,"release_date":"2025-12-17","temperature":true,"tool_call":true},"google/gemini-3.1-flash-lite-preview":{"attachment":true,"cost":{"input":0.25,"output":1.5},"id":"google/gemini-3.1-flash-lite-preview","last_updated":"2025-03-20","limit":{"context":1050000,"output":65530},"modalities":{"input":["text","image","audio","video"],"output":["text"]},"name":"Gemini 3.1 Flash Lite Preview","open_weights":false,"reasoning":false,"release_date":"2025-03-20","temperature":true,"tool_call":true},"google/gemini-3.1-pro-preview":{"attachment":true,"cost":{"cache_read":0.2,"cache_write":4.5,"input":2,"output":12},"id":"google/gemini-3.1-pro-preview","knowledge":"2026-02-19","last_updated":"2026-02-19","limit":{"context":1048000,"output":64000},"modalities":{"input":["text","image","pdf","audio","video"],"output":["text"]},"name":"Gemini 3.1 Pro Preview","open_weights":false,"reasoning":true,"release_date":"2026-02-19","temperature":true,"tool_call":true},"inclusionai/ling-1t":{"attachment":false,"cost":{"cache_read":0.11,"input":0.56,"output":2.24},"id":"inclusionai/ling-1t","knowledge":"2025-01-01","last_updated":"2025-10-09","limit":{"context":128000,"output":64000},"modalities":{"input":["text"],"output":["text"]},"name":"Ling-1T","open_weights":false,"reasoning":false,"release_date":"2025-10-09","temperature":true,"tool_call":true},"inclusionai/ring-1t":{"attachment":false,"cost":{"cache_read":0.11,"input":0.56,"output":2.24},"id":"inclusionai/ring-1t","knowledge":"2025-01-01","last_updated":"2025-10-12","limit":{"context":128000,"output":64000},"modalities":{"input":["text"],"output":["text"]},"name":"Ring-1T","open_weights":false,"reasoning":true,"release_date":"2025-10-12","temperature":true,"tool_call":true},"kuaishou/kat-coder-pro-v2":{"attachment":false,"cost":{"cache_read":0.06,"input":0.3,"output":1.2},"id":"kuaishou/kat-coder-pro-v2","last_updated":"2026-03-30","limit":{"context":256000,"output":80000},"modalities":{"input":["text"],"output":["text"]},"name":"KAT-Coder-Pro-V2","open_weights":false,"reasoning":false,"release_date":"2026-03-30","temperature":true,"tool_call":true},"minimax/minimax-m2":{"attachment":false,"cost":{"cache_read":0.03,"cache_write":0.38,"input":0.3,"output":1.2},"id":"minimax/minimax-m2","knowledge":"2025-01-01","last_updated":"2025-10-27","limit":{"context":204000,"output":64000},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax M2","open_weights":false,"provider":{"api":"https://zenmux.ai/api/anthropic/v1","npm":"@ai-sdk/anthropic"},"reasoning":true,"release_date":"2025-10-27","temperature":true,"tool_call":true},"minimax/minimax-m2.1":{"attachment":false,"cost":{"cache_read":0.03,"cache_write":0.38,"input":0.3,"output":1.2},"id":"minimax/minimax-m2.1","knowledge":"2025-01-01","last_updated":"2025-12-22","limit":{"context":204000,"output":64000},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax M2.1","open_weights":false,"provider":{"api":"https://zenmux.ai/api/anthropic/v1","npm":"@ai-sdk/anthropic"},"reasoning":true,"release_date":"2025-12-22","temperature":true,"tool_call":true},"minimax/minimax-m2.5":{"attachment":false,"cost":{"cache_read":0.03,"cache_write":0.375,"input":0.3,"output":1.2},"id":"minimax/minimax-m2.5","knowledge":"2025-01-01","last_updated":"2026-02-13","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax M2.5","open_weights":false,"provider":{"api":"https://zenmux.ai/api/anthropic/v1","npm":"@ai-sdk/anthropic"},"reasoning":true,"release_date":"2026-02-13","temperature":true,"tool_call":true},"minimax/minimax-m2.5-lightning":{"attachment":false,"cost":{"cache_read":0.06,"cache_write":0.75,"input":0.6,"output":4.8},"id":"minimax/minimax-m2.5-lightning","knowledge":"2025-01-01","last_updated":"2026-02-13","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax M2.5 highspeed","open_weights":false,"provider":{"api":"https://zenmux.ai/api/anthropic/v1","npm":"@ai-sdk/anthropic"},"reasoning":true,"release_date":"2026-02-13","temperature":true,"tool_call":true},"minimax/minimax-m2.7":{"attachment":true,"cost":{"input":0.3055,"output":1.2219},"id":"minimax/minimax-m2.7","knowledge":"2025-01-01","last_updated":"2026-03-20","limit":{"context":204800,"output":131070},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax M2.7","open_weights":false,"provider":{"api":"https://zenmux.ai/api/anthropic/v1","npm":"@ai-sdk/anthropic"},"reasoning":true,"release_date":"2026-03-20","temperature":true,"tool_call":true},"minimax/minimax-m2.7-highspeed":{"attachment":true,"cost":{"input":0.611,"output":2.4439},"id":"minimax/minimax-m2.7-highspeed","knowledge":"2025-01-01","last_updated":"2026-03-20","limit":{"context":204800,"output":131070},"modalities":{"input":["text"],"output":["text"]},"name":"MiniMax M2.7 highspeed","open_weights":false,"provider":{"api":"https://zenmux.ai/api/anthropic/v1","npm":"@ai-sdk/anthropic"},"reasoning":true,"release_date":"2026-03-20","temperature":true,"tool_call":true},"moonshotai/kimi-k2-0905":{"attachment":false,"cost":{"cache_read":0.15,"input":0.6,"output":2.5},"id":"moonshotai/kimi-k2-0905","knowledge":"2025-01-01","last_updated":"2025-09-04","limit":{"context":262000,"output":64000},"modalities":{"input":["text"],"output":["text"]},"name":"Kimi K2 0905","open_weights":false,"reasoning":false,"release_date":"2025-09-04","temperature":true,"tool_call":true},"moonshotai/kimi-k2-thinking":{"attachment":false,"cost":{"cache_read":0.15,"input":0.6,"output":2.5},"id":"moonshotai/kimi-k2-thinking","knowledge":"2025-01-01","last_updated":"2025-11-06","limit":{"context":262000,"output":64000},"modalities":{"input":["text"],"output":["text"]},"name":"Kimi K2 Thinking","open_weights":false,"reasoning":true,"release_date":"2025-11-06","temperature":true,"tool_call":true},"moonshotai/kimi-k2-thinking-turbo":{"attachment":false,"cost":{"cache_read":0.15,"input":1.15,"output":8},"id":"moonshotai/kimi-k2-thinking-turbo","knowledge":"2025-01-01","last_updated":"2025-11-06","limit":{"context":262000,"output":64000},"modalities":{"input":["text"],"output":["text"]},"name":"Kimi K2 Thinking Turbo","open_weights":false,"reasoning":true,"release_date":"2025-11-06","temperature":true,"tool_call":true},"moonshotai/kimi-k2.5":{"attachment":true,"cost":{"cache_read":0.1,"input":0.58,"output":3.02},"id":"moonshotai/kimi-k2.5","interleaved":{"field":"reasoning_content"},"knowledge":"2025-01-01","last_updated":"2026-01-27","limit":{"context":262000,"output":64000},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Kimi K2.5","open_weights":false,"reasoning":true,"release_date":"2026-01-27","temperature":false,"tool_call":true},"moonshotai/kimi-k2.6":{"attachment":true,"cost":{"cache_read":0.16,"input":0.95,"output":4},"id":"moonshotai/kimi-k2.6","interleaved":{"field":"reasoning_content"},"knowledge":"2025-01-01","last_updated":"2026-04-20","limit":{"context":262140,"output":262140},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Kimi K2.6","open_weights":true,"reasoning":true,"release_date":"2026-04-20","temperature":false,"tool_call":true},"openai/gpt-5":{"attachment":true,"cost":{"cache_read":0.12,"input":1.25,"output":10},"id":"openai/gpt-5","knowledge":"2025-01-01","last_updated":"2025-08-07","limit":{"context":400000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5","open_weights":false,"provider":{"api":"https://zenmux.ai/api/v1","npm":"@ai-sdk/openai"},"reasoning":true,"release_date":"2025-08-07","temperature":true,"tool_call":true},"openai/gpt-5-codex":{"attachment":true,"cost":{"cache_read":0.12,"input":1.25,"output":10},"id":"openai/gpt-5-codex","knowledge":"2025-01-01","last_updated":"2025-09-23","limit":{"context":400000,"output":64000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5 Codex","open_weights":false,"provider":{"api":"https://zenmux.ai/api/v1","npm":"@ai-sdk/openai"},"reasoning":true,"release_date":"2025-09-23","temperature":true,"tool_call":true},"openai/gpt-5.1":{"attachment":true,"cost":{"cache_read":0.12,"input":1.25,"output":10},"id":"openai/gpt-5.1","knowledge":"2025-01-01","last_updated":"2025-11-13","limit":{"context":400000,"output":64000},"modalities":{"input":["image","text","pdf"],"output":["text"]},"name":"GPT-5.1","open_weights":false,"provider":{"api":"https://zenmux.ai/api/v1","npm":"@ai-sdk/openai"},"reasoning":true,"release_date":"2025-11-13","temperature":true,"tool_call":true},"openai/gpt-5.1-chat":{"attachment":true,"cost":{"cache_read":0.12,"input":1.25,"output":10},"id":"openai/gpt-5.1-chat","knowledge":"2025-01-01","last_updated":"2025-11-13","limit":{"context":128000,"output":64000},"modalities":{"input":["pdf","image","text"],"output":["text"]},"name":"GPT-5.1 Chat","open_weights":false,"provider":{"api":"https://zenmux.ai/api/v1","npm":"@ai-sdk/openai"},"reasoning":false,"release_date":"2025-11-13","temperature":true,"tool_call":true},"openai/gpt-5.1-codex":{"attachment":true,"cost":{"cache_read":0.12,"input":1.25,"output":10},"id":"openai/gpt-5.1-codex","knowledge":"2025-01-01","last_updated":"2025-11-13","limit":{"context":400000,"output":64000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.1-Codex","open_weights":false,"provider":{"api":"https://zenmux.ai/api/v1","npm":"@ai-sdk/openai"},"reasoning":true,"release_date":"2025-11-13","temperature":true,"tool_call":true},"openai/gpt-5.1-codex-mini":{"attachment":true,"cost":{"cache_read":0.03,"input":0.25,"output":2},"id":"openai/gpt-5.1-codex-mini","knowledge":"2025-01-01","last_updated":"2025-11-13","limit":{"context":400000,"output":64000},"modalities":{"input":["image","text"],"output":["text"]},"name":"GPT-5.1-Codex-Mini","open_weights":false,"provider":{"api":"https://zenmux.ai/api/v1","npm":"@ai-sdk/openai"},"reasoning":true,"release_date":"2025-11-13","temperature":true,"tool_call":true},"openai/gpt-5.2":{"attachment":true,"cost":{"cache_read":0.17,"input":1.75,"output":14},"id":"openai/gpt-5.2","knowledge":"2025-01-01","last_updated":"2025-12-11","limit":{"context":400000,"output":64000},"modalities":{"input":["image","text","pdf"],"output":["text"]},"name":"GPT-5.2","open_weights":false,"provider":{"api":"https://zenmux.ai/api/v1","npm":"@ai-sdk/openai"},"reasoning":true,"release_date":"2025-12-11","temperature":false,"tool_call":true},"openai/gpt-5.2-codex":{"attachment":true,"cost":{"cache_read":0.17,"input":1.75,"output":14},"id":"openai/gpt-5.2-codex","knowledge":"2025-01-01","last_updated":"2026-01-15","limit":{"context":400000,"output":64000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5.2-Codex","open_weights":false,"provider":{"api":"https://zenmux.ai/api/v1","npm":"@ai-sdk/openai"},"reasoning":true,"release_date":"2026-01-15","temperature":false,"tool_call":true},"openai/gpt-5.2-pro":{"attachment":true,"cost":{"input":21,"output":168},"id":"openai/gpt-5.2-pro","knowledge":"2025-08-31","last_updated":"2025-12-11","limit":{"context":400000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5.2-Pro","open_weights":false,"provider":{"api":"https://zenmux.ai/api/v1","npm":"@ai-sdk/openai"},"reasoning":true,"release_date":"2025-12-11","temperature":false,"tool_call":true},"openai/gpt-5.3-chat":{"attachment":true,"cost":{"input":1.75,"output":14},"id":"openai/gpt-5.3-chat","knowledge":"2025-08-31","last_updated":"2026-03-20","limit":{"context":128000,"output":16380},"modalities":{"input":["text"],"output":["text"]},"name":"GPT-5.3 Chat","open_weights":false,"provider":{"api":"https://zenmux.ai/api/v1","npm":"@ai-sdk/openai"},"reasoning":false,"release_date":"2026-03-20","temperature":true,"tool_call":true},"openai/gpt-5.3-codex":{"attachment":true,"cost":{"input":1.75,"output":14},"id":"openai/gpt-5.3-codex","knowledge":"2025-08-31","last_updated":"2026-03-20","limit":{"context":400000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"GPT-5.3 Codex","open_weights":false,"provider":{"api":"https://zenmux.ai/api/v1","npm":"@ai-sdk/openai"},"reasoning":true,"release_date":"2026-03-20","temperature":true,"tool_call":true},"openai/gpt-5.4":{"attachment":true,"cost":{"input":3.75,"output":18.75},"id":"openai/gpt-5.4","knowledge":"2025-08-31","last_updated":"2026-03-20","limit":{"context":1050000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.4","open_weights":false,"provider":{"api":"https://zenmux.ai/api/v1","npm":"@ai-sdk/openai"},"reasoning":true,"release_date":"2026-03-20","temperature":true,"tool_call":true},"openai/gpt-5.4-mini":{"attachment":true,"cost":{"input":0.75,"output":4.5},"id":"openai/gpt-5.4-mini","knowledge":"2025-08-31","last_updated":"2026-03-20","limit":{"context":400000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"GPT-5.4 Mini","open_weights":false,"provider":{"api":"https://zenmux.ai/api/v1","npm":"@ai-sdk/openai"},"reasoning":false,"release_date":"2026-03-20","temperature":true,"tool_call":true},"openai/gpt-5.4-nano":{"attachment":false,"cost":{"input":0.2,"output":1.25},"id":"openai/gpt-5.4-nano","knowledge":"2025-08-31","last_updated":"2026-03-20","limit":{"context":400000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"GPT-5.4 Nano","open_weights":false,"provider":{"api":"https://zenmux.ai/api/v1","npm":"@ai-sdk/openai"},"reasoning":false,"release_date":"2026-03-20","temperature":true,"tool_call":true},"openai/gpt-5.4-pro":{"attachment":true,"cost":{"input":45,"output":225},"id":"openai/gpt-5.4-pro","knowledge":"2025-08-31","last_updated":"2026-03-20","limit":{"context":1050000,"output":128000},"modalities":{"input":["text","image"],"output":["text"]},"name":"GPT-5.4 Pro","open_weights":false,"provider":{"api":"https://zenmux.ai/api/v1","npm":"@ai-sdk/openai"},"reasoning":true,"release_date":"2026-03-20","temperature":true,"tool_call":true},"openai/gpt-5.5":{"attachment":true,"cost":{"cache_read":0.5,"context_over_200k":{"cache_read":1,"input":10,"output":45},"input":5,"output":30,"tiers":[{"cache_read":1,"input":10,"output":45,"tier":{"size":272000,"type":"context"}}]},"experimental":{"modes":{"fast":{"cost":{"cache_read":1.25,"input":12.5,"output":75},"provider":{"body":{"service_tier":"priority"}}}}},"family":"gpt","id":"openai/gpt-5.5","knowledge":"2025-12-01","last_updated":"2026-04-23","limit":{"context":1050000,"input":922000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5.5","open_weights":false,"reasoning":true,"release_date":"2026-04-23","structured_output":true,"temperature":false,"tool_call":true},"openai/gpt-5.5-pro":{"attachment":true,"cost":{"context_over_200k":{"input":60,"output":270},"input":30,"output":180,"tiers":[{"input":60,"output":270,"tier":{"size":272000,"type":"context"}}]},"family":"gpt-pro","id":"openai/gpt-5.5-pro","knowledge":"2025-12-01","last_updated":"2026-04-23","limit":{"context":1050000,"input":922000,"output":128000},"modalities":{"input":["text","image","pdf"],"output":["text"]},"name":"GPT-5.5 Pro","open_weights":false,"reasoning":true,"release_date":"2026-04-23","structured_output":true,"temperature":false,"tool_call":true},"qwen/qwen3-coder-plus":{"attachment":false,"cost":{"cache_read":0.1,"cache_write":1.25,"input":1,"output":5},"id":"qwen/qwen3-coder-plus","knowledge":"2025-01-01","last_updated":"2025-07-23","limit":{"context":1000000,"output":64000},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3-Coder-Plus","open_weights":false,"reasoning":false,"release_date":"2025-07-23","temperature":true,"tool_call":true},"qwen/qwen3-max":{"attachment":false,"cost":{"input":1.2,"output":6},"id":"qwen/qwen3-max","knowledge":"2025-01-01","last_updated":"2026-01-23","limit":{"context":256000,"output":64000},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3-Max-Thinking","open_weights":false,"reasoning":true,"release_date":"2026-01-23","temperature":true,"tool_call":true},"qwen/qwen3.5-flash":{"attachment":true,"cost":{"input":0.1,"output":0.4},"id":"qwen/qwen3.5-flash","knowledge":"2025-01-01","last_updated":"2026-03-20","limit":{"context":1020000,"output":1020000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen3.5 Flash","open_weights":false,"reasoning":false,"release_date":"2026-03-20","temperature":true,"tool_call":true},"qwen/qwen3.5-plus":{"attachment":true,"cost":{"input":0.8,"output":4.8},"id":"qwen/qwen3.5-plus","knowledge":"2025-01-01","last_updated":"2026-03-20","limit":{"context":1000000,"output":64000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Qwen3.5 Plus","open_weights":false,"reasoning":true,"release_date":"2026-03-20","temperature":true,"tool_call":true},"qwen/qwen3.6-plus":{"attachment":false,"cost":{"cache_read":0.05,"cache_write":0.625,"context_over_200k":{"cache_read":0.2,"cache_write":2.5,"input":2,"output":6},"input":0.5,"output":3,"tiers":[{"cache_read":0.2,"cache_write":2.5,"input":2,"output":6,"tier":{"size":256000,"type":"context"}}]},"id":"qwen/qwen3.6-plus","last_updated":"2026-03-30","limit":{"context":1000000,"output":64000},"modalities":{"input":["text"],"output":["text"]},"name":"Qwen3.6-Plus","open_weights":false,"reasoning":true,"release_date":"2026-03-30","temperature":true,"tool_call":true},"sapiens-ai/agnes-1.5-lite":{"attachment":true,"cost":{"input":0.12,"output":0.6},"id":"sapiens-ai/agnes-1.5-lite","last_updated":"2026-03-26","limit":{"context":256000,"output":256000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Agnes 1.5 Lite","open_weights":false,"reasoning":false,"release_date":"2026-03-26","temperature":true,"tool_call":true},"sapiens-ai/agnes-1.5-pro":{"attachment":false,"cost":{"input":0.16,"output":0.8},"id":"sapiens-ai/agnes-1.5-pro","last_updated":"2026-03-21","limit":{"context":256000,"output":256000},"modalities":{"input":["text"],"output":["text"]},"name":"Agnes 1.5 Pro","open_weights":false,"reasoning":true,"release_date":"2026-03-21","temperature":true,"tool_call":true},"stepfun/step-3":{"attachment":true,"cost":{"input":0.21,"output":0.57},"id":"stepfun/step-3","knowledge":"2025-01-01","last_updated":"2025-07-31","limit":{"context":65536,"output":64000},"modalities":{"input":["image","text"],"output":["text"]},"name":"Step-3","open_weights":false,"reasoning":true,"release_date":"2025-07-31","temperature":true,"tool_call":true},"stepfun/step-3.5-flash":{"attachment":false,"cost":{"input":0.1,"output":0.3},"id":"stepfun/step-3.5-flash","knowledge":"2025-01-01","last_updated":"2026-02-02","limit":{"context":256000,"output":64000},"modalities":{"input":["text"],"output":["text"]},"name":"Step 3.5 Flash","open_weights":false,"reasoning":false,"release_date":"2026-02-02","temperature":true,"tool_call":true},"stepfun/step-3.5-flash-free":{"attachment":false,"cost":{"input":0,"output":0},"id":"stepfun/step-3.5-flash-free","knowledge":"2025-01-01","last_updated":"2026-02-02","limit":{"context":256000,"output":64000},"modalities":{"input":["text"],"output":["text"]},"name":"Step 3.5 Flash (Free)","open_weights":false,"reasoning":true,"release_date":"2026-02-02","temperature":true,"tool_call":true},"tencent/hy3-preview":{"attachment":false,"cost":{"cache_read":0.058,"cache_write":0,"input":0.172,"output":0.572},"family":"Hy","id":"tencent/hy3-preview","last_updated":"2026-04-20","limit":{"context":256000,"output":64000},"modalities":{"input":["text"],"output":["text"]},"name":"Hy3 preview","open_weights":true,"reasoning":true,"release_date":"2026-04-20","temperature":true,"tool_call":true},"volcengine/doubao-seed-1.8":{"attachment":true,"cost":{"cache_read":0.02,"cache_write":0.0024,"input":0.11,"output":0.28},"id":"volcengine/doubao-seed-1.8","knowledge":"2025-01-01","last_updated":"2025-12-18","limit":{"context":256000,"output":64000},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Doubao-Seed-1.8","open_weights":false,"reasoning":true,"release_date":"2025-12-18","temperature":true,"tool_call":true},"volcengine/doubao-seed-2.0-code":{"attachment":true,"cost":{"input":0.9,"output":4.48},"id":"volcengine/doubao-seed-2.0-code","knowledge":"2025-01-01","last_updated":"2026-03-20","limit":{"context":256000,"output":32000},"modalities":{"input":["text"],"output":["text"]},"name":"Doubao Seed 2.0 Code","open_weights":false,"reasoning":false,"release_date":"2026-03-20","temperature":true,"tool_call":true},"volcengine/doubao-seed-2.0-lite":{"attachment":true,"cost":{"cache_read":0.02,"cache_write":0.0024,"input":0.09,"output":0.51},"id":"volcengine/doubao-seed-2.0-lite","knowledge":"2026-02-14","last_updated":"2026-02-14","limit":{"context":256000,"output":64000},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Doubao-Seed-2.0-lite","open_weights":false,"reasoning":true,"release_date":"2026-02-14","temperature":true,"tool_call":true},"volcengine/doubao-seed-2.0-mini":{"attachment":true,"cost":{"cache_read":0.01,"cache_write":0.0024,"input":0.03,"output":0.28},"id":"volcengine/doubao-seed-2.0-mini","knowledge":"2026-02-14","last_updated":"2026-02-14","limit":{"context":256000,"output":64000},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Doubao-Seed-2.0-mini","open_weights":false,"reasoning":true,"release_date":"2026-02-14","temperature":true,"tool_call":true},"volcengine/doubao-seed-2.0-pro":{"attachment":true,"cost":{"cache_read":0.09,"cache_write":0.0024,"input":0.45,"output":2.24},"id":"volcengine/doubao-seed-2.0-pro","knowledge":"2026-02-14","last_updated":"2026-02-14","limit":{"context":256000,"output":64000},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Doubao-Seed-2.0-pro","open_weights":false,"reasoning":true,"release_date":"2026-02-14","temperature":true,"tool_call":true},"volcengine/doubao-seed-code":{"attachment":true,"cost":{"cache_read":0.03,"input":0.17,"output":1.12},"id":"volcengine/doubao-seed-code","knowledge":"2025-01-01","last_updated":"2025-11-11","limit":{"context":256000,"output":64000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Doubao-Seed-Code","open_weights":false,"reasoning":true,"release_date":"2025-11-11","temperature":true,"tool_call":true},"x-ai/grok-4":{"attachment":true,"cost":{"cache_read":0.75,"input":3,"output":15},"id":"x-ai/grok-4","knowledge":"2025-01-01","last_updated":"2025-07-09","limit":{"context":256000,"output":64000},"modalities":{"input":["image","text"],"output":["text"]},"name":"Grok 4","open_weights":false,"reasoning":true,"release_date":"2025-07-09","temperature":true,"tool_call":true},"x-ai/grok-4-fast":{"attachment":true,"cost":{"cache_read":0.05,"input":0.2,"output":0.5},"id":"x-ai/grok-4-fast","knowledge":"2025-01-01","last_updated":"2025-09-19","limit":{"context":2000000,"output":64000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Grok 4 Fast","open_weights":false,"reasoning":true,"release_date":"2025-09-19","temperature":true,"tool_call":true},"x-ai/grok-4.1-fast":{"attachment":true,"cost":{"cache_read":0.05,"input":0.2,"output":0.5},"id":"x-ai/grok-4.1-fast","knowledge":"2025-01-01","last_updated":"2025-11-20","limit":{"context":2000000,"output":64000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Grok 4.1 Fast","open_weights":false,"reasoning":true,"release_date":"2025-11-20","temperature":true,"tool_call":true},"x-ai/grok-4.1-fast-non-reasoning":{"attachment":true,"cost":{"cache_read":0.05,"input":0.2,"output":0.5},"id":"x-ai/grok-4.1-fast-non-reasoning","knowledge":"2025-01-01","last_updated":"2025-11-20","limit":{"context":2000000,"output":64000},"modalities":{"input":["text","image"],"output":["text"]},"name":"Grok 4.1 Fast Non Reasoning","open_weights":false,"reasoning":false,"release_date":"2025-11-20","temperature":true,"tool_call":true},"x-ai/grok-4.2-fast":{"attachment":true,"cost":{"input":3,"output":9},"id":"x-ai/grok-4.2-fast","knowledge":"2025-08-31","last_updated":"2026-03-20","limit":{"context":2000000,"output":30000},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Grok 4.2 Fast","open_weights":false,"reasoning":true,"release_date":"2026-03-20","temperature":true,"tool_call":true},"x-ai/grok-4.2-fast-non-reasoning":{"attachment":true,"cost":{"input":3,"output":9},"id":"x-ai/grok-4.2-fast-non-reasoning","knowledge":"2025-08-31","last_updated":"2026-03-20","limit":{"context":2000000,"output":30000},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"Grok 4.2 Fast Non Reasoning","open_weights":false,"reasoning":false,"release_date":"2026-03-20","temperature":true,"tool_call":true},"x-ai/grok-code-fast-1":{"attachment":false,"cost":{"cache_read":0.02,"input":0.2,"output":1.5},"id":"x-ai/grok-code-fast-1","knowledge":"2025-01-01","last_updated":"2025-08-26","limit":{"context":256000,"output":64000},"modalities":{"input":["text"],"output":["text"]},"name":"Grok Code Fast 1","open_weights":false,"reasoning":true,"release_date":"2025-08-26","temperature":true,"tool_call":true},"xiaomi/mimo-v2-flash":{"attachment":false,"cost":{"cache_read":0.01,"input":0.1,"output":0.3},"family":"mimo","id":"xiaomi/mimo-v2-flash","knowledge":"2024-12-01","last_updated":"2026-02-04","limit":{"context":262144,"output":65536},"modalities":{"input":["text"],"output":["text"]},"name":"MiMo-V2-Flash","open_weights":true,"reasoning":true,"release_date":"2025-12-16","temperature":true,"tool_call":true},"xiaomi/mimo-v2-omni":{"attachment":true,"cost":{"cache_read":0.08,"input":0.4,"output":2},"family":"mimo","id":"xiaomi/mimo-v2-omni","knowledge":"2024-12","last_updated":"2026-03-18","limit":{"context":265000,"output":265000},"modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"name":"MiMo V2 Omni","open_weights":false,"reasoning":true,"release_date":"2026-03-18","temperature":true,"tool_call":true},"xiaomi/mimo-v2-pro":{"attachment":false,"cost":{"cache_read":0.2,"context_over_200k":{"cache_read":0.4,"input":2,"output":6},"input":1,"output":3,"tiers":[{"cache_read":0.4,"input":2,"output":6,"tier":{"size":256000,"type":"context"}}]},"family":"mimo","id":"xiaomi/mimo-v2-pro","knowledge":"2024-12","last_updated":"2026-03-18","limit":{"context":1000000,"output":256000},"modalities":{"input":["text"],"output":["text"]},"name":"MiMo V2 Pro","open_weights":false,"reasoning":true,"release_date":"2026-03-18","temperature":true,"tool_call":true},"xiaomi/mimo-v2.5":{"attachment":true,"cost":{"cache_read":0.08,"context_over_200k":{"cache_read":0.16,"input":0.8,"output":4},"input":0.4,"output":2,"tiers":[{"cache_read":0.16,"input":0.8,"output":4,"tier":{"size":256000,"type":"context"}}]},"family":"mimo","id":"xiaomi/mimo-v2.5","interleaved":{"field":"reasoning_content"},"knowledge":"2024-12","last_updated":"2026-04-22","limit":{"context":1048576,"output":131072},"modalities":{"input":["text","image","audio","video"],"output":["text"]},"name":"MiMo-V2.5","open_weights":true,"reasoning":true,"release_date":"2026-04-22","temperature":true,"tool_call":true},"xiaomi/mimo-v2.5-pro":{"attachment":false,"cost":{"cache_read":0.2,"context_over_200k":{"cache_read":0.4,"input":2,"output":6},"input":1,"output":3,"tiers":[{"cache_read":0.4,"input":2,"output":6,"tier":{"size":256000,"type":"context"}}]},"family":"mimo","id":"xiaomi/mimo-v2.5-pro","interleaved":{"field":"reasoning_content"},"knowledge":"2024-12","last_updated":"2026-04-22","limit":{"context":1048576,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"MiMo-V2.5-Pro","open_weights":true,"reasoning":true,"release_date":"2026-04-22","temperature":true,"tool_call":true},"z-ai/glm-4.5":{"attachment":false,"cost":{"cache_read":0.07,"input":0.35,"output":1.54},"id":"z-ai/glm-4.5","knowledge":"2025-01-01","last_updated":"2025-07-25","limit":{"context":128000,"output":64000},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 4.5","open_weights":false,"reasoning":true,"release_date":"2025-07-25","temperature":true,"tool_call":true},"z-ai/glm-4.5-air":{"attachment":false,"cost":{"cache_read":0.02,"input":0.11,"output":0.56},"id":"z-ai/glm-4.5-air","knowledge":"2025-01-01","last_updated":"2025-07-25","limit":{"context":128000,"output":64000},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 4.5 Air","open_weights":false,"reasoning":true,"release_date":"2025-07-25","temperature":true,"tool_call":true},"z-ai/glm-4.6":{"attachment":false,"cost":{"cache_read":0.07,"input":0.35,"output":1.54},"id":"z-ai/glm-4.6","knowledge":"2025-01-01","last_updated":"2025-09-30","limit":{"context":200000,"output":64000},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 4.6","open_weights":false,"reasoning":true,"release_date":"2025-09-30","temperature":true,"tool_call":true},"z-ai/glm-4.6v":{"attachment":true,"cost":{"cache_read":0.03,"input":0.14,"output":0.42},"id":"z-ai/glm-4.6v","knowledge":"2025-01-01","last_updated":"2025-12-08","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"GLM 4.6V","open_weights":false,"reasoning":true,"release_date":"2025-12-08","temperature":true,"tool_call":true},"z-ai/glm-4.6v-flash":{"attachment":true,"cost":{"cache_read":0.0043,"input":0.02,"output":0.21},"id":"z-ai/glm-4.6v-flash","knowledge":"2025-01-01","last_updated":"2025-12-08","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"GLM 4.6V FlashX","open_weights":false,"reasoning":true,"release_date":"2025-12-08","temperature":true,"tool_call":true},"z-ai/glm-4.6v-flash-free":{"attachment":true,"cost":{"input":0,"output":0},"id":"z-ai/glm-4.6v-flash-free","knowledge":"2025-01-01","last_updated":"2025-12-08","limit":{"context":200000,"output":64000},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"GLM 4.6V Flash (Free)","open_weights":false,"reasoning":true,"release_date":"2025-12-08","temperature":true,"tool_call":true},"z-ai/glm-4.7":{"attachment":false,"cost":{"cache_read":0.06,"input":0.28,"output":1.14},"id":"z-ai/glm-4.7","interleaved":{"field":"reasoning_content"},"knowledge":"2025-01-01","last_updated":"2025-12-23","limit":{"context":200000,"output":64000},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 4.7","open_weights":false,"reasoning":true,"release_date":"2025-12-23","temperature":true,"tool_call":true},"z-ai/glm-4.7-flash-free":{"attachment":false,"cost":{"input":0,"output":0},"id":"z-ai/glm-4.7-flash-free","interleaved":{"field":"reasoning_content"},"knowledge":"2025-01-01","last_updated":"2026-01-19","limit":{"context":200000,"output":64000},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 4.7 Flash (Free)","open_weights":false,"reasoning":true,"release_date":"2026-01-19","temperature":true,"tool_call":true},"z-ai/glm-4.7-flashx":{"attachment":false,"cost":{"cache_read":0.01,"input":0.07,"output":0.42},"id":"z-ai/glm-4.7-flashx","interleaved":{"field":"reasoning_content"},"knowledge":"2025-01-01","last_updated":"2026-01-19","limit":{"context":200000,"output":64000},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 4.7 FlashX","open_weights":false,"reasoning":true,"release_date":"2026-01-19","temperature":true,"tool_call":true},"z-ai/glm-5":{"attachment":false,"cost":{"cache_read":0.14,"input":0.58,"output":2.6},"id":"z-ai/glm-5","interleaved":{"field":"reasoning_content"},"knowledge":"2025-01-01","last_updated":"2026-02-12","limit":{"context":200000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 5","open_weights":true,"reasoning":true,"release_date":"2026-02-12","temperature":true,"tool_call":true},"z-ai/glm-5-turbo":{"attachment":true,"cost":{"input":0.88,"output":3.48},"id":"z-ai/glm-5-turbo","knowledge":"2025-01-01","last_updated":"2026-03-20","limit":{"context":200000,"output":128000},"modalities":{"input":["text"],"output":["text"]},"name":"GLM 5 Turbo","open_weights":false,"reasoning":true,"release_date":"2026-03-20","temperature":true,"tool_call":true},"z-ai/glm-5.1":{"attachment":false,"cost":{"cache_read":0.1903,"input":0.8781,"output":3.5126},"id":"z-ai/glm-5.1","interleaved":{"field":"reasoning_content"},"last_updated":"2026-04-03","limit":{"context":200000,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-5.1","open_weights":false,"reasoning":true,"release_date":"2026-04-03","structured_output":true,"temperature":true,"tool_call":true},"z-ai/glm-5v-turbo":{"attachment":true,"cost":{"cache_read":0.1743,"input":0.726,"output":3.1946},"id":"z-ai/glm-5v-turbo","interleaved":{"field":"reasoning_content"},"last_updated":"2026-04-01","limit":{"context":200000,"output":128000},"modalities":{"input":["text","image","video","pdf"],"output":["text"]},"name":"GLM 5V Turbo","open_weights":false,"reasoning":true,"release_date":"2026-04-01","temperature":true,"tool_call":true}},"name":"ZenMux","npm":"@ai-sdk/openai-compatible"},"zhipuai":{"api":"https://open.bigmodel.cn/api/paas/v4","doc":"https://docs.z.ai/guides/overview/pricing","env":["ZHIPU_API_KEY"],"id":"zhipuai","models":{"glm-4.5":{"attachment":false,"cost":{"cache_read":0.11,"cache_write":0,"input":0.6,"output":2.2},"family":"glm","id":"glm-4.5","knowledge":"2025-04","last_updated":"2025-07-28","limit":{"context":131072,"output":98304},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4.5","open_weights":true,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"release_date":"2025-07-28","temperature":true,"tool_call":true},"glm-4.5-air":{"attachment":false,"cost":{"cache_read":0.03,"cache_write":0,"input":0.2,"output":1.1},"family":"glm-air","id":"glm-4.5-air","knowledge":"2025-04","last_updated":"2025-07-28","limit":{"context":131072,"output":98304},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4.5-Air","open_weights":true,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"release_date":"2025-07-28","temperature":true,"tool_call":true},"glm-4.5-flash":{"attachment":false,"cost":{"cache_read":0,"cache_write":0,"input":0,"output":0},"family":"glm-flash","id":"glm-4.5-flash","knowledge":"2025-04","last_updated":"2025-07-28","limit":{"context":131072,"output":98304},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4.5-Flash","open_weights":true,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"release_date":"2025-07-28","temperature":true,"tool_call":true},"glm-4.5v":{"attachment":true,"cost":{"input":0.6,"output":1.8},"family":"glm","id":"glm-4.5v","knowledge":"2025-04","last_updated":"2025-08-11","limit":{"context":64000,"output":16384},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"GLM-4.5V","open_weights":true,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"release_date":"2025-08-11","temperature":true,"tool_call":true},"glm-4.6":{"attachment":false,"cost":{"cache_read":0.11,"cache_write":0,"input":0.6,"output":2.2},"family":"glm","id":"glm-4.6","knowledge":"2025-04","last_updated":"2025-09-30","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4.6","open_weights":true,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"release_date":"2025-09-30","temperature":true,"tool_call":true},"glm-4.6v":{"attachment":true,"cost":{"input":0.3,"output":0.9},"family":"glm","id":"glm-4.6v","knowledge":"2025-04","last_updated":"2025-12-08","limit":{"context":128000,"output":32768},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"GLM-4.6V","open_weights":true,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"release_date":"2025-12-08","temperature":true,"tool_call":true},"glm-4.7":{"attachment":false,"cost":{"cache_read":0.11,"cache_write":0,"input":0.6,"output":2.2},"family":"glm","id":"glm-4.7","interleaved":{"field":"reasoning_content"},"knowledge":"2025-04","last_updated":"2025-12-22","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4.7","open_weights":true,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"release_date":"2025-12-22","temperature":true,"tool_call":true},"glm-4.7-flash":{"attachment":false,"cost":{"cache_read":0,"cache_write":0,"input":0,"output":0},"family":"glm-flash","id":"glm-4.7-flash","knowledge":"2025-04","last_updated":"2026-01-19","limit":{"context":200000,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4.7-Flash","open_weights":true,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"release_date":"2026-01-19","temperature":true,"tool_call":true},"glm-4.7-flashx":{"attachment":false,"cost":{"cache_read":0.01,"cache_write":0,"input":0.07,"output":0.4},"family":"glm-flash","id":"glm-4.7-flashx","knowledge":"2025-04","last_updated":"2026-01-19","limit":{"context":200000,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4.7-FlashX","open_weights":true,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"release_date":"2026-01-19","temperature":true,"tool_call":true},"glm-5":{"attachment":false,"cost":{"cache_read":0.2,"cache_write":0,"input":1,"output":3.2},"family":"glm","id":"glm-5","interleaved":{"field":"reasoning_content"},"last_updated":"2026-02-11","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-5","open_weights":true,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"release_date":"2026-02-11","temperature":true,"tool_call":true},"glm-5.1":{"attachment":false,"cost":{"cache_read":1.3,"cache_write":0,"input":6,"output":24},"family":"glm","id":"glm-5.1","interleaved":{"field":"reasoning_content"},"last_updated":"2026-03-27","limit":{"context":200000,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-5.1","open_weights":false,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"release_date":"2026-03-27","structured_output":true,"temperature":true,"tool_call":true},"glm-5v-turbo":{"attachment":true,"cost":{"cache_read":1.2,"cache_write":0,"input":5,"output":22},"family":"glm","id":"glm-5v-turbo","interleaved":{"field":"reasoning_content"},"last_updated":"2026-04-01","limit":{"context":200000,"output":131072},"modalities":{"input":["text","image","video","pdf"],"output":["text"]},"name":"GLM-5V-Turbo","open_weights":false,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"release_date":"2026-04-01","temperature":true,"tool_call":true}},"name":"Zhipu AI","npm":"@ai-sdk/openai-compatible"},"zhipuai-coding-plan":{"api":"https://open.bigmodel.cn/api/coding/paas/v4","doc":"https://docs.bigmodel.cn/cn/coding-plan/overview","env":["ZHIPU_API_KEY"],"id":"zhipuai-coding-plan","models":{"glm-4.5-air":{"attachment":false,"cost":{"cache_read":0,"cache_write":0,"input":0,"output":0},"family":"glm-air","id":"glm-4.5-air","knowledge":"2025-04","last_updated":"2025-07-28","limit":{"context":131072,"output":98304},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4.5-Air","open_weights":true,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"release_date":"2025-07-28","temperature":true,"tool_call":true},"glm-4.6v":{"attachment":true,"cost":{"input":0.3,"output":0.9},"family":"glm","id":"glm-4.6v","knowledge":"2025-04","last_updated":"2025-12-08","limit":{"context":128000,"output":32768},"modalities":{"input":["text","image","video"],"output":["text"]},"name":"GLM-4.6V","open_weights":true,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"release_date":"2025-12-08","temperature":true,"tool_call":true},"glm-4.7":{"attachment":false,"cost":{"cache_read":0,"cache_write":0,"input":0,"output":0},"family":"glm","id":"glm-4.7","interleaved":{"field":"reasoning_content"},"knowledge":"2025-04","last_updated":"2025-12-22","limit":{"context":204800,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-4.7","open_weights":true,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"release_date":"2025-12-22","temperature":true,"tool_call":true},"glm-5-turbo":{"attachment":false,"cost":{"cache_read":0,"cache_write":0,"input":0,"output":0},"family":"glm","id":"glm-5-turbo","interleaved":{"field":"reasoning_content"},"last_updated":"2026-03-16","limit":{"context":200000,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-5-Turbo","open_weights":false,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"release_date":"2026-03-16","structured_output":true,"temperature":true,"tool_call":true},"glm-5.1":{"attachment":false,"cost":{"cache_read":0,"cache_write":0,"input":0,"output":0},"family":"glm","id":"glm-5.1","interleaved":{"field":"reasoning_content"},"last_updated":"2026-03-27","limit":{"context":200000,"output":131072},"modalities":{"input":["text"],"output":["text"]},"name":"GLM-5.1","open_weights":false,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"release_date":"2026-03-27","structured_output":true,"temperature":true,"tool_call":true},"glm-5v-turbo":{"attachment":true,"cost":{"cache_read":0,"cache_write":0,"input":0,"output":0},"family":"glm","id":"glm-5v-turbo","interleaved":{"field":"reasoning_content"},"last_updated":"2026-04-01","limit":{"context":200000,"output":131072},"modalities":{"input":["text","image","video","pdf"],"output":["text"]},"name":"GLM-5V-Turbo","open_weights":false,"reasoning":true,"release_date":"2026-04-01","temperature":true,"tool_call":true}},"name":"Zhipu AI Coding Plan","npm":"@ai-sdk/openai-compatible"}} \ No newline at end of file +{"upstage":{"id":"upstage","env":["UPSTAGE_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://api.upstage.ai/v1/solar","name":"Upstage","doc":"https://developers.upstage.ai/docs/apis/chat","models":{"solar-mini":{"id":"solar-mini","name":"solar-mini","family":"solar-mini","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-09","release_date":"2024-06-12","last_updated":"2025-04-22","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":32768,"output":4096},"cost":{"input":0.15,"output":0.15}},"solar-pro3":{"id":"solar-pro3","name":"solar-pro3","family":"solar-pro","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-03","release_date":"2026-01","last_updated":"2026-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":8192},"cost":{"input":0.25,"output":0.25}},"solar-pro2":{"id":"solar-pro2","name":"solar-pro2","family":"solar-pro","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-03","release_date":"2025-05-20","last_updated":"2025-05-20","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":65536,"output":8192},"cost":{"input":0.25,"output":0.25}}}},"clarifai":{"id":"clarifai","env":["CLARIFAI_PAT"],"npm":"@ai-sdk/openai-compatible","api":"https://api.clarifai.com/v2/ext/openai/v1","name":"Clarifai","doc":"https://docs.clarifai.com/compute/inference/","models":{"clarifai/main/models/mm-poly-8b":{"id":"clarifai/main/models/mm-poly-8b","name":"MM Poly 8B","family":"mm-poly","attachment":true,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-06","last_updated":"2026-02-25","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":32768,"output":4096},"cost":{"input":0.658,"output":1.11}},"mistralai/completion/models/Ministral-3-3B-Reasoning-2512":{"id":"mistralai/completion/models/Ministral-3-3B-Reasoning-2512","name":"Ministral 3 3B Reasoning 2512","family":"ministral","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-12","last_updated":"2026-02-25","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":1.039,"output":0.54825}},"mistralai/completion/models/Ministral-3-14B-Reasoning-2512":{"id":"mistralai/completion/models/Ministral-3-14B-Reasoning-2512","name":"Ministral 3 14B Reasoning 2512","family":"ministral","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-12","release_date":"2025-12-01","last_updated":"2025-12-12","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":2.5,"output":1.7}},"arcee_ai/AFM/models/trinity-mini":{"id":"arcee_ai/AFM/models/trinity-mini","name":"Trinity Mini","family":"trinity-mini","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2025-12","last_updated":"2026-02-25","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":131072},"cost":{"input":0.045,"output":0.15}},"qwen/qwenLM/models/Qwen3-30B-A3B-Instruct-2507":{"id":"qwen/qwenLM/models/Qwen3-30B-A3B-Instruct-2507","name":"Qwen3 30B A3B Instruct 2507","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-07-30","last_updated":"2026-02-25","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.3,"output":0.5}},"qwen/qwenLM/models/Qwen3-30B-A3B-Thinking-2507":{"id":"qwen/qwenLM/models/Qwen3-30B-A3B-Thinking-2507","name":"Qwen3 30B A3B Thinking 2507","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-07-31","last_updated":"2026-02-25","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":131072},"cost":{"input":0.36,"output":1.3}},"qwen/qwenCoder/models/Qwen3-Coder-30B-A3B-Instruct":{"id":"qwen/qwenCoder/models/Qwen3-Coder-30B-A3B-Instruct","name":"Qwen3 Coder 30B A3B Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-07-31","last_updated":"2026-02-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":65536},"cost":{"input":0.11458,"output":0.74812}},"moonshotai/chat-completion/models/Kimi-K2_6":{"id":"moonshotai/chat-completion/models/Kimi-K2_6","name":"Kimi K2.6","family":"kimi-k2.6","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-04-21","last_updated":"2026-04-21","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.95,"output":4}},"deepseek-ai/deepseek-ocr/models/DeepSeek-OCR":{"id":"deepseek-ai/deepseek-ocr/models/DeepSeek-OCR","name":"DeepSeek OCR","family":"deepseek","attachment":true,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-10-20","last_updated":"2026-02-25","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":8192,"output":8192},"cost":{"input":0.2,"output":0.7}},"minimaxai/chat-completion/models/MiniMax-M2_5-high-throughput":{"id":"minimaxai/chat-completion/models/MiniMax-M2_5-high-throughput","name":"MiniMax-M2.5 High Throughput","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-02-12","last_updated":"2026-02-25","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0.3,"output":1.2}},"openai/chat-completion/models/gpt-oss-20b":{"id":"openai/chat-completion/models/gpt-oss-20b","name":"GPT OSS 20B","family":"gpt-oss","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-08-05","last_updated":"2025-12-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":16384},"cost":{"input":0.045,"output":0.18}},"openai/chat-completion/models/gpt-oss-120b-high-throughput":{"id":"openai/chat-completion/models/gpt-oss-120b-high-throughput","name":"GPT OSS 120B High Throughput","family":"gpt-oss","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-08-05","last_updated":"2026-02-25","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":16384},"cost":{"input":0.09,"output":0.36}}}},"ollama-cloud":{"id":"ollama-cloud","env":["OLLAMA_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://ollama.com/v1","name":"Ollama Cloud","doc":"https://docs.ollama.com/cloud","models":{"qwen3-vl:235b-instruct":{"id":"qwen3-vl:235b-instruct","name":"qwen3-vl:235b-instruct","family":"qwen","attachment":true,"reasoning":false,"tool_call":true,"release_date":"2025-09-22","last_updated":"2026-01-19","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":131072}},"gemma3:27b":{"id":"gemma3:27b","name":"gemma3:27b","family":"gemma","attachment":true,"reasoning":false,"tool_call":false,"release_date":"2025-07-27","last_updated":"2026-01-19","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":131072}},"kimi-k2:1t":{"id":"kimi-k2:1t","name":"kimi-k2:1t","family":"kimi","attachment":false,"reasoning":false,"tool_call":true,"knowledge":"2024-10","release_date":"2025-07-11","last_updated":"2026-01-19","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144}},"gemma4:31b":{"id":"gemma4:31b","name":"gemma4:31b","family":"gemma","attachment":true,"reasoning":true,"tool_call":true,"knowledge":"2025-01","release_date":"2026-04-02","last_updated":"2026-04-08","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144}},"glm-4.6":{"id":"glm-4.6","name":"glm-4.6","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"release_date":"2025-09-29","last_updated":"2026-01-19","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":202752,"output":131072}},"nemotron-3-super":{"id":"nemotron-3-super","name":"nemotron-3-super","family":"nemotron","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-03-11","last_updated":"2026-03-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":65536}},"kimi-k2-thinking":{"id":"kimi-k2-thinking","name":"kimi-k2-thinking","family":"kimi-thinking","attachment":false,"reasoning":true,"tool_call":true,"knowledge":"2024-08","release_date":"2025-11-06","last_updated":"2026-01-19","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144}},"qwen3-next:80b":{"id":"qwen3-next:80b","name":"qwen3-next:80b","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"release_date":"2025-09-15","last_updated":"2026-01-19","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":32768}},"devstral-small-2:24b":{"id":"devstral-small-2:24b","name":"devstral-small-2:24b","family":"devstral","attachment":true,"reasoning":false,"tool_call":true,"release_date":"2025-12-09","last_updated":"2026-01-19","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144}},"rnj-1:8b":{"id":"rnj-1:8b","name":"rnj-1:8b","family":"rnj","attachment":false,"reasoning":false,"tool_call":true,"release_date":"2025-12-06","last_updated":"2026-01-19","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":32768,"output":4096}},"minimax-m3":{"id":"minimax-m3","name":"minimax-m3","family":"minimax-m3","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-05-31","last_updated":"2026-05-31","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":512000,"output":131072}},"deepseek-v3.2":{"id":"deepseek-v3.2","name":"deepseek-v3.2","family":"deepseek","attachment":false,"reasoning":true,"tool_call":true,"release_date":"2025-06-15","last_updated":"2026-01-19","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":163840,"output":65536}},"gemini-3-flash-preview":{"id":"gemini-3-flash-preview","name":"gemini-3-flash-preview","family":"gemini-flash","attachment":true,"reasoning":true,"tool_call":true,"knowledge":"2025-01","release_date":"2025-12-17","last_updated":"2026-04-08","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":1048576,"output":65536}},"minimax-m2.1":{"id":"minimax-m2.1","name":"minimax-m2.1","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"release_date":"2025-12-23","last_updated":"2026-01-19","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072}},"kimi-k2.6":{"id":"kimi-k2.6","name":"kimi-k2.6","family":"kimi","attachment":true,"reasoning":true,"tool_call":true,"release_date":"2026-04-20","last_updated":"2026-04-20","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144}},"glm-4.7":{"id":"glm-4.7","name":"glm-4.7","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"release_date":"2025-12-22","last_updated":"2026-01-19","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":202752,"output":131072}},"nemotron-3-nano:30b":{"id":"nemotron-3-nano:30b","name":"nemotron-3-nano:30b","family":"nemotron","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-12-15","last_updated":"2026-01-19","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1048576,"output":131072}},"qwen3-coder-next":{"id":"qwen3-coder-next","name":"qwen3-coder-next","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"release_date":"2026-02-02","last_updated":"2026-02-08","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":65536}},"gemma3:4b":{"id":"gemma3:4b","name":"gemma3:4b","family":"gemma","attachment":true,"reasoning":false,"tool_call":false,"release_date":"2024-12-01","last_updated":"2026-01-19","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":131072}},"gpt-oss:20b":{"id":"gpt-oss:20b","name":"gpt-oss:20b","family":"gpt-oss","attachment":false,"reasoning":true,"tool_call":true,"release_date":"2025-08-05","last_updated":"2026-01-19","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":32768}},"qwen3.5:397b":{"id":"qwen3.5:397b","name":"qwen3.5:397b","family":"qwen","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_details"},"release_date":"2026-02-15","last_updated":"2026-02-17","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":65536}},"devstral-2:123b":{"id":"devstral-2:123b","name":"devstral-2:123b","family":"devstral","attachment":false,"reasoning":false,"tool_call":true,"release_date":"2025-12-09","last_updated":"2026-01-19","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144}},"mistral-large-3:675b":{"id":"mistral-large-3:675b","name":"mistral-large-3:675b","family":"mistral-large","attachment":true,"reasoning":false,"tool_call":true,"release_date":"2025-12-02","last_updated":"2026-01-19","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144}},"ministral-3:14b":{"id":"ministral-3:14b","name":"ministral-3:14b","family":"ministral","attachment":true,"reasoning":false,"tool_call":true,"release_date":"2024-12-01","last_updated":"2026-01-19","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":128000}},"ministral-3:3b":{"id":"ministral-3:3b","name":"ministral-3:3b","family":"ministral","attachment":true,"reasoning":false,"tool_call":true,"release_date":"2024-10-22","last_updated":"2026-01-19","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":128000}},"minimax-m2.7":{"id":"minimax-m2.7","name":"minimax-m2.7","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"release_date":"2026-03-18","last_updated":"2026-03-18","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":196608,"output":196608}},"deepseek-v4-flash":{"id":"deepseek-v4-flash","name":"deepseek-v4-flash","family":"deepseek-flash","attachment":false,"reasoning":true,"tool_call":true,"release_date":"2026-04-24","last_updated":"2026-04-24","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1048576,"output":1048576}},"glm-5":{"id":"glm-5","name":"glm-5","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"release_date":"2026-02-11","last_updated":"2026-02-11","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":202752,"output":131072}},"qwen3-coder:480b":{"id":"qwen3-coder:480b","name":"qwen3-coder:480b","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"release_date":"2025-07-22","last_updated":"2026-01-19","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":65536}},"cogito-2.1:671b":{"id":"cogito-2.1:671b","name":"cogito-2.1:671b","family":"cogito","attachment":false,"reasoning":true,"tool_call":true,"release_date":"2025-11-19","last_updated":"2026-01-19","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":163840,"output":32000}},"qwen3-vl:235b":{"id":"qwen3-vl:235b","name":"qwen3-vl:235b","family":"qwen","attachment":true,"reasoning":true,"tool_call":true,"release_date":"2025-09-22","last_updated":"2026-01-19","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":32768}},"minimax-m2":{"id":"minimax-m2","name":"minimax-m2","family":"minimax","attachment":false,"reasoning":false,"tool_call":true,"release_date":"2025-10-23","last_updated":"2026-01-19","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":128000}},"minimax-m2.5":{"id":"minimax-m2.5","name":"minimax-m2.5","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"knowledge":"2025-01","release_date":"2026-02-12","last_updated":"2026-02-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072}},"deepseek-v4-pro":{"id":"deepseek-v4-pro","name":"deepseek-v4-pro","family":"deepseek-thinking","attachment":false,"reasoning":true,"tool_call":true,"release_date":"2026-04-24","last_updated":"2026-04-24","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1048576,"output":1048576}},"kimi-k2.5":{"id":"kimi-k2.5","name":"kimi-k2.5","family":"kimi","attachment":true,"reasoning":true,"tool_call":true,"release_date":"2026-01-27","last_updated":"2026-01-27","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144}},"ministral-3:8b":{"id":"ministral-3:8b","name":"ministral-3:8b","family":"ministral","attachment":true,"reasoning":false,"tool_call":true,"release_date":"2024-12-01","last_updated":"2026-01-19","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":128000}},"deepseek-v3.1:671b":{"id":"deepseek-v3.1:671b","name":"deepseek-v3.1:671b","family":"deepseek","attachment":false,"reasoning":true,"tool_call":true,"release_date":"2025-08-21","last_updated":"2026-01-19","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":163840,"output":163840}},"glm-5.1":{"id":"glm-5.1","name":"glm-5.1","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"release_date":"2026-03-27","last_updated":"2026-04-07","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":202752,"output":131072}},"gpt-oss:120b":{"id":"gpt-oss:120b","name":"gpt-oss:120b","family":"gpt-oss","attachment":false,"reasoning":true,"tool_call":true,"release_date":"2025-08-05","last_updated":"2026-01-19","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":32768}},"gemma3:12b":{"id":"gemma3:12b","name":"gemma3:12b","family":"gemma","attachment":true,"reasoning":false,"tool_call":false,"release_date":"2024-12-01","last_updated":"2026-01-19","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":131072}}}},"the-grid-ai":{"id":"the-grid-ai","env":["THEGRIDAI_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://api.thegrid.ai/v1","name":"The Grid AI","doc":"https://thegrid.ai/docs","models":{"text-prime":{"id":"text-prime","name":"Text Prime","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-02-26","last_updated":"2026-05-19","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":30000}},"agent-standard":{"id":"agent-standard","name":"Agent Standard","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-05-04","last_updated":"2026-05-19","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16000},"status":"beta"},"text-standard":{"id":"text-standard","name":"Text Standard","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-02-26","last_updated":"2026-05-19","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16000}},"agent-prime":{"id":"agent-prime","name":"Agent Prime","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-05-04","last_updated":"2026-05-19","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":64000},"status":"beta"},"code-prime":{"id":"code-prime","name":"Code Prime","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-05-04","last_updated":"2026-05-19","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":64000},"status":"beta"},"agent-max":{"id":"agent-max","name":"Agent Max","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-05-04","last_updated":"2026-05-19","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"status":"beta"},"code-standard":{"id":"code-standard","name":"Code Standard","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-05-04","last_updated":"2026-05-19","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16000},"status":"beta"},"code-max":{"id":"code-max","name":"Code Max","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-05-04","last_updated":"2026-05-19","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"status":"beta"},"text-max":{"id":"text-max","name":"Text Max","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-03-24","last_updated":"2026-05-19","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000}}}},"fireworks-ai":{"id":"fireworks-ai","env":["FIREWORKS_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://api.fireworks.ai/inference/v1/","name":"Fireworks AI","doc":"https://fireworks.ai/docs/","models":{"accounts/fireworks/models/minimax-m2p5":{"id":"accounts/fireworks/models/minimax-m2p5","name":"MiniMax-M2.5","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"release_date":"2026-02-12","last_updated":"2026-02-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":196608,"output":196608},"cost":{"input":0.3,"output":1.2,"cache_read":0.03}},"accounts/fireworks/models/qwen3p6-plus":{"id":"accounts/fireworks/models/qwen3p6-plus","name":"Qwen 3.6 Plus","family":"qwen","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-04-04","last_updated":"2026-04-04","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"output":65536},"cost":{"input":0.5,"output":3,"cache_read":0.1}},"accounts/fireworks/models/gpt-oss-120b":{"id":"accounts/fireworks/models/gpt-oss-120b","name":"GPT OSS 120B","family":"gpt-oss","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":32768},"cost":{"input":0.15,"output":0.6,"cache_read":0.015}},"accounts/fireworks/models/minimax-m2p7":{"id":"accounts/fireworks/models/minimax-m2p7","name":"MiniMax-M2.7","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"release_date":"2026-04-12","last_updated":"2026-04-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":196608,"output":196608},"cost":{"input":0.3,"output":1.2,"cache_read":0.06}},"accounts/fireworks/models/gpt-oss-20b":{"id":"accounts/fireworks/models/gpt-oss-20b","name":"GPT OSS 20B","family":"gpt-oss","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":32768},"cost":{"input":0.07,"output":0.3,"cache_read":0.035}},"accounts/fireworks/models/kimi-k2p5":{"id":"accounts/fireworks/models/kimi-k2p5","name":"Kimi K2.5","family":"kimi-thinking","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2025-01","release_date":"2026-01-27","last_updated":"2026-01-27","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"output":256000},"cost":{"input":0.6,"output":3,"cache_read":0.1}},"accounts/fireworks/models/kimi-k2p6":{"id":"accounts/fireworks/models/kimi-k2p6","name":"Kimi K2.6","family":"kimi-thinking","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"release_date":"2026-04-17","last_updated":"2026-04-17","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262000,"output":262000},"cost":{"input":0.95,"output":4,"cache_read":0.16}},"accounts/fireworks/models/deepseek-v4-flash":{"id":"accounts/fireworks/models/deepseek-v4-flash","name":"DeepSeek V4 Flash","family":"deepseek-flash","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-05","release_date":"2026-04-24","last_updated":"2026-04-24","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1000000,"output":384000},"cost":{"input":0.14,"output":0.28,"cache_read":0.03}},"accounts/fireworks/models/glm-5p1":{"id":"accounts/fireworks/models/glm-5p1","name":"GLM 5.1","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"release_date":"2026-04-01","last_updated":"2026-04-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":202800,"output":131072},"cost":{"input":1.4,"output":4.4,"cache_read":0.26}},"accounts/fireworks/models/deepseek-v4-pro":{"id":"accounts/fireworks/models/deepseek-v4-pro","name":"DeepSeek V4 Pro","family":"deepseek-thinking","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-05","release_date":"2026-04-24","last_updated":"2026-04-24","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1000000,"output":384000},"cost":{"input":1.74,"output":3.48,"cache_read":0.145}},"accounts/fireworks/routers/kimi-k2p6-fast":{"id":"accounts/fireworks/routers/kimi-k2p6-fast","name":"Kimi K2.6 Fast","family":"kimi-thinking","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"release_date":"2026-04-17","last_updated":"2026-06-05","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262000,"output":262000},"cost":{"input":2,"output":8,"cache_read":0.3}},"accounts/fireworks/routers/kimi-k2p6-turbo":{"id":"accounts/fireworks/routers/kimi-k2p6-turbo","name":"Kimi K2.6 Turbo","family":"kimi-thinking","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"release_date":"2026-04-17","last_updated":"2026-04-17","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262000,"output":262000},"cost":{"input":2,"output":8,"cache_read":0.3}},"accounts/fireworks/routers/glm-5p1-fast":{"id":"accounts/fireworks/routers/glm-5p1-fast","name":"GLM 5.1 Fast","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"release_date":"2026-04-01","last_updated":"2026-04-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":202800,"output":131072},"cost":{"input":2.8,"output":8.8,"cache_read":0.52}}}},"ambient":{"id":"ambient","env":["AMBIENT_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://api.ambient.xyz/v1","name":"Ambient","doc":"https://ambient.xyz","models":{"zai-org/GLM-5.1-FP8":{"id":"zai-org/GLM-5.1-FP8","name":"GLM-5.1","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-03-27","last_updated":"2026-03-27","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":202752,"output":131072},"cost":{"input":1.4,"output":4.4,"cache_read":0,"cache_write":0}},"moonshotai/kimi-k2.6":{"id":"moonshotai/kimi-k2.6","name":"Kimi K2.6","family":"kimi-k2.6","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-04-21","last_updated":"2026-04-21","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.95,"output":4,"cache_read":0.2,"cache_write":0}}}},"stackit":{"id":"stackit","env":["STACKIT_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://api.openai-compat.model-serving.eu01.onstackit.cloud/v1","name":"STACKIT","doc":"https://docs.stackit.cloud/products/data-and-ai/ai-model-serving/basics/available-shared-models","models":{"neuralmagic/Meta-Llama-3.1-8B-Instruct-FP8":{"id":"neuralmagic/Meta-Llama-3.1-8B-Instruct-FP8","name":"Llama 3.1 8B","family":"llama","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2024-07-23","last_updated":"2024-07-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":8192},"cost":{"input":0.16,"output":0.27}},"neuralmagic/Mistral-Nemo-Instruct-2407-FP8":{"id":"neuralmagic/Mistral-Nemo-Instruct-2407-FP8","name":"Mistral Nemo","family":"mistral","attachment":false,"reasoning":false,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2024-07-01","last_updated":"2024-07-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":8192},"cost":{"input":0.49,"output":0.71}},"intfloat/e5-mistral-7b-instruct":{"id":"intfloat/e5-mistral-7b-instruct","name":"E5 Mistral 7B","family":"mistral","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":false,"release_date":"2023-12-11","last_updated":"2023-12-11","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":4096,"output":4096},"cost":{"input":0.02,"output":0.02}},"cortecs/Llama-3.3-70B-Instruct-FP8-Dynamic":{"id":"cortecs/Llama-3.3-70B-Instruct-FP8-Dynamic","name":"Llama 3.3 70B","family":"llama","attachment":false,"reasoning":false,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2024-12-05","last_updated":"2024-12-05","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":8192},"cost":{"input":0.49,"output":0.71}},"Qwen/Qwen3-VL-235B-A22B-Instruct-FP8":{"id":"Qwen/Qwen3-VL-235B-A22B-Instruct-FP8","name":"Qwen3-VL 235B","family":"qwen","attachment":true,"reasoning":false,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2024-11-01","last_updated":"2024-11-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":218000,"output":8192},"cost":{"input":1.64,"output":1.91}},"Qwen/Qwen3-VL-Embedding-8B":{"id":"Qwen/Qwen3-VL-Embedding-8B","name":"Qwen3-VL Embedding 8B","family":"qwen","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":false,"release_date":"2026-02-05","last_updated":"2026-02-05","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":32000,"output":4096},"cost":{"input":0.09,"output":0.09}},"google/gemma-3-27b-it":{"id":"google/gemma-3-27b-it","name":"Gemma 3 27B","family":"gemma","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":true,"release_date":"2025-05-17","last_updated":"2025-05-17","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":37000,"output":8192},"cost":{"input":0.49,"output":0.71}},"openai/gpt-oss-120b":{"id":"openai/gpt-oss-120b","name":"GPT-OSS 120B","family":"gpt","attachment":false,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131000,"output":8192},"cost":{"input":0.49,"output":0.71}}}},"ovhcloud":{"id":"ovhcloud","env":["OVHCLOUD_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://oai.endpoints.kepler.ai.cloud.ovh.net/v1","name":"OVHcloud AI Endpoints","doc":"https://www.ovhcloud.com/en/public-cloud/ai-endpoints/catalog//","models":{"qwen2.5-vl-72b-instruct":{"id":"qwen2.5-vl-72b-instruct","name":"Qwen2.5-VL-72B-Instruct","attachment":true,"reasoning":false,"tool_call":false,"structured_output":true,"temperature":true,"release_date":"2025-03-31","last_updated":"2025-03-31","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":32768,"output":32768},"cost":{"input":1.01,"output":1.01}},"qwen3guard-gen-8b":{"id":"qwen3guard-gen-8b","name":"Qwen3Guard-Gen-8B","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2026-01-22","last_updated":"2026-01-22","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":32768,"output":16384}},"qwen3-32b":{"id":"qwen3-32b","name":"Qwen3-32B","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-07-16","last_updated":"2025-07-16","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":32768,"output":32768},"cost":{"input":0.09,"output":0.25}},"qwen3-coder-30b-a3b-instruct":{"id":"qwen3-coder-30b-a3b-instruct","name":"Qwen3-Coder-30B-A3B-Instruct","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-10-28","last_updated":"2025-10-28","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.07,"output":0.26}},"mistral-7b-instruct-v0.3":{"id":"mistral-7b-instruct-v0.3","name":"Mistral-7B-Instruct-v0.3","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-04-01","last_updated":"2025-04-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":65536,"output":65536},"cost":{"input":0.11,"output":0.11}},"meta-llama-3_3-70b-instruct":{"id":"meta-llama-3_3-70b-instruct","name":"Meta-Llama-3_3-70B-Instruct","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-04-01","last_updated":"2025-04-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":131072},"cost":{"input":0.74,"output":0.74}},"mistral-small-3.2-24b-instruct-2506":{"id":"mistral-small-3.2-24b-instruct-2506","name":"Mistral-Small-3.2-24B-Instruct-2506","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-07-16","last_updated":"2025-07-16","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":131072},"cost":{"input":0.1,"output":0.31}},"qwen3.6-27b":{"id":"qwen3.6-27b","name":"Qwen3.6-27B","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-06-01","last_updated":"2026-06-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.47,"output":3.19}},"gpt-oss-120b":{"id":"gpt-oss-120b","name":"gpt-oss-120b","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2025-08-28","last_updated":"2025-08-28","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":131072},"cost":{"input":0.09,"output":0.47}},"gpt-oss-20b":{"id":"gpt-oss-20b","name":"gpt-oss-20b","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2025-08-28","last_updated":"2025-08-28","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":131072},"cost":{"input":0.05,"output":0.18}},"qwen3.5-9b":{"id":"qwen3.5-9b","name":"Qwen3.5-9B","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-04-22","last_updated":"2026-04-22","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.12,"output":0.18}},"qwen3.5-397b-a17b":{"id":"qwen3.5-397b-a17b","name":"Qwen3.5-397B-A17B","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-05-18","last_updated":"2026-05-18","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.71,"output":4.25}},"llama-3.1-8b-instruct":{"id":"llama-3.1-8b-instruct","name":"Llama-3.1-8B-Instruct","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-06-11","last_updated":"2025-06-11","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":131072},"cost":{"input":0.11,"output":0.11}},"mistral-nemo-instruct-2407":{"id":"mistral-nemo-instruct-2407","name":"Mistral-Nemo-Instruct-2407","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2024-11-20","last_updated":"2024-11-20","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":65536,"output":65536},"cost":{"input":0.14,"output":0.14}},"qwen3guard-gen-0.6b":{"id":"qwen3guard-gen-0.6b","name":"Qwen3Guard-Gen-0.6B","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2026-01-22","last_updated":"2026-01-22","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":32768,"output":16384}}}},"iflowcn":{"id":"iflowcn","env":["IFLOW_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://apis.iflow.cn/v1","name":"iFlow","doc":"https://platform.iflow.cn/en/docs","models":{"qwen3-max-preview":{"id":"qwen3-max-preview","name":"Qwen3-Max-Preview","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-12","release_date":"2025-01-01","last_updated":"2025-01-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":32000},"cost":{"input":0,"output":0}},"glm-4.6":{"id":"glm-4.6","name":"GLM-4.6","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2024-12-01","last_updated":"2025-11-13","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":128000},"cost":{"input":0,"output":0}},"qwen3-32b":{"id":"qwen3-32b","name":"Qwen3-32B","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2024-12-01","last_updated":"2024-12-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":32000},"cost":{"input":0,"output":0}},"qwen3-235b":{"id":"qwen3-235b","name":"Qwen3-235B-A22B","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2024-12-01","last_updated":"2024-12-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":32000},"cost":{"input":0,"output":0}},"deepseek-v3.2":{"id":"deepseek-v3.2","name":"DeepSeek-V3.2-Exp","family":"deepseek","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-12","release_date":"2025-01-01","last_updated":"2025-01-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":64000},"cost":{"input":0,"output":0}},"qwen3-235b-a22b-instruct":{"id":"qwen3-235b-a22b-instruct","name":"Qwen3-235B-A22B-Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-07-01","last_updated":"2025-07-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"output":64000},"cost":{"input":0,"output":0}},"qwen3-max":{"id":"qwen3-max","name":"Qwen3-Max","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-12","release_date":"2025-01-01","last_updated":"2025-01-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":32000},"cost":{"input":0,"output":0}},"qwen3-coder-plus":{"id":"qwen3-coder-plus","name":"Qwen3-Coder-Plus","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-07-01","last_updated":"2025-07-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"output":64000},"cost":{"input":0,"output":0}},"deepseek-r1":{"id":"deepseek-r1","name":"DeepSeek-R1","family":"deepseek-thinking","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-12","release_date":"2025-01-20","last_updated":"2025-01-20","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":32000},"cost":{"input":0,"output":0}},"qwen3-235b-a22b-thinking-2507":{"id":"qwen3-235b-a22b-thinking-2507","name":"Qwen3-235B-A22B-Thinking","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-07-01","last_updated":"2025-07-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"output":64000},"cost":{"input":0,"output":0}},"qwen3-vl-plus":{"id":"qwen3-vl-plus","name":"Qwen3-VL-Plus","family":"qwen","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-12","release_date":"2025-01-01","last_updated":"2025-01-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":32000},"cost":{"input":0,"output":0}},"kimi-k2-0905":{"id":"kimi-k2-0905","name":"Kimi-K2-0905","family":"kimi","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-12","release_date":"2025-09-05","last_updated":"2025-09-05","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":64000},"cost":{"input":0,"output":0}},"deepseek-v3":{"id":"deepseek-v3","name":"DeepSeek-V3","family":"deepseek","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2024-12-26","last_updated":"2024-12-26","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":32000},"cost":{"input":0,"output":0}},"kimi-k2":{"id":"kimi-k2","name":"Kimi-K2","family":"kimi","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2024-12-01","last_updated":"2024-12-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":64000},"cost":{"input":0,"output":0}}}},"302ai":{"id":"302ai","env":["302AI_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://api.302.ai/v1","name":"302.AI","doc":"https://doc.302.ai","models":{"kimi-k2-thinking-turbo":{"id":"kimi-k2-thinking-turbo","name":"kimi-k2-thinking-turbo","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-06","release_date":"2025-09-05","last_updated":"2025-09-05","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"output":262144},"cost":{"input":1.265,"output":9.119}},"chatgpt-4o-latest":{"id":"chatgpt-4o-latest","name":"chatgpt-4o-latest","family":"gpt","attachment":true,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2023-09","release_date":"2024-08-08","last_updated":"2024-08-08","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":5,"output":15}},"grok-4.1":{"id":"grok-4.1","name":"grok-4.1","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-06","release_date":"2025-11-18","last_updated":"2025-11-18","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":2,"output":10}},"doubao-seed-1-6-vision-250815":{"id":"doubao-seed-1-6-vision-250815","name":"doubao-seed-1-6-vision-250815","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2025-09-30","last_updated":"2025-09-30","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":32000},"cost":{"input":0.114,"output":1.143}},"claude-opus-4-5":{"id":"claude-opus-4-5","name":"claude-opus-4-5","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-11-25","last_updated":"2025-11-25","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":5,"output":25}},"gpt-5-pro":{"id":"gpt-5-pro","name":"gpt-5-pro","family":"gpt-pro","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-10-08","last_updated":"2025-10-08","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":272000},"cost":{"input":15,"output":120}},"claude-sonnet-4-6":{"id":"claude-sonnet-4-6","name":"claude-sonnet-4-6","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-08-31","release_date":"2026-02-18","last_updated":"2026-03-13","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":64000},"cost":{"input":3,"output":15}},"gpt-5-mini":{"id":"gpt-5-mini","name":"gpt-5-mini","family":"gpt-mini","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-05-30","release_date":"2025-08-08","last_updated":"2025-08-08","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":0.25,"output":2}},"gemini-2.5-flash-image":{"id":"gemini-2.5-flash-image","name":"gemini-2.5-flash-image","attachment":true,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2025-01","release_date":"2025-10-08","last_updated":"2025-10-08","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":32768,"output":32768},"cost":{"input":0.3,"output":30}},"glm-4.7-flashx":{"id":"glm-4.7-flashx","name":"glm-4.7-flashx","family":"glm-flash","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2026-01-20","last_updated":"2026-01-20","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":200000,"output":131072},"cost":{"input":0.0715,"output":0.429}},"gpt-4o":{"id":"gpt-4o","name":"gpt-4o","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2023-09","release_date":"2024-05-13","last_updated":"2024-05-13","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":2.5,"output":10}},"gpt-5.2":{"id":"gpt-5.2","name":"gpt-5.2","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2025-12-12","last_updated":"2025-12-12","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":1.75,"output":14}},"ministral-14b-2512":{"id":"ministral-14b-2512","name":"ministral-14b-2512","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-12","release_date":"2025-12-16","last_updated":"2025-12-16","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":128000},"cost":{"input":0.33,"output":0.33}},"glm-4.6":{"id":"glm-4.6","name":"glm-4.6","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-09-30","last_updated":"2025-09-30","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0.286,"output":1.142}},"kimi-k2-thinking":{"id":"kimi-k2-thinking","name":"kimi-k2-thinking","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-06","release_date":"2025-09-05","last_updated":"2025-09-05","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"output":262144},"cost":{"input":0.575,"output":2.3}},"claude-haiku-4-5-20251001":{"id":"claude-haiku-4-5-20251001","name":"claude-haiku-4-5-20251001","family":"claude-haiku","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-02-28","release_date":"2025-10-16","last_updated":"2025-10-16","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":1,"output":5}},"MiniMax-M1":{"id":"MiniMax-M1","name":"MiniMax-M1","family":"minimax","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2025-06-16","last_updated":"2025-06-16","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":0.132,"output":1.254}},"gpt-5":{"id":"gpt-5","name":"gpt-5","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-08-08","last_updated":"2025-08-08","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":1.25,"output":10}},"qwen3-max-2025-09-23":{"id":"qwen3-max-2025-09-23","name":"qwen3-max-2025-09-23","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-09-24","last_updated":"2025-09-24","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":258048,"output":65536},"cost":{"input":0.86,"output":3.43}},"qwen-flash":{"id":"qwen-flash","name":"Qwen-Flash","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2025-07-28","last_updated":"2025-07-28","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":32768},"cost":{"input":0.022,"output":0.22}},"claude-haiku-4-5":{"id":"claude-haiku-4-5","name":"claude-haiku-4-5","family":"claude-haiku","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-02-28","release_date":"2025-10-16","last_updated":"2025-10-16","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":1,"output":5}},"grok-4-fast-non-reasoning":{"id":"grok-4-fast-non-reasoning","name":"grok-4-fast-non-reasoning","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-06","release_date":"2025-09-23","last_updated":"2025-09-23","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":2000000,"output":30000},"cost":{"input":0.2,"output":0.5}},"MiniMax-M2.7":{"id":"MiniMax-M2.7","name":"MiniMax-M2.7","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2026-03-19","last_updated":"2026-03-19","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":204800,"output":131072},"cost":{"input":0.3,"output":1.2}},"gemini-2.0-flash-lite":{"id":"gemini-2.0-flash-lite","name":"gemini-2.0-flash-lite","family":"gemini-flash-lite","attachment":true,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2024-11","release_date":"2025-06-16","last_updated":"2025-06-16","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":2000000,"output":8192},"cost":{"input":0.075,"output":0.3}},"gpt-5.4-pro":{"id":"gpt-5.4-pro","name":"gpt-5.4-pro","family":"gpt-pro","attachment":true,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-03-05","last_updated":"2026-03-05","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1050000,"input":922000,"output":128000},"cost":{"input":30,"output":180,"cache_read":0,"cache_write":0,"tiers":[{"input":60,"output":270,"tier":{"type":"context","size":272000}}],"context_over_200k":{"input":60,"output":270}}},"qwen-max-latest":{"id":"qwen-max-latest","name":"Qwen-Max-Latest","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-11","release_date":"2024-04-03","last_updated":"2025-01-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":8192},"cost":{"input":0.343,"output":1.372}},"doubao-seed-1-8-251215":{"id":"doubao-seed-1-8-251215","name":"doubao-seed-1-8-251215","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2025-12-18","last_updated":"2025-12-18","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":224000,"output":64000},"cost":{"input":0.114,"output":0.286}},"gpt-4.1-mini":{"id":"gpt-4.1-mini","name":"gpt-4.1-mini","family":"gpt-mini","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-04","release_date":"2025-04-14","last_updated":"2025-04-14","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1047576,"output":32768},"cost":{"input":0.4,"output":1.6}},"deepseek-v3.2":{"id":"deepseek-v3.2","name":"deepseek-v3.2","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-12","release_date":"2025-12-01","last_updated":"2025-12-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":8192},"cost":{"input":0.29,"output":0.43}},"claude-opus-4-20250514":{"id":"claude-opus-4-20250514","name":"claude-opus-4-20250514","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-05-22","last_updated":"2025-05-22","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":32000},"cost":{"input":15,"output":75}},"gpt-5.4":{"id":"gpt-5.4","name":"gpt-5.4","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-03-05","last_updated":"2026-03-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1050000,"input":922000,"output":128000},"cost":{"input":2.5,"output":15,"cache_read":0.25,"cache_write":0,"tiers":[{"input":5,"output":22.5,"tier":{"type":"context","size":272000}}],"context_over_200k":{"input":5,"output":22.5}}},"gemini-3-flash-preview":{"id":"gemini-3-flash-preview","name":"gemini-3-flash-preview","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-06","release_date":"2025-12-18","last_updated":"2025-12-18","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":65536},"cost":{"input":0.5,"output":3}},"deepseek-reasoner":{"id":"deepseek-reasoner","name":"Deepseek-Reasoner","family":"deepseek-thinking","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-07","release_date":"2025-01-20","last_updated":"2025-01-20","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":128000},"cost":{"input":0.29,"output":0.43}},"qwen3-235b-a22b":{"id":"qwen3-235b-a22b","name":"Qwen3-235B-A22B","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-04-29","last_updated":"2025-04-29","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":0.29,"output":2.86}},"grok-4.20-beta-0309-reasoning":{"id":"grok-4.20-beta-0309-reasoning","name":"grok-4.20-beta-0309-reasoning","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-03-16","last_updated":"2026-03-16","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":2000000,"output":30000},"cost":{"input":2,"output":6}},"mistral-large-2512":{"id":"mistral-large-2512","name":"mistral-large-2512","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-12","release_date":"2025-12-16","last_updated":"2025-12-16","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":262144},"cost":{"input":1.1,"output":3.3}},"glm-4.7":{"id":"glm-4.7","name":"glm-4.7","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2025-04","release_date":"2025-12-22","last_updated":"2025-12-22","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0.286,"output":1.142}},"claude-sonnet-4-6-thinking":{"id":"claude-sonnet-4-6-thinking","name":"claude-sonnet-4-6-thinking","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-08","release_date":"2026-02-18","last_updated":"2026-03-13","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":64000},"cost":{"input":3,"output":15}},"gpt-5.2-chat-latest":{"id":"gpt-5.2-chat-latest","name":"gpt-5.2-chat-latest","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2025-12-12","last_updated":"2025-12-12","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":1.75,"output":14}},"gpt-5.1":{"id":"gpt-5.1","name":"gpt-5.1","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-11-14","last_updated":"2025-11-14","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":1.25,"output":10}},"grok-4-fast-reasoning":{"id":"grok-4-fast-reasoning","name":"grok-4-fast-reasoning","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-06","release_date":"2025-09-23","last_updated":"2025-09-23","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":2000000,"output":30000},"cost":{"input":0.2,"output":0.5}},"grok-4-1-fast-non-reasoning":{"id":"grok-4-1-fast-non-reasoning","name":"grok-4-1-fast-non-reasoning","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-06","release_date":"2025-11-20","last_updated":"2025-11-20","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":2000000,"output":30000},"cost":{"input":0.2,"output":0.5}},"claude-opus-4-1-20250805-thinking":{"id":"claude-opus-4-1-20250805-thinking","name":"claude-opus-4-1-20250805-thinking","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-03","release_date":"2025-05-27","last_updated":"2025-05-27","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":32000},"cost":{"input":15,"output":75}},"gemini-2.5-pro":{"id":"gemini-2.5-pro","name":"gemini-2.5-pro","family":"gemini-pro","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-06-17","last_updated":"2025-06-17","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":65536},"cost":{"input":1.25,"output":10}},"claude-3-5-haiku-latest":{"id":"claude-3-5-haiku-latest","name":"claude-3-5-haiku-latest","family":"claude-haiku","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-07-31","release_date":"2024-10-22","last_updated":"2024-10-22","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":8192},"cost":{"input":0.8,"output":4}},"glm-4.5v":{"id":"glm-4.5v","name":"GLM-4.5V","family":"glm","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-08-12","last_updated":"2025-08-12","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":64000,"output":16384},"cost":{"input":0.29,"output":0.86}},"qwen3-30b-a3b":{"id":"qwen3-30b-a3b","name":"Qwen3-30B-A3B","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-04-29","last_updated":"2025-04-29","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":8192},"cost":{"input":0.11,"output":1.08}},"gpt-4.1":{"id":"gpt-4.1","name":"gpt-4.1","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-04","release_date":"2025-04-14","last_updated":"2025-04-14","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1047576,"output":32768},"cost":{"input":2,"output":8}},"deepseek-v3.2-thinking":{"id":"deepseek-v3.2-thinking","name":"DeepSeek-V3.2-Thinking","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-12","release_date":"2025-12-01","last_updated":"2025-12-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":128000},"cost":{"input":0.29,"output":0.43}},"claude-sonnet-4-5-20250929":{"id":"claude-sonnet-4-5-20250929","name":"claude-sonnet-4-5-20250929","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-07-31","release_date":"2025-09-30","last_updated":"2025-09-30","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":3,"output":15}},"claude-3-5-haiku-20241022":{"id":"claude-3-5-haiku-20241022","name":"claude-3-5-haiku-20241022","family":"claude-haiku","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-07-31","release_date":"2024-10-22","last_updated":"2024-10-22","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":8192},"cost":{"input":0.8,"output":4}},"gpt-5.4-mini-2026-03-17":{"id":"gpt-5.4-mini-2026-03-17","name":"gpt-5.4-mini-2026-03-17","family":"gpt-mini","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-03-19","last_updated":"2026-03-19","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":0.75,"output":4.5}},"deepseek-chat":{"id":"deepseek-chat","name":"Deepseek-Chat","family":"deepseek","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-07","release_date":"2024-11-29","last_updated":"2024-11-29","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":8192},"cost":{"input":0.29,"output":0.43}},"gpt-5.4-nano":{"id":"gpt-5.4-nano","name":"gpt-5.4-nano","family":"gpt-nano","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-03-19","last_updated":"2026-03-19","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":0.2,"output":1.25}},"claude-opus-4-5-20251101-thinking":{"id":"claude-opus-4-5-20251101-thinking","name":"claude-opus-4-5-20251101-thinking","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-03","release_date":"2025-11-25","last_updated":"2025-11-25","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":5,"output":25}},"claude-opus-4-1-20250805":{"id":"claude-opus-4-1-20250805","name":"claude-opus-4-1-20250805","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":32000},"cost":{"input":15,"output":75}},"qwen3-coder-480b-a35b-instruct":{"id":"qwen3-coder-480b-a35b-instruct","name":"qwen3-coder-480b-a35b-instruct","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-07-23","last_updated":"2025-07-23","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"output":65536},"cost":{"input":0.86,"output":3.43}},"glm-4.6v":{"id":"glm-4.6v","name":"GLM-4.6V","family":"glm","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-12-08","last_updated":"2025-12-08","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":32768},"cost":{"input":0.145,"output":0.43}},"gemini-2.5-flash":{"id":"gemini-2.5-flash","name":"gemini-2.5-flash","family":"gemini-flash","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-06-17","last_updated":"2025-06-17","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":65536},"cost":{"input":0.3,"output":2.5}},"gemini-2.5-flash-preview-09-2025":{"id":"gemini-2.5-flash-preview-09-2025","name":"gemini-2.5-flash-preview-09-2025","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-09-26","last_updated":"2025-09-26","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":65536},"cost":{"input":0.3,"output":2.5}},"glm-5v-turbo":{"id":"glm-5v-turbo","name":"GLM-5V-Turbo","family":"glm","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"release_date":"2026-04-02","last_updated":"2026-04-02","modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":131072},"cost":{"input":0.72,"output":3.2}},"gemini-2.5-flash-lite-preview-09-2025":{"id":"gemini-2.5-flash-lite-preview-09-2025","name":"gemini-2.5-flash-lite-preview-09-2025","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-09-26","last_updated":"2025-09-26","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":65536},"cost":{"input":0.1,"output":0.4}},"glm-for-coding":{"id":"glm-for-coding","name":"glm-for-coding","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-09-30","last_updated":"2025-09-30","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":131072},"cost":{"input":0.086,"output":0.343}},"claude-opus-4-5-20251101":{"id":"claude-opus-4-5-20251101","name":"claude-opus-4-5-20251101","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-11-25","last_updated":"2025-11-25","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":5,"output":25}},"MiniMax-M2":{"id":"MiniMax-M2","name":"MiniMax-M2","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2025-10-26","last_updated":"2025-10-26","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":0.33,"output":1.32}},"doubao-seed-code-preview-251028":{"id":"doubao-seed-code-preview-251028","name":"doubao-seed-code-preview-251028","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2025-11-11","last_updated":"2025-11-11","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":32000},"cost":{"input":0.17,"output":1.14}},"glm-5":{"id":"glm-5","name":"glm-5","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"release_date":"2026-02-12","last_updated":"2026-02-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0.6,"output":2.6}},"glm-5-turbo":{"id":"glm-5-turbo","name":"glm-5-turbo","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-03-16","last_updated":"2026-03-16","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":131072},"cost":{"input":0.72,"output":3.2}},"glm-4.5":{"id":"glm-4.5","name":"GLM-4.5","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-07-29","last_updated":"2025-07-29","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":98304},"cost":{"input":0.286,"output":1.142}},"qwen3-235b-a22b-instruct-2507":{"id":"qwen3-235b-a22b-instruct-2507","name":"qwen3-235b-a22b-instruct-2507","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-07-30","last_updated":"2025-07-30","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":65536},"cost":{"input":0.29,"output":1.143}},"gpt-5.4-nano-2026-03-17":{"id":"gpt-5.4-nano-2026-03-17","name":"gpt-5.4-nano-2026-03-17","family":"gpt-nano","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-03-19","last_updated":"2026-03-19","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":0.2,"output":1.25}},"claude-sonnet-4-20250514":{"id":"claude-sonnet-4-20250514","name":"claude-sonnet-4-20250514","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-05-22","last_updated":"2025-05-22","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":3,"output":15}},"glm-4.5-x":{"id":"glm-4.5-x","name":"glm-4.5-x","family":"glm","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-07-29","last_updated":"2025-07-29","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":1.143,"output":2.29}},"gemini-3-pro-preview":{"id":"gemini-3-pro-preview","name":"gemini-3-pro-preview","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-06","release_date":"2025-11-19","last_updated":"2025-11-19","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":64000},"cost":{"input":2,"output":12}},"kimi-k2-0905-preview":{"id":"kimi-k2-0905-preview","name":"kimi-k2-0905-preview","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-06","release_date":"2025-09-05","last_updated":"2025-09-05","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"output":262144},"cost":{"input":0.632,"output":2.53}},"doubao-seed-1-6-thinking-250715":{"id":"doubao-seed-1-6-thinking-250715","name":"doubao-seed-1-6-thinking-250715","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-07-15","last_updated":"2025-07-15","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":16000},"cost":{"input":0.121,"output":1.21}},"MiniMax-M2.7-highspeed":{"id":"MiniMax-M2.7-highspeed","name":"MiniMax-M2.7-highspeed","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2026-03-19","last_updated":"2026-03-19","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":204800,"output":131072},"cost":{"input":0.6,"output":4.8}},"claude-sonnet-4-5":{"id":"claude-sonnet-4-5","name":"claude-sonnet-4-5","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-07-31","release_date":"2025-09-30","last_updated":"2025-09-30","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":3,"output":15}},"gpt-5.4-mini":{"id":"gpt-5.4-mini","name":"gpt-5.4-mini","family":"gpt-mini","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-03-19","last_updated":"2026-03-19","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":0.75,"output":4.5}},"claude-opus-4-6":{"id":"claude-opus-4-6","name":"claude-opus-4-6","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-05-31","release_date":"2026-02-06","last_updated":"2026-03-13","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":5,"output":25}},"gpt-5.1-chat-latest":{"id":"gpt-5.1-chat-latest","name":"gpt-5.1-chat-latest","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-11-14","last_updated":"2025-11-14","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":1.25,"output":10}},"claude-opus-4-6-thinking":{"id":"claude-opus-4-6-thinking","name":"claude-opus-4-6-thinking","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-05","release_date":"2026-02-06","last_updated":"2026-03-13","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":5,"output":25}},"glm-4.5-airx":{"id":"glm-4.5-airx","name":"glm-4.5-airx","family":"glm","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-07-29","last_updated":"2025-07-29","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":0.572,"output":1.714}},"claude-sonnet-4-5-20250929-thinking":{"id":"claude-sonnet-4-5-20250929-thinking","name":"claude-sonnet-4-5-20250929-thinking","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-03","release_date":"2025-09-30","last_updated":"2025-09-30","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":3,"output":15}},"claude-opus-4-7":{"id":"claude-opus-4-7","name":"claude-opus-4-7","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2026-01-31","release_date":"2026-04-17","last_updated":"2026-04-17","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25,"tiers":[{"input":10,"output":37.5,"cache_read":1,"cache_write":12.5,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":10,"output":37.5,"cache_read":1,"cache_write":12.5}}},"glm-4.5-air":{"id":"glm-4.5-air","name":"glm-4.5-air","family":"glm-air","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-07-29","last_updated":"2025-07-29","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":98304},"cost":{"input":0.1143,"output":0.286}},"gemini-3-pro-image-preview":{"id":"gemini-3-pro-image-preview","name":"gemini-3-pro-image-preview","attachment":true,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2025-06","release_date":"2025-11-20","last_updated":"2025-11-20","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":32768,"output":64000},"cost":{"input":2,"output":120}},"gpt-5-thinking":{"id":"gpt-5-thinking","name":"gpt-5-thinking","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2025-08-08","last_updated":"2025-08-08","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":1.25,"output":10}},"grok-4-1-fast-reasoning":{"id":"grok-4-1-fast-reasoning","name":"grok-4-1-fast-reasoning","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-06","release_date":"2025-11-20","last_updated":"2025-11-20","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":2000000,"output":30000},"cost":{"input":0.2,"output":0.5}},"grok-4.20-multi-agent-beta-0309":{"id":"grok-4.20-multi-agent-beta-0309","name":"grok-4.20-multi-agent-beta-0309","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-03-16","last_updated":"2026-03-16","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":2000000,"output":30000},"cost":{"input":2,"output":6}},"gemini-2.5-flash-nothink":{"id":"gemini-2.5-flash-nothink","name":"gemini-2.5-flash-nothink","family":"gemini-flash","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-06-24","last_updated":"2025-06-24","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":65536},"cost":{"input":0.3,"output":2.5}},"glm-5.1":{"id":"glm-5.1","name":"glm-5.1","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-04-10","last_updated":"2026-04-10","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":131072},"cost":{"input":0.86,"output":3.5}},"MiniMax-M2.1":{"id":"MiniMax-M2.1","name":"MiniMax-M2.1","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2025-12-19","last_updated":"2025-12-19","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":131072},"cost":{"input":0.3,"output":1.2}},"gpt-4.1-nano":{"id":"gpt-4.1-nano","name":"gpt-4.1-nano","family":"gpt-nano","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-04","release_date":"2025-04-14","last_updated":"2025-04-14","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1047576,"output":32768},"cost":{"input":0.1,"output":0.4}},"gemini-3.1-flash-image-preview":{"id":"gemini-3.1-flash-image-preview","name":"gemini-3.1-flash-image-preview","attachment":true,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2025-01","release_date":"2026-02-27","last_updated":"2026-02-27","modalities":{"input":["text","image","pdf"],"output":["text","image"]},"open_weights":false,"limit":{"context":131072,"output":32768},"cost":{"input":0.5,"output":60}},"qwen-plus":{"id":"qwen-plus","name":"Qwen-Plus","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2024-07-23","last_updated":"2024-07-23","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":32768},"cost":{"input":0.12,"output":1.2}},"grok-4.20-beta-0309-non-reasoning":{"id":"grok-4.20-beta-0309-non-reasoning","name":"grok-4.20-beta-0309-non-reasoning","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2026-03-16","last_updated":"2026-03-16","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":2000000,"output":30000},"cost":{"input":2,"output":6}}}},"nano-gpt":{"id":"nano-gpt","env":["NANO_GPT_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://nano-gpt.com/api/v1","name":"NanoGPT","doc":"https://docs.nano-gpt.com","models":{"learnlm-1.5-pro-experimental":{"id":"learnlm-1.5-pro-experimental","name":"Gemini LearnLM Experimental","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2024-05-14","last_updated":"2024-05-14","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":32767,"input":32767,"output":8192},"cost":{"input":3.502,"output":10.506}},"claude-sonnet-4-thinking:8192":{"id":"claude-sonnet-4-thinking:8192","name":"Claude 4 Sonnet Thinking (8K)","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2025-05-22","last_updated":"2025-05-22","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"input":1000000,"output":64000},"cost":{"input":2.992,"output":14.994}},"mistral-code-latest":{"id":"mistral-code-latest","name":"Mistral Code Latest","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"release_date":"2026-06-02","last_updated":"2026-06-02","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"input":256000,"output":32768},"cost":{"input":0.3,"output":0.9}},"command-a-reasoning-08-2025":{"id":"command-a-reasoning-08-2025","name":"Cohere Command A (08/2025)","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-08-22","last_updated":"2025-08-22","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"input":256000,"output":8192},"cost":{"input":2.5,"output":10}},"Qwen3.5-27B-BlueStar-v3-Derestricted-Lite":{"id":"Qwen3.5-27B-BlueStar-v3-Derestricted-Lite","name":"Qwen3.5 27B BlueStar v3 Derestricted Lite","attachment":true,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2026-04-30","last_updated":"2026-04-30","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"input":262144,"output":16384},"cost":{"input":0.306,"output":0.306}},"deepclaude":{"id":"deepclaude","name":"DeepClaude","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-02-01","last_updated":"2025-02-01","modalities":{"input":["text","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":8192},"cost":{"input":3,"output":15}},"v0-1.5-lg":{"id":"v0-1.5-lg","name":"v0 1.5 LG","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-07-04","last_updated":"2025-07-04","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"input":1000000,"output":64000},"cost":{"input":15,"output":75}},"Meta-Llama-3-1-8B-Instruct-FP8":{"id":"Meta-Llama-3-1-8B-Instruct-FP8","name":"Llama 3.1 8B (decentralized)","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2024-07-23","last_updated":"2024-07-23","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":16384},"cost":{"input":0.02,"output":0.03}},"Qwen3.5-27B-Marvin-DPO-V2-Derestricted":{"id":"Qwen3.5-27B-Marvin-DPO-V2-Derestricted","name":"Qwen3.5 27B Marvin DPO V2 Derestricted","attachment":true,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2026-04-30","last_updated":"2026-04-30","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"input":262144,"output":16384},"cost":{"input":0.306,"output":0.306}},"gemini-2.5-flash-lite-preview-06-17":{"id":"gemini-2.5-flash-lite-preview-06-17","name":"Gemini 2.5 Flash Lite Preview","attachment":true,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2025-06-17","last_updated":"2025-06-17","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1048756,"input":1048756,"output":65536},"cost":{"input":0.15,"output":0.6}},"glm-4.1v-thinking-flashx":{"id":"glm-4.1v-thinking-flashx","name":"GLM 4.1V Thinking FlashX","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-07-09","last_updated":"2025-07-09","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":64000,"input":64000,"output":8192},"cost":{"input":0.3,"output":0.3}},"Qwen3.5-27B-Derestricted":{"id":"Qwen3.5-27B-Derestricted","name":"Qwen3.5 27B Derestricted","attachment":true,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2026-03-17","last_updated":"2026-03-17","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"input":262144,"output":16384},"cost":{"input":0.306,"output":0.306}},"claude-haiku-4-5-20251001-thinking":{"id":"claude-haiku-4-5-20251001-thinking","name":"Claude Haiku 4.5 Thinking","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2025-10-15","last_updated":"2025-10-15","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"input":200000,"output":64000},"cost":{"input":1,"output":5,"cache_read":0.1}},"gemini-2.0-flash-thinking-exp-1219":{"id":"gemini-2.0-flash-thinking-exp-1219","name":"Gemini 2.0 Flash Thinking 1219","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2024-12-19","last_updated":"2024-12-19","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":32767,"input":32767,"output":8192},"cost":{"input":0.1003,"output":0.408}},"v0-1.0-md":{"id":"v0-1.0-md","name":"v0 1.0 MD","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-07-04","last_updated":"2025-07-04","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"input":200000,"output":64000},"cost":{"input":3,"output":15}},"qwen3-30b-a3b-instruct-2507":{"id":"qwen3-30b-a3b-instruct-2507","name":"Qwen3 30B A3B Instruct 2507","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-02-20","last_updated":"2025-02-20","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"input":256000,"output":32768},"cost":{"input":0.2,"output":0.5}},"gemma-4-31B-K1-v5":{"id":"gemma-4-31B-K1-v5","name":"Gemma 4 31B K1 v5","attachment":true,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2026-05-02","last_updated":"2026-05-02","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"input":262144,"output":16384},"cost":{"input":0.306,"output":0.306}},"glm-4-plus":{"id":"glm-4-plus","name":"GLM-4 Plus","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2024-08-01","last_updated":"2024-08-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":4096},"cost":{"input":7.497,"output":7.497}},"auto-model-basic":{"id":"auto-model-basic","name":"Auto model (Basic)","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2024-06-01","last_updated":"2024-06-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"input":1000000,"output":1000000},"cost":{"input":9.996,"output":19.992}},"jamba-large":{"id":"jamba-large","name":"Jamba Large","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-07-09","last_updated":"2025-07-09","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"input":256000,"output":4096},"cost":{"input":1.989,"output":7.99}},"qwen3.5-122b-a10b":{"id":"qwen3.5-122b-a10b","name":"Qwen3.5 122B A10B","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2026-02-24","last_updated":"2026-02-24","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":260096,"input":260096,"output":65536},"cost":{"input":0.36,"output":2.88}},"gemini-2.5-flash-preview-04-17:thinking":{"id":"gemini-2.5-flash-preview-04-17:thinking","name":"Gemini 2.5 Flash Preview Thinking","attachment":true,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2025-04-17","last_updated":"2025-04-17","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1048756,"input":1048756,"output":65536},"cost":{"input":0.15,"output":3.5}},"doubao-1.5-vision-pro-32k":{"id":"doubao-1.5-vision-pro-32k","name":"Doubao 1.5 Vision Pro 32k","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-01-22","last_updated":"2025-01-22","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":32000,"input":32000,"output":8192},"cost":{"input":0.459,"output":1.377}},"hunyuan-turbos-20250226":{"id":"hunyuan-turbos-20250226","name":"Hunyuan Turbo S","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-02-27","last_updated":"2025-02-27","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":24000,"input":24000,"output":8192},"cost":{"input":0.187,"output":0.374}},"gemini-2.5-flash-preview-09-2025-thinking":{"id":"gemini-2.5-flash-preview-09-2025-thinking","name":"Gemini 2.5 Flash Preview (09/2025) – Thinking","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2025-09-25","last_updated":"2025-09-25","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048756,"input":1048756,"output":65536},"cost":{"input":0.3,"output":2.5}},"gemini-2.0-flash-exp-image-generation":{"id":"gemini-2.0-flash-exp-image-generation","name":"Gemini Text + Image","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-02-19","last_updated":"2025-02-19","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":32767,"input":32767,"output":8192},"cost":{"input":0.2,"output":0.8}},"hermes-high":{"id":"hermes-high","name":"Hermes High","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-05-11","last_updated":"2026-05-11","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"input":1000000,"output":128000},"cost":{"input":4.998,"output":25.007}},"step-r1-v-mini":{"id":"step-r1-v-mini","name":"Step R1 V Mini","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-04-08","last_updated":"2025-04-08","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":65536},"cost":{"input":2.5,"output":11}},"gemini-2.5-flash-preview-05-20":{"id":"gemini-2.5-flash-preview-05-20","name":"Gemini 2.5 Flash 0520","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-05-20","last_updated":"2025-05-20","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1048000,"input":1048000,"output":65536},"cost":{"input":0.15,"output":0.6}},"sonar":{"id":"sonar","name":"Perplexity Simple","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-02-19","last_updated":"2025-02-19","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":127000,"input":127000,"output":128000},"cost":{"input":1.003,"output":1.003}},"yi-large":{"id":"yi-large","name":"Yi Large","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2024-05-13","last_updated":"2024-05-13","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":32000,"input":32000,"output":4096},"cost":{"input":3.196,"output":3.196}},"Qwen3.5-27B-Omega-Evolution-v2.0-Derestricted-Lite":{"id":"Qwen3.5-27B-Omega-Evolution-v2.0-Derestricted-Lite","name":"Qwen3.5 27B Omega Evolution v2.0 Derestricted Lite","attachment":true,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2026-04-06","last_updated":"2026-04-06","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"input":262144,"output":16384},"cost":{"input":0.306,"output":0.306}},"doubao-seed-2-0-code-preview-260215":{"id":"doubao-seed-2-0-code-preview-260215","name":"Doubao Seed 2.0 Code Preview","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2026-02-14","last_updated":"2026-02-14","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"input":256000,"output":128000},"cost":{"input":0.782,"output":3.893}},"ernie-4.5-turbo-128k":{"id":"ernie-4.5-turbo-128k","name":"Ernie 4.5 Turbo 128k","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-05-08","last_updated":"2025-05-08","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":16384},"cost":{"input":0.132,"output":0.55}},"gemini-2.0-flash-001":{"id":"gemini-2.0-flash-001","name":"Gemini 2.0 Flash","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"release_date":"2024-12-11","last_updated":"2024-12-11","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"input":1000000,"output":8192},"cost":{"input":0.1003,"output":0.408}},"Gemma-4-31B-it":{"id":"Gemma-4-31B-it","name":"Gemma 4 31B IT","attachment":true,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2026-04-09","last_updated":"2026-04-09","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"input":262144,"output":16384},"cost":{"input":0.306,"output":0.306}},"gemini-2.0-pro-exp-02-05":{"id":"gemini-2.0-pro-exp-02-05","name":"Gemini 2.0 Pro 0205","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-02-05","last_updated":"2025-02-05","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":2097152,"input":2097152,"output":8192},"cost":{"input":1.989,"output":7.956}},"claw-high":{"id":"claw-high","name":"Claw High","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-05-11","last_updated":"2026-05-11","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"input":1000000,"output":128000},"cost":{"input":4.998,"output":25.007}},"claude-opus-4-1-thinking:32000":{"id":"claude-opus-4-1-thinking:32000","name":"Claude 4.1 Opus Thinking (32K)","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2025-05-22","last_updated":"2025-05-22","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"input":200000,"output":32000},"cost":{"input":14.994,"output":75.004}},"claude-opus-4-thinking:32768":{"id":"claude-opus-4-thinking:32768","name":"Claude 4 Opus Thinking (32K)","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2025-05-22","last_updated":"2025-05-22","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"input":200000,"output":32000},"cost":{"input":14.994,"output":75.004}},"Gemma-4-31B-Claude-4.6-Opus-Reasoning-Distilled":{"id":"Gemma-4-31B-Claude-4.6-Opus-Reasoning-Distilled","name":"Gemma 4 31B Claude 4.6 Opus Reasoning Distilled","attachment":true,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2026-05-01","last_updated":"2026-05-01","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"input":262144,"output":16384},"cost":{"input":0.306,"output":0.306,"cache_read":0.0306}},"exa-research":{"id":"exa-research","name":"Exa (Research)","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-06-04","last_updated":"2025-06-04","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":8192,"input":8192,"output":8192},"cost":{"input":2.5,"output":2.5}},"Qwen3.5-27B-Omega-Evolution-v2.2-Derestricted-Lite":{"id":"Qwen3.5-27B-Omega-Evolution-v2.2-Derestricted-Lite","name":"Qwen3.5 27B Omega Evolution v2.2 Derestricted Lite","attachment":true,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2026-05-02","last_updated":"2026-05-02","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"input":262144,"output":16384},"cost":{"input":0.306,"output":0.306}},"Qwen3.5-27B-Vivid-Durian":{"id":"Qwen3.5-27B-Vivid-Durian","name":"Qwen3.5 27B Vivid Durian","attachment":true,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2026-03-18","last_updated":"2026-03-18","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"input":262144,"output":16384},"cost":{"input":0.306,"output":0.306}},"deepseek-v3-0324":{"id":"deepseek-v3-0324","name":"DeepSeek Chat 0324","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"release_date":"2025-03-24","last_updated":"2025-03-24","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":8192},"cost":{"input":0.25,"output":0.7}},"azure-gpt-4o":{"id":"azure-gpt-4o","name":"Azure gpt-4o","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"release_date":"2024-05-13","last_updated":"2024-05-13","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":16384},"cost":{"input":2.499,"output":9.996}},"ernie-x1-32k-preview":{"id":"ernie-x1-32k-preview","name":"Ernie X1 32k","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-04-03","last_updated":"2025-04-03","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":32000,"input":32000,"output":16384},"cost":{"input":0.33,"output":1.32}},"qwen3-coder-30b-a3b-instruct":{"id":"qwen3-coder-30b-a3b-instruct","name":"Qwen3 Coder 30B A3B Instruct","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":65536},"cost":{"input":0.1,"output":0.4}},"doubao-seed-2-0-lite-260215":{"id":"doubao-seed-2-0-lite-260215","name":"Doubao Seed 2.0 Lite","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2026-02-14","last_updated":"2026-02-14","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"input":256000,"output":32000},"cost":{"input":0.1462,"output":0.8738}},"gemini-2.5-pro-preview-06-05":{"id":"gemini-2.5-pro-preview-06-05","name":"Gemini 2.5 Pro Preview 0605","attachment":true,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2025-06-05","last_updated":"2025-06-05","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1048756,"input":1048756,"output":65536},"cost":{"input":2.5,"output":10}},"claude-haiku-4-5-20251001":{"id":"claude-haiku-4-5-20251001","name":"Claude Haiku 4.5","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"release_date":"2025-10-15","last_updated":"2025-10-15","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"input":200000,"output":64000},"cost":{"input":1,"output":5}},"MiniMax-M1":{"id":"MiniMax-M1","name":"MiniMax M1","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-06-16","last_updated":"2025-06-16","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"input":1000000,"output":131072},"cost":{"input":0.1394,"output":1.3328}},"command-a-plus-05-2026":{"id":"command-a-plus-05-2026","name":"Cohere Command A+ (05/2026)","attachment":true,"reasoning":true,"tool_call":false,"structured_output":true,"release_date":"2026-05-22","last_updated":"2026-05-22","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":64000},"cost":{"input":2.5,"output":10}},"qwen3.7-plus:thinking":{"id":"qwen3.7-plus:thinking","name":"Qwen3.7 Plus Thinking","attachment":true,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2026-06-01","last_updated":"2026-06-01","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":983616,"input":983616,"output":65536},"cost":{"input":0.4,"output":1.6,"cache_read":0.04}},"Baichuan-M2":{"id":"Baichuan-M2","name":"Baichuan M2 32B Medical","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-08-19","last_updated":"2025-08-19","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":32768,"input":32768,"output":32768},"cost":{"input":15.73,"output":15.73}},"Qwen3.5-27B-Infracelestial":{"id":"Qwen3.5-27B-Infracelestial","name":"Qwen3.5 27B Infracelestial","attachment":true,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2026-04-30","last_updated":"2026-04-30","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"input":262144,"output":16384},"cost":{"input":0.306,"output":0.306}},"asi1-mini":{"id":"asi1-mini","name":"ASI1 Mini","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-03-25","last_updated":"2025-03-25","modalities":{"input":["text","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":16384},"cost":{"input":1,"output":1}},"venice-uncensored":{"id":"venice-uncensored","name":"Venice Uncensored","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-02-24","last_updated":"2025-02-24","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":16384},"cost":{"input":0.4,"output":0.4}},"Qwen3.5-27B-NaNovel-Derestricted-Lite":{"id":"Qwen3.5-27B-NaNovel-Derestricted-Lite","name":"Qwen3.5 27B NaNovel Derestricted Lite","attachment":true,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2026-04-30","last_updated":"2026-04-30","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"input":262144,"output":16384},"cost":{"input":0.306,"output":0.306}},"glm-4-air":{"id":"glm-4-air","name":"GLM-4 Air","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2024-06-05","last_updated":"2024-06-05","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":4096},"cost":{"input":0.2006,"output":0.2006}},"Qwen3.5-27B-Writer-V2-Derestricted-Lite":{"id":"Qwen3.5-27B-Writer-V2-Derestricted-Lite","name":"Qwen3.5 27B Writer V2 Derestricted Lite","attachment":true,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2026-04-06","last_updated":"2026-04-06","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"input":262144,"output":16384},"cost":{"input":0.306,"output":0.306}},"gemini-2.5-flash-lite-preview-09-2025-thinking":{"id":"gemini-2.5-flash-lite-preview-09-2025-thinking","name":"Gemini 2.5 Flash Lite Preview (09/2025) – Thinking","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2025-09-25","last_updated":"2025-09-25","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048756,"input":1048756,"output":65536},"cost":{"input":0.1,"output":0.4}},"venice-uncensored:web":{"id":"venice-uncensored:web","name":"Venice Uncensored Web","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2024-05-01","last_updated":"2024-05-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":80000,"input":80000,"output":16384},"cost":{"input":0.4,"output":0.4}},"deepseek-r1-sambanova":{"id":"deepseek-r1-sambanova","name":"DeepSeek R1 Fast","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-02-20","last_updated":"2025-02-20","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":4096},"cost":{"input":4.998,"output":6.987}},"Gemma-4-31B-GarnetV2":{"id":"Gemma-4-31B-GarnetV2","name":"Gemma 4 31B Garnet V2","attachment":true,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2026-05-01","last_updated":"2026-05-01","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"input":262144,"output":16384},"cost":{"input":0.306,"output":0.306}},"holo3-35b-a3b:thinking":{"id":"holo3-35b-a3b:thinking","name":"Holo3-35B-A3B Thinking","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2024-01-01","last_updated":"2024-01-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":65536,"input":65536,"output":65536},"cost":{"input":0.25,"output":1.8}},"kimi-thinking-preview":{"id":"kimi-thinking-preview","name":"Kimi Thinking Preview","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-05-07","last_updated":"2025-05-07","modalities":{"input":["text","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":16384},"cost":{"input":31.46,"output":31.46}},"Baichuan4-Turbo":{"id":"Baichuan4-Turbo","name":"Baichuan 4 Turbo","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-08-19","last_updated":"2025-08-19","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":32768},"cost":{"input":2.42,"output":2.42}},"glm-4-long":{"id":"glm-4-long","name":"GLM-4 Long","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2024-08-01","last_updated":"2024-08-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"input":1000000,"output":4096},"cost":{"input":0.2006,"output":0.2006}},"brave":{"id":"brave","name":"Brave (Answers)","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2023-03-02","last_updated":"2024-01-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":8192,"input":8192,"output":8192},"cost":{"input":5,"output":5}},"Qwen3.5-27B-Musica-v1":{"id":"Qwen3.5-27B-Musica-v1","name":"Qwen3.5 27B Musica v1","attachment":true,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2026-03-27","last_updated":"2026-03-27","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"input":262144,"output":16384},"cost":{"input":0.306,"output":0.306}},"Qwen3.5-27B-Writer-V2-Derestricted":{"id":"Qwen3.5-27B-Writer-V2-Derestricted","name":"Qwen3.5 27B Writer V2 Derestricted","attachment":true,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2026-04-06","last_updated":"2026-04-06","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"input":262144,"output":16384},"cost":{"input":0.306,"output":0.306}},"sonar-pro":{"id":"sonar-pro","name":"Perplexity Pro","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-02-19","last_updated":"2025-02-19","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"input":200000,"output":128000},"cost":{"input":2.992,"output":14.994}},"glm-4":{"id":"glm-4","name":"GLM-4","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2024-01-16","last_updated":"2024-01-16","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":4096},"cost":{"input":14.994,"output":14.994}},"doubao-seed-1-8-251215":{"id":"doubao-seed-1-8-251215","name":"Doubao Seed 1.8","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-12-15","last_updated":"2025-12-15","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":8192},"cost":{"input":0.612,"output":6.12}},"Qwen2.5-32B-EVA-v0.2":{"id":"Qwen2.5-32B-EVA-v0.2","name":"Qwen 2.5 32b EVA","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2024-09-01","last_updated":"2024-09-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":24576,"input":24576,"output":8192},"cost":{"input":0.493,"output":0.493}},"claw-low":{"id":"claw-low","name":"Claw Low","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-05-11","last_updated":"2026-05-11","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"input":1048576,"output":65536},"cost":{"input":0.25,"output":1.5,"cache_read":0.025}},"claude-opus-4-20250514":{"id":"claude-opus-4-20250514","name":"Claude 4 Opus","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"release_date":"2025-05-14","last_updated":"2025-05-14","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"input":200000,"output":32000},"cost":{"input":14.994,"output":75.004}},"Qwen3.5-27B-NaNovel-Derestricted":{"id":"Qwen3.5-27B-NaNovel-Derestricted","name":"Qwen3.5 27B NaNovel Derestricted","attachment":true,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2026-04-30","last_updated":"2026-04-30","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"input":262144,"output":16384},"cost":{"input":0.306,"output":0.306}},"Magistral-Small-2506":{"id":"Magistral-Small-2506","name":"Magistral Small 2506","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-09-25","last_updated":"2025-09-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":32768,"input":32768,"output":32768},"cost":{"input":0.4,"output":1.4}},"Qwen3.5-27B-Queen-Derestricted-Lite":{"id":"Qwen3.5-27B-Queen-Derestricted-Lite","name":"Qwen3.5 27B Queen Derestricted Lite","attachment":true,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2026-04-30","last_updated":"2026-04-30","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"input":262144,"output":16384},"cost":{"input":0.306,"output":0.306}},"deepseek-reasoner":{"id":"deepseek-reasoner","name":"DeepSeek Reasoner","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-01-20","last_updated":"2025-01-20","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":64000,"input":64000,"output":65536},"cost":{"input":0.4,"output":1.7}},"exa-answer":{"id":"exa-answer","name":"Exa (Answer)","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-06-04","last_updated":"2025-06-04","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":4096,"input":4096,"output":4096},"cost":{"input":2.5,"output":2.5}},"doubao-1.5-pro-256k":{"id":"doubao-1.5-pro-256k","name":"Doubao 1.5 Pro 256k","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-03-12","last_updated":"2025-03-12","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"input":256000,"output":16384},"cost":{"input":0.799,"output":1.445}},"gemma-4-31B-Larkspur-v0.5":{"id":"gemma-4-31B-Larkspur-v0.5","name":"Gemma 4 31B Larkspur v0.5","attachment":true,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2026-05-02","last_updated":"2026-05-02","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"input":262144,"output":16384},"cost":{"input":0.306,"output":0.306}},"qwen3.5-flash:thinking":{"id":"qwen3.5-flash:thinking","name":"Qwen3.5 Flash Thinking","attachment":true,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2026-02-24","last_updated":"2026-02-24","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":991808,"input":991808,"output":65536},"cost":{"input":0.09,"output":0.36}},"KAT-Coder-Exp-72B-1010":{"id":"KAT-Coder-Exp-72B-1010","name":"KAT Coder Exp 72B 1010","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-10-28","last_updated":"2025-10-28","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":32768},"cost":{"input":0.1,"output":0.2}},"exa-research-pro":{"id":"exa-research-pro","name":"Exa (Research Pro)","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-06-04","last_updated":"2025-06-04","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":16384,"input":16384,"output":16384},"cost":{"input":2.5,"output":2.5}},"ernie-4.5-turbo-vl-32k":{"id":"ernie-4.5-turbo-vl-32k","name":"Ernie 4.5 Turbo VL 32k","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-05-08","last_updated":"2025-05-08","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":32000,"input":32000,"output":16384},"cost":{"input":0.495,"output":1.43}},"claude-opus-4-thinking:32000":{"id":"claude-opus-4-thinking:32000","name":"Claude 4 Opus Thinking (32K)","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2025-05-22","last_updated":"2025-05-22","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"input":200000,"output":32000},"cost":{"input":14.994,"output":75.004}},"qwen3-vl-235b-a22b-instruct-original":{"id":"qwen3-vl-235b-a22b-instruct-original","name":"Qwen3 VL 235B A22B Instruct Original","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-09-25","last_updated":"2025-09-25","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":32768,"input":32768,"output":32768},"cost":{"input":0.5,"output":1.2}},"yi-lightning":{"id":"yi-lightning","name":"Yi Lightning","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2024-10-16","last_updated":"2024-10-16","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":12000,"input":12000,"output":4096},"cost":{"input":0.2006,"output":0.2006}},"azure-o1":{"id":"azure-o1","name":"Azure o1","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2024-12-17","last_updated":"2024-12-17","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"input":200000,"output":100000},"cost":{"input":14.994,"output":59.993}},"mirothinker-1-7-deepresearch-mini":{"id":"mirothinker-1-7-deepresearch-mini","name":"MiroThinker 1.7 Deep Research Mini","attachment":false,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2026-05-11","last_updated":"2026-05-11","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"input":262144,"output":16384},"cost":{"input":1.25,"output":10}},"mistral-code-agent-latest":{"id":"mistral-code-agent-latest","name":"Mistral Code Agent Latest","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"release_date":"2026-06-02","last_updated":"2026-06-02","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"input":262144,"output":32768},"cost":{"input":0.4,"output":2}},"Gemma-4-31B-DarkIdol":{"id":"Gemma-4-31B-DarkIdol","name":"Gemma 4 31B DarkIdol","attachment":true,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2026-05-01","last_updated":"2026-05-01","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"input":262144,"output":16384},"cost":{"input":0.306,"output":0.306}},"jamba-mini-1.6":{"id":"jamba-mini-1.6","name":"Jamba Mini 1.6","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-03-01","last_updated":"2025-03-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"input":256000,"output":4096},"cost":{"input":0.1989,"output":0.408}},"hermes-low":{"id":"hermes-low","name":"Hermes Low","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-05-11","last_updated":"2026-05-11","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"input":1048576,"output":65536},"cost":{"input":0.25,"output":1.5,"cache_read":0.025}},"Qwen3.5-27B-BlueStar-Derestricted":{"id":"Qwen3.5-27B-BlueStar-Derestricted","name":"Qwen3.5 27B BlueStar Derestricted","attachment":true,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2026-04-06","last_updated":"2026-04-06","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"input":262144,"output":16384},"cost":{"input":0.306,"output":0.306}},"Qwen3.5-27B-Marvin-V2-Derestricted-Lite":{"id":"Qwen3.5-27B-Marvin-V2-Derestricted-Lite","name":"Qwen3.5 27B Marvin V2 Derestricted Lite","attachment":true,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2026-04-30","last_updated":"2026-04-30","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"input":262144,"output":16384},"cost":{"input":0.306,"output":0.306}},"ernie-x1-32k":{"id":"ernie-x1-32k","name":"Ernie X1 32k","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-05-08","last_updated":"2025-05-08","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":32000,"input":32000,"output":16384},"cost":{"input":0.33,"output":1.32}},"claude-sonnet-4-thinking:1024":{"id":"claude-sonnet-4-thinking:1024","name":"Claude 4 Sonnet Thinking (1K)","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2025-05-22","last_updated":"2025-05-22","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"input":1000000,"output":64000},"cost":{"input":2.992,"output":14.994}},"gemini-2.5-flash-preview-04-17":{"id":"gemini-2.5-flash-preview-04-17","name":"Gemini 2.5 Flash Preview","attachment":true,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2025-04-17","last_updated":"2025-04-17","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1048756,"input":1048756,"output":65536},"cost":{"input":0.15,"output":0.6}},"hermes-medium":{"id":"hermes-medium","name":"Hermes Medium","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-05-11","last_updated":"2026-05-11","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":204800,"input":204800,"output":131072},"cost":{"input":0.3,"output":1.2}},"Qwen3.5-27B-Marvin-DPO-V2-Derestricted-Lite":{"id":"Qwen3.5-27B-Marvin-DPO-V2-Derestricted-Lite","name":"Qwen3.5 27B Marvin DPO V2 Derestricted Lite","attachment":true,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2026-04-30","last_updated":"2026-04-30","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"input":262144,"output":16384},"cost":{"input":0.306,"output":0.306}},"gemma-4-31B-MeroMero":{"id":"gemma-4-31B-MeroMero","name":"Gemma 4 31B MeroMero","attachment":true,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2026-05-02","last_updated":"2026-05-02","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"input":262144,"output":16384},"cost":{"input":0.306,"output":0.306}},"ernie-5.0-thinking-preview":{"id":"ernie-5.0-thinking-preview","name":"Ernie 5.0 Thinking Preview","attachment":true,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2025-11-18","last_updated":"2025-11-18","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":16384},"cost":{"input":1.1,"output":2}},"Gemma-4-31B-Queen":{"id":"Gemma-4-31B-Queen","name":"Gemma 4 31B Queen","attachment":true,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2026-05-01","last_updated":"2026-05-01","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"input":262144,"output":16384},"cost":{"input":0.306,"output":0.306}},"kimi-k2-instruct-fast":{"id":"kimi-k2-instruct-fast","name":"Kimi K2 0711 Fast","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-07-15","last_updated":"2025-07-15","modalities":{"input":["text","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"input":131072,"output":16384},"cost":{"input":0.1,"output":2}},"Qwen3.5-27B-Queen-Derestricted":{"id":"Qwen3.5-27B-Queen-Derestricted","name":"Qwen3.5 27B Queen Derestricted","attachment":true,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2026-04-30","last_updated":"2026-04-30","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"input":262144,"output":16384},"cost":{"input":0.306,"output":0.306}},"deepseek-r1":{"id":"deepseek-r1","name":"DeepSeek R1","attachment":false,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2025-01-20","last_updated":"2025-01-20","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":8192},"cost":{"input":0.4,"output":1.7}},"gemini-2.5-pro-preview-05-06":{"id":"gemini-2.5-pro-preview-05-06","name":"Gemini 2.5 Pro Preview 0506","attachment":true,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2025-05-06","last_updated":"2025-05-06","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1048756,"input":1048756,"output":65536},"cost":{"input":2.5,"output":10}},"qwen3.5-flash":{"id":"qwen3.5-flash","name":"Qwen3.5 Flash","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2026-02-24","last_updated":"2026-02-24","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":991808,"input":991808,"output":65536},"cost":{"input":0.09,"output":0.36}},"phi-4-multimodal-instruct":{"id":"phi-4-multimodal-instruct","name":"Phi 4 Multimodal","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-07-26","last_updated":"2025-07-26","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":16384},"cost":{"input":0.07,"output":0.11}},"qwen3.7-max":{"id":"qwen3.7-max","name":"Qwen3.7 Max","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2026-05-21","last_updated":"2026-05-21","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"input":1000000,"output":65536},"cost":{"input":2.5,"output":7.5,"cache_read":0.25}},"azure-gpt-4-turbo":{"id":"azure-gpt-4-turbo","name":"Azure gpt-4-turbo","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2023-11-06","last_updated":"2024-01-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":4096},"cost":{"input":9.996,"output":30.005}},"sonar-reasoning-pro":{"id":"sonar-reasoning-pro","name":"Perplexity Reasoning Pro","attachment":false,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2025-02-19","last_updated":"2025-02-19","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":127000,"input":127000,"output":128000},"cost":{"input":2.006,"output":7.9985}},"gemini-2.5-pro":{"id":"gemini-2.5-pro","name":"Gemini 2.5 Pro","attachment":true,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2025-06-05","last_updated":"2025-06-05","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1048756,"input":1048756,"output":65536},"cost":{"input":2.5,"output":10}},"KAT-Coder-Air-V1":{"id":"KAT-Coder-Air-V1","name":"KAT Coder Air V1","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-10-28","last_updated":"2025-10-28","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":32768},"cost":{"input":0.1,"output":0.2}},"glm-4-air-0111":{"id":"glm-4-air-0111","name":"GLM 4 Air 0111","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-01-11","last_updated":"2025-01-11","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":4096},"cost":{"input":0.1394,"output":0.1394}},"doubao-1.5-pro-32k":{"id":"doubao-1.5-pro-32k","name":"Doubao 1.5 Pro 32k","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-01-22","last_updated":"2025-01-22","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":32000,"input":32000,"output":8192},"cost":{"input":0.1343,"output":0.3349}},"qwen3.5-omni-plus":{"id":"qwen3.5-omni-plus","name":"Qwen3.5 Omni Plus","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2026-03-30","last_updated":"2026-03-30","modalities":{"input":["text","image","video","audio"],"output":["text"]},"open_weights":false,"limit":{"context":983616,"input":983616,"output":65536},"cost":{"input":0,"output":0}},"doubao-seed-1-6-flash-250615":{"id":"doubao-seed-1-6-flash-250615","name":"Doubao Seed 1.6 Flash","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-06-15","last_updated":"2025-06-15","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"input":256000,"output":16384},"cost":{"input":0.0374,"output":0.374}},"mirothinker-1-7-deepresearch":{"id":"mirothinker-1-7-deepresearch","name":"MiroThinker 1.7 Deep Research","attachment":false,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2026-05-11","last_updated":"2026-05-11","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"input":262144,"output":16384},"cost":{"input":4,"output":25}},"azure-o3-mini":{"id":"azure-o3-mini","name":"Azure o3-mini","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-01-31","last_updated":"2025-01-31","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"input":200000,"output":65536},"cost":{"input":1.088,"output":4.3996}},"claude-sonnet-4-5-20250929":{"id":"claude-sonnet-4-5-20250929","name":"Claude Sonnet 4.5","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"release_date":"2025-09-29","last_updated":"2025-09-29","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"input":1000000,"output":64000},"cost":{"input":2.992,"output":14.994}},"claude-3-5-haiku-20241022":{"id":"claude-3-5-haiku-20241022","name":"Claude 3.5 Haiku","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"release_date":"2024-10-22","last_updated":"2024-10-22","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"input":200000,"output":8192},"cost":{"input":0.8,"output":4}},"deepseek-chat":{"id":"deepseek-chat","name":"DeepSeek V3/Deepseek Chat","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"release_date":"2025-02-27","last_updated":"2025-02-27","modalities":{"input":["text","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":8192},"cost":{"input":0.25,"output":0.7}},"gemini-2.0-flash-thinking-exp-01-21":{"id":"gemini-2.0-flash-thinking-exp-01-21","name":"Gemini 2.0 Flash Thinking 0121","attachment":true,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2025-01-21","last_updated":"2025-01-21","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"input":1000000,"output":8192},"cost":{"input":0.306,"output":1.003}},"phi-4-mini-instruct":{"id":"phi-4-mini-instruct","name":"Phi 4 Mini","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-07-26","last_updated":"2025-07-26","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":16384},"cost":{"input":0.17,"output":0.68}},"claw-medium":{"id":"claw-medium","name":"Claw Medium","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-05-11","last_updated":"2026-05-11","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":204800,"input":204800,"output":131072},"cost":{"input":0.3,"output":1.2}},"Qwen3.5-27B-BlueStar-v2-Derestricted":{"id":"Qwen3.5-27B-BlueStar-v2-Derestricted","name":"Qwen3.5 27B BlueStar v2 Derestricted","attachment":true,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2026-04-06","last_updated":"2026-04-06","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"input":262144,"output":16384},"cost":{"input":0.306,"output":0.306}},"claude-opus-4-1-20250805":{"id":"claude-opus-4-1-20250805","name":"Claude 4.1 Opus","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"input":200000,"output":32000},"cost":{"input":14.994,"output":75.004}},"qwen3.5-omni-flash":{"id":"qwen3.5-omni-flash","name":"Qwen3.5 Omni Flash","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2026-03-30","last_updated":"2026-03-30","modalities":{"input":["text","image","video","audio"],"output":["text"]},"open_weights":false,"limit":{"context":49152,"input":49152,"output":16384},"cost":{"input":0,"output":0}},"qwen-max":{"id":"qwen-max","name":"Qwen 2.5 Max","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2024-04-03","last_updated":"2024-04-03","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":32000,"input":32000,"output":8192},"cost":{"input":1.5997,"output":6.392}},"doubao-1-5-thinking-pro-250415":{"id":"doubao-1-5-thinking-pro-250415","name":"Doubao 1.5 Thinking Pro","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-04-17","last_updated":"2025-04-17","modalities":{"input":["text","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":16384},"cost":{"input":0.6,"output":2.4}},"jamba-large-1.7":{"id":"jamba-large-1.7","name":"Jamba Large 1.7","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-07-09","last_updated":"2025-07-09","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"input":256000,"output":4096},"cost":{"input":1.989,"output":7.99}},"brave-pro":{"id":"brave-pro","name":"Brave (Pro)","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2023-03-02","last_updated":"2024-01-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":8192,"input":8192,"output":8192},"cost":{"input":5,"output":5}},"jamba-mini-1.7":{"id":"jamba-mini-1.7","name":"Jamba Mini 1.7","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-07-09","last_updated":"2025-07-09","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"input":256000,"output":4096},"cost":{"input":0.1989,"output":0.408}},"sarvam-105b":{"id":"sarvam-105b","name":"Sarvam 105B","attachment":false,"reasoning":true,"tool_call":true,"structured_output":false,"release_date":"2026-05-12","last_updated":"2026-05-12","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"input":131072,"output":4096},"cost":{"input":0.045,"output":0.177,"cache_read":0.028}},"v0-1.5-md":{"id":"v0-1.5-md","name":"v0 1.5 MD","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-07-04","last_updated":"2025-07-04","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"input":200000,"output":64000},"cost":{"input":3,"output":15}},"glm-zero-preview":{"id":"glm-zero-preview","name":"GLM Zero Preview","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2024-12-01","last_updated":"2024-12-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":8000,"input":8000,"output":4096},"cost":{"input":1.802,"output":1.802}},"gemini-2.5-flash-lite":{"id":"gemini-2.5-flash-lite","name":"Gemini 2.5 Flash Lite","attachment":true,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2025-06-17","last_updated":"2025-06-17","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1048756,"input":1048756,"output":65536},"cost":{"input":0.1,"output":0.4}},"sarvam-30b":{"id":"sarvam-30b","name":"Sarvam 30B","attachment":false,"reasoning":true,"tool_call":true,"structured_output":false,"release_date":"2026-05-12","last_updated":"2026-05-12","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":65536,"input":65536,"output":4096},"cost":{"input":0.028,"output":0.111,"cache_read":0.017}},"gemini-2.5-flash":{"id":"gemini-2.5-flash","name":"Gemini 2.5 Flash","attachment":true,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2025-06-05","last_updated":"2025-06-05","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1048756,"input":1048756,"output":65536},"cost":{"input":0.3,"output":2.5}},"azure-gpt-4o-mini":{"id":"azure-gpt-4o-mini","name":"Azure gpt-4o-mini","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"release_date":"2024-07-18","last_updated":"2024-07-18","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":16384},"cost":{"input":0.1496,"output":0.595}},"qwen3.5-35b-a3b":{"id":"qwen3.5-35b-a3b","name":"Qwen3.5 35B A3B","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2026-02-24","last_updated":"2026-02-24","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":260096,"input":260096,"output":65536},"cost":{"input":0.225,"output":1.8}},"ernie-5.1:thinking":{"id":"ernie-5.1:thinking","name":"ERNIE 5.1 Thinking","attachment":true,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2026-05-10","last_updated":"2026-05-10","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":119000,"input":119000,"output":64000},"cost":{"input":0.75,"output":3,"cache_read":0.75}},"claude-sonnet-4-thinking:64000":{"id":"claude-sonnet-4-thinking:64000","name":"Claude 4 Sonnet Thinking (64K)","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2025-05-22","last_updated":"2025-05-22","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"input":1000000,"output":64000},"cost":{"input":2.992,"output":14.994}},"deepseek-reasoner-cheaper":{"id":"deepseek-reasoner-cheaper","name":"Deepseek R1 Cheaper","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-01-20","last_updated":"2025-01-20","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":65536},"cost":{"input":0.4,"output":1.7}},"Gemma-4-31B-Gemopus":{"id":"Gemma-4-31B-Gemopus","name":"Gemma 4 31B Gemopus","attachment":true,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2026-05-01","last_updated":"2026-05-01","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"input":262144,"output":16384},"cost":{"input":0.306,"output":0.306}},"gemini-2.5-flash-preview-09-2025":{"id":"gemini-2.5-flash-preview-09-2025","name":"Gemini 2.5 Flash Preview (09/2025)","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2025-09-25","last_updated":"2025-09-25","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048756,"input":1048756,"output":65536},"cost":{"input":0.3,"output":2.5}},"auto-model-standard":{"id":"auto-model-standard","name":"Auto model (Standard)","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2024-06-01","last_updated":"2024-06-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"input":1000000,"output":1000000},"cost":{"input":9.996,"output":19.992}},"Gemma-4-31B-Musica-v1":{"id":"Gemma-4-31B-Musica-v1","name":"Gemma 4 31B Musica v1","attachment":true,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2026-05-01","last_updated":"2026-05-01","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"input":262144,"output":16384},"cost":{"input":0.306,"output":0.306}},"mistral-small-31-24b-instruct":{"id":"mistral-small-31-24b-instruct","name":"Mistral Small 31 24b Instruct","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-04-15","last_updated":"2025-04-15","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":131072},"cost":{"input":0.1,"output":0.3}},"gemini-2.0-pro-reasoner":{"id":"gemini-2.0-pro-reasoner","name":"Gemini 2.0 Pro Reasoner","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-02-05","last_updated":"2025-02-05","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":65536},"cost":{"input":1.292,"output":4.998}},"glm-z1-air":{"id":"glm-z1-air","name":"GLM Z1 Air","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"release_date":"2025-04-15","last_updated":"2025-04-15","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":32000,"input":32000,"output":16384},"cost":{"input":0.07,"output":0.07}},"qwen-turbo":{"id":"qwen-turbo","name":"Qwen Turbo","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2024-11-01","last_updated":"2024-11-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"input":1000000,"output":8192},"cost":{"input":0.04998,"output":0.2006}},"fastgpt":{"id":"fastgpt","name":"Web Answer","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2023-08-01","last_updated":"2024-01-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":32768,"input":32768,"output":32768},"cost":{"input":7.5,"output":7.5}},"gemini-exp-1206":{"id":"gemini-exp-1206","name":"Gemini 2.0 Pro 1206","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2024-12-06","last_updated":"2024-12-06","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":2097152,"input":2097152,"output":8192},"cost":{"input":1.258,"output":4.998}},"Qwen3.5-27B-earica-Derestricted-Lite":{"id":"Qwen3.5-27B-earica-Derestricted-Lite","name":"Qwen3.5 27B earica Derestricted Lite","attachment":true,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2026-04-30","last_updated":"2026-04-30","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"input":262144,"output":16384},"cost":{"input":0.306,"output":0.306}},"gemini-2.5-flash-nothinking":{"id":"gemini-2.5-flash-nothinking","name":"Gemini 2.5 Flash (No Thinking)","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-06-05","last_updated":"2025-06-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048756,"input":1048756,"output":65536},"cost":{"input":0.3,"output":2.5}},"Qwen3.5-27B-Anko":{"id":"Qwen3.5-27B-Anko","name":"Qwen3.5 27B Anko","attachment":true,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2026-04-30","last_updated":"2026-04-30","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"input":262144,"output":16384},"cost":{"input":0.306,"output":0.306}},"auto-model":{"id":"auto-model","name":"Auto model","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2024-06-01","last_updated":"2024-06-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"input":1000000,"output":1000000},"cost":{"input":0,"output":0}},"ernie-4.5-8k-preview":{"id":"ernie-4.5-8k-preview","name":"Ernie 4.5 8k Preview","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-03-25","last_updated":"2025-03-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":8000,"input":8000,"output":16384},"cost":{"input":0.66,"output":2.6}},"doubao-seed-1-6-250615":{"id":"doubao-seed-1-6-250615","name":"Doubao Seed 1.6","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-06-15","last_updated":"2025-06-15","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"input":256000,"output":16384},"cost":{"input":0.204,"output":0.51}},"step-2-16k-exp":{"id":"step-2-16k-exp","name":"Step-2 16k Exp","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2024-07-05","last_updated":"2024-07-05","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":16000,"input":16000,"output":8192},"cost":{"input":7.004,"output":19.992}},"step-2-mini":{"id":"step-2-mini","name":"Step-2 Mini","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2024-07-05","last_updated":"2024-07-05","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":8000,"input":8000,"output":4096},"cost":{"input":0.2006,"output":0.408}},"gemini-2.5-flash-lite-preview-09-2025":{"id":"gemini-2.5-flash-lite-preview-09-2025","name":"Gemini 2.5 Flash Lite Preview (09/2025)","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2025-09-25","last_updated":"2025-09-25","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048756,"input":1048756,"output":65536},"cost":{"input":0.1,"output":0.4}},"ernie-5.1":{"id":"ernie-5.1","name":"ERNIE 5.1","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2026-05-10","last_updated":"2026-05-10","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":119000,"input":119000,"output":64000},"cost":{"input":0.75,"output":3,"cache_read":0.75}},"claude-opus-4-thinking:1024":{"id":"claude-opus-4-thinking:1024","name":"Claude 4 Opus Thinking (1K)","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2025-05-22","last_updated":"2025-05-22","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"input":200000,"output":32000},"cost":{"input":14.994,"output":75.004}},"Qwen3.5-27B-BlueStar-v3-Derestricted":{"id":"Qwen3.5-27B-BlueStar-v3-Derestricted","name":"Qwen3.5 27B BlueStar v3 Derestricted","attachment":true,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2026-04-30","last_updated":"2026-04-30","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"input":262144,"output":16384},"cost":{"input":0.306,"output":0.306}},"yi-medium-200k":{"id":"yi-medium-200k","name":"Yi Medium 200k","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2024-03-01","last_updated":"2024-03-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"input":200000,"output":4096},"cost":{"input":2.499,"output":2.499}},"claude-opus-4-5-20251101":{"id":"claude-opus-4-5-20251101","name":"Claude 4.5 Opus","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2025-11-01","last_updated":"2025-11-01","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"input":200000,"output":32000},"cost":{"input":4.998,"output":25.007}},"glm-4-airx":{"id":"glm-4-airx","name":"GLM-4 AirX","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2024-06-05","last_updated":"2024-06-05","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":8000,"input":8000,"output":4096},"cost":{"input":2.006,"output":2.006}},"MiniMax-M2":{"id":"MiniMax-M2","name":"MiniMax M2","attachment":false,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2025-10-25","last_updated":"2025-10-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"input":200000,"output":131072},"cost":{"input":0.17,"output":1.53}},"step-3":{"id":"step-3","name":"Step-3","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-07-31","last_updated":"2025-07-31","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":65536,"input":65536,"output":8192},"cost":{"input":0.2499,"output":0.6494}},"qwq-32b":{"id":"qwq-32b","name":"Qwen: QwQ 32B","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-04-15","last_updated":"2025-04-15","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":32768},"cost":{"input":0.25599999,"output":0.30499999}},"claude-opus-4-1-thinking:32768":{"id":"claude-opus-4-1-thinking:32768","name":"Claude 4.1 Opus Thinking (32K)","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2025-05-22","last_updated":"2025-05-22","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"input":200000,"output":32000},"cost":{"input":14.994,"output":75.004}},"qwen3-max-2026-01-23":{"id":"qwen3-max-2026-01-23","name":"Qwen3 Max 2026-01-23","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2026-01-26","last_updated":"2026-01-26","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"input":256000,"output":32768},"cost":{"input":1.2002,"output":6.001}},"qwen-3.6-plus":{"id":"qwen-3.6-plus","name":"Qwen 3.6 Plus","family":"qwen3.6","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2026-04-02","last_updated":"2026-04-02","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":991800,"output":65536},"cost":{"input":0.45,"output":2.7}},"qwen3.7-max:thinking":{"id":"qwen3.7-max:thinking","name":"Qwen3.7 Max Thinking","attachment":false,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2026-05-21","last_updated":"2026-05-21","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"input":1000000,"output":65536},"cost":{"input":2.5,"output":7.5,"cache_read":0.25}},"gemini-2.5-pro-preview-03-25":{"id":"gemini-2.5-pro-preview-03-25","name":"Gemini 2.5 Pro Preview 0325","attachment":true,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2025-03-25","last_updated":"2025-03-25","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1048756,"input":1048756,"output":65536},"cost":{"input":2.5,"output":10}},"doubao-1-5-thinking-vision-pro-250428":{"id":"doubao-1-5-thinking-vision-pro-250428","name":"Doubao 1.5 Thinking Vision Pro","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-05-15","last_updated":"2025-05-15","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":16384},"cost":{"input":0.55,"output":1.43}},"jamba-large-1.6":{"id":"jamba-large-1.6","name":"Jamba Large 1.6","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-03-12","last_updated":"2025-03-12","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"input":256000,"output":4096},"cost":{"input":1.989,"output":7.99}},"glm-4.1v-thinking-flash":{"id":"glm-4.1v-thinking-flash","name":"GLM 4.1V Thinking Flash","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-07-09","last_updated":"2025-07-09","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":64000,"input":64000,"output":8192},"cost":{"input":0.3,"output":0.3}},"gemini-2.5-pro-exp-03-25":{"id":"gemini-2.5-pro-exp-03-25","name":"Gemini 2.5 Pro Experimental 0325","attachment":true,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2025-03-25","last_updated":"2025-03-25","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1048756,"input":1048756,"output":65536},"cost":{"input":2.5,"output":10}},"doubao-seed-1-6-thinking-250615":{"id":"doubao-seed-1-6-thinking-250615","name":"Doubao Seed 1.6 Thinking","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-06-15","last_updated":"2025-06-15","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"input":256000,"output":16384},"cost":{"input":0.204,"output":2.04}},"gemma-4-31B-Garnet":{"id":"gemma-4-31B-Garnet","name":"Gemma 4 31B Garnet","attachment":true,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2026-05-02","last_updated":"2026-05-02","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"input":262144,"output":16384},"cost":{"input":0.306,"output":0.306}},"claude-opus-4-1-thinking":{"id":"claude-opus-4-1-thinking","name":"Claude 4.1 Opus Thinking","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2025-05-22","last_updated":"2025-05-22","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"input":200000,"output":32000},"cost":{"input":14.994,"output":75.004}},"doubao-1-5-thinking-pro-vision-250415":{"id":"doubao-1-5-thinking-pro-vision-250415","name":"Doubao 1.5 Thinking Pro Vision","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-04-15","last_updated":"2025-04-15","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":16384},"cost":{"input":0.6,"output":2.4}},"owl":{"id":"owl","name":"OWL","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"release_date":"2026-05-01","last_updated":"2026-05-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1048756,"input":1048756,"output":262144},"cost":{"input":0.1,"output":0.3}},"auto-model-premium":{"id":"auto-model-premium","name":"Auto model (Premium)","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2024-06-01","last_updated":"2024-06-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"input":1000000,"output":1000000},"cost":{"input":9.996,"output":19.992}},"Qwen3.5-27B-Writer-Derestricted":{"id":"Qwen3.5-27B-Writer-Derestricted","name":"Qwen3.5 27B Writer Derestricted","attachment":true,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2026-04-06","last_updated":"2026-04-06","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"input":262144,"output":16384},"cost":{"input":0.306,"output":0.306}},"claude-sonnet-4-20250514":{"id":"claude-sonnet-4-20250514","name":"Claude 4 Sonnet","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"release_date":"2025-09-29","last_updated":"2025-09-29","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"input":200000,"output":64000},"cost":{"input":2.992,"output":14.994}},"claude-opus-4-thinking:8192":{"id":"claude-opus-4-thinking:8192","name":"Claude 4 Opus Thinking (8K)","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2025-05-22","last_updated":"2025-05-22","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"input":200000,"output":32000},"cost":{"input":14.994,"output":75.004}},"qwen3.5-122b-a10b:thinking":{"id":"qwen3.5-122b-a10b:thinking","name":"Qwen3.5 122B A10B Thinking","attachment":true,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2026-02-24","last_updated":"2026-02-24","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":260096,"input":260096,"output":65536},"cost":{"input":0.36,"output":2.88}},"claude-sonnet-4-thinking":{"id":"claude-sonnet-4-thinking","name":"Claude 4 Sonnet Thinking","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2025-02-24","last_updated":"2025-02-24","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"input":1000000,"output":64000},"cost":{"input":2.992,"output":14.994}},"Gemma-4-31B-Cognitive-Unshackled":{"id":"Gemma-4-31B-Cognitive-Unshackled","name":"Gemma 4 31B Cognitive Unshackled","attachment":true,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2026-05-01","last_updated":"2026-05-01","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"input":262144,"output":16384},"cost":{"input":0.306,"output":0.306}},"deepseek-chat-cheaper":{"id":"deepseek-chat-cheaper","name":"DeepSeek V3/Chat Cheaper","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"release_date":"2025-04-15","last_updated":"2025-04-15","modalities":{"input":["text","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":8192},"cost":{"input":0.25,"output":0.7}},"qwen3.6-max-preview":{"id":"qwen3.6-max-preview","name":"Qwen3.6 Max Preview","family":"qwen3.6","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2026-04-20","last_updated":"2026-04-21","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":245800,"output":65536},"cost":{"input":1.3,"output":7.8}},"claude-opus-4-1-thinking:1024":{"id":"claude-opus-4-1-thinking:1024","name":"Claude 4.1 Opus Thinking (1K)","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2025-05-22","last_updated":"2025-05-22","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"input":200000,"output":32000},"cost":{"input":14.994,"output":75.004}},"glm-z1-airx":{"id":"glm-z1-airx","name":"GLM Z1 AirX","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"release_date":"2025-04-15","last_updated":"2025-04-15","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":32000,"input":32000,"output":16384},"cost":{"input":0.7,"output":0.7}},"claude-opus-4-5-20251101:thinking":{"id":"claude-opus-4-5-20251101:thinking","name":"Claude 4.5 Opus Thinking","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2025-11-01","last_updated":"2025-11-01","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"input":200000,"output":32000},"cost":{"input":4.998,"output":25.007}},"brave-research":{"id":"brave-research","name":"Brave (Research)","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2023-03-02","last_updated":"2024-01-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":16384,"input":16384,"output":16384},"cost":{"input":5,"output":5}},"universal-summarizer":{"id":"universal-summarizer","name":"Universal Summarizer","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2023-05-01","last_updated":"2024-01-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":32768,"input":32768,"output":32768},"cost":{"input":30,"output":30}},"Baichuan4-Air":{"id":"Baichuan4-Air","name":"Baichuan 4 Air","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-08-19","last_updated":"2025-08-19","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":32768,"input":32768,"output":32768},"cost":{"input":0.157,"output":0.157}},"Qwen3.5-27B-BlueStar-v2-Derestricted-Lite":{"id":"Qwen3.5-27B-BlueStar-v2-Derestricted-Lite","name":"Qwen3.5 27B BlueStar v2 Derestricted Lite","attachment":true,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2026-04-06","last_updated":"2026-04-06","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"input":262144,"output":16384},"cost":{"input":0.306,"output":0.306}},"Qwen3.5-27B-earica-Derestricted":{"id":"Qwen3.5-27B-earica-Derestricted","name":"Qwen3.5 27B earica Derestricted","attachment":true,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2026-04-30","last_updated":"2026-04-30","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"input":262144,"output":16384},"cost":{"input":0.306,"output":0.306}},"Qwen3.5-27B-RpRMax-v1":{"id":"Qwen3.5-27B-RpRMax-v1","name":"Qwen3.5 27B RpRMax v1","attachment":true,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2026-04-30","last_updated":"2026-04-30","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"input":262144,"output":16384},"cost":{"input":0.306,"output":0.306}},"holo3-35b-a3b":{"id":"holo3-35b-a3b","name":"Holo3-35B-A3B","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2024-01-01","last_updated":"2024-01-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":65536,"input":65536,"output":65536},"cost":{"input":0.25,"output":1.8}},"qwen3.7-plus":{"id":"qwen3.7-plus","name":"Qwen3.7 Plus","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2026-06-01","last_updated":"2026-06-01","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":991808,"input":991808,"output":65536},"cost":{"input":0.4,"output":1.6,"cache_read":0.04}},"gemini-2.5-flash-preview-05-20:thinking":{"id":"gemini-2.5-flash-preview-05-20:thinking","name":"Gemini 2.5 Flash 0520 Thinking","attachment":true,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2025-05-20","last_updated":"2025-05-20","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1048000,"input":1048000,"output":65536},"cost":{"input":0.15,"output":3.5}},"GLM-4.6-Derestricted-v5":{"id":"GLM-4.6-Derestricted-v5","name":"GLM 4.6 Derestricted v5","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-12-23","last_updated":"2025-12-23","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"input":131072,"output":8192},"cost":{"input":0.4,"output":1.5}},"claude-opus-4-thinking":{"id":"claude-opus-4-thinking","name":"Claude 4 Opus Thinking","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2025-07-15","last_updated":"2025-07-15","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"input":200000,"output":32000},"cost":{"input":14.994,"output":75.004}},"deepseek-math-v2":{"id":"deepseek-math-v2","name":"DeepSeek Math V2","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-12-03","last_updated":"2025-12-03","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":65536},"cost":{"input":0.6,"output":2.2}},"qwen25-vl-72b-instruct":{"id":"qwen25-vl-72b-instruct","name":"Qwen25 VL 72b","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-05-10","last_updated":"2025-05-10","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":32000,"input":32000,"output":32768},"cost":{"input":0.69989,"output":0.69989}},"Qwen3.5-27B-Omega-Evolution-v2.0-Derestricted":{"id":"Qwen3.5-27B-Omega-Evolution-v2.0-Derestricted","name":"Qwen3.5 27B Omega Evolution v2.0 Derestricted","attachment":true,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2026-04-06","last_updated":"2026-04-06","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"input":262144,"output":16384},"cost":{"input":0.306,"output":0.306}},"ernie-x1.1-preview":{"id":"ernie-x1.1-preview","name":"ERNIE X1.1","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-09-10","last_updated":"2025-09-10","modalities":{"input":["text","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":64000,"input":64000,"output":8192},"cost":{"input":0.15,"output":0.6}},"Qwen3.5-27B-Writer-Derestricted-Lite":{"id":"Qwen3.5-27B-Writer-Derestricted-Lite","name":"Qwen3.5 27B Writer Derestricted Lite","attachment":true,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2026-04-06","last_updated":"2026-04-06","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"input":262144,"output":16384},"cost":{"input":0.306,"output":0.306}},"claude-opus-4-1-thinking:8192":{"id":"claude-opus-4-1-thinking:8192","name":"Claude 4.1 Opus Thinking (8K)","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2025-05-22","last_updated":"2025-05-22","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"input":200000,"output":32000},"cost":{"input":14.994,"output":75.004}},"claude-sonnet-4-5-20250929-thinking":{"id":"claude-sonnet-4-5-20250929-thinking","name":"Claude Sonnet 4.5 Thinking","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2025-09-29","last_updated":"2025-09-29","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"input":1000000,"output":64000},"cost":{"input":2.992,"output":14.994}},"qwen3.5-27b":{"id":"qwen3.5-27b","name":"Qwen3.5 27B","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2026-02-24","last_updated":"2026-02-24","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":260096,"input":260096,"output":65536},"cost":{"input":0.27,"output":2.16}},"glm-4-plus-0111":{"id":"glm-4-plus-0111","name":"GLM 4 Plus 0111","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-02-19","last_updated":"2025-02-19","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":4096},"cost":{"input":9.996,"output":9.996}},"ernie-x1-turbo-32k":{"id":"ernie-x1-turbo-32k","name":"Ernie X1 Turbo 32k","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-05-08","last_updated":"2025-05-08","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":32000,"input":32000,"output":16384},"cost":{"input":0.165,"output":0.66}},"gemma-4-31B-Fabled":{"id":"gemma-4-31B-Fabled","name":"Gemma 4 31B Fabled","attachment":true,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2026-05-02","last_updated":"2026-05-02","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"input":262144,"output":16384},"cost":{"input":0.306,"output":0.306}},"claude-sonnet-4-thinking:32768":{"id":"claude-sonnet-4-thinking:32768","name":"Claude 4 Sonnet Thinking (32K)","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2025-05-22","last_updated":"2025-05-22","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"input":1000000,"output":64000},"cost":{"input":2.992,"output":14.994}},"qwen-long":{"id":"qwen-long","name":"Qwen Long 10M","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-01-25","last_updated":"2025-01-25","modalities":{"input":["text","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":10000000,"input":10000000,"output":8192},"cost":{"input":0.1003,"output":0.408}},"qwen3.5-35b-a3b:thinking":{"id":"qwen3.5-35b-a3b:thinking","name":"Qwen3.5 35B A3B Thinking","attachment":true,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2026-02-24","last_updated":"2026-02-24","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":260096,"input":260096,"output":65536},"cost":{"input":0.225,"output":1.8}},"qvq-max":{"id":"qvq-max","name":"Qwen: QvQ Max","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-03-28","last_updated":"2025-03-28","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":8192},"cost":{"input":1.4,"output":5.3}},"gemini-3-pro-image-preview":{"id":"gemini-3-pro-image-preview","name":"Gemini 3 Pro Image","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-11-18","last_updated":"2025-11-18","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1048756,"input":1048756,"output":65536},"cost":{"input":2,"output":12}},"doubao-seed-2-0-pro-260215":{"id":"doubao-seed-2-0-pro-260215","name":"Doubao Seed 2.0 Pro","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2026-02-14","last_updated":"2026-02-14","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"input":256000,"output":128000},"cost":{"input":0.782,"output":3.876}},"jamba-mini":{"id":"jamba-mini","name":"Jamba Mini","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-07-09","last_updated":"2025-07-09","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"input":256000,"output":4096},"cost":{"input":0.1989,"output":0.408}},"qwen3-vl-235b-a22b-thinking":{"id":"qwen3-vl-235b-a22b-thinking","name":"Qwen3 VL 235B A22B Thinking","attachment":true,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2025-08-26","last_updated":"2025-08-26","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":32768,"input":32768,"output":32768},"cost":{"input":0.5,"output":6}},"qwen3.5-27b:thinking":{"id":"qwen3.5-27b:thinking","name":"Qwen3.5 27B Thinking","attachment":true,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2026-02-24","last_updated":"2026-02-24","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":260096,"input":260096,"output":65536},"cost":{"input":0.27,"output":2.16}},"mercury-2":{"id":"mercury-2","name":"Mercury 2","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2024-01-01","last_updated":"2024-01-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":50000},"cost":{"input":0.25,"output":0.75,"cache_read":0.025}},"Qwen3.5-27B-BlueStar-Derestricted-Lite":{"id":"Qwen3.5-27B-BlueStar-Derestricted-Lite","name":"Qwen3.5 27B BlueStar Derestricted Lite","attachment":true,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2026-04-06","last_updated":"2026-04-06","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"input":262144,"output":16384},"cost":{"input":0.306,"output":0.306}},"sonar-deep-research":{"id":"sonar-deep-research","name":"Perplexity Deep Research","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-02-25","last_updated":"2025-02-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":60000,"input":60000,"output":128000},"cost":{"input":3.4,"output":13.6}},"glm-4-flash":{"id":"glm-4-flash","name":"GLM-4 Flash","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2024-08-01","last_updated":"2024-08-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":4096},"cost":{"input":0.1003,"output":0.1003}},"Qwen3.5-27B-Omega-Evolution-v2.2-Derestricted":{"id":"Qwen3.5-27B-Omega-Evolution-v2.2-Derestricted","name":"Qwen3.5 27B Omega Evolution v2.2 Derestricted","attachment":true,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2026-05-02","last_updated":"2026-05-02","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"input":262144,"output":16384},"cost":{"input":0.306,"output":0.306}},"doubao-seed-2-0-mini-260215":{"id":"doubao-seed-2-0-mini-260215","name":"Doubao Seed 2.0 Mini","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2026-02-14","last_updated":"2026-02-14","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"input":256000,"output":32000},"cost":{"input":0.0493,"output":0.4845}},"Qwen3.5-27B-Marvin-V2-Derestricted":{"id":"Qwen3.5-27B-Marvin-V2-Derestricted","name":"Qwen3.5 27B Marvin V2 Derestricted","attachment":true,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2026-04-30","last_updated":"2026-04-30","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"input":262144,"output":16384},"cost":{"input":0.306,"output":0.306}},"qwen-plus":{"id":"qwen-plus","name":"Qwen Plus","attachment":false,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2024-01-25","last_updated":"2024-01-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":995904,"input":995904,"output":32768},"cost":{"input":0.3995,"output":1.2002}},"kwaipilot/kat-coder-pro-v2":{"id":"kwaipilot/kat-coder-pro-v2","name":"KAT Coder Pro V2","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2026-03-28","last_updated":"2026-03-28","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"input":256000,"output":80000},"cost":{"input":0.3,"output":1.2}},"z-ai/glm-4.6:thinking":{"id":"z-ai/glm-4.6:thinking","name":"GLM 4.6 Thinking","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2025-09-29","last_updated":"2025-09-29","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"input":200000,"output":65535},"cost":{"input":0.4,"output":1.5}},"z-ai/glm-4.6":{"id":"z-ai/glm-4.6","name":"GLM 4.6","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2025-09-30","last_updated":"2025-09-30","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"input":200000,"output":65535},"cost":{"input":0.4,"output":1.5}},"z-ai/glm-5v-turbo:thinking":{"id":"z-ai/glm-5v-turbo:thinking","name":"GLM 5V Turbo Thinking","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-04-02","last_updated":"2026-04-02","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":202800,"input":202800,"output":131100},"cost":{"input":1.2,"output":4,"cache_read":0.24}},"z-ai/glm-4.5v":{"id":"z-ai/glm-4.5v","name":"GLM 4.5V","family":"glmv","attachment":true,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2025-11-22","last_updated":"2025-11-22","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":64000,"input":64000,"output":96000},"cost":{"input":0.6,"output":1.7999999999999998}},"z-ai/glm-5v-turbo":{"id":"z-ai/glm-5v-turbo","name":"GLM 5V Turbo","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"release_date":"2026-04-01","last_updated":"2026-04-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":202800,"input":202800,"output":131100},"cost":{"input":1.2,"output":4,"cache_read":0.24}},"z-ai/glm-5-turbo":{"id":"z-ai/glm-5-turbo","name":"GLM 5 Turbo","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"release_date":"2026-03-15","last_updated":"2026-03-15","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":202800,"input":202800,"output":131072},"cost":{"input":1.2,"output":4,"cache_read":0.24}},"z-ai/glm-4.5v:thinking":{"id":"z-ai/glm-4.5v:thinking","name":"GLM 4.5V Thinking","family":"glmv","attachment":true,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2025-11-22","last_updated":"2025-11-22","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":64000,"input":64000,"output":96000},"cost":{"input":0.6,"output":1.7999999999999998}},"upstage/solar-pro-3":{"id":"upstage/solar-pro-3","name":"Solar Pro 3","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2026-03-03","last_updated":"2026-03-03","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":128000},"cost":{"input":0.15,"output":0.6,"cache_read":0.015}},"Alibaba-NLP/Tongyi-DeepResearch-30B-A3B":{"id":"Alibaba-NLP/Tongyi-DeepResearch-30B-A3B","name":"Tongyi DeepResearch 30B A3B","family":"yi","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-08-26","last_updated":"2025-08-26","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":65536},"cost":{"input":0.08,"output":0.24000000000000002}},"THUDM/GLM-Z1-32B-0414":{"id":"THUDM/GLM-Z1-32B-0414","name":"GLM Z1 32B 0414","family":"glm-z","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-04-15","last_updated":"2025-04-15","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":65536},"cost":{"input":0.2,"output":0.2}},"THUDM/GLM-Z1-9B-0414":{"id":"THUDM/GLM-Z1-9B-0414","name":"GLM Z1 9B 0414","family":"glm-z","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-04-14","last_updated":"2025-04-14","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":32000,"input":32000,"output":8000},"cost":{"input":0.2,"output":0.2}},"THUDM/GLM-4-32B-0414":{"id":"THUDM/GLM-4-32B-0414","name":"GLM 4 32B 0414","family":"glm","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-04-14","last_updated":"2025-04-14","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":65536},"cost":{"input":0.2,"output":0.2}},"THUDM/GLM-4-9B-0414":{"id":"THUDM/GLM-4-9B-0414","name":"GLM 4 9B 0414","family":"glm","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-04-14","last_updated":"2025-04-14","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":32000,"input":32000,"output":8000},"cost":{"input":0.2,"output":0.2}},"TheDrummer/Skyfall-31B-v4.2":{"id":"TheDrummer/Skyfall-31B-v4.2","name":"TheDrummer Skyfall 31B v4.2","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2026-03-26","last_updated":"2026-03-26","modalities":{"input":["text","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"input":131072,"output":16384},"cost":{"input":0.55,"output":0.8}},"TheDrummer/Rocinante-12B-v1.1":{"id":"TheDrummer/Rocinante-12B-v1.1","name":"Rocinante 12b","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2024-01-01","last_updated":"2024-01-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":16384,"input":16384,"output":8192},"cost":{"input":0.408,"output":0.595}},"TheDrummer/Cydonia-24B-v4":{"id":"TheDrummer/Cydonia-24B-v4","name":"The Drummer Cydonia 24B v4","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-07-22","last_updated":"2025-07-22","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":16384,"input":16384,"output":32768},"cost":{"input":0.2006,"output":0.2414}},"TheDrummer/Magidonia-24B-v4.3":{"id":"TheDrummer/Magidonia-24B-v4.3","name":"The Drummer Magidonia 24B v4.3","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-12-25","last_updated":"2025-12-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":32768,"input":32768,"output":32768},"cost":{"input":0.1003,"output":0.1207}},"TheDrummer/Cydonia-24B-v4.3":{"id":"TheDrummer/Cydonia-24B-v4.3","name":"The Drummer Cydonia 24B v4.3","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-12-25","last_updated":"2025-12-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":32768,"input":32768,"output":32768},"cost":{"input":0.1003,"output":0.1207}},"TheDrummer/Anubis-70B-v1.1":{"id":"TheDrummer/Anubis-70B-v1.1","name":"Anubis 70B v1.1","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2024-01-01","last_updated":"2024-01-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"input":131072,"output":16384},"cost":{"input":0.31,"output":0.31}},"TheDrummer/Anubis-70B-v1":{"id":"TheDrummer/Anubis-70B-v1","name":"Anubis 70B v1","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2024-01-01","last_updated":"2024-01-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":65536,"input":65536,"output":16384},"cost":{"input":0.31,"output":0.31}},"TheDrummer/skyfall-36b-v2":{"id":"TheDrummer/skyfall-36b-v2","name":"TheDrummer Skyfall 36B V2","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-03-10","last_updated":"2025-03-10","modalities":{"input":["text","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":64000,"input":64000,"output":32768},"cost":{"input":0.493,"output":0.493}},"TheDrummer/Cydonia-24B-v4.1":{"id":"TheDrummer/Cydonia-24B-v4.1","name":"The Drummer Cydonia 24B v4.1","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-08-19","last_updated":"2025-08-19","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":16384,"input":16384,"output":32768},"cost":{"input":0.1003,"output":0.1207}},"TheDrummer/Cydonia-24B-v2":{"id":"TheDrummer/Cydonia-24B-v2","name":"The Drummer Cydonia 24B v2","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-02-17","last_updated":"2025-02-17","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":16384,"input":16384,"output":32768},"cost":{"input":0.1003,"output":0.1207}},"TheDrummer/UnslopNemo-12B-v4.1":{"id":"TheDrummer/UnslopNemo-12B-v4.1","name":"UnslopNemo 12b v4","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2024-01-01","last_updated":"2024-01-01","modalities":{"input":["text","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":32768,"input":32768,"output":8192},"cost":{"input":0.493,"output":0.493}},"mistralai/ministral-14b-instruct-2512":{"id":"mistralai/ministral-14b-instruct-2512","name":"Ministral 3 14B","family":"ministral","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-12-02","last_updated":"2025-12-02","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"input":262144,"output":32768},"cost":{"input":0.1,"output":0.4}},"mistralai/mistral-medium-3.1":{"id":"mistralai/mistral-medium-3.1","name":"Mistral Medium 3.1","family":"mistral-medium","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-09-05","last_updated":"2025-09-05","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"input":131072,"output":32768},"cost":{"input":0.4,"output":2}},"mistralai/ministral-14b-2512":{"id":"mistralai/ministral-14b-2512","name":"Ministral 14B","family":"ministral","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-12-04","last_updated":"2025-12-04","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"input":262144,"output":32768},"cost":{"input":0.2,"output":0.2}},"mistralai/ministral-8b-2512":{"id":"mistralai/ministral-8b-2512","name":"Ministral 8B","family":"ministral","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-12-04","last_updated":"2025-12-04","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"input":262144,"output":32768},"cost":{"input":0.15,"output":0.15}},"mistralai/mistral-large-3-675b-instruct-2512":{"id":"mistralai/mistral-large-3-675b-instruct-2512","name":"Mistral Large 3 675B","family":"mistral-large","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-12-02","last_updated":"2025-12-02","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"input":262144,"output":256000},"cost":{"input":1,"output":3}},"mistralai/mixtral-8x22b-instruct-v0.1":{"id":"mistralai/mixtral-8x22b-instruct-v0.1","name":"Mixtral 8x22B","family":"mixtral","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-12-11","last_updated":"2025-12-11","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":65536,"input":65536,"output":32768},"cost":{"input":0.8999999999999999,"output":0.8999999999999999}},"mistralai/mistral-large":{"id":"mistralai/mistral-large","name":"Mistral Large 2411","family":"mistral-large","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2024-02-26","last_updated":"2024-02-26","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":256000},"cost":{"input":2.006,"output":6.001}},"mistralai/ministral-3b-2512":{"id":"mistralai/ministral-3b-2512","name":"Ministral 3B","family":"ministral","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-12-04","last_updated":"2025-12-04","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"input":131072,"output":32768},"cost":{"input":0.1,"output":0.1}},"mistralai/Mistral-Nemo-Instruct-2407":{"id":"mistralai/Mistral-Nemo-Instruct-2407","name":"Mistral Nemo","family":"mistral-nemo","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2024-07-18","last_updated":"2024-07-18","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":16384,"input":16384,"output":8192},"cost":{"input":0.1003,"output":0.1207}},"mistralai/mistral-saba":{"id":"mistralai/mistral-saba","name":"Mistral Saba","family":"mistral","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-02-17","last_updated":"2025-02-17","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":32000,"input":32000,"output":32768},"cost":{"input":0.1989,"output":0.595}},"mistralai/mistral-medium-3":{"id":"mistralai/mistral-medium-3","name":"Mistral Medium 3","family":"mistral-medium","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-09-25","last_updated":"2025-09-25","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"input":131072,"output":32768},"cost":{"input":0.4,"output":2}},"mistralai/mixtral-8x7b-instruct-v0.1":{"id":"mistralai/mixtral-8x7b-instruct-v0.1","name":"Mixtral 8x7B","family":"mixtral","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-12-11","last_updated":"2025-12-11","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":32768,"input":32768,"output":32768},"cost":{"input":0.27,"output":0.27}},"mistralai/mistral-small-4-119b-2603:thinking":{"id":"mistralai/mistral-small-4-119b-2603:thinking","name":"Mistral Small 4 119B Thinking","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-03-17","last_updated":"2026-03-17","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"input":262144,"output":16384},"cost":{"input":0.4,"output":1.4}},"mistralai/Devstral-Small-2505":{"id":"mistralai/Devstral-Small-2505","name":"Mistral Devstral Small 2505","family":"devstral","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-08-02","last_updated":"2025-08-02","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":32768,"input":32768,"output":8192},"cost":{"input":0.060000000000000005,"output":0.060000000000000005}},"mistralai/codestral-2508":{"id":"mistralai/codestral-2508","name":"Codestral 2508","family":"codestral","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-08-01","last_updated":"2025-08-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"input":256000,"output":32768},"cost":{"input":0.3,"output":0.8999999999999999}},"mistralai/mistral-small-4-119b-2603":{"id":"mistralai/mistral-small-4-119b-2603","name":"Mistral Small 4 119B","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-03-16","last_updated":"2026-03-16","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"input":262144,"output":16384},"cost":{"input":0.4,"output":1.4}},"mistralai/devstral-2-123b-instruct-2512":{"id":"mistralai/devstral-2-123b-instruct-2512","name":"Devstral 2 123B","family":"devstral","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-12-09","last_updated":"2025-12-09","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"input":262144,"output":65536},"cost":{"input":0.4,"output":1.4}},"deepseek/deepseek-v3.2:thinking":{"id":"deepseek/deepseek-v3.2:thinking","name":"DeepSeek V3.2 Thinking","family":"deepseek","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2025-12-01","last_updated":"2025-12-01","modalities":{"input":["text","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":163000,"input":163000,"output":65536},"cost":{"input":0.27999999999999997,"output":0.42000000000000004}},"deepseek/deepseek-v4-pro-cheaper":{"id":"deepseek/deepseek-v4-pro-cheaper","name":"DeepSeek V4 Pro Cheaper","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-04-25","last_updated":"2026-04-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"input":1048576,"output":384000},"cost":{"input":0.435,"output":0.87,"cache_read":0.003625}},"deepseek/deepseek-v3.2":{"id":"deepseek/deepseek-v3.2","name":"DeepSeek V3.2","family":"deepseek","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"release_date":"2025-12-01","last_updated":"2025-12-01","modalities":{"input":["text","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":163000,"input":163000,"output":65536},"cost":{"input":0.27999999999999997,"output":0.42000000000000004}},"deepseek/deepseek-prover-v2-671b":{"id":"deepseek/deepseek-prover-v2-671b","name":"DeepSeek Prover v2 671B","family":"deepseek","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-04-30","last_updated":"2025-04-30","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":160000,"input":160000,"output":16384},"cost":{"input":1,"output":2.5}},"deepseek/deepseek-v4-flash:thinking":{"id":"deepseek/deepseek-v4-flash:thinking","name":"DeepSeek V4 Flash (Thinking)","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-04-24","last_updated":"2026-04-24","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"input":1048576,"output":384000},"cost":{"input":0.14,"output":0.28,"cache_read":0.028}},"deepseek/deepseek-v3.2-speciale":{"id":"deepseek/deepseek-v3.2-speciale","name":"DeepSeek V3.2 Speciale","family":"deepseek","attachment":true,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2025-12-02","last_updated":"2025-12-02","modalities":{"input":["text","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":163000,"input":163000,"output":65536},"cost":{"input":0.27999999999999997,"output":0.42000000000000004}},"deepseek/deepseek-v4-pro:thinking":{"id":"deepseek/deepseek-v4-pro:thinking","name":"DeepSeek V4 Pro (Thinking)","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-04-24","last_updated":"2026-04-24","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"input":1048576,"output":384000},"cost":{"input":1.1,"output":2.2,"cache_read":0.11}},"deepseek/deepseek-v4-pro-cheaper:thinking":{"id":"deepseek/deepseek-v4-pro-cheaper:thinking","name":"DeepSeek V4 Pro Cheaper (Thinking)","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-04-25","last_updated":"2026-04-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"input":1048576,"output":384000},"cost":{"input":0.435,"output":0.87,"cache_read":0.003625}},"deepseek/deepseek-v4-flash":{"id":"deepseek/deepseek-v4-flash","name":"DeepSeek V4 Flash","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-04-24","last_updated":"2026-04-24","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"input":1048576,"output":384000},"cost":{"input":0.14,"output":0.28,"cache_read":0.028}},"deepseek/deepseek-v4-pro":{"id":"deepseek/deepseek-v4-pro","name":"DeepSeek V4 Pro","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-04-24","last_updated":"2026-04-24","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"input":1048576,"output":384000},"cost":{"input":1.1,"output":2.2,"cache_read":0.11}},"deepseek/deepseek-latest":{"id":"deepseek/deepseek-latest","name":"DeepSeek Latest","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-05-03","last_updated":"2026-05-03","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"input":1048576,"output":384000},"cost":{"input":1.1,"output":2.2,"cache_read":0.11}},"Tongyi-Zhiwen/QwenLong-L1-32B":{"id":"Tongyi-Zhiwen/QwenLong-L1-32B","name":"QwenLong L1 32B","family":"qwen","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-01-25","last_updated":"2025-01-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":40960},"cost":{"input":0.13999999999999999,"output":0.6}},"chutesai/Mistral-Small-3.2-24B-Instruct-2506":{"id":"chutesai/Mistral-Small-3.2-24B-Instruct-2506","name":"Mistral Small 3.2 24b Instruct","family":"chutesai","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-04-15","last_updated":"2025-04-15","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":131072},"cost":{"input":0.2,"output":0.4}},"MiniMaxAI/MiniMax-M1-80k":{"id":"MiniMaxAI/MiniMax-M1-80k","name":"MiniMax M1 80K","family":"minimax","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-06-16","last_updated":"2025-06-16","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"input":1000000,"output":131072},"cost":{"input":0.6052,"output":2.4225000000000003}},"dmind/dmind-1-mini":{"id":"dmind/dmind-1-mini","name":"DMind-1-Mini","family":"gpt","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-06-01","last_updated":"2025-06-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":32768,"input":32768,"output":8192},"cost":{"input":0.2,"output":0.4}},"dmind/dmind-1":{"id":"dmind/dmind-1","name":"DMind-1","family":"gpt","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-06-01","last_updated":"2025-06-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":32768,"input":32768,"output":8192},"cost":{"input":0.3,"output":0.6}},"zai-org/glm-5.1:thinking":{"id":"zai-org/glm-5.1:thinking","name":"GLM 5.1 Thinking","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-03-27","last_updated":"2026-03-27","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":200000,"input":200000,"output":131072},"cost":{"input":0.3,"output":2.55}},"zai-org/GLM-4.6-turbo:thinking":{"id":"zai-org/GLM-4.6-turbo:thinking","name":"GLM 4.6 Turbo (Thinking)","attachment":false,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2025-10-02","last_updated":"2025-10-02","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"input":200000,"output":204800},"cost":{"input":1,"output":3}},"zai-org/glm-4.7-original":{"id":"zai-org/glm-4.7-original","name":"GLM 4.7 Original","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2025-12-22","last_updated":"2025-12-22","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"input":200000,"output":65535},"cost":{"input":0.6,"output":2.2,"cache_read":0.11}},"zai-org/GLM-4.5-Air":{"id":"zai-org/GLM-4.5-Air","name":"GLM 4.5 Air","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"release_date":"2025-04-15","last_updated":"2025-04-15","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":98304},"cost":{"input":0.12,"output":0.8}},"zai-org/glm-4.6v-flash-original":{"id":"zai-org/glm-4.6v-flash-original","name":"GLM 4.6V Flash","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-12-08","last_updated":"2025-12-08","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":24000},"cost":{"input":0.1,"output":0.4}},"zai-org/glm-latest":{"id":"zai-org/glm-latest","name":"GLM Latest","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-05-03","last_updated":"2026-05-03","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"input":200000,"output":131072},"cost":{"input":0.75,"output":2.6,"cache_read":0.15}},"zai-org/glm-4.7":{"id":"zai-org/glm-4.7","name":"GLM 4.7","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-01-29","last_updated":"2026-01-29","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":200000,"input":200000,"output":128000},"cost":{"input":0.15,"output":0.8}},"zai-org/glm-4.7-flash-original:thinking":{"id":"zai-org/glm-4.7-flash-original:thinking","name":"GLM 4.7 Flash Original Thinking","attachment":false,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2026-01-19","last_updated":"2026-01-19","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"input":200000,"output":128000},"cost":{"input":0.07,"output":0.4}},"zai-org/glm-5-original:thinking":{"id":"zai-org/glm-5-original:thinking","name":"GLM 5 Original Thinking","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-02-11","last_updated":"2026-02-11","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"input":200000,"output":128000},"cost":{"input":1,"output":3.2,"cache_read":0.2}},"zai-org/glm-4.6-original":{"id":"zai-org/glm-4.6-original","name":"GLM 4.6 Original","attachment":false,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2025-12-11","last_updated":"2025-12-11","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"input":256000,"output":65535},"cost":{"input":0.35,"output":1.4}},"zai-org/glm-5-original":{"id":"zai-org/glm-5-original","name":"GLM 5 Original","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-02-11","last_updated":"2026-02-11","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"input":200000,"output":128000},"cost":{"input":1,"output":3.2,"cache_read":0.2}},"zai-org/glm-4.6v":{"id":"zai-org/glm-4.6v","name":"GLM 4.6V","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-12-11","last_updated":"2025-12-11","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":24000},"cost":{"input":0.3,"output":0.9}},"zai-org/GLM-4.6-turbo":{"id":"zai-org/GLM-4.6-turbo","name":"GLM 4.6 Turbo","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-10-02","last_updated":"2025-10-02","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"input":200000,"output":204800},"cost":{"input":1,"output":3}},"zai-org/GLM-4.5:thinking":{"id":"zai-org/GLM-4.5:thinking","name":"GLM 4.5 (Thinking)","attachment":false,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2024-01-01","last_updated":"2024-01-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":65536},"cost":{"input":0.3,"output":1.3}},"zai-org/glm-4.7-flash":{"id":"zai-org/glm-4.7-flash","name":"GLM 4.7 Flash","family":"glm-flash","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-01-19","last_updated":"2026-01-19","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":200000,"input":200000,"output":128000},"cost":{"input":0.07,"output":0.4}},"zai-org/glm-4.7-flash-original":{"id":"zai-org/glm-4.7-flash-original","name":"GLM 4.7 Flash Original","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-01-19","last_updated":"2026-01-19","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"input":200000,"output":128000},"cost":{"input":0.07,"output":0.4}},"zai-org/glm-5:thinking":{"id":"zai-org/glm-5:thinking","name":"GLM 5 Thinking","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-02-11","last_updated":"2026-02-11","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":200000,"input":200000,"output":128000},"cost":{"input":0.3,"output":2.55}},"zai-org/glm-4.7-original:thinking":{"id":"zai-org/glm-4.7-original:thinking","name":"GLM 4.7 Original Thinking","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2025-12-22","last_updated":"2025-12-22","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"input":200000,"output":65535},"cost":{"input":0.6,"output":2.2,"cache_read":0.11}},"zai-org/glm-5":{"id":"zai-org/glm-5","name":"GLM 5","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-02-11","last_updated":"2026-02-11","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":200000,"input":200000,"output":128000},"cost":{"input":0.3,"output":2.55}},"zai-org/glm-4.7:thinking":{"id":"zai-org/glm-4.7:thinking","name":"GLM 4.7 Thinking","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2025-12-22","last_updated":"2025-12-22","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"input":200000,"output":65535},"cost":{"input":0.2,"output":0.8}},"zai-org/glm-4.5":{"id":"zai-org/glm-4.5","name":"GLM 4.5","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-04-15","last_updated":"2025-04-15","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":65536},"cost":{"input":0.3,"output":1.3}},"zai-org/GLM-4.5-Air:thinking":{"id":"zai-org/GLM-4.5-Air:thinking","name":"GLM 4.5 Air (Thinking)","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2024-01-01","last_updated":"2024-01-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":98304},"cost":{"input":0.12,"output":0.8}},"zai-org/glm-4.6v-original":{"id":"zai-org/glm-4.6v-original","name":"GLM 4.6V Original","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-12-08","last_updated":"2025-12-08","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":24000},"cost":{"input":0.6,"output":0.9}},"zai-org/glm-4.7-flash:thinking":{"id":"zai-org/glm-4.7-flash:thinking","name":"GLM 4.7 Flash Thinking","attachment":false,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2026-01-19","last_updated":"2026-01-19","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"input":200000,"output":128000},"cost":{"input":0.07,"output":0.4}},"zai-org/glm-5.1":{"id":"zai-org/glm-5.1","name":"GLM 5.1","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-03-27","last_updated":"2026-03-27","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":200000,"input":200000,"output":131072},"cost":{"input":0.3,"output":2.55}},"MarinaraSpaghetti/NemoMix-Unleashed-12B":{"id":"MarinaraSpaghetti/NemoMix-Unleashed-12B","name":"NemoMix 12B Unleashed","family":"mistral-nemo","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2024-07-01","last_updated":"2024-07-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":32768,"input":32768,"output":8192},"cost":{"input":0.49299999999999994,"output":0.49299999999999994}},"deepcogito/cogito-v1-preview-qwen-32B":{"id":"deepcogito/cogito-v1-preview-qwen-32B","name":"Cogito v1 Preview Qwen 32B","family":"qwen","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-05-10","last_updated":"2025-05-10","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":32768},"cost":{"input":1.7999999999999998,"output":1.7999999999999998}},"inflection/inflection-3-pi":{"id":"inflection/inflection-3-pi","name":"Inflection 3 Pi","family":"gpt","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2024-10-11","last_updated":"2024-10-11","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":8000,"input":8000,"output":4096},"cost":{"input":2.499,"output":9.996}},"inflection/inflection-3-productivity":{"id":"inflection/inflection-3-productivity","name":"Inflection 3 Productivity","family":"gpt","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2024-10-11","last_updated":"2024-10-11","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":8000,"input":8000,"output":4096},"cost":{"input":2.499,"output":9.996}},"LatitudeGames/Wayfarer-Large-70B-Llama-3.3":{"id":"LatitudeGames/Wayfarer-Large-70B-Llama-3.3","name":"Llama 3.3 70B Wayfarer","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-02-20","last_updated":"2025-02-20","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":16384,"input":16384,"output":16384},"cost":{"input":0.700000007,"output":0.700000007}},"perceptron/perceptron-mk1":{"id":"perceptron/perceptron-mk1","name":"Perceptron Mk1","attachment":true,"reasoning":true,"tool_call":false,"structured_output":true,"release_date":"2026-05-12","last_updated":"2026-05-12","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":32768,"input":32768,"output":8192},"cost":{"input":0.15,"output":1.5}},"anthropic/claude-opus-4.7:thinking":{"id":"anthropic/claude-opus-4.7:thinking","name":"Claude 4.7 Opus Thinking","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-04-16","last_updated":"2026-04-16","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"input":1000000,"output":128000},"cost":{"input":4.998,"output":25.007,"cache_read":0.4998}},"anthropic/claude-opus-4.6:thinking":{"id":"anthropic/claude-opus-4.6:thinking","name":"Claude 4.6 Opus Thinking","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-02-05","last_updated":"2026-02-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"input":1000000,"output":128000},"cost":{"input":4.998,"output":25.007}},"anthropic/claude-sonnet-4.6":{"id":"anthropic/claude-sonnet-4.6","name":"Claude Sonnet 4.6","family":"claude-sonnet","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"knowledge":"2025-08-31","release_date":"2026-02-17","last_updated":"2026-02-17","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"input":1000000,"output":128000},"cost":{"input":2.992,"output":14.993999999999998}},"anthropic/claude-opus-latest":{"id":"anthropic/claude-opus-latest","name":"Claude Opus Latest","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-03-29","last_updated":"2026-03-29","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"input":1000000,"output":128000},"cost":{"input":4.998,"output":25.007,"cache_read":0.4998}},"anthropic/claude-opus-4.7":{"id":"anthropic/claude-opus-4.7","name":"Claude 4.7 Opus","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-04-16","last_updated":"2026-04-16","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"input":1000000,"output":128000},"cost":{"input":4.998,"output":25.007,"cache_read":0.4998}},"anthropic/claude-opus-4.8:thinking":{"id":"anthropic/claude-opus-4.8:thinking","name":"Claude Opus 4.8 Thinking","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-05-28","last_updated":"2026-05-28","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"input":1000000,"output":128000},"cost":{"input":4.998,"output":25.007,"cache_read":0.4998}},"anthropic/claude-haiku-latest":{"id":"anthropic/claude-haiku-latest","name":"Claude Haiku Latest","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-03-29","last_updated":"2026-03-29","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"input":200000,"output":64000},"cost":{"input":1,"output":5,"cache_read":0.1}},"anthropic/claude-opus-4.6:thinking:max":{"id":"anthropic/claude-opus-4.6:thinking:max","name":"Claude 4.6 Opus Thinking Max","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-02-05","last_updated":"2026-02-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"input":1000000,"output":128000},"cost":{"input":4.998,"output":25.007}},"anthropic/claude-opus-4.6":{"id":"anthropic/claude-opus-4.6","name":"Claude 4.6 Opus","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-02-05","last_updated":"2026-02-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"input":1000000,"output":128000},"cost":{"input":4.998,"output":25.007}},"anthropic/claude-opus-4.8":{"id":"anthropic/claude-opus-4.8","name":"Claude Opus 4.8","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-05-28","last_updated":"2026-05-28","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"input":1000000,"output":128000},"cost":{"input":4.998,"output":25.007,"cache_read":0.4998}},"anthropic/claude-opus-4.6:thinking:low":{"id":"anthropic/claude-opus-4.6:thinking:low","name":"Claude 4.6 Opus Thinking Low","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-02-05","last_updated":"2026-02-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"input":1000000,"output":128000},"cost":{"input":4.998,"output":25.007}},"anthropic/claude-opus-4.6:thinking:medium":{"id":"anthropic/claude-opus-4.6:thinking:medium","name":"Claude 4.6 Opus Thinking Medium","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-02-05","last_updated":"2026-02-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"input":1000000,"output":128000},"cost":{"input":4.998,"output":25.007}},"anthropic/claude-sonnet-latest":{"id":"anthropic/claude-sonnet-latest","name":"Claude Sonnet Latest","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-03-01","last_updated":"2026-03-01","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"input":1000000,"output":128000},"cost":{"input":2.992,"output":14.994,"cache_read":0.2992}},"anthropic/claude-sonnet-4.6:thinking":{"id":"anthropic/claude-sonnet-4.6:thinking","name":"Claude Sonnet 4.6 Thinking","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"knowledge":"2025-08-31","release_date":"2026-02-17","last_updated":"2026-02-17","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"input":1000000,"output":128000},"cost":{"input":2.992,"output":14.993999999999998}},"alibaba/qwen3.6-27b":{"id":"alibaba/qwen3.6-27b","name":"Qwen3.6 27B","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2026-04-23","last_updated":"2026-04-23","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":260096,"input":260096,"output":65536},"cost":{"input":0.203,"output":2.24}},"alibaba/qwen3.6-27b:thinking":{"id":"alibaba/qwen3.6-27b:thinking","name":"Qwen3.6 27B Thinking","attachment":true,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2026-04-23","last_updated":"2026-04-23","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":260096,"input":260096,"output":65536},"cost":{"input":0.203,"output":2.24}},"alibaba/qwen3.6-flash":{"id":"alibaba/qwen3.6-flash","name":"Qwen3.6 Flash","family":"qwen3.6","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2026-04-17","last_updated":"2026-04-17","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":991800,"output":65536},"cost":{"input":0.19,"output":1.16}},"xiaomi/mimo-v2-omni":{"id":"xiaomi/mimo-v2-omni","name":"MiMo V2 Omni","attachment":true,"reasoning":false,"tool_call":true,"structured_output":false,"release_date":"2026-03-19","last_updated":"2026-03-19","modalities":{"input":["text","image","video","audio"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"input":262144,"output":65536},"cost":{"input":0.4,"output":2,"cache_read":0.08}},"xiaomi/mimo-v2-flash-thinking":{"id":"xiaomi/mimo-v2-flash-thinking","name":"MiMo V2 Flash (Thinking)","family":"mimo","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-12-17","last_updated":"2025-12-17","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"input":256000,"output":32768},"cost":{"input":0.102,"output":0.306}},"xiaomi/mimo-v2-flash-thinking-original":{"id":"xiaomi/mimo-v2-flash-thinking-original","name":"MiMo V2 Flash (Thinking) Original","family":"mimo","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-12-17","last_updated":"2025-12-17","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"input":256000,"output":32768},"cost":{"input":0.102,"output":0.306}},"xiaomi/mimo-v2-flash-original":{"id":"xiaomi/mimo-v2-flash-original","name":"MiMo V2 Flash Original","family":"mimo","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-12-17","last_updated":"2025-12-17","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"input":256000,"output":32768},"cost":{"input":0.102,"output":0.306}},"xiaomi/mimo-v2-pro":{"id":"xiaomi/mimo-v2-pro","name":"MiMo V2 Pro","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-03-19","last_updated":"2026-03-19","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"input":1048576,"output":131072},"cost":{"input":1,"output":3,"cache_read":0.2}},"xiaomi/mimo-v2.5":{"id":"xiaomi/mimo-v2.5","name":"MiMo V2.5","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-04-22","last_updated":"2026-04-22","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"input":1048576,"output":131072},"cost":{"input":0.14,"output":0.28,"cache_read":0.0028}},"xiaomi/mimo-v2-flash":{"id":"xiaomi/mimo-v2-flash","name":"MiMo V2 Flash","family":"mimo","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-12-17","last_updated":"2025-12-17","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"input":256000,"output":32768},"cost":{"input":0.102,"output":0.306}},"xiaomi/mimo-v2.5-pro":{"id":"xiaomi/mimo-v2.5-pro","name":"MiMo V2.5 Pro","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-04-22","last_updated":"2026-04-22","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"input":1048576,"output":131072},"cost":{"input":0.435,"output":0.87,"cache_read":0.0036}},"ReadyArt/MS3.2-The-Omega-Directive-24B-Unslop-v2.0":{"id":"ReadyArt/MS3.2-The-Omega-Directive-24B-Unslop-v2.0","name":"Omega Directive 24B Unslop v2.0","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-12-08","last_updated":"2025-12-08","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":16384,"input":16384,"output":32768},"cost":{"input":0.5,"output":0.5}},"mistral/mistral-medium-3.5":{"id":"mistral/mistral-medium-3.5","name":"Mistral Medium 3.5","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-04-29","last_updated":"2026-04-29","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"input":256000,"output":32768},"cost":{"input":1.5,"output":7.5}},"mistral/mistral-medium-3.5:thinking":{"id":"mistral/mistral-medium-3.5:thinking","name":"Mistral Medium 3.5 Thinking","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-04-30","last_updated":"2026-04-30","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"input":256000,"output":32768},"cost":{"input":1.5,"output":7.5}},"qwen/qwen3-32b":{"id":"qwen/qwen3-32b","name":"Qwen 3 32b","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2024-01-01","last_updated":"2024-01-01","modalities":{"input":["text","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":41000,"input":41000,"output":32768},"cost":{"input":0.1,"output":0.3}},"qwen/qwq-32b-preview":{"id":"qwen/qwq-32b-preview","name":"Qwen QwQ 32B Preview","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-02-27","last_updated":"2025-02-27","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":32768,"input":32768,"output":32768},"cost":{"input":0.2,"output":0.2}},"qwen/qwen3.5-plus":{"id":"qwen/qwen3.5-plus","name":"Qwen3.5 Plus","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2026-02-16","last_updated":"2026-02-16","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":983616,"input":983616,"output":65536},"cost":{"input":0.4,"output":2.4,"cache_read":0.04}},"qwen/Qwen3-8B":{"id":"qwen/Qwen3-8B","name":"Qwen 3 8B","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2024-01-01","last_updated":"2024-01-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":41000,"input":41000,"output":32768},"cost":{"input":0.47,"output":0.47}},"qwen/qwen3-235b-a22b":{"id":"qwen/qwen3-235b-a22b","name":"Qwen 3 235b A22B","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"release_date":"2025-04-29","last_updated":"2025-04-29","modalities":{"input":["text","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":41000,"input":41000,"output":32768},"cost":{"input":0.3,"output":0.5}},"qwen/Qwen3-235B-A22B-Thinking-2507":{"id":"qwen/Qwen3-235B-A22B-Thinking-2507","name":"Qwen 3 235b A22B 2507 Thinking","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-09-11","last_updated":"2025-09-11","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"input":256000,"output":262144},"cost":{"input":0.3,"output":0.5}},"qwen/qwen3-max":{"id":"qwen/qwen3-max","name":"Qwen3 Max","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-09-05","last_updated":"2025-09-05","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"input":256000,"output":32768},"cost":{"input":1.08018,"output":5.4009}},"qwen/qwen3-coder-plus":{"id":"qwen/qwen3-coder-plus","name":"Qwen3 Coder Plus","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-09-17","last_updated":"2025-09-17","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":65536},"cost":{"input":1,"output":5}},"qwen/qwen3-14b":{"id":"qwen/qwen3-14b","name":"Qwen 3 14b","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2024-01-01","last_updated":"2024-01-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":41000,"input":41000,"output":32768},"cost":{"input":0.08,"output":0.24}},"qwen/qwen3-coder-next":{"id":"qwen/qwen3-coder-next","name":"Qwen3 Coder Next","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"release_date":"2025-12-08","last_updated":"2025-12-08","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"input":262144,"output":65536},"cost":{"input":0.15,"output":1.5}},"qwen/Qwen3.6-35B-A3B":{"id":"qwen/Qwen3.6-35B-A3B","name":"Qwen3.6 35B A3B","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2026-04-17","last_updated":"2026-04-17","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"input":262144,"output":16384},"cost":{"input":0.112,"output":0.8}},"qwen/qwen3.5-plus-thinking":{"id":"qwen/qwen3.5-plus-thinking","name":"Qwen3.5 Plus Thinking","attachment":true,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2026-02-16","last_updated":"2026-02-16","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":983616,"input":983616,"output":65536},"cost":{"input":0.4,"output":2.4,"cache_read":0.04}},"qwen/Qwen3-235B-A22B-Instruct-2507-TEE":{"id":"qwen/Qwen3-235B-A22B-Instruct-2507-TEE","name":"Qwen 3 235b A22B 2507 (TEE)","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"release_date":"2025-07-25","last_updated":"2025-07-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"input":256000,"output":262144},"cost":{"input":0.13,"output":0.5}},"qwen/qwen3-30b-a3b":{"id":"qwen/qwen3-30b-a3b","name":"Qwen3 30B A3B","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-02-27","last_updated":"2025-02-27","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":41000,"input":41000,"output":32768},"cost":{"input":0.1,"output":0.3}},"qwen/qwen3.5-9b":{"id":"qwen/qwen3.5-9b","name":"Qwen3.5 9B","attachment":true,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2026-03-10","last_updated":"2026-03-10","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"input":256000,"output":65536},"cost":{"input":0.05,"output":0.15}},"qwen/qwen3-next-80b-a3b-thinking":{"id":"qwen/qwen3-next-80b-a3b-thinking","name":"Qwen3 Next 80B A3B (Thinking)","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2024-01-01","last_updated":"2024-01-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"input":256000,"output":32768},"cost":{"input":0.15,"output":0.65}},"qwen/qwen3-coder-flash":{"id":"qwen/qwen3-coder-flash","name":"Qwen3 Coder Flash","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-09-17","last_updated":"2025-09-17","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":65536},"cost":{"input":0.3,"output":1.5}},"qwen/Qwen3-235B-A22B-Instruct-2507":{"id":"qwen/Qwen3-235B-A22B-Instruct-2507","name":"Qwen 3 235b A22B 2507","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"release_date":"2025-07-25","last_updated":"2025-07-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"input":256000,"output":262144},"cost":{"input":0.13,"output":0.5}},"qwen/Qwen3-Next-80B-A3B-Instruct":{"id":"qwen/Qwen3-Next-80B-A3B-Instruct","name":"Qwen3 Next 80B A3B (Instruct)","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"release_date":"2025-09-11","last_updated":"2025-09-11","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"input":256000,"output":262144},"cost":{"input":0.15,"output":0.65}},"qwen/Qwen2.5-Coder-32B-Instruct":{"id":"qwen/Qwen2.5-Coder-32B-Instruct","name":"Qwen 2.5 Coder 32b","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-07-03","last_updated":"2025-07-03","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":32000,"input":32000,"output":8192},"cost":{"input":0.2006,"output":0.2006}},"qwen/Qwen3.6-35B-A3B:thinking":{"id":"qwen/Qwen3.6-35B-A3B:thinking","name":"Qwen3.6 35B A3B Thinking","attachment":true,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2026-04-19","last_updated":"2026-04-19","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"input":262144,"output":16384},"cost":{"input":0.112,"output":0.8}},"qwen/qwen3-coder":{"id":"qwen/qwen3-coder","name":"Qwen 3 Coder 480B","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"release_date":"2026-03-17","last_updated":"2026-03-17","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262000,"input":262000,"output":65536},"cost":{"input":0.13,"output":0.5}},"qwen/qwen3.5-397b-a17b":{"id":"qwen/qwen3.5-397b-a17b","name":"Qwen3.5 397B A17B","family":"qwen","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2026-02-16","last_updated":"2026-02-16","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":258048,"input":258048,"output":65536},"cost":{"input":0.6,"output":3.6}},"qwen/qwen3.5-397b-a17b-thinking":{"id":"qwen/qwen3.5-397b-a17b-thinking","name":"Qwen3.5 397B A17B Thinking","attachment":true,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2026-02-16","last_updated":"2026-02-16","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":258048,"input":258048,"output":65536},"cost":{"input":0.6,"output":3.6}},"qwen/qwen-2.5-72b-instruct":{"id":"qwen/qwen-2.5-72b-instruct","name":"Qwen2.5 72B","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-07-03","last_updated":"2025-07-03","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"input":131072,"output":8192},"cost":{"input":0.357,"output":0.408}},"qwen/Qwen3-VL-235B-A22B-Instruct":{"id":"qwen/Qwen3-VL-235B-A22B-Instruct","name":"Qwen3 VL 235B A22B Instruct","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2024-01-01","last_updated":"2024-01-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":262144},"cost":{"input":0.3,"output":1.2}},"Salesforce/Llama-xLAM-2-70b-fc-r":{"id":"Salesforce/Llama-xLAM-2-70b-fc-r","name":"Llama-xLAM-2 70B fc-r","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-04-13","last_updated":"2025-04-13","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":16384},"cost":{"input":2.5,"output":2.5}},"Gryphe/MythoMax-L2-13b":{"id":"Gryphe/MythoMax-L2-13b","name":"MythoMax 13B","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-08-08","last_updated":"2025-08-08","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":4000,"input":4000,"output":4096},"cost":{"input":0.1003,"output":0.1003}},"Envoid/Llama-3.05-Nemotron-Tenyxchat-Storybreaker-70B":{"id":"Envoid/Llama-3.05-Nemotron-Tenyxchat-Storybreaker-70B","name":"Nemotron Tenyxchat Storybreaker 70b","family":"nemotron","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2024-12-01","last_updated":"2024-12-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":16384,"input":16384,"output":8192},"cost":{"input":0.49299999999999994,"output":0.49299999999999994}},"Envoid/Llama-3.05-NT-Storybreaker-Ministral-70B":{"id":"Envoid/Llama-3.05-NT-Storybreaker-Ministral-70B","name":"Llama 3.05 Storybreaker Ministral 70b","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2024-12-01","last_updated":"2024-12-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":16384,"input":16384,"output":8192},"cost":{"input":0.49299999999999994,"output":0.49299999999999994}},"pamanseau/OpenReasoning-Nemotron-32B":{"id":"pamanseau/OpenReasoning-Nemotron-32B","name":"OpenReasoning Nemotron 32B","family":"nemotron","attachment":false,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2025-08-21","last_updated":"2025-08-21","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":32768,"input":32768,"output":65536},"cost":{"input":0.1,"output":0.4}},"GalrionSoftworks/MN-LooseCannon-12B-v1":{"id":"GalrionSoftworks/MN-LooseCannon-12B-v1","name":"MN-LooseCannon-12B-v1","family":"mistral-nemo","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2024-07-01","last_updated":"2024-07-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":16384,"input":16384,"output":8192},"cost":{"input":0.49299999999999994,"output":0.49299999999999994}},"liquid/lfm-2-24b-a2b":{"id":"liquid/lfm-2-24b-a2b","name":"LFM2 24B A2B","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-12-20","last_updated":"2025-12-20","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":32768,"input":32768,"output":32768},"cost":{"input":0.03,"output":0.12}},"soob3123/Veiled-Calla-12B":{"id":"soob3123/Veiled-Calla-12B","name":"Veiled Calla 12B","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-04-13","last_updated":"2025-04-13","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":32768,"input":32768,"output":8192},"cost":{"input":0.3,"output":0.3}},"soob3123/amoral-gemma3-27B-v2":{"id":"soob3123/amoral-gemma3-27B-v2","name":"Amoral Gemma3 27B v2","family":"gemma","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-05-23","last_updated":"2025-05-23","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":32768,"input":32768,"output":8192},"cost":{"input":0.3,"output":0.3}},"soob3123/GrayLine-Qwen3-8B":{"id":"soob3123/GrayLine-Qwen3-8B","name":"Grayline Qwen3 8B","family":"qwen","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-09-25","last_updated":"2025-09-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":16384,"input":16384,"output":32768},"cost":{"input":0.3,"output":0.3}},"Unbabel/M-Prometheus-14B":{"id":"Unbabel/M-Prometheus-14B","name":"M-Prometheus 14B","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2026-05-29","last_updated":"2026-05-29","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":32768,"input":32768,"output":8192},"cost":{"input":0.2,"output":0.2}},"NousResearch/hermes-4-70b":{"id":"NousResearch/hermes-4-70b","name":"Hermes 4 Medium","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-07-03","last_updated":"2025-07-03","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":8192},"cost":{"input":0.2006,"output":0.3995}},"NousResearch/DeepHermes-3-Mistral-24B-Preview":{"id":"NousResearch/DeepHermes-3-Mistral-24B-Preview","name":"DeepHermes-3 Mistral 24B (Preview)","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-05-10","last_updated":"2025-05-10","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":32768},"cost":{"input":0.3,"output":0.3}},"NousResearch/hermes-3-llama-3.1-70b":{"id":"NousResearch/hermes-3-llama-3.1-70b","name":"Hermes 3 70B","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2026-01-07","last_updated":"2026-01-07","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":65536,"input":65536,"output":8192},"cost":{"input":0.408,"output":0.408}},"NousResearch/Hermes-4-70B:thinking":{"id":"NousResearch/Hermes-4-70B:thinking","name":"Hermes 4 (Thinking)","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-09-17","last_updated":"2025-09-17","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":8192},"cost":{"input":0.2006,"output":0.3995}},"NousResearch/hermes-4-405b":{"id":"NousResearch/hermes-4-405b","name":"Hermes 4 Large","attachment":false,"reasoning":false,"tool_call":false,"structured_output":true,"release_date":"2025-08-26","last_updated":"2025-08-26","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":8192},"cost":{"input":0.3,"output":1.2}},"NousResearch/hermes-4-405b:thinking":{"id":"NousResearch/hermes-4-405b:thinking","name":"Hermes 4 Large (Thinking)","attachment":false,"reasoning":false,"tool_call":false,"structured_output":true,"release_date":"2024-01-01","last_updated":"2024-01-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":8192},"cost":{"input":0.3,"output":1.2}},"Steelskull/L3.3-Nevoria-R1-70b":{"id":"Steelskull/L3.3-Nevoria-R1-70b","name":"Steelskull Nevoria R1 70b","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2024-12-06","last_updated":"2024-12-06","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":16384,"input":16384,"output":16384},"cost":{"input":0.49299999999999994,"output":0.49299999999999994}},"Steelskull/L3.3-Cu-Mai-R1-70b":{"id":"Steelskull/L3.3-Cu-Mai-R1-70b","name":"Llama 3.3 70B Cu Mai","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2024-12-06","last_updated":"2024-12-06","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":16384,"input":16384,"output":16384},"cost":{"input":0.49299999999999994,"output":0.49299999999999994}},"Steelskull/L3.3-MS-Nevoria-70b":{"id":"Steelskull/L3.3-MS-Nevoria-70b","name":"Steelskull Nevoria 70b","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2024-12-06","last_updated":"2024-12-06","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":16384,"input":16384,"output":16384},"cost":{"input":0.49299999999999994,"output":0.49299999999999994}},"Steelskull/L3.3-MS-Evayale-70B":{"id":"Steelskull/L3.3-MS-Evayale-70B","name":"Evayale 70b ","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2024-12-06","last_updated":"2024-12-06","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":16384,"input":16384,"output":16384},"cost":{"input":0.49299999999999994,"output":0.49299999999999994}},"Steelskull/L3.3-Electra-R1-70b":{"id":"Steelskull/L3.3-Electra-R1-70b","name":"Steelskull Electra R1 70b","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2024-12-06","last_updated":"2024-12-06","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":16384,"input":16384,"output":16384},"cost":{"input":0.69989,"output":0.69989}},"Steelskull/L3.3-MS-Evalebis-70b":{"id":"Steelskull/L3.3-MS-Evalebis-70b","name":"MS Evalebis 70b","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2024-12-06","last_updated":"2024-12-06","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":16384,"input":16384,"output":16384},"cost":{"input":0.49299999999999994,"output":0.49299999999999994}},"essentialai/rnj-1-instruct":{"id":"essentialai/rnj-1-instruct","name":"RNJ-1 Instruct 8B","family":"rnj","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-12-13","last_updated":"2025-12-13","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":8192},"cost":{"input":0.15,"output":0.15}},"cohere/command-r-plus-08-2024":{"id":"cohere/command-r-plus-08-2024","name":"Cohere: Command R+","family":"command-r","attachment":false,"reasoning":false,"tool_call":true,"structured_output":false,"release_date":"2024-08-30","last_updated":"2024-08-30","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":4096},"cost":{"input":2.856,"output":14.246}},"cohere/command-r":{"id":"cohere/command-r","name":"Cohere: Command R","family":"command-r","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2024-03-11","last_updated":"2024-03-11","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":4096},"cost":{"input":0.476,"output":1.428}},"moonshotai/kimi-k2-instruct-0711":{"id":"moonshotai/kimi-k2-instruct-0711","name":"Kimi K2 0711","family":"kimi","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"release_date":"2025-07-11","last_updated":"2025-07-11","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":8192},"cost":{"input":0.1,"output":2}},"moonshotai/kimi-k2-thinking":{"id":"moonshotai/kimi-k2-thinking","name":"Kimi K2 Thinking","family":"kimi-thinking","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"release_date":"2025-11-06","last_updated":"2025-11-06","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"input":256000,"output":262144},"cost":{"input":0.3,"output":1.2}},"moonshotai/kimi-k2.5:thinking":{"id":"moonshotai/kimi-k2.5:thinking","name":"Kimi K2.5 Thinking","family":"kimi-thinking","attachment":true,"reasoning":true,"tool_call":true,"structured_output":false,"release_date":"2026-01-26","last_updated":"2026-01-26","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"input":256000,"output":65536},"cost":{"input":0.3,"output":1.9}},"moonshotai/kimi-k2-instruct":{"id":"moonshotai/kimi-k2-instruct","name":"Kimi K2 Instruct","family":"kimi","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"release_date":"2025-07-01","last_updated":"2025-07-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"input":256000,"output":8192},"cost":{"input":0.1,"output":2}},"moonshotai/kimi-k2.6":{"id":"moonshotai/kimi-k2.6","name":"Kimi K2.6","family":"kimi-k2.6","attachment":true,"reasoning":false,"tool_call":true,"structured_output":false,"release_date":"2026-04-16","last_updated":"2026-04-21","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"output":65536},"cost":{"input":0.53,"output":2.73}},"moonshotai/Kimi-K2-Instruct-0905":{"id":"moonshotai/Kimi-K2-Instruct-0905","name":"Kimi K2 0905","family":"kimi","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"release_date":"2025-09-25","last_updated":"2025-09-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"input":256000,"output":262144},"cost":{"input":0.4,"output":2}},"moonshotai/kimi-latest":{"id":"moonshotai/kimi-latest","name":"Kimi Latest","attachment":true,"reasoning":true,"tool_call":true,"structured_output":false,"release_date":"2026-05-03","last_updated":"2026-05-03","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"input":256000,"output":65536},"cost":{"input":0.5,"output":2.6,"cache_read":0.125}},"moonshotai/kimi-k2.6:thinking":{"id":"moonshotai/kimi-k2.6:thinking","name":"Kimi K2.6 Thinking","family":"kimi-thinking","attachment":true,"reasoning":true,"tool_call":true,"structured_output":false,"release_date":"2026-04-16","last_updated":"2026-04-21","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"output":65536},"cost":{"input":0.53,"output":2.73}},"moonshotai/kimi-k2-thinking-original":{"id":"moonshotai/kimi-k2-thinking-original","name":"Kimi K2 Thinking Original","family":"kimi-thinking","attachment":false,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2025-11-06","last_updated":"2025-11-06","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"input":256000,"output":16384},"cost":{"input":0.6,"output":2.5}},"moonshotai/kimi-k2.5":{"id":"moonshotai/kimi-k2.5","name":"Kimi K2.5","family":"kimi","attachment":true,"reasoning":false,"tool_call":true,"structured_output":false,"release_date":"2026-01-26","last_updated":"2026-01-26","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"input":256000,"output":65536},"cost":{"input":0.3,"output":1.9}},"moonshotai/kimi-k2-thinking-turbo-original":{"id":"moonshotai/kimi-k2-thinking-turbo-original","name":"Kimi K2 Thinking Turbo Original","family":"kimi-thinking","attachment":false,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2025-11-06","last_updated":"2025-11-06","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"input":256000,"output":16384},"cost":{"input":1.15,"output":8}},"meta-llama/llama-4-maverick":{"id":"meta-llama/llama-4-maverick","name":"Llama 4 Maverick","family":"llama","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"release_date":"2025-09-05","last_updated":"2025-09-05","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"input":1048576,"output":65536},"cost":{"input":0.18000000000000002,"output":0.8}},"meta-llama/llama-3.2-3b-instruct":{"id":"meta-llama/llama-3.2-3b-instruct","name":"Llama 3.2 3b Instruct","family":"llama","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2024-09-25","last_updated":"2024-09-25","modalities":{"input":["text","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"input":131072,"output":8192},"cost":{"input":0.0306,"output":0.0493}},"meta-llama/llama-4-scout":{"id":"meta-llama/llama-4-scout","name":"Llama 4 Scout","family":"llama","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"release_date":"2025-09-05","last_updated":"2025-09-05","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":328000,"input":328000,"output":65536},"cost":{"input":0.085,"output":0.46}},"meta-llama/llama-3.1-8b-instruct":{"id":"meta-llama/llama-3.1-8b-instruct","name":"Llama 3.1 8b Instruct","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2024-07-23","last_updated":"2024-07-23","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"input":131072,"output":16384},"cost":{"input":0.0544,"output":0.0544}},"meta-llama/llama-3.3-70b-instruct":{"id":"meta-llama/llama-3.3-70b-instruct","name":"Llama 3.3 70b Instruct","family":"llama","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"release_date":"2025-02-27","last_updated":"2025-02-27","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"input":131072,"output":16384},"cost":{"input":0.05,"output":0.23}},"anthracite-org/magnum-v2-72b":{"id":"anthracite-org/magnum-v2-72b","name":"Magnum V2 72B","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2024-07-01","last_updated":"2024-07-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":16384,"input":16384,"output":8192},"cost":{"input":2.006,"output":2.992}},"anthracite-org/magnum-v4-72b":{"id":"anthracite-org/magnum-v4-72b","name":"Magnum v4 72B","family":"llama","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-01-01","last_updated":"2025-01-01","modalities":{"input":["text","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":16384,"input":16384,"output":8192},"cost":{"input":2.006,"output":2.992}},"Doctor-Shotgun/MS3.2-24B-Magnum-Diamond":{"id":"Doctor-Shotgun/MS3.2-24B-Magnum-Diamond","name":"MS3.2 24B Magnum Diamond","family":"mistral","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-11-24","last_updated":"2025-11-24","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":16384,"input":16384,"output":32768},"cost":{"input":0.49299999999999994,"output":0.49299999999999994}},"baidu/ernie-4.5-vl-28b-a3b":{"id":"baidu/ernie-4.5-vl-28b-a3b","name":"ERNIE 4.5 VL 28B","family":"ernie","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-06-30","last_updated":"2025-06-30","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":32768,"input":32768,"output":16384},"cost":{"input":0.13999999999999999,"output":0.5599999999999999}},"nanogpt/coding-router:max":{"id":"nanogpt/coding-router:max","name":"Coding Router Max","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-05-12","last_updated":"2026-05-12","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"input":1000000,"output":128000},"cost":{"input":5,"output":30,"cache_read":0.5}},"nanogpt/coding-router:high":{"id":"nanogpt/coding-router:high","name":"Coding Router High","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-05-12","last_updated":"2026-05-12","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"input":1000000,"output":128000},"cost":{"input":1.1,"output":2.2,"cache_read":0.11}},"nanogpt/coding-router":{"id":"nanogpt/coding-router","name":"Coding Router","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-05-12","last_updated":"2026-05-12","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"input":1000000,"output":128000},"cost":{"input":1.1,"output":2.2,"cache_read":0.11}},"nanogpt/coding-router:medium":{"id":"nanogpt/coding-router:medium","name":"Coding Router Medium","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-05-12","last_updated":"2026-05-12","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"input":1000000,"output":128000},"cost":{"input":0.14,"output":0.28,"cache_read":0.028}},"nanogpt/coding-router:low":{"id":"nanogpt/coding-router:low","name":"Coding Router Low","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-05-12","last_updated":"2026-05-12","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"input":1000000,"output":128000},"cost":{"input":0.14,"output":0.28,"cache_read":0.028}},"abacusai/Dracarys-72B-Instruct":{"id":"abacusai/Dracarys-72B-Instruct","name":"Llama 3.1 70B Dracarys 2","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-08-02","last_updated":"2025-08-02","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":16384,"input":16384,"output":8192},"cost":{"input":0.49299999999999994,"output":0.49299999999999994}},"x-ai/grok-4.20-multi-agent":{"id":"x-ai/grok-4.20-multi-agent","name":"Grok 4.20 Multi-Agent","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-03-31","last_updated":"2026-03-31","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":2000000,"input":2000000,"output":131072},"cost":{"input":2,"output":6}},"x-ai/grok-build-0.1":{"id":"x-ai/grok-build-0.1","name":"Grok Build 0.1","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-05-20","last_updated":"2026-05-20","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"input":256000,"output":256000},"cost":{"input":1,"output":2,"cache_read":0.2}},"x-ai/grok-4.20":{"id":"x-ai/grok-4.20","name":"Grok 4.20","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-03-31","last_updated":"2026-03-31","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":2000000,"input":2000000,"output":131072},"cost":{"input":2,"output":6}},"x-ai/grok-latest":{"id":"x-ai/grok-latest","name":"Grok Latest","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-05-03","last_updated":"2026-05-03","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"input":1000000,"output":1000000},"cost":{"input":1.25,"output":2.5,"cache_read":0.2}},"x-ai/grok-4.3":{"id":"x-ai/grok-4.3","name":"Grok 4.3","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-04-30","last_updated":"2026-04-30","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"input":1000000,"output":1000000},"cost":{"input":1.25,"output":2.5,"cache_read":0.2}},"deepseek-ai/DeepSeek-V3.1":{"id":"deepseek-ai/DeepSeek-V3.1","name":"DeepSeek V3.1","family":"deepseek","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-07-26","last_updated":"2025-07-26","modalities":{"input":["text","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":65536},"cost":{"input":0.2,"output":0.7}},"deepseek-ai/DeepSeek-V3.1:thinking":{"id":"deepseek-ai/DeepSeek-V3.1:thinking","name":"DeepSeek V3.1 Thinking","family":"deepseek-thinking","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-08-21","last_updated":"2025-08-21","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":65536},"cost":{"input":0.2,"output":0.7}},"deepseek-ai/DeepSeek-V3.1-Terminus":{"id":"deepseek-ai/DeepSeek-V3.1-Terminus","name":"DeepSeek V3.1 Terminus","family":"deepseek","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"release_date":"2025-08-02","last_updated":"2025-08-02","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":65536},"cost":{"input":0.25,"output":0.7}},"deepseek-ai/deepseek-v3.2-exp-thinking":{"id":"deepseek-ai/deepseek-v3.2-exp-thinking","name":"DeepSeek V3.2 Exp Thinking","family":"deepseek-thinking","attachment":false,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2025-09-29","last_updated":"2025-09-29","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":163840,"input":163840,"output":65536},"cost":{"input":0.27999999999999997,"output":0.42000000000000004}},"deepseek-ai/DeepSeek-V3.1-Terminus:thinking":{"id":"deepseek-ai/DeepSeek-V3.1-Terminus:thinking","name":"DeepSeek V3.1 Terminus (Thinking)","family":"deepseek-thinking","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"release_date":"2025-09-22","last_updated":"2025-09-22","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":65536},"cost":{"input":0.25,"output":0.7}},"deepseek-ai/deepseek-v3.2-exp":{"id":"deepseek-ai/deepseek-v3.2-exp","name":"DeepSeek V3.2 Exp","family":"deepseek","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-09-29","last_updated":"2025-09-29","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":163840,"input":163840,"output":65536},"cost":{"input":0.27999999999999997,"output":0.42000000000000004}},"deepseek-ai/DeepSeek-R1-0528":{"id":"deepseek-ai/DeepSeek-R1-0528","name":"DeepSeek R1 0528","family":"deepseek","attachment":false,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2025-05-28","last_updated":"2025-05-28","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":163840},"cost":{"input":0.4,"output":1.7}},"Sao10K/L3.1-70B-Hanami-x1":{"id":"Sao10K/L3.1-70B-Hanami-x1","name":"Llama 3.1 70B Hanami","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2024-07-23","last_updated":"2024-07-23","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":16384,"input":16384,"output":16384},"cost":{"input":0.49299999999999994,"output":0.49299999999999994}},"Sao10K/L3.3-70B-Euryale-v2.3":{"id":"Sao10K/L3.3-70B-Euryale-v2.3","name":"Llama 3.3 70B Euryale","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2024-12-06","last_updated":"2024-12-06","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":20480,"input":20480,"output":16384},"cost":{"input":0.49299999999999994,"output":0.49299999999999994}},"Sao10K/L3-8B-Stheno-v3.2":{"id":"Sao10K/L3-8B-Stheno-v3.2","name":"Sao10K Stheno 8b","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2024-11-29","last_updated":"2024-11-29","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":16384,"input":16384,"output":8192},"cost":{"input":0.2006,"output":0.2006}},"Sao10K/L3.1-70B-Euryale-v2.2":{"id":"Sao10K/L3.1-70B-Euryale-v2.2","name":"Llama 3.1 70B Euryale","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2024-07-23","last_updated":"2024-07-23","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":20480,"input":20480,"output":16384},"cost":{"input":0.306,"output":0.357}},"nvidia/Llama-3_3-Nemotron-Super-49B-v1_5":{"id":"nvidia/Llama-3_3-Nemotron-Super-49B-v1_5","name":"Nvidia Nemotron Super 49B v1.5","family":"nemotron","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":true,"release_date":"2025-08-08","last_updated":"2025-08-08","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":16384},"cost":{"input":0.05,"output":0.25}},"nvidia/nemotron-3-nano-omni-30b-a3b-reasoning":{"id":"nvidia/nemotron-3-nano-omni-30b-a3b-reasoning","name":"Nvidia Nemotron 3 Nano Omni","family":"nemotron","attachment":true,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2026-04-28","last_updated":"2026-04-28","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"input":256000,"output":65536},"cost":{"input":0.105,"output":0.42}},"nvidia/nemotron-3-nano-30b-a3b":{"id":"nvidia/nemotron-3-nano-30b-a3b","name":"Nvidia Nemotron 3 Nano 30B","family":"nemotron","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":true,"release_date":"2025-12-15","last_updated":"2025-12-15","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"input":256000,"output":262144},"cost":{"input":0.17,"output":0.68}},"nvidia/Llama-3.3-Nemotron-Super-49B-v1":{"id":"nvidia/Llama-3.3-Nemotron-Super-49B-v1","name":"Nvidia Nemotron Super 49B","family":"nemotron","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":true,"release_date":"2025-08-08","last_updated":"2025-08-08","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":16384},"cost":{"input":0.15,"output":0.15}},"nvidia/nvidia-nemotron-nano-9b-v2":{"id":"nvidia/nvidia-nemotron-nano-9b-v2","name":"Nvidia Nemotron Nano 9B v2","family":"nemotron","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":true,"release_date":"2025-08-18","last_updated":"2025-08-18","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":16384},"cost":{"input":0.17,"output":0.68}},"nvidia/Llama-3.1-Nemotron-70B-Instruct-HF":{"id":"nvidia/Llama-3.1-Nemotron-70B-Instruct-HF","name":"Nvidia Nemotron 70b","family":"nemotron","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":true,"release_date":"2025-04-15","last_updated":"2025-04-15","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":16384,"input":16384,"output":8192},"cost":{"input":0.357,"output":0.408}},"nvidia/nemotron-3-super-120b-a12b":{"id":"nvidia/nemotron-3-super-120b-a12b","name":"Nvidia Nemotron 3 Super 120B","family":"nemotron","attachment":false,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2026-03-01","last_updated":"2026-03-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"input":262144,"output":16384},"cost":{"input":0.05,"output":0.25}},"nvidia/nemotron-3-super-120b-a12b:thinking":{"id":"nvidia/nemotron-3-super-120b-a12b:thinking","name":"Nvidia Nemotron 3 Super 120B Thinking","family":"nemotron","attachment":false,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2026-03-01","last_updated":"2026-03-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"input":262144,"output":16384},"cost":{"input":0.05,"output":0.25}},"arcee-ai/trinity-mini":{"id":"arcee-ai/trinity-mini","name":"Trinity Mini","family":"trinity-mini","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-12-01","last_updated":"2025-12-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"input":131072,"output":8192},"cost":{"input":0.045000000000000005,"output":0.15}},"arcee-ai/trinity-large-thinking":{"id":"arcee-ai/trinity-large-thinking","name":"Trinity Large Thinking","attachment":false,"reasoning":true,"tool_call":true,"structured_output":false,"release_date":"2026-04-01","last_updated":"2026-04-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"input":262144,"output":80000},"cost":{"input":0.25,"output":0.9}},"Infermatic/MN-12B-Inferor-v0.0":{"id":"Infermatic/MN-12B-Inferor-v0.0","name":"Mistral Nemo Inferor 12B","family":"mistral-nemo","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2024-07-01","last_updated":"2024-07-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":16384,"input":16384,"output":8192},"cost":{"input":0.25499999999999995,"output":0.49299999999999994}},"meganova-ai/manta-mini-1.0":{"id":"meganova-ai/manta-mini-1.0","name":"Manta Mini 1.0","family":"nova","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-12-20","last_updated":"2025-12-20","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":8192,"input":8192,"output":8192},"cost":{"input":0.02,"output":0.16}},"meganova-ai/manta-flash-1.0":{"id":"meganova-ai/manta-flash-1.0","name":"Manta Flash 1.0","family":"nova","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-12-20","last_updated":"2025-12-20","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":16384,"input":16384,"output":16384},"cost":{"input":0.02,"output":0.16}},"meganova-ai/manta-pro-1.0":{"id":"meganova-ai/manta-pro-1.0","name":"Manta Pro 1.0","family":"nova","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-12-20","last_updated":"2025-12-20","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":32768,"input":32768,"output":32768},"cost":{"input":0.060000000000000005,"output":0.5}},"cognitivecomputations/dolphin-2.9.2-qwen2-72b":{"id":"cognitivecomputations/dolphin-2.9.2-qwen2-72b","name":"Dolphin 72b","family":"qwen","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-02-27","last_updated":"2025-02-27","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":8192,"input":8192,"output":4096},"cost":{"input":0.306,"output":0.306}},"microsoft/wizardlm-2-8x22b":{"id":"microsoft/wizardlm-2-8x22b","name":"WizardLM-2 8x22B","family":"gpt","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-04-15","last_updated":"2025-04-15","modalities":{"input":["text","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":65536,"input":65536,"output":8192},"cost":{"input":0.49299999999999994,"output":0.49299999999999994}},"EVA-UNIT-01/EVA-Qwen2.5-72B-v0.2":{"id":"EVA-UNIT-01/EVA-Qwen2.5-72B-v0.2","name":"EVA-Qwen2.5-72B-v0.2","family":"qwen","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-09-25","last_updated":"2025-09-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":16384,"input":16384,"output":8192},"cost":{"input":0.7989999999999999,"output":0.7989999999999999}},"EVA-UNIT-01/EVA-Qwen2.5-32B-v0.2":{"id":"EVA-UNIT-01/EVA-Qwen2.5-32B-v0.2","name":"EVA-Qwen2.5-32B-v0.2","family":"qwen","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-07-26","last_updated":"2025-07-26","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":16384,"input":16384,"output":8192},"cost":{"input":0.7989999999999999,"output":0.7989999999999999}},"EVA-UNIT-01/EVA-LLaMA-3.33-70B-v0.0":{"id":"EVA-UNIT-01/EVA-LLaMA-3.33-70B-v0.0","name":"EVA Llama 3.33 70B","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-07-26","last_updated":"2025-07-26","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":16384,"input":16384,"output":16384},"cost":{"input":2.006,"output":2.006}},"EVA-UNIT-01/EVA-LLaMA-3.33-70B-v0.1":{"id":"EVA-UNIT-01/EVA-LLaMA-3.33-70B-v0.1","name":"EVA-LLaMA-3.33-70B-v0.1","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-09-25","last_updated":"2025-09-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":16384,"input":16384,"output":16384},"cost":{"input":2.006,"output":2.006}},"stepfun-ai/step-3.5-flash":{"id":"stepfun-ai/step-3.5-flash","name":"Step 3.5 Flash","family":"step","attachment":false,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2026-02-02","last_updated":"2026-02-02","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"input":256000,"output":256000},"cost":{"input":0.2,"output":0.5}},"stepfun-ai/step-3.5-flash-2603":{"id":"stepfun-ai/step-3.5-flash-2603","name":"Step 3.5 Flash 2603","attachment":false,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2026-04-14","last_updated":"2026-04-14","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"input":256000,"output":256000},"cost":{"input":0.1,"output":0.3}},"LLM360/K2-Think":{"id":"LLM360/K2-Think","name":"K2-Think","family":"kimi-thinking","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-07-26","last_updated":"2025-07-26","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":32768},"cost":{"input":0.17,"output":0.68}},"bytedance-seed/seed-2.0-lite":{"id":"bytedance-seed/seed-2.0-lite","name":"ByteDance Seed 2.0 Lite","attachment":false,"reasoning":false,"tool_call":false,"structured_output":true,"release_date":"2026-03-10","last_updated":"2026-03-10","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"input":262144,"output":131072},"cost":{"input":0.25,"output":2}},"TEE/gemma4-31b:thinking":{"id":"TEE/gemma4-31b:thinking","name":"Gemma 4 31B Thinking TEE","attachment":false,"reasoning":true,"tool_call":false,"structured_output":true,"release_date":"2026-05-02","last_updated":"2026-05-02","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"input":262144,"output":131072},"cost":{"input":0.45,"output":1}},"TEE/qwen3-30b-a3b-instruct-2507":{"id":"TEE/qwen3-30b-a3b-instruct-2507","name":"Qwen3 30B A3B Instruct 2507 TEE","family":"qwen","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-07-29","last_updated":"2025-07-29","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262000,"input":262000,"output":32768},"cost":{"input":0.15,"output":0.44999999999999996}},"TEE/qwen3.5-122b-a10b":{"id":"TEE/qwen3.5-122b-a10b","name":"Qwen3.5 122B A10B TEE","attachment":false,"reasoning":true,"tool_call":true,"structured_output":false,"release_date":"2026-05-26","last_updated":"2026-05-26","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"input":262144,"output":262144},"cost":{"input":0.46,"output":3.68}},"TEE/qwen2.5-vl-72b-instruct":{"id":"TEE/qwen2.5-vl-72b-instruct","name":"Qwen2.5 VL 72B TEE","family":"qwen","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-02-01","last_updated":"2025-02-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":65536,"input":65536,"output":8192},"cost":{"input":0.7,"output":0.7}},"TEE/glm-5.1-thinking":{"id":"TEE/glm-5.1-thinking","name":"GLM 5.1 Thinking TEE","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-04-20","last_updated":"2026-04-20","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":202752,"input":202752,"output":65535},"cost":{"input":1.5,"output":5.25,"cache_read":0.3}},"TEE/qwen3.6-35b-a3b-uncensored":{"id":"TEE/qwen3.6-35b-a3b-uncensored","name":"Qwen3.6 35B A3B Uncensored TEE","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-05-23","last_updated":"2026-05-23","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"input":131072,"output":131072},"cost":{"input":0.3,"output":1.5}},"TEE/gemma-4-31b-it":{"id":"TEE/gemma-4-31b-it","name":"Gemma 4 31B IT TEE","attachment":false,"reasoning":true,"tool_call":true,"structured_output":false,"release_date":"2026-05-26","last_updated":"2026-05-26","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"input":262144,"output":262144},"cost":{"input":0.15,"output":0.46}},"TEE/deepseek-v3.2":{"id":"TEE/deepseek-v3.2","name":"DeepSeek V3.2 TEE","family":"deepseek","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-12-01","last_updated":"2025-12-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":164000,"input":164000,"output":65536},"cost":{"input":0.5,"output":1}},"TEE/kimi-k2.6":{"id":"TEE/kimi-k2.6","name":"Kimi K2.6 TEE","attachment":true,"reasoning":false,"tool_call":true,"structured_output":false,"release_date":"2026-04-21","last_updated":"2026-04-21","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"input":262144,"output":65536},"cost":{"input":1.5,"output":5.25,"cache_read":0.375}},"TEE/glm-4.7":{"id":"TEE/glm-4.7","name":"GLM 4.7 TEE","family":"glm","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2026-01-29","last_updated":"2026-01-29","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131000,"input":131000,"output":65535},"cost":{"input":0.85,"output":3.3}},"TEE/gpt-oss-120b":{"id":"TEE/gpt-oss-120b","name":"GPT-OSS 120B TEE","family":"gpt-oss","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"input":131072,"output":16384},"cost":{"input":2,"output":2}},"TEE/gpt-oss-20b":{"id":"TEE/gpt-oss-20b","name":"GPT-OSS 20B TEE","family":"gpt-oss","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"input":131072,"output":8192},"cost":{"input":0.2,"output":0.8}},"TEE/gemma-3-27b-it":{"id":"TEE/gemma-3-27b-it","name":"Gemma 3 27B TEE","family":"gemma","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-03-10","last_updated":"2025-03-10","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"input":131072,"output":8192},"cost":{"input":0.2,"output":0.8}},"TEE/deepseek-v4-pro:thinking":{"id":"TEE/deepseek-v4-pro:thinking","name":"DeepSeek V4 Pro Thinking TEE","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-04-29","last_updated":"2026-04-29","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":800000,"input":800000,"output":65536},"cost":{"input":1.5,"output":5.25,"cache_read":0.15}},"TEE/glm-4.7-flash":{"id":"TEE/glm-4.7-flash","name":"GLM 4.7 Flash TEE","family":"glm-flash","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2026-01-19","last_updated":"2026-01-19","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":203000,"input":203000,"output":65535},"cost":{"input":0.15,"output":0.5}},"TEE/kimi-k2.5-thinking":{"id":"TEE/kimi-k2.5-thinking","name":"Kimi K2.5 Thinking TEE","family":"kimi-thinking","attachment":false,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2026-01-29","last_updated":"2026-01-29","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":65535},"cost":{"input":0.3,"output":1.9}},"TEE/llama3-3-70b":{"id":"TEE/llama3-3-70b","name":"Llama 3.3 70B","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-07-03","last_updated":"2025-07-03","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":16384},"cost":{"input":2,"output":2}},"TEE/glm-5":{"id":"TEE/glm-5","name":"GLM 5 TEE","family":"glm","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2026-02-11","last_updated":"2026-02-11","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":203000,"input":203000,"output":65535},"cost":{"input":1.2,"output":3.5}},"TEE/qwen3.5-397b-a17b":{"id":"TEE/qwen3.5-397b-a17b","name":"Qwen3.5 397B A17B TEE","family":"qwen","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2026-02-28","last_updated":"2026-02-28","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":258048,"input":258048,"output":65536},"cost":{"input":0.6,"output":3.6}},"TEE/minimax-m2.5":{"id":"TEE/minimax-m2.5","name":"MiniMax M2.5 TEE","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-04-20","last_updated":"2026-04-20","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":196608,"input":196608,"output":131072},"cost":{"input":0.2,"output":1.38}},"TEE/gemma-4-26b-a4b-uncensored":{"id":"TEE/gemma-4-26b-a4b-uncensored","name":"Gemma 4 26B A4B Uncensored TEE","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"release_date":"2026-05-23","last_updated":"2026-05-23","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":65536,"input":65536,"output":65536},"cost":{"input":0.15,"output":0.7}},"TEE/deepseek-v4-pro":{"id":"TEE/deepseek-v4-pro","name":"DeepSeek V4 Pro TEE","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-04-25","last_updated":"2026-04-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":800000,"input":800000,"output":65536},"cost":{"input":1.5,"output":5.25,"cache_read":0.15}},"TEE/kimi-k2.5":{"id":"TEE/kimi-k2.5","name":"Kimi K2.5 TEE","family":"kimi","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2026-01-29","last_updated":"2026-01-29","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":65535},"cost":{"input":0.3,"output":1.9}},"TEE/deepseek-v3.1":{"id":"TEE/deepseek-v3.1","name":"DeepSeek V3.1 TEE","family":"deepseek","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-08-21","last_updated":"2025-08-21","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":164000,"input":164000,"output":8192},"cost":{"input":1,"output":2.5}},"TEE/qwen3.5-27b":{"id":"TEE/qwen3.5-27b","name":"Qwen3.5 27B TEE","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2026-03-13","last_updated":"2026-03-13","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"input":262144,"output":65536},"cost":{"input":0.3,"output":2.4}},"TEE/gemma4-31b":{"id":"TEE/gemma4-31b","name":"Gemma 4 31B","attachment":false,"reasoning":false,"tool_call":false,"structured_output":true,"release_date":"2026-04-04","last_updated":"2026-04-04","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"input":262144,"output":131072},"cost":{"input":0.45,"output":1}},"TEE/glm-5.1":{"id":"TEE/glm-5.1","name":"GLM 5.1 TEE","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2026-04-20","last_updated":"2026-04-20","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":202752,"input":202752,"output":65535},"cost":{"input":1.5,"output":5.25,"cache_read":0.3}},"nex-agi/deepseek-v3.1-nex-n1":{"id":"nex-agi/deepseek-v3.1-nex-n1","name":"DeepSeek V3.1 Nex N1","family":"deepseek","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-12-10","last_updated":"2025-12-10","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":8192},"cost":{"input":0.27999999999999997,"output":0.42000000000000004}},"tencent/Hunyuan-MT-7B":{"id":"tencent/Hunyuan-MT-7B","name":"Hunyuan MT 7B","family":"hunyuan","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-09-18","last_updated":"2025-09-18","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":8192,"input":8192,"output":8192},"cost":{"input":10,"output":20}},"tencent/hy3-preview":{"id":"tencent/hy3-preview","name":"Tencent: Hy3 preview","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2026-04-23","last_updated":"2026-04-23","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"input":262144,"output":262144},"cost":{"input":0.066,"output":0.26,"cache_read":0.029}},"ibm-granite/granite-4.1-8b":{"id":"ibm-granite/granite-4.1-8b","name":"Granite 4.1 8B","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"release_date":"2026-04-29","last_updated":"2026-04-29","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"input":131072,"output":131072},"cost":{"input":0.05,"output":0.1,"cache_read":0.05}},"nothingiisreal/L3.1-70B-Celeste-V0.1-BF16":{"id":"nothingiisreal/L3.1-70B-Celeste-V0.1-BF16","name":"Llama 3.1 70B Celeste v0.1","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2024-07-23","last_updated":"2024-07-23","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":16384,"input":16384,"output":16384},"cost":{"input":0.49299999999999994,"output":0.49299999999999994}},"stepfun/step-3.7-flash:thinking":{"id":"stepfun/step-3.7-flash:thinking","name":"Step 3.7 Flash Thinking","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-05-29","last_updated":"2026-05-29","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"input":256000,"output":256000},"cost":{"input":0.2,"output":1.15,"cache_read":0.04}},"aion-labs/aion-2.5":{"id":"aion-labs/aion-2.5","name":"AionLabs: Aion-2.5","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2026-03-20","last_updated":"2026-03-20","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"input":131072,"output":32768},"cost":{"input":1,"output":3,"cache_read":0.35}},"aion-labs/aion-2.0":{"id":"aion-labs/aion-2.0","name":"AionLabs: Aion-2.0","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2026-02-23","last_updated":"2026-02-23","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"input":131072,"output":32768},"cost":{"input":0.8,"output":1.6}},"aion-labs/aion-1.0":{"id":"aion-labs/aion-1.0","name":"Aion 1.0","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-02-01","last_updated":"2025-02-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":65536,"input":65536,"output":8192},"cost":{"input":3.995,"output":7.99}},"aion-labs/aion-rp-llama-3.1-8b":{"id":"aion-labs/aion-rp-llama-3.1-8b","name":"Llama 3.1 8b (uncensored)","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2024-07-23","last_updated":"2024-07-23","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":32768,"input":32768,"output":16384},"cost":{"input":0.2006,"output":0.2006}},"aion-labs/aion-1.0-mini":{"id":"aion-labs/aion-1.0-mini","name":"Aion 1.0 mini (DeepSeek)","family":"deepseek","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-02-20","last_updated":"2025-02-20","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"input":131072,"output":8192},"cost":{"input":0.7989999999999999,"output":1.394}},"amazon/nova-pro-v1":{"id":"amazon/nova-pro-v1","name":"Amazon Nova Pro 1.0","family":"nova-pro","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2024-12-03","last_updated":"2024-12-03","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":300000,"input":300000,"output":32000},"cost":{"input":0.7989999999999999,"output":3.1959999999999997}},"amazon/nova-lite-v1":{"id":"amazon/nova-lite-v1","name":"Amazon Nova Lite 1.0","family":"nova-lite","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2024-12-03","last_updated":"2024-12-03","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":300000,"input":300000,"output":5120},"cost":{"input":0.0595,"output":0.238}},"amazon/nova-micro-v1":{"id":"amazon/nova-micro-v1","name":"Amazon Nova Micro 1.0","family":"nova-micro","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2024-12-03","last_updated":"2024-12-03","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":5120},"cost":{"input":0.0357,"output":0.1394}},"amazon/nova-2-lite-v1":{"id":"amazon/nova-2-lite-v1","name":"Amazon Nova 2 Lite","family":"nova","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2024-12-03","last_updated":"2024-12-03","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"input":1000000,"output":65535},"cost":{"input":0.5099999999999999,"output":4.25}},"inclusionai/ling-2.6-flash":{"id":"inclusionai/ling-2.6-flash","name":"Ling 2.6 Flash","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"release_date":"2026-04-21","last_updated":"2026-04-21","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"input":262144,"output":32768},"cost":{"input":0.08,"output":0.24}},"inclusionai/ling-2.6-1t":{"id":"inclusionai/ling-2.6-1t","name":"Ling 2.6 1T","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"release_date":"2026-04-23","last_updated":"2026-04-23","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"input":262144,"output":32768},"cost":{"input":0.3,"output":2.5,"cache_read":0.06}},"inclusionai/ring-2.6-1t":{"id":"inclusionai/ring-2.6-1t","name":"Ring 2.6 1T","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-05-08","last_updated":"2026-05-08","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"input":262144,"output":65536},"cost":{"input":1,"output":3}},"mlabonne/NeuralDaredevil-8B-abliterated":{"id":"mlabonne/NeuralDaredevil-8B-abliterated","name":"Neural Daredevil 8B abliterated","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2024-12-01","last_updated":"2024-12-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":8192,"input":8192,"output":8192},"cost":{"input":0.44,"output":0.44}},"unsloth/gemma-3-27b-it":{"id":"unsloth/gemma-3-27b-it","name":"Gemma 3 27B IT","family":"unsloth","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-03-10","last_updated":"2025-03-10","modalities":{"input":["text","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":96000},"cost":{"input":0.2992,"output":0.2992}},"unsloth/gemma-3-12b-it":{"id":"unsloth/gemma-3-12b-it","name":"Gemma 3 12B IT","family":"unsloth","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-03-10","last_updated":"2025-03-10","modalities":{"input":["text","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":131072},"cost":{"input":0.272,"output":0.272}},"unsloth/gemma-3-4b-it":{"id":"unsloth/gemma-3-4b-it","name":"Gemma 3 4B IT","family":"unsloth","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-03-10","last_updated":"2025-03-10","modalities":{"input":["text","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":8192},"cost":{"input":0.2006,"output":0.2006}},"featherless-ai/Qwerky-72B":{"id":"featherless-ai/Qwerky-72B","name":"Qwerky 72B","family":"qwerky","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-03-20","last_updated":"2025-03-20","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":32000,"input":32000,"output":8192},"cost":{"input":0.5,"output":0.5}},"shisa-ai/shisa-v2-llama3.3-70b":{"id":"shisa-ai/shisa-v2-llama3.3-70b","name":"Shisa V2 Llama 3.3 70B","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-07-26","last_updated":"2025-07-26","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":16384},"cost":{"input":0.5,"output":0.5}},"shisa-ai/shisa-v2.1-llama3.3-70b":{"id":"shisa-ai/shisa-v2.1-llama3.3-70b","name":"Shisa V2.1 Llama 3.3 70B","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2024-12-06","last_updated":"2024-12-06","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":32768,"input":32768,"output":4096},"cost":{"input":0.5,"output":0.5}},"undi95/remm-slerp-l2-13b":{"id":"undi95/remm-slerp-l2-13b","name":"ReMM SLERP 13B","family":"llama","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-01-01","last_updated":"2025-01-01","modalities":{"input":["text","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":6144,"input":6144,"output":4096},"cost":{"input":0.7989999999999999,"output":1.2069999999999999}},"VongolaChouko/Starcannon-Unleashed-12B-v1.0":{"id":"VongolaChouko/Starcannon-Unleashed-12B-v1.0","name":"Mistral Nemo Starcannon 12b v1","family":"mistral-nemo","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2024-07-01","last_updated":"2024-07-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":16384,"input":16384,"output":8192},"cost":{"input":0.49299999999999994,"output":0.49299999999999994}},"google/gemini-pro-latest":{"id":"google/gemini-pro-latest","name":"Gemini Pro Latest","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-03-29","last_updated":"2026-03-29","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1048756,"input":1048756,"output":65536},"cost":{"input":2,"output":12,"cache_read":0.2}},"google/gemma-4-26b-a4b-it:thinking":{"id":"google/gemma-4-26b-a4b-it:thinking","name":"Gemma 4 26B A4B Thinking","attachment":true,"reasoning":true,"tool_call":false,"structured_output":true,"release_date":"2026-04-02","last_updated":"2026-04-02","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"input":262144,"output":131072},"cost":{"input":0.13,"output":0.4}},"google/gemini-flash-1.5":{"id":"google/gemini-flash-1.5","name":"Gemini 1.5 Flash","family":"gemini-flash","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2024-05-14","last_updated":"2024-05-14","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":2000000,"input":2000000,"output":8192},"cost":{"input":0.0748,"output":0.306}},"google/gemma-4-31b-it":{"id":"google/gemma-4-31b-it","name":"Gemma 4 31B","attachment":true,"reasoning":true,"tool_call":false,"structured_output":true,"release_date":"2026-04-02","last_updated":"2026-04-02","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"input":262144,"output":131072},"cost":{"input":0.1,"output":0.35}},"google/gemini-flash-lite-latest":{"id":"google/gemini-flash-lite-latest","name":"Gemini Flash Lite Latest","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-03-29","last_updated":"2026-03-29","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"input":1048576,"output":65536},"cost":{"input":0.25,"output":1.5,"cache_read":0.025}},"google/gemini-3-flash-preview":{"id":"google/gemini-3-flash-preview","name":"Gemini 3 Flash (Preview)","family":"gemini-flash","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2025-12-17","last_updated":"2025-12-17","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1048756,"input":1048756,"output":65536},"cost":{"input":0.5,"output":3}},"google/gemini-3.1-pro-preview-high":{"id":"google/gemini-3.1-pro-preview-high","name":"Gemini 3.1 Pro (Preview High)","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-02-21","last_updated":"2026-02-21","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1048756,"input":1048756,"output":65536},"cost":{"input":2,"output":12,"cache_read":0.2}},"google/gemini-3.1-pro-preview-customtools":{"id":"google/gemini-3.1-pro-preview-customtools","name":"Gemini 3.1 Pro (Preview Custom Tools)","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-02-27","last_updated":"2026-02-27","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1048756,"input":1048756,"output":65536},"cost":{"input":2,"output":12,"cache_read":0.2}},"google/gemma-4-31b-it:thinking":{"id":"google/gemma-4-31b-it:thinking","name":"Gemma 4 31B Thinking","attachment":true,"reasoning":true,"tool_call":false,"structured_output":true,"release_date":"2026-04-02","last_updated":"2026-04-02","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"input":262144,"output":131072},"cost":{"input":0.1,"output":0.35}},"google/gemini-flash-latest":{"id":"google/gemini-flash-latest","name":"Gemini Flash Latest","attachment":true,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2026-03-29","last_updated":"2026-03-29","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1048756,"input":1048756,"output":65536},"cost":{"input":1.5,"output":9,"cache_read":0.15}},"google/gemini-3.5-flash-thinking":{"id":"google/gemini-3.5-flash-thinking","name":"Gemini 3.5 Flash Thinking","attachment":true,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2026-05-19","last_updated":"2026-05-19","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"input":1048576,"output":65536},"cost":{"input":1.5,"output":9,"cache_read":0.15}},"google/gemini-3.1-pro-preview":{"id":"google/gemini-3.1-pro-preview","name":"Gemini 3.1 Pro (Preview)","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-02-19","last_updated":"2026-02-19","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1048756,"input":1048756,"output":65536},"cost":{"input":2,"output":12,"cache_read":0.2}},"google/gemini-3.1-flash-lite":{"id":"google/gemini-3.1-flash-lite","name":"Gemini 3.1 Flash Lite","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-03-03","last_updated":"2026-03-03","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"input":1048576,"output":65536},"cost":{"input":0.25,"output":1.5,"cache_read":0.025}},"google/gemma-4-26b-a4b-it":{"id":"google/gemma-4-26b-a4b-it","name":"Gemma 4 26B A4B","attachment":true,"reasoning":true,"tool_call":false,"structured_output":true,"release_date":"2026-04-02","last_updated":"2026-04-02","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"input":262144,"output":131072},"cost":{"input":0.13,"output":0.4}},"google/gemini-3.5-flash":{"id":"google/gemini-3.5-flash","name":"Gemini 3.5 Flash","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-05-19","last_updated":"2026-05-19","modalities":{"input":["text","image","audio"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"input":1048576,"output":65536},"cost":{"input":1.5,"output":9,"cache_read":0.15}},"google/gemini-3-flash-preview-thinking":{"id":"google/gemini-3-flash-preview-thinking","name":"Gemini 3 Flash Thinking","family":"gemini-flash","attachment":true,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2025-12-17","last_updated":"2025-12-17","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1048756,"input":1048756,"output":65536},"cost":{"input":0.5,"output":3}},"google/gemini-3.1-pro-preview-low":{"id":"google/gemini-3.1-pro-preview-low","name":"Gemini 3.1 Pro (Preview Low)","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-02-21","last_updated":"2026-02-21","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1048756,"input":1048756,"output":65536},"cost":{"input":2,"output":12,"cache_read":0.2}},"huihui-ai/Qwen2.5-32B-Instruct-abliterated":{"id":"huihui-ai/Qwen2.5-32B-Instruct-abliterated","name":"Qwen 2.5 32B Abliterated","family":"qwen","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-01-06","last_updated":"2025-01-06","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":32768,"input":32768,"output":8192},"cost":{"input":0.7,"output":0.7}},"huihui-ai/Llama-3.3-70B-Instruct-abliterated":{"id":"huihui-ai/Llama-3.3-70B-Instruct-abliterated","name":"Llama 3.3 70B Instruct abliterated","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-08-08","last_updated":"2025-08-08","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":16384,"input":16384,"output":16384},"cost":{"input":0.7,"output":0.7}},"huihui-ai/DeepSeek-R1-Distill-Llama-70B-abliterated":{"id":"huihui-ai/DeepSeek-R1-Distill-Llama-70B-abliterated","name":"DeepSeek R1 Llama 70B Abliterated","family":"deepseek","attachment":false,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2025-01-20","last_updated":"2025-01-20","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":16384,"input":16384,"output":8192},"cost":{"input":0.7,"output":0.7}},"huihui-ai/DeepSeek-R1-Distill-Qwen-32B-abliterated":{"id":"huihui-ai/DeepSeek-R1-Distill-Qwen-32B-abliterated","name":"DeepSeek R1 Qwen Abliterated","family":"qwen","attachment":false,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2025-01-20","last_updated":"2025-01-20","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":16384,"input":16384,"output":8192},"cost":{"input":1.4,"output":1.4}},"openai/gpt-4o-2024-08-06":{"id":"openai/gpt-4o-2024-08-06","name":"GPT-4o (2024-08-06)","family":"gpt","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2024-08-06","last_updated":"2024-08-06","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":16384},"cost":{"input":2.499,"output":9.996}},"openai/gpt-5-pro":{"id":"openai/gpt-5-pro","name":"GPT 5 Pro","family":"gpt-pro","attachment":true,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2025-08-07","last_updated":"2025-08-07","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":400000,"output":128000},"cost":{"input":15,"output":120}},"openai/gpt-5-mini":{"id":"openai/gpt-5-mini","name":"GPT 5 Mini","family":"gpt-mini","attachment":true,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2025-08-07","last_updated":"2025-08-07","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":400000,"output":128000},"cost":{"input":0.25,"output":2}},"openai/o3-mini-high":{"id":"openai/o3-mini-high","name":"OpenAI o3-mini (High)","family":"o-mini","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2025-01-31","last_updated":"2025-01-31","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"input":200000,"output":100000},"cost":{"input":0.64,"output":2.588}},"openai/o4-mini-high":{"id":"openai/o4-mini-high","name":"OpenAI o4-mini high","family":"o-mini","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2025-04-16","last_updated":"2025-04-16","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"input":200000,"output":100000},"cost":{"input":1.1,"output":4.4}},"openai/gpt-4o":{"id":"openai/gpt-4o","name":"GPT-4o","family":"gpt","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2024-05-13","last_updated":"2024-05-13","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":16384},"cost":{"input":2.499,"output":9.996}},"openai/gpt-5.2":{"id":"openai/gpt-5.2","name":"GPT 5.2","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-01-01","last_updated":"2026-01-01","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":400000,"output":128000},"cost":{"input":1.75,"output":14}},"openai/gpt-5-codex":{"id":"openai/gpt-5-codex","name":"GPT-5 Codex","family":"gpt-codex","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-09-15","last_updated":"2025-09-15","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"input":256000,"output":32768},"cost":{"input":9.996,"output":19.992}},"openai/o3":{"id":"openai/o3","name":"OpenAI o3","family":"o","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-04-16","last_updated":"2025-04-16","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"input":200000,"output":100000},"cost":{"input":2,"output":8}},"openai/gpt-4o-2024-11-20":{"id":"openai/gpt-4o-2024-11-20","name":"GPT-4o (2024-11-20)","family":"gpt","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2024-11-20","last_updated":"2024-11-20","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":16384},"cost":{"input":2.5,"output":10}},"openai/gpt-5":{"id":"openai/gpt-5","name":"GPT 5","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2025-08-07","last_updated":"2025-08-07","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":400000,"output":128000},"cost":{"input":1.25,"output":10}},"openai/gpt-5.4-pro":{"id":"openai/gpt-5.4-pro","name":"GPT 5.4 Pro","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-03-05","last_updated":"2026-03-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":922000,"input":922000,"output":128000},"cost":{"input":30,"output":180,"cache_read":3}},"openai/gpt-4.1-mini":{"id":"openai/gpt-4.1-mini","name":"GPT 4.1 Mini","family":"gpt-mini","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-04-14","last_updated":"2025-04-14","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1047576,"input":1047576,"output":32768},"cost":{"input":0.4,"output":1.6}},"openai/gpt-5.2-pro":{"id":"openai/gpt-5.2-pro","name":"GPT 5.2 Pro","family":"gpt-pro","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-01-01","last_updated":"2026-01-01","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":400000,"output":128000},"cost":{"input":21,"output":168}},"openai/gpt-4o-mini-search-preview":{"id":"openai/gpt-4o-mini-search-preview","name":"GPT-4o mini Search Preview","family":"gpt-mini","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2024-07-18","last_updated":"2024-07-18","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":16384},"cost":{"input":0.088,"output":0.35}},"openai/o4-mini":{"id":"openai/o4-mini","name":"OpenAI o4-mini","family":"o-mini","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2025-04-16","last_updated":"2025-04-16","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"input":200000,"output":100000},"cost":{"input":1.1,"output":4.4}},"openai/gpt-5.4":{"id":"openai/gpt-5.4","name":"GPT 5.4","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-03-05","last_updated":"2026-03-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":922000,"input":922000,"output":128000},"cost":{"input":2.5,"output":15,"cache_read":0.25}},"openai/o3-mini":{"id":"openai/o3-mini","name":"OpenAI o3-mini","family":"o-mini","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2025-01-31","last_updated":"2025-01-31","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"input":200000,"output":100000},"cost":{"input":1.1,"output":4.4}},"openai/gpt-latest":{"id":"openai/gpt-latest","name":"GPT Latest","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-03-29","last_updated":"2026-03-29","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"input":1000000,"output":128000},"cost":{"input":5,"output":30,"cache_read":0.5}},"openai/gpt-5.5":{"id":"openai/gpt-5.5","name":"GPT 5.5","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-04-23","last_updated":"2026-04-23","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"input":1000000,"output":128000},"cost":{"input":5,"output":30,"cache_read":0.5}},"openai/gpt-5.1":{"id":"openai/gpt-5.1","name":"GPT 5.1","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2025-11-13","last_updated":"2025-11-13","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":400000,"output":128000},"cost":{"input":1.25,"output":10}},"openai/gpt-5-nano":{"id":"openai/gpt-5-nano","name":"GPT 5 Nano","family":"gpt-nano","attachment":true,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2025-08-07","last_updated":"2025-08-07","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":400000,"output":128000},"cost":{"input":0.05,"output":0.4}},"openai/gpt-oss-120b":{"id":"openai/gpt-oss-120b","name":"GPT OSS 120B","family":"gpt-oss","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":16384},"cost":{"input":0.05,"output":0.25}},"openai/gpt-4o-mini":{"id":"openai/gpt-4o-mini","name":"GPT-4o mini","family":"gpt-mini","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2024-07-18","last_updated":"2024-07-18","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":16384},"cost":{"input":0.1496,"output":0.595}},"openai/gpt-5.1-codex-max":{"id":"openai/gpt-5.1-codex-max","name":"GPT 5.1 Codex Max","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2025-11-13","last_updated":"2025-11-13","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":400000,"output":128000},"cost":{"input":2.5,"output":20}},"openai/gpt-5.1-codex-mini":{"id":"openai/gpt-5.1-codex-mini","name":"GPT 5.1 Codex Mini","family":"gpt-codex-mini","attachment":true,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2025-11-13","last_updated":"2025-11-13","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":400000,"output":128000},"cost":{"input":0.25,"output":2}},"openai/o1-pro":{"id":"openai/o1-pro","name":"OpenAI o1 Pro","family":"o-pro","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-01-25","last_updated":"2025-01-25","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"input":200000,"output":100000},"cost":{"input":150,"output":600}},"openai/gpt-chat-latest":{"id":"openai/gpt-chat-latest","name":"GPT Chat Latest","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"release_date":"2026-05-03","last_updated":"2026-05-03","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":400000,"output":128000},"cost":{"input":5,"output":30,"cache_read":0.5}},"openai/o3-pro-2025-06-10":{"id":"openai/o3-pro-2025-06-10","name":"OpenAI o3-pro (2025-06-10)","family":"o-pro","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2025-06-10","last_updated":"2025-06-10","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"input":200000,"output":100000},"cost":{"input":9.996,"output":19.992}},"openai/gpt-oss-20b":{"id":"openai/gpt-oss-20b","name":"GPT OSS 20B","family":"gpt-oss","attachment":false,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":16384},"cost":{"input":0.04,"output":0.15}},"openai/gpt-4-turbo-preview":{"id":"openai/gpt-4-turbo-preview","name":"GPT-4 Turbo Preview","family":"gpt","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2023-11-06","last_updated":"2024-01-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":4096},"cost":{"input":9.996,"output":30.004999999999995}},"openai/o3-deep-research":{"id":"openai/o3-deep-research","name":"OpenAI o3 Deep Research","family":"o","attachment":false,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2025-04-16","last_updated":"2025-04-16","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"input":200000,"output":100000},"cost":{"input":9.996,"output":19.992}},"openai/o3-mini-low":{"id":"openai/o3-mini-low","name":"OpenAI o3-mini (Low)","family":"o-mini","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2025-01-31","last_updated":"2025-01-31","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"input":200000,"output":100000},"cost":{"input":9.996,"output":19.992}},"openai/gpt-4.1":{"id":"openai/gpt-4.1","name":"GPT 4.1","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"release_date":"2025-09-10","last_updated":"2025-09-10","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1047576,"input":1047576,"output":32768},"cost":{"input":2,"output":8}},"openai/gpt-5.4-nano":{"id":"openai/gpt-5.4-nano","name":"GPT 5.4 Nano","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-03-17","last_updated":"2026-03-17","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":400000,"output":128000},"cost":{"input":0.2,"output":1.25,"cache_read":0.02}},"openai/gpt-5.3-codex":{"id":"openai/gpt-5.3-codex","name":"GPT 5.3 Codex","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-02-24","last_updated":"2026-02-24","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":400000,"output":128000},"cost":{"input":1.75,"output":14,"cache_read":0.175}},"openai/o4-mini-deep-research":{"id":"openai/o4-mini-deep-research","name":"OpenAI o4-mini Deep Research","family":"o-mini","attachment":false,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2025-04-16","last_updated":"2025-04-16","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"input":200000,"output":100000},"cost":{"input":9.996,"output":19.992}},"openai/gpt-3.5-turbo":{"id":"openai/gpt-3.5-turbo","name":"GPT-3.5 Turbo","family":"gpt","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2022-11-30","last_updated":"2024-01-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":16385,"input":16385,"output":4096},"cost":{"input":0.5,"output":1.5}},"openai/gpt-5.1-2025-11-13":{"id":"openai/gpt-5.1-2025-11-13","name":"GPT-5.1 (2025-11-13)","family":"gpt","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-11-13","last_updated":"2025-11-13","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"input":1000000,"output":32768},"cost":{"input":1.25,"output":10}},"openai/gpt-5.2-codex":{"id":"openai/gpt-5.2-codex","name":"GPT 5.2 Codex","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-01-14","last_updated":"2026-01-14","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":400000,"output":128000},"cost":{"input":1.75,"output":14}},"openai/gpt-5.1-codex":{"id":"openai/gpt-5.1-codex","name":"GPT 5.1 Codex","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2025-11-13","last_updated":"2025-11-13","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":400000,"output":128000},"cost":{"input":1.25,"output":10}},"openai/o1-preview":{"id":"openai/o1-preview","name":"OpenAI o1-preview","family":"o","attachment":false,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2024-09-12","last_updated":"2024-09-12","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":32768},"cost":{"input":14.993999999999998,"output":59.993}},"openai/gpt-oss-safeguard-20b":{"id":"openai/gpt-oss-safeguard-20b","name":"GPT OSS Safeguard 20B","family":"gpt-oss","attachment":false,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2025-10-29","last_updated":"2025-10-29","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":16384},"cost":{"input":0.075,"output":0.3}},"openai/gpt-5.4-mini":{"id":"openai/gpt-5.4-mini","name":"GPT 5.4 Mini","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-03-17","last_updated":"2026-03-17","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":400000,"output":128000},"cost":{"input":0.75,"output":4.5,"cache_read":0.075}},"openai/gpt-4-turbo":{"id":"openai/gpt-4-turbo","name":"GPT-4 Turbo","family":"gpt","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2023-11-06","last_updated":"2024-01-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":4096},"cost":{"input":10,"output":30}},"openai/o1":{"id":"openai/o1","name":"OpenAI o1","family":"o","attachment":false,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2024-12-17","last_updated":"2024-12-17","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"input":200000,"output":100000},"cost":{"input":14.993999999999998,"output":59.993}},"openai/gpt-4o-search-preview":{"id":"openai/gpt-4o-search-preview","name":"GPT-4o Search Preview","family":"gpt","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2024-05-13","last_updated":"2024-05-13","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":16384},"cost":{"input":1.47,"output":5.88}},"openai/gpt-4.1-nano":{"id":"openai/gpt-4.1-nano","name":"GPT 4.1 Nano","family":"gpt-nano","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-04-14","last_updated":"2025-04-14","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1047576,"input":1047576,"output":32768},"cost":{"input":0.1,"output":0.4}},"poolside/laguna-m.1":{"id":"poolside/laguna-m.1","name":"Laguna M.1","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2026-04-29","last_updated":"2026-04-29","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":32768},"cost":{"input":0.1,"output":0.3}},"poolside/laguna-xs.2":{"id":"poolside/laguna-xs.2","name":"Laguna XS.2","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2026-04-29","last_updated":"2026-04-29","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":32768},"cost":{"input":0.1,"output":0.3}},"baseten/Kimi-K2-Instruct-FP4":{"id":"baseten/Kimi-K2-Instruct-FP4","name":"Kimi K2 0711 Instruct FP4","family":"kimi","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-07-11","last_updated":"2025-07-11","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":131072},"cost":{"input":0.1,"output":2}},"failspy/Meta-Llama-3-70B-Instruct-abliterated-v3.5":{"id":"failspy/Meta-Llama-3-70B-Instruct-abliterated-v3.5","name":"Llama 3 70B abliterated","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-07-26","last_updated":"2025-07-26","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":8192,"input":8192,"output":8192},"cost":{"input":0.7,"output":0.7}},"NeverSleep/Lumimaid-v0.2-70B":{"id":"NeverSleep/Lumimaid-v0.2-70B","name":"Lumimaid v0.2","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2024-07-01","last_updated":"2024-07-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":16384,"input":16384,"output":8192},"cost":{"input":1,"output":1.5}},"inflatebot/MN-12B-Mag-Mell-R1":{"id":"inflatebot/MN-12B-Mag-Mell-R1","name":"Mag Mell R1","family":"mistral-nemo","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2024-07-01","last_updated":"2024-07-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":16384,"input":16384,"output":8192},"cost":{"input":0.49299999999999994,"output":0.49299999999999994}},"minimax/minimax-m3":{"id":"minimax/minimax-m3","name":"MiniMax M3","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"release_date":"2026-06-01","last_updated":"2026-06-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":512000,"input":512000,"output":80000},"cost":{"input":0.3,"output":1.2,"cache_read":0.06}},"minimax/minimax-01":{"id":"minimax/minimax-01","name":"MiniMax 01","family":"minimax","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-01-15","last_updated":"2025-01-15","modalities":{"input":["text","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000192,"input":1000192,"output":16384},"cost":{"input":0.1394,"output":1.1219999999999999}},"minimax/minimax-m2.1":{"id":"minimax/minimax-m2.1","name":"MiniMax M2.1","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2025-12-19","last_updated":"2025-12-19","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"input":200000,"output":131072},"cost":{"input":0.33,"output":1.32}},"minimax/minimax-m2.7-turbo":{"id":"minimax/minimax-m2.7-turbo","name":"MiniMax M2.7 Turbo","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-03-18","last_updated":"2026-03-18","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":204800,"input":204800,"output":131072},"cost":{"input":0.6,"output":2.4}},"minimax/minimax-m2.7":{"id":"minimax/minimax-m2.7","name":"MiniMax M2.7","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-03-18","last_updated":"2026-03-18","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":204800,"input":204800,"output":131072},"cost":{"input":0.3,"output":1.2}},"minimax/minimax-m3:thinking":{"id":"minimax/minimax-m3:thinking","name":"MiniMax M3 Thinking","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-06-01","last_updated":"2026-06-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":512000,"input":512000,"output":80000},"cost":{"input":0.3,"output":1.2,"cache_read":0.06}},"minimax/minimax-m2.5":{"id":"minimax/minimax-m2.5","name":"MiniMax M2.5","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-02-12","last_updated":"2026-02-12","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":204800,"input":204800,"output":131072},"cost":{"input":0.3,"output":1.2}},"minimax/minimax-m2-her":{"id":"minimax/minimax-m2-her","name":"MiniMax M2-her","family":"minimax","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2026-01-24","last_updated":"2026-01-24","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":65532,"input":65532,"output":2048},"cost":{"input":0.30200000000000005,"output":1.2069999999999999}},"minimax/minimax-latest":{"id":"minimax/minimax-latest","name":"MiniMax Latest","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"release_date":"2026-05-03","last_updated":"2026-05-03","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":512000,"input":512000,"output":80000},"cost":{"input":0.3,"output":1.2,"cache_read":0.06}},"allenai/olmo-3-32b-think":{"id":"allenai/olmo-3-32b-think","name":"Olmo 3 32B Think","family":"allenai","attachment":false,"reasoning":true,"tool_call":false,"structured_output":false,"release_date":"2025-11-01","last_updated":"2025-11-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":8192},"cost":{"input":0.3,"output":0.44999999999999996}}}},"alibaba-cn":{"id":"alibaba-cn","env":["DASHSCOPE_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://dashscope.aliyuncs.com/compatible-mode/v1","name":"Alibaba (China)","doc":"https://www.alibabacloud.com/help/en/model-studio/models","models":{"MiniMax-M2.5":{"id":"MiniMax-M2.5","name":"MiniMax-M2.5","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"release_date":"2026-02-12","last_updated":"2026-02-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0.3,"output":1.2}},"qwen3-asr-flash":{"id":"qwen3-asr-flash","name":"Qwen3-ASR Flash","family":"qwen","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"knowledge":"2024-04","release_date":"2025-09-08","last_updated":"2025-09-08","modalities":{"input":["audio"],"output":["text"]},"open_weights":false,"limit":{"context":53248,"output":4096},"cost":{"input":0.032,"output":0.032}},"qwen-math-turbo":{"id":"qwen-math-turbo","name":"Qwen Math Turbo","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-04","release_date":"2024-09-19","last_updated":"2024-09-19","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":4096,"output":3072},"cost":{"input":0.287,"output":0.861}},"deepseek-r1-0528":{"id":"deepseek-r1-0528","name":"DeepSeek R1 0528","family":"deepseek-thinking","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-05-28","last_updated":"2025-05-28","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":16384},"cost":{"input":0.574,"output":2.294}},"qwen2-5-math-72b-instruct":{"id":"qwen2-5-math-72b-instruct","name":"Qwen2.5-Math 72B Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-04","release_date":"2024-09","last_updated":"2024-09","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":4096,"output":3072},"cost":{"input":0.574,"output":1.721}},"qwen3-next-80b-a3b-instruct":{"id":"qwen3-next-80b-a3b-instruct","name":"Qwen3-Next 80B-A3B Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-09","last_updated":"2025-09","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":32768},"cost":{"input":0.144,"output":0.574}},"qwen2-5-vl-72b-instruct":{"id":"qwen2-5-vl-72b-instruct","name":"Qwen2.5-VL 72B Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-04","release_date":"2024-09","last_updated":"2024-09","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":8192},"cost":{"input":2.294,"output":6.881}},"qwen-deep-research":{"id":"qwen-deep-research","name":"Qwen Deep Research","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-04","release_date":"2024-01","last_updated":"2024-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":32768},"cost":{"input":7.742,"output":23.367}},"qwen3-32b":{"id":"qwen3-32b","name":"Qwen3 32B","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-04","last_updated":"2025-04","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":16384},"cost":{"input":0.287,"output":1.147,"reasoning":2.868}},"qwen3-coder-30b-a3b-instruct":{"id":"qwen3-coder-30b-a3b-instruct","name":"Qwen3-Coder 30B-A3B Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-04","last_updated":"2025-04","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":65536},"cost":{"input":0.216,"output":0.861}},"kimi-k2-thinking":{"id":"kimi-k2-thinking","name":"Moonshot Kimi K2 Thinking","family":"kimi","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2025-11-06","last_updated":"2025-11-06","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":16384},"cost":{"input":0.574,"output":2.294}},"qwen2-5-math-7b-instruct":{"id":"qwen2-5-math-7b-instruct","name":"Qwen2.5-Math 7B Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-04","release_date":"2024-09","last_updated":"2024-09","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":4096,"output":3072},"cost":{"input":0.144,"output":0.287}},"qwen-flash":{"id":"qwen-flash","name":"Qwen Flash","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-04","release_date":"2025-07-28","last_updated":"2025-07-28","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":32768},"cost":{"input":0.022,"output":0.216}},"qwen3.5-plus":{"id":"qwen3.5-plus","name":"Qwen3.5 Plus","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2026-02-16","last_updated":"2026-02-16","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":65536},"cost":{"input":0.573,"output":3.44,"reasoning":3.44}},"deepseek-r1-distill-llama-8b":{"id":"deepseek-r1-distill-llama-8b","name":"DeepSeek R1 Distill Llama 8B","family":"deepseek-thinking","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-01-01","last_updated":"2025-01-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":32768,"output":16384},"cost":{"input":0,"output":0}},"qwen3-235b-a22b":{"id":"qwen3-235b-a22b","name":"Qwen3 235B-A22B","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-04","last_updated":"2025-04","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":16384},"cost":{"input":0.287,"output":1.147,"reasoning":2.868}},"qwen3-max":{"id":"qwen3-max","name":"Qwen3 Max","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-09-23","last_updated":"2025-09-23","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"output":65536},"cost":{"input":0.861,"output":3.441}},"kimi-k2.6":{"id":"kimi-k2.6","name":"Moonshot Kimi K2.6","family":"kimi","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":false,"temperature":true,"knowledge":"2025-01","release_date":"2026-04-21","last_updated":"2026-04-21","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":16384},"cost":{"input":0.929,"output":3.858}},"qwen2-5-72b-instruct":{"id":"qwen2-5-72b-instruct","name":"Qwen2.5 72B Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-04","release_date":"2024-09","last_updated":"2024-09","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":8192},"cost":{"input":0.574,"output":1.721}},"qwen3-14b":{"id":"qwen3-14b","name":"Qwen3 14B","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-04","last_updated":"2025-04","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":8192},"cost":{"input":0.144,"output":0.574,"reasoning":1.434}},"qwen3-omni-flash":{"id":"qwen3-omni-flash","name":"Qwen3-Omni Flash","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-04","release_date":"2025-09-15","last_updated":"2025-09-15","modalities":{"input":["text","image","audio","video"],"output":["text","audio"]},"open_weights":false,"limit":{"context":65536,"output":16384},"cost":{"input":0.058,"output":0.23,"input_audio":3.584,"output_audio":7.168}},"qwen3-vl-235b-a22b":{"id":"qwen3-vl-235b-a22b","name":"Qwen3-VL 235B-A22B","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-04","last_updated":"2025-04","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":32768},"cost":{"input":0.286705,"output":1.14682,"reasoning":2.867051}},"deepseek-r1":{"id":"deepseek-r1","name":"DeepSeek R1","family":"deepseek-thinking","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-01-01","last_updated":"2025-01-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":16384},"cost":{"input":0.574,"output":2.294}},"qwen3.5-flash":{"id":"qwen3.5-flash","name":"Qwen3.5 Flash","family":"qwen","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-04","release_date":"2026-02-23","last_updated":"2026-02-23","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":65536},"cost":{"input":0.172,"output":1.72,"reasoning":1.72}},"deepseek-v3-1":{"id":"deepseek-v3-1","name":"DeepSeek V3.1","family":"deepseek","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2025-01-01","last_updated":"2025-01-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":65536},"cost":{"input":0.574,"output":1.721}},"qwen3-8b":{"id":"qwen3-8b","name":"Qwen3 8B","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-04","last_updated":"2025-04","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":8192},"cost":{"input":0.072,"output":0.287,"reasoning":0.717}},"qwen3.7-max":{"id":"qwen3.7-max","name":"Qwen3.7 Max","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-05-21","last_updated":"2026-05-21","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":65536},"cost":{"input":2.5,"output":7.5,"cache_read":0.5,"cache_write":3.125}},"qwen-vl-plus":{"id":"qwen-vl-plus","name":"Qwen-VL Plus","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-04","release_date":"2024-01-25","last_updated":"2025-08-15","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":8192},"cost":{"input":0.115,"output":0.287}},"deepseek-r1-distill-llama-70b":{"id":"deepseek-r1-distill-llama-70b","name":"DeepSeek R1 Distill Llama 70B","family":"deepseek-thinking","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-01-01","last_updated":"2025-01-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":32768,"output":16384},"cost":{"input":0.287,"output":0.861}},"qwen3.6-plus":{"id":"qwen3.6-plus","name":"Qwen3.6 Plus","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2026-04-02","last_updated":"2026-04-02","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":65536},"cost":{"input":0.5,"output":3,"cache_read":0.05,"cache_write":0.625,"tiers":[{"input":2,"output":6,"cache_read":0.2,"cache_write":2.5,"tier":{"type":"context","size":256000}}],"context_over_200k":{"input":2,"output":6,"cache_read":0.2,"cache_write":2.5}}},"qwen3-vl-plus":{"id":"qwen3-vl-plus","name":"Qwen3-VL Plus","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-09-23","last_updated":"2025-09-23","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"output":32768},"cost":{"input":0.143353,"output":1.433525,"reasoning":4.300576}},"tongyi-intent-detect-v3":{"id":"tongyi-intent-detect-v3","name":"Tongyi Intent Detect V3","family":"yi","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2024-04","release_date":"2024-01","last_updated":"2024-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":8192,"output":1024},"cost":{"input":0.058,"output":0.144}},"qwen-max":{"id":"qwen-max","name":"Qwen Max","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-04","release_date":"2024-04-03","last_updated":"2025-01-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":8192},"cost":{"input":0.345,"output":1.377}},"qwen-omni-turbo":{"id":"qwen-omni-turbo","name":"Qwen-Omni Turbo","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-04","release_date":"2025-01-19","last_updated":"2025-03-26","modalities":{"input":["text","image","audio","video"],"output":["text","audio"]},"open_weights":false,"limit":{"context":32768,"output":2048},"cost":{"input":0.058,"output":0.23,"input_audio":3.584,"output_audio":7.168}},"qwen3-coder-480b-a35b-instruct":{"id":"qwen3-coder-480b-a35b-instruct","name":"Qwen3-Coder 480B-A35B Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-04","last_updated":"2025-04","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":65536},"cost":{"input":0.861,"output":3.441}},"qwen3-next-80b-a3b-thinking":{"id":"qwen3-next-80b-a3b-thinking","name":"Qwen3-Next 80B-A3B (Thinking)","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-09","last_updated":"2025-09","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":32768},"cost":{"input":0.144,"output":1.434}},"qwen3-coder-flash":{"id":"qwen3-coder-flash","name":"Qwen3 Coder Flash","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-07-28","last_updated":"2025-07-28","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":65536},"cost":{"input":0.144,"output":0.574}},"moonshot-kimi-k2-instruct":{"id":"moonshot-kimi-k2-instruct","name":"Moonshot Kimi K2 Instruct","family":"kimi","attachment":false,"reasoning":false,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-01-01","last_updated":"2025-01-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":8192},"cost":{"input":0.574,"output":2.294}},"qwen3.6-flash":{"id":"qwen3.6-flash","name":"Qwen3.6 Flash","family":"qwen3.6","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-04-27","last_updated":"2026-04-27","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":65536},"cost":{"input":0.1875,"output":1.125,"cache_write":0.234375}},"qwen-turbo":{"id":"qwen-turbo","name":"Qwen Turbo","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-04","release_date":"2024-11-01","last_updated":"2025-07-15","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":16384},"cost":{"input":0.044,"output":0.087,"reasoning":0.431}},"qwq-plus":{"id":"qwq-plus","name":"QwQ Plus","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-04","release_date":"2025-03-05","last_updated":"2025-03-05","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":8192},"cost":{"input":0.23,"output":0.574}},"qwen3-vl-30b-a3b":{"id":"qwen3-vl-30b-a3b","name":"Qwen3-VL 30B-A3B","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-04","last_updated":"2025-04","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":32768},"cost":{"input":0.108,"output":0.431,"reasoning":1.076}},"qwen-plus-character":{"id":"qwen-plus-character","name":"Qwen Plus Character","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-04","release_date":"2024-01","last_updated":"2024-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":32768,"output":4096},"cost":{"input":0.115,"output":0.287}},"deepseek-r1-distill-qwen-1-5b":{"id":"deepseek-r1-distill-qwen-1-5b","name":"DeepSeek R1 Distill Qwen 1.5B","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-01-01","last_updated":"2025-01-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":32768,"output":16384},"cost":{"input":0,"output":0}},"qwq-32b":{"id":"qwq-32b","name":"QwQ 32B","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-04","release_date":"2024-12","last_updated":"2024-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":8192},"cost":{"input":0.287,"output":0.861}},"deepseek-r1-distill-qwen-14b":{"id":"deepseek-r1-distill-qwen-14b","name":"DeepSeek R1 Distill Qwen 14B","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-01-01","last_updated":"2025-01-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":32768,"output":16384},"cost":{"input":0.144,"output":0.431}},"deepseek-v4-flash":{"id":"deepseek-v4-flash","name":"DeepSeek V4 Flash","family":"deepseek-flash","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-05","release_date":"2026-04-24","last_updated":"2026-04-24","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1000000,"output":384000},"cost":{"input":0.14,"output":0.28,"cache_read":0.0028}},"qwen-vl-ocr":{"id":"qwen-vl-ocr","name":"Qwen-VL OCR","family":"qwen","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2024-04","release_date":"2024-10-28","last_updated":"2025-04-13","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":34096,"output":4096},"cost":{"input":0.717,"output":0.717}},"glm-5":{"id":"glm-5","name":"GLM-5","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"release_date":"2026-02-11","last_updated":"2026-02-11","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":202752,"output":16384},"cost":{"input":0.86,"output":3.15}},"qwen-math-plus":{"id":"qwen-math-plus","name":"Qwen Math Plus","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-04","release_date":"2024-08-16","last_updated":"2024-09-19","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":4096,"output":3072},"cost":{"input":0.574,"output":1.721}},"qwen2-5-omni-7b":{"id":"qwen2-5-omni-7b","name":"Qwen2.5-Omni 7B","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-04","release_date":"2024-12","last_updated":"2024-12","modalities":{"input":["text","image","audio","video"],"output":["text","audio"]},"open_weights":true,"limit":{"context":32768,"output":2048},"cost":{"input":0.087,"output":0.345,"input_audio":5.448}},"deepseek-v3":{"id":"deepseek-v3","name":"DeepSeek V3","family":"deepseek","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2024-12-01","last_updated":"2024-12-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":65536,"output":8192},"cost":{"input":0.287,"output":1.147}},"qwen-mt-turbo":{"id":"qwen-mt-turbo","name":"Qwen-MT Turbo","family":"qwen","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2024-04","release_date":"2025-01","last_updated":"2025-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":16384,"output":8192},"cost":{"input":0.101,"output":0.28}},"qwen2-5-32b-instruct":{"id":"qwen2-5-32b-instruct","name":"Qwen2.5 32B Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-04","release_date":"2024-09","last_updated":"2024-09","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":8192},"cost":{"input":0.287,"output":0.861}},"qwen2-5-coder-7b-instruct":{"id":"qwen2-5-coder-7b-instruct","name":"Qwen2.5-Coder 7B Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-04","release_date":"2024-11","last_updated":"2024-11","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":8192},"cost":{"input":0.144,"output":0.287}},"qwen3.6-max-preview":{"id":"qwen3.6-max-preview","name":"Qwen3.6 Max Preview","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-04-20","last_updated":"2026-04-21","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":245800,"output":65536},"cost":{"input":1.32,"output":7.9,"cache_read":0.132}},"qwen-vl-max":{"id":"qwen-vl-max","name":"Qwen-VL Max","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-04","release_date":"2024-04-08","last_updated":"2025-08-13","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":8192},"cost":{"input":0.23,"output":0.574}},"qwen2-5-coder-32b-instruct":{"id":"qwen2-5-coder-32b-instruct","name":"Qwen2.5-Coder 32B Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-04","release_date":"2024-11","last_updated":"2024-11","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":8192},"cost":{"input":0.287,"output":0.861}},"qwen3.5-397b-a17b":{"id":"qwen3.5-397b-a17b","name":"Qwen3.5 397B-A17B","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2026-02-16","last_updated":"2026-02-16","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":65536},"cost":{"input":0.43,"output":2.58,"reasoning":2.58}},"deepseek-r1-distill-qwen-7b":{"id":"deepseek-r1-distill-qwen-7b","name":"DeepSeek R1 Distill Qwen 7B","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-01-01","last_updated":"2025-01-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":32768,"output":16384},"cost":{"input":0.072,"output":0.144}},"qwen3-omni-flash-realtime":{"id":"qwen3-omni-flash-realtime","name":"Qwen3-Omni Flash Realtime","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-04","release_date":"2025-09-15","last_updated":"2025-09-15","modalities":{"input":["text","image","audio"],"output":["text","audio"]},"open_weights":false,"limit":{"context":65536,"output":16384},"cost":{"input":0.23,"output":0.918,"input_audio":3.584,"output_audio":7.168}},"qwen2-5-14b-instruct":{"id":"qwen2-5-14b-instruct","name":"Qwen2.5 14B Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-04","release_date":"2024-09","last_updated":"2024-09","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":8192},"cost":{"input":0.144,"output":0.431}},"qwen3.7-plus":{"id":"qwen3.7-plus","name":"Qwen3.7 Plus","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2026-06-02","last_updated":"2026-06-02","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":16384},"cost":{"input":0.5,"output":3,"cache_read":0.05,"cache_write":0.625,"tiers":[{"input":2,"output":6,"cache_read":0.2,"cache_write":2.5,"tier":{"type":"context","size":128000}}]}},"deepseek-v3-2-exp":{"id":"deepseek-v3-2-exp","name":"DeepSeek V3.2 Exp","family":"deepseek","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2025-01-01","last_updated":"2025-01-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":65536},"cost":{"input":0.287,"output":0.431}},"deepseek-v4-pro":{"id":"deepseek-v4-pro","name":"DeepSeek V4 Pro","family":"deepseek-thinking","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-05","release_date":"2026-04-24","last_updated":"2026-04-24","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1000000,"output":384000},"cost":{"input":0.435,"output":0.87,"cache_read":0.003625}},"kimi-k2.5":{"id":"kimi-k2.5","name":"Moonshot Kimi K2.5","family":"kimi","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":false,"temperature":true,"knowledge":"2025-01","release_date":"2026-01-27","last_updated":"2026-01-27","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":32768},"cost":{"input":0.574,"output":2.411}},"qwen-omni-turbo-realtime":{"id":"qwen-omni-turbo-realtime","name":"Qwen-Omni Turbo Realtime","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-04","release_date":"2025-05-08","last_updated":"2025-05-08","modalities":{"input":["text","image","audio"],"output":["text","audio"]},"open_weights":false,"limit":{"context":32768,"output":2048},"cost":{"input":0.23,"output":0.918,"input_audio":3.584,"output_audio":7.168}},"qwen-mt-plus":{"id":"qwen-mt-plus","name":"Qwen-MT Plus","family":"qwen","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2024-04","release_date":"2025-01","last_updated":"2025-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":16384,"output":8192},"cost":{"input":0.259,"output":0.775}},"qwen-long":{"id":"qwen-long","name":"Qwen Long","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-04","release_date":"2025-01-25","last_updated":"2025-01-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":10000000,"output":8192},"cost":{"input":0.072,"output":0.287}},"qvq-max":{"id":"qvq-max","name":"QVQ Max","family":"qvq","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-04","release_date":"2025-03-25","last_updated":"2025-03-25","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":8192},"cost":{"input":1.147,"output":4.588}},"deepseek-r1-distill-qwen-32b":{"id":"deepseek-r1-distill-qwen-32b","name":"DeepSeek R1 Distill Qwen 32B","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-01-01","last_updated":"2025-01-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":32768,"output":16384},"cost":{"input":0.287,"output":0.861}},"qwen-doc-turbo":{"id":"qwen-doc-turbo","name":"Qwen Doc Turbo","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-04","release_date":"2024-01","last_updated":"2024-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":8192},"cost":{"input":0.087,"output":0.144}},"glm-5.1":{"id":"glm-5.1","name":"GLM-5.1","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-04-14","last_updated":"2026-04-14","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":202752,"output":128000},"cost":{"input":0.87,"output":3.48,"cache_read":0.17}},"qwen2-5-vl-7b-instruct":{"id":"qwen2-5-vl-7b-instruct","name":"Qwen2.5-VL 7B Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-04","release_date":"2024-09","last_updated":"2024-09","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":8192},"cost":{"input":0.287,"output":0.717}},"qwen-plus":{"id":"qwen-plus","name":"Qwen Plus","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-04","release_date":"2024-01-25","last_updated":"2025-09-11","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":32768},"cost":{"input":0.115,"output":0.287,"reasoning":1.147}},"qwen2-5-7b-instruct":{"id":"qwen2-5-7b-instruct","name":"Qwen2.5 7B Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-04","release_date":"2024-09","last_updated":"2024-09","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":8192},"cost":{"input":0.072,"output":0.144}},"MiniMax/MiniMax-M2.7":{"id":"MiniMax/MiniMax-M2.7","name":"MiniMax-M2.7","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-03-18","last_updated":"2026-03-18","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0.3,"output":1.2,"cache_read":0.06,"cache_write":0.375}},"qwen3-coder-plus":{"id":"qwen3-coder-plus","name":"Qwen3 Coder Plus","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-07-23","last_updated":"2025-07-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1048576,"output":65536},"cost":{"input":1,"output":5}},"siliconflow/deepseek-r1-0528":{"id":"siliconflow/deepseek-r1-0528","name":"siliconflow/deepseek-r1-0528","family":"deepseek-thinking","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-05-28","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":163840,"output":32768},"cost":{"input":0.5,"output":2.18}},"siliconflow/deepseek-v3-0324":{"id":"siliconflow/deepseek-v3-0324","name":"siliconflow/deepseek-v3-0324","family":"deepseek","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2024-12-26","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":163840,"output":163840},"cost":{"input":0.25,"output":1}},"siliconflow/deepseek-v3.2":{"id":"siliconflow/deepseek-v3.2","name":"siliconflow/deepseek-v3.2","family":"deepseek","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-12-03","last_updated":"2025-12-03","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":163840,"output":65536},"cost":{"input":0.27,"output":0.42}},"siliconflow/deepseek-v3.1-terminus":{"id":"siliconflow/deepseek-v3.1-terminus","name":"siliconflow/deepseek-v3.1-terminus","family":"deepseek","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-09-29","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":163840,"output":65536},"cost":{"input":0.27,"output":1}},"kimi/kimi-k2.5":{"id":"kimi/kimi-k2.5","name":"kimi/kimi-k2.5","family":"kimi","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":false,"knowledge":"2025-01","release_date":"2026-01-27","last_updated":"2026-01-27","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.6,"output":3,"cache_read":0.1}}}},"digitalocean":{"id":"digitalocean","env":["DIGITALOCEAN_ACCESS_TOKEN"],"npm":"@ai-sdk/openai-compatible","api":"https://inference.do-ai.run/v1","name":"DigitalOcean","doc":"https://docs.digitalocean.com/products/gradient-ai-platform/details/models/","models":{"openai-gpt-5.2":{"id":"openai-gpt-5.2","name":"GPT-5.2","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2025-12-11","last_updated":"2025-12-11","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":1.75,"output":14,"cache_read":0.175}},"deepseek-3.2":{"id":"deepseek-3.2","name":"DeepSeek V3.2","family":"deepseek","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2024-12","release_date":"2025-12-02","last_updated":"2026-04-30","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":64000},"cost":{"input":0.5,"output":1.6}},"openai-gpt-image-2":{"id":"openai-gpt-image-2","name":"GPT Image 2","family":"gpt-image","attachment":true,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2025-04-24","last_updated":"2025-04-24","modalities":{"input":["text","image"],"output":["image"]},"open_weights":false,"limit":{"context":0,"output":0}},"openai-gpt-4.1":{"id":"openai-gpt-4.1","name":"GPT-4.1","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-04","release_date":"2025-04-14","last_updated":"2025-04-14","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1047576,"output":32768},"cost":{"input":2,"output":8,"cache_read":0.5}},"nvidia-nemotron-3-super-120b":{"id":"nvidia-nemotron-3-super-120b","name":"Nemotron-3-Super-120B","family":"nemotron","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2026-02","release_date":"2026-03-11","last_updated":"2026-04-16","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"output":32768},"status":"beta","cost":{"input":0.3,"output":0.65}},"wan2-2-t2v-a14b":{"id":"wan2-2-t2v-a14b","name":"Wan2.2-T2V-A14B","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2025-07-28","last_updated":"2026-04-30","modalities":{"input":["text"],"output":["video"]},"open_weights":true,"limit":{"context":100,"output":1},"cost":{"input":0.6,"output":0}},"nemotron-3-nano-omni":{"id":"nemotron-3-nano-omni","name":"Nemotron Nano 3 Omni","family":"nemotron","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-04-28","last_updated":"2026-04-30","modalities":{"input":["text","image","video","audio"],"output":["text"]},"open_weights":true,"limit":{"context":65536,"output":65536},"cost":{"input":0.5,"output":0.9}},"openai-gpt-5.4-pro":{"id":"openai-gpt-5.4-pro","name":"GPT-5.4 pro","family":"gpt-pro","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-03-05","last_updated":"2026-03-05","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":30,"output":180}},"anthropic-claude-4.1-opus":{"id":"anthropic-claude-4.1-opus","name":"Claude Opus 4.1","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":32000},"cost":{"input":15,"output":75,"cache_read":1.5,"cache_write":18.75}},"llama-4-maverick":{"id":"llama-4-maverick","name":"Llama 4 Maverick 17B 128E Instruct","family":"llama","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-08","release_date":"2025-04-05","last_updated":"2026-04-30","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":1000000,"output":16384},"cost":{"input":0.25,"output":0.87}},"openai-gpt-5.4":{"id":"openai-gpt-5.4","name":"GPT-5.4","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-03-05","last_updated":"2026-03-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":2.5,"output":15,"cache_read":0.25}},"openai-gpt-5.4-mini":{"id":"openai-gpt-5.4-mini","name":"GPT-5.4 mini","family":"gpt-mini","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-03-17","last_updated":"2026-03-17","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":0.75,"output":4.5,"cache_read":0.075}},"anthropic-claude-4.5-sonnet":{"id":"anthropic-claude-4.5-sonnet","name":"Claude Sonnet 4.5","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-07-31","release_date":"2025-09-29","last_updated":"2025-09-29","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":64000},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75,"tiers":[{"input":6,"output":22.5,"cache_read":0.3,"cache_write":3.75,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":6,"output":22.5,"cache_read":0.3,"cache_write":3.75}}},"openai-o3":{"id":"openai-o3","name":"o3","family":"o","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-05","release_date":"2025-04-16","last_updated":"2025-04-16","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":2,"output":8,"cache_read":0.5}},"mistral-3-14B":{"id":"mistral-3-14B","name":"Ministral 3 14B Instruct","family":"ministral","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-12-15","last_updated":"2026-04-30","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":128000},"cost":{"input":0.2,"output":0.2}},"mistral-7b-instruct-v0.3":{"id":"mistral-7b-instruct-v0.3","name":"Mistral 7B Instruct v0.3","family":"mistral","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2024-05-22","last_updated":"2024-05-22","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":32768,"output":32768}},"openai-gpt-oss-120b":{"id":"openai-gpt-oss-120b","name":"gpt-oss-120b","family":"gpt-oss","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2024-06","release_date":"2025-08-05","last_updated":"2026-04-16","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":131072},"cost":{"input":0.1,"output":0.7}},"anthropic-claude-opus-4.5":{"id":"anthropic-claude-opus-4.5","name":"Claude Opus 4.5","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-11-24","last_updated":"2025-11-24","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25}},"multi-qa-mpnet-base-dot-v1":{"id":"multi-qa-mpnet-base-dot-v1","name":"Multi-QA-mpnet-base-dot-v1","family":"text-embedding","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2021-08-30","last_updated":"2026-04-16","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":512,"output":768},"cost":{"input":0.009,"output":0}},"openai-gpt-4o-mini":{"id":"openai-gpt-4o-mini","name":"GPT-4o mini","family":"gpt-mini","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2023-09","release_date":"2024-07-18","last_updated":"2024-07-18","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":0.15,"output":0.6,"cache_read":0.075}},"llama3-8b-instruct":{"id":"llama3-8b-instruct","name":"Llama 3.1 Instruct (8B)","family":"llama","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2023-12","release_date":"2024-07-23","last_updated":"2024-07-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":131072},"cost":{"input":0.198,"output":0.198}},"all-mini-lm-l6-v2":{"id":"all-mini-lm-l6-v2","name":"All-MiniLM-L6-v2","family":"text-embedding","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2021-08-30","last_updated":"2026-04-16","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":256,"output":384},"cost":{"input":0.009,"output":0}},"anthropic-claude-3.7-sonnet":{"id":"anthropic-claude-3.7-sonnet","name":"Claude 3.7 Sonnet","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-11","release_date":"2025-02-24","last_updated":"2025-02-24","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"status":"deprecated","cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75}},"bge-m3":{"id":"bge-m3","name":"BGE M3","family":"bge","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2024-01-30","last_updated":"2026-04-30","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":8192,"output":1024},"cost":{"input":0.02,"output":0}},"nemotron-3-nano-30b":{"id":"nemotron-3-nano-30b","name":"Nemotron 3 Nano 30B A3B","family":"nemotron","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-04-14","last_updated":"2025-04-14","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144}},"anthropic-claude-sonnet-4":{"id":"anthropic-claude-sonnet-4","name":"Claude Sonnet 4","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-05-22","last_updated":"2025-05-22","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":64000},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75,"tiers":[{"input":6,"output":22.5,"cache_read":0.3,"cache_write":3.75,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":6,"output":22.5,"cache_read":0.3,"cache_write":3.75}}},"openai-gpt-5.2-pro":{"id":"openai-gpt-5.2-pro","name":"GPT-5.2 pro","family":"gpt-pro","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2025-12-11","last_updated":"2025-12-11","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":21,"output":168}},"openai-gpt-5":{"id":"openai-gpt-5","name":"GPT-5","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-08-07","last_updated":"2025-08-07","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":1.25,"output":10,"cache_read":0.125}},"anthropic-claude-4.5-haiku":{"id":"anthropic-claude-4.5-haiku","name":"Claude Haiku 4.5","family":"claude-haiku","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-02-28","release_date":"2025-10-15","last_updated":"2025-10-15","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":1,"output":5,"cache_read":1,"cache_write":1.25}},"stable-diffusion-3.5-large":{"id":"stable-diffusion-3.5-large","name":"Stable Diffusion 3.5 Large","family":"stable-diffusion","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2024-10-22","last_updated":"2026-04-30","modalities":{"input":["text"],"output":["image"]},"open_weights":true,"limit":{"context":256,"output":1},"cost":{"input":0.08,"output":0}},"kimi-k2.6":{"id":"kimi-k2.6","name":"Kimi K2.6","family":"kimi","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":false,"knowledge":"2025-01","release_date":"2026-04-21","last_updated":"2026-04-21","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.95,"output":4}},"openai-gpt-oss-20b":{"id":"openai-gpt-oss-20b","name":"gpt-oss-20b","family":"gpt-oss","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-06","release_date":"2025-08-05","last_updated":"2026-04-16","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":131072},"cost":{"input":0.05,"output":0.45}},"ministral-3-8b-instruct-2512":{"id":"ministral-3-8b-instruct-2512","name":"Ministral 3 8B","family":"ministral","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2025-12-15","last_updated":"2025-12-15","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144}},"openai-gpt-image-1.5":{"id":"openai-gpt-image-1.5","name":"GPT Image 1.5","family":"gpt-image","attachment":true,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2025-11-25","last_updated":"2025-11-25","modalities":{"input":["text","image"],"output":["image"]},"open_weights":false,"limit":{"context":0,"output":0},"cost":{"input":5,"output":10,"cache_read":1}},"anthropic-claude-3-opus":{"id":"anthropic-claude-3-opus","name":"Claude 3 Opus","family":"claude-opus","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2023-08","release_date":"2024-02-29","last_updated":"2024-02-29","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":4096},"status":"deprecated","cost":{"input":15,"output":75,"cache_read":1.5,"cache_write":18.75}},"openai-gpt-5.4-nano":{"id":"openai-gpt-5.4-nano","name":"GPT-5.4 nano","family":"gpt-nano","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-03-17","last_updated":"2026-03-17","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":0.2,"output":1.25,"cache_read":0.02}},"deepseek-r1-distill-llama-70b":{"id":"deepseek-r1-distill-llama-70b","name":"DeepSeek R1 Distill Llama 70B","family":"deepseek-thinking","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-01-30","last_updated":"2025-01-30","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":32768},"cost":{"input":0.99,"output":0.99}},"llama3.3-70b-instruct":{"id":"llama3.3-70b-instruct","name":"Llama 3.3 Instruct 70B","family":"llama","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2023-12","release_date":"2024-12-06","last_updated":"2024-12-06","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":128000},"cost":{"input":0.65,"output":0.65}},"openai-o3-mini":{"id":"openai-o3-mini","name":"o3-mini","family":"o-mini","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-05","release_date":"2024-12-20","last_updated":"2025-01-29","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":1.1,"output":4.4,"cache_read":0.55}},"anthropic-claude-opus-4.7":{"id":"anthropic-claude-opus-4.7","name":"Claude Opus 4.7","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2026-01-31","release_date":"2026-04-16","last_updated":"2026-04-16","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25}},"bge-reranker-v2-m3":{"id":"bge-reranker-v2-m3","name":"BGE Reranker v2 M3","family":"bge","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2024-03-12","last_updated":"2026-04-30","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":8192,"output":1},"cost":{"input":0.01,"output":0}},"openai-gpt-5-mini":{"id":"openai-gpt-5-mini","name":"GPT-5 mini","family":"gpt-mini","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-05-30","release_date":"2025-08-07","last_updated":"2025-08-07","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":0.25,"output":2,"cache_read":0.025}},"gemma-4-31B-it":{"id":"gemma-4-31B-it","name":"Gemma 4 31B","family":"gemma","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-04-22","last_updated":"2026-04-30","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"output":8192},"cost":{"input":0.18,"output":0.5}},"qwen-2.5-14b-instruct":{"id":"qwen-2.5-14b-instruct","name":"Qwen 2.5 14B Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-09","release_date":"2024-09-19","last_updated":"2024-09-19","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":131072}},"openai-gpt-4o":{"id":"openai-gpt-4o","name":"GPT-4o","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2023-09","release_date":"2024-05-13","last_updated":"2024-08-06","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":2.5,"output":10,"cache_read":1.25}},"anthropic-claude-opus-4.6":{"id":"anthropic-claude-opus-4.6","name":"Claude Opus 4.6","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-05-31","release_date":"2026-02-05","last_updated":"2026-03-13","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25,"tiers":[{"input":10,"output":37.5,"cache_read":0.5,"cache_write":6.25,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":10,"output":37.5,"cache_read":0.5,"cache_write":6.25}}},"qwen3-coder-flash":{"id":"qwen3-coder-flash","name":"Qwen3 Coder Flash","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-07-28","last_updated":"2026-04-30","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":65536},"cost":{"input":0.45,"output":1.7}},"openai-o1":{"id":"openai-o1","name":"o1","family":"o","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2023-09","release_date":"2024-12-05","last_updated":"2024-12-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":15,"output":60,"cache_read":7.5}},"anthropic-claude-3.5-haiku":{"id":"anthropic-claude-3.5-haiku","name":"Claude 3.5 Haiku","family":"claude-haiku","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-07","release_date":"2024-11-05","last_updated":"2024-11-05","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":8192},"status":"deprecated","cost":{"input":0.8,"output":4,"cache_read":0.08,"cache_write":1}},"e5-large-v2":{"id":"e5-large-v2","name":"E5 Large v2","family":"text-embedding","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2023-05-19","last_updated":"2026-04-30","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":512,"output":1024},"cost":{"input":0.02,"output":0}},"anthropic-claude-4.6-sonnet":{"id":"anthropic-claude-4.6-sonnet","name":"Claude Sonnet 4.6","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-08-31","release_date":"2026-02-17","last_updated":"2026-03-13","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":64000},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75,"tiers":[{"input":6,"output":22.5,"cache_read":0.3,"cache_write":3.75,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":6,"output":22.5,"cache_read":0.3,"cache_write":3.75}}},"openai-gpt-5-nano":{"id":"openai-gpt-5-nano","name":"GPT-5 nano","family":"gpt-nano","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-05-30","release_date":"2025-08-07","last_updated":"2025-08-07","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":0.05,"output":0.4,"cache_read":0.005}},"qwen3-embedding-0.6b":{"id":"qwen3-embedding-0.6b","name":"Qwen3 Embedding 0.6B","family":"text-embedding","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2025-06-03","last_updated":"2026-04-16","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":8000,"output":1024},"status":"beta","cost":{"input":0.04,"output":0}},"openai-gpt-5.5":{"id":"openai-gpt-5.5","name":"GPT-5.5","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-12-01","release_date":"2026-04-23","last_updated":"2026-04-30","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":5,"output":30,"cache_read":0.5,"tiers":[{"input":10,"output":45,"cache_read":1,"tier":{"type":"context","size":272000}}],"context_over_200k":{"input":10,"output":45,"cache_read":1}}},"glm-5":{"id":"glm-5","name":"GLM 5","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"release_date":"2026-02-11","last_updated":"2026-04-16","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":202752,"output":128000},"cost":{"input":1,"output":3.2}},"deepseek-v3":{"id":"deepseek-v3","name":"DeepSeek V3","family":"deepseek","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-07","release_date":"2024-12-26","last_updated":"2025-03-24","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":163840,"output":131072}},"arcee-trinity-large-thinking":{"id":"arcee-trinity-large-thinking","name":"Trinity Large Thinking","family":"trinity","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-04-02","last_updated":"2026-04-16","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"output":128000},"status":"beta","cost":{"input":0.25,"output":0.9,"cache_read":0.06}},"anthropic-claude-3.5-sonnet":{"id":"anthropic-claude-3.5-sonnet","name":"Claude 3.5 Sonnet","family":"claude-sonnet","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-04","release_date":"2024-06-20","last_updated":"2024-10-22","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":8192},"status":"deprecated","cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75}},"nemotron-nano-12b-v2-vl":{"id":"nemotron-nano-12b-v2-vl","name":"Nemotron Nano 12B v2 VL","family":"nemotron","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2025-12-01","last_updated":"2026-04-30","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":16384},"cost":{"input":0.2,"output":0.6}},"gte-large-en-v1.5":{"id":"gte-large-en-v1.5","name":"GTE Large (v1.5)","family":"text-embedding","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2024-03-27","last_updated":"2026-04-16","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":8192,"output":1024},"cost":{"input":0.09,"output":0}},"anthropic-claude-opus-4.8":{"id":"anthropic-claude-opus-4.8","name":"Claude Opus 4.8","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-05-28","last_updated":"2026-05-29","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25}},"qwen3.5-397b-a17b":{"id":"qwen3.5-397b-a17b","name":"Qwen 3.5 397B A17B","family":"qwen3.5","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-02-15","last_updated":"2026-04-30","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":81920},"cost":{"input":0.55,"output":3.5}},"minimax-m2.5":{"id":"minimax-m2.5","name":"MiniMax M2.5","family":"minimax-m2.5","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-08","release_date":"2026-02-12","last_updated":"2026-04-16","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":128000},"status":"beta","cost":{"input":0.3,"output":1.2}},"anthropic-claude-haiku-4.5":{"id":"anthropic-claude-haiku-4.5","name":"Claude Haiku 4.5","family":"claude-haiku","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-02-28","release_date":"2025-10-15","last_updated":"2025-10-15","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":1,"output":5,"cache_read":1,"cache_write":1.25}},"deepseek-4-flash":{"id":"deepseek-4-flash","name":"Deepseek V4 Flash","family":"deepseek","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2026-05-27","last_updated":"2026-05-29","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"output":8192}},"mistral-nemo-instruct-2407":{"id":"mistral-nemo-instruct-2407","name":"Mistral Nemo Instruct","family":"mistral","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2024-07-18","last_updated":"2024-07-18","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":16384},"status":"deprecated","cost":{"input":0.3,"output":0.3}},"deepseek-v4-pro":{"id":"deepseek-v4-pro","name":"DeepSeek V4 Pro","family":"deepseek-thinking","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-05","release_date":"2026-04-24","last_updated":"2026-04-24","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1048576,"output":393216},"cost":{"input":1.74,"output":3.48}},"kimi-k2.5":{"id":"kimi-k2.5","name":"Kimi K2.5","family":"kimi","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":false,"knowledge":"2025-01","release_date":"2026-01","last_updated":"2026-04-16","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":32768},"cost":{"input":0.5,"output":2.7}},"openai-gpt-image-1":{"id":"openai-gpt-image-1","name":"GPT Image 1","family":"gpt-image","attachment":true,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2025-04-24","last_updated":"2025-04-24","modalities":{"input":["text","image"],"output":["image"]},"open_weights":false,"limit":{"context":0,"output":0},"cost":{"input":5,"output":40,"cache_read":1.25}},"qwen3-tts-voicedesign":{"id":"qwen3-tts-voicedesign","name":"Qwen3 TTS VoiceDesign","family":"qwen","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2026-04-21","last_updated":"2026-04-30","modalities":{"input":["text"],"output":["audio"]},"open_weights":true,"limit":{"context":32768,"output":1}},"alibaba-qwen3-32b":{"id":"alibaba-qwen3-32b","name":"Qwen3-32B","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-04-30","last_updated":"2026-04-16","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131000,"output":40960},"cost":{"input":0.25,"output":0.55}},"openai-gpt-5.1-codex-max":{"id":"openai-gpt-5.1-codex-max","name":"GPT-5.1 Codex Max","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-11-13","last_updated":"2025-11-13","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":1.25,"output":10,"cache_read":0.125}},"anthropic-claude-opus-4":{"id":"anthropic-claude-opus-4","name":"Claude Opus 4","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-05-22","last_updated":"2025-05-22","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":32000},"cost":{"input":15,"output":75,"cache_read":1.5,"cache_write":18.75}},"openai-gpt-5.3-codex":{"id":"openai-gpt-5.3-codex","name":"GPT-5.3 Codex","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-02-05","last_updated":"2026-02-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":1.75,"output":14,"cache_read":0.175}},"fal-ai/fast-sdxl":{"id":"fal-ai/fast-sdxl","name":"Fast SDXL","family":"stable-diffusion","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2023-07-26","last_updated":"2026-04-16","modalities":{"input":["text"],"output":["image"]},"open_weights":true,"limit":{"context":0,"output":0}},"fal-ai/elevenlabs/tts/multilingual-v2":{"id":"fal-ai/elevenlabs/tts/multilingual-v2","name":"ElevenLabs Multilingual TTS v2","family":"elevenlabs","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2023-08-22","last_updated":"2026-04-16","modalities":{"input":["text"],"output":["audio"]},"open_weights":false,"limit":{"context":0,"output":0}},"fal-ai/stable-audio-25/text-to-audio":{"id":"fal-ai/stable-audio-25/text-to-audio","name":"Stable Audio 2.5 (Text-to-Audio)","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2025-10-08","last_updated":"2026-04-16","modalities":{"input":["text"],"output":["audio"]},"open_weights":false,"limit":{"context":0,"output":0}},"fal-ai/flux/schnell":{"id":"fal-ai/flux/schnell","name":"FLUX.1 [schnell]","family":"flux","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2024-08-01","last_updated":"2026-04-16","modalities":{"input":["text"],"output":["image"]},"open_weights":true,"limit":{"context":0,"output":0}}}},"submodel":{"id":"submodel","env":["SUBMODEL_INSTAGEN_ACCESS_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://llm.submodel.ai/v1","name":"submodel","doc":"https://submodel.gitbook.io","models":{"zai-org/GLM-4.5-FP8":{"id":"zai-org/GLM-4.5-FP8","name":"GLM 4.5 FP8","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-07-28","last_updated":"2025-07-28","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":131072},"cost":{"input":0.2,"output":0.8}},"zai-org/GLM-4.5-Air":{"id":"zai-org/GLM-4.5-Air","name":"GLM 4.5 Air","family":"glm-air","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2025-07-28","last_updated":"2025-07-28","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":131072},"cost":{"input":0.1,"output":0.5}},"deepseek-ai/DeepSeek-V3.1":{"id":"deepseek-ai/DeepSeek-V3.1","name":"DeepSeek V3.1","family":"deepseek","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-08-23","last_updated":"2025-08-23","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":75000,"output":163840},"cost":{"input":0.2,"output":0.8}},"deepseek-ai/DeepSeek-V3-0324":{"id":"deepseek-ai/DeepSeek-V3-0324","name":"DeepSeek V3 0324","family":"deepseek","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2025-08-23","last_updated":"2025-08-23","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":75000,"output":163840},"cost":{"input":0.2,"output":0.8}},"deepseek-ai/DeepSeek-R1-0528":{"id":"deepseek-ai/DeepSeek-R1-0528","name":"DeepSeek R1 0528","family":"deepseek-thinking","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-08-23","last_updated":"2025-08-23","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":75000,"output":163840},"cost":{"input":0.5,"output":2.15}},"Qwen/Qwen3-235B-A22B-Thinking-2507":{"id":"Qwen/Qwen3-235B-A22B-Thinking-2507","name":"Qwen3 235B A22B Thinking 2507","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-08-23","last_updated":"2025-08-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":131072},"cost":{"input":0.2,"output":0.6}},"Qwen/Qwen3-235B-A22B-Instruct-2507":{"id":"Qwen/Qwen3-235B-A22B-Instruct-2507","name":"Qwen3 235B A22B Instruct 2507","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2025-08-23","last_updated":"2025-08-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":131072},"cost":{"input":0.2,"output":0.3}},"Qwen/Qwen3-Coder-480B-A35B-Instruct-FP8":{"id":"Qwen/Qwen3-Coder-480B-A35B-Instruct-FP8","name":"Qwen3 Coder 480B A35B Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2025-08-23","last_updated":"2025-08-23","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"output":262144},"cost":{"input":0.2,"output":0.8}},"openai/gpt-oss-120b":{"id":"openai/gpt-oss-120b","name":"GPT OSS 120B","family":"gpt-oss","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-08-23","last_updated":"2025-08-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":32768},"cost":{"input":0.1,"output":0.5}}}},"bailing":{"id":"bailing","env":["BAILING_API_TOKEN"],"npm":"@ai-sdk/openai-compatible","api":"https://api.tbox.cn/api/llm/v1/chat/completions","name":"Bailing","doc":"https://alipaytbox.yuque.com/sxs0ba/ling/intro","models":{"Ring-1T":{"id":"Ring-1T","name":"Ring-1T","family":"ring","attachment":false,"reasoning":true,"tool_call":false,"temperature":true,"knowledge":"2024-06","release_date":"2025-10","last_updated":"2025-10","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":32000},"cost":{"input":0.57,"output":2.29}},"Ling-1T":{"id":"Ling-1T","name":"Ling-1T","family":"ling","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-06","release_date":"2025-10","last_updated":"2025-10","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":32000},"cost":{"input":0.57,"output":2.29}}}},"kimi-for-coding":{"id":"kimi-for-coding","env":["KIMI_API_KEY"],"npm":"@ai-sdk/anthropic","api":"https://api.kimi.com/coding/v1","name":"Kimi For Coding","doc":"https://www.kimi.com/code/docs/en/third-party-tools/other-coding-agents.html","models":{"kimi-k2-thinking":{"id":"kimi-k2-thinking","name":"Kimi K2 Thinking","family":"kimi-thinking","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-07","release_date":"2025-11","last_updated":"2025-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":32768},"cost":{"input":0,"output":0,"cache_read":0,"cache_write":0}},"k2p5":{"id":"k2p5","name":"Kimi K2.5","family":"kimi-thinking","attachment":false,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-01","last_updated":"2026-01","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":32768},"cost":{"input":0,"output":0,"cache_read":0,"cache_write":0}},"k2p6":{"id":"k2p6","name":"Kimi K2.6","family":"kimi-thinking","attachment":false,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-04","last_updated":"2026-04","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":32768},"cost":{"input":0,"output":0,"cache_read":0,"cache_write":0}}}},"dinference":{"id":"dinference","env":["DINFERENCE_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://api.dinference.com/v1","name":"DInference","doc":"https://dinference.com","models":{"glm-4.7":{"id":"glm-4.7","name":"GLM-4.7","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2025-04","release_date":"2025-12-22","last_updated":"2025-12-22","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":200000,"output":128000},"cost":{"input":0.45,"output":1.65}},"gpt-oss-120b":{"id":"gpt-oss-120b","name":"GPT OSS 120B","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2025-08","last_updated":"2025-08","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":32768},"cost":{"input":0.0675,"output":0.27}},"glm-5":{"id":"glm-5","name":"GLM-5","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"release_date":"2026-02-11","last_updated":"2026-02-11","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":200000,"output":128000},"cost":{"input":0.75,"output":2.4}},"minimax-m2.5":{"id":"minimax-m2.5","name":"MiniMax-M2.5","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-02-12","last_updated":"2026-02-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":200000,"output":32000},"cost":{"input":0.22,"output":0.88}},"glm-5.1":{"id":"glm-5.1","name":"GLM-5.1","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-03-27","last_updated":"2026-03-27","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":200000,"output":128000},"cost":{"input":1.25,"output":3.89}}}},"novita-ai":{"id":"novita-ai","env":["NOVITA_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://api.novita.ai/openai","name":"NovitaAI","doc":"https://novita.ai/docs/guides/introduction","models":{"kwaipilot/kat-coder-pro":{"id":"kwaipilot/kat-coder-pro","name":"Kat Coder Pro","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-01-05","last_updated":"2026-01-05","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"output":128000},"cost":{"input":0.3,"output":1.2,"cache_read":0.06}},"nousresearch/hermes-2-pro-llama-3-8b":{"id":"nousresearch/hermes-2-pro-llama-3-8b","name":"Hermes 2 Pro Llama 3 8B","attachment":false,"reasoning":false,"tool_call":false,"structured_output":true,"temperature":true,"release_date":"2024-06-27","last_updated":"2024-06-27","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":8192,"output":8192},"cost":{"input":0.14,"output":0.14}},"mistralai/mistral-nemo":{"id":"mistralai/mistral-nemo","name":"Mistral Nemo","family":"mistral-nemo","attachment":false,"reasoning":false,"tool_call":false,"structured_output":true,"temperature":true,"release_date":"2024-07-30","last_updated":"2024-07-30","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":60288,"output":16000},"cost":{"input":0.04,"output":0.17}},"deepseek/deepseek-r1-0528":{"id":"deepseek/deepseek-r1-0528","name":"DeepSeek R1 0528","family":"deepseek-thinking","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-07","release_date":"2025-05-28","last_updated":"2025-05-28","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":163840,"output":32768},"cost":{"input":0.7,"output":2.5,"cache_read":0.35}},"deepseek/deepseek-v3-0324":{"id":"deepseek/deepseek-v3-0324","name":"DeepSeek V3 0324","family":"deepseek","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-07","release_date":"2025-03-25","last_updated":"2025-03-25","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":163840,"output":163840},"cost":{"input":0.27,"output":1.12,"cache_read":0.135}},"deepseek/deepseek-v3.2":{"id":"deepseek/deepseek-v3.2","name":"Deepseek V3.2","family":"deepseek","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2025-12-01","last_updated":"2025-12-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":163840,"output":65536},"cost":{"input":0.269,"output":0.4,"cache_read":0.1345}},"deepseek/deepseek-r1-turbo":{"id":"deepseek/deepseek-r1-turbo","name":"DeepSeek R1 (Turbo)\t","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-03-05","last_updated":"2025-03-05","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":64000,"output":16000},"cost":{"input":0.7,"output":2.5}},"deepseek/deepseek-prover-v2-671b":{"id":"deepseek/deepseek-prover-v2-671b","name":"Deepseek Prover V2 671B","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-04-30","last_updated":"2025-04-30","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":160000,"output":160000},"cost":{"input":0.7,"output":2.5}},"deepseek/deepseek-r1-distill-llama-70b":{"id":"deepseek/deepseek-r1-distill-llama-70b","name":"DeepSeek R1 Distill LLama 70B","family":"deepseek-thinking","attachment":false,"reasoning":true,"tool_call":false,"structured_output":true,"temperature":true,"release_date":"2025-01-27","last_updated":"2025-01-27","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":8192,"output":8192},"cost":{"input":0.8,"output":0.8}},"deepseek/deepseek-v3.1-terminus":{"id":"deepseek/deepseek-v3.1-terminus","name":"Deepseek V3.1 Terminus","family":"deepseek","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-09-22","last_updated":"2025-09-22","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":32768},"cost":{"input":0.27,"output":1,"cache_read":0.135}},"deepseek/deepseek-r1-0528-qwen3-8b":{"id":"deepseek/deepseek-r1-0528-qwen3-8b","name":"DeepSeek R1 0528 Qwen3 8B","attachment":false,"reasoning":true,"tool_call":false,"temperature":true,"release_date":"2025-05-29","last_updated":"2025-05-29","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":32000},"cost":{"input":0.06,"output":0.09}},"deepseek/deepseek-v3-turbo":{"id":"deepseek/deepseek-v3-turbo","name":"DeepSeek V3 (Turbo)\t","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2025-03-05","last_updated":"2025-03-05","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":64000,"output":16000},"cost":{"input":0.4,"output":1.3}},"deepseek/deepseek-ocr":{"id":"deepseek/deepseek-ocr","name":"DeepSeek-OCR","attachment":true,"reasoning":false,"tool_call":false,"structured_output":true,"temperature":true,"release_date":"2025-10-24","last_updated":"2025-10-24","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":8192,"output":8192},"cost":{"input":0.03,"output":0.03}},"deepseek/deepseek-r1-distill-qwen-14b":{"id":"deepseek/deepseek-r1-distill-qwen-14b","name":"DeepSeek R1 Distill Qwen 14B","family":"deepseek-thinking","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-01-20","last_updated":"2025-01-20","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":32768,"output":16384},"cost":{"input":0.15,"output":0.15}},"deepseek/deepseek-v4-flash":{"id":"deepseek/deepseek-v4-flash","name":"DeepSeek V4 Flash","family":"deepseek-flash","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-05","release_date":"2026-04-24","last_updated":"2026-04-24","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1048576,"output":393216},"cost":{"input":0.14,"output":0.28,"cache_read":0.028}},"deepseek/deepseek-v3.2-exp":{"id":"deepseek/deepseek-v3.2-exp","name":"Deepseek V3.2 Exp","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-09-29","last_updated":"2025-09-29","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":163840,"output":65536},"cost":{"input":0.27,"output":0.41}},"deepseek/deepseek-v4-pro":{"id":"deepseek/deepseek-v4-pro","name":"DeepSeek V4 Pro","family":"deepseek-thinking","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-05","release_date":"2026-04-24","last_updated":"2026-04-24","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1048576,"output":393216},"cost":{"input":1.69,"output":3.38,"cache_read":0.13}},"deepseek/deepseek-ocr-2":{"id":"deepseek/deepseek-ocr-2","name":"deepseek/deepseek-ocr-2","attachment":true,"reasoning":false,"tool_call":false,"release_date":"2026-01-27","last_updated":"2026-01-27","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":8192,"output":8192},"cost":{"input":0.03,"output":0.03}},"deepseek/deepseek-v3.1":{"id":"deepseek/deepseek-v3.1","name":"DeepSeek V3.1","family":"deepseek","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-08-21","last_updated":"2025-08-21","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":32768},"cost":{"input":0.27,"output":1,"cache_read":0.135}},"deepseek/deepseek-r1-distill-qwen-32b":{"id":"deepseek/deepseek-r1-distill-qwen-32b","name":"DeepSeek R1 Distill Qwen 32B","family":"deepseek-thinking","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-01-20","last_updated":"2025-01-20","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":64000,"output":32000},"cost":{"input":0.3,"output":0.3}},"xiaomimimo/mimo-v2-pro":{"id":"xiaomimimo/mimo-v2-pro","name":"MiMo-V2-Pro","family":"mimo","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2024-12","release_date":"2026-03-18","last_updated":"2026-05-27","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":131072},"cost":{"input":2,"output":6,"cache_read":0.4,"tiers":[{"input":2,"output":6,"cache_read":0.4,"tier":{"type":"context","size":256000}}],"context_over_200k":{"input":2,"output":6,"cache_read":0.4}}},"xiaomimimo/mimo-v2-flash":{"id":"xiaomimimo/mimo-v2-flash","name":"XiaomiMiMo/MiMo-V2-Flash","family":"mimo","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-12","release_date":"2025-12-19","last_updated":"2025-12-19","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":32000},"cost":{"input":0.1,"output":0.3,"cache_read":0.3}},"xiaomimimo/mimo-v2.5-pro":{"id":"xiaomimimo/mimo-v2.5-pro","name":"MiMo-V2.5-Pro","family":"mimo","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2024-12","release_date":"2026-04-22","last_updated":"2026-05-27","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1048576,"output":131072},"cost":{"input":2,"output":6,"cache_read":0.4,"tiers":[{"input":2,"output":6,"cache_read":0.4,"tier":{"type":"context","size":256000}}],"context_over_200k":{"input":2,"output":6,"cache_read":0.4}}},"zai-org/glm-4.6":{"id":"zai-org/glm-4.6","name":"GLM 4.6","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2025-09-30","last_updated":"2025-09-30","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0.55,"output":2.2,"cache_read":0.11}},"zai-org/glm-4.7":{"id":"zai-org/glm-4.7","name":"GLM-4.7","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2025-12-22","last_updated":"2025-12-22","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0.6,"output":2.2,"cache_read":0.11}},"zai-org/glm-4.5v":{"id":"zai-org/glm-4.5v","name":"GLM 4.5V","family":"glmv","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-08-11","last_updated":"2025-08-11","modalities":{"input":["text","video","image"],"output":["text"]},"open_weights":true,"limit":{"context":65536,"output":16384},"cost":{"input":0.6,"output":1.8,"cache_read":0.11}},"zai-org/glm-4.6v":{"id":"zai-org/glm-4.6v","name":"GLM 4.6V","family":"glmv","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-12-08","last_updated":"2025-12-08","modalities":{"input":["text","video","image"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":32768},"cost":{"input":0.3,"output":0.9,"cache_read":0.055}},"zai-org/glm-4.7-flash":{"id":"zai-org/glm-4.7-flash","name":"GLM-4.7-Flash","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-04","release_date":"2026-01-19","last_updated":"2026-01-19","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":200000,"output":128000},"cost":{"input":0.07,"output":0.4,"cache_read":0.01}},"zai-org/glm-5":{"id":"zai-org/glm-5","name":"GLM-5","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-02-11","last_updated":"2026-02-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":202800,"output":131072},"cost":{"input":1,"output":3.2,"cache_read":0.2}},"zai-org/glm-4.5":{"id":"zai-org/glm-4.5","name":"GLM-4.5","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"release_date":"2025-07-28","last_updated":"2025-07-28","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":98304},"cost":{"input":0.6,"output":2.2,"cache_read":0.11}},"zai-org/autoglm-phone-9b-multilingual":{"id":"zai-org/autoglm-phone-9b-multilingual","name":"AutoGLM-Phone-9B-Multilingual","attachment":true,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-12-10","last_updated":"2025-12-10","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":65536,"output":65536},"cost":{"input":0.035,"output":0.138}},"zai-org/glm-4.5-air":{"id":"zai-org/glm-4.5-air","name":"GLM 4.5 Air","family":"glm-air","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-10-13","last_updated":"2025-10-13","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":98304},"cost":{"input":0.13,"output":0.85}},"zai-org/glm-5.1":{"id":"zai-org/glm-5.1","name":"GLM-5.1","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-03-27","last_updated":"2026-03-27","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":1.4,"output":4.4,"cache_read":0.26}},"qwen/qwen3.5-122b-a10b":{"id":"qwen/qwen3.5-122b-a10b","name":"Qwen3.5-122B-A10B","family":"qwen","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-02-26","last_updated":"2026-02-26","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":65536},"cost":{"input":0.4,"output":3.2}},"qwen/qwen3-next-80b-a3b-instruct":{"id":"qwen/qwen3-next-80b-a3b-instruct","name":"Qwen3 Next 80B A3B Instruct","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-09-10","last_updated":"2025-09-10","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":32768},"cost":{"input":0.15,"output":1.5}},"qwen/qwen2.5-vl-72b-instruct":{"id":"qwen/qwen2.5-vl-72b-instruct","name":"Qwen2.5 VL 72B Instruct","family":"qwen","attachment":true,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-03-25","last_updated":"2025-03-25","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":32768,"output":32768},"cost":{"input":0.8,"output":0.8}},"qwen/qwen3-vl-30b-a3b-instruct":{"id":"qwen/qwen3-vl-30b-a3b-instruct","name":"qwen/qwen3-vl-30b-a3b-instruct","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-10-11","last_updated":"2025-10-11","modalities":{"input":["text","video","image"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":32768},"cost":{"input":0.2,"output":0.7}},"qwen/qwen3-8b-fp8":{"id":"qwen/qwen3-8b-fp8","name":"Qwen3 8B","attachment":false,"reasoning":true,"tool_call":false,"temperature":true,"release_date":"2025-04-29","last_updated":"2025-04-29","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":20000},"cost":{"input":0.035,"output":0.138}},"qwen/qwen3-coder-30b-a3b-instruct":{"id":"qwen/qwen3-coder-30b-a3b-instruct","name":"Qwen3 Coder 30b A3B Instruct","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-10-09","last_updated":"2025-10-09","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":160000,"output":32768},"cost":{"input":0.07,"output":0.27}},"qwen/qwen3-vl-30b-a3b-thinking":{"id":"qwen/qwen3-vl-30b-a3b-thinking","name":"qwen/qwen3-vl-30b-a3b-thinking","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-10-11","last_updated":"2025-10-11","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":32768},"cost":{"input":0.2,"output":1}},"qwen/qwen3-235b-a22b-fp8":{"id":"qwen/qwen3-235b-a22b-fp8","name":"Qwen3 235B A22B","attachment":false,"reasoning":true,"tool_call":false,"temperature":true,"release_date":"2025-04-29","last_updated":"2025-04-29","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":40960,"output":20000},"cost":{"input":0.2,"output":0.8}},"qwen/qwen3-vl-235b-a22b-instruct":{"id":"qwen/qwen3-vl-235b-a22b-instruct","name":"Qwen3 VL 235B A22B Instruct","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-09-24","last_updated":"2025-09-24","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":32768},"cost":{"input":0.3,"output":1.5}},"qwen/qwen3-32b-fp8":{"id":"qwen/qwen3-32b-fp8","name":"Qwen3 32B","attachment":false,"reasoning":true,"tool_call":false,"temperature":true,"release_date":"2025-04-29","last_updated":"2025-04-29","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":40960,"output":20000},"cost":{"input":0.1,"output":0.45}},"qwen/qwen3-max":{"id":"qwen/qwen3-max","name":"Qwen3 Max","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-09-24","last_updated":"2025-09-24","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"output":65536},"cost":{"input":2.11,"output":8.45}},"qwen/qwen3-coder-next":{"id":"qwen/qwen3-coder-next","name":"Qwen3 Coder Next","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-02-03","last_updated":"2026-02-03","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":65536},"cost":{"input":0.2,"output":1.5}},"qwen/qwen3-235b-a22b-thinking-2507":{"id":"qwen/qwen3-235b-a22b-thinking-2507","name":"Qwen3 235B A22b Thinking 2507","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-07-25","last_updated":"2025-07-25","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":32768},"cost":{"input":0.3,"output":3}},"qwen/qwen3-4b-fp8":{"id":"qwen/qwen3-4b-fp8","name":"Qwen3 4B","attachment":false,"reasoning":true,"tool_call":false,"temperature":true,"release_date":"2025-04-29","last_updated":"2025-04-29","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":20000},"cost":{"input":0.03,"output":0.03}},"qwen/qwen3.7-max":{"id":"qwen/qwen3.7-max","name":"Qwen3.7-Max","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-05-21","last_updated":"2026-05-27","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":65536},"cost":{"input":1.25,"output":3.75,"cache_read":0.125,"cache_write":1.5625}},"qwen/qwen3-omni-30b-a3b-thinking":{"id":"qwen/qwen3-omni-30b-a3b-thinking","name":"Qwen3 Omni 30B A3B Thinking","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-09-24","last_updated":"2025-09-24","modalities":{"input":["text","audio","video","image"],"output":["text"]},"open_weights":true,"limit":{"context":65536,"output":16384},"cost":{"input":0.25,"output":0.97,"input_audio":2.2,"output_audio":1.788}},"qwen/qwen3-vl-8b-instruct":{"id":"qwen/qwen3-vl-8b-instruct","name":"qwen/qwen3-vl-8b-instruct","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-10-17","last_updated":"2025-10-17","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":32768},"cost":{"input":0.08,"output":0.5}},"qwen/qwen3-coder-480b-a35b-instruct":{"id":"qwen/qwen3-coder-480b-a35b-instruct","name":"Qwen3 Coder 480B A35B Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-07-23","last_updated":"2025-07-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":65536},"cost":{"input":0.3,"output":1.3}},"qwen/qwen3-next-80b-a3b-thinking":{"id":"qwen/qwen3-next-80b-a3b-thinking","name":"Qwen3 Next 80B A3B Thinking","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-09-10","last_updated":"2025-09-10","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":32768},"cost":{"input":0.15,"output":1.5}},"qwen/qwen3.5-35b-a3b":{"id":"qwen/qwen3.5-35b-a3b","name":"Qwen3.5-35B-A3B","family":"qwen","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-02-26","last_updated":"2026-02-26","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":65536},"cost":{"input":0.25,"output":2}},"qwen/qwen2.5-7b-instruct":{"id":"qwen/qwen2.5-7b-instruct","name":"Qwen2.5 7B Instruct","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-04-16","last_updated":"2025-04-16","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":32000,"output":32000},"cost":{"input":0.07,"output":0.07}},"qwen/qwen3-omni-30b-a3b-instruct":{"id":"qwen/qwen3-omni-30b-a3b-instruct","name":"Qwen3 Omni 30B A3B Instruct","family":"qwen","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-04","release_date":"2025-09-24","last_updated":"2025-09-24","modalities":{"input":["text","video","audio","image"],"output":["text","audio"]},"open_weights":true,"limit":{"context":65536,"output":16384},"cost":{"input":0.25,"output":0.97,"input_audio":2.2,"output_audio":1.788}},"qwen/qwen3-235b-a22b-instruct-2507":{"id":"qwen/qwen3-235b-a22b-instruct-2507","name":"Qwen3 235B A22B Instruct 2507","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-07-22","last_updated":"2025-07-22","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":16384},"cost":{"input":0.09,"output":0.58}},"qwen/qwen3.5-397b-a17b":{"id":"qwen/qwen3.5-397b-a17b","name":"Qwen3.5-397B-A17B","family":"qwen","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-02-17","last_updated":"2026-02-17","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":64000},"cost":{"input":0.6,"output":3.6}},"qwen/qwen3-30b-a3b-fp8":{"id":"qwen/qwen3-30b-a3b-fp8","name":"Qwen3 30B A3B","attachment":false,"reasoning":true,"tool_call":false,"temperature":true,"release_date":"2025-04-29","last_updated":"2025-04-29","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":40960,"output":20000},"cost":{"input":0.09,"output":0.45}},"qwen/qwen3.5-27b":{"id":"qwen/qwen3.5-27b","name":"Qwen3.5-27B","family":"qwen","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-02-26","last_updated":"2026-02-26","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":65536},"cost":{"input":0.3,"output":2.4}},"qwen/qwen-mt-plus":{"id":"qwen/qwen-mt-plus","name":"Qwen MT Plus","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-09-03","last_updated":"2025-09-03","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":16384,"output":8192},"cost":{"input":0.25,"output":0.75}},"qwen/qwen3-vl-235b-a22b-thinking":{"id":"qwen/qwen3-vl-235b-a22b-thinking","name":"Qwen3 VL 235B A22B Thinking","attachment":true,"reasoning":true,"tool_call":false,"temperature":true,"release_date":"2025-09-24","last_updated":"2025-09-24","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":32768},"cost":{"input":0.98,"output":3.95}},"qwen/qwen-2.5-72b-instruct":{"id":"qwen/qwen-2.5-72b-instruct","name":"Qwen 2.5 72B Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-04","release_date":"2024-10-15","last_updated":"2024-10-15","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":32000,"output":8192},"cost":{"input":0.38,"output":0.4}},"moonshotai/kimi-k2-thinking":{"id":"moonshotai/kimi-k2-thinking","name":"Kimi K2 Thinking","family":"kimi","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2025-11-07","last_updated":"2025-11-07","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.6,"output":2.5}},"moonshotai/kimi-k2-instruct":{"id":"moonshotai/kimi-k2-instruct","name":"Kimi K2 Instruct","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-07-11","last_updated":"2025-07-11","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":131072},"cost":{"input":0.57,"output":2.3}},"moonshotai/kimi-k2.6":{"id":"moonshotai/kimi-k2.6","name":"Kimi K2.6","family":"kimi-k2.6","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-04-21","last_updated":"2026-04-21","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.95,"output":4,"cache_read":0.16}},"moonshotai/kimi-k2-0905":{"id":"moonshotai/kimi-k2-0905","name":"Kimi K2 0905","family":"kimi","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-10","release_date":"2025-09-05","last_updated":"2025-09-05","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.6,"output":2.5}},"moonshotai/kimi-k2.5":{"id":"moonshotai/kimi-k2.5","name":"Kimi K2.5","family":"kimi","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-01-27","last_updated":"2026-01-27","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.6,"output":3,"cache_read":0.1}},"meta-llama/llama-4-scout-17b-16e-instruct":{"id":"meta-llama/llama-4-scout-17b-16e-instruct","name":"Llama 4 Scout Instruct","attachment":true,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-04-06","last_updated":"2025-04-06","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":131072},"cost":{"input":0.18,"output":0.59}},"meta-llama/llama-3.2-3b-instruct":{"id":"meta-llama/llama-3.2-3b-instruct","name":"Llama 3.2 3B Instruct","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2024-09-18","last_updated":"2024-09-18","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":32768,"output":32000},"cost":{"input":0.03,"output":0.05}},"meta-llama/llama-4-maverick-17b-128e-instruct-fp8":{"id":"meta-llama/llama-4-maverick-17b-128e-instruct-fp8","name":"Llama 4 Maverick Instruct","attachment":true,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-04-06","last_updated":"2025-04-06","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":1048576,"output":8192},"cost":{"input":0.27,"output":0.85}},"meta-llama/llama-3-70b-instruct":{"id":"meta-llama/llama-3-70b-instruct","name":"Llama3 70B Instruct","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"structured_output":true,"temperature":true,"release_date":"2024-04-25","last_updated":"2024-04-25","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":8192,"output":8000},"cost":{"input":0.51,"output":0.74}},"meta-llama/llama-3-8b-instruct":{"id":"meta-llama/llama-3-8b-instruct","name":"Llama 3 8B Instruct","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2024-04-25","last_updated":"2024-04-25","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":8192,"output":8192},"cost":{"input":0.04,"output":0.04}},"meta-llama/llama-3.1-8b-instruct":{"id":"meta-llama/llama-3.1-8b-instruct","name":"Llama 3.1 8B Instruct","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2024-07-24","last_updated":"2024-07-24","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":16384,"output":16384},"cost":{"input":0.02,"output":0.05}},"meta-llama/llama-3.3-70b-instruct":{"id":"meta-llama/llama-3.3-70b-instruct","name":"Llama 3.3 70B Instruct","family":"llama","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2023-12","release_date":"2024-12-07","last_updated":"2024-12-07","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":120000},"cost":{"input":0.135,"output":0.4}},"baidu/ernie-4.5-vl-424b-a47b":{"id":"baidu/ernie-4.5-vl-424b-a47b","name":"ERNIE 4.5 VL 424B A47B","attachment":true,"reasoning":true,"tool_call":false,"temperature":true,"release_date":"2025-06-30","last_updated":"2025-06-30","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":123000,"output":16000},"cost":{"input":0.42,"output":1.25}},"baidu/ernie-4.5-vl-28b-a3b":{"id":"baidu/ernie-4.5-vl-28b-a3b","name":"ERNIE 4.5 VL 28B A3B","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-06-30","last_updated":"2025-06-30","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":30000,"output":8000},"cost":{"input":1.4,"output":5.6}},"baidu/ernie-4.5-300b-a47b-paddle":{"id":"baidu/ernie-4.5-300b-a47b-paddle","name":"ERNIE 4.5 300B A47B","attachment":false,"reasoning":false,"tool_call":false,"structured_output":true,"temperature":true,"release_date":"2025-06-30","last_updated":"2025-06-30","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":123000,"output":12000},"cost":{"input":0.28,"output":1.1}},"baidu/ernie-4.5-21B-a3b":{"id":"baidu/ernie-4.5-21B-a3b","name":"ERNIE 4.5 21B A3B","family":"ernie","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-03","release_date":"2025-06-30","last_updated":"2025-06-30","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":120000,"output":8000},"cost":{"input":0.07,"output":0.28}},"baidu/ernie-4.5-21B-a3b-thinking":{"id":"baidu/ernie-4.5-21B-a3b-thinking","name":"ERNIE-4.5-21B-A3B-Thinking","family":"ernie","attachment":false,"reasoning":true,"tool_call":false,"temperature":true,"knowledge":"2025-03","release_date":"2025-09-19","last_updated":"2025-09-19","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":65536},"cost":{"input":0.07,"output":0.28}},"baidu/ernie-4.5-vl-28b-a3b-thinking":{"id":"baidu/ernie-4.5-vl-28b-a3b-thinking","name":"ERNIE-4.5-VL-28B-A3B-Thinking","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-11-26","last_updated":"2025-11-26","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":65536},"cost":{"input":0.39,"output":0.39}},"minimaxai/minimax-m1-80k":{"id":"minimaxai/minimax-m1-80k","name":"MiniMax M1","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-06-17","last_updated":"2025-06-17","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1000000,"output":40000},"cost":{"input":0.55,"output":2.2}},"gryphe/mythomax-l2-13b":{"id":"gryphe/mythomax-l2-13b","name":"Mythomax L2 13B","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2024-04-25","last_updated":"2024-04-25","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":4096,"output":3200},"cost":{"input":0.09,"output":0.09}},"microsoft/wizardlm-2-8x22b":{"id":"microsoft/wizardlm-2-8x22b","name":"Wizardlm 2 8x22B","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2024-04-24","last_updated":"2024-04-24","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":65535,"output":8000},"cost":{"input":0.62,"output":0.62}},"inclusionai/ling-2.6-flash":{"id":"inclusionai/ling-2.6-flash","name":"Ling-2.6-flash","family":"ling","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-04-24","last_updated":"2026-04-24","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":32768},"cost":{"input":0.1,"output":0.3,"cache_read":0.02}},"inclusionai/ling-2.6-1t":{"id":"inclusionai/ling-2.6-1t","name":"Ling-2.6-1T","family":"ling","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-04-23","last_updated":"2026-04-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":32768},"cost":{"input":0,"output":0}},"inclusionai/ring-2.6-1t":{"id":"inclusionai/ring-2.6-1t","name":"Ring-2.6-1T","family":"ring","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-05-08","last_updated":"2026-05-27","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"output":65536},"cost":{"input":0.3,"output":2.5,"cache_read":0.06}},"paddlepaddle/paddleocr-vl":{"id":"paddlepaddle/paddleocr-vl","name":"PaddleOCR-VL","attachment":true,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-10-22","last_updated":"2025-10-22","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":16384,"output":16384},"cost":{"input":0.02,"output":0.02}},"sao10K/l3-8b-lunaris":{"id":"sao10K/l3-8b-lunaris","name":"Sao10k L3 8B Lunaris\t","attachment":false,"reasoning":false,"tool_call":false,"structured_output":true,"temperature":true,"release_date":"2024-11-28","last_updated":"2024-11-28","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":8192,"output":8192},"cost":{"input":0.05,"output":0.05}},"sao10K/L3-8B-stheno-v3.2":{"id":"sao10K/L3-8B-stheno-v3.2","name":"L3 8B Stheno V3.2","family":"llama","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2024-11-29","last_updated":"2024-11-29","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":8192,"output":32000},"cost":{"input":0.05,"output":0.05}},"sao10K/l3-70b-euryale-v2.1":{"id":"sao10K/l3-70b-euryale-v2.1","name":"L3 70B Euryale V2.1\t","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2024-06-18","last_updated":"2024-06-18","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":8192,"output":8192},"cost":{"input":1.48,"output":1.48}},"sao10K/l31-70b-euryale-v2.2":{"id":"sao10K/l31-70b-euryale-v2.2","name":"L31 70B Euryale V2.2","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2024-09-19","last_updated":"2024-09-19","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":8192,"output":8192},"cost":{"input":1.48,"output":1.48}},"google/gemma-4-31b-it":{"id":"google/gemma-4-31b-it","name":"Gemma 4 31B","family":"gemma","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-04-02","last_updated":"2026-04-02","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":131072},"cost":{"input":0.14,"output":0.4}},"google/gemma-3-27b-it":{"id":"google/gemma-3-27b-it","name":"Gemma 3 27B","family":"gemma","attachment":true,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-03-25","last_updated":"2025-03-25","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":98304,"output":16384},"cost":{"input":0.119,"output":0.2}},"google/gemma-3-12b-it":{"id":"google/gemma-3-12b-it","name":"Gemma 3 12B","family":"gemma","attachment":true,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-03-13","last_updated":"2025-03-13","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":8192},"cost":{"input":0.05,"output":0.1}},"google/gemma-4-26b-a4b-it":{"id":"google/gemma-4-26b-a4b-it","name":"Gemma 4 26B A4B","family":"gemma","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-04-02","last_updated":"2026-04-02","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":131072},"cost":{"input":0.13,"output":0.4}},"openai/gpt-oss-120b":{"id":"openai/gpt-oss-120b","name":"OpenAI GPT OSS 120B","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-08-06","last_updated":"2025-08-06","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":32768},"cost":{"input":0.05,"output":0.25}},"openai/gpt-oss-20b":{"id":"openai/gpt-oss-20b","name":"OpenAI: GPT OSS 20B","attachment":true,"reasoning":true,"tool_call":false,"structured_output":true,"temperature":true,"release_date":"2025-08-06","last_updated":"2025-08-06","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":32768},"cost":{"input":0.04,"output":0.15}},"baichuan/baichuan-m2-32b":{"id":"baichuan/baichuan-m2-32b","name":"baichuan-m2-32b","family":"baichuan","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":true,"knowledge":"2024-12","release_date":"2025-08-13","last_updated":"2025-08-13","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":131072},"cost":{"input":0.07,"output":0.07}},"minimax/minimax-m2.7-highspeed":{"id":"minimax/minimax-m2.7-highspeed","name":"MiniMax-M2.7-highspeed","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-03-18","last_updated":"2026-05-27","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0.6,"output":2.4,"cache_read":0.06,"cache_write":0.375}},"minimax/minimax-m2.1":{"id":"minimax/minimax-m2.1","name":"Minimax M2.1","family":"minimax","attachment":false,"reasoning":false,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2025-12-23","last_updated":"2025-12-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0.3,"output":1.2,"cache_read":0.03}},"minimax/minimax-m2.7":{"id":"minimax/minimax-m2.7","name":"MiniMax M2.7","family":"minimax-m2.7","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-03-18","last_updated":"2026-03-18","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0.3,"output":1.2,"cache_read":0.06}},"minimax/minimax-m2":{"id":"minimax/minimax-m2","name":"MiniMax-M2","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"release_date":"2025-10-27","last_updated":"2025-10-27","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0.3,"output":1.2,"cache_read":0.03}},"minimax/minimax-m2.5":{"id":"minimax/minimax-m2.5","name":"MiniMax M2.5","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-02-12","last_updated":"2026-02-12","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":204800,"output":131100},"cost":{"input":0.3,"output":1.2,"cache_read":0.03}},"minimax/minimax-m2.5-highspeed":{"id":"minimax/minimax-m2.5-highspeed","name":"MiniMax M2.5 Highspeed","family":"minimax-m2.5","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-02-12","last_updated":"2026-02-12","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":204800,"output":131100},"cost":{"input":0.6,"output":2.4,"cache_read":0.03}}}},"kilo":{"id":"kilo","env":["KILO_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://api.kilo.ai/api/gateway","name":"Kilo Gateway","doc":"https://kilo.ai","models":{"kwaipilot/kat-coder-pro-v2":{"id":"kwaipilot/kat-coder-pro-v2","name":"Kwaipilot: KAT-Coder-Pro V2","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2026-03-27","last_updated":"2026-04-11","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"output":80000},"cost":{"input":0.3,"output":1.2,"cache_read":0.06}},"z-ai/glm-4.6":{"id":"z-ai/glm-4.6","name":"Z.ai: GLM 4.6","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-09-30","last_updated":"2026-03-15","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":204800},"cost":{"input":0.39,"output":1.9,"cache_read":0.175}},"z-ai/glm-4.7":{"id":"z-ai/glm-4.7","name":"Z.ai: GLM 4.7","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-12-22","last_updated":"2026-03-15","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":202752,"output":65535},"cost":{"input":0.38,"output":1.98,"cache_read":0.2}},"z-ai/glm-4-32b":{"id":"z-ai/glm-4-32b","name":"Z.ai: GLM 4 32B ","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2025-07-25","last_updated":"2026-03-15","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":32768},"cost":{"input":0.1,"output":0.1}},"z-ai/glm-4.5v":{"id":"z-ai/glm-4.5v","name":"Z.ai: GLM 4.5V","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-08-11","last_updated":"2025-08-11","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":65536,"output":16384},"cost":{"input":0.6,"output":1.8,"cache_read":0.11}},"z-ai/glm-4.6v":{"id":"z-ai/glm-4.6v","name":"Z.ai: GLM 4.6V","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-09-30","last_updated":"2026-01-10","modalities":{"input":["image","text","video"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":131072},"cost":{"input":0.3,"output":0.9}},"z-ai/glm-4.7-flash":{"id":"z-ai/glm-4.7-flash","name":"Z.ai: GLM 4.7 Flash","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-01-19","last_updated":"2026-01-19","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":202752,"output":40551},"cost":{"input":0.06,"output":0.4,"cache_read":0.01}},"z-ai/glm-5v-turbo":{"id":"z-ai/glm-5v-turbo","name":"Z.ai: GLM 5V Turbo","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-04-01","last_updated":"2026-04-11","modalities":{"input":["image","text","video"],"output":["text"]},"open_weights":true,"limit":{"context":202752,"output":131072},"cost":{"input":1.2,"output":4,"cache_read":0.24}},"z-ai/glm-5":{"id":"z-ai/glm-5","name":"Z.ai: GLM 5","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-02-12","last_updated":"2026-03-15","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":202752,"output":131072},"cost":{"input":0.72,"output":2.3}},"z-ai/glm-5-turbo":{"id":"z-ai/glm-5-turbo","name":"Z.ai: GLM 5 Turbo","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-03-15","last_updated":"2026-04-11","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":202752,"output":131072},"cost":{"input":1.2,"output":4,"cache_read":0.24}},"z-ai/glm-4.5":{"id":"z-ai/glm-4.5","name":"Z.ai: GLM 4.5","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-07-28","last_updated":"2026-03-15","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":98304},"cost":{"input":0.6,"output":2.2,"cache_read":0.175}},"z-ai/glm-4.5-air":{"id":"z-ai/glm-4.5-air","name":"Z.ai: GLM 4.5 Air","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-07-28","last_updated":"2025-07-28","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":98304},"cost":{"input":0.13,"output":0.85,"cache_read":0.025}},"z-ai/glm-5.1":{"id":"z-ai/glm-5.1","name":"Z.ai: GLM 5.1","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-03-27","last_updated":"2026-03-27","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":202752,"output":131072},"cost":{"input":1.26,"output":3.96}},"upstage/solar-pro-3":{"id":"upstage/solar-pro-3","name":"Upstage: Solar Pro 3","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-01-27","last_updated":"2026-03-15","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":32768},"cost":{"input":0.15,"output":0.6}},"prime-intellect/intellect-3":{"id":"prime-intellect/intellect-3","name":"Prime Intellect: INTELLECT-3","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-11-26","last_updated":"2026-02-04","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":131072},"cost":{"input":0.2,"output":1.1}},"alfredpros/codellama-7b-instruct-solidity":{"id":"alfredpros/codellama-7b-instruct-solidity","name":"AlfredPros: CodeLLaMa 7B Instruct Solidity","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-04-14","last_updated":"2026-03-15","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":4096,"output":4096},"cost":{"input":0.8,"output":1.2}},"rekaai/reka-edge":{"id":"rekaai/reka-edge","name":"Reka Edge","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2026-03-20","last_updated":"2026-04-11","modalities":{"input":["image","text","video"],"output":["text"]},"open_weights":true,"limit":{"context":16384,"output":16384},"cost":{"input":0.1,"output":0.1}},"rekaai/reka-flash-3":{"id":"rekaai/reka-flash-3","name":"Reka Flash 3","attachment":false,"reasoning":true,"tool_call":false,"temperature":true,"release_date":"2025-03-12","last_updated":"2026-04-11","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":65536,"output":65536},"cost":{"input":0.1,"output":0.2}},"nousresearch/hermes-4-70b":{"id":"nousresearch/hermes-4-70b","name":"Nous: Hermes 4 70B","attachment":false,"reasoning":true,"tool_call":false,"temperature":true,"release_date":"2025-08-25","last_updated":"2026-03-15","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":131072},"cost":{"input":0.13,"output":0.4,"cache_read":0.055}},"nousresearch/hermes-3-llama-3.1-405b":{"id":"nousresearch/hermes-3-llama-3.1-405b","name":"Nous: Hermes 3 405B Instruct","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2024-08-16","last_updated":"2024-08-16","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":16384},"cost":{"input":1,"output":1}},"nousresearch/hermes-3-llama-3.1-70b":{"id":"nousresearch/hermes-3-llama-3.1-70b","name":"Nous: Hermes 3 70B Instruct","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2024-08-18","last_updated":"2026-03-15","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":32768},"cost":{"input":0.3,"output":0.3}},"nousresearch/hermes-2-pro-llama-3-8b":{"id":"nousresearch/hermes-2-pro-llama-3-8b","name":"NousResearch: Hermes 2 Pro - Llama-3 8B","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2024-05-27","last_updated":"2024-06-27","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":8192,"output":8192},"cost":{"input":0.14,"output":0.14}},"nousresearch/hermes-4-405b":{"id":"nousresearch/hermes-4-405b","name":"Nous: Hermes 4 405B","attachment":false,"reasoning":true,"tool_call":false,"temperature":true,"release_date":"2025-08-25","last_updated":"2025-08-25","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":26215},"cost":{"input":1,"output":3}},"mistralai/devstral-medium":{"id":"mistralai/devstral-medium","name":"Mistral: Devstral Medium","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2025-07-10","last_updated":"2025-07-10","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":26215},"cost":{"input":0.4,"output":2}},"mistralai/mistral-small-24b-instruct-2501":{"id":"mistralai/mistral-small-24b-instruct-2501","name":"Mistral: Mistral Small 3","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2025-12-29","last_updated":"2026-01-10","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":32768,"output":16384},"cost":{"input":0.05,"output":0.08}},"mistralai/mistral-large-2411":{"id":"mistralai/mistral-large-2411","name":"Mistral Large 2411","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2024-07-24","last_updated":"2024-11-04","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":26215},"cost":{"input":2,"output":6}},"mistralai/mistral-7b-instruct-v0.1":{"id":"mistralai/mistral-7b-instruct-v0.1","name":"Mistral: Mistral 7B Instruct v0.1","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-04-03","last_updated":"2025-04-03","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":2824,"output":565},"cost":{"input":0.11,"output":0.19}},"mistralai/mistral-medium-3.1":{"id":"mistralai/mistral-medium-3.1","name":"Mistral: Mistral Medium 3.1","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2025-08-12","last_updated":"2025-08-12","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":26215},"cost":{"input":0.4,"output":2}},"mistralai/ministral-14b-2512":{"id":"mistralai/ministral-14b-2512","name":"Mistral: Ministral 3 14B 2512","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2025-12-16","last_updated":"2025-12-16","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"output":52429},"cost":{"input":0.2,"output":0.2}},"mistralai/mistral-large-2407":{"id":"mistralai/mistral-large-2407","name":"Mistral Large 2407","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2024-11-19","last_updated":"2026-03-15","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":32768},"cost":{"input":2,"output":6}},"mistralai/mistral-small-2603":{"id":"mistralai/mistral-small-2603","name":"Mistral: Mistral Small 4","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-03-16","last_updated":"2026-04-11","modalities":{"input":["image","text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.15,"output":0.6,"cache_read":0.015}},"mistralai/ministral-8b-2512":{"id":"mistralai/ministral-8b-2512","name":"Mistral: Ministral 3 8B 2512","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2025-12-02","last_updated":"2026-03-15","modalities":{"input":["image","text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":32768},"cost":{"input":0.15,"output":0.15}},"mistralai/mistral-large":{"id":"mistralai/mistral-large","name":"Mistral Large","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2024-07-24","last_updated":"2025-12-02","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":25600},"cost":{"input":2,"output":6}},"mistralai/mistral-small-3.1-24b-instruct":{"id":"mistralai/mistral-small-3.1-24b-instruct","name":"Mistral: Mistral Small 3.1 24B","attachment":true,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-03-17","last_updated":"2026-03-15","modalities":{"input":["image","text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":131072},"cost":{"input":0.35,"output":0.56,"cache_read":0.015}},"mistralai/mistral-nemo":{"id":"mistralai/mistral-nemo","name":"Mistral: Mistral Nemo","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2024-07-01","last_updated":"2024-07-30","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":16384},"cost":{"input":0.02,"output":0.04}},"mistralai/mistral-large-2512":{"id":"mistralai/mistral-large-2512","name":"Mistral: Mistral Large 3 2512","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2024-11-01","last_updated":"2025-12-16","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":52429},"cost":{"input":0.5,"output":1.5}},"mistralai/ministral-3b-2512":{"id":"mistralai/ministral-3b-2512","name":"Mistral: Ministral 3 3B 2512","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2025-12-02","last_updated":"2026-03-15","modalities":{"input":["image","text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":32768},"cost":{"input":0.1,"output":0.1}},"mistralai/mistral-saba":{"id":"mistralai/mistral-saba","name":"Mistral: Saba","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2025-02-17","last_updated":"2026-03-15","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":32768,"output":32768},"cost":{"input":0.2,"output":0.6}},"mistralai/mistral-medium-3":{"id":"mistralai/mistral-medium-3","name":"Mistral: Mistral Medium 3","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2025-05-07","last_updated":"2025-05-07","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":26215},"cost":{"input":0.4,"output":2}},"mistralai/voxtral-small-24b-2507":{"id":"mistralai/voxtral-small-24b-2507","name":"Mistral: Voxtral Small 24B 2507","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2025-07-01","last_updated":"2025-07-01","modalities":{"input":["text","audio"],"output":["text"]},"open_weights":true,"limit":{"context":32000,"output":6400},"cost":{"input":0.1,"output":0.3}},"mistralai/mistral-medium-3-5":{"id":"mistralai/mistral-medium-3-5","name":"Mistral: Mistral Medium 3.5","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-04-30","last_updated":"2026-05-07","modalities":{"input":["image","text"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"output":262144},"cost":{"input":1.5,"output":7.5}},"mistralai/mixtral-8x22b-instruct":{"id":"mistralai/mixtral-8x22b-instruct","name":"Mistral: Mixtral 8x22B Instruct","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2024-04-17","last_updated":"2024-04-17","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":65536,"output":13108},"cost":{"input":2,"output":6}},"mistralai/devstral-small":{"id":"mistralai/devstral-small","name":"Mistral: Devstral Small 1.1","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2025-05-07","last_updated":"2025-07-10","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":26215},"cost":{"input":0.1,"output":0.3}},"mistralai/devstral-2512":{"id":"mistralai/devstral-2512","name":"Mistral: Devstral 2 2512","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2025-09-12","last_updated":"2026-03-15","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":65536},"cost":{"input":0.4,"output":2,"cache_read":0.025}},"mistralai/mistral-small-3.2-24b-instruct":{"id":"mistralai/mistral-small-3.2-24b-instruct","name":"Mistral: Mistral Small 3.2 24B","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2025-06-20","last_updated":"2025-06-20","modalities":{"input":["image","text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":131072},"cost":{"input":0.06,"output":0.18,"cache_read":0.03}},"mistralai/codestral-2508":{"id":"mistralai/codestral-2508","name":"Mistral: Codestral 2508","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2025-08-01","last_updated":"2025-08-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"output":51200},"cost":{"input":0.3,"output":0.9}},"mistralai/pixtral-large-2411":{"id":"mistralai/pixtral-large-2411","name":"Mistral: Pixtral Large 2411","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2024-11-19","last_updated":"2026-03-15","modalities":{"input":["image","text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":32768},"cost":{"input":2,"output":6}},"sao10k/l3.1-euryale-70b":{"id":"sao10k/l3.1-euryale-70b","name":"Sao10K: Llama 3.1 Euryale 70B v2.2","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2024-08-28","last_updated":"2026-03-15","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":16384},"cost":{"input":0.85,"output":0.85}},"sao10k/l3-lunaris-8b":{"id":"sao10k/l3-lunaris-8b","name":"Sao10K: Llama 3 8B Lunaris","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2024-08-13","last_updated":"2026-03-15","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":8192,"output":8192},"cost":{"input":0.04,"output":0.05}},"sao10k/l3.3-euryale-70b":{"id":"sao10k/l3.3-euryale-70b","name":"Sao10K: Llama 3.3 Euryale 70B","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2024-12-18","last_updated":"2026-03-15","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":16384},"cost":{"input":0.65,"output":0.75}},"sao10k/l3-euryale-70b":{"id":"sao10k/l3-euryale-70b","name":"Sao10k: Llama 3 Euryale 70B v2.1","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2024-06-18","last_updated":"2026-03-15","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":8192,"output":8192},"cost":{"input":1.48,"output":1.48}},"sao10k/l3.1-70b-hanami-x1":{"id":"sao10k/l3.1-70b-hanami-x1","name":"Sao10K: Llama 3.1 70B Hanami x1","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-01-08","last_updated":"2026-03-15","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":16000,"output":16000},"cost":{"input":3,"output":3}},"deepseek/deepseek-r1-0528":{"id":"deepseek/deepseek-r1-0528","name":"DeepSeek: R1 0528","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-05-28","last_updated":"2026-03-15","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":163840,"output":65536},"cost":{"input":0.45,"output":2.15,"cache_read":0.2}},"deepseek/deepseek-v3.2":{"id":"deepseek/deepseek-v3.2","name":"DeepSeek: DeepSeek V3.2","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-12-01","last_updated":"2026-03-15","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":163840,"output":65536},"cost":{"input":0.26,"output":0.38,"cache_read":0.125}},"deepseek/deepseek-r1":{"id":"deepseek/deepseek-r1","name":"DeepSeek: R1","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-01-20","last_updated":"2025-01-20","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":64000,"output":16000},"cost":{"input":0.7,"output":2.5}},"deepseek/deepseek-chat-v3.1":{"id":"deepseek/deepseek-chat-v3.1","name":"DeepSeek: DeepSeek V3.1","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-08-21","last_updated":"2025-08-21","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":32768,"output":7168},"cost":{"input":0.15,"output":0.75}},"deepseek/deepseek-chat-v3-0324":{"id":"deepseek/deepseek-chat-v3-0324","name":"DeepSeek: DeepSeek V3 0324","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-03-24","last_updated":"2026-03-15","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":163840,"output":65536},"cost":{"input":0.2,"output":0.77,"cache_read":0.095}},"deepseek/deepseek-r1-distill-llama-70b":{"id":"deepseek/deepseek-r1-distill-llama-70b","name":"DeepSeek: R1 Distill Llama 70B","attachment":false,"reasoning":true,"tool_call":false,"temperature":true,"release_date":"2025-01-23","last_updated":"2026-03-15","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":16384},"cost":{"input":0.7,"output":0.8,"cache_read":0.015}},"deepseek/deepseek-chat":{"id":"deepseek/deepseek-chat","name":"DeepSeek: DeepSeek V3","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2024-12-01","last_updated":"2026-03-15","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":163840,"output":163840},"cost":{"input":0.32,"output":0.89,"cache_read":0.15}},"deepseek/deepseek-v3.2-speciale":{"id":"deepseek/deepseek-v3.2-speciale","name":"DeepSeek: DeepSeek V3.2 Speciale","attachment":false,"reasoning":true,"tool_call":false,"temperature":true,"release_date":"2025-12-01","last_updated":"2026-03-15","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":163840,"output":163840},"cost":{"input":0.4,"output":1.2,"cache_read":0.135}},"deepseek/deepseek-v3.1-terminus":{"id":"deepseek/deepseek-v3.1-terminus","name":"DeepSeek: DeepSeek V3.1 Terminus","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-09-22","last_updated":"2025-09-22","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":163840,"output":32768},"cost":{"input":0.21,"output":0.79,"cache_read":0.13}},"deepseek/deepseek-v4-flash":{"id":"deepseek/deepseek-v4-flash","name":"DeepSeek: DeepSeek V4 Flash","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-04-24","last_updated":"2026-05-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":384000},"cost":{"input":0.14,"output":0.28,"cache_read":0.0028}},"deepseek/deepseek-v3.2-exp":{"id":"deepseek/deepseek-v3.2-exp","name":"DeepSeek: DeepSeek V3.2 Exp","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-01-01","last_updated":"2025-09-29","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":163840,"output":65536},"cost":{"input":0.27,"output":0.41}},"deepseek/deepseek-v4-pro":{"id":"deepseek/deepseek-v4-pro","name":"DeepSeek: DeepSeek V4 Pro","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-04-24","last_updated":"2026-05-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":384000},"cost":{"input":0.435,"output":0.87,"cache_read":0.003625}},"deepseek/deepseek-r1-distill-qwen-32b":{"id":"deepseek/deepseek-r1-distill-qwen-32b","name":"DeepSeek: R1 Distill Qwen 32B","attachment":false,"reasoning":true,"tool_call":false,"temperature":true,"release_date":"2025-01-01","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":32768,"output":32768},"cost":{"input":0.29,"output":0.29}},"inception/mercury-2":{"id":"inception/mercury-2","name":"Inception: Mercury 2","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-02-24","last_updated":"2026-02-24","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":50000},"cost":{"input":0.25,"output":0.75,"cache_read":0.025}},"relace/relace-apply-3":{"id":"relace/relace-apply-3","name":"Relace: Relace Apply 3","attachment":false,"reasoning":false,"tool_call":false,"release_date":"2025-09-26","last_updated":"2026-03-15","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":128000},"cost":{"input":0.85,"output":1.25}},"relace/relace-search":{"id":"relace/relace-search","name":"Relace: Relace Search","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2025-12-09","last_updated":"2026-03-15","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":128000},"cost":{"input":1,"output":3}},"thedrummer/rocinante-12b":{"id":"thedrummer/rocinante-12b","name":"TheDrummer: Rocinante 12B","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2024-09-30","last_updated":"2026-03-15","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":32768,"output":32768},"cost":{"input":0.17,"output":0.43}},"thedrummer/skyfall-36b-v2":{"id":"thedrummer/skyfall-36b-v2","name":"TheDrummer: Skyfall 36B V2","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-03-11","last_updated":"2026-03-15","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":32768,"output":32768},"cost":{"input":0.55,"output":0.8}},"thedrummer/unslopnemo-12b":{"id":"thedrummer/unslopnemo-12b","name":"TheDrummer: UnslopNemo 12B","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2024-11-09","last_updated":"2026-03-15","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":32768,"output":32768},"cost":{"input":0.4,"output":0.4}},"thedrummer/cydonia-24b-v4.1":{"id":"thedrummer/cydonia-24b-v4.1","name":"TheDrummer: Cydonia 24B V4.1","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-09-27","last_updated":"2026-03-15","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":131072},"cost":{"input":0.3,"output":0.5}},"deepcogito/cogito-v2.1-671b":{"id":"deepcogito/cogito-v2.1-671b","name":"Deep Cogito: Cogito v2.1 671B","attachment":false,"reasoning":true,"tool_call":false,"temperature":true,"release_date":"2025-11-14","last_updated":"2026-03-15","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":32768},"cost":{"input":1.25,"output":1.25}},"inflection/inflection-3-pi":{"id":"inflection/inflection-3-pi","name":"Inflection: Inflection 3 Pi","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2024-10-11","last_updated":"2026-03-15","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":8000,"output":1024},"cost":{"input":2.5,"output":10}},"inflection/inflection-3-productivity":{"id":"inflection/inflection-3-productivity","name":"Inflection: Inflection 3 Productivity","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2024-10-11","last_updated":"2026-03-15","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":8000,"output":1024},"cost":{"input":2.5,"output":10}},"perceptron/perceptron-mk1":{"id":"perceptron/perceptron-mk1","name":"Perceptron: Perceptron Mk1","attachment":true,"reasoning":true,"tool_call":false,"temperature":true,"release_date":"2026-05-12","last_updated":"2026-05-16","modalities":{"input":["image","text","video"],"output":["text"]},"open_weights":false,"limit":{"context":32768,"output":8192},"cost":{"input":0.15,"output":1.5}},"anthropic/claude-sonnet-4":{"id":"anthropic/claude-sonnet-4","name":"Anthropic: Claude Sonnet 4","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-05-22","last_updated":"2026-03-15","modalities":{"input":["image","pdf","text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75}},"anthropic/claude-sonnet-4.6":{"id":"anthropic/claude-sonnet-4.6","name":"Anthropic: Claude Sonnet 4.6","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-08-31","release_date":"2026-02-17","last_updated":"2026-03-15","modalities":{"input":["image","text"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":3,"output":15}},"anthropic/claude-opus-4.5":{"id":"anthropic/claude-opus-4.5","name":"Anthropic: Claude Opus 4.5","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-11-24","last_updated":"2026-03-15","modalities":{"input":["image","pdf","text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25}},"anthropic/claude-opus-4.7":{"id":"anthropic/claude-opus-4.7","name":"Anthropic: Claude Opus 4.7","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2026-04-16","last_updated":"2026-05-01","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25}},"anthropic/claude-3.5-haiku":{"id":"anthropic/claude-3.5-haiku","name":"Anthropic: Claude 3.5 Haiku","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2024-10-22","last_updated":"2024-10-22","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":8192},"cost":{"input":0.8,"output":4,"cache_read":0.08,"cache_write":1}},"anthropic/claude-3-haiku":{"id":"anthropic/claude-3-haiku","name":"Anthropic: Claude 3 Haiku","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2024-03-07","last_updated":"2024-03-07","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":4096},"cost":{"input":0.25,"output":1.25,"cache_read":0.03,"cache_write":0.3}},"anthropic/claude-opus-4.6-fast":{"id":"anthropic/claude-opus-4.6-fast","name":"Anthropic: Claude Opus 4.6 (Fast)","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-05-31","release_date":"2026-04-07","last_updated":"2026-04-11","modalities":{"input":["image","text"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":30,"output":150,"cache_read":3,"cache_write":37.5}},"anthropic/claude-sonnet-4.5":{"id":"anthropic/claude-sonnet-4.5","name":"Anthropic: Claude Sonnet 4.5","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-09-29","last_updated":"2026-03-15","modalities":{"input":["image","pdf","text"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":64000},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75}},"anthropic/claude-opus-4.6":{"id":"anthropic/claude-opus-4.6","name":"Anthropic: Claude Opus 4.6","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-05-31","release_date":"2026-02-05","last_updated":"2026-02-05","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25}},"anthropic/claude-haiku-4.5":{"id":"anthropic/claude-haiku-4.5","name":"Anthropic: Claude Haiku 4.5","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-10-15","last_updated":"2025-10-15","modalities":{"input":["image","text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":1,"output":5,"cache_read":0.1,"cache_write":1.25}},"anthropic/claude-opus-4.7-fast":{"id":"anthropic/claude-opus-4.7-fast","name":"Anthropic: Claude Opus 4.7 (Fast)","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2026-05-12","last_updated":"2026-05-16","modalities":{"input":["image","pdf","text"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":30,"output":150,"cache_read":3,"cache_write":37.5}},"anthropic/claude-opus-4.1":{"id":"anthropic/claude-opus-4.1","name":"Anthropic: Claude Opus 4.1","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-08-05","last_updated":"2026-03-15","modalities":{"input":["image","pdf","text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":32000},"cost":{"input":15,"output":75,"cache_read":1.5,"cache_write":18.75}},"anthropic/claude-opus-4":{"id":"anthropic/claude-opus-4","name":"Anthropic: Claude Opus 4","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-05-22","last_updated":"2026-03-15","modalities":{"input":["image","pdf","text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":32000},"cost":{"input":15,"output":75,"cache_read":1.5,"cache_write":18.75}},"xiaomi/mimo-v2-omni":{"id":"xiaomi/mimo-v2-omni","name":"Xiaomi: MiMo-V2-Omni","family":"mimo","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-12","release_date":"2026-03-18","last_updated":"2026-03-18","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"output":65536},"cost":{"input":0.4,"output":2,"cache_read":0.08}},"xiaomi/mimo-v2-pro":{"id":"xiaomi/mimo-v2-pro","name":"Xiaomi: MiMo-V2-Pro","family":"mimo","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-12","release_date":"2026-03-18","last_updated":"2026-03-18","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":131072},"cost":{"input":1,"output":3,"cache_read":0.2,"tiers":[{"input":2,"output":6,"cache_read":0.4,"tier":{"type":"context","size":256000}}],"context_over_200k":{"input":2,"output":6,"cache_read":0.4}}},"xiaomi/mimo-v2.5":{"id":"xiaomi/mimo-v2.5","name":"Xiaomi: MiMo-V2.5","family":"mimo","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2024-12","release_date":"2026-04-22","last_updated":"2026-04-22","modalities":{"input":["text","image","audio","video"],"output":["text"]},"open_weights":true,"limit":{"context":1048576,"output":131072},"cost":{"input":0.4,"output":2,"cache_read":0.08,"tiers":[{"input":0.8,"output":4,"cache_read":0.16,"tier":{"type":"context","size":256000}}],"context_over_200k":{"input":0.8,"output":4,"cache_read":0.16}}},"xiaomi/mimo-v2-flash":{"id":"xiaomi/mimo-v2-flash","name":"Xiaomi: MiMo-V2-Flash","family":"mimo","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-12-01","release_date":"2025-12-16","last_updated":"2026-02-04","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":65536},"cost":{"input":0.09,"output":0.29,"cache_read":0.045}},"xiaomi/mimo-v2.5-pro":{"id":"xiaomi/mimo-v2.5-pro","name":"Xiaomi: MiMo V2.5 Pro","family":"mimo","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2024-12","release_date":"2026-04-22","last_updated":"2026-04-22","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1048576,"output":131072},"cost":{"input":1,"output":3,"cache_read":0.2,"tiers":[{"input":2,"output":6,"cache_read":0.4,"tier":{"type":"context","size":256000}}],"context_over_200k":{"input":2,"output":6,"cache_read":0.4}}},"ai21/jamba-large-1.7":{"id":"ai21/jamba-large-1.7","name":"AI21: Jamba Large 1.7","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2025-08-09","last_updated":"2026-03-15","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":4096},"cost":{"input":2,"output":8}},"qwen/qwen3.5-plus-02-15":{"id":"qwen/qwen3.5-plus-02-15","name":"Qwen: Qwen3.5 Plus 2026-02-15","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-02-15","last_updated":"2026-03-15","modalities":{"input":["image","text","video"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":65536},"cost":{"input":0.26,"output":1.56}},"qwen/qwen-plus-2025-07-28":{"id":"qwen/qwen-plus-2025-07-28","name":"Qwen: Qwen Plus 0728","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2025-09-09","last_updated":"2026-03-15","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1000000,"output":32768},"cost":{"input":0.26,"output":0.78}},"qwen/qwen3-30b-a3b-instruct-2507":{"id":"qwen/qwen3-30b-a3b-instruct-2507","name":"Qwen: Qwen3 30B A3B Instruct 2507","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2025-07-29","last_updated":"2026-03-15","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.09,"output":0.3,"cache_read":0.04}},"qwen/qwen3.5-122b-a10b":{"id":"qwen/qwen3.5-122b-a10b","name":"Qwen: Qwen3.5-122B-A10B","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-02-26","last_updated":"2026-03-15","modalities":{"input":["image","text","video"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":65536},"cost":{"input":0.26,"output":2.08}},"qwen/qwen3-next-80b-a3b-instruct":{"id":"qwen/qwen3-next-80b-a3b-instruct","name":"Qwen: Qwen3 Next 80B A3B Instruct","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2025-09-11","last_updated":"2026-03-15","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":52429},"cost":{"input":0.09,"output":1.1}},"qwen/qwen2.5-vl-72b-instruct":{"id":"qwen/qwen2.5-vl-72b-instruct","name":"Qwen: Qwen2.5 VL 72B Instruct","attachment":true,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-02-01","last_updated":"2026-03-15","modalities":{"input":["image","text"],"output":["text"]},"open_weights":true,"limit":{"context":32768,"output":32768},"cost":{"input":0.8,"output":0.8,"cache_read":0.075}},"qwen/qwen3-vl-30b-a3b-instruct":{"id":"qwen/qwen3-vl-30b-a3b-instruct","name":"Qwen: Qwen3 VL 30B A3B Instruct","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2025-10-05","last_updated":"2025-11-25","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":32768},"cost":{"input":0.13,"output":0.52}},"qwen/qwen3-32b":{"id":"qwen/qwen3-32b","name":"Qwen: Qwen3 32B","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2024-12-01","last_updated":"2026-02-04","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":40960,"output":40960},"cost":{"input":0.08,"output":0.24,"cache_read":0.04}},"qwen/qwen3-coder-30b-a3b-instruct":{"id":"qwen/qwen3-coder-30b-a3b-instruct","name":"Qwen: Qwen3 Coder 30B A3B Instruct","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2025-07-31","last_updated":"2025-07-31","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":160000,"output":32768},"cost":{"input":0.07,"output":0.27}},"qwen/qwen3-vl-30b-a3b-thinking":{"id":"qwen/qwen3-vl-30b-a3b-thinking","name":"Qwen: Qwen3 VL 30B A3B Thinking","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-10-11","last_updated":"2026-03-15","modalities":{"input":["image","text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":32768},"cost":{"input":0.13,"output":1.56}},"qwen/qwen-2.5-coder-32b-instruct":{"id":"qwen/qwen-2.5-coder-32b-instruct","name":"Qwen2.5 Coder 32B Instruct","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2024-11-11","last_updated":"2026-03-15","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":32768,"output":8192},"cost":{"input":0.2,"output":0.2,"cache_read":0.015}},"qwen/qwen3-vl-235b-a22b-instruct":{"id":"qwen/qwen3-vl-235b-a22b-instruct","name":"Qwen: Qwen3 VL 235B A22B Instruct","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2025-09-23","last_updated":"2026-01-10","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":52429},"cost":{"input":0.2,"output":0.88,"cache_read":0.11}},"qwen/qwen3.6-27b":{"id":"qwen/qwen3.6-27b","name":"Qwen: Qwen3.6 27B","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-04-27","last_updated":"2026-05-01","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":65536},"cost":{"input":0.325,"output":3.25}},"qwen/qwen3-235b-a22b":{"id":"qwen/qwen3-235b-a22b","name":"Qwen: Qwen3 235B A22B","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2024-12-01","last_updated":"2026-03-15","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":8192},"cost":{"input":0.455,"output":1.82,"cache_read":0.15}},"qwen/qwen3.5-plus-20260420":{"id":"qwen/qwen3.5-plus-20260420","name":"Qwen: Qwen3.5 Plus 2026-04-20","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-04-27","last_updated":"2026-05-01","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":65536},"cost":{"input":0.4,"output":2.4}},"qwen/qwen3-max":{"id":"qwen/qwen3-max","name":"Qwen: Qwen3 Max","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2025-09-05","last_updated":"2026-03-15","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"output":32768},"cost":{"input":1.2,"output":6,"cache_read":0.24}},"qwen/qwen3-coder-plus":{"id":"qwen/qwen3-coder-plus","name":"Qwen: Qwen3 Coder Plus","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2025-07-01","last_updated":"2026-03-15","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1000000,"output":65536},"cost":{"input":0.65,"output":3.25,"cache_read":0.2}},"qwen/qwen3-14b":{"id":"qwen/qwen3-14b","name":"Qwen: Qwen3 14B","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-04","last_updated":"2026-03-15","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":40960,"output":40960},"cost":{"input":0.06,"output":0.24,"cache_read":0.025}},"qwen/qwen3-coder-next":{"id":"qwen/qwen3-coder-next","name":"Qwen: Qwen3 Coder Next","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2026-02-02","last_updated":"2026-03-15","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":65536},"cost":{"input":0.12,"output":0.75,"cache_read":0.035}},"qwen/qwen3-235b-a22b-thinking-2507":{"id":"qwen/qwen3-235b-a22b-thinking-2507","name":"Qwen: Qwen3 235B A22B Thinking 2507","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-07-25","last_updated":"2026-03-15","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.11,"output":0.6}},"qwen/qwen3-8b":{"id":"qwen/qwen3-8b","name":"Qwen: Qwen3 8B","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-04","last_updated":"2026-03-15","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":40960,"output":8192},"cost":{"input":0.05,"output":0.4,"cache_read":0.05}},"qwen/qwen3.7-max":{"id":"qwen/qwen3.7-max","name":"Qwen: Qwen3.7 Max","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-08-26","last_updated":"2026-05-27","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":65536},"cost":{"input":1.625,"output":4.875,"cache_read":0.1625,"cache_write":2.03125}},"qwen/qwen3-235b-a22b-2507":{"id":"qwen/qwen3-235b-a22b-2507","name":"Qwen: Qwen3 235B A22B Instruct 2507","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-04","last_updated":"2026-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":52429},"cost":{"input":0.071,"output":0.1}},"qwen/qwen3-30b-a3b":{"id":"qwen/qwen3-30b-a3b","name":"Qwen: Qwen3 30B A3B","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-04","last_updated":"2026-03-15","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":40960,"output":40960},"cost":{"input":0.08,"output":0.28,"cache_read":0.03}},"qwen/qwen3.6-plus":{"id":"qwen/qwen3.6-plus","name":"Qwen: Qwen3.6 Plus","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-08-26","last_updated":"2026-04-11","modalities":{"input":["image","text"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":65536},"cost":{"input":0.325,"output":1.95,"cache_read":0.0325,"cache_write":0.40625}},"qwen/qwen3.5-9b":{"id":"qwen/qwen3.5-9b","name":"Qwen: Qwen3.5-9B","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-03-10","last_updated":"2026-03-15","modalities":{"input":["image","text","video"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"output":32768},"cost":{"input":0.05,"output":0.15}},"qwen/qwen3-vl-8b-instruct":{"id":"qwen/qwen3-vl-8b-instruct","name":"Qwen: Qwen3 VL 8B Instruct","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2025-10-15","last_updated":"2025-11-25","modalities":{"input":["image","text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":32768},"cost":{"input":0.08,"output":0.5}},"qwen/qwen3.5-flash-02-23":{"id":"qwen/qwen3.5-flash-02-23","name":"Qwen: Qwen3.5-Flash","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-02-26","last_updated":"2026-03-15","modalities":{"input":["image","text","video"],"output":["text"]},"open_weights":true,"limit":{"context":1000000,"output":65536},"cost":{"input":0.1,"output":0.4}},"qwen/qwen3-next-80b-a3b-thinking":{"id":"qwen/qwen3-next-80b-a3b-thinking","name":"Qwen: Qwen3 Next 80B A3B Thinking","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-09-11","last_updated":"2026-03-15","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":32768},"cost":{"input":0.0975,"output":0.78}},"qwen/qwen3-coder-flash":{"id":"qwen/qwen3-coder-flash","name":"Qwen: Qwen3 Coder Flash","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2025-07-23","last_updated":"2026-03-15","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":65536},"cost":{"input":0.195,"output":0.975,"cache_read":0.06}},"qwen/qwen3.5-35b-a3b":{"id":"qwen/qwen3.5-35b-a3b","name":"Qwen: Qwen3.5-35B-A3B","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-02-26","last_updated":"2026-03-15","modalities":{"input":["image","text","video"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":65536},"cost":{"input":0.1625,"output":1.3}},"qwen/qwen3.6-flash":{"id":"qwen/qwen3.6-flash","name":"Qwen: Qwen3.6 Flash","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-04-27","last_updated":"2026-05-01","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":65536},"cost":{"input":0.25,"output":1.5,"cache_write":0.3125}},"qwen/qwen3.6-35b-a3b":{"id":"qwen/qwen3.6-35b-a3b","name":"Qwen: Qwen3.6 35B A3B","attachment":true,"reasoning":true,"tool_call":false,"temperature":true,"release_date":"2026-04-27","last_updated":"2026-05-01","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"output":65536},"cost":{"input":0.1612,"output":0.96525,"cache_read":0.1612}},"qwen/qwen3-30b-a3b-thinking-2507":{"id":"qwen/qwen3-30b-a3b-thinking-2507","name":"Qwen: Qwen3 30B A3B Thinking 2507","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-07-29","last_updated":"2025-07-29","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":32768,"output":6554},"cost":{"input":0.051,"output":0.34}},"qwen/qwen-plus-2025-07-28:thinking":{"id":"qwen/qwen-plus-2025-07-28:thinking","name":"Qwen: Qwen Plus 0728 (thinking)","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-09-09","last_updated":"2026-03-15","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1000000,"output":32768},"cost":{"input":0.26,"output":0.78}},"qwen/qwen3-coder":{"id":"qwen/qwen3-coder","name":"Qwen: Qwen3 Coder 480B A35B","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2025-07-23","last_updated":"2025-07-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":52429},"cost":{"input":0.22,"output":1,"cache_read":0.022}},"qwen/qwen3.6-max-preview":{"id":"qwen/qwen3.6-max-preview","name":"Qwen: Qwen3.6 Max Preview","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-04-27","last_updated":"2026-05-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"output":65536},"cost":{"input":1.04,"output":6.24,"cache_write":1.3}},"qwen/qwen3.5-397b-a17b":{"id":"qwen/qwen3.5-397b-a17b","name":"Qwen: Qwen3.5 397B A17B","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-02-15","last_updated":"2026-03-15","modalities":{"input":["image","text","video"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"output":65536},"cost":{"input":0.39,"output":2.34}},"qwen/qwen-2.5-7b-instruct":{"id":"qwen/qwen-2.5-7b-instruct","name":"Qwen: Qwen2.5 7B Instruct","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2024-09","last_updated":"2025-04-16","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":32768,"output":6554},"cost":{"input":0.04,"output":0.1}},"qwen/qwen3-max-thinking":{"id":"qwen/qwen3-max-thinking","name":"Qwen: Qwen3 Max Thinking","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-01-23","last_updated":"2026-03-15","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"output":32768},"cost":{"input":0.78,"output":3.9}},"qwen/qwen3.5-27b":{"id":"qwen/qwen3.5-27b","name":"Qwen: Qwen3.5-27B","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-02-26","last_updated":"2026-03-15","modalities":{"input":["image","text","video"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":65536},"cost":{"input":0.195,"output":1.56}},"qwen/qwen3-vl-8b-thinking":{"id":"qwen/qwen3-vl-8b-thinking","name":"Qwen: Qwen3 VL 8B Thinking","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-10-15","last_updated":"2025-11-25","modalities":{"input":["image","text"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":32768},"cost":{"input":0.117,"output":1.365}},"qwen/qwen3-vl-235b-a22b-thinking":{"id":"qwen/qwen3-vl-235b-a22b-thinking","name":"Qwen: Qwen3 VL 235B A22B Thinking","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-09-24","last_updated":"2026-03-15","modalities":{"input":["image","text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":32768},"cost":{"input":0.26,"output":2.6}},"qwen/qwen-2.5-72b-instruct":{"id":"qwen/qwen-2.5-72b-instruct","name":"Qwen2.5 72B Instruct","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2024-09","last_updated":"2026-01-10","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":32768,"output":16384},"cost":{"input":0.12,"output":0.39}},"qwen/qwen3-vl-32b-instruct":{"id":"qwen/qwen3-vl-32b-instruct","name":"Qwen: Qwen3 VL 32B Instruct","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2025-10-21","last_updated":"2025-11-25","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":32768},"cost":{"input":0.104,"output":0.416}},"qwen/qwen-plus":{"id":"qwen/qwen-plus","name":"Qwen: Qwen-Plus","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2024-01-25","last_updated":"2025-09-11","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":32768},"cost":{"input":0.4,"output":1.2,"cache_read":0.08}},"~moonshotai/kimi-latest":{"id":"~moonshotai/kimi-latest","name":"MoonshotAI: Kimi Latest","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-04-27","last_updated":"2026-05-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":262142,"output":262142},"cost":{"input":0.74,"output":3.49,"cache_read":0.14}},"~google/gemini-pro-latest":{"id":"~google/gemini-pro-latest","name":"Google: Gemini Pro Latest","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-04-27","last_updated":"2026-05-01","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":2,"output":12,"cache_read":0.2,"cache_write":0.375}},"~google/gemini-flash-latest":{"id":"~google/gemini-flash-latest","name":"Google: Gemini Flash Latest","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-04-27","last_updated":"2026-05-01","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":0.5,"output":3,"cache_read":0.05,"cache_write":0.08333333333333334}},"liquid/lfm-2-24b-a2b":{"id":"liquid/lfm-2-24b-a2b","name":"LiquidAI: LFM2-24B-A2B","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2026-02-26","last_updated":"2026-03-15","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":32768,"output":32768},"cost":{"input":0.03,"output":0.12}},"essentialai/rnj-1-instruct":{"id":"essentialai/rnj-1-instruct","name":"EssentialAI: Rnj 1 Instruct","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2025-12-05","last_updated":"2026-03-15","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":32768,"output":6554},"cost":{"input":0.15,"output":0.15}},"cohere/command-r-plus-08-2024":{"id":"cohere/command-r-plus-08-2024","name":"Cohere: Command R+ (08-2024)","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2024-08-30","last_updated":"2024-08-30","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4000},"cost":{"input":2.5,"output":10}},"cohere/command-r-08-2024":{"id":"cohere/command-r-08-2024","name":"Cohere: Command R (08-2024)","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2024-08-30","last_updated":"2024-08-30","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4000},"cost":{"input":0.15,"output":0.6}},"cohere/command-a":{"id":"cohere/command-a","name":"Cohere: Command A","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-03-13","last_updated":"2025-03-13","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"output":8192},"cost":{"input":2.5,"output":10}},"cohere/command-r7b-12-2024":{"id":"cohere/command-r7b-12-2024","name":"Cohere: Command R7B (12-2024)","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2024-02-27","last_updated":"2024-02-27","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4000},"cost":{"input":0.0375,"output":0.15}},"openrouter/free":{"id":"openrouter/free","name":"Free Models Router","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-02-01","last_updated":"2026-03-15","modalities":{"input":["image","text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":32768},"cost":{"input":0,"output":0}},"openrouter/pareto-code":{"id":"openrouter/pareto-code","name":"Pareto Code Router","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2026-04-21","last_updated":"2026-05-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":65536},"cost":{"input":0,"output":0}},"openrouter/bodybuilder":{"id":"openrouter/bodybuilder","name":"Body Builder (beta)","attachment":false,"reasoning":false,"tool_call":false,"release_date":"2026-03-15","last_updated":"2026-03-15","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":32768},"status":"beta","cost":{"input":0,"output":0}},"openrouter/owl-alpha":{"id":"openrouter/owl-alpha","name":"Owl Alpha","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-04-28","last_updated":"2026-04-30","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1048756,"output":262144},"status":"alpha","cost":{"input":0,"output":0}},"openrouter/auto":{"id":"openrouter/auto","name":"Auto Router","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-03-15","last_updated":"2026-03-15","modalities":{"input":["audio","image","pdf","text","video"],"output":["image","text"]},"open_weights":false,"limit":{"context":2000000,"output":32768},"cost":{"input":0,"output":0}},"moonshotai/kimi-k2-thinking":{"id":"moonshotai/kimi-k2-thinking","name":"MoonshotAI: Kimi K2 Thinking","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-11-06","last_updated":"2026-03-15","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":65535},"cost":{"input":0.47,"output":2,"cache_read":0.2}},"moonshotai/kimi-k2.6":{"id":"moonshotai/kimi-k2.6","name":"MoonshotAI: Kimi K2.6","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-04-20","last_updated":"2026-05-12","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":65535},"cost":{"input":0.75,"output":3.5,"cache_read":0.375}},"moonshotai/kimi-k2-0905":{"id":"moonshotai/kimi-k2-0905","name":"MoonshotAI: Kimi K2 0905","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2025-09-05","last_updated":"2025-09-05","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":26215},"cost":{"input":0.4,"output":2,"cache_read":0.15}},"moonshotai/kimi-k2":{"id":"moonshotai/kimi-k2","name":"MoonshotAI: Kimi K2 0711","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2025-07-11","last_updated":"2026-03-15","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131000,"output":26215},"cost":{"input":0.55,"output":2.2}},"moonshotai/kimi-k2.5":{"id":"moonshotai/kimi-k2.5","name":"MoonshotAI: Kimi K2.5","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-01-27","last_updated":"2026-03-15","modalities":{"input":["image","text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":65535},"cost":{"input":0.45,"output":2.2}},"meta-llama/llama-3.1-70b-instruct":{"id":"meta-llama/llama-3.1-70b-instruct","name":"Meta: Llama 3.1 70B Instruct","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2024-07-16","last_updated":"2024-07-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":26215},"cost":{"input":0.4,"output":0.4}},"meta-llama/llama-4-maverick":{"id":"meta-llama/llama-4-maverick","name":"Meta: Llama 4 Maverick","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2025-04-05","last_updated":"2025-12-24","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":1048576,"output":16384},"cost":{"input":0.15,"output":0.6}},"meta-llama/llama-guard-4-12b":{"id":"meta-llama/llama-guard-4-12b","name":"Meta: Llama Guard 4 12B","attachment":true,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-04-05","last_updated":"2025-04-05","modalities":{"input":["image","text"],"output":["text"]},"open_weights":true,"limit":{"context":163840,"output":32768},"cost":{"input":0.18,"output":0.18}},"meta-llama/llama-3.2-3b-instruct":{"id":"meta-llama/llama-3.2-3b-instruct","name":"Meta: Llama 3.2 3B Instruct","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2024-09-18","last_updated":"2026-03-15","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":80000,"output":16384},"cost":{"input":0.051,"output":0.34}},"meta-llama/llama-4-scout":{"id":"meta-llama/llama-4-scout","name":"Meta: Llama 4 Scout","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2025-04-05","last_updated":"2025-04-05","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":327680,"output":16384},"cost":{"input":0.08,"output":0.3}},"meta-llama/llama-3.2-11b-vision-instruct":{"id":"meta-llama/llama-3.2-11b-vision-instruct","name":"Meta: Llama 3.2 11B Vision Instruct","attachment":true,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2024-09-25","last_updated":"2024-09-25","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":16384},"cost":{"input":0.049,"output":0.049}},"meta-llama/llama-3.2-1b-instruct":{"id":"meta-llama/llama-3.2-1b-instruct","name":"Meta: Llama 3.2 1B Instruct","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2024-09-18","last_updated":"2026-01-27","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":60000,"output":12000},"cost":{"input":0.027,"output":0.2}},"meta-llama/llama-3-70b-instruct":{"id":"meta-llama/llama-3-70b-instruct","name":"Meta: Llama 3 70B Instruct","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2024-07-23","last_updated":"2024-07-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":8192,"output":8000},"cost":{"input":0.51,"output":0.74}},"meta-llama/llama-3-8b-instruct":{"id":"meta-llama/llama-3-8b-instruct","name":"Meta: Llama 3 8B Instruct","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2024-04-25","last_updated":"2025-04-03","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":8192,"output":16384},"cost":{"input":0.03,"output":0.04}},"meta-llama/llama-3.1-8b-instruct":{"id":"meta-llama/llama-3.1-8b-instruct","name":"Meta: Llama 3.1 8B Instruct","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2024-07-23","last_updated":"2025-12-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":16384,"output":16384},"cost":{"input":0.02,"output":0.05}},"meta-llama/llama-3.3-70b-instruct":{"id":"meta-llama/llama-3.3-70b-instruct","name":"Meta: Llama 3.3 70B Instruct","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2024-08-01","last_updated":"2026-02-04","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":16384},"cost":{"input":0.1,"output":0.32}},"meta-llama/llama-guard-3-8b":{"id":"meta-llama/llama-guard-3-8b","name":"Llama Guard 3 8B","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2024-04-18","last_updated":"2026-02-04","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":26215},"cost":{"input":0.02,"output":0.06}},"kilo-auto/balanced":{"id":"kilo-auto/balanced","name":"Kilo Auto Balanced","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-03-15","last_updated":"2026-03-15","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":204800,"output":131072},"cost":{"input":0.6,"output":3}},"kilo-auto/frontier":{"id":"kilo-auto/frontier","name":"Kilo Auto Frontier","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-03-15","last_updated":"2026-03-15","modalities":{"input":["image","text"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":5,"output":25}},"kilo-auto/small":{"id":"kilo-auto/small","name":"Kilo Auto Small","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-03-15","last_updated":"2026-03-15","modalities":{"input":["image","text"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":0.05,"output":0.4}},"kilo-auto/free":{"id":"kilo-auto/free","name":"Kilo Auto Free","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-03-15","last_updated":"2026-03-15","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":204800,"output":131072},"cost":{"input":0,"output":0}},"perplexity/sonar":{"id":"perplexity/sonar","name":"Perplexity: Sonar","attachment":true,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2024-01-01","last_updated":"2025-09-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":127072,"output":25415},"cost":{"input":1,"output":1}},"perplexity/sonar-pro":{"id":"perplexity/sonar-pro","name":"Perplexity: Sonar Pro","attachment":true,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2024-01-01","last_updated":"2025-09-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":8000},"cost":{"input":3,"output":15}},"perplexity/sonar-reasoning-pro":{"id":"perplexity/sonar-reasoning-pro","name":"Perplexity: Sonar Reasoning Pro","attachment":true,"reasoning":true,"tool_call":false,"temperature":true,"release_date":"2024-01-01","last_updated":"2025-09-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":25600},"cost":{"input":2,"output":8}},"perplexity/sonar-pro-search":{"id":"perplexity/sonar-pro-search","name":"Perplexity: Sonar Pro Search","attachment":true,"reasoning":true,"tool_call":false,"temperature":true,"release_date":"2025-10-31","last_updated":"2026-03-15","modalities":{"input":["image","text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":8000},"cost":{"input":3,"output":15}},"perplexity/sonar-deep-research":{"id":"perplexity/sonar-deep-research","name":"Perplexity: Sonar Deep Research","attachment":false,"reasoning":true,"tool_call":false,"temperature":true,"release_date":"2025-01-27","last_updated":"2025-01-27","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":25600},"cost":{"input":2,"output":8}},"anthracite-org/magnum-v4-72b":{"id":"anthracite-org/magnum-v4-72b","name":"Magnum v4 72B","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2024-10-22","last_updated":"2026-03-15","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":16384,"output":2048},"cost":{"input":3,"output":5}},"mancer/weaver":{"id":"mancer/weaver","name":"Mancer: Weaver (alpha)","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2023-08-02","last_updated":"2026-03-15","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":8000,"output":2000},"cost":{"input":0.75,"output":1}},"baidu/ernie-4.5-vl-424b-a47b":{"id":"baidu/ernie-4.5-vl-424b-a47b","name":"Baidu: ERNIE 4.5 VL 424B A47B ","attachment":true,"reasoning":true,"tool_call":false,"temperature":true,"release_date":"2025-06-30","last_updated":"2026-01","modalities":{"input":["image","text"],"output":["text"]},"open_weights":true,"limit":{"context":123000,"output":16000},"cost":{"input":0.42,"output":1.25}},"baidu/ernie-4.5-vl-28b-a3b":{"id":"baidu/ernie-4.5-vl-28b-a3b","name":"Baidu: ERNIE 4.5 VL 28B A3B","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-06-30","last_updated":"2025-06-30","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":30000,"output":8000},"cost":{"input":0.14,"output":0.56}},"baidu/ernie-4.5-21b-a3b-thinking":{"id":"baidu/ernie-4.5-21b-a3b-thinking","name":"Baidu: ERNIE 4.5 21B A3B Thinking","attachment":false,"reasoning":true,"tool_call":false,"temperature":true,"release_date":"2025-09-19","last_updated":"2025-09-19","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":65536},"cost":{"input":0.07,"output":0.28}},"baidu/cobuddy:free":{"id":"baidu/cobuddy:free","name":"Baidu: CoBuddy (free)","attachment":false,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2026-05-06","last_updated":"2026-05-07","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":65536},"cost":{"input":0,"output":0}},"baidu/ernie-4.5-21b-a3b":{"id":"baidu/ernie-4.5-21b-a3b","name":"Baidu: ERNIE 4.5 21B A3B","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2025-06-30","last_updated":"2025-06-30","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":120000,"output":8000},"cost":{"input":0.07,"output":0.28}},"baidu/qianfan-ocr-fast":{"id":"baidu/qianfan-ocr-fast","name":"Baidu: Qianfan-OCR-Fast","attachment":true,"reasoning":true,"tool_call":false,"temperature":true,"release_date":"2026-04-20","last_updated":"2026-05-16","modalities":{"input":["image","text"],"output":["text"]},"open_weights":false,"limit":{"context":65536,"output":28672},"cost":{"input":0.68,"output":2.81}},"baidu/ernie-4.5-300b-a47b":{"id":"baidu/ernie-4.5-300b-a47b","name":"Baidu: ERNIE 4.5 300B A47B ","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-06-30","last_updated":"2026-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":123000,"output":12000},"cost":{"input":0.28,"output":1.1}},"x-ai/grok-4.20-multi-agent":{"id":"x-ai/grok-4.20-multi-agent","name":"xAI: Grok 4.20 Multi-Agent","attachment":true,"reasoning":true,"tool_call":false,"temperature":true,"release_date":"2026-03-31","last_updated":"2026-04-11","modalities":{"input":["image","pdf","text"],"output":["text"]},"open_weights":false,"limit":{"context":2000000,"output":2000000},"cost":{"input":2,"output":6,"cache_read":0.2}},"x-ai/grok-build-0.1":{"id":"x-ai/grok-build-0.1","name":"xAI: Grok Build 0.1","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-05-20","last_updated":"2026-05-27","modalities":{"input":["image","text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":256000},"cost":{"input":1,"output":2,"cache_read":0.2}},"x-ai/grok-4.20":{"id":"x-ai/grok-4.20","name":"xAI: Grok 4.20","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-03-31","last_updated":"2026-04-11","modalities":{"input":["image","pdf","text"],"output":["text"]},"open_weights":false,"limit":{"context":2000000,"output":2000000},"cost":{"input":2,"output":6,"cache_read":0.2}},"x-ai/grok-4.3":{"id":"x-ai/grok-4.3","name":"xAI: Grok 4.3","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-05-01","last_updated":"2026-05-01","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":4096},"cost":{"input":1.25,"output":2.5,"cache_read":0.2}},"~openai/gpt-latest":{"id":"~openai/gpt-latest","name":"OpenAI: GPT Latest","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2026-04-27","last_updated":"2026-05-01","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1050000,"output":128000},"cost":{"input":5,"output":30,"cache_read":0.5}},"~openai/gpt-mini-latest":{"id":"~openai/gpt-mini-latest","name":"OpenAI: GPT Mini Latest","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2026-04-27","last_updated":"2026-05-01","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":0.75,"output":4.5,"cache_read":0.075}},"stealth/claude-sonnet-4.6":{"id":"stealth/claude-sonnet-4.6","name":"Stealth: Claude Sonnet 4.6 (20% off)","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-02-17","last_updated":"2026-05-27","modalities":{"input":["image","pdf","text"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":64000},"cost":{"input":2.4,"output":12,"cache_read":0.24,"cache_write":3}},"stealth/claude-opus-4.7":{"id":"stealth/claude-opus-4.7","name":"Stealth: Claude Opus 4.7 (20% off)","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2026-04-16","last_updated":"2026-05-27","modalities":{"input":["image","pdf","text"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":4,"output":20,"cache_read":0.4,"cache_write":5}},"stealth/claude-opus-4.6":{"id":"stealth/claude-opus-4.6","name":"Stealth: Claude Opus 4.6 (20% off)","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-02-05","last_updated":"2026-05-27","modalities":{"input":["image","pdf","text"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":4,"output":20,"cache_read":0.4,"cache_write":5}},"nvidia/nemotron-3-nano-30b-a3b":{"id":"nvidia/nemotron-3-nano-30b-a3b","name":"NVIDIA: Nemotron 3 Nano 30B A3B","family":"nemotron","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2024-12","last_updated":"2026-02-04","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":52429},"cost":{"input":0.05,"output":0.2}},"nvidia/nemotron-nano-9b-v2":{"id":"nvidia/nemotron-nano-9b-v2","name":"NVIDIA: Nemotron Nano 9B V2","family":"nemotron","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-08-18","last_updated":"2025-08-18","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":26215},"cost":{"input":0.04,"output":0.16}},"nvidia/nemotron-3-nano-omni-30b-a3b-reasoning:free":{"id":"nvidia/nemotron-3-nano-omni-30b-a3b-reasoning:free","name":"NVIDIA: Nemotron 3 Nano Omni (free)","family":"nemotron","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-04-28","last_updated":"2026-05-01","modalities":{"input":["text","audio","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":65536},"cost":{"input":0,"output":0}},"nvidia/nemotron-3-super-120b-a12b:free":{"id":"nvidia/nemotron-3-super-120b-a12b:free","name":"NVIDIA: Nemotron 3 Super (free)","family":"nemotron","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-03-12","last_updated":"2026-03-15","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0,"output":0}},"nvidia/llama-3.3-nemotron-super-49b-v1.5":{"id":"nvidia/llama-3.3-nemotron-super-49b-v1.5","name":"NVIDIA: Llama 3.3 Nemotron Super 49B V1.5","family":"nemotron","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-03-16","last_updated":"2025-03-16","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":26215},"cost":{"input":0.1,"output":0.4}},"nvidia/nemotron-3-super-120b-a12b":{"id":"nvidia/nemotron-3-super-120b-a12b","name":"NVIDIA: Nemotron 3 Super","family":"nemotron","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-03-11","last_updated":"2026-04-11","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.1,"output":0.5,"cache_read":0.1}},"switchpoint/router":{"id":"switchpoint/router","name":"Switchpoint Router","attachment":false,"reasoning":true,"tool_call":false,"temperature":true,"release_date":"2025-07-12","last_updated":"2026-03-15","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":32768},"cost":{"input":0.85,"output":3.4}},"arcee-ai/trinity-mini":{"id":"arcee-ai/trinity-mini","name":"Arcee AI: Trinity Mini","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-12","last_updated":"2026-01-28","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":131072},"cost":{"input":0.045,"output":0.15}},"arcee-ai/trinity-large-thinking":{"id":"arcee-ai/trinity-large-thinking","name":"Arcee AI: Trinity Large Thinking","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-04-01","last_updated":"2026-04-11","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.22,"output":0.85}},"arcee-ai/spotlight":{"id":"arcee-ai/spotlight","name":"Arcee AI: Spotlight","attachment":true,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-05-06","last_updated":"2026-03-15","modalities":{"input":["image","text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":65537},"cost":{"input":0.18,"output":0.18}},"arcee-ai/maestro-reasoning":{"id":"arcee-ai/maestro-reasoning","name":"Arcee AI: Maestro Reasoning","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-05-06","last_updated":"2026-03-15","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":32000},"cost":{"input":0.9,"output":3.3}},"arcee-ai/coder-large":{"id":"arcee-ai/coder-large","name":"Arcee AI: Coder Large","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-05-06","last_updated":"2026-03-15","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":32768,"output":32768},"cost":{"input":0.5,"output":0.8}},"arcee-ai/virtuoso-large":{"id":"arcee-ai/virtuoso-large","name":"Arcee AI: Virtuoso Large","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2025-05-06","last_updated":"2026-03-15","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":64000},"cost":{"input":0.75,"output":1.2}},"gryphe/mythomax-l2-13b":{"id":"gryphe/mythomax-l2-13b","name":"MythoMax 13B","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2024-04-25","last_updated":"2024-04-25","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":4096,"output":4096},"cost":{"input":0.06,"output":0.06}},"microsoft/phi-4":{"id":"microsoft/phi-4","name":"Microsoft: Phi 4","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2024-12-11","last_updated":"2024-12-11","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":16384,"output":16384},"cost":{"input":0.06,"output":0.14}},"microsoft/wizardlm-2-8x22b":{"id":"microsoft/wizardlm-2-8x22b","name":"WizardLM-2 8x22B","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2024-04-24","last_updated":"2024-04-24","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":65535,"output":8000},"cost":{"input":0.62,"output":0.62}},"microsoft/phi-4-mini-instruct":{"id":"microsoft/phi-4-mini-instruct","name":"Microsoft: Phi 4 Mini Instruct","attachment":false,"reasoning":false,"tool_call":false,"structured_output":true,"temperature":true,"release_date":"2025-10-17","last_updated":"2026-05-07","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":128000},"cost":{"input":0.08,"output":0.35,"cache_read":0.08}},"writer/palmyra-x5":{"id":"writer/palmyra-x5","name":"Writer: Palmyra X5","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-04-28","last_updated":"2025-04-28","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1040000,"output":8192},"cost":{"input":0.6,"output":6}},"bytedance-seed/seed-2.0-mini":{"id":"bytedance-seed/seed-2.0-mini","name":"ByteDance Seed: Seed-2.0-Mini","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-02-27","last_updated":"2026-03-15","modalities":{"input":["image","text","video"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":131072},"cost":{"input":0.1,"output":0.4}},"bytedance-seed/seed-1.6-flash":{"id":"bytedance-seed/seed-1.6-flash","name":"ByteDance Seed: Seed 1.6 Flash","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-12-23","last_updated":"2026-03-15","modalities":{"input":["image","text","video"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":32768},"cost":{"input":0.075,"output":0.3}},"bytedance-seed/seed-1.6":{"id":"bytedance-seed/seed-1.6","name":"ByteDance Seed: Seed 1.6","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-09","last_updated":"2025-09","modalities":{"input":["image","text","video"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"output":32768},"cost":{"input":0.25,"output":2}},"bytedance-seed/seed-2.0-lite":{"id":"bytedance-seed/seed-2.0-lite","name":"ByteDance Seed: Seed-2.0-Lite","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-03-10","last_updated":"2026-03-15","modalities":{"input":["image","text","video"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":131072},"cost":{"input":0.25,"output":2}},"nex-agi/deepseek-v3.1-nex-n1":{"id":"nex-agi/deepseek-v3.1-nex-n1","name":"Nex AGI: DeepSeek V3.1 Nex N1","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2025-01-01","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":163840},"cost":{"input":0.27,"output":1}},"tencent/hy3-preview":{"id":"tencent/hy3-preview","name":"Tencent: Hy3 Preview","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-04-22","last_updated":"2026-05-16","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"output":262144},"cost":{"input":0.066,"output":0.26,"cache_read":0.029}},"tencent/hunyuan-a13b-instruct":{"id":"tencent/hunyuan-a13b-instruct","name":"Tencent: Hunyuan A13B Instruct","attachment":false,"reasoning":true,"tool_call":false,"temperature":true,"release_date":"2025-06-30","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":131072},"cost":{"input":0.14,"output":0.57}},"ibm-granite/granite-4.1-8b":{"id":"ibm-granite/granite-4.1-8b","name":"IBM: Granite 4.1 8B","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2026-04-30","last_updated":"2026-05-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":131072},"cost":{"input":0.05,"output":0.1,"cache_read":0.05}},"ibm-granite/granite-4.0-h-micro":{"id":"ibm-granite/granite-4.0-h-micro","name":"IBM: Granite 4.0 Micro","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-10-20","last_updated":"2026-03-15","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131000,"output":32768},"cost":{"input":0.017,"output":0.11}},"stepfun/step-3.5-flash":{"id":"stepfun/step-3.5-flash","name":"StepFun: Step 3.5 Flash","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-01-29","last_updated":"2026-01-29","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"output":256000},"cost":{"input":0.1,"output":0.3,"cache_read":0.02}},"aion-labs/aion-2.0":{"id":"aion-labs/aion-2.0","name":"AionLabs: Aion-2.0","attachment":false,"reasoning":true,"tool_call":false,"temperature":true,"release_date":"2026-02-24","last_updated":"2026-03-15","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":32768},"cost":{"input":0.8,"output":1.6}},"aion-labs/aion-1.0":{"id":"aion-labs/aion-1.0","name":"AionLabs: Aion-1.0","attachment":false,"reasoning":true,"tool_call":false,"temperature":true,"release_date":"2025-02-05","last_updated":"2026-03-15","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":32768},"cost":{"input":4,"output":8}},"aion-labs/aion-rp-llama-3.1-8b":{"id":"aion-labs/aion-rp-llama-3.1-8b","name":"AionLabs: Aion-RP 1.0 (8B)","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-02-05","last_updated":"2026-03-15","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":32768,"output":32768},"cost":{"input":0.8,"output":1.6}},"aion-labs/aion-1.0-mini":{"id":"aion-labs/aion-1.0-mini","name":"AionLabs: Aion-1.0-Mini","attachment":false,"reasoning":true,"tool_call":false,"temperature":true,"release_date":"2025-02-05","last_updated":"2026-03-15","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":32768},"cost":{"input":0.7,"output":1.4}},"amazon/nova-pro-v1":{"id":"amazon/nova-pro-v1","name":"Amazon: Nova Pro 1.0","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2024-12-03","last_updated":"2024-12-03","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":300000,"output":5120},"cost":{"input":0.8,"output":3.2}},"amazon/nova-lite-v1":{"id":"amazon/nova-lite-v1","name":"Amazon: Nova Lite 1.0","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2024-12-06","last_updated":"2026-03-15","modalities":{"input":["image","text"],"output":["text"]},"open_weights":false,"limit":{"context":300000,"output":5120},"cost":{"input":0.06,"output":0.24}},"amazon/nova-micro-v1":{"id":"amazon/nova-micro-v1","name":"Amazon: Nova Micro 1.0","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2024-12-06","last_updated":"2026-03-15","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":5120},"cost":{"input":0.035,"output":0.14}},"amazon/nova-premier-v1":{"id":"amazon/nova-premier-v1","name":"Amazon: Nova Premier 1.0","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2025-11-01","last_updated":"2026-03-15","modalities":{"input":["image","text"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":32000},"cost":{"input":2.5,"output":12.5}},"amazon/nova-2-lite-v1":{"id":"amazon/nova-2-lite-v1","name":"Amazon: Nova 2 Lite","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2024-12-01","last_updated":"2026-03-15","modalities":{"input":["image","pdf","text","video"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":65535},"cost":{"input":0.3,"output":2.5}},"inclusionai/ling-2.6-flash":{"id":"inclusionai/ling-2.6-flash","name":"inclusionAI: Ling-2.6 Flash","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2026-04-21","last_updated":"2026-05-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"output":32768},"cost":{"input":0.08,"output":0.24,"cache_read":0.016}},"inclusionai/ling-2.6-1t":{"id":"inclusionai/ling-2.6-1t","name":"inclusionAI: Ling-2.6-1T","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2026-04-23","last_updated":"2026-05-16","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"output":32768},"cost":{"input":0.3,"output":2.5,"cache_read":0.06}},"inclusionai/ring-2.6-1t":{"id":"inclusionai/ring-2.6-1t","name":"inclusionAI: Ring-2.6-1T","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-05-08","last_updated":"2026-05-16","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"output":65536},"cost":{"input":0.075,"output":0.625,"cache_read":0.015}},"morph/morph-v3-fast":{"id":"morph/morph-v3-fast","name":"Morph: Morph V3 Fast","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2024-08-15","last_updated":"2024-08-15","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":81920,"output":38000},"cost":{"input":0.8,"output":1.2}},"morph/morph-v3-large":{"id":"morph/morph-v3-large","name":"Morph: Morph V3 Large","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2024-08-15","last_updated":"2024-08-15","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"output":131072},"cost":{"input":0.9,"output":1.9}},"undi95/remm-slerp-l2-13b":{"id":"undi95/remm-slerp-l2-13b","name":"ReMM SLERP 13B","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2023-07-22","last_updated":"2026-03-15","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":6144,"output":4096},"cost":{"input":0.45,"output":0.65}},"google/gemini-2.0-flash-lite-001":{"id":"google/gemini-2.0-flash-lite-001","name":"Google: Gemini 2.0 Flash Lite","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2024-12-11","last_updated":"2026-03-15","modalities":{"input":["audio","image","pdf","text","video"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":8192},"cost":{"input":0.075,"output":0.3}},"google/gemini-2.5-flash-image":{"id":"google/gemini-2.5-flash-image","name":"Google: Nano Banana (Gemini 2.5 Flash Image)","attachment":true,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-10-08","last_updated":"2026-03-15","modalities":{"input":["image","text"],"output":["image","text"]},"open_weights":false,"limit":{"context":32768,"output":32768},"cost":{"input":0.3,"output":2.5}},"google/gemini-2.0-flash-001":{"id":"google/gemini-2.0-flash-001","name":"Google: Gemini 2.0 Flash","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2024-12-11","last_updated":"2026-03-15","modalities":{"input":["audio","image","pdf","text","video"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":8192},"cost":{"input":0.1,"output":0.4,"cache_read":0.025,"cache_write":0.083333}},"google/lyria-3-clip-preview":{"id":"google/lyria-3-clip-preview","name":"Google: Lyria 3 Clip Preview","attachment":true,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2026-03-30","last_updated":"2026-04-11","modalities":{"input":["image","text"],"output":["audio","text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":0,"output":0}},"google/gemini-2.5-pro-preview":{"id":"google/gemini-2.5-pro-preview","name":"Google: Gemini 2.5 Pro Preview 06-05","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-06-05","last_updated":"2026-03-15","modalities":{"input":["audio","image","pdf","text"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":1.25,"output":10,"reasoning":10,"cache_read":0.125,"cache_write":0.375}},"google/gemini-3.1-flash-lite-preview":{"id":"google/gemini-3.1-flash-lite-preview","name":"Google: Gemini 3.1 Flash Lite Preview","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-03-03","last_updated":"2026-03-15","modalities":{"input":["audio","image","pdf","text","video"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":0.25,"output":1.5,"reasoning":1.5}},"google/gemma-4-31b-it":{"id":"google/gemma-4-31b-it","name":"Google: Gemma 4 31B","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-04-02","last_updated":"2026-04-11","modalities":{"input":["image","text","video"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":131072},"cost":{"input":0.14,"output":0.4}},"google/gemini-3-flash-preview":{"id":"google/gemini-3-flash-preview","name":"Google: Gemini 3 Flash Preview","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-12-17","last_updated":"2026-03-15","modalities":{"input":["audio","image","pdf","text","video"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":0.5,"output":3,"reasoning":3,"cache_read":0.05,"cache_write":0.083333}},"google/gemini-3.1-pro-preview-customtools":{"id":"google/gemini-3.1-pro-preview-customtools","name":"Google: Gemini 3.1 Pro Preview Custom Tools","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-02-26","last_updated":"2026-03-15","modalities":{"input":["audio","image","pdf","text","video"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":2,"output":12,"reasoning":12}},"google/gemini-2.5-pro-preview-05-06":{"id":"google/gemini-2.5-pro-preview-05-06","name":"Google: Gemini 2.5 Pro Preview 05-06","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-05-06","last_updated":"2026-03-15","modalities":{"input":["audio","image","pdf","text","video"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65535},"cost":{"input":1.25,"output":10,"reasoning":10,"cache_read":0.125,"cache_write":0.375}},"google/gemma-3n-e4b-it":{"id":"google/gemma-3n-e4b-it","name":"Google: Gemma 3n 4B","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-05-20","last_updated":"2025-05-20","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":32768,"output":6554},"cost":{"input":0.02,"output":0.04}},"google/gemini-2.5-pro":{"id":"google/gemini-2.5-pro","name":"Google: Gemini 2.5 Pro","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-03-20","last_updated":"2026-03-15","modalities":{"input":["audio","image","pdf","text","video"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":1.25,"output":10,"reasoning":10,"cache_read":0.125,"cache_write":0.375}},"google/gemini-3.1-pro-preview":{"id":"google/gemini-3.1-pro-preview","name":"Google: Gemini 3.1 Pro Preview","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-02-19","last_updated":"2026-03-15","modalities":{"input":["audio","image","pdf","text","video"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":2,"output":12,"reasoning":12}},"google/gemma-3-27b-it":{"id":"google/gemma-3-27b-it","name":"Google: Gemma 3 27B","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2025-03-12","last_updated":"2026-03-15","modalities":{"input":["image","text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":65536},"cost":{"input":0.03,"output":0.11,"cache_read":0.02}},"google/gemini-3.1-flash-lite":{"id":"google/gemini-3.1-flash-lite","name":"Google: Gemini 3.1 Flash Lite","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-05-07","last_updated":"2026-05-16","modalities":{"input":["audio","image","pdf","text","video"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":0.25,"output":1.5,"reasoning":1.5,"cache_read":0.025,"cache_write":0.08333}},"google/gemini-2.5-flash-lite":{"id":"google/gemini-2.5-flash-lite","name":"Google: Gemini 2.5 Flash Lite","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-06-17","last_updated":"2026-03-15","modalities":{"input":["audio","image","pdf","text","video"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65535},"cost":{"input":0.1,"output":0.4,"reasoning":0.4,"cache_read":0.01,"cache_write":0.083333}},"google/gemini-2.5-flash":{"id":"google/gemini-2.5-flash","name":"Google: Gemini 2.5 Flash","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-07-17","last_updated":"2026-03-15","modalities":{"input":["audio","image","pdf","text","video"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65535},"cost":{"input":0.3,"output":2.5,"reasoning":2.5,"cache_read":0.03,"cache_write":0.083333}},"google/gemma-3-12b-it":{"id":"google/gemma-3-12b-it","name":"Google: Gemma 3 12B","attachment":true,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-03-13","last_updated":"2026-03-15","modalities":{"input":["image","text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":131072},"cost":{"input":0.04,"output":0.13,"cache_read":0.015}},"google/gemma-4-26b-a4b-it":{"id":"google/gemma-4-26b-a4b-it","name":"Google: Gemma 4 26B A4B","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-04-03","last_updated":"2026-04-11","modalities":{"input":["image","text","video"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.12,"output":0.4}},"google/gemini-2.5-flash-lite-preview-09-2025":{"id":"google/gemini-2.5-flash-lite-preview-09-2025","name":"Google: Gemini 2.5 Flash Lite Preview 09-2025","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-09-25","last_updated":"2026-03-15","modalities":{"input":["audio","image","pdf","text","video"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":0.1,"output":0.4,"reasoning":0.4,"cache_read":0.01,"cache_write":0.083333}},"google/gemma-3-4b-it":{"id":"google/gemma-3-4b-it","name":"Google: Gemma 3 4B","attachment":true,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-03-13","last_updated":"2026-03-15","modalities":{"input":["image","text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":19200},"cost":{"input":0.04,"output":0.08}},"google/gemini-3.5-flash":{"id":"google/gemini-3.5-flash","name":"Google: Gemini 3.5 Flash","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-05-19","last_updated":"2026-05-27","modalities":{"input":["audio","image","pdf","text","video"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":1.5,"output":9,"reasoning":9,"cache_read":0.15,"cache_write":0.08333}},"google/lyria-3-pro-preview":{"id":"google/lyria-3-pro-preview","name":"Google: Lyria 3 Pro Preview","attachment":true,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2026-03-30","last_updated":"2026-04-11","modalities":{"input":["image","text"],"output":["audio","text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":0,"output":0}},"google/gemma-2-27b-it":{"id":"google/gemma-2-27b-it","name":"Google: Gemma 2 27B","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2024-06-24","last_updated":"2024-06-24","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":8192,"output":2048},"cost":{"input":0.65,"output":0.65}},"google/gemini-3-pro-image-preview":{"id":"google/gemini-3-pro-image-preview","name":"Google: Nano Banana Pro (Gemini 3 Pro Image Preview)","attachment":true,"reasoning":true,"tool_call":false,"temperature":true,"release_date":"2025-11-20","last_updated":"2026-03-15","modalities":{"input":["image","text"],"output":["image","text"]},"open_weights":false,"limit":{"context":65536,"output":32768},"cost":{"input":2,"output":12,"reasoning":12}},"google/gemini-3.1-flash-image-preview":{"id":"google/gemini-3.1-flash-image-preview","name":"Google: Nano Banana 2 (Gemini 3.1 Flash Image Preview)","attachment":true,"reasoning":true,"tool_call":false,"temperature":true,"release_date":"2026-02-26","last_updated":"2026-03-15","modalities":{"input":["image","text"],"output":["image","text"]},"open_weights":false,"limit":{"context":65536,"output":65536},"cost":{"input":0.5,"output":3}},"openai/gpt-4o-2024-08-06":{"id":"openai/gpt-4o-2024-08-06","name":"OpenAI: GPT-4o (2024-08-06)","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2024-08-06","last_updated":"2026-03-15","modalities":{"input":["image","pdf","text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":2.5,"output":10,"cache_read":1.25}},"openai/gpt-5-pro":{"id":"openai/gpt-5-pro","name":"OpenAI: GPT-5 Pro","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2025-10-06","last_updated":"2026-03-15","modalities":{"input":["image","pdf","text"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":15,"output":120}},"openai/gpt-5-mini":{"id":"openai/gpt-5-mini","name":"OpenAI: GPT-5 Mini","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2025-08-07","last_updated":"2026-03-15","modalities":{"input":["image","pdf","text"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":0.25,"output":2,"cache_read":0.025}},"openai/o3-mini-high":{"id":"openai/o3-mini-high","name":"OpenAI: o3 Mini High","attachment":true,"reasoning":false,"tool_call":true,"temperature":false,"release_date":"2025-01-31","last_updated":"2026-03-15","modalities":{"input":["pdf","text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":1.1,"output":4.4,"cache_read":0.55}},"openai/o4-mini-high":{"id":"openai/o4-mini-high","name":"OpenAI: o4 Mini High","attachment":true,"reasoning":true,"tool_call":true,"release_date":"2025-04-17","last_updated":"2026-03-15","modalities":{"input":["image","pdf","text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":1.1,"output":4.4}},"openai/gpt-5-chat":{"id":"openai/gpt-5-chat","name":"OpenAI: GPT-5 Chat","attachment":true,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2025-08-07","last_updated":"2026-03-15","modalities":{"input":["image","pdf","text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":1.25,"output":10,"cache_read":0.125}},"openai/gpt-4o":{"id":"openai/gpt-4o","name":"OpenAI: GPT-4o","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2024-05-13","last_updated":"2026-03-15","modalities":{"input":["image","pdf","text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":2.5,"output":10,"cache_read":1.25}},"openai/gpt-5.2":{"id":"openai/gpt-5.2","name":"OpenAI: GPT-5.2","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2025-12-11","last_updated":"2026-03-15","modalities":{"input":["image","pdf","text"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":1.75,"output":14,"cache_read":0.175}},"openai/gpt-4o-mini-2024-07-18":{"id":"openai/gpt-4o-mini-2024-07-18","name":"OpenAI: GPT-4o-mini (2024-07-18)","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2024-07-18","last_updated":"2026-03-15","modalities":{"input":["image","pdf","text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":0.15,"output":0.6}},"openai/gpt-5-codex":{"id":"openai/gpt-5-codex","name":"OpenAI: GPT-5 Codex","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2025-09-15","last_updated":"2025-09-15","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":1.25,"output":10,"cache_read":0.125}},"openai/o3":{"id":"openai/o3","name":"OpenAI: o3","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2025-04-16","last_updated":"2026-03-15","modalities":{"input":["image","pdf","text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":2,"output":8,"cache_read":0.5}},"openai/gpt-5-image":{"id":"openai/gpt-5-image","name":"OpenAI: GPT-5 Image","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-10-14","last_updated":"2026-03-15","modalities":{"input":["image","pdf","text"],"output":["image","text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":10,"output":10}},"openai/gpt-4o-2024-11-20":{"id":"openai/gpt-4o-2024-11-20","name":"OpenAI: GPT-4o (2024-11-20)","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2024-11-20","last_updated":"2026-03-15","modalities":{"input":["image","pdf","text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":2.5,"output":10,"cache_read":1.25}},"openai/gpt-5":{"id":"openai/gpt-5","name":"OpenAI: GPT-5","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2025-08-07","last_updated":"2026-03-15","modalities":{"input":["image","pdf","text"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":1.25,"output":10,"cache_read":0.125}},"openai/gpt-5.4-pro":{"id":"openai/gpt-5.4-pro","name":"OpenAI: GPT-5.4 Pro","attachment":true,"reasoning":true,"tool_call":true,"release_date":"2026-03-06","last_updated":"2026-03-15","modalities":{"input":["image","pdf","text"],"output":["text"]},"open_weights":false,"limit":{"context":1050000,"output":128000},"cost":{"input":30,"output":180}},"openai/gpt-4.1-mini":{"id":"openai/gpt-4.1-mini","name":"OpenAI: GPT-4.1 Mini","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2025-04-14","last_updated":"2026-03-15","modalities":{"input":["image","pdf","text"],"output":["text"]},"open_weights":false,"limit":{"context":1047576,"output":32768},"cost":{"input":0.4,"output":1.6,"cache_read":0.1}},"openai/gpt-5.2-pro":{"id":"openai/gpt-5.2-pro","name":"OpenAI: GPT-5.2 Pro","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2025-12-11","last_updated":"2026-03-15","modalities":{"input":["image","pdf","text"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":21,"output":168}},"openai/o3-pro":{"id":"openai/o3-pro","name":"OpenAI: o3 Pro","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2025-04-16","last_updated":"2026-03-15","modalities":{"input":["image","pdf","text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":20,"output":80}},"openai/gpt-4o-mini-search-preview":{"id":"openai/gpt-4o-mini-search-preview","name":"OpenAI: GPT-4o-mini Search Preview","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2025-01","last_updated":"2025-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":0.15,"output":0.6}},"openai/o4-mini":{"id":"openai/o4-mini","name":"OpenAI: o4 Mini","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2025-04-16","last_updated":"2026-03-15","modalities":{"input":["image","pdf","text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":1.1,"output":4.4,"cache_read":0.275}},"openai/gpt-5.4":{"id":"openai/gpt-5.4","name":"OpenAI: GPT-5.4","attachment":true,"reasoning":true,"tool_call":true,"release_date":"2026-03-06","last_updated":"2026-03-15","modalities":{"input":["image","pdf","text"],"output":["text"]},"open_weights":false,"limit":{"context":1050000,"output":128000},"cost":{"input":2.5,"output":15}},"openai/gpt-5.4-image-2":{"id":"openai/gpt-5.4-image-2","name":"OpenAI: GPT-5.4 Image 2","attachment":true,"reasoning":true,"tool_call":false,"temperature":false,"release_date":"2026-04-21","last_updated":"2026-05-01","modalities":{"input":["image","text","pdf"],"output":["image","text"]},"open_weights":false,"limit":{"context":272000,"output":128000},"cost":{"input":8,"output":15,"cache_read":2}},"openai/o3-mini":{"id":"openai/o3-mini","name":"OpenAI: o3 Mini","attachment":true,"reasoning":false,"tool_call":true,"temperature":false,"release_date":"2024-12-20","last_updated":"2026-03-15","modalities":{"input":["pdf","text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":1.1,"output":4.4,"cache_read":0.55}},"openai/gpt-5.5":{"id":"openai/gpt-5.5","name":"OpenAI: GPT-5.5","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2026-04-24","last_updated":"2026-05-01","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1050000,"output":128000},"cost":{"input":5,"output":30,"cache_read":0.5}},"openai/gpt-3.5-turbo-16k":{"id":"openai/gpt-3.5-turbo-16k","name":"OpenAI: GPT-3.5 Turbo 16k","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2023-08-28","last_updated":"2026-03-15","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":16385,"output":4096},"cost":{"input":3,"output":4}},"openai/gpt-5.1":{"id":"openai/gpt-5.1","name":"OpenAI: GPT-5.1","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2025-11-13","last_updated":"2026-03-15","modalities":{"input":["image","pdf","text"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":1.25,"output":10,"cache_read":0.125}},"openai/gpt-5-nano":{"id":"openai/gpt-5-nano","name":"OpenAI: GPT-5 Nano","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2025-08-07","last_updated":"2026-03-15","modalities":{"input":["image","pdf","text"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":0.05,"output":0.4,"cache_read":0.005}},"openai/gpt-oss-120b":{"id":"openai/gpt-oss-120b","name":"OpenAI: gpt-oss-120b","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":26215},"cost":{"input":0.039,"output":0.19}},"openai/gpt-4o-mini":{"id":"openai/gpt-4o-mini","name":"OpenAI: GPT-4o-mini","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2024-07-18","last_updated":"2026-03-15","modalities":{"input":["image","pdf","text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":0.15,"output":0.6,"cache_read":0.075}},"openai/gpt-5.1-codex-max":{"id":"openai/gpt-5.1-codex-max","name":"OpenAI: GPT-5.1-Codex-Max","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2025-11-13","last_updated":"2025-11-13","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":1.25,"output":10,"cache_read":0.125}},"openai/gpt-5.1-codex-mini":{"id":"openai/gpt-5.1-codex-mini","name":"OpenAI: GPT-5.1-Codex-Mini","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2025-11-13","last_updated":"2025-11-13","modalities":{"input":["image","text"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":100000},"cost":{"input":0.25,"output":2,"cache_read":0.025}},"openai/o1-pro":{"id":"openai/o1-pro","name":"OpenAI: o1-pro","attachment":true,"reasoning":true,"tool_call":false,"temperature":false,"release_date":"2025-03-19","last_updated":"2026-03-15","modalities":{"input":["image","pdf","text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":150,"output":600}},"openai/gpt-chat-latest":{"id":"openai/gpt-chat-latest","name":"OpenAI: GPT Chat Latest","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"release_date":"2026-05-05","last_updated":"2026-05-07","modalities":{"input":["image","pdf","text"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":5,"output":30,"cache_read":0.5}},"openai/gpt-4-1106-preview":{"id":"openai/gpt-4-1106-preview","name":"OpenAI: GPT-4 Turbo (older v1106)","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2023-11-06","last_updated":"2026-03-15","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":4096},"cost":{"input":10,"output":30}},"openai/gpt-oss-20b":{"id":"openai/gpt-oss-20b","name":"OpenAI: gpt-oss-20b","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":26215},"cost":{"input":0.03,"output":0.14}},"openai/gpt-4-0314":{"id":"openai/gpt-4-0314","name":"OpenAI: GPT-4 (older v0314)","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2023-05-28","last_updated":"2026-03-15","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":8191,"output":4096},"cost":{"input":30,"output":60}},"openai/gpt-4-turbo-preview":{"id":"openai/gpt-4-turbo-preview","name":"OpenAI: GPT-4 Turbo Preview","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2024-01-25","last_updated":"2026-03-15","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":4096},"cost":{"input":10,"output":30}},"openai/o3-deep-research":{"id":"openai/o3-deep-research","name":"OpenAI: o3 Deep Research","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2024-06-26","last_updated":"2026-03-15","modalities":{"input":["image","pdf","text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":10,"output":40,"cache_read":2.5}},"openai/gpt-audio":{"id":"openai/gpt-audio","name":"OpenAI: GPT Audio","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2026-01-20","last_updated":"2026-03-15","modalities":{"input":["audio","text"],"output":["audio","text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":2.5,"output":10}},"openai/gpt-5-image-mini":{"id":"openai/gpt-5-image-mini","name":"OpenAI: GPT-5 Image Mini","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-10-16","last_updated":"2026-03-15","modalities":{"input":["image","pdf","text"],"output":["image","text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":2.5,"output":2}},"openai/gpt-4.1":{"id":"openai/gpt-4.1","name":"OpenAI: GPT-4.1","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2025-04-14","last_updated":"2026-03-15","modalities":{"input":["image","pdf","text"],"output":["text"]},"open_weights":false,"limit":{"context":1047576,"output":32768},"cost":{"input":2,"output":8,"cache_read":0.5}},"openai/gpt-5.4-nano":{"id":"openai/gpt-5.4-nano","name":"OpenAI: GPT-5.4 Nano","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2026-03-17","last_updated":"2026-04-11","modalities":{"input":["image","pdf","text"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":0.2,"output":1.25,"cache_read":0.02}},"openai/gpt-audio-mini":{"id":"openai/gpt-audio-mini","name":"OpenAI: GPT Audio Mini","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2026-01-20","last_updated":"2026-03-15","modalities":{"input":["audio","text"],"output":["audio","text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":0.6,"output":2.4}},"openai/gpt-5.3-codex":{"id":"openai/gpt-5.3-codex","name":"OpenAI: GPT-5.3-Codex","attachment":true,"reasoning":true,"tool_call":true,"release_date":"2026-02-25","last_updated":"2026-03-15","modalities":{"input":["image","text"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":1.75,"output":14}},"openai/gpt-5.5-pro":{"id":"openai/gpt-5.5-pro","name":"OpenAI: GPT-5.5 Pro","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2026-04-24","last_updated":"2026-05-01","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1050000,"output":128000},"cost":{"input":30,"output":180}},"openai/gpt-4o-audio-preview":{"id":"openai/gpt-4o-audio-preview","name":"OpenAI: GPT-4o Audio","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2025-08-15","last_updated":"2026-03-15","modalities":{"input":["audio","text"],"output":["audio","text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":2.5,"output":10}},"openai/o4-mini-deep-research":{"id":"openai/o4-mini-deep-research","name":"OpenAI: o4 Mini Deep Research","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2024-06-26","last_updated":"2026-03-15","modalities":{"input":["image","pdf","text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":2,"output":8,"cache_read":0.5}},"openai/gpt-3.5-turbo":{"id":"openai/gpt-3.5-turbo","name":"OpenAI: GPT-3.5 Turbo","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2023-03-01","last_updated":"2023-11-06","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":16385,"output":4096},"cost":{"input":0.5,"output":1.5}},"openai/gpt-5.2-chat":{"id":"openai/gpt-5.2-chat","name":"OpenAI: GPT-5.2 Chat","attachment":true,"reasoning":false,"tool_call":true,"temperature":false,"release_date":"2025-12-11","last_updated":"2026-03-15","modalities":{"input":["image","pdf","text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":1.75,"output":14,"cache_read":0.175}},"openai/gpt-3.5-turbo-instruct":{"id":"openai/gpt-3.5-turbo-instruct","name":"OpenAI: GPT-3.5 Turbo Instruct","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2023-03-01","last_updated":"2023-09-21","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":4095,"output":4096},"cost":{"input":1.5,"output":2}},"openai/gpt-5.2-codex":{"id":"openai/gpt-5.2-codex","name":"OpenAI: GPT-5.2-Codex","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2026-01-14","last_updated":"2026-01-14","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":1.75,"output":14,"cache_read":0.175}},"openai/gpt-5.1-codex":{"id":"openai/gpt-5.1-codex","name":"OpenAI: GPT-5.1-Codex","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2025-11-13","last_updated":"2025-11-13","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":1.25,"output":10,"cache_read":0.125}},"openai/gpt-4o-2024-05-13":{"id":"openai/gpt-4o-2024-05-13","name":"OpenAI: GPT-4o (2024-05-13)","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2024-05-13","last_updated":"2026-03-15","modalities":{"input":["image","pdf","text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":4096},"cost":{"input":5,"output":15}},"openai/gpt-5.1-chat":{"id":"openai/gpt-5.1-chat","name":"OpenAI: GPT-5.1 Chat","attachment":true,"reasoning":false,"tool_call":true,"temperature":false,"release_date":"2025-11-13","last_updated":"2026-03-15","modalities":{"input":["image","pdf","text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":1.25,"output":10,"cache_read":0.125}},"openai/gpt-oss-safeguard-20b":{"id":"openai/gpt-oss-safeguard-20b","name":"OpenAI: gpt-oss-safeguard-20b","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-10-29","last_updated":"2025-10-29","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":65536},"cost":{"input":0.075,"output":0.3,"cache_read":0.037}},"openai/gpt-3.5-turbo-0613":{"id":"openai/gpt-3.5-turbo-0613","name":"OpenAI: GPT-3.5 Turbo (older v0613)","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2023-06-13","last_updated":"2023-06-13","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":4095,"output":4096},"cost":{"input":1,"output":2}},"openai/gpt-5.4-mini":{"id":"openai/gpt-5.4-mini","name":"OpenAI: GPT-5.4 Mini","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2026-03-17","last_updated":"2026-04-11","modalities":{"input":["image","pdf","text"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":0.75,"output":4.5,"cache_read":0.075}},"openai/gpt-4-turbo":{"id":"openai/gpt-4-turbo","name":"OpenAI: GPT-4 Turbo","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2023-09-13","last_updated":"2024-04-09","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":4096},"cost":{"input":10,"output":30}},"openai/o1":{"id":"openai/o1","name":"OpenAI: o1","attachment":true,"reasoning":false,"tool_call":true,"temperature":false,"release_date":"2024-12-05","last_updated":"2026-03-15","modalities":{"input":["image","pdf","text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":15,"output":60,"cache_read":7.5}},"openai/gpt-4":{"id":"openai/gpt-4","name":"OpenAI: GPT-4","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2023-03-14","last_updated":"2024-04-09","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":8191,"output":4096},"cost":{"input":30,"output":60}},"openai/gpt-5.3-chat":{"id":"openai/gpt-5.3-chat","name":"OpenAI: GPT-5.3 Chat","attachment":true,"reasoning":false,"tool_call":true,"release_date":"2026-03-04","last_updated":"2026-03-15","modalities":{"input":["image","pdf","text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":1.75,"output":14}},"openai/gpt-4o-search-preview":{"id":"openai/gpt-4o-search-preview","name":"OpenAI: GPT-4o Search Preview","attachment":false,"reasoning":false,"tool_call":false,"release_date":"2025-03-13","last_updated":"2026-03-15","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":2.5,"output":10}},"openai/gpt-4.1-nano":{"id":"openai/gpt-4.1-nano","name":"OpenAI: GPT-4.1 Nano","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2025-04-14","last_updated":"2026-03-15","modalities":{"input":["image","pdf","text"],"output":["text"]},"open_weights":false,"limit":{"context":1047576,"output":32768},"cost":{"input":0.1,"output":0.4,"cache_read":0.025}},"poolside/laguna-m.1:free":{"id":"poolside/laguna-m.1:free","name":"Poolside: Laguna M.1 (free)","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-04-28","last_updated":"2026-05-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":8192},"cost":{"input":0,"output":0}},"poolside/laguna-xs.2:free":{"id":"poolside/laguna-xs.2:free","name":"Poolside: Laguna XS.2 (free)","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-04-28","last_updated":"2026-05-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":8192},"cost":{"input":0,"output":0}},"bytedance/ui-tars-1.5-7b":{"id":"bytedance/ui-tars-1.5-7b","name":"ByteDance: UI-TARS 7B ","attachment":true,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-07-23","last_updated":"2026-03-15","modalities":{"input":["image","text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":2048},"cost":{"input":0.1,"output":0.2}},"~anthropic/claude-opus-latest":{"id":"~anthropic/claude-opus-latest","name":"Anthropic: Claude Opus Latest","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2026-04-16","last_updated":"2026-05-01","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25}},"~anthropic/claude-haiku-latest":{"id":"~anthropic/claude-haiku-latest","name":"Anthropic: Claude Haiku Latest","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-04-27","last_updated":"2026-05-01","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":1,"output":5,"cache_read":0.1,"cache_write":1.25}},"~anthropic/claude-sonnet-latest":{"id":"~anthropic/claude-sonnet-latest","name":"Anthropic: Claude Sonnet Latest","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-04-27","last_updated":"2026-05-01","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75}},"minimax/minimax-m1":{"id":"minimax/minimax-m1","name":"MiniMax: MiniMax M1","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-06-17","last_updated":"2025-06-17","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1000000,"output":40000},"cost":{"input":0.4,"output":2.2}},"minimax/minimax-01":{"id":"minimax/minimax-01","name":"MiniMax: MiniMax-01","attachment":true,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-01-15","last_updated":"2025-01-15","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":1000192,"output":1000192},"cost":{"input":0.2,"output":1.1}},"minimax/minimax-m2.1":{"id":"minimax/minimax-m2.1","name":"MiniMax: MiniMax M2.1","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-12-23","last_updated":"2025-12-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":196608,"output":39322},"cost":{"input":0.27,"output":0.95,"cache_read":0.03}},"minimax/minimax-m2.7":{"id":"minimax/minimax-m2.7","name":"MiniMax: MiniMax M2.7","family":"minimax-m2.7","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-03-18","last_updated":"2026-03-18","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0.3,"output":1.2,"cache_read":0.06}},"minimax/minimax-m2":{"id":"minimax/minimax-m2","name":"MiniMax: MiniMax M2","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-10-23","last_updated":"2026-03-15","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":196608,"output":196608},"cost":{"input":0.255,"output":1,"cache_read":0.03}},"minimax/minimax-m2.5":{"id":"minimax/minimax-m2.5","name":"MiniMax: MiniMax M2.5","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-02-12","last_updated":"2026-03-15","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":196608,"output":196608},"cost":{"input":0.25,"output":1.2,"cache_read":0.029}},"minimax/minimax-m2-her":{"id":"minimax/minimax-m2-her","name":"MiniMax: MiniMax M2-her","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2026-01-23","last_updated":"2026-03-15","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":65536,"output":2048},"cost":{"input":0.3,"output":1.2}},"allenai/olmo-3-32b-think":{"id":"allenai/olmo-3-32b-think","name":"AllenAI: Olmo 3 32B Think","attachment":false,"reasoning":true,"tool_call":false,"temperature":true,"release_date":"2025-11-22","last_updated":"2026-03-15","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":65536,"output":65536},"cost":{"input":0.15,"output":0.5}}}},"regolo-ai":{"id":"regolo-ai","env":["REGOLO_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://api.regolo.ai/v1","name":"Regolo AI","doc":"https://docs.regolo.ai/","models":{"mistral-small3.2":{"id":"mistral-small3.2","name":"Mistral Small 3.2","family":"mistral-small","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-01-31","last_updated":"2025-01-31","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":120000,"output":120000},"cost":{"input":0.5,"output":2.2}},"qwen3-reranker-4b":{"id":"qwen3-reranker-4b","name":"Qwen3-Reranker-4B","family":"qwen","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2026-02-01","last_updated":"2026-02-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":32768,"output":8192},"cost":{"input":0.12,"output":0.12}},"qwen3.5-122b":{"id":"qwen3.5-122b","name":"Qwen3.5-122B","family":"qwen","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-02-01","last_updated":"2026-02-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":16384},"cost":{"input":0.9,"output":3.6}},"mistral-small-4-119b":{"id":"mistral-small-4-119b","name":"Mistral Small 4 119B","family":"mistral-small","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-03-15","last_updated":"2026-03-15","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":16384},"cost":{"input":0.75,"output":3}},"gpt-oss-120b":{"id":"gpt-oss-120b","name":"GPT-OSS-120B","family":"gpt-oss","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":1,"output":4.2}},"qwen3-coder-next":{"id":"qwen3-coder-next","name":"Qwen3-Coder-Next","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-03-01","last_updated":"2026-03-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":16384},"cost":{"input":0.3,"output":1.2}},"gpt-oss-20b":{"id":"gpt-oss-20b","name":"GPT-OSS-20B","family":"gpt-oss","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-03-01","last_updated":"2026-03-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":16384},"cost":{"input":0.4,"output":1.8}},"qwen3.5-9b":{"id":"qwen3.5-9b","name":"Qwen3.5-9B","family":"qwen","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-02-01","last_updated":"2026-02-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":8192},"cost":{"input":0.15,"output":0.6}},"qwen3-embedding-8b":{"id":"qwen3-embedding-8b","name":"Qwen3-Embedding-8B","family":"qwen","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2026-02-01","last_updated":"2026-02-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":32768,"output":8192},"cost":{"input":0.1,"output":0.1}},"qwen-image":{"id":"qwen-image","name":"Qwen-Image","family":"qwen","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2026-03-01","last_updated":"2026-03-01","modalities":{"input":["text"],"output":["image"]},"open_weights":false,"limit":{"context":8192,"output":4096},"cost":{"input":0.5,"output":2}},"minimax-m2.5":{"id":"minimax-m2.5","name":"MiniMax 2.5","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-03-10","last_updated":"2026-03-10","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":190000,"output":64000},"cost":{"input":0.8,"output":3.5}},"llama-3.1-8b-instruct":{"id":"llama-3.1-8b-instruct","name":"Llama 3.1 8B Instruct","family":"llama","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2025-04-07","last_updated":"2025-04-07","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":120000,"output":120000},"cost":{"input":0.05,"output":0.25}},"llama-3.3-70b-instruct":{"id":"llama-3.3-70b-instruct","name":"Llama 3.3 70B Instruct","family":"llama","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2025-04-28","last_updated":"2025-04-28","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":0.6,"output":2.7}}}},"google-vertex":{"id":"google-vertex","env":["GOOGLE_VERTEX_PROJECT","GOOGLE_VERTEX_LOCATION","GOOGLE_APPLICATION_CREDENTIALS"],"npm":"@ai-sdk/google-vertex","name":"Vertex","doc":"https://cloud.google.com/vertex-ai/generative-ai/docs/models","models":{"gemini-2.5-flash-lite-preview-06-17":{"id":"gemini-2.5-flash-lite-preview-06-17","name":"Gemini 2.5 Flash Lite Preview 06-17","family":"gemini-flash-lite","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-06-17","last_updated":"2025-06-17","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":65536,"output":65536},"cost":{"input":0.1,"output":0.4,"cache_read":0.025}},"claude-opus-4-7@default":{"id":"claude-opus-4-7@default","name":"Claude Opus 4.7","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2026-01-31","release_date":"2026-04-16","last_updated":"2026-04-16","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"provider":{"npm":"@ai-sdk/google-vertex/anthropic"},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25,"tiers":[{"input":10,"output":37.5,"cache_read":1,"cache_write":12.5,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":10,"output":37.5,"cache_read":1,"cache_write":12.5}}},"claude-haiku-4-5@20251001":{"id":"claude-haiku-4-5@20251001","name":"Claude Haiku 4.5","family":"claude-haiku","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-02-28","release_date":"2025-10-15","last_updated":"2025-10-15","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"provider":{"npm":"@ai-sdk/google-vertex/anthropic"},"cost":{"input":1,"output":5,"cache_read":0.1,"cache_write":1.25}},"claude-sonnet-4@20250514":{"id":"claude-sonnet-4@20250514","name":"Claude Sonnet 4","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-05-22","last_updated":"2025-05-22","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"provider":{"npm":"@ai-sdk/google-vertex/anthropic"},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75}},"gemini-3.1-flash-lite-preview":{"id":"gemini-3.1-flash-lite-preview","name":"Gemini 3.1 Flash Lite Preview","family":"gemini-flash-lite","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-03-03","last_updated":"2026-03-03","modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":0.25,"output":1.5,"cache_read":0.025,"input_audio":0.5}},"gemini-2.0-flash-lite":{"id":"gemini-2.0-flash-lite","name":"Gemini 2.0 Flash-Lite","family":"gemini-flash-lite","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-06","release_date":"2024-12-11","last_updated":"2024-12-11","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":8192},"cost":{"input":0.075,"output":0.3}},"gemini-flash-lite-latest":{"id":"gemini-flash-lite-latest","name":"Gemini Flash-Lite Latest","family":"gemini-flash-lite","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-09-25","last_updated":"2025-09-25","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":0.1,"output":0.4,"cache_read":0.025}},"gemini-3-flash-preview":{"id":"gemini-3-flash-preview","name":"Gemini 3 Flash Preview","family":"gemini-flash","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-12-17","last_updated":"2025-12-17","modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":0.5,"output":3,"cache_read":0.05,"input_audio":1}},"claude-opus-4-5@20251101":{"id":"claude-opus-4-5@20251101","name":"Claude Opus 4.5","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-11-01","last_updated":"2025-11-01","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"provider":{"npm":"@ai-sdk/google-vertex/anthropic"},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25}},"claude-opus-4-1@20250805":{"id":"claude-opus-4-1@20250805","name":"Claude Opus 4.1","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":32000},"provider":{"npm":"@ai-sdk/google-vertex/anthropic"},"cost":{"input":15,"output":75,"cache_read":1.5,"cache_write":18.75}},"claude-sonnet-4-5@20250929":{"id":"claude-sonnet-4-5@20250929","name":"Claude Sonnet 4.5","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-07-31","release_date":"2025-09-29","last_updated":"2025-09-29","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"provider":{"npm":"@ai-sdk/google-vertex/anthropic"},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75}},"claude-sonnet-4-6@default":{"id":"claude-sonnet-4-6@default","name":"Claude Sonnet 4.6","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-08-31","release_date":"2026-02-17","last_updated":"2026-03-13","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"provider":{"npm":"@ai-sdk/google-vertex/anthropic"},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75,"tiers":[{"input":6,"output":22.5,"cache_read":0.6,"cache_write":7.5,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":6,"output":22.5,"cache_read":0.6,"cache_write":7.5}}},"gemini-3.1-pro-preview-customtools":{"id":"gemini-3.1-pro-preview-customtools","name":"Gemini 3.1 Pro Preview Custom Tools","family":"gemini-pro","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-02-19","last_updated":"2026-02-19","modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":2,"output":12,"cache_read":0.2,"tiers":[{"input":4,"output":18,"cache_read":0.4,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":4,"output":18,"cache_read":0.4}}},"claude-3-5-sonnet@20241022":{"id":"claude-3-5-sonnet@20241022","name":"Claude Sonnet 3.5 v2","family":"claude-sonnet","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-04-30","release_date":"2024-10-22","last_updated":"2024-10-22","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":8192},"provider":{"npm":"@ai-sdk/google-vertex/anthropic"},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75}},"claude-opus-4-8@default":{"id":"claude-opus-4-8@default","name":"Claude Opus 4.8","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2026-05-28","last_updated":"2026-05-28","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"provider":{"npm":"@ai-sdk/google-vertex/anthropic"},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25,"tiers":[{"input":10,"output":37.5,"cache_read":1,"cache_write":12.5,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":10,"output":37.5,"cache_read":1,"cache_write":12.5}}},"claude-opus-4@20250514":{"id":"claude-opus-4@20250514","name":"Claude Opus 4","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-05-22","last_updated":"2025-05-22","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":32000},"provider":{"npm":"@ai-sdk/google-vertex/anthropic"},"cost":{"input":15,"output":75,"cache_read":1.5,"cache_write":18.75}},"gemini-flash-latest":{"id":"gemini-flash-latest","name":"Gemini Flash Latest","family":"gemini-flash","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-09-25","last_updated":"2025-09-25","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":0.3,"output":2.5,"cache_read":0.075,"cache_write":0.383}},"gemini-2.5-pro":{"id":"gemini-2.5-pro","name":"Gemini 2.5 Pro","family":"gemini-pro","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-03-20","last_updated":"2025-06-05","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":1.25,"output":10,"cache_read":0.125,"tiers":[{"input":2.5,"output":15,"cache_read":0.25,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":2.5,"output":15,"cache_read":0.25}}},"claude-3-7-sonnet@20250219":{"id":"claude-3-7-sonnet@20250219","name":"Claude Sonnet 3.7","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-10-31","release_date":"2025-02-19","last_updated":"2025-02-19","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"provider":{"npm":"@ai-sdk/google-vertex/anthropic"},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75}},"gemini-3.1-pro-preview":{"id":"gemini-3.1-pro-preview","name":"Gemini 3.1 Pro Preview","family":"gemini-pro","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-02-19","last_updated":"2026-02-19","modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":2,"output":12,"cache_read":0.2,"tiers":[{"input":4,"output":18,"cache_read":0.4,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":4,"output":18,"cache_read":0.4}}},"gemini-3.1-flash-lite":{"id":"gemini-3.1-flash-lite","name":"Gemini 3.1 Flash Lite","family":"gemini-flash-lite","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-05-07","last_updated":"2026-05-07","modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":0.25,"output":1.5,"cache_read":0.025,"input_audio":0.5}},"gemini-2.5-flash-lite":{"id":"gemini-2.5-flash-lite","name":"Gemini 2.5 Flash-Lite","family":"gemini-flash-lite","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-06-17","last_updated":"2025-06-17","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":0.1,"output":0.4,"cache_read":0.01,"input_audio":0.3}},"gemini-2.5-flash":{"id":"gemini-2.5-flash","name":"Gemini 2.5 Flash","family":"gemini-flash","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-06-17","last_updated":"2025-06-17","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":0.3,"output":2.5,"cache_read":0.075,"cache_write":0.383}},"gemini-2.5-flash-preview-09-2025":{"id":"gemini-2.5-flash-preview-09-2025","name":"Gemini 2.5 Flash Preview 09-25","family":"gemini-flash","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-09-25","last_updated":"2025-09-25","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":0.3,"output":2.5,"cache_read":0.075,"cache_write":0.383}},"gemini-2.0-flash":{"id":"gemini-2.0-flash","name":"Gemini 2.0 Flash","family":"gemini-flash","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-06","release_date":"2024-12-11","last_updated":"2024-12-11","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":8192},"cost":{"input":0.15,"output":0.6,"cache_read":0.025}},"claude-3-5-haiku@20241022":{"id":"claude-3-5-haiku@20241022","name":"Claude Haiku 3.5","family":"claude-haiku","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-07-31","release_date":"2024-10-22","last_updated":"2024-10-22","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":8192},"provider":{"npm":"@ai-sdk/google-vertex/anthropic"},"cost":{"input":0.8,"output":4,"cache_read":0.08,"cache_write":1}},"gemini-3.5-flash":{"id":"gemini-3.5-flash","name":"Gemini 3.5 Flash","family":"gemini-flash","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-05-19","last_updated":"2026-05-19","modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":1.5,"output":9,"cache_read":0.15,"input_audio":1.5}},"claude-opus-4-6@default":{"id":"claude-opus-4-6@default","name":"Claude Opus 4.6","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-05-31","release_date":"2026-02-05","last_updated":"2026-03-13","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"provider":{"npm":"@ai-sdk/google-vertex/anthropic"},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25,"tiers":[{"input":10,"output":37.5,"cache_read":1,"cache_write":12.5,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":10,"output":37.5,"cache_read":1,"cache_write":12.5}}},"gemini-3-pro-preview":{"id":"gemini-3-pro-preview","name":"Gemini 3 Pro Preview","family":"gemini-pro","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-11-18","last_updated":"2025-11-18","modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":2,"output":12,"cache_read":0.2,"tiers":[{"input":4,"output":18,"cache_read":0.4,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":4,"output":18,"cache_read":0.4}}},"gemini-embedding-001":{"id":"gemini-embedding-001","name":"Gemini Embedding 001","family":"gemini","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"knowledge":"2025-05","release_date":"2025-05-20","last_updated":"2025-05-20","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":2048,"output":1},"cost":{"input":0.15,"output":0}},"zai-org/glm-4.7-maas":{"id":"zai-org/glm-4.7-maas","name":"GLM-4.7","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-04","release_date":"2026-01-06","last_updated":"2026-01-06","modalities":{"input":["text","pdf"],"output":["text"]},"open_weights":true,"limit":{"context":200000,"output":128000},"provider":{"npm":"@ai-sdk/openai-compatible","api":"https://${GOOGLE_VERTEX_ENDPOINT}/v1/projects/${GOOGLE_VERTEX_PROJECT}/locations/${GOOGLE_VERTEX_LOCATION}/endpoints/openapi"},"cost":{"input":0.6,"output":2.2}},"zai-org/glm-5-maas":{"id":"zai-org/glm-5-maas","name":"GLM-5","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"release_date":"2026-02-11","last_updated":"2026-02-11","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":202752,"output":131072},"provider":{"npm":"@ai-sdk/openai-compatible","api":"https://${GOOGLE_VERTEX_ENDPOINT}/v1/projects/${GOOGLE_VERTEX_PROJECT}/locations/${GOOGLE_VERTEX_LOCATION}/endpoints/openapi"},"cost":{"input":1,"output":3.2,"cache_read":0.1}},"qwen/qwen3-235b-a22b-instruct-2507-maas":{"id":"qwen/qwen3-235b-a22b-instruct-2507-maas","name":"Qwen3 235B A22B Instruct","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-08-13","last_updated":"2025-08-13","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":16384},"provider":{"npm":"@ai-sdk/openai-compatible","api":"https://${GOOGLE_VERTEX_ENDPOINT}/v1/projects/${GOOGLE_VERTEX_PROJECT}/locations/${GOOGLE_VERTEX_LOCATION}/endpoints/openapi"},"cost":{"input":0.22,"output":0.88}},"moonshotai/kimi-k2-thinking-maas":{"id":"moonshotai/kimi-k2-thinking-maas","name":"Kimi K2 Thinking","family":"kimi-thinking","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2024-08","release_date":"2025-11-13","last_updated":"2025-11-13","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"provider":{"npm":"@ai-sdk/openai-compatible","api":"https://${GOOGLE_VERTEX_ENDPOINT}/v1/projects/${GOOGLE_VERTEX_PROJECT}/locations/${GOOGLE_VERTEX_LOCATION}/endpoints/openapi"},"cost":{"input":0.6,"output":2.5}},"deepseek-ai/deepseek-v3.2-maas":{"id":"deepseek-ai/deepseek-v3.2-maas","name":"DeepSeek V3.2","family":"deepseek","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-12-17","last_updated":"2026-04-04","modalities":{"input":["text","pdf"],"output":["text"]},"open_weights":true,"limit":{"context":163840,"output":65536},"provider":{"npm":"@ai-sdk/openai-compatible","api":"https://${GOOGLE_VERTEX_ENDPOINT}/v1/projects/${GOOGLE_VERTEX_PROJECT}/locations/${GOOGLE_VERTEX_LOCATION}/endpoints/openapi"},"cost":{"input":0.56,"output":1.68,"cache_read":0.056}},"deepseek-ai/deepseek-v3.1-maas":{"id":"deepseek-ai/deepseek-v3.1-maas","name":"DeepSeek V3.1","family":"deepseek","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-08-28","last_updated":"2025-08-28","modalities":{"input":["text","pdf"],"output":["text"]},"open_weights":true,"limit":{"context":163840,"output":32768},"provider":{"npm":"@ai-sdk/openai-compatible","api":"https://${GOOGLE_VERTEX_ENDPOINT}/v1/projects/${GOOGLE_VERTEX_PROJECT}/locations/${GOOGLE_VERTEX_LOCATION}/endpoints/openapi"},"cost":{"input":0.6,"output":1.7}},"meta/llama-4-maverick-17b-128e-instruct-maas":{"id":"meta/llama-4-maverick-17b-128e-instruct-maas","name":"Llama 4 Maverick 17B 128E Instruct","family":"llama","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-08","release_date":"2025-04-29","last_updated":"2025-04-29","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":524288,"output":8192},"provider":{"npm":"@ai-sdk/openai-compatible","api":"https://${GOOGLE_VERTEX_ENDPOINT}/v1/projects/${GOOGLE_VERTEX_PROJECT}/locations/${GOOGLE_VERTEX_LOCATION}/endpoints/openapi"},"cost":{"input":0.35,"output":1.15}},"meta/llama-3.3-70b-instruct-maas":{"id":"meta/llama-3.3-70b-instruct-maas","name":"Llama 3.3 70B Instruct","family":"llama","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2023-12","release_date":"2025-04-29","last_updated":"2025-04-29","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":8192},"provider":{"npm":"@ai-sdk/openai-compatible","api":"https://${GOOGLE_VERTEX_ENDPOINT}/v1/projects/${GOOGLE_VERTEX_PROJECT}/locations/${GOOGLE_VERTEX_LOCATION}/endpoints/openapi"},"cost":{"input":0.72,"output":0.72}},"openai/gpt-oss-120b-maas":{"id":"openai/gpt-oss-120b-maas","name":"GPT OSS 120B","family":"gpt-oss","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":32768},"cost":{"input":0.09,"output":0.36}},"openai/gpt-oss-20b-maas":{"id":"openai/gpt-oss-20b-maas","name":"GPT OSS 20B","family":"gpt-oss","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":32768},"cost":{"input":0.07,"output":0.25}}}},"deepseek":{"id":"deepseek","env":["DEEPSEEK_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://api.deepseek.com","name":"DeepSeek","doc":"https://api-docs.deepseek.com/quick_start/pricing","models":{"deepseek-reasoner":{"id":"deepseek-reasoner","name":"DeepSeek Reasoner","family":"deepseek-thinking","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2025-09","release_date":"2025-12-01","last_updated":"2026-02-28","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1000000,"output":384000},"cost":{"input":0.14,"output":0.28,"cache_read":0.0028}},"deepseek-chat":{"id":"deepseek-chat","name":"DeepSeek Chat","family":"deepseek","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-09","release_date":"2025-12-01","last_updated":"2026-02-28","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1000000,"output":384000},"cost":{"input":0.14,"output":0.28,"cache_read":0.0028}},"deepseek-v4-flash":{"id":"deepseek-v4-flash","name":"DeepSeek V4 Flash","family":"deepseek-flash","attachment":false,"reasoning":true,"reasoning_options":[{"type":"toggle"},{"type":"effort","values":["high","max"]}],"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-05","release_date":"2026-04-24","last_updated":"2026-04-24","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1000000,"output":384000},"cost":{"input":0.14,"output":0.28,"cache_read":0.0028}},"deepseek-v4-pro":{"id":"deepseek-v4-pro","name":"DeepSeek V4 Pro","family":"deepseek-thinking","attachment":false,"reasoning":true,"reasoning_options":[{"type":"toggle"},{"type":"effort","values":["high","max"]}],"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-05","release_date":"2026-04-24","last_updated":"2026-04-24","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1000000,"output":384000},"cost":{"input":0.435,"output":0.87,"cache_read":0.003625}}}},"orcarouter":{"id":"orcarouter","env":["ORCAROUTER_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://api.orcarouter.ai/v1","name":"OrcaRouter","doc":"https://docs.orcarouter.ai","models":{"z-ai/glm-4.6":{"id":"z-ai/glm-4.6","name":"GLM-4.6","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-09-30","last_updated":"2025-09-30","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0.6,"output":2.2,"cache_read":0.11,"cache_write":0}},"z-ai/glm-4.7":{"id":"z-ai/glm-4.7","name":"GLM-4.7","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2025-04","release_date":"2025-12-22","last_updated":"2025-12-22","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0.6,"output":2.2,"cache_read":0.11,"cache_write":0}},"z-ai/glm-5":{"id":"z-ai/glm-5","name":"GLM-5","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"release_date":"2026-02-11","last_updated":"2026-02-11","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":1,"output":3.2,"cache_read":0.2,"cache_write":0}},"z-ai/glm-4.5":{"id":"z-ai/glm-4.5","name":"GLM-4.5","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-07-28","last_updated":"2025-07-28","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":98304},"cost":{"input":0.6,"output":2.2,"cache_read":0.11,"cache_write":0}},"z-ai/glm-4.5-air":{"id":"z-ai/glm-4.5-air","name":"GLM-4.5-Air","family":"glm-air","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-07-28","last_updated":"2025-07-28","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":98304},"cost":{"input":0.2,"output":1.1,"cache_read":0.03,"cache_write":0}},"z-ai/glm-5.1":{"id":"z-ai/glm-5.1","name":"GLM-5.1","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-03-27","last_updated":"2026-03-27","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":200000,"output":131072},"cost":{"input":1.4,"output":4.4,"cache_read":0.26,"cache_write":0}},"deepseek/deepseek-reasoner":{"id":"deepseek/deepseek-reasoner","name":"DeepSeek Reasoner","family":"deepseek-thinking","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2025-09","release_date":"2025-12-01","last_updated":"2026-02-28","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1000000,"output":384000},"cost":{"input":0.435,"output":0.87,"cache_read":0.028}},"deepseek/deepseek-chat":{"id":"deepseek/deepseek-chat","name":"DeepSeek Chat","family":"deepseek","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-09","release_date":"2025-12-01","last_updated":"2026-02-28","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1000000,"output":384000},"cost":{"input":0.14,"output":0.28,"cache_read":0.028}},"deepseek/deepseek-v4-flash":{"id":"deepseek/deepseek-v4-flash","name":"DeepSeek V4 Flash","family":"deepseek-flash","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-05","release_date":"2026-04-24","last_updated":"2026-04-24","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1000000,"output":384000},"cost":{"input":0.19,"output":0.37,"cache_read":0.0028}},"deepseek/deepseek-v4-pro":{"id":"deepseek/deepseek-v4-pro","name":"DeepSeek V4 Pro","family":"deepseek-thinking","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-05","release_date":"2026-04-24","last_updated":"2026-04-24","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1000000,"output":384000},"cost":{"input":0.56,"output":1.12,"cache_read":0.003625}},"orcarouter/auto":{"id":"orcarouter/auto","name":"OrcaRouter Auto","family":"auto","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-01-01","last_updated":"2026-05-14","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":0,"output":0}},"anthropic/claude-sonnet-4":{"id":"anthropic/claude-sonnet-4","name":"Claude Sonnet 4 (latest)","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-05-22","last_updated":"2025-05-22","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75}},"anthropic/claude-sonnet-4.6":{"id":"anthropic/claude-sonnet-4.6","name":"Claude Sonnet 4.6","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-08-31","release_date":"2026-02-17","last_updated":"2026-03-13","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":64000},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75}},"anthropic/claude-opus-4.5":{"id":"anthropic/claude-opus-4.5","name":"Claude Opus 4.5 (latest)","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-11-24","last_updated":"2025-11-24","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25}},"anthropic/claude-opus-4.7":{"id":"anthropic/claude-opus-4.7","name":"Claude Opus 4.7","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2026-01-31","release_date":"2026-04-16","last_updated":"2026-04-16","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"experimental":{"modes":{"fast":{"cost":{"input":30,"output":150,"cache_read":3,"cache_write":37.5},"provider":{"body":{"speed":"fast"},"headers":{"anthropic-beta":"fast-mode-2026-02-01"}}}}},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25}},"anthropic/claude-sonnet-4.5":{"id":"anthropic/claude-sonnet-4.5","name":"Claude Sonnet 4.5 (latest)","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-07-31","release_date":"2025-09-29","last_updated":"2025-09-29","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75}},"anthropic/claude-opus-4.6":{"id":"anthropic/claude-opus-4.6","name":"Claude Opus 4.6","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-05-31","release_date":"2026-02-05","last_updated":"2026-03-13","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"experimental":{"modes":{"fast":{"cost":{"input":30,"output":150,"cache_read":3,"cache_write":37.5},"provider":{"body":{"speed":"fast"},"headers":{"anthropic-beta":"fast-mode-2026-02-01"}}}}},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25}},"anthropic/claude-haiku-4.5":{"id":"anthropic/claude-haiku-4.5","name":"Claude Haiku 4.5 (latest)","family":"claude-haiku","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-02-28","release_date":"2025-10-15","last_updated":"2025-10-15","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":1,"output":5,"cache_read":0.1,"cache_write":1.25}},"anthropic/claude-opus-4.1":{"id":"anthropic/claude-opus-4.1","name":"Claude Opus 4.1 (latest)","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":32000},"cost":{"input":15,"output":75,"cache_read":1.5,"cache_write":18.75}},"anthropic/claude-opus-4":{"id":"anthropic/claude-opus-4","name":"Claude Opus 4 (latest)","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-05-22","last_updated":"2025-05-22","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":32000},"cost":{"input":15,"output":75,"cache_read":1.5,"cache_write":18.75}},"qwen/qwen3.5-122b-a10b":{"id":"qwen/qwen3.5-122b-a10b","name":"Qwen3.5 122B-A10B","family":"qwen","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-02-23","last_updated":"2026-02-23","modalities":{"input":["text","image","video","audio"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":65536},"cost":{"input":0.115,"output":0.917}},"qwen/qwen3.5-plus":{"id":"qwen/qwen3.5-plus","name":"Qwen3.5 Plus","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2026-02-16","last_updated":"2026-02-16","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":65536},"cost":{"input":0.115,"output":0.688,"reasoning":2.4}},"qwen/qwen3-max":{"id":"qwen/qwen3-max","name":"Qwen3 Max","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-09-23","last_updated":"2025-09-23","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"output":65536},"cost":{"input":0.359,"output":1.434}},"qwen/qwen3.6-plus":{"id":"qwen/qwen3.6-plus","name":"Qwen3.6 Plus","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2026-04-02","last_updated":"2026-04-02","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":65536},"cost":{"input":0.5,"output":3,"cache_read":0.05,"cache_write":0.625,"tiers":[{"input":2,"output":6,"cache_read":0.2,"cache_write":2.5,"tier":{"type":"context","size":256000}}],"context_over_200k":{"input":2,"output":6,"cache_read":0.2,"cache_write":2.5}}},"qwen/qwen3.5-35b-a3b":{"id":"qwen/qwen3.5-35b-a3b","name":"Qwen3.5 35B-A3B","family":"qwen","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-02-23","last_updated":"2026-02-23","modalities":{"input":["text","image","video","audio"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":65536},"cost":{"input":0.057,"output":0.459}},"qwen/qwen3.6-35b-a3b":{"id":"qwen/qwen3.6-35b-a3b","name":"Qwen3.6 35B-A3B","family":"qwen","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-04-17","last_updated":"2026-04-17","modalities":{"input":["text","image","video","audio"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":65536},"cost":{"input":0.248,"output":1.485}},"qwen/qwen3.5-397b-a17b":{"id":"qwen/qwen3.5-397b-a17b","name":"Qwen3.5 397B-A17B","family":"qwen","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-02-15","last_updated":"2026-02-15","modalities":{"input":["text","image","video","audio"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":65536},"cost":{"input":0.172,"output":1.032}},"qwen/qwen3.5-27b":{"id":"qwen/qwen3.5-27b","name":"Qwen3.5 27B","family":"qwen","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-02-23","last_updated":"2026-02-23","modalities":{"input":["text","image","video","audio"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":65536},"cost":{"input":0.086,"output":0.688}},"grok/grok-4.3":{"id":"grok/grok-4.3","name":"Grok 4.3","family":"grok","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-04-17","last_updated":"2026-04-17","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":30000},"cost":{"input":1.25,"output":2.5,"cache_read":0.2,"tiers":[{"input":2.5,"output":5,"cache_read":0.4,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":2.5,"output":5,"cache_read":0.4}}},"google/gemini-3.1-flash-lite-preview":{"id":"google/gemini-3.1-flash-lite-preview","name":"Gemini 3.1 Flash Lite Preview","family":"gemini-flash-lite","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-03-03","last_updated":"2026-03-03","modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":0.25,"output":1.5,"cache_read":0.025,"input_audio":0.5}},"google/gemma-4-31b-it":{"id":"google/gemma-4-31b-it","name":"Gemma 4 31B IT","family":"gemma","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-04-02","last_updated":"2026-04-02","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":32768},"cost":{"input":0.13,"output":0.38}},"google/gemini-flash-lite-latest":{"id":"google/gemini-flash-lite-latest","name":"Gemini Flash-Lite Latest","family":"gemini-flash-lite","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-09-25","last_updated":"2025-09-25","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":0.25,"output":1.5,"cache_read":0.025}},"google/gemini-3-flash-preview":{"id":"google/gemini-3-flash-preview","name":"Gemini 3 Flash Preview","family":"gemini-flash","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-12-17","last_updated":"2025-12-17","modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":0.5,"output":3,"cache_read":0.05,"input_audio":1}},"google/gemini-3.1-pro-preview-customtools":{"id":"google/gemini-3.1-pro-preview-customtools","name":"Gemini 3.1 Pro Preview Custom Tools","family":"gemini-pro","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-02-19","last_updated":"2026-02-19","modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":4,"output":18,"cache_read":0.2,"tiers":[{"input":4,"output":18,"cache_read":0.4,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":4,"output":18,"cache_read":0.4}}},"google/gemini-flash-latest":{"id":"google/gemini-flash-latest","name":"Gemini Flash Latest","family":"gemini-flash","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-09-25","last_updated":"2025-09-25","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":0.5,"output":3,"cache_read":0.075,"input_audio":1}},"google/gemini-2.5-pro":{"id":"google/gemini-2.5-pro","name":"Gemini 2.5 Pro","family":"gemini-pro","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-03-20","last_updated":"2025-06-05","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":2.5,"output":15,"cache_read":0.125,"tiers":[{"input":2.5,"output":15,"cache_read":0.25,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":2.5,"output":15,"cache_read":0.25}}},"google/gemini-3.1-pro-preview":{"id":"google/gemini-3.1-pro-preview","name":"Gemini 3.1 Pro Preview","family":"gemini-pro","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-02-19","last_updated":"2026-02-19","modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":4,"output":18,"cache_read":0.2,"tiers":[{"input":4,"output":18,"cache_read":0.4,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":4,"output":18,"cache_read":0.4}}},"google/gemini-2.5-flash-lite":{"id":"google/gemini-2.5-flash-lite","name":"Gemini 2.5 Flash-Lite","family":"gemini-flash-lite","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-06-17","last_updated":"2025-06-17","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":0.1,"output":0.4,"cache_read":0.01,"input_audio":0.3}},"google/gemini-2.5-flash":{"id":"google/gemini-2.5-flash","name":"Gemini 2.5 Flash","family":"gemini-flash","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-03-20","last_updated":"2025-06-05","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":0.3,"output":2.5,"cache_read":0.03,"input_audio":1}},"google/gemma-4-26b-a4b-it":{"id":"google/gemma-4-26b-a4b-it","name":"Gemma 4 26B A4B IT","family":"gemma","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-04-02","last_updated":"2026-04-02","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":32768},"cost":{"input":0.06,"output":0.33}},"google/gemini-3-pro-preview":{"id":"google/gemini-3-pro-preview","name":"Gemini 3 Pro Preview","family":"gemini-pro","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-11-18","last_updated":"2025-11-18","modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":4,"output":18,"cache_read":0.2,"tiers":[{"input":4,"output":18,"cache_read":0.4,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":4,"output":18,"cache_read":0.4}}},"openai/gpt-4o-2024-08-06":{"id":"openai/gpt-4o-2024-08-06","name":"GPT-4o (2024-08-06)","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2023-09","release_date":"2024-08-06","last_updated":"2024-08-06","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":2.5,"output":10,"cache_read":1.25}},"openai/gpt-5-pro":{"id":"openai/gpt-5-pro","name":"GPT-5 Pro","family":"gpt-pro","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-10-06","last_updated":"2025-10-06","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":272000},"cost":{"input":15,"output":120}},"openai/gpt-5-mini":{"id":"openai/gpt-5-mini","name":"GPT-5 Mini","family":"gpt-mini","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-05-30","release_date":"2025-08-07","last_updated":"2025-08-07","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":0.25,"output":2,"cache_read":0.025}},"openai/gpt-4o":{"id":"openai/gpt-4o","name":"GPT-4o","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2023-09","release_date":"2024-05-13","last_updated":"2024-08-06","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":2.5,"output":10,"cache_read":1.25}},"openai/gpt-5.2":{"id":"openai/gpt-5.2","name":"GPT-5.2","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2025-12-11","last_updated":"2025-12-11","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":1.75,"output":14,"cache_read":0.175}},"openai/gpt-5-chat-latest":{"id":"openai/gpt-5-chat-latest","name":"GPT-5 Chat (latest)","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":false,"structured_output":true,"temperature":true,"knowledge":"2024-09-30","release_date":"2025-08-07","last_updated":"2025-08-07","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":1.25,"output":10,"cache_read":0.125}},"openai/gpt-5-codex":{"id":"openai/gpt-5-codex","name":"GPT-5-Codex","family":"gpt-codex","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-09-15","last_updated":"2025-09-15","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":1.25,"output":10,"cache_read":0.125}},"openai/gpt-5.3-chat-latest":{"id":"openai/gpt-5.3-chat-latest","name":"GPT-5.3 Chat (latest)","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-08-31","release_date":"2026-03-03","last_updated":"2026-03-03","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":1.75,"output":14,"cache_read":0.175}},"openai/gpt-4o-2024-11-20":{"id":"openai/gpt-4o-2024-11-20","name":"GPT-4o (2024-11-20)","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2023-09","release_date":"2024-11-20","last_updated":"2024-11-20","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":2.5,"output":10,"cache_read":1.25}},"openai/gpt-5":{"id":"openai/gpt-5","name":"GPT-5","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-08-07","last_updated":"2025-08-07","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":1.25,"output":10,"cache_read":0.125}},"openai/gpt-5.4-pro":{"id":"openai/gpt-5.4-pro","name":"GPT-5.4 Pro","family":"gpt-pro","attachment":true,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-03-05","last_updated":"2026-03-05","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1050000,"input":922000,"output":128000},"cost":{"input":60,"output":270,"tiers":[{"input":60,"output":270,"tier":{"type":"context","size":272000}}],"context_over_200k":{"input":60,"output":270}}},"openai/gpt-4.1-mini":{"id":"openai/gpt-4.1-mini","name":"GPT-4.1 mini","family":"gpt-mini","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-04","release_date":"2025-04-14","last_updated":"2025-04-14","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1047576,"output":32768},"cost":{"input":0.4,"output":1.6,"cache_read":0.1}},"openai/gpt-5.2-pro":{"id":"openai/gpt-5.2-pro","name":"GPT-5.2 Pro","family":"gpt-pro","attachment":true,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":false,"knowledge":"2025-08-31","release_date":"2025-12-11","last_updated":"2025-12-11","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":21,"output":168}},"openai/gpt-5.4":{"id":"openai/gpt-5.4","name":"GPT-5.4","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-03-05","last_updated":"2026-03-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1050000,"input":922000,"output":128000},"experimental":{"modes":{"fast":{"cost":{"input":5,"output":30,"cache_read":0.5},"provider":{"body":{"service_tier":"priority"}}}}},"cost":{"input":5,"output":22.5,"cache_read":0.25,"tiers":[{"input":5,"output":22.5,"cache_read":0.5,"tier":{"type":"context","size":272000}}],"context_over_200k":{"input":5,"output":22.5,"cache_read":0.5}}},"openai/gpt-5.5":{"id":"openai/gpt-5.5","name":"GPT-5.5","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-12-01","release_date":"2026-04-23","last_updated":"2026-04-23","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1050000,"input":922000,"output":128000},"experimental":{"modes":{"fast":{"cost":{"input":12.5,"output":75,"cache_read":1.25},"provider":{"body":{"service_tier":"priority"}}}}},"cost":{"input":5,"output":30,"cache_read":0.5,"tiers":[{"input":10,"output":45,"cache_read":1,"tier":{"type":"context","size":272000}}],"context_over_200k":{"input":10,"output":45,"cache_read":1}}},"openai/gpt-5.2-chat-latest":{"id":"openai/gpt-5.2-chat-latest","name":"GPT-5.2 Chat","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2025-12-11","last_updated":"2025-12-11","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":1.75,"output":14,"cache_read":0.175}},"openai/gpt-5.1":{"id":"openai/gpt-5.1","name":"GPT-5.1","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-11-13","last_updated":"2025-11-13","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":1.25,"output":10,"cache_read":0.125}},"openai/gpt-5-nano":{"id":"openai/gpt-5-nano","name":"GPT-5 Nano","family":"gpt-nano","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-05-30","release_date":"2025-08-07","last_updated":"2025-08-07","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":0.05,"output":0.4,"cache_read":0.005}},"openai/gpt-4o-mini":{"id":"openai/gpt-4o-mini","name":"GPT-4o mini","family":"gpt-mini","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2023-09","release_date":"2024-07-18","last_updated":"2024-07-18","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":0.15,"output":0.6,"cache_read":0.075}},"openai/gpt-5.1-codex-max":{"id":"openai/gpt-5.1-codex-max","name":"GPT-5.1 Codex Max","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-11-13","last_updated":"2025-11-13","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":1.25,"output":10,"cache_read":0.125}},"openai/gpt-5.1-codex-mini":{"id":"openai/gpt-5.1-codex-mini","name":"GPT-5.1 Codex mini","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-11-13","last_updated":"2025-11-13","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":0.25,"output":2,"cache_read":0.025}},"openai/gpt-4.1":{"id":"openai/gpt-4.1","name":"GPT-4.1","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-04","release_date":"2025-04-14","last_updated":"2025-04-14","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1047576,"output":32768},"cost":{"input":2,"output":8,"cache_read":0.5}},"openai/gpt-5.4-nano":{"id":"openai/gpt-5.4-nano","name":"GPT-5.4 nano","family":"gpt-nano","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-03-17","last_updated":"2026-03-17","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":0.2,"output":1.25,"cache_read":0.02}},"openai/gpt-5.3-codex":{"id":"openai/gpt-5.3-codex","name":"GPT-5.3 Codex","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-02-05","last_updated":"2026-02-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":1.75,"output":14,"cache_read":0.175}},"openai/gpt-5.5-pro":{"id":"openai/gpt-5.5-pro","name":"GPT-5.5 Pro","family":"gpt-pro","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-12-01","release_date":"2026-04-23","last_updated":"2026-04-23","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1050000,"input":922000,"output":128000},"cost":{"input":30,"output":180,"tiers":[{"input":60,"output":270,"tier":{"type":"context","size":272000}}],"context_over_200k":{"input":60,"output":270}}},"openai/gpt-3.5-turbo":{"id":"openai/gpt-3.5-turbo","name":"GPT-3.5-turbo","family":"gpt","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":true,"knowledge":"2021-09-01","release_date":"2023-03-01","last_updated":"2023-11-06","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":16385,"output":4096},"cost":{"input":0.5,"output":1.5,"cache_read":0}},"openai/gpt-5.2-codex":{"id":"openai/gpt-5.2-codex","name":"GPT-5.2 Codex","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2025-12-11","last_updated":"2025-12-11","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":1.75,"output":14,"cache_read":0.175}},"openai/gpt-5.1-codex":{"id":"openai/gpt-5.1-codex","name":"GPT-5.1 Codex","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-11-13","last_updated":"2025-11-13","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":1.25,"output":10,"cache_read":0.125}},"openai/gpt-4o-2024-05-13":{"id":"openai/gpt-4o-2024-05-13","name":"GPT-4o (2024-05-13)","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2023-09","release_date":"2024-05-13","last_updated":"2024-05-13","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":4096},"cost":{"input":5,"output":15}},"openai/gpt-5.4-mini":{"id":"openai/gpt-5.4-mini","name":"GPT-5.4 mini","family":"gpt-mini","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-03-17","last_updated":"2026-03-17","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"experimental":{"modes":{"fast":{"cost":{"input":1.5,"output":9,"cache_read":0.15},"provider":{"body":{"service_tier":"priority"}}}}},"cost":{"input":0.75,"output":4.5,"cache_read":0.075}},"openai/gpt-4-turbo":{"id":"openai/gpt-4-turbo","name":"GPT-4 Turbo","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"structured_output":false,"temperature":true,"knowledge":"2023-12","release_date":"2023-11-06","last_updated":"2024-04-09","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":4096},"cost":{"input":10,"output":30}},"openai/gpt-5.1-chat-latest":{"id":"openai/gpt-5.1-chat-latest","name":"GPT-5.1 Chat","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-11-13","last_updated":"2025-11-13","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":1.25,"output":10,"cache_read":0.125}},"openai/gpt-4":{"id":"openai/gpt-4","name":"GPT-4","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"structured_output":false,"temperature":true,"knowledge":"2023-11","release_date":"2023-11-06","last_updated":"2024-04-09","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":8192,"output":8192},"cost":{"input":30,"output":60}},"openai/gpt-4.1-nano":{"id":"openai/gpt-4.1-nano","name":"GPT-4.1 nano","family":"gpt-nano","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-04","release_date":"2025-04-14","last_updated":"2025-04-14","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1047576,"output":32768},"cost":{"input":0.1,"output":0.4,"cache_read":0.025}},"kimi/kimi-k2.6":{"id":"kimi/kimi-k2.6","name":"Kimi K2.6","family":"kimi-k2.6","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-04-21","last_updated":"2026-04-21","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.95,"output":4,"cache_read":0.16}},"kimi/kimi-k2.5":{"id":"kimi/kimi-k2.5","name":"Kimi K2.5","family":"kimi-k2.5","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":false,"knowledge":"2025-01","release_date":"2026-01","last_updated":"2026-01","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.6,"output":3,"cache_read":0.1}},"minimax/minimax-m2.7-highspeed":{"id":"minimax/minimax-m2.7-highspeed","name":"MiniMax-M2.7-highspeed","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-03-18","last_updated":"2026-03-18","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0.6,"output":2.4,"cache_read":0.06,"cache_write":0.375}},"minimax/minimax-m2.7":{"id":"minimax/minimax-m2.7","name":"MiniMax-M2.7","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-03-18","last_updated":"2026-03-18","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0.3,"output":1.2,"cache_read":0.06,"cache_write":0.375}},"minimax/minimax-m2.5":{"id":"minimax/minimax-m2.5","name":"MiniMax-M2.5","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-02-12","last_updated":"2026-02-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0.3,"output":1.2,"cache_read":0.03,"cache_write":0.375}},"minimax/minimax-m2.5-highspeed":{"id":"minimax/minimax-m2.5-highspeed","name":"MiniMax-M2.5-highspeed","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-02-13","last_updated":"2026-02-13","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0.6,"output":2.4,"cache_read":0.06,"cache_write":0.375}}}},"moonshotai-cn":{"id":"moonshotai-cn","env":["MOONSHOT_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://api.moonshot.cn/v1","name":"Moonshot AI (China)","doc":"https://platform.moonshot.cn/docs/api/chat","models":{"kimi-k2.5":{"id":"kimi-k2.5","name":"Kimi K2.5","family":"kimi-k2.5","attachment":false,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":false,"knowledge":"2025-01","release_date":"2026-01","last_updated":"2026-01","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.6,"output":3,"cache_read":0.1}},"kimi-k2-0711-preview":{"id":"kimi-k2-0711-preview","name":"Kimi K2 0711","family":"kimi","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2025-07-14","last_updated":"2025-07-14","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":16384},"cost":{"input":0.6,"output":2.5,"cache_read":0.15}},"kimi-k2-0905-preview":{"id":"kimi-k2-0905-preview","name":"Kimi K2 0905","family":"kimi","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2025-09-05","last_updated":"2025-09-05","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.6,"output":2.5,"cache_read":0.15}},"kimi-k2-turbo-preview":{"id":"kimi-k2-turbo-preview","name":"Kimi K2 Turbo","family":"kimi","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2025-09-05","last_updated":"2025-09-05","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":2.4,"output":10,"cache_read":0.6}},"kimi-k2.6":{"id":"kimi-k2.6","name":"Kimi K2.6","family":"kimi-k2.6","attachment":true,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-04-21","last_updated":"2026-04-21","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.95,"output":4,"cache_read":0.16}},"kimi-k2-thinking":{"id":"kimi-k2-thinking","name":"Kimi K2 Thinking","family":"kimi-thinking","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2024-08","release_date":"2025-11-06","last_updated":"2025-11-06","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.6,"output":2.5,"cache_read":0.15}},"kimi-k2-thinking-turbo":{"id":"kimi-k2-thinking-turbo","name":"Kimi K2 Thinking Turbo","family":"kimi-thinking","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2024-08","release_date":"2025-11-06","last_updated":"2025-11-06","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":1.15,"output":8,"cache_read":0.15}}}},"minimax-cn-coding-plan":{"id":"minimax-cn-coding-plan","env":["MINIMAX_API_KEY"],"npm":"@ai-sdk/anthropic","api":"https://api.minimaxi.com/anthropic/v1","name":"MiniMax Token Plan (minimaxi.com)","doc":"https://platform.minimaxi.com/docs/token-plan/intro","models":{"MiniMax-M2.5":{"id":"MiniMax-M2.5","name":"MiniMax-M2.5","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-02-12","last_updated":"2026-02-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0,"output":0,"cache_read":0,"cache_write":0}},"MiniMax-M3":{"id":"MiniMax-M3","name":"MiniMax-M3","family":"minimax","attachment":true,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"tool_call":true,"temperature":true,"release_date":"2026-06-01","last_updated":"2026-06-01","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":512000,"output":128000},"cost":{"input":0,"output":0,"cache_read":0,"cache_write":0}},"MiniMax-M2.5-highspeed":{"id":"MiniMax-M2.5-highspeed","name":"MiniMax-M2.5-highspeed","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-02-13","last_updated":"2026-02-13","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0,"output":0,"cache_read":0,"cache_write":0}},"MiniMax-M2.7":{"id":"MiniMax-M2.7","name":"MiniMax-M2.7","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-03-18","last_updated":"2026-03-18","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0,"output":0,"cache_read":0,"cache_write":0}},"MiniMax-M2":{"id":"MiniMax-M2","name":"MiniMax-M2","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-10-27","last_updated":"2025-10-27","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":196608,"output":128000},"cost":{"input":0,"output":0}},"MiniMax-M2.7-highspeed":{"id":"MiniMax-M2.7-highspeed","name":"MiniMax-M2.7-highspeed","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-03-18","last_updated":"2026-03-18","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0,"output":0,"cache_read":0,"cache_write":0}},"MiniMax-M2.1":{"id":"MiniMax-M2.1","name":"MiniMax-M2.1","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-12-23","last_updated":"2025-12-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0,"output":0}}}},"inception":{"id":"inception","env":["INCEPTION_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://api.inceptionlabs.ai/v1/","name":"Inception","doc":"https://platform.inceptionlabs.ai/docs","models":{"mercury-edit-2":{"id":"mercury-edit-2","name":"Mercury Edit 2","attachment":false,"reasoning":true,"tool_call":false,"temperature":true,"release_date":"2026-03-30","last_updated":"2026-03-30","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":8192},"cost":{"input":0.25,"output":0.75,"cache_read":0.025}},"mercury-2":{"id":"mercury-2","name":"Mercury 2","family":"mercury","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01-01","release_date":"2026-02-24","last_updated":"2026-02-24","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":50000},"cost":{"input":0.25,"output":0.75,"cache_read":0.025}}}},"kuae-cloud-coding-plan":{"id":"kuae-cloud-coding-plan","env":["KUAE_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://coding-plan-endpoint.kuaecloud.net/v1","name":"KUAE Cloud Coding Plan","doc":"https://docs.mthreads.com/kuaecloud/kuaecloud-doc-online/coding_plan/","models":{"GLM-4.7":{"id":"GLM-4.7","name":"GLM-4.7","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2025-04","release_date":"2025-12-22","last_updated":"2025-12-22","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0,"output":0,"cache_read":0,"cache_write":0}}}},"chutes":{"id":"chutes","env":["CHUTES_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://llm.chutes.ai/v1","name":"Chutes","doc":"https://llm.chutes.ai/v1/models","models":{"XiaomiMiMo/MiMo-V2-Flash-TEE":{"id":"XiaomiMiMo/MiMo-V2-Flash-TEE","name":"MiMo V2 Flash TEE","family":"mimo","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-12-01","release_date":"2025-12-16","last_updated":"2026-02-04","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":65536},"cost":{"input":0.09,"output":0.29,"cache_read":0.045}},"MiniMaxAI/MiniMax-M2.5-TEE":{"id":"MiniMaxAI/MiniMax-M2.5-TEE","name":"MiniMax M2.5 TEE","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-02-12","last_updated":"2026-02-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":196608,"output":65536},"cost":{"input":0.15,"output":1.2,"cache_read":0.075}},"zai-org/GLM-5.1-TEE":{"id":"zai-org/GLM-5.1-TEE","name":"GLM 5.1 TEE","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-03-27","last_updated":"2026-03-27","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":202752,"output":65535},"cost":{"input":1.05,"output":3.5,"cache_read":0.525}},"zai-org/GLM-4.7-FP8":{"id":"zai-org/GLM-4.7-FP8","name":"GLM 4.7 FP8","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-01-27","last_updated":"2026-04-25","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":202752,"output":65535},"cost":{"input":0.2989,"output":1.1957,"cache_read":0.14945}},"zai-org/GLM-5-TEE":{"id":"zai-org/GLM-5-TEE","name":"GLM 5 TEE","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-02-11","last_updated":"2026-02-11","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":202752,"output":65535},"cost":{"input":0.95,"output":2.55,"cache_read":0.475}},"zai-org/GLM-4.7-TEE":{"id":"zai-org/GLM-4.7-TEE","name":"GLM 4.7 TEE","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-12-22","last_updated":"2025-12-22","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":202752,"output":65535},"cost":{"input":0.39,"output":1.75,"cache_read":0.195}},"zai-org/GLM-5-Turbo":{"id":"zai-org/GLM-5-Turbo","name":"GLM 5 Turbo","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-03-11","last_updated":"2026-04-25","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":202752,"output":65535},"cost":{"input":0.4891,"output":1.9565,"cache_read":0.24455}},"zai-org/GLM-4.6V":{"id":"zai-org/GLM-4.6V","name":"GLM 4.6V","family":"glm","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2025-12-29","last_updated":"2026-04-25","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":65536},"cost":{"input":0.3,"output":0.9,"cache_read":0.15}},"NousResearch/Hermes-4-14B":{"id":"NousResearch/Hermes-4-14B","name":"Hermes 4 14B","family":"nousresearch","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2025-12-29","last_updated":"2026-04-25","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":40960,"output":40960},"cost":{"input":0.0136,"output":0.0543,"cache_read":0.0068}},"NousResearch/DeepHermes-3-Mistral-24B-Preview":{"id":"NousResearch/DeepHermes-3-Mistral-24B-Preview","name":"DeepHermes 3 Mistral 24B Preview","family":"nousresearch","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-12-29","last_updated":"2026-04-25","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":32768,"output":32768},"cost":{"input":0.0245,"output":0.0978,"cache_read":0.01225}},"moonshotai/Kimi-K2.6-TEE":{"id":"moonshotai/Kimi-K2.6-TEE","name":"Kimi K2.6 TEE","family":"kimi-k2.6","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-12","release_date":"2026-04-21","last_updated":"2026-04-21","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":65535},"cost":{"input":0.95,"output":4,"cache_read":0.475}},"moonshotai/Kimi-K2.5-TEE":{"id":"moonshotai/Kimi-K2.5-TEE","name":"Kimi K2.5 TEE","family":"kimi-k2.5","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2024-10","release_date":"2026-01","last_updated":"2026-01","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":65535},"cost":{"input":0.44,"output":2,"cache_read":0.22}},"deepseek-ai/DeepSeek-V3.1-TEE":{"id":"deepseek-ai/DeepSeek-V3.1-TEE","name":"DeepSeek V3.1 TEE","family":"deepseek","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2025-12-29","last_updated":"2026-04-25","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":163840,"output":65536},"cost":{"input":0.27,"output":1,"cache_read":0.135}},"deepseek-ai/DeepSeek-V3.2-TEE":{"id":"deepseek-ai/DeepSeek-V3.2-TEE","name":"DeepSeek V3.2 TEE","family":"deepseek","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2025-12-29","last_updated":"2026-04-25","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":65536},"cost":{"input":0.28,"output":0.42,"cache_read":0.14}},"deepseek-ai/DeepSeek-R1-Distill-Llama-70B":{"id":"deepseek-ai/DeepSeek-R1-Distill-Llama-70B","name":"DeepSeek R1 Distill Llama 70B","family":"deepseek-thinking","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2025-12-29","last_updated":"2026-04-25","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":131072},"cost":{"input":0.0272,"output":0.1087,"cache_read":0.0136}},"deepseek-ai/DeepSeek-V3-0324-TEE":{"id":"deepseek-ai/DeepSeek-V3-0324-TEE","name":"DeepSeek V3 0324 TEE","family":"deepseek","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-12-29","last_updated":"2026-04-25","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":163840,"output":65536},"cost":{"input":0.25,"output":1,"cache_read":0.125}},"deepseek-ai/DeepSeek-R1-0528-TEE":{"id":"deepseek-ai/DeepSeek-R1-0528-TEE","name":"DeepSeek R1 0528 TEE","family":"deepseek-thinking","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2024-07","release_date":"2025-01-20","last_updated":"2025-05-29","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":163840,"output":65536},"cost":{"input":0.45,"output":2.15,"cache_read":0.225}},"rednote-hilab/dots.ocr":{"id":"rednote-hilab/dots.ocr","name":"dots.ocr","family":"rednote","attachment":true,"reasoning":false,"tool_call":false,"structured_output":true,"temperature":true,"release_date":"2025-12-29","last_updated":"2026-04-25","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":131072},"cost":{"input":0.01,"output":0.0109,"cache_read":0.005}},"tngtech/DeepSeek-TNG-R1T2-Chimera-TEE":{"id":"tngtech/DeepSeek-TNG-R1T2-Chimera-TEE","name":"DeepSeek TNG R1T2 Chimera TEE","family":"deepseek","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-04-25","last_updated":"2026-04-25","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":163840,"output":163840},"cost":{"input":0.3,"output":1.1,"cache_read":0.15}},"unsloth/Llama-3.2-1B-Instruct":{"id":"unsloth/Llama-3.2-1B-Instruct","name":"Llama 3.2 1B Instruct","family":"unsloth","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2026-01-27","last_updated":"2026-04-25","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":16384,"output":8192},"cost":{"input":0.01,"output":0.0109,"cache_read":0.005}},"unsloth/Mistral-Nemo-Instruct-2407":{"id":"unsloth/Mistral-Nemo-Instruct-2407","name":"Mistral Nemo Instruct 2407","family":"unsloth","attachment":false,"reasoning":false,"tool_call":false,"structured_output":true,"temperature":true,"release_date":"2025-12-29","last_updated":"2026-04-25","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":131072},"cost":{"input":0.02,"output":0.04,"cache_read":0.01}},"unsloth/gemma-3-27b-it":{"id":"unsloth/gemma-3-27b-it","name":"gemma 3 27b it","family":"unsloth","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-12-29","last_updated":"2026-04-25","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":65536},"cost":{"input":0.0272,"output":0.1087,"cache_read":0.0136}},"unsloth/gemma-3-12b-it":{"id":"unsloth/gemma-3-12b-it","name":"gemma 3 12b it","family":"unsloth","attachment":true,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-12-29","last_updated":"2026-04-25","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":131072},"cost":{"input":0.03,"output":0.1,"cache_read":0.015}},"unsloth/gemma-3-4b-it":{"id":"unsloth/gemma-3-4b-it","name":"gemma 3 4b it","family":"unsloth","attachment":true,"reasoning":false,"tool_call":false,"structured_output":true,"temperature":true,"release_date":"2025-12-29","last_updated":"2026-04-25","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":96000,"output":96000},"cost":{"input":0.01,"output":0.0272,"cache_read":0.005}},"unsloth/Llama-3.2-3B-Instruct":{"id":"unsloth/Llama-3.2-3B-Instruct","name":"Llama 3.2 3B Instruct","family":"unsloth","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-02-12","last_updated":"2026-04-25","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":16384,"output":16384},"cost":{"input":0.01,"output":0.0136,"cache_read":0.005}},"Qwen/Qwen3-Coder-Next-TEE":{"id":"Qwen/Qwen3-Coder-Next-TEE","name":"Qwen3 Coder Next TEE","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-04-25","last_updated":"2026-04-25","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":65536},"cost":{"input":0.12,"output":0.75,"cache_read":0.06}},"Qwen/Qwen2.5-72B-Instruct":{"id":"Qwen/Qwen2.5-72B-Instruct","name":"Qwen2.5 72B Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-12-29","last_updated":"2026-04-25","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":32768,"output":32768},"cost":{"input":0.2989,"output":1.1957,"cache_read":0.14945}},"Qwen/Qwen3-30B-A3B":{"id":"Qwen/Qwen3-30B-A3B","name":"Qwen3 30B A3B","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2025-12-29","last_updated":"2026-04-25","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":40960,"output":40960},"cost":{"input":0.06,"output":0.22,"cache_read":0.03}},"Qwen/Qwen3-235B-A22B-Thinking-2507":{"id":"Qwen/Qwen3-235B-A22B-Thinking-2507","name":"Qwen3 235B A22B Thinking 2507","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2025-12-29","last_updated":"2026-04-25","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.11,"output":0.6,"cache_read":0.055}},"Qwen/Qwen3-235B-A22B-Instruct-2507-TEE":{"id":"Qwen/Qwen3-235B-A22B-Instruct-2507-TEE","name":"Qwen3 235B A22B Instruct 2507 TEE","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-04","last_updated":"2025-04","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":65536},"cost":{"input":0.1,"output":0.6,"cache_read":0.05}},"Qwen/Qwen3-Next-80B-A3B-Instruct":{"id":"Qwen/Qwen3-Next-80B-A3B-Instruct","name":"Qwen3 Next 80B A3B Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-12-29","last_updated":"2026-04-25","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.1,"output":0.8,"cache_read":0.05}},"Qwen/Qwen3Guard-Gen-0.6B":{"id":"Qwen/Qwen3Guard-Gen-0.6B","name":"Qwen3Guard Gen 0.6B","family":"qwen","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-12-29","last_updated":"2026-04-25","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":32768,"output":8192},"cost":{"input":0.01,"output":0.0109,"cache_read":0.005}},"Qwen/Qwen3.5-397B-A17B-TEE":{"id":"Qwen/Qwen3.5-397B-A17B-TEE","name":"Qwen3.5 397B A17B TEE","family":"qwen","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-02-15","last_updated":"2026-02-15","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":65536},"cost":{"input":0.39,"output":2.34,"cache_read":0.195}},"Qwen/Qwen3.6-27B-TEE":{"id":"Qwen/Qwen3.6-27B-TEE","name":"Qwen3.6 27B TEE","family":"qwen","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-04-22","last_updated":"2026-04-22","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":65536},"cost":{"input":0.195,"output":1.56,"cache_read":0.0975}},"Qwen/Qwen2.5-Coder-32B-Instruct":{"id":"Qwen/Qwen2.5-Coder-32B-Instruct","name":"Qwen2.5 Coder 32B Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":false,"structured_output":true,"temperature":true,"release_date":"2025-12-29","last_updated":"2026-04-25","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":32768,"output":32768},"cost":{"input":0.0272,"output":0.1087,"cache_read":0.0136}},"Qwen/Qwen2.5-VL-32B-Instruct":{"id":"Qwen/Qwen2.5-VL-32B-Instruct","name":"Qwen2.5 VL 32B Instruct","family":"qwen","attachment":true,"reasoning":false,"tool_call":false,"structured_output":true,"temperature":true,"release_date":"2025-12-29","last_updated":"2026-04-25","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":16384,"output":16384},"cost":{"input":0.0543,"output":0.2174,"cache_read":0.02715}},"Qwen/Qwen3-32B-TEE":{"id":"Qwen/Qwen3-32B-TEE","name":"Qwen3 32B TEE","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-04","last_updated":"2025-04","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":40960,"output":40960},"cost":{"input":0.08,"output":0.24,"cache_read":0.04}},"google/gemma-4-31B-turbo-TEE":{"id":"google/gemma-4-31B-turbo-TEE","name":"gemma 4 31B turbo TEE","family":"gemma","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-04-02","last_updated":"2026-04-02","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":65536},"cost":{"input":0.13,"output":0.38,"cache_read":0.065}},"openai/gpt-oss-120b-TEE":{"id":"openai/gpt-oss-120b-TEE","name":"gpt oss 120b TEE","family":"gpt-oss","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2025-12-29","last_updated":"2026-04-25","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":65536},"cost":{"input":0.09,"output":0.36,"cache_read":0.045}}}},"crof":{"id":"crof","env":["CROF_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://crof.ai/v1","name":"CrofAI","doc":"https://crof.ai/docs","models":{"deepseek-v4-pro-lightning":{"id":"deepseek-v4-pro-lightning","name":"DeepSeek V4 Pro","family":"deepseek-thinking","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-05","release_date":"2026-04-24","last_updated":"2026-04-24","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1000000,"output":131072},"provider":{"npm":"@ai-sdk/openai-compatible"},"cost":{"input":0.8,"output":1.6,"cache_read":0.02}},"greg-1":{"id":"greg-1","name":"Greg 1 Normal","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2026-01-27","last_updated":"2026-01-27","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":229376,"output":229376},"cost":{"input":0.1,"output":0.3,"cache_read":0.02}},"greg-rp":{"id":"greg-rp","name":"Greg (Roleplay)","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2026-01-27","last_updated":"2026-01-27","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":229376,"output":229376},"cost":{"input":0.1,"output":0.3,"cache_read":0.02}},"gemma-4-31b-it":{"id":"gemma-4-31b-it","name":"Gemma 4 31B IT","family":"gemma","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-04-02","last_updated":"2026-04-02","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"provider":{"npm":"@ai-sdk/openai-compatible"},"cost":{"input":0.1,"output":0.3,"cache_read":0.02}},"qwen3.6-27b":{"id":"qwen3.6-27b","name":"Qwen3.6 27B","family":"qwen","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-04-22","last_updated":"2026-04-22","modalities":{"input":["text","image","video","audio"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"provider":{"npm":"@ai-sdk/openai-compatible"},"cost":{"input":0.2,"output":1.5,"cache_read":0.04}},"deepseek-v3.2":{"id":"deepseek-v3.2","name":"DeepSeek V3.2","family":"deepseek","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2025-07-22","last_updated":"2025-07-22","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":163840,"output":163840},"cost":{"input":0.18,"output":0.35,"cache_read":0.04}},"greg-1-super":{"id":"greg-1-super","name":"Greg 1 Super","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2026-01-27","last_updated":"2026-01-27","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":229376,"output":229376},"cost":{"input":1,"output":5,"cache_read":0.2}},"kimi-k2.6":{"id":"kimi-k2.6","name":"Kimi K2.6","family":"kimi-k2.6","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-04-21","last_updated":"2026-04-21","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"provider":{"npm":"@ai-sdk/openai-compatible"},"cost":{"input":0.5,"output":1.99,"cache_read":0.05}},"glm-4.7":{"id":"glm-4.7","name":"GLM-4.7","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2025-04","release_date":"2025-12-22","last_updated":"2025-12-22","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":202752,"output":202752},"provider":{"npm":"@ai-sdk/openai-compatible"},"cost":{"input":0.25,"output":1.1,"cache_read":0.05,"cache_write":0}},"greg-1-mini":{"id":"greg-1-mini","name":"Greg 1 Mini","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2026-01-27","last_updated":"2026-01-27","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":229376,"output":229376},"cost":{"input":0.07,"output":0.15,"cache_read":0.01}},"qwen3.5-9b":{"id":"qwen3.5-9b","name":"Qwen3.5 9B","family":"qwen","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-03-13","last_updated":"2026-03-13","modalities":{"input":["text","image","video","audio"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.04,"output":0.15,"cache_read":0.008}},"glm-4.7-flash":{"id":"glm-4.7-flash","name":"GLM-4.7-Flash","family":"glm-flash","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2026-01-19","last_updated":"2026-01-19","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":202752,"output":131072},"provider":{"npm":"@ai-sdk/openai-compatible"},"cost":{"input":0.04,"output":0.3,"cache_read":0.008,"cache_write":0}},"deepseek-v4-flash":{"id":"deepseek-v4-flash","name":"DeepSeek V4 Flash","family":"deepseek-flash","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-05","release_date":"2026-04-24","last_updated":"2026-04-24","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1000000,"output":131072},"provider":{"npm":"@ai-sdk/openai-compatible"},"cost":{"input":0.12,"output":0.21,"cache_read":0.003}},"glm-5":{"id":"glm-5","name":"GLM-5","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"release_date":"2026-02-11","last_updated":"2026-02-11","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":202752,"output":202752},"provider":{"npm":"@ai-sdk/openai-compatible"},"cost":{"input":0.48,"output":1.9,"cache_read":0.1,"cache_write":0}},"kimi-k2.5-lightning":{"id":"kimi-k2.5-lightning","name":"Kimi K2.5 (Lightning)","family":"kimi-k2.5","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":false,"release_date":"2026-02-06","last_updated":"2026-02-06","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":32768},"cost":{"input":1,"output":3,"cache_read":0.2}},"qwen3.5-397b-a17b":{"id":"qwen3.5-397b-a17b","name":"Qwen3.5 397B-A17B","family":"qwen","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-02-15","last_updated":"2026-02-15","modalities":{"input":["text","image","video","audio"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"provider":{"npm":"@ai-sdk/openai-compatible"},"cost":{"input":0.35,"output":1.75,"cache_read":0.07}},"minimax-m2.5":{"id":"minimax-m2.5","name":"MiniMax-M2.5","family":"minimax","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2026-02-12","last_updated":"2026-02-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"provider":{"npm":"@ai-sdk/openai-compatible"},"cost":{"input":0.11,"output":0.95,"cache_read":0.02,"cache_write":0.375}},"deepseek-v4-pro":{"id":"deepseek-v4-pro","name":"DeepSeek V4 Pro","family":"deepseek-thinking","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-05","release_date":"2026-04-24","last_updated":"2026-04-24","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1000000,"output":131072},"provider":{"npm":"@ai-sdk/openai-compatible"},"cost":{"input":0.35,"output":0.8,"cache_read":0.003}},"kimi-k2.5":{"id":"kimi-k2.5","name":"Kimi K2.5","family":"kimi-k2.5","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":false,"knowledge":"2025-01","release_date":"2026-01","last_updated":"2026-01","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"provider":{"npm":"@ai-sdk/openai-compatible"},"cost":{"input":0.35,"output":1.7,"cache_read":0.07}},"glm-5.1":{"id":"glm-5.1","name":"GLM-5.1","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-03-27","last_updated":"2026-03-27","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":202752,"output":202752},"provider":{"npm":"@ai-sdk/openai-compatible"},"cost":{"input":0.45,"output":2.15,"cache_read":0.08,"cache_write":0}},"mimo-v2.5-pro":{"id":"mimo-v2.5-pro","name":"MiMo-V2.5-Pro","family":"mimo","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2024-12","release_date":"2026-04-22","last_updated":"2026-04-22","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1048576,"output":131072},"provider":{"npm":"@ai-sdk/openai-compatible"},"cost":{"input":0.4,"output":0.8,"cache_read":0.003,"tiers":[{"input":2,"output":6,"cache_read":0.4,"tier":{"type":"context","size":256000}}],"context_over_200k":{"input":2,"output":6,"cache_read":0.4}}}}},"frogbot":{"id":"frogbot","env":["FROGBOT_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://app.frogbot.ai/api/v1","name":"FrogBot","doc":"https://docs.frogbot.ai","models":{"minimax-m2-7":{"id":"minimax-m2-7","name":"MiniMax-M2.7","family":"minimax","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-09","release_date":"2026-03-18","last_updated":"2026-03-18","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":192000,"output":8192},"cost":{"input":0.3,"output":1.2,"cache_read":0.06}},"claude-sonnet-4-6":{"id":"claude-sonnet-4-6","name":"Claude Sonnet 4.6","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-08-31","release_date":"2026-02-17","last_updated":"2026-02-17","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75}},"gpt-4o":{"id":"gpt-4o","name":"GPT-4o","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2023-09","release_date":"2024-05-13","last_updated":"2024-08-06","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":2.5,"output":10,"cache_read":1.25}},"gpt-5-4-mini":{"id":"gpt-5-4-mini","name":"GPT-5.4 Mini","family":"gpt-mini","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-03-17","last_updated":"2026-03-17","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":0.75,"output":4.5,"cache_read":0.075}},"claude-haiku-4-5":{"id":"claude-haiku-4-5","name":"Claude Haiku 4.5","family":"claude-haiku","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-02-28","release_date":"2025-10-15","last_updated":"2025-10-15","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":1,"output":5,"cache_read":0.1,"cache_write":1.25}},"gemini-3-flash-preview":{"id":"gemini-3-flash-preview","name":"Gemini 3 Flash Preview","family":"gemini-flash","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-12-17","last_updated":"2025-12-17","modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":0.5,"output":3,"cache_read":0.05}},"zai-glm-5-1":{"id":"zai-glm-5-1","name":"Z.AI GLM-5.1","family":"glm","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2025-01-20","last_updated":"2025-02-22","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":198000,"output":8192},"cost":{"input":1.4,"output":4.4,"cache_read":0.26}},"minimax-m2-5":{"id":"minimax-m2-5","name":"MiniMax-M2.5","family":"minimax","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-09","release_date":"2025-01-15","last_updated":"2025-02-22","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":192000,"output":8192},"cost":{"input":0.3,"output":1.2,"cache_read":0.03}},"gpt-5-5":{"id":"gpt-5-5","name":"GPT-5.5","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-03-05","last_updated":"2026-03-05","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":272000,"output":128000},"cost":{"input":2.5,"output":15,"cache_read":0.25}},"gpt-oss-120b":{"id":"gpt-oss-120b","name":"GPT OSS 120B","family":"gpt-oss","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"1970-01-01","last_updated":"1970-01-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":32768},"cost":{"input":0.15,"output":0.6}},"gemini-3-1-pro-preview":{"id":"gemini-3-1-pro-preview","name":"Gemini 3.1 Pro Preview","family":"gemini-pro","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2026-01","release_date":"2026-02-18","last_updated":"2026-02-18","modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":64000},"cost":{"input":2,"output":12,"cache_read":0.2}},"grok-4-1-fast-non-reasoning":{"id":"grok-4-1-fast-non-reasoning","name":"Grok 4.1 Fast (Non-Reasoning)","family":"grok","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-11","release_date":"2025-11-25","last_updated":"2025-11-25","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":2000000,"output":128000},"cost":{"input":0.2,"output":0.5,"cache_read":0.05}},"gpt-5-4-nano":{"id":"gpt-5-4-nano","name":"GPT-5.4 Nano","family":"gpt-nano","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-05-30","release_date":"2025-08-07","last_updated":"2025-08-07","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":0.2,"output":1.25,"cache_read":0.02}},"gpt-oss-20b":{"id":"gpt-oss-20b","name":"GPT OSS 20B","family":"gpt-oss","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"1970-01-01","last_updated":"1970-01-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":32768},"cost":{"input":0.07,"output":0.2}},"qwen-3-6-plus":{"id":"qwen-3-6-plus","name":"Qwen 3.6 Plus","family":"qwen","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-04-02","last_updated":"2026-04-03","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":64000},"cost":{"input":0.5,"output":3,"cache_read":0.1}},"gemini-2.5-pro":{"id":"gemini-2.5-pro","name":"Gemini 2.5 Pro","family":"gemini-pro","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-03-20","last_updated":"2025-06-05","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":1.25,"output":10,"cache_read":0.31}},"kimi-k2-6":{"id":"kimi-k2-6","name":"Kimi-K2.6","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"1970-01-01","last_updated":"1970-01-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":128000},"cost":{"input":0.95,"output":4,"cache_read":0.16}},"gemini-2.5-flash":{"id":"gemini-2.5-flash","name":"Gemini 2.5 Flash","family":"gemini-flash","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-07-17","last_updated":"2025-07-17","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":0.3,"output":2.5,"cache_read":0.075}},"gpt-5-3-codex":{"id":"gpt-5-3-codex","name":"GPT-5.3 Codex","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2026-01-31","release_date":"2026-02-15","last_updated":"2026-02-15","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":1.75,"output":14,"cache_read":0.175}},"grok-4-3":{"id":"grok-4-3","name":"Grok 4.3","family":"grok","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-11","release_date":"2026-04-30","last_updated":"2026-04-30","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":1.25,"output":2.5,"cache_read":0.2}},"claude-opus-4-6":{"id":"claude-opus-4-6","name":"Claude Opus 4.6","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-05-31","release_date":"2026-02-05","last_updated":"2026-02-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":128000},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25}},"deepseek-v4-pro":{"id":"deepseek-v4-pro","name":"DeepSeek v4 Pro","family":"deepseek","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2026-01","release_date":"2026-04-24","last_updated":"2026-04-24","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":8192},"cost":{"input":1.74,"output":3.48,"cache_read":0.14}},"kimi-k2.5":{"id":"kimi-k2.5","name":"Kimi-K2.5","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"1970-01-01","last_updated":"1970-01-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":128000},"cost":{"input":0.6,"output":3,"cache_read":0.1}},"claude-opus-4-7":{"id":"claude-opus-4-7","name":"Claude Opus 4.7","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2026-01-31","release_date":"2026-04-16","last_updated":"2026-04-16","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":128000},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25}},"grok-4-1-fast-reasoning":{"id":"grok-4-1-fast-reasoning","name":"Grok 4.1 Fast (Reasoning)","family":"grok","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-11","release_date":"2025-11-25","last_updated":"2025-11-25","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":2000000,"output":128000},"cost":{"input":0.2,"output":0.5,"cache_read":0.05}},"grok-code-fast-1":{"id":"grok-code-fast-1","name":"Grok 4.1 Fast (Reasoning)","family":"grok","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2023-10","release_date":"2025-08-28","last_updated":"2025-08-28","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":128000},"cost":{"input":0.2,"output":1.5,"cache_read":0.02}}}},"anthropic":{"id":"anthropic","env":["ANTHROPIC_API_KEY"],"npm":"@ai-sdk/anthropic","name":"Anthropic","doc":"https://docs.anthropic.com/en/docs/about-claude/models","models":{"claude-opus-4-5":{"id":"claude-opus-4-5","name":"Claude Opus 4.5 (latest)","family":"claude-opus","attachment":true,"reasoning":true,"reasoning_options":[{"type":"effort","values":["low","medium","high"]},{"type":"budget_tokens","min":1024}],"tool_call":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-11-24","last_updated":"2025-11-24","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25}},"claude-sonnet-4-6":{"id":"claude-sonnet-4-6","name":"Claude Sonnet 4.6","family":"claude-sonnet","attachment":true,"reasoning":true,"reasoning_options":[{"type":"effort","values":["low","medium","high","max"]},{"type":"budget_tokens","min":1024}],"tool_call":true,"temperature":true,"knowledge":"2025-08-31","release_date":"2026-02-17","last_updated":"2026-03-13","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":64000},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75}},"claude-haiku-4-5-20251001":{"id":"claude-haiku-4-5-20251001","name":"Claude Haiku 4.5","family":"claude-haiku","attachment":true,"reasoning":true,"reasoning_options":[{"type":"budget_tokens","min":1024}],"tool_call":true,"temperature":true,"knowledge":"2025-02-28","release_date":"2025-10-15","last_updated":"2025-10-15","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":1,"output":5,"cache_read":0.1,"cache_write":1.25}},"claude-sonnet-4-0":{"id":"claude-sonnet-4-0","name":"Claude Sonnet 4 (latest)","family":"claude-sonnet","attachment":true,"reasoning":true,"reasoning_options":[{"type":"budget_tokens","min":1024}],"tool_call":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-05-22","last_updated":"2025-05-22","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75}},"claude-haiku-4-5":{"id":"claude-haiku-4-5","name":"Claude Haiku 4.5 (latest)","family":"claude-haiku","attachment":true,"reasoning":true,"reasoning_options":[{"type":"budget_tokens","min":1024}],"tool_call":true,"temperature":true,"knowledge":"2025-02-28","release_date":"2025-10-15","last_updated":"2025-10-15","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":1,"output":5,"cache_read":0.1,"cache_write":1.25}},"claude-opus-4-20250514":{"id":"claude-opus-4-20250514","name":"Claude Opus 4","family":"claude-opus","attachment":true,"reasoning":true,"reasoning_options":[{"type":"budget_tokens","min":1024}],"tool_call":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-05-22","last_updated":"2025-05-22","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":32000},"cost":{"input":15,"output":75,"cache_read":1.5,"cache_write":18.75}},"claude-opus-4-1":{"id":"claude-opus-4-1","name":"Claude Opus 4.1 (latest)","family":"claude-opus","attachment":true,"reasoning":true,"reasoning_options":[{"type":"budget_tokens","min":1024}],"tool_call":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":32000},"cost":{"input":15,"output":75,"cache_read":1.5,"cache_write":18.75}},"claude-3-opus-20240229":{"id":"claude-3-opus-20240229","name":"Claude Opus 3","family":"claude-opus","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2023-08-31","release_date":"2024-02-29","last_updated":"2024-02-29","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":4096},"status":"deprecated","cost":{"input":15,"output":75,"cache_read":1.5,"cache_write":18.75}},"claude-3-5-haiku-latest":{"id":"claude-3-5-haiku-latest","name":"Claude Haiku 3.5 (latest)","family":"claude-haiku","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-07-31","release_date":"2024-10-22","last_updated":"2024-10-22","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":8192},"cost":{"input":0.8,"output":4,"cache_read":0.08,"cache_write":1}},"claude-sonnet-4-5-20250929":{"id":"claude-sonnet-4-5-20250929","name":"Claude Sonnet 4.5","family":"claude-sonnet","attachment":true,"reasoning":true,"reasoning_options":[{"type":"budget_tokens","min":1024}],"tool_call":true,"temperature":true,"knowledge":"2025-07-31","release_date":"2025-09-29","last_updated":"2025-09-29","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75}},"claude-3-5-haiku-20241022":{"id":"claude-3-5-haiku-20241022","name":"Claude Haiku 3.5","family":"claude-haiku","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-07-31","release_date":"2024-10-22","last_updated":"2024-10-22","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":8192},"status":"deprecated","cost":{"input":0.8,"output":4,"cache_read":0.08,"cache_write":1}},"claude-opus-4-1-20250805":{"id":"claude-opus-4-1-20250805","name":"Claude Opus 4.1","family":"claude-opus","attachment":true,"reasoning":true,"reasoning_options":[{"type":"budget_tokens","min":1024}],"tool_call":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":32000},"cost":{"input":15,"output":75,"cache_read":1.5,"cache_write":18.75}},"claude-3-7-sonnet-20250219":{"id":"claude-3-7-sonnet-20250219","name":"Claude Sonnet 3.7","family":"claude-sonnet","attachment":true,"reasoning":true,"reasoning_options":[{"type":"budget_tokens","min":1024}],"tool_call":true,"temperature":true,"knowledge":"2024-10-31","release_date":"2025-02-19","last_updated":"2025-02-19","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"status":"deprecated","cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75}},"claude-3-5-sonnet-20240620":{"id":"claude-3-5-sonnet-20240620","name":"Claude Sonnet 3.5","family":"claude-sonnet","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-04-30","release_date":"2024-06-20","last_updated":"2024-06-20","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":8192},"status":"deprecated","cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75}},"claude-3-5-sonnet-20241022":{"id":"claude-3-5-sonnet-20241022","name":"Claude Sonnet 3.5 v2","family":"claude-sonnet","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-04-30","release_date":"2024-10-22","last_updated":"2024-10-22","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":8192},"status":"deprecated","cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75}},"claude-opus-4-5-20251101":{"id":"claude-opus-4-5-20251101","name":"Claude Opus 4.5","family":"claude-opus","attachment":true,"reasoning":true,"reasoning_options":[{"type":"effort","values":["low","medium","high"]},{"type":"budget_tokens","min":1024}],"tool_call":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-11-01","last_updated":"2025-11-01","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25}},"claude-opus-4-8":{"id":"claude-opus-4-8","name":"Claude Opus 4.8","family":"claude-opus","attachment":true,"reasoning":true,"reasoning_options":[{"type":"effort","values":["low","medium","high","xhigh","max"]}],"tool_call":true,"temperature":false,"release_date":"2026-05-28","last_updated":"2026-05-28","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"experimental":{"modes":{"fast":{"cost":{"input":10,"output":50,"cache_read":1,"cache_write":12.5},"provider":{"body":{"speed":"fast"},"headers":{"anthropic-beta":"fast-mode-2026-02-01"}}}}},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25}},"claude-3-haiku-20240307":{"id":"claude-3-haiku-20240307","name":"Claude Haiku 3","family":"claude-haiku","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2023-08-31","release_date":"2024-03-13","last_updated":"2024-03-13","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":4096},"status":"deprecated","cost":{"input":0.25,"output":1.25,"cache_read":0.03,"cache_write":0.3}},"claude-sonnet-4-20250514":{"id":"claude-sonnet-4-20250514","name":"Claude Sonnet 4","family":"claude-sonnet","attachment":true,"reasoning":true,"reasoning_options":[{"type":"budget_tokens","min":1024}],"tool_call":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-05-22","last_updated":"2025-05-22","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75}},"claude-sonnet-4-5":{"id":"claude-sonnet-4-5","name":"Claude Sonnet 4.5 (latest)","family":"claude-sonnet","attachment":true,"reasoning":true,"reasoning_options":[{"type":"budget_tokens","min":1024}],"tool_call":true,"temperature":true,"knowledge":"2025-07-31","release_date":"2025-09-29","last_updated":"2025-09-29","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75}},"claude-opus-4-6":{"id":"claude-opus-4-6","name":"Claude Opus 4.6","family":"claude-opus","attachment":true,"reasoning":true,"reasoning_options":[{"type":"effort","values":["low","medium","high","max"]},{"type":"budget_tokens","min":1024}],"tool_call":true,"temperature":true,"knowledge":"2025-05-31","release_date":"2026-02-05","last_updated":"2026-03-13","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"experimental":{"modes":{"fast":{"cost":{"input":30,"output":150,"cache_read":3,"cache_write":37.5},"provider":{"body":{"speed":"fast"},"headers":{"anthropic-beta":"fast-mode-2026-02-01"}}}}},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25}},"claude-opus-4-7":{"id":"claude-opus-4-7","name":"Claude Opus 4.7","family":"claude-opus","attachment":true,"reasoning":true,"reasoning_options":[{"type":"effort","values":["low","medium","high","xhigh","max"]}],"tool_call":true,"temperature":false,"knowledge":"2026-01-31","release_date":"2026-04-16","last_updated":"2026-04-16","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"experimental":{"modes":{"fast":{"cost":{"input":30,"output":150,"cache_read":3,"cache_write":37.5},"provider":{"body":{"speed":"fast"},"headers":{"anthropic-beta":"fast-mode-2026-02-01"}}}}},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25}},"claude-3-sonnet-20240229":{"id":"claude-3-sonnet-20240229","name":"Claude Sonnet 3","family":"claude-sonnet","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2023-08-31","release_date":"2024-03-04","last_updated":"2024-03-04","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":4096},"status":"deprecated","cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":0.3}},"claude-opus-4-0":{"id":"claude-opus-4-0","name":"Claude Opus 4 (latest)","family":"claude-opus","attachment":true,"reasoning":true,"reasoning_options":[{"type":"budget_tokens","min":1024}],"tool_call":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-05-22","last_updated":"2025-05-22","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":32000},"cost":{"input":15,"output":75,"cache_read":1.5,"cache_write":18.75}}}},"alibaba":{"id":"alibaba","env":["DASHSCOPE_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://dashscope-intl.aliyuncs.com/compatible-mode/v1","name":"Alibaba","doc":"https://www.alibabacloud.com/help/en/model-studio/models","models":{"qwen3-asr-flash":{"id":"qwen3-asr-flash","name":"Qwen3-ASR Flash","family":"qwen","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"knowledge":"2024-04","release_date":"2025-09-08","last_updated":"2025-09-08","modalities":{"input":["audio"],"output":["text"]},"open_weights":false,"limit":{"context":53248,"output":4096},"cost":{"input":0.035,"output":0.035}},"qwen3.5-122b-a10b":{"id":"qwen3.5-122b-a10b","name":"Qwen3.5 122B-A10B","family":"qwen","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-02-23","last_updated":"2026-02-23","modalities":{"input":["text","image","video","audio"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":65536},"cost":{"input":0.4,"output":3.2}},"qwen3-next-80b-a3b-instruct":{"id":"qwen3-next-80b-a3b-instruct","name":"Qwen3-Next 80B-A3B Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-09","last_updated":"2025-09","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":32768},"cost":{"input":0.5,"output":2}},"qwen2-5-vl-72b-instruct":{"id":"qwen2-5-vl-72b-instruct","name":"Qwen2.5-VL 72B Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-04","release_date":"2024-09","last_updated":"2024-09","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":8192},"cost":{"input":2.8,"output":8.4}},"qwen3-32b":{"id":"qwen3-32b","name":"Qwen3 32B","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-04","last_updated":"2025-04","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":16384},"cost":{"input":0.7,"output":2.8,"reasoning":8.4}},"qwen3-coder-30b-a3b-instruct":{"id":"qwen3-coder-30b-a3b-instruct","name":"Qwen3-Coder 30B-A3B Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-04","last_updated":"2025-04","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":65536},"cost":{"input":0.45,"output":2.25}},"qwen-flash":{"id":"qwen-flash","name":"Qwen Flash","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-04","release_date":"2025-07-28","last_updated":"2025-07-28","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":32768},"cost":{"input":0.05,"output":0.4}},"qwen3.6-27b":{"id":"qwen3.6-27b","name":"Qwen3.6 27B","family":"qwen","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-04-22","last_updated":"2026-04-22","modalities":{"input":["text","image","video","audio"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":65536},"cost":{"input":0.6,"output":3.6}},"qwen3.5-plus":{"id":"qwen3.5-plus","name":"Qwen3.5 Plus","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2026-02-16","last_updated":"2026-02-16","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":65536},"cost":{"input":0.4,"output":2.4,"reasoning":2.4}},"qwen-plus-character-ja":{"id":"qwen-plus-character-ja","name":"Qwen Plus Character (Japanese)","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-04","release_date":"2024-01","last_updated":"2024-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":8192,"output":512},"cost":{"input":0.5,"output":1.4}},"qwen3-livetranslate-flash-realtime":{"id":"qwen3-livetranslate-flash-realtime","name":"Qwen3-LiveTranslate Flash Realtime","family":"qwen","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2024-04","release_date":"2025-09-22","last_updated":"2025-09-22","modalities":{"input":["text","image","audio","video"],"output":["text","audio"]},"open_weights":false,"limit":{"context":53248,"output":4096},"cost":{"input":10,"output":10,"input_audio":10,"output_audio":38}},"qwen3-235b-a22b":{"id":"qwen3-235b-a22b","name":"Qwen3 235B-A22B","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-04","last_updated":"2025-04","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":16384},"cost":{"input":0.7,"output":2.8,"reasoning":8.4}},"qwen3-max":{"id":"qwen3-max","name":"Qwen3 Max","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-09-23","last_updated":"2025-09-23","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"output":65536},"cost":{"input":1.2,"output":6}},"qwen2-5-72b-instruct":{"id":"qwen2-5-72b-instruct","name":"Qwen2.5 72B Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-04","release_date":"2024-09","last_updated":"2024-09","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":8192},"cost":{"input":1.4,"output":5.6}},"qwen3-coder-plus":{"id":"qwen3-coder-plus","name":"Qwen3 Coder Plus","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-07-23","last_updated":"2025-07-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1048576,"output":65536},"cost":{"input":1,"output":5}},"qwen3-14b":{"id":"qwen3-14b","name":"Qwen3 14B","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-04","last_updated":"2025-04","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":8192},"cost":{"input":0.35,"output":1.4,"reasoning":4.2}},"qwen3-omni-flash":{"id":"qwen3-omni-flash","name":"Qwen3-Omni Flash","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-04","release_date":"2025-09-15","last_updated":"2025-09-15","modalities":{"input":["text","image","audio","video"],"output":["text","audio"]},"open_weights":false,"limit":{"context":65536,"output":16384},"cost":{"input":0.43,"output":1.66,"input_audio":3.81,"output_audio":15.11}},"qwen3-vl-235b-a22b":{"id":"qwen3-vl-235b-a22b","name":"Qwen3-VL 235B-A22B","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-04","last_updated":"2025-04","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":32768},"cost":{"input":0.7,"output":2.8,"reasoning":8.4}},"qwen3-8b":{"id":"qwen3-8b","name":"Qwen3 8B","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-04","last_updated":"2025-04","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":8192},"cost":{"input":0.18,"output":0.7,"reasoning":2.1}},"qwen3.7-max":{"id":"qwen3.7-max","name":"Qwen3.7 Max","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-05-21","last_updated":"2026-05-21","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":65536},"cost":{"input":2.5,"output":7.5,"cache_read":0.5,"cache_write":3.125}},"qwen-vl-plus":{"id":"qwen-vl-plus","name":"Qwen-VL Plus","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-04","release_date":"2024-01-25","last_updated":"2025-08-15","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":8192},"cost":{"input":0.21,"output":0.63}},"qwen3.6-plus":{"id":"qwen3.6-plus","name":"Qwen3.6 Plus","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2026-04-02","last_updated":"2026-04-02","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":65536},"cost":{"input":0.5,"output":3,"cache_read":0.05,"cache_write":0.625,"tiers":[{"input":2,"output":6,"cache_read":0.2,"cache_write":2.5,"tier":{"type":"context","size":256000}}],"context_over_200k":{"input":2,"output":6,"cache_read":0.2,"cache_write":2.5}}},"qwen3-vl-plus":{"id":"qwen3-vl-plus","name":"Qwen3-VL Plus","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-09-23","last_updated":"2025-09-23","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"output":32768},"cost":{"input":0.2,"output":1.6,"reasoning":4.8}},"qwen-max":{"id":"qwen-max","name":"Qwen Max","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-04","release_date":"2024-04-03","last_updated":"2025-01-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":32768,"output":8192},"cost":{"input":1.6,"output":6.4}},"qwen-omni-turbo":{"id":"qwen-omni-turbo","name":"Qwen-Omni Turbo","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-04","release_date":"2025-01-19","last_updated":"2025-03-26","modalities":{"input":["text","image","audio","video"],"output":["text","audio"]},"open_weights":false,"limit":{"context":32768,"output":2048},"cost":{"input":0.07,"output":0.27,"input_audio":4.44,"output_audio":8.89}},"qwen3-coder-480b-a35b-instruct":{"id":"qwen3-coder-480b-a35b-instruct","name":"Qwen3-Coder 480B-A35B Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-04","last_updated":"2025-04","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":65536},"cost":{"input":1.5,"output":7.5}},"qwen3-next-80b-a3b-thinking":{"id":"qwen3-next-80b-a3b-thinking","name":"Qwen3-Next 80B-A3B (Thinking)","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-09","last_updated":"2025-09","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":32768},"cost":{"input":0.5,"output":6}},"qwen3-coder-flash":{"id":"qwen3-coder-flash","name":"Qwen3 Coder Flash","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-07-28","last_updated":"2025-07-28","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":65536},"cost":{"input":0.3,"output":1.5}},"qwen3.5-35b-a3b":{"id":"qwen3.5-35b-a3b","name":"Qwen3.5 35B-A3B","family":"qwen","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-02-23","last_updated":"2026-02-23","modalities":{"input":["text","image","video","audio"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":65536},"cost":{"input":0.25,"output":2}},"qwen3.6-flash":{"id":"qwen3.6-flash","name":"Qwen3.6 Flash","family":"qwen3.6","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-04-27","last_updated":"2026-04-27","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":65536},"cost":{"input":0.1875,"output":1.125,"cache_write":0.234375}},"qwen-turbo":{"id":"qwen-turbo","name":"Qwen Turbo","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-04","release_date":"2024-11-01","last_updated":"2025-04-28","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":16384},"cost":{"input":0.05,"output":0.2,"reasoning":0.5}},"qwq-plus":{"id":"qwq-plus","name":"QwQ Plus","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-04","release_date":"2025-03-05","last_updated":"2025-03-05","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":8192},"cost":{"input":0.8,"output":2.4}},"qwen3-vl-30b-a3b":{"id":"qwen3-vl-30b-a3b","name":"Qwen3-VL 30B-A3B","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-04","last_updated":"2025-04","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":32768},"cost":{"input":0.2,"output":0.8,"reasoning":2.4}},"qwen3.6-35b-a3b":{"id":"qwen3.6-35b-a3b","name":"Qwen3.6 35B-A3B","family":"qwen","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-04-17","last_updated":"2026-04-17","modalities":{"input":["text","image","video","audio"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":65536},"cost":{"input":0.248,"output":1.485}},"qwen-vl-ocr":{"id":"qwen-vl-ocr","name":"Qwen-VL OCR","family":"qwen","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2024-04","release_date":"2024-10-28","last_updated":"2025-04-13","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":34096,"output":4096},"cost":{"input":0.72,"output":0.72}},"qwen2-5-omni-7b":{"id":"qwen2-5-omni-7b","name":"Qwen2.5-Omni 7B","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-04","release_date":"2024-12","last_updated":"2024-12","modalities":{"input":["text","image","audio","video"],"output":["text","audio"]},"open_weights":true,"limit":{"context":32768,"output":2048},"cost":{"input":0.1,"output":0.4,"input_audio":6.76}},"qwen-mt-turbo":{"id":"qwen-mt-turbo","name":"Qwen-MT Turbo","family":"qwen","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2024-04","release_date":"2025-01","last_updated":"2025-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":16384,"output":8192},"cost":{"input":0.16,"output":0.49}},"qwen2-5-32b-instruct":{"id":"qwen2-5-32b-instruct","name":"Qwen2.5 32B Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-04","release_date":"2024-09","last_updated":"2024-09","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":8192},"cost":{"input":0.7,"output":2.8}},"qwen3.6-max-preview":{"id":"qwen3.6-max-preview","name":"Qwen3.6 Max Preview","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2026-04-20","last_updated":"2026-04-20","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"output":65536},"cost":{"input":1.3,"output":7.8,"cache_read":0.13,"cache_write":1.625}},"qwen-vl-max":{"id":"qwen-vl-max","name":"Qwen-VL Max","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-04","release_date":"2024-04-08","last_updated":"2025-08-13","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":8192},"cost":{"input":0.8,"output":3.2}},"qwen3.5-397b-a17b":{"id":"qwen3.5-397b-a17b","name":"Qwen3.5 397B-A17B","family":"qwen","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-02-15","last_updated":"2026-02-15","modalities":{"input":["text","image","video","audio"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":65536},"cost":{"input":0.6,"output":3.6}},"qwen3-omni-flash-realtime":{"id":"qwen3-omni-flash-realtime","name":"Qwen3-Omni Flash Realtime","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-04","release_date":"2025-09-15","last_updated":"2025-09-15","modalities":{"input":["text","image","audio","video"],"output":["text","audio"]},"open_weights":false,"limit":{"context":65536,"output":16384},"cost":{"input":0.52,"output":1.99,"input_audio":4.57,"output_audio":18.13}},"qwen2-5-14b-instruct":{"id":"qwen2-5-14b-instruct","name":"Qwen2.5 14B Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-04","release_date":"2024-09","last_updated":"2024-09","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":8192},"cost":{"input":0.35,"output":1.4}},"qwen3.7-plus":{"id":"qwen3.7-plus","name":"Qwen3.7 Plus","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2026-06-02","last_updated":"2026-06-04","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":16384},"cost":{"input":0.5,"output":3,"cache_read":0.05,"cache_write":0.625,"tiers":[{"input":2,"output":6,"cache_read":0.2,"cache_write":2.5,"tier":{"type":"context","size":128000}}]}},"qwen3.5-27b":{"id":"qwen3.5-27b","name":"Qwen3.5 27B","family":"qwen","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-02-23","last_updated":"2026-02-23","modalities":{"input":["text","image","video","audio"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":65536},"cost":{"input":0.3,"output":2.4}},"qwen-omni-turbo-realtime":{"id":"qwen-omni-turbo-realtime","name":"Qwen-Omni Turbo Realtime","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-04","release_date":"2025-05-08","last_updated":"2025-05-08","modalities":{"input":["text","image","audio"],"output":["text","audio"]},"open_weights":false,"limit":{"context":32768,"output":2048},"cost":{"input":0.27,"output":1.07,"input_audio":4.44,"output_audio":8.89}},"qwen-mt-plus":{"id":"qwen-mt-plus","name":"Qwen-MT Plus","family":"qwen","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2024-04","release_date":"2025-01","last_updated":"2025-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":16384,"output":8192},"cost":{"input":2.46,"output":7.37}},"qvq-max":{"id":"qvq-max","name":"QVQ Max","family":"qvq","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-04","release_date":"2025-03-25","last_updated":"2025-03-25","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":8192},"cost":{"input":1.2,"output":4.8}},"qwen2-5-vl-7b-instruct":{"id":"qwen2-5-vl-7b-instruct","name":"Qwen2.5-VL 7B Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-04","release_date":"2024-09","last_updated":"2024-09","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":8192},"cost":{"input":0.35,"output":1.05}},"qwen-plus":{"id":"qwen-plus","name":"Qwen Plus","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-04","release_date":"2024-01-25","last_updated":"2025-09-11","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":32768},"cost":{"input":0.4,"output":1.2,"reasoning":4}},"qwen2-5-7b-instruct":{"id":"qwen2-5-7b-instruct","name":"Qwen2.5 7B Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-04","release_date":"2024-09","last_updated":"2024-09","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":8192},"cost":{"input":0.175,"output":0.7}}}},"xiaomi":{"id":"xiaomi","env":["XIAOMI_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://api.xiaomimimo.com/v1","name":"Xiaomi","doc":"https://platform.xiaomimimo.com/#/docs","models":{"mimo-v2-omni":{"id":"mimo-v2-omni","name":"MiMo-V2-Omni","family":"mimo","attachment":true,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2024-12","release_date":"2026-03-18","last_updated":"2026-03-18","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"output":131072},"cost":{"input":0.4,"output":2,"cache_read":0.08}},"mimo-v2-pro":{"id":"mimo-v2-pro","name":"MiMo-V2-Pro","family":"mimo","attachment":false,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2024-12","release_date":"2026-03-18","last_updated":"2026-03-18","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":131072},"cost":{"input":1,"output":3,"cache_read":0.2,"tiers":[{"input":2,"output":6,"cache_read":0.4,"tier":{"type":"context","size":256000}}],"context_over_200k":{"input":2,"output":6,"cache_read":0.4}}},"mimo-v2.5":{"id":"mimo-v2.5","name":"MiMo-V2.5","family":"mimo","attachment":true,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2024-12","release_date":"2026-04-22","last_updated":"2026-04-22","modalities":{"input":["text","image","audio","video"],"output":["text"]},"open_weights":true,"limit":{"context":1048576,"output":131072},"cost":{"input":0.4,"output":2,"cache_read":0.08,"tiers":[{"input":0.8,"output":4,"cache_read":0.16,"tier":{"type":"context","size":256000}}],"context_over_200k":{"input":0.8,"output":4,"cache_read":0.16}}},"mimo-v2-flash":{"id":"mimo-v2-flash","name":"MiMo-V2-Flash","family":"mimo","attachment":false,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2024-12-01","release_date":"2025-12-16","last_updated":"2026-02-04","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":65536},"cost":{"input":0.1,"output":0.3,"cache_read":0.01}},"mimo-v2.5-pro":{"id":"mimo-v2.5-pro","name":"MiMo-V2.5-Pro","family":"mimo","attachment":false,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2024-12","release_date":"2026-04-22","last_updated":"2026-04-22","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1048576,"output":131072},"cost":{"input":1,"output":3,"cache_read":0.2,"tiers":[{"input":2,"output":6,"cache_read":0.4,"tier":{"type":"context","size":256000}}],"context_over_200k":{"input":2,"output":6,"cache_read":0.4}}}}},"mistral":{"id":"mistral","env":["MISTRAL_API_KEY"],"npm":"@ai-sdk/mistral","name":"Mistral","doc":"https://docs.mistral.ai/getting-started/models/","models":{"mistral-large-2411":{"id":"mistral-large-2411","name":"Mistral Large 2.1","family":"mistral-large","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-11","release_date":"2024-11-01","last_updated":"2024-11-04","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":16384},"cost":{"input":2,"output":6}},"mistral-medium-2508":{"id":"mistral-medium-2508","name":"Mistral Medium 3.1","family":"mistral-medium","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-05","release_date":"2025-08-12","last_updated":"2025-08-12","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"output":262144},"cost":{"input":0.4,"output":2}},"mistral-medium-latest":{"id":"mistral-medium-latest","name":"Mistral Medium (latest)","family":"mistral-medium","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-05","release_date":"2025-08-12","last_updated":"2025-08-12","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"output":262144},"cost":{"input":0.4,"output":2}},"devstral-medium-latest":{"id":"devstral-medium-latest","name":"Devstral 2 (latest)","family":"devstral","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-12","release_date":"2025-12-02","last_updated":"2025-12-02","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"status":"deprecated","cost":{"input":0.4,"output":2}},"mistral-small-2603":{"id":"mistral-small-2603","name":"Mistral Small 4","family":"mistral-small","attachment":true,"reasoning":true,"reasoning_options":[{"type":"effort","values":["none","high"]}],"tool_call":true,"temperature":true,"knowledge":"2025-06","release_date":"2026-03-16","last_updated":"2026-03-16","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"output":256000},"cost":{"input":0.15,"output":0.6}},"mistral-medium-2604":{"id":"mistral-medium-2604","name":"Mistral Medium 3.5","family":"mistral-medium","attachment":true,"reasoning":true,"reasoning_options":[{"type":"effort","values":["none","high"]}],"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-04-29","last_updated":"2026-04-29","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":1.5,"output":7.5}},"mistral-embed":{"id":"mistral-embed","name":"Mistral Embed","family":"mistral-embed","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2023-12-11","last_updated":"2023-12-11","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":8000,"output":3072},"cost":{"input":0.1,"output":0}},"ministral-8b-latest":{"id":"ministral-8b-latest","name":"Ministral 8B (latest)","family":"ministral","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2024-10-01","last_updated":"2024-10-04","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":128000},"cost":{"input":0.1,"output":0.1}},"mistral-nemo":{"id":"mistral-nemo","name":"Mistral Nemo","family":"mistral-nemo","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-07","release_date":"2024-07-01","last_updated":"2024-07-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":128000},"cost":{"input":0.15,"output":0.15}},"mistral-large-2512":{"id":"mistral-large-2512","name":"Mistral Large 3","family":"mistral-large","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-11","release_date":"2024-11-01","last_updated":"2025-12-02","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.5,"output":1.5}},"open-mistral-7b":{"id":"open-mistral-7b","name":"Mistral 7B","family":"mistral","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2023-12","release_date":"2023-09-27","last_updated":"2023-09-27","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":8000,"output":8000},"cost":{"input":0.25,"output":0.25}},"labs-devstral-small-2512":{"id":"labs-devstral-small-2512","name":"Devstral Small 2","family":"devstral","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-12","release_date":"2025-12-09","last_updated":"2025-12-09","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"output":256000},"status":"deprecated","cost":{"input":0,"output":0}},"mistral-large-latest":{"id":"mistral-large-latest","name":"Mistral Large (latest)","family":"mistral-large","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-11","release_date":"2024-11-01","last_updated":"2025-12-02","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.5,"output":1.5}},"mistral-medium-2505":{"id":"mistral-medium-2505","name":"Mistral Medium 3","family":"mistral-medium","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-05","release_date":"2025-05-07","last_updated":"2025-05-07","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":131072},"cost":{"input":0.4,"output":2}},"magistral-small":{"id":"magistral-small","name":"Magistral Small","family":"magistral-small","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-06","release_date":"2025-03-17","last_updated":"2025-03-17","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":128000},"cost":{"input":0.5,"output":1.5}},"devstral-latest":{"id":"devstral-latest","name":"Devstral 2","family":"devstral","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-12","release_date":"2025-12-09","last_updated":"2025-12-09","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"status":"deprecated","cost":{"input":0.4,"output":2}},"open-mixtral-8x22b":{"id":"open-mixtral-8x22b","name":"Mixtral 8x22B","family":"mixtral","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-04","release_date":"2024-04-17","last_updated":"2024-04-17","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":64000,"output":64000},"cost":{"input":2,"output":6}},"mistral-small-2506":{"id":"mistral-small-2506","name":"Mistral Small 3.2","family":"mistral-small","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-03","release_date":"2025-06-20","last_updated":"2025-06-20","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":16384},"cost":{"input":0.1,"output":0.3}},"pixtral-12b":{"id":"pixtral-12b","name":"Pixtral 12B","family":"pixtral","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-09","release_date":"2024-09-01","last_updated":"2024-09-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":128000},"cost":{"input":0.15,"output":0.15}},"devstral-small-2507":{"id":"devstral-small-2507","name":"Devstral Small","family":"devstral","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-05","release_date":"2025-07-10","last_updated":"2025-07-10","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":128000},"status":"deprecated","cost":{"input":0.1,"output":0.3}},"devstral-2512":{"id":"devstral-2512","name":"Devstral 2","family":"devstral","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-12","release_date":"2025-12-09","last_updated":"2025-12-09","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"status":"deprecated","cost":{"input":0.4,"output":2}},"codestral-latest":{"id":"codestral-latest","name":"Codestral (latest)","family":"codestral","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2024-05-29","last_updated":"2025-01-04","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"output":4096},"cost":{"input":0.3,"output":0.9}},"pixtral-large-latest":{"id":"pixtral-large-latest","name":"Pixtral Large (latest)","family":"pixtral","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-11","release_date":"2024-11-01","last_updated":"2024-11-04","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":128000},"cost":{"input":2,"output":6}},"open-mistral-nemo":{"id":"open-mistral-nemo","name":"Open Mistral Nemo","family":"mistral-nemo","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-07","release_date":"2024-07-01","last_updated":"2024-07-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":128000},"status":"deprecated","cost":{"input":0.15,"output":0.15}},"ministral-3b-latest":{"id":"ministral-3b-latest","name":"Ministral 3B (latest)","family":"ministral","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2024-10-01","last_updated":"2024-10-04","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":128000},"cost":{"input":0.04,"output":0.04}},"devstral-small-2505":{"id":"devstral-small-2505","name":"Devstral Small 2505","family":"devstral","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-05","release_date":"2025-05-07","last_updated":"2025-05-07","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":128000},"status":"deprecated","cost":{"input":0.1,"output":0.3}},"open-mixtral-8x7b":{"id":"open-mixtral-8x7b","name":"Mixtral 8x7B","family":"mixtral","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-01","release_date":"2023-12-11","last_updated":"2023-12-11","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":32000,"output":32000},"cost":{"input":0.7,"output":0.7}},"magistral-medium-latest":{"id":"magistral-medium-latest","name":"Magistral Medium (latest)","family":"magistral-medium","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-06","release_date":"2025-03-17","last_updated":"2025-03-20","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":16384},"cost":{"input":2,"output":5}},"mistral-small-latest":{"id":"mistral-small-latest","name":"Mistral Small (latest)","family":"mistral-small","attachment":true,"reasoning":true,"reasoning_options":[{"type":"effort","values":["none","high"]}],"tool_call":true,"temperature":true,"knowledge":"2025-06","release_date":"2026-03-16","last_updated":"2026-03-16","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"output":256000},"cost":{"input":0.15,"output":0.6}},"devstral-medium-2507":{"id":"devstral-medium-2507","name":"Devstral Medium","family":"devstral","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-05","release_date":"2025-07-10","last_updated":"2025-07-10","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":128000},"status":"deprecated","cost":{"input":0.4,"output":2}}}},"vivgrid":{"id":"vivgrid","env":["VIVGRID_API_KEY"],"npm":"@ai-sdk/openai","api":"https://api.vivgrid.com/v1","name":"Vivgrid","doc":"https://docs.vivgrid.com/models","models":{"gpt-5-mini":{"id":"gpt-5-mini","name":"GPT-5 Mini","family":"gpt-mini","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2024-05-30","release_date":"2025-08-07","last_updated":"2025-08-07","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":272000,"output":128000},"provider":{"npm":"@ai-sdk/openai-compatible"},"cost":{"input":0.25,"output":2,"cache_read":0.03}},"gemini-3.1-flash-lite-preview":{"id":"gemini-3.1-flash-lite-preview","name":"Gemini 3.1 Flash Lite Preview","family":"gemini-flash-lite","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-03-03","last_updated":"2026-03-03","modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"provider":{"npm":"@ai-sdk/openai-compatible"},"cost":{"input":0.25,"output":1.5,"cache_read":0.025,"cache_write":1}},"deepseek-v3.2":{"id":"deepseek-v3.2","name":"DeepSeek-V3.2","family":"deepseek","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-07","release_date":"2025-12-01","last_updated":"2025-12-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":128000},"provider":{"npm":"@ai-sdk/openai-compatible"},"cost":{"input":0.28,"output":0.42}},"gpt-5.4":{"id":"gpt-5.4","name":"GPT-5.4","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-03-05","last_updated":"2026-03-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"provider":{"npm":"@ai-sdk/openai-compatible"},"cost":{"input":2.5,"output":15,"cache_read":0.25}},"gpt-5.5":{"id":"gpt-5.5","name":"GPT-5.5","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-12-01","release_date":"2026-04-23","last_updated":"2026-04-23","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1050000,"input":922000,"output":128000},"provider":{"npm":"@ai-sdk/openai-compatible"},"cost":{"input":5,"output":30,"cache_read":0.5,"tiers":[{"input":10,"output":45,"cache_read":1,"tier":{"type":"context","size":272000}}],"context_over_200k":{"input":10,"output":45,"cache_read":1}}},"gpt-5.1-codex-max":{"id":"gpt-5.1-codex-max","name":"GPT-5.1 Codex Max","family":"gpt-codex","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-11-13","last_updated":"2025-11-13","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":1.25,"output":10,"cache_read":0.125}},"gpt-5.4-nano":{"id":"gpt-5.4-nano","name":"GPT-5.4 Nano","family":"gpt-nano","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-03-17","last_updated":"2026-03-17","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"provider":{"npm":"@ai-sdk/openai-compatible"},"cost":{"input":0.2,"output":1.25,"cache_read":0.02}},"gemini-3.1-pro-preview":{"id":"gemini-3.1-pro-preview","name":"Gemini 3.1 Pro Preview","family":"gemini-pro","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-02-19","last_updated":"2026-02-19","modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"provider":{"npm":"@ai-sdk/openai-compatible"},"cost":{"input":2,"output":12,"cache_read":0.2,"tiers":[{"input":4,"output":18,"cache_read":0.4,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":4,"output":18,"cache_read":0.4}}},"gpt-5.3-codex":{"id":"gpt-5.3-codex","name":"GPT-5.3 Codex","family":"gpt-codex","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-02-24","last_updated":"2026-02-24","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":1.75,"output":14,"cache_read":0.175}},"gpt-5.2-codex":{"id":"gpt-5.2-codex","name":"GPT-5.2 Codex","family":"gpt-codex","attachment":false,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-01-14","last_updated":"2026-01-14","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":1.75,"output":14,"cache_read":0.175}},"gpt-5.1-codex":{"id":"gpt-5.1-codex","name":"GPT-5.1 Codex","family":"gpt-codex","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-11-13","last_updated":"2025-11-13","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":1.25,"output":10,"cache_read":0.125}},"gpt-5.4-mini":{"id":"gpt-5.4-mini","name":"GPT-5.4 Mini","family":"gpt-mini","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-03-17","last_updated":"2026-03-17","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"provider":{"npm":"@ai-sdk/openai-compatible"},"cost":{"input":0.75,"output":4.5,"cache_read":0.075}},"deepseek-v4-pro":{"id":"deepseek-v4-pro","name":"DeepSeek V4 Pro","family":"deepseek-thinking","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-05","release_date":"2026-04-24","last_updated":"2026-04-24","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1000000,"output":384000},"provider":{"npm":"@ai-sdk/openai-compatible"},"cost":{"input":0.435,"output":0.87,"cache_read":0.003625}}}},"databricks":{"id":"databricks","env":["DATABRICKS_HOST","DATABRICKS_TOKEN"],"npm":"@ai-sdk/openai-compatible","api":"https://${DATABRICKS_HOST}/ai-gateway/mlflow/v1","name":"Databricks","doc":"https://docs.databricks.com/aws/en/machine-learning/foundation-models/","models":{"databricks-claude-sonnet-4":{"id":"databricks-claude-sonnet-4","name":"Claude Sonnet 4.5","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-07-31","release_date":"2025-09-29","last_updated":"2025-09-29","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75}},"databricks-gpt-5-1":{"id":"databricks-gpt-5-1","name":"GPT-5.1","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-11-13","last_updated":"2025-11-13","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":1.25,"output":10,"cache_read":0.125}},"databricks-gpt-5-4-nano":{"id":"databricks-gpt-5-4-nano","name":"GPT-5.4 nano","family":"gpt-nano","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-03-17","last_updated":"2026-03-17","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":0.2,"output":1.25,"cache_read":0.02}},"databricks-gpt-5-nano":{"id":"databricks-gpt-5-nano","name":"GPT-5 Nano","family":"gpt-nano","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-05-30","release_date":"2025-08-07","last_updated":"2025-08-07","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":0.05,"output":0.4,"cache_read":0.005}},"databricks-gpt-5-mini":{"id":"databricks-gpt-5-mini","name":"GPT-5 Mini","family":"gpt-mini","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-05-30","release_date":"2025-08-07","last_updated":"2025-08-07","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":0.25,"output":2,"cache_read":0.025}},"databricks-gemini-2-5-pro":{"id":"databricks-gemini-2-5-pro","name":"Gemini 2.5 Pro","family":"gemini-pro","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-03-20","last_updated":"2025-06-05","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":1.25,"output":10,"cache_read":0.125,"tiers":[{"input":2.5,"output":15,"cache_read":0.25,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":2.5,"output":15,"cache_read":0.25}}},"databricks-gpt-5-4-mini":{"id":"databricks-gpt-5-4-mini","name":"GPT-5.4 mini","family":"gpt-mini","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-03-17","last_updated":"2026-03-17","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"experimental":{"modes":{"fast":{"cost":{"input":1.5,"output":9,"cache_read":0.15},"provider":{"body":{"service_tier":"priority"}}}}},"cost":{"input":0.75,"output":4.5,"cache_read":0.075}},"databricks-claude-opus-4-6":{"id":"databricks-claude-opus-4-6","name":"Claude Opus 4.6","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-05-31","release_date":"2026-02-05","last_updated":"2026-03-13","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"experimental":{"modes":{"fast":{"cost":{"input":30,"output":150,"cache_read":3,"cache_write":37.5},"provider":{"body":{"speed":"fast"},"headers":{"anthropic-beta":"fast-mode-2026-02-01"}}}}},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25}},"databricks-gpt-5":{"id":"databricks-gpt-5","name":"GPT-5","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-08-07","last_updated":"2025-08-07","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":1.25,"output":10,"cache_read":0.125}},"databricks-gpt-5-2":{"id":"databricks-gpt-5-2","name":"GPT-5.2","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2025-12-11","last_updated":"2025-12-11","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":1.75,"output":14,"cache_read":0.175}},"databricks-gemini-2-5-flash":{"id":"databricks-gemini-2-5-flash","name":"Gemini 2.5 Flash","family":"gemini-flash","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-03-20","last_updated":"2025-06-05","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":0.3,"output":2.5,"cache_read":0.03,"input_audio":1}},"databricks-claude-opus-4-7":{"id":"databricks-claude-opus-4-7","name":"Claude Opus 4.7","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2026-01-31","release_date":"2026-04-16","last_updated":"2026-04-16","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"experimental":{"modes":{"fast":{"cost":{"input":30,"output":150,"cache_read":3,"cache_write":37.5},"provider":{"body":{"speed":"fast"},"headers":{"anthropic-beta":"fast-mode-2026-02-01"}}}}},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25}},"databricks-gpt-oss-20b":{"id":"databricks-gpt-oss-20b","name":"GPT OSS 20B","family":"gpt-oss","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":32768},"cost":{"input":0.05,"output":0.2}},"databricks-gemini-3-flash":{"id":"databricks-gemini-3-flash","name":"Gemini 3 Flash Preview","family":"gemini-flash","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-12-17","last_updated":"2025-12-17","modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":0.5,"output":3,"cache_read":0.05,"input_audio":1}},"databricks-claude-opus-4-5":{"id":"databricks-claude-opus-4-5","name":"Claude Opus 4.5 (latest)","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-11-24","last_updated":"2025-11-24","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25}},"databricks-gpt-5-4":{"id":"databricks-gpt-5-4","name":"GPT-5.4","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-03-05","last_updated":"2026-03-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1050000,"input":922000,"output":128000},"experimental":{"modes":{"fast":{"cost":{"input":5,"output":30,"cache_read":0.5},"provider":{"body":{"service_tier":"priority"}}}}},"cost":{"input":2.5,"output":15,"cache_read":0.25,"tiers":[{"input":5,"output":22.5,"cache_read":0.5,"tier":{"type":"context","size":272000}}],"context_over_200k":{"input":5,"output":22.5,"cache_read":0.5}}},"databricks-gpt-oss-120b":{"id":"databricks-gpt-oss-120b","name":"GPT OSS 120B","family":"gpt-oss","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":32768},"cost":{"input":0.072,"output":0.28}},"databricks-claude-sonnet-4-6":{"id":"databricks-claude-sonnet-4-6","name":"Claude Sonnet 4.6","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-08-31","release_date":"2026-02-17","last_updated":"2026-03-13","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":64000},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75}},"databricks-gemini-3-1-flash-lite":{"id":"databricks-gemini-3-1-flash-lite","name":"Gemini 3.1 Flash Lite Preview","family":"gemini-flash-lite","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-03-03","last_updated":"2026-03-03","modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":0.25,"output":1.5,"cache_read":0.025,"input_audio":0.5}},"databricks-gemini-3-pro":{"id":"databricks-gemini-3-pro","name":"Gemini 3 Pro Preview","family":"gemini-pro","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-11-18","last_updated":"2025-11-18","modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":2,"output":12,"cache_read":0.2,"tiers":[{"input":4,"output":18,"cache_read":0.4,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":4,"output":18,"cache_read":0.4}}},"databricks-claude-opus-4-1":{"id":"databricks-claude-opus-4-1","name":"Claude Opus 4.1 (latest)","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":32000},"cost":{"input":15,"output":75,"cache_read":1.5,"cache_write":18.75}},"databricks-claude-sonnet-4-5":{"id":"databricks-claude-sonnet-4-5","name":"Claude Sonnet 4.5 (latest)","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-07-31","release_date":"2025-09-29","last_updated":"2025-09-29","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75}},"databricks-gpt-5-5":{"id":"databricks-gpt-5-5","name":"GPT-5.5","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-12-01","release_date":"2026-04-23","last_updated":"2026-04-23","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1050000,"input":922000,"output":128000},"experimental":{"modes":{"fast":{"cost":{"input":12.5,"output":75,"cache_read":1.25},"provider":{"body":{"service_tier":"priority"}}}}},"cost":{"input":5,"output":30,"cache_read":0.5,"tiers":[{"input":10,"output":45,"cache_read":1,"tier":{"type":"context","size":272000}}],"context_over_200k":{"input":10,"output":45,"cache_read":1}}},"databricks-claude-haiku-4-5":{"id":"databricks-claude-haiku-4-5","name":"Claude Haiku 4.5 (latest)","family":"claude-haiku","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-02-28","release_date":"2025-10-15","last_updated":"2025-10-15","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":1,"output":5,"cache_read":0.1,"cache_write":1.25}},"databricks-gemini-3-1-pro":{"id":"databricks-gemini-3-1-pro","name":"Gemini 3.1 Pro Preview Custom Tools","family":"gemini-pro","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-02-19","last_updated":"2026-02-19","modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":2,"output":12,"cache_read":0.2,"tiers":[{"input":4,"output":18,"cache_read":0.4,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":4,"output":18,"cache_read":0.4}}}}},"siliconflow-cn":{"id":"siliconflow-cn","env":["SILICONFLOW_CN_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://api.siliconflow.cn/v1","name":"SiliconFlow (China)","doc":"https://cloud.siliconflow.com/models","models":{"THUDM/GLM-4-9B-0414":{"id":"THUDM/GLM-4-9B-0414","name":"THUDM/GLM-4-9B-0414","family":"glm","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-04-18","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":33000,"output":33000},"cost":{"input":0.086,"output":0.086}},"THUDM/GLM-4-32B-0414":{"id":"THUDM/GLM-4-32B-0414","name":"THUDM/GLM-4-32B-0414","family":"glm","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-04-18","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":33000,"output":33000},"cost":{"input":0.27,"output":0.27}},"THUDM/GLM-Z1-9B-0414":{"id":"THUDM/GLM-Z1-9B-0414","name":"THUDM/GLM-Z1-9B-0414","family":"glm-z","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-04-18","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131000,"output":131000},"cost":{"input":0.086,"output":0.086}},"THUDM/GLM-Z1-32B-0414":{"id":"THUDM/GLM-Z1-32B-0414","name":"THUDM/GLM-Z1-32B-0414","family":"glm-z","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-04-18","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131000,"output":131000},"cost":{"input":0.14,"output":0.57}},"inclusionAI/Ring-flash-2.0":{"id":"inclusionAI/Ring-flash-2.0","name":"inclusionAI/Ring-flash-2.0","family":"ring","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-09-29","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131000,"output":131000},"cost":{"input":0.14,"output":0.57}},"inclusionAI/Ling-flash-2.0":{"id":"inclusionAI/Ling-flash-2.0","name":"inclusionAI/Ling-flash-2.0","family":"ling","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-09-18","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131000,"output":131000},"cost":{"input":0.14,"output":0.57}},"inclusionAI/Ling-mini-2.0":{"id":"inclusionAI/Ling-mini-2.0","name":"inclusionAI/Ling-mini-2.0","family":"ling","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-09-10","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131000,"output":131000},"cost":{"input":0.07,"output":0.28}},"zai-org/GLM-4.6":{"id":"zai-org/GLM-4.6","name":"zai-org/GLM-4.6","family":"glm","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-10-04","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":205000,"output":205000},"cost":{"input":0.5,"output":1.9}},"zai-org/GLM-4.6V":{"id":"zai-org/GLM-4.6V","name":"zai-org/GLM-4.6V","family":"glm","attachment":true,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-12-07","last_updated":"2025-12-07","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":131000,"output":131000},"cost":{"input":0.3,"output":0.9}},"zai-org/GLM-4.5V":{"id":"zai-org/GLM-4.5V","name":"zai-org/GLM-4.5V","family":"glm","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-08-13","last_updated":"2025-11-25","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":66000,"output":66000},"cost":{"input":0.14,"output":0.86}},"zai-org/GLM-4.5-Air":{"id":"zai-org/GLM-4.5-Air","name":"zai-org/GLM-4.5-Air","family":"glm-air","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-07-28","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131000,"output":131000},"cost":{"input":0.14,"output":0.86}},"moonshotai/Kimi-K2-Thinking":{"id":"moonshotai/Kimi-K2-Thinking","name":"moonshotai/Kimi-K2-Thinking","family":"kimi-thinking","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-11-07","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262000,"output":262000},"cost":{"input":0.55,"output":2.5}},"moonshotai/Kimi-K2-Instruct-0905":{"id":"moonshotai/Kimi-K2-Instruct-0905","name":"moonshotai/Kimi-K2-Instruct-0905","family":"kimi","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-09-08","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262000,"output":262000},"cost":{"input":0.4,"output":2}},"ByteDance-Seed/Seed-OSS-36B-Instruct":{"id":"ByteDance-Seed/Seed-OSS-36B-Instruct","name":"ByteDance-Seed/Seed-OSS-36B-Instruct","family":"seed","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-09-04","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262000,"output":262000},"cost":{"input":0.21,"output":0.57}},"baidu/ERNIE-4.5-300B-A47B":{"id":"baidu/ERNIE-4.5-300B-A47B","name":"baidu/ERNIE-4.5-300B-A47B","family":"ernie","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-07-02","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131000,"output":131000},"cost":{"input":0.28,"output":1.1}},"deepseek-ai/DeepSeek-V4-Pro":{"id":"deepseek-ai/DeepSeek-V4-Pro","name":"deepseek-ai/DeepSeek-V4-Pro","family":"deepseek-thinking","attachment":false,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2026-04-24","last_updated":"2026-04-24","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1049000,"output":393000},"cost":{"input":1.74,"output":3.48,"cache_read":0.145}},"deepseek-ai/DeepSeek-OCR":{"id":"deepseek-ai/DeepSeek-OCR","name":"deepseek-ai/DeepSeek-OCR","attachment":true,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-10-20","last_updated":"2025-10-20","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":8192,"output":8192},"cost":{"input":0,"output":0}},"deepseek-ai/DeepSeek-V3":{"id":"deepseek-ai/DeepSeek-V3","name":"deepseek-ai/DeepSeek-V3","family":"deepseek","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2024-12-26","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":164000,"output":164000},"cost":{"input":0.25,"output":1}},"deepseek-ai/DeepSeek-R1-Distill-Qwen-14B":{"id":"deepseek-ai/DeepSeek-R1-Distill-Qwen-14B","name":"deepseek-ai/DeepSeek-R1-Distill-Qwen-14B","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-01-20","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131000,"output":131000},"cost":{"input":0.1,"output":0.1}},"deepseek-ai/DeepSeek-R1":{"id":"deepseek-ai/DeepSeek-R1","name":"deepseek-ai/DeepSeek-R1","family":"deepseek-thinking","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-05-28","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":164000,"output":164000},"cost":{"input":0.5,"output":2.18}},"deepseek-ai/DeepSeek-R1-Distill-Qwen-32B":{"id":"deepseek-ai/DeepSeek-R1-Distill-Qwen-32B","name":"deepseek-ai/DeepSeek-R1-Distill-Qwen-32B","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-01-20","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131000,"output":131000},"cost":{"input":0.18,"output":0.18}},"deepseek-ai/DeepSeek-V3.2":{"id":"deepseek-ai/DeepSeek-V3.2","name":"deepseek-ai/DeepSeek-V3.2","family":"deepseek","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-12-03","last_updated":"2025-12-03","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":164000,"output":164000},"cost":{"input":0.27,"output":0.42}},"deepseek-ai/DeepSeek-V3.1-Terminus":{"id":"deepseek-ai/DeepSeek-V3.1-Terminus","name":"deepseek-ai/DeepSeek-V3.1-Terminus","family":"deepseek","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-09-29","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":164000,"output":164000},"cost":{"input":0.27,"output":1}},"deepseek-ai/deepseek-vl2":{"id":"deepseek-ai/deepseek-vl2","name":"deepseek-ai/deepseek-vl2","family":"deepseek","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2024-12-13","last_updated":"2025-11-25","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":4000,"output":4000},"cost":{"input":0.15,"output":0.15}},"PaddlePaddle/PaddleOCR-VL-1.5":{"id":"PaddlePaddle/PaddleOCR-VL-1.5","name":"PaddlePaddle/PaddleOCR-VL-1.5","attachment":true,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2026-01-29","last_updated":"2026-01-29","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":16384,"output":16384},"cost":{"input":0,"output":0}},"PaddlePaddle/PaddleOCR-VL":{"id":"PaddlePaddle/PaddleOCR-VL","name":"PaddlePaddle/PaddleOCR-VL","attachment":true,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-10-16","last_updated":"2025-10-16","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":16384,"output":16384},"cost":{"input":0,"output":0}},"Kwaipilot/KAT-Dev":{"id":"Kwaipilot/KAT-Dev","name":"Kwaipilot/KAT-Dev","family":"kat-coder","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-09-27","last_updated":"2026-01-16","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":128000},"cost":{"input":0.2,"output":0.6}},"stepfun-ai/Step-3.5-Flash":{"id":"stepfun-ai/Step-3.5-Flash","name":"stepfun-ai/Step-3.5-Flash","family":"step","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-02-11","last_updated":"2026-02-11","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262000,"output":262000},"cost":{"input":0.1,"output":0.3}},"ascend-tribe/pangu-pro-moe":{"id":"ascend-tribe/pangu-pro-moe","name":"ascend-tribe/pangu-pro-moe","family":"pangu","attachment":false,"reasoning":true,"tool_call":false,"structured_output":true,"temperature":true,"release_date":"2025-07-02","last_updated":"2026-01-16","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":128000},"cost":{"input":0.2,"output":0.6}},"tencent/Hunyuan-MT-7B":{"id":"tencent/Hunyuan-MT-7B","name":"tencent/Hunyuan-MT-7B","family":"hunyuan","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-09-18","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":33000,"output":33000},"cost":{"input":0,"output":0}},"tencent/Hunyuan-A13B-Instruct":{"id":"tencent/Hunyuan-A13B-Instruct","name":"tencent/Hunyuan-A13B-Instruct","family":"hunyuan","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-06-30","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131000,"output":131000},"cost":{"input":0.14,"output":0.57}},"Pro/MiniMaxAI/MiniMax-M2.5":{"id":"Pro/MiniMaxAI/MiniMax-M2.5","name":"Pro/MiniMaxAI/MiniMax-M2.5","family":"minimax","attachment":false,"reasoning":false,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-02-13","last_updated":"2026-02-13","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":192000,"output":131000},"cost":{"input":0.3,"output":1.22}},"Pro/MiniMaxAI/MiniMax-M2.1":{"id":"Pro/MiniMaxAI/MiniMax-M2.1","name":"Pro/MiniMaxAI/MiniMax-M2.1","family":"minimax","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-12-23","last_updated":"2025-12-23","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":197000,"output":131000},"cost":{"input":0.3,"output":1.2}},"Pro/zai-org/GLM-4.7":{"id":"Pro/zai-org/GLM-4.7","name":"Pro/zai-org/GLM-4.7","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2025-12-22","last_updated":"2025-12-22","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":205000,"output":205000},"cost":{"input":0.6,"output":2.2}},"Pro/zai-org/GLM-5":{"id":"Pro/zai-org/GLM-5","name":"Pro/zai-org/GLM-5","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-02-12","last_updated":"2026-02-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":205000,"output":205000},"cost":{"input":1,"output":3.2}},"Pro/zai-org/GLM-5.1":{"id":"Pro/zai-org/GLM-5.1","name":"Pro/zai-org/GLM-5.1","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-04-08","last_updated":"2026-04-08","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":205000,"output":205000},"cost":{"input":1.4,"output":4.4,"cache_write":0}},"Pro/moonshotai/Kimi-K2.6":{"id":"Pro/moonshotai/Kimi-K2.6","name":"Pro/moonshotai/Kimi-K2.6","family":"kimi","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-04-21","last_updated":"2026-04-21","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262000,"output":262000},"cost":{"input":0.95,"output":4,"cache_read":0.16}},"Pro/moonshotai/Kimi-K2-Instruct-0905":{"id":"Pro/moonshotai/Kimi-K2-Instruct-0905","name":"Pro/moonshotai/Kimi-K2-Instruct-0905","family":"kimi","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-09-08","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262000,"output":262000},"cost":{"input":0.4,"output":2}},"Pro/moonshotai/Kimi-K2.5":{"id":"Pro/moonshotai/Kimi-K2.5","name":"Pro/moonshotai/Kimi-K2.5","family":"kimi","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-01-27","last_updated":"2026-01-27","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262000,"output":262000},"cost":{"input":0.45,"output":2.25}},"Pro/moonshotai/Kimi-K2-Thinking":{"id":"Pro/moonshotai/Kimi-K2-Thinking","name":"Pro/moonshotai/Kimi-K2-Thinking","family":"kimi-thinking","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-11-07","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262000,"output":262000},"cost":{"input":0.55,"output":2.5}},"Pro/deepseek-ai/DeepSeek-V3.1-Terminus":{"id":"Pro/deepseek-ai/DeepSeek-V3.1-Terminus","name":"Pro/deepseek-ai/DeepSeek-V3.1-Terminus","family":"deepseek","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-09-29","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":164000,"output":164000},"cost":{"input":0.27,"output":1}},"Pro/deepseek-ai/DeepSeek-V3.2":{"id":"Pro/deepseek-ai/DeepSeek-V3.2","name":"Pro/deepseek-ai/DeepSeek-V3.2","family":"deepseek","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-12-03","last_updated":"2025-12-03","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":164000,"output":164000},"cost":{"input":0.27,"output":0.42}},"Pro/deepseek-ai/DeepSeek-R1":{"id":"Pro/deepseek-ai/DeepSeek-R1","name":"Pro/deepseek-ai/DeepSeek-R1","family":"deepseek-thinking","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-05-28","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":164000,"output":164000},"cost":{"input":0.5,"output":2.18}},"Pro/deepseek-ai/DeepSeek-V3":{"id":"Pro/deepseek-ai/DeepSeek-V3","name":"Pro/deepseek-ai/DeepSeek-V3","family":"deepseek","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2024-12-26","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":164000,"output":164000},"cost":{"input":0.25,"output":1}},"Qwen/Qwen3.6-35B-A3B":{"id":"Qwen/Qwen3.6-35B-A3B","name":"Qwen/Qwen3.6-35B-A3B","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2026-04-17","last_updated":"2026-04-17","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":65536},"cost":{"input":0.23,"output":1.86}},"Qwen/Qwen3.5-35B-A3B":{"id":"Qwen/Qwen3.5-35B-A3B","name":"Qwen/Qwen3.5-35B-A3B","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2026-02-25","last_updated":"2026-02-25","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":65536},"cost":{"input":0.23,"output":1.86}},"Qwen/Qwen3.5-397B-A17B":{"id":"Qwen/Qwen3.5-397B-A17B","name":"Qwen/Qwen3.5-397B-A17B","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2026-02-16","last_updated":"2026-02-16","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":65536},"cost":{"input":0.29,"output":1.74}},"Qwen/Qwen3.5-9B":{"id":"Qwen/Qwen3.5-9B","name":"Qwen/Qwen3.5-9B","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2026-03-03","last_updated":"2026-03-03","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":65536},"cost":{"input":0.22,"output":1.74}},"Qwen/Qwen3.5-4B":{"id":"Qwen/Qwen3.5-4B","name":"Qwen/Qwen3.5-4B","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2026-03-03","last_updated":"2026-03-03","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":65536},"cost":{"input":0,"output":0}},"Qwen/Qwen3.5-122B-A10B":{"id":"Qwen/Qwen3.5-122B-A10B","name":"Qwen/Qwen3.5-122B-A10B","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2026-02-26","last_updated":"2026-02-26","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":65536},"cost":{"input":0.29,"output":2.32}},"Qwen/Qwen3.5-27B":{"id":"Qwen/Qwen3.5-27B","name":"Qwen/Qwen3.5-27B","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2026-02-25","last_updated":"2026-02-25","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":65536},"cost":{"input":0.26,"output":2.09}},"Qwen/Qwen3-VL-235B-A22B-Instruct":{"id":"Qwen/Qwen3-VL-235B-A22B-Instruct","name":"Qwen/Qwen3-VL-235B-A22B-Instruct","family":"qwen","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-10-04","last_updated":"2025-11-25","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":262000,"output":262000},"cost":{"input":0.3,"output":1.5}},"Qwen/Qwen3-Next-80B-A3B-Thinking":{"id":"Qwen/Qwen3-Next-80B-A3B-Thinking","name":"Qwen/Qwen3-Next-80B-A3B-Thinking","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-09-25","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262000,"output":262000},"cost":{"input":0.14,"output":0.57}},"Qwen/Qwen2.5-7B-Instruct":{"id":"Qwen/Qwen2.5-7B-Instruct","name":"Qwen/Qwen2.5-7B-Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2024-09-18","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":33000,"output":4000},"cost":{"input":0.05,"output":0.05}},"Qwen/Qwen3-VL-30B-A3B-Thinking":{"id":"Qwen/Qwen3-VL-30B-A3B-Thinking","name":"Qwen/Qwen3-VL-30B-A3B-Thinking","family":"qwen","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-10-11","last_updated":"2025-11-25","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":262000,"output":262000},"cost":{"input":0.29,"output":1}},"Qwen/Qwen3-30B-A3B-Thinking-2507":{"id":"Qwen/Qwen3-30B-A3B-Thinking-2507","name":"Qwen/Qwen3-30B-A3B-Thinking-2507","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-07-31","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262000,"output":131000},"cost":{"input":0.09,"output":0.3}},"Qwen/Qwen2.5-32B-Instruct":{"id":"Qwen/Qwen2.5-32B-Instruct","name":"Qwen/Qwen2.5-32B-Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2024-09-19","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":33000,"output":4000},"cost":{"input":0.18,"output":0.18}},"Qwen/Qwen3-32B":{"id":"Qwen/Qwen3-32B","name":"Qwen/Qwen3-32B","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-04-30","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131000,"output":131000},"cost":{"input":0.14,"output":0.57}},"Qwen/Qwen2.5-VL-32B-Instruct":{"id":"Qwen/Qwen2.5-VL-32B-Instruct","name":"Qwen/Qwen2.5-VL-32B-Instruct","family":"qwen","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-03-24","last_updated":"2025-11-25","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":131000,"output":131000},"cost":{"input":0.27,"output":0.27}},"Qwen/Qwen2.5-VL-72B-Instruct":{"id":"Qwen/Qwen2.5-VL-72B-Instruct","name":"Qwen/Qwen2.5-VL-72B-Instruct","family":"qwen","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-01-28","last_updated":"2025-11-25","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":131000,"output":4000},"cost":{"input":0.59,"output":0.59}},"Qwen/Qwen2.5-Coder-32B-Instruct":{"id":"Qwen/Qwen2.5-Coder-32B-Instruct","name":"Qwen/Qwen2.5-Coder-32B-Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2024-11-11","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":33000,"output":4000},"cost":{"input":0.18,"output":0.18}},"Qwen/Qwen3-VL-30B-A3B-Instruct":{"id":"Qwen/Qwen3-VL-30B-A3B-Instruct","name":"Qwen/Qwen3-VL-30B-A3B-Instruct","family":"qwen","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-10-05","last_updated":"2025-11-25","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":262000,"output":262000},"cost":{"input":0.29,"output":1}},"Qwen/Qwen2.5-14B-Instruct":{"id":"Qwen/Qwen2.5-14B-Instruct","name":"Qwen/Qwen2.5-14B-Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2024-09-18","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":33000,"output":4000},"cost":{"input":0.1,"output":0.1}},"Qwen/Qwen3-Next-80B-A3B-Instruct":{"id":"Qwen/Qwen3-Next-80B-A3B-Instruct","name":"Qwen/Qwen3-Next-80B-A3B-Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-09-18","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262000,"output":262000},"cost":{"input":0.14,"output":1.4}},"Qwen/Qwen3-VL-32B-Instruct":{"id":"Qwen/Qwen3-VL-32B-Instruct","name":"Qwen/Qwen3-VL-32B-Instruct","family":"qwen","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-10-21","last_updated":"2025-11-25","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":262000,"output":262000},"cost":{"input":0.2,"output":0.6}},"Qwen/Qwen3-235B-A22B-Instruct-2507":{"id":"Qwen/Qwen3-235B-A22B-Instruct-2507","name":"Qwen/Qwen3-235B-A22B-Instruct-2507","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-07-23","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262000,"output":262000},"cost":{"input":0.09,"output":0.6}},"Qwen/Qwen3-Omni-30B-A3B-Thinking":{"id":"Qwen/Qwen3-Omni-30B-A3B-Thinking","name":"Qwen/Qwen3-Omni-30B-A3B-Thinking","family":"qwen","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-10-04","last_updated":"2025-11-25","modalities":{"input":["text","image","audio"],"output":["text"]},"open_weights":false,"limit":{"context":66000,"output":66000},"cost":{"input":0.1,"output":0.4}},"Qwen/Qwen3-Coder-30B-A3B-Instruct":{"id":"Qwen/Qwen3-Coder-30B-A3B-Instruct","name":"Qwen/Qwen3-Coder-30B-A3B-Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-08-01","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262000,"output":262000},"cost":{"input":0.07,"output":0.28}},"Qwen/Qwen3-235B-A22B-Thinking-2507":{"id":"Qwen/Qwen3-235B-A22B-Thinking-2507","name":"Qwen/Qwen3-235B-A22B-Thinking-2507","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-07-28","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262000,"output":262000},"cost":{"input":0.13,"output":0.6}},"Qwen/Qwen3-8B":{"id":"Qwen/Qwen3-8B","name":"Qwen/Qwen3-8B","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-04-30","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131000,"output":131000},"cost":{"input":0.06,"output":0.06}},"Qwen/Qwen2.5-72B-Instruct-128K":{"id":"Qwen/Qwen2.5-72B-Instruct-128K","name":"Qwen/Qwen2.5-72B-Instruct-128K","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2024-09-18","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131000,"output":4000},"cost":{"input":0.59,"output":0.59}},"Qwen/Qwen3-VL-32B-Thinking":{"id":"Qwen/Qwen3-VL-32B-Thinking","name":"Qwen/Qwen3-VL-32B-Thinking","family":"qwen","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-10-21","last_updated":"2025-11-25","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":262000,"output":262000},"cost":{"input":0.2,"output":1.5}},"Qwen/Qwen3-14B":{"id":"Qwen/Qwen3-14B","name":"Qwen/Qwen3-14B","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-04-30","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131000,"output":131000},"cost":{"input":0.07,"output":0.28}},"Qwen/Qwen3-30B-A3B-Instruct-2507":{"id":"Qwen/Qwen3-30B-A3B-Instruct-2507","name":"Qwen/Qwen3-30B-A3B-Instruct-2507","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-07-30","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262000,"output":262000},"cost":{"input":0.09,"output":0.3}},"Qwen/Qwen3-Omni-30B-A3B-Instruct":{"id":"Qwen/Qwen3-Omni-30B-A3B-Instruct","name":"Qwen/Qwen3-Omni-30B-A3B-Instruct","family":"qwen","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-10-04","last_updated":"2025-11-25","modalities":{"input":["text","image","audio"],"output":["text"]},"open_weights":false,"limit":{"context":66000,"output":66000},"cost":{"input":0.1,"output":0.4}},"Qwen/Qwen2.5-72B-Instruct":{"id":"Qwen/Qwen2.5-72B-Instruct","name":"Qwen/Qwen2.5-72B-Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2024-09-18","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":33000,"output":4000},"cost":{"input":0.59,"output":0.59}},"Qwen/QwQ-32B":{"id":"Qwen/QwQ-32B","name":"Qwen/QwQ-32B","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-03-06","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131000,"output":131000},"cost":{"input":0.15,"output":0.58}},"Qwen/Qwen3-Omni-30B-A3B-Captioner":{"id":"Qwen/Qwen3-Omni-30B-A3B-Captioner","name":"Qwen/Qwen3-Omni-30B-A3B-Captioner","family":"qwen","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-10-04","last_updated":"2025-11-25","modalities":{"input":["audio"],"output":["text"]},"open_weights":false,"limit":{"context":66000,"output":66000},"cost":{"input":0.1,"output":0.4}},"Qwen/Qwen3-VL-8B-Thinking":{"id":"Qwen/Qwen3-VL-8B-Thinking","name":"Qwen/Qwen3-VL-8B-Thinking","family":"qwen","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-10-15","last_updated":"2025-11-25","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":262000,"output":262000},"cost":{"input":0.18,"output":2}},"Qwen/Qwen3-VL-8B-Instruct":{"id":"Qwen/Qwen3-VL-8B-Instruct","name":"Qwen/Qwen3-VL-8B-Instruct","family":"qwen","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-10-15","last_updated":"2025-11-25","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":262000,"output":262000},"cost":{"input":0.18,"output":0.68}},"Qwen/Qwen3-Coder-480B-A35B-Instruct":{"id":"Qwen/Qwen3-Coder-480B-A35B-Instruct","name":"Qwen/Qwen3-Coder-480B-A35B-Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-07-31","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262000,"output":262000},"cost":{"input":0.25,"output":1}},"Qwen/Qwen3-VL-235B-A22B-Thinking":{"id":"Qwen/Qwen3-VL-235B-A22B-Thinking","name":"Qwen/Qwen3-VL-235B-A22B-Thinking","family":"qwen","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-10-04","last_updated":"2025-11-25","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":262000,"output":262000},"cost":{"input":0.45,"output":3.5}}}},"zhipuai-coding-plan":{"id":"zhipuai-coding-plan","env":["ZHIPU_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://open.bigmodel.cn/api/coding/paas/v4","name":"Zhipu AI Coding Plan","doc":"https://docs.bigmodel.cn/cn/coding-plan/overview","models":{"glm-5v-turbo":{"id":"glm-5v-turbo","name":"GLM-5V-Turbo","family":"glm","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"release_date":"2026-04-01","last_updated":"2026-04-01","modalities":{"input":["text","image","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":131072},"cost":{"input":0,"output":0,"cache_read":0,"cache_write":0}},"glm-5.1":{"id":"glm-5.1","name":"GLM-5.1","family":"glm","attachment":false,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-03-27","last_updated":"2026-03-27","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":131072},"cost":{"input":0,"output":0,"cache_read":0,"cache_write":0}},"glm-4.5-air":{"id":"glm-4.5-air","name":"GLM-4.5-Air","family":"glm-air","attachment":false,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-07-28","last_updated":"2025-07-28","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":98304},"cost":{"input":0,"output":0,"cache_read":0,"cache_write":0}},"glm-5-turbo":{"id":"glm-5-turbo","name":"GLM-5-Turbo","family":"glm","attachment":false,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-03-16","last_updated":"2026-03-16","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":131072},"cost":{"input":0,"output":0,"cache_read":0,"cache_write":0}},"glm-4.6v":{"id":"glm-4.6v","name":"GLM-4.6V","family":"glm","attachment":true,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-12-08","last_updated":"2025-12-08","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":32768},"cost":{"input":0.3,"output":0.9}},"glm-4.7":{"id":"glm-4.7","name":"GLM-4.7","family":"glm","attachment":false,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2025-04","release_date":"2025-12-22","last_updated":"2025-12-22","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0,"output":0,"cache_read":0,"cache_write":0}}}},"xai":{"id":"xai","env":["XAI_API_KEY"],"npm":"@ai-sdk/xai","name":"xAI","doc":"https://docs.x.ai/docs/models","models":{"grok-build-0.1":{"id":"grok-build-0.1","name":"Grok Build 0.1","family":"grok-build","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-04-16","last_updated":"2026-04-16","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":256000},"cost":{"input":1,"output":2,"cache_read":0.2,"tiers":[{"input":2,"output":4,"cache_read":0.4,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":2,"output":4,"cache_read":0.4}}},"grok-4.20-0309-reasoning":{"id":"grok-4.20-0309-reasoning","name":"Grok 4.20 (Reasoning)","family":"grok","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-03-09","last_updated":"2026-03-09","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":2000000,"output":30000},"cost":{"input":1.25,"output":2.5,"cache_read":0.2,"tiers":[{"input":2.5,"output":5,"cache_read":0.4,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":2.5,"output":5,"cache_read":0.4}}},"grok-4.20-multi-agent-0309":{"id":"grok-4.20-multi-agent-0309","name":"Grok 4.20 Multi-Agent","family":"grok","attachment":true,"reasoning":true,"tool_call":false,"temperature":true,"release_date":"2026-03-09","last_updated":"2026-03-09","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":2000000,"output":30000},"cost":{"input":1.25,"output":2.5,"cache_read":0.2,"tiers":[{"input":2.5,"output":5,"cache_read":0.4,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":2.5,"output":5,"cache_read":0.4}}},"grok-4.3":{"id":"grok-4.3","name":"Grok 4.3","family":"grok","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-04-17","last_updated":"2026-04-17","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":30000},"cost":{"input":1.25,"output":2.5,"cache_read":0.2,"tiers":[{"input":2.5,"output":5,"cache_read":0.4,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":2.5,"output":5,"cache_read":0.4}}},"grok-imagine-image":{"id":"grok-imagine-image","name":"Grok Imagine Image","family":"grok","attachment":true,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2026-01-28","last_updated":"2026-01-28","modalities":{"input":["text","image","pdf"],"output":["image","pdf"]},"open_weights":false,"limit":{"context":8000,"output":0}},"grok-4.20-0309-non-reasoning":{"id":"grok-4.20-0309-non-reasoning","name":"Grok 4.20 (Non-Reasoning)","family":"grok","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2026-03-09","last_updated":"2026-03-09","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":2000000,"output":30000},"cost":{"input":1.25,"output":2.5,"cache_read":0.2,"tiers":[{"input":2.5,"output":5,"cache_read":0.4,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":2.5,"output":5,"cache_read":0.4}}},"grok-imagine-image-quality":{"id":"grok-imagine-image-quality","name":"Grok Imagine Image Quality","family":"grok","attachment":true,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2026-04-03","last_updated":"2026-04-03","modalities":{"input":["text","image","pdf"],"output":["image","pdf"]},"open_weights":false,"limit":{"context":8000,"output":0}},"grok-imagine-video":{"id":"grok-imagine-video","name":"Grok Imagine Video","family":"grok","attachment":true,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2026-01-28","last_updated":"2026-01-28","modalities":{"input":["text","image","video","pdf"],"output":["video"]},"open_weights":false,"limit":{"context":1024,"output":0}}}},"v0":{"id":"v0","env":["V0_API_KEY"],"npm":"@ai-sdk/vercel","name":"v0","doc":"https://sdk.vercel.ai/providers/ai-sdk-providers/vercel","models":{"v0-1.5-lg":{"id":"v0-1.5-lg","name":"v0-1.5-lg","family":"v0","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-06-09","last_updated":"2025-06-09","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":512000,"output":32000},"cost":{"input":15,"output":75}},"v0-1.0-md":{"id":"v0-1.0-md","name":"v0-1.0-md","family":"v0","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-05-22","last_updated":"2025-05-22","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":32000},"cost":{"input":3,"output":15}},"v0-1.5-md":{"id":"v0-1.5-md","name":"v0-1.5-md","family":"v0","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-06-09","last_updated":"2025-06-09","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":32000},"cost":{"input":3,"output":15}}}},"neuralwatt":{"id":"neuralwatt","env":["NEURALWATT_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://api.neuralwatt.com/v1","name":"Neuralwatt","doc":"https://portal.neuralwatt.com/docs","models":{"glm-5-fast":{"id":"glm-5-fast","name":"GLM 5 Fast","family":"glm","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2026-04-07","last_updated":"2026-04-07","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":202736,"output":202736},"cost":{"input":1.1,"output":3.6}},"qwen3.5-397b-fast":{"id":"qwen3.5-397b-fast","name":"Qwen3.5 397B Fast","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2026-02-01","last_updated":"2026-02-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262128,"output":262128},"cost":{"input":0.69,"output":4.14}},"kimi-k2.5-fast":{"id":"kimi-k2.5-fast","name":"Kimi K2.5 Fast","family":"kimi","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2026-01-27","last_updated":"2026-01-27","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262128,"output":262128},"cost":{"input":0.52,"output":2.59}},"qwen3.6-35b-fast":{"id":"qwen3.6-35b-fast","name":"Qwen3.6 35B Fast","family":"qwen3.6","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2026-04-01","last_updated":"2026-04-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":131056,"output":131056},"cost":{"input":0.29,"output":1.15}},"kimi-k2.6-fast":{"id":"kimi-k2.6-fast","name":"Kimi K2.6 Fast","family":"kimi","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2026-04-21","last_updated":"2026-04-21","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262128,"output":262128},"cost":{"input":0.69,"output":3.22}},"glm-5.1-fast":{"id":"glm-5.1-fast","name":"GLM 5.1 Fast","family":"glm","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2026-04-07","last_updated":"2026-04-07","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":202736,"output":202736},"cost":{"input":1.1,"output":3.6}},"mistralai/Devstral-Small-2-24B-Instruct-2512":{"id":"mistralai/Devstral-Small-2-24B-Instruct-2512","name":"Devstral Small 2 24B Instruct 2512","family":"devstral","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2025-12-09","last_updated":"2025-12-09","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262128,"output":262128},"cost":{"input":0.12,"output":0.35}},"MiniMaxAI/MiniMax-M2.5":{"id":"MiniMaxAI/MiniMax-M2.5","name":"MiniMax M2.5","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"release_date":"2026-02-12","last_updated":"2026-02-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":196592,"output":196592},"cost":{"input":0.35,"output":1.38}},"zai-org/GLM-5.1-FP8":{"id":"zai-org/GLM-5.1-FP8","name":"GLM 5.1 FP8","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"release_date":"2026-04-07","last_updated":"2026-04-07","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":202736,"output":202736},"cost":{"input":1.1,"output":3.6}},"moonshotai/Kimi-K2.6":{"id":"moonshotai/Kimi-K2.6","name":"Kimi K2.6","family":"kimi","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"release_date":"2026-04-21","last_updated":"2026-04-21","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262128,"output":262128},"cost":{"input":0.69,"output":3.22}},"moonshotai/Kimi-K2.5":{"id":"moonshotai/Kimi-K2.5","name":"Kimi K2.5","family":"kimi","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"release_date":"2026-01-27","last_updated":"2026-01-27","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262128,"output":262128},"cost":{"input":0.52,"output":2.59}},"Qwen/Qwen3.6-35B-A3B":{"id":"Qwen/Qwen3.6-35B-A3B","name":"Qwen3.6 35B A3B","family":"qwen3.6","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"release_date":"2026-04-01","last_updated":"2026-04-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":131056,"output":131056},"cost":{"input":0.29,"output":1.15}},"Qwen/Qwen3.5-397B-A17B-FP8":{"id":"Qwen/Qwen3.5-397B-A17B-FP8","name":"Qwen3.5 397B A17B FP8","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"release_date":"2026-02-01","last_updated":"2026-02-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262128,"output":262128},"cost":{"input":0.69,"output":4.14}},"openai/gpt-oss-20b":{"id":"openai/gpt-oss-20b","name":"GPT OSS 20B","family":"gpt-oss","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":16368,"output":16368},"cost":{"input":0.03,"output":0.16}}}},"friendli":{"id":"friendli","env":["FRIENDLI_TOKEN"],"npm":"@ai-sdk/openai-compatible","api":"https://api.friendli.ai/serverless/v1","name":"Friendli","doc":"https://friendli.ai/docs/guides/serverless_endpoints/introduction","models":{"MiniMaxAI/MiniMax-M2.5":{"id":"MiniMaxAI/MiniMax-M2.5","name":"MiniMax-M2.5","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-02-12","last_updated":"2026-02-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":196608,"output":196608},"cost":{"input":0.3,"output":1.2,"cache_read":0.06}},"zai-org/GLM-5":{"id":"zai-org/GLM-5","name":"GLM-5","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-02-12","last_updated":"2026-02-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":202752,"output":202752},"cost":{"input":1,"output":3.2,"cache_read":0.5}},"zai-org/GLM-5.1":{"id":"zai-org/GLM-5.1","name":"GLM-5.1","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-04-07","last_updated":"2026-04-07","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":202752,"output":202752},"cost":{"input":1.4,"output":4.4,"cache_read":0.26}},"meta-llama/Llama-3.1-8B-Instruct":{"id":"meta-llama/Llama-3.1-8B-Instruct","name":"Llama 3.1 8B Instruct","family":"llama","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2024-08-01","last_updated":"2025-12-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":8000},"cost":{"input":0.1,"output":0.1}},"meta-llama/Llama-3.3-70B-Instruct":{"id":"meta-llama/Llama-3.3-70B-Instruct","name":"Llama 3.3 70B Instruct","family":"llama","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2024-08-01","last_updated":"2025-12-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":131072},"cost":{"input":0.6,"output":0.6}},"Qwen/Qwen3-235B-A22B-Instruct-2507":{"id":"Qwen/Qwen3-235B-A22B-Instruct-2507","name":"Qwen3 235B A22B Instruct 2507","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-07-29","last_updated":"2026-01-29","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.2,"output":0.8}}}},"github-copilot":{"id":"github-copilot","env":["GITHUB_TOKEN"],"npm":"@ai-sdk/openai-compatible","api":"https://api.githubcopilot.com","name":"GitHub Copilot","doc":"https://docs.github.com/en/copilot","models":{"raptor-mini":{"id":"raptor-mini","name":"Raptor mini","family":"gpt-mini","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-05-30","release_date":"2025-08-07","last_updated":"2025-08-07","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":0.25,"output":2,"cache_read":0.025}},"claude-sonnet-4":{"id":"claude-sonnet-4","name":"Claude Sonnet 4 (latest)","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-05-22","last_updated":"2025-05-22","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":216000,"input":128000,"output":16000},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75}},"gpt-5-mini":{"id":"gpt-5-mini","name":"GPT-5 Mini","family":"gpt-mini","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-05-30","release_date":"2025-08-07","last_updated":"2025-08-07","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":264000,"input":128000,"output":64000},"cost":{"input":0.25,"output":2,"cache_read":0.025}},"gpt-5.2":{"id":"gpt-5.2","name":"GPT-5.2","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2025-12-11","last_updated":"2025-12-11","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":1.75,"output":14,"cache_read":0.175}},"claude-sonnet-4.6":{"id":"claude-sonnet-4.6","name":"Claude Sonnet 4.6","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-08-31","release_date":"2026-02-17","last_updated":"2026-03-13","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"input":168000,"output":32000},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75}},"gpt-5.4":{"id":"gpt-5.4","name":"GPT-5.4","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-03-05","last_updated":"2026-03-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":2.5,"output":15,"cache_read":0.25,"tiers":[{"input":5,"output":22.5,"cache_read":0.5,"tier":{"type":"context","size":272000}}],"context_over_200k":{"input":5,"output":22.5,"cache_read":0.5}}},"gemini-3-flash-preview":{"id":"gemini-3-flash-preview","name":"Gemini 3 Flash Preview","family":"gemini-flash","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-12-17","last_updated":"2025-12-17","modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":64000},"cost":{"input":0.5,"output":3,"cache_read":0.05,"input_audio":1}},"gpt-5.5":{"id":"gpt-5.5","name":"GPT-5.5","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-12-01","release_date":"2026-04-23","last_updated":"2026-04-23","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":5,"output":30,"cache_read":0.5,"tiers":[{"input":10,"output":45,"cache_read":1,"tier":{"type":"context","size":272000}}],"context_over_200k":{"input":10,"output":45,"cache_read":1}}},"claude-opus-4.5":{"id":"claude-opus-4.5","name":"Claude Opus 4.5 (latest)","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-11-24","last_updated":"2025-11-24","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"input":168000,"output":32000},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25}},"claude-opus-4.7":{"id":"claude-opus-4.7","name":"Claude Opus 4.7","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2026-01-31","release_date":"2026-04-16","last_updated":"2026-04-16","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"input":168000,"output":32000},"experimental":{"modes":{"fast":{"cost":{"input":30,"output":150,"cache_read":3,"cache_write":37.5},"provider":{"body":{"speed":"fast"},"headers":{"anthropic-beta":"fast-mode-2026-02-01"}}}}},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25}},"gemini-2.5-pro":{"id":"gemini-2.5-pro","name":"Gemini 2.5 Pro","family":"gemini-pro","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-03-20","last_updated":"2025-06-05","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":64000},"cost":{"input":1.25,"output":10,"cache_read":0.125,"tiers":[{"input":2.5,"output":15,"cache_read":0.25,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":2.5,"output":15,"cache_read":0.25}}},"gpt-4.1":{"id":"gpt-4.1","name":"GPT-4.1","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-04","release_date":"2025-04-14","last_updated":"2025-04-14","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":16384},"cost":{"input":2,"output":8,"cache_read":0.5}},"gpt-5.4-nano":{"id":"gpt-5.4-nano","name":"GPT-5.4 nano","family":"gpt-nano","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-03-17","last_updated":"2026-03-17","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":0.2,"output":1.25,"cache_read":0.02}},"gemini-3.1-pro-preview":{"id":"gemini-3.1-pro-preview","name":"Gemini 3.1 Pro Preview","family":"gemini-pro","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-02-19","last_updated":"2026-02-19","modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"input":136000,"output":64000},"cost":{"input":2,"output":12,"cache_read":0.2,"tiers":[{"input":4,"output":18,"cache_read":0.4,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":4,"output":18,"cache_read":0.4}}},"gpt-5.3-codex":{"id":"gpt-5.3-codex","name":"GPT-5.3 Codex","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-02-05","last_updated":"2026-02-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":1.75,"output":14,"cache_read":0.175}},"gemini-3.5-flash":{"id":"gemini-3.5-flash","name":"Gemini 3.5 Flash","family":"gemini-flash","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-05-19","last_updated":"2026-05-19","modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"input":128000,"output":64000},"cost":{"input":1.5,"output":9,"cache_read":0.15,"input_audio":1.5}},"claude-sonnet-4.5":{"id":"claude-sonnet-4.5","name":"Claude Sonnet 4.5 (latest)","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-07-31","release_date":"2025-09-29","last_updated":"2025-09-29","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"input":168000,"output":32000},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75}},"gpt-5.2-codex":{"id":"gpt-5.2-codex","name":"GPT-5.2 Codex","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2025-12-11","last_updated":"2025-12-11","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":1.75,"output":14,"cache_read":0.175}},"claude-opus-4.6":{"id":"claude-opus-4.6","name":"Claude Opus 4.6","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-05-31","release_date":"2026-02-05","last_updated":"2026-03-13","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"input":168000,"output":32000},"experimental":{"modes":{"fast":{"cost":{"input":30,"output":150,"cache_read":3,"cache_write":37.5},"provider":{"body":{"speed":"fast"},"headers":{"anthropic-beta":"fast-mode-2026-02-01"}}}}},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25}},"claude-haiku-4.5":{"id":"claude-haiku-4.5","name":"Claude Haiku 4.5 (latest)","family":"claude-haiku","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-02-28","release_date":"2025-10-15","last_updated":"2025-10-15","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"input":136000,"output":64000},"cost":{"input":1,"output":5,"cache_read":0.1,"cache_write":1.25}},"claude-opus-4.8":{"id":"claude-opus-4.8","name":"Claude Opus 4.8","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2026-05-28","last_updated":"2026-05-28","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"input":168000,"output":64000},"experimental":{"modes":{"fast":{"cost":{"input":10,"output":50,"cache_read":1,"cache_write":12.5},"provider":{"body":{"speed":"fast"},"headers":{"anthropic-beta":"fast-mode-2026-02-01"}}}}},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25}},"gpt-5.4-mini":{"id":"gpt-5.4-mini","name":"GPT-5.4 mini","family":"gpt-mini","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-03-17","last_updated":"2026-03-17","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":0.75,"output":4.5,"cache_read":0.075}}}},"inference":{"id":"inference","env":["INFERENCE_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://inference.net/v1","name":"Inference","doc":"https://inference.net/models","models":{"osmosis/osmosis-structure-0.6b":{"id":"osmosis/osmosis-structure-0.6b","name":"Osmosis Structure 0.6B","family":"osmosis","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-12","release_date":"2025-01-01","last_updated":"2025-01-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":4000,"output":2048},"cost":{"input":0.1,"output":0.5}},"mistral/mistral-nemo-12b-instruct":{"id":"mistral/mistral-nemo-12b-instruct","name":"Mistral Nemo 12B Instruct","family":"mistral-nemo","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-12","release_date":"2025-01-01","last_updated":"2025-01-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":16000,"output":4096},"cost":{"input":0.038,"output":0.1}},"qwen/qwen-2.5-7b-vision-instruct":{"id":"qwen/qwen-2.5-7b-vision-instruct","name":"Qwen 2.5 7B Vision Instruct","family":"qwen","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-12","release_date":"2025-01-01","last_updated":"2025-01-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":125000,"output":4096},"cost":{"input":0.2,"output":0.2}},"qwen/qwen3-embedding-4b":{"id":"qwen/qwen3-embedding-4b","name":"Qwen 3 Embedding 4B","family":"qwen","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"knowledge":"2024-12","release_date":"2025-01-01","last_updated":"2025-01-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":32000,"output":2048},"cost":{"input":0.01,"output":0}},"meta/llama-3.2-3b-instruct":{"id":"meta/llama-3.2-3b-instruct","name":"Llama 3.2 3B Instruct","family":"llama","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2023-12","release_date":"2025-01-01","last_updated":"2025-01-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":16000,"output":4096},"cost":{"input":0.02,"output":0.02}},"meta/llama-3.2-11b-vision-instruct":{"id":"meta/llama-3.2-11b-vision-instruct","name":"Llama 3.2 11B Vision Instruct","family":"llama","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2023-12","release_date":"2025-01-01","last_updated":"2025-01-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":16000,"output":4096},"cost":{"input":0.055,"output":0.055}},"meta/llama-3.2-1b-instruct":{"id":"meta/llama-3.2-1b-instruct","name":"Llama 3.2 1B Instruct","family":"llama","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2023-12","release_date":"2025-01-01","last_updated":"2025-01-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":16000,"output":4096},"cost":{"input":0.01,"output":0.01}},"meta/llama-3.1-8b-instruct":{"id":"meta/llama-3.1-8b-instruct","name":"Llama 3.1 8B Instruct","family":"llama","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2023-12","release_date":"2025-01-01","last_updated":"2025-01-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":16000,"output":4096},"cost":{"input":0.025,"output":0.025}},"google/gemma-3":{"id":"google/gemma-3","name":"Google Gemma 3","family":"gemma","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-12","release_date":"2025-01-01","last_updated":"2025-01-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":125000,"output":4096},"cost":{"input":0.15,"output":0.3}}}},"huggingface":{"id":"huggingface","env":["HF_TOKEN"],"npm":"@ai-sdk/openai-compatible","api":"https://router.huggingface.co/v1","name":"Hugging Face","doc":"https://huggingface.co/docs/inference-providers","models":{"XiaomiMiMo/MiMo-V2-Flash":{"id":"XiaomiMiMo/MiMo-V2-Flash","name":"MiMo-V2-Flash","family":"mimo","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-12","release_date":"2025-12-16","last_updated":"2025-12-16","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":4096},"cost":{"input":0.1,"output":0.3}},"MiniMaxAI/MiniMax-M2.5":{"id":"MiniMaxAI/MiniMax-M2.5","name":"MiniMax-M2.5","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"release_date":"2026-02-12","last_updated":"2026-02-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0.3,"output":1.2,"cache_read":0.03}},"MiniMaxAI/MiniMax-M2.7":{"id":"MiniMaxAI/MiniMax-M2.7","name":"MiniMax-M2.7","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-03-18","last_updated":"2026-03-18","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0.3,"output":1.2,"cache_read":0.06}},"MiniMaxAI/MiniMax-M2.1":{"id":"MiniMaxAI/MiniMax-M2.1","name":"MiniMax-M2.1","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2025-10","release_date":"2025-12-23","last_updated":"2025-12-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0.3,"output":1.2}},"zai-org/GLM-4.7":{"id":"zai-org/GLM-4.7","name":"GLM-4.7","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2025-04","release_date":"2025-12-22","last_updated":"2025-12-22","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0.6,"output":2.2,"cache_read":0.11}},"zai-org/GLM-5":{"id":"zai-org/GLM-5","name":"GLM-5","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"release_date":"2026-02-11","last_updated":"2026-02-11","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":202752,"output":131072},"cost":{"input":1,"output":3.2,"cache_read":0.2}},"zai-org/GLM-5.1":{"id":"zai-org/GLM-5.1","name":"GLM-5.1","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"release_date":"2026-04-03","last_updated":"2026-04-03","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":202752,"output":131072},"cost":{"input":1,"output":3.2,"cache_read":0.2}},"zai-org/GLM-4.7-Flash":{"id":"zai-org/GLM-4.7-Flash","name":"GLM-4.7-Flash","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2025-04","release_date":"2025-08-08","last_updated":"2025-08-08","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":200000,"output":128000},"cost":{"input":0,"output":0}},"moonshotai/Kimi-K2.6":{"id":"moonshotai/Kimi-K2.6","name":"Kimi-K2.6","family":"kimi","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2025-01","release_date":"2026-04-20","last_updated":"2026-04-20","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.95,"output":4,"cache_read":0.16}},"moonshotai/Kimi-K2-Instruct-0905":{"id":"moonshotai/Kimi-K2-Instruct-0905","name":"Kimi-K2-Instruct-0905","family":"kimi","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2025-09-04","last_updated":"2025-09-04","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":16384},"cost":{"input":1,"output":3}},"moonshotai/Kimi-K2.5":{"id":"moonshotai/Kimi-K2.5","name":"Kimi-K2.5","family":"kimi","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2025-01","release_date":"2026-01-01","last_updated":"2026-01-01","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.6,"output":3,"cache_read":0.1}},"moonshotai/Kimi-K2-Instruct":{"id":"moonshotai/Kimi-K2-Instruct","name":"Kimi-K2-Instruct","family":"kimi","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2025-07-14","last_updated":"2025-07-14","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":16384},"cost":{"input":1,"output":3}},"moonshotai/Kimi-K2-Thinking":{"id":"moonshotai/Kimi-K2-Thinking","name":"Kimi-K2-Thinking","family":"kimi-thinking","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2024-08","release_date":"2025-11-06","last_updated":"2025-11-06","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.6,"output":2.5,"cache_read":0.15}},"deepseek-ai/DeepSeek-V4-Pro":{"id":"deepseek-ai/DeepSeek-V4-Pro","name":"DeepSeek V4 Pro","family":"deepseek-thinking","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-05","release_date":"2026-04-24","last_updated":"2026-04-24","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1048576,"output":393216},"cost":{"input":0.435,"output":0.87,"cache_read":0.003625}},"deepseek-ai/DeepSeek-V3.2":{"id":"deepseek-ai/DeepSeek-V3.2","name":"DeepSeek-V3.2","family":"deepseek","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-07","release_date":"2025-12-01","last_updated":"2025-12-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":163840,"output":65536},"cost":{"input":0.28,"output":0.4}},"deepseek-ai/DeepSeek-R1-0528":{"id":"deepseek-ai/DeepSeek-R1-0528","name":"DeepSeek-R1-0528","family":"deepseek-thinking","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-05","release_date":"2025-05-28","last_updated":"2025-05-28","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":163840,"output":163840},"cost":{"input":3,"output":5}},"Qwen/Qwen3-Coder-480B-A35B-Instruct":{"id":"Qwen/Qwen3-Coder-480B-A35B-Instruct","name":"Qwen3-Coder-480B-A35B-Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-07-23","last_updated":"2025-07-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":66536},"cost":{"input":2,"output":2}},"Qwen/Qwen3-Embedding-8B":{"id":"Qwen/Qwen3-Embedding-8B","name":"Qwen 3 Embedding 8B","family":"qwen","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"knowledge":"2024-12","release_date":"2025-01-01","last_updated":"2025-01-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":32000,"output":4096},"cost":{"input":0.01,"output":0}},"Qwen/Qwen3-Coder-Next":{"id":"Qwen/Qwen3-Coder-Next","name":"Qwen3-Coder-Next","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2026-02-03","last_updated":"2026-02-03","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":65536},"cost":{"input":0.2,"output":1.5}},"Qwen/Qwen3-235B-A22B-Thinking-2507":{"id":"Qwen/Qwen3-235B-A22B-Thinking-2507","name":"Qwen3-235B-A22B-Thinking-2507","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-07-25","last_updated":"2025-07-25","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":131072},"cost":{"input":0.3,"output":3}},"Qwen/Qwen3.5-397B-A17B":{"id":"Qwen/Qwen3.5-397B-A17B","name":"Qwen3.5-397B-A17B","family":"qwen","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2025-04","release_date":"2026-02-01","last_updated":"2026-02-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":32768},"cost":{"input":0.6,"output":3.6}},"Qwen/Qwen3-Next-80B-A3B-Instruct":{"id":"Qwen/Qwen3-Next-80B-A3B-Instruct","name":"Qwen3-Next-80B-A3B-Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-09-11","last_updated":"2025-09-11","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":66536},"cost":{"input":0.25,"output":1}},"Qwen/Qwen3-Embedding-4B":{"id":"Qwen/Qwen3-Embedding-4B","name":"Qwen 3 Embedding 4B","family":"qwen","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"knowledge":"2024-12","release_date":"2025-01-01","last_updated":"2025-01-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":32000,"output":2048},"cost":{"input":0.01,"output":0}},"Qwen/Qwen3-Next-80B-A3B-Thinking":{"id":"Qwen/Qwen3-Next-80B-A3B-Thinking","name":"Qwen3-Next-80B-A3B-Thinking","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-09-11","last_updated":"2025-09-11","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":131072},"cost":{"input":0.3,"output":2}}}},"cohere":{"id":"cohere","env":["COHERE_API_KEY"],"npm":"@ai-sdk/cohere","name":"Cohere","doc":"https://docs.cohere.com/docs/models","models":{"command-r-plus-08-2024":{"id":"command-r-plus-08-2024","name":"Command R+","family":"command-r","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-06-01","release_date":"2024-08-30","last_updated":"2024-08-30","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4000},"cost":{"input":2.5,"output":10}},"c4ai-aya-vision-8b":{"id":"c4ai-aya-vision-8b","name":"Aya Vision 8B","attachment":true,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-03-04","last_updated":"2025-05-14","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":16000,"output":4000}},"command-a-reasoning-08-2025":{"id":"command-a-reasoning-08-2025","name":"Command A Reasoning","family":"command-a","attachment":false,"reasoning":true,"reasoning_options":[{"type":"toggle"},{"type":"budget_tokens","min":1}],"tool_call":true,"temperature":true,"knowledge":"2024-06-01","release_date":"2025-08-21","last_updated":"2025-08-21","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"output":32000},"cost":{"input":2.5,"output":10}},"c4ai-aya-vision-32b":{"id":"c4ai-aya-vision-32b","name":"Aya Vision 32B","attachment":true,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-03-04","last_updated":"2025-05-14","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":16000,"output":4000}},"c4ai-aya-expanse-8b":{"id":"c4ai-aya-expanse-8b","name":"Aya Expanse 8B","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2024-10-24","last_updated":"2024-10-24","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":8000,"output":4000}},"command-r-08-2024":{"id":"command-r-08-2024","name":"Command R","family":"command-r","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-06-01","release_date":"2024-08-30","last_updated":"2024-08-30","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4000},"cost":{"input":0.15,"output":0.6}},"command-r7b-12-2024":{"id":"command-r7b-12-2024","name":"Command R7B","family":"command-r","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-06-01","release_date":"2024-02-27","last_updated":"2024-02-27","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4000},"cost":{"input":0.0375,"output":0.15}},"command-a-03-2025":{"id":"command-a-03-2025","name":"Command A","family":"command-a","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-06-01","release_date":"2025-03-13","last_updated":"2025-03-13","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"output":8000},"cost":{"input":2.5,"output":10}},"c4ai-aya-expanse-32b":{"id":"c4ai-aya-expanse-32b","name":"Aya Expanse 32B","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2024-10-24","last_updated":"2024-10-24","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4000}},"command-a-vision-07-2025":{"id":"command-a-vision-07-2025","name":"Command A Vision","family":"command-a","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2024-06-01","release_date":"2025-07-31","last_updated":"2025-07-31","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":8000},"cost":{"input":2.5,"output":10}},"command-a-translate-08-2025":{"id":"command-a-translate-08-2025","name":"Command A Translate","family":"command-a","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-06-01","release_date":"2025-08-28","last_updated":"2025-08-28","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":8000,"output":8000},"cost":{"input":2.5,"output":10}},"command-r7b-arabic-02-2025":{"id":"command-r7b-arabic-02-2025","name":"Command R7B Arabic","family":"command-r","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-06-01","release_date":"2025-02-27","last_updated":"2025-02-27","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4000},"cost":{"input":0.0375,"output":0.15}}}},"azure-cognitive-services":{"id":"azure-cognitive-services","env":["AZURE_COGNITIVE_SERVICES_RESOURCE_NAME","AZURE_COGNITIVE_SERVICES_API_KEY"],"npm":"@ai-sdk/azure","name":"Azure Cognitive Services","doc":"https://learn.microsoft.com/en-us/azure/ai-services/openai/concepts/models","models":{"claude-opus-4-5":{"id":"claude-opus-4-5","name":"Claude Opus 4.5","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-11-24","last_updated":"2025-08-01","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"provider":{"npm":"@ai-sdk/anthropic","api":"https://${AZURE_COGNITIVE_SERVICES_RESOURCE_NAME}.services.ai.azure.com/anthropic/v1"},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25}},"claude-haiku-4-5":{"id":"claude-haiku-4-5","name":"Claude Haiku 4.5","family":"claude-haiku","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-02-31","release_date":"2025-11-18","last_updated":"2025-11-18","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"provider":{"npm":"@ai-sdk/anthropic","api":"https://${AZURE_COGNITIVE_SERVICES_RESOURCE_NAME}.services.ai.azure.com/anthropic/v1"},"cost":{"input":1,"output":5,"cache_read":0.1,"cache_write":1.25}},"gpt-5.4-pro":{"id":"gpt-5.4-pro","name":"GPT-5.4 Pro","family":"gpt-pro","attachment":true,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-03-05","last_updated":"2026-03-05","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1050000,"input":922000,"output":128000},"cost":{"input":30,"output":180,"tiers":[{"input":60,"output":270,"tier":{"type":"context","size":272000}}],"context_over_200k":{"input":60,"output":270}}},"gpt-5.4":{"id":"gpt-5.4","name":"GPT-5.4","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-03-05","last_updated":"2026-03-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1050000,"input":922000,"output":128000},"cost":{"input":2.5,"output":15,"cache_read":0.25,"tiers":[{"input":5,"output":22.5,"cache_read":0.5,"tier":{"type":"context","size":272000}}],"context_over_200k":{"input":5,"output":22.5,"cache_read":0.5}}},"kimi-k2.6":{"id":"kimi-k2.6","name":"Kimi K2.6","family":"kimi","attachment":false,"reasoning":true,"tool_call":true,"interleaved":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-04-22","last_updated":"2026-04-22","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"provider":{"npm":"@ai-sdk/openai-compatible","api":"https://${AZURE_RESOURCE_NAME}.services.ai.azure.com/models","shape":"completions"},"cost":{"input":0.95,"output":4}},"claude-opus-4-1":{"id":"claude-opus-4-1","name":"Claude Opus 4.1","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-11-18","last_updated":"2025-11-18","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":32000},"provider":{"npm":"@ai-sdk/anthropic","api":"https://${AZURE_COGNITIVE_SERVICES_RESOURCE_NAME}.services.ai.azure.com/anthropic/v1"},"cost":{"input":15,"output":75,"cache_read":1.5,"cache_write":18.75}},"gpt-5.4-nano":{"id":"gpt-5.4-nano","name":"GPT-5.4 Nano","family":"gpt-nano","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-03-17","last_updated":"2026-03-17","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":0.2,"output":1.25,"cache_read":0.02}},"claude-sonnet-4-5":{"id":"claude-sonnet-4-5","name":"Claude Sonnet 4.5","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-07-31","release_date":"2025-11-18","last_updated":"2025-11-18","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"provider":{"npm":"@ai-sdk/anthropic","api":"https://${AZURE_COGNITIVE_SERVICES_RESOURCE_NAME}.services.ai.azure.com/anthropic/v1"},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75}},"gpt-5.4-mini":{"id":"gpt-5.4-mini","name":"GPT-5.4 Mini","family":"gpt-mini","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-03-17","last_updated":"2026-03-17","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":0.75,"output":4.5,"cache_read":0.075}},"claude-opus-4-6":{"id":"claude-opus-4-6","name":"Claude Opus 4.6","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-05-31","release_date":"2026-02-05","last_updated":"2026-02-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":128000},"provider":{"npm":"@ai-sdk/anthropic","api":"https://${AZURE_COGNITIVE_SERVICES_RESOURCE_NAME}.services.ai.azure.com/anthropic/v1"},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25,"tiers":[{"input":10,"output":37.5,"cache_read":1,"cache_write":12.5,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":10,"output":37.5,"cache_read":1,"cache_write":12.5}}},"cohere-embed-v-4-0":{"id":"cohere-embed-v-4-0","name":"Embed v4","family":"cohere-embed","attachment":true,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2025-04-15","last_updated":"2025-04-15","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":1536},"cost":{"input":0.12,"output":0}},"cohere-embed-v3-multilingual":{"id":"cohere-embed-v3-multilingual","name":"Embed v3 Multilingual","family":"cohere-embed","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2023-11-07","last_updated":"2023-11-07","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":512,"output":1024},"cost":{"input":0.1,"output":0}},"gpt-4.1-nano":{"id":"gpt-4.1-nano","name":"GPT-4.1 nano","family":"gpt-nano","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-04","release_date":"2025-04-14","last_updated":"2025-04-14","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1047576,"output":32768},"cost":{"input":0.1,"output":0.4,"cache_read":0.025}},"codestral-2501":{"id":"codestral-2501","name":"Codestral 25.01","family":"codestral","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-03","release_date":"2025-01-01","last_updated":"2025-01-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":256000},"cost":{"input":0.3,"output":0.9}},"gpt-4":{"id":"gpt-4","name":"GPT-4","family":"gpt","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2023-11","release_date":"2023-03-14","last_updated":"2023-03-14","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":8192,"output":8192},"cost":{"input":60,"output":120}},"cohere-command-a":{"id":"cohere-command-a","name":"Command A","family":"command-a","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-06-01","release_date":"2025-03-13","last_updated":"2025-03-13","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"output":8000},"cost":{"input":2.5,"output":10}},"deepseek-v3.1":{"id":"deepseek-v3.1","name":"DeepSeek-V3.1","family":"deepseek","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-07","release_date":"2025-08-21","last_updated":"2025-08-21","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":131072},"cost":{"input":0.56,"output":1.68}},"codex-mini":{"id":"codex-mini","name":"Codex Mini","family":"gpt-codex-mini","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2024-04","release_date":"2025-05-16","last_updated":"2025-05-16","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":1.5,"output":6,"cache_read":0.375}},"kimi-k2.5":{"id":"kimi-k2.5","name":"Kimi K2.5","family":"kimi","attachment":false,"reasoning":true,"tool_call":true,"interleaved":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-02-06","last_updated":"2026-02-06","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"provider":{"npm":"@ai-sdk/openai-compatible","api":"https://${AZURE_RESOURCE_NAME}.services.ai.azure.com/models","shape":"completions"},"cost":{"input":0.6,"output":3}},"o1":{"id":"o1","name":"o1","family":"o","attachment":false,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2023-09","release_date":"2024-12-05","last_updated":"2024-12-05","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":15,"output":60,"cache_read":7.5}},"gpt-3.5-turbo-0301":{"id":"gpt-3.5-turbo-0301","name":"GPT-3.5 Turbo 0301","family":"gpt","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2021-08","release_date":"2023-03-01","last_updated":"2023-03-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":4096,"output":4096},"cost":{"input":1.5,"output":2}},"llama-3.2-90b-vision-instruct":{"id":"llama-3.2-90b-vision-instruct","name":"Llama-3.2-90B-Vision-Instruct","family":"llama","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2023-12","release_date":"2024-09-25","last_updated":"2024-09-25","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":8192},"cost":{"input":2.04,"output":2.04}},"llama-3.3-70b-instruct":{"id":"llama-3.3-70b-instruct","name":"Llama-3.3-70B-Instruct","family":"llama","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2023-12","release_date":"2024-12-06","last_updated":"2024-12-06","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":32768},"cost":{"input":0.71,"output":0.71}},"gpt-4-turbo":{"id":"gpt-4-turbo","name":"GPT-4 Turbo","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2023-12","release_date":"2023-11-06","last_updated":"2024-04-09","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":4096},"cost":{"input":10,"output":30}},"gpt-3.5-turbo-0613":{"id":"gpt-3.5-turbo-0613","name":"GPT-3.5 Turbo 0613","family":"gpt","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2021-08","release_date":"2023-06-13","last_updated":"2023-06-13","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":16384,"output":16384},"cost":{"input":3,"output":4}},"gpt-5.1-chat":{"id":"gpt-5.1-chat","name":"GPT-5.1 Chat","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-11-14","last_updated":"2025-11-14","modalities":{"input":["text","image","audio"],"output":["text","image","audio"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":1.25,"output":10,"cache_read":0.125}},"o1-preview":{"id":"o1-preview","name":"o1-preview","family":"o","attachment":false,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2023-09","release_date":"2024-09-12","last_updated":"2024-09-12","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":32768},"cost":{"input":16.5,"output":66,"cache_read":8.25}},"phi-4-mini-reasoning":{"id":"phi-4-mini-reasoning","name":"Phi-4-mini-reasoning","family":"phi","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2023-10","release_date":"2024-12-11","last_updated":"2024-12-11","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4096},"cost":{"input":0.075,"output":0.3}},"gpt-5.1-codex":{"id":"gpt-5.1-codex","name":"GPT-5.1 Codex","family":"gpt-codex","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-11-14","last_updated":"2025-11-14","modalities":{"input":["text","image","audio"],"output":["text","image","audio"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":1.25,"output":10,"cache_read":0.125}},"o1-mini":{"id":"o1-mini","name":"o1-mini","family":"o-mini","attachment":false,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2023-09","release_date":"2024-09-12","last_updated":"2024-09-12","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":65536},"cost":{"input":1.1,"output":4.4,"cache_read":0.55}},"gpt-5.2-codex":{"id":"gpt-5.2-codex","name":"GPT-5.2 Codex","family":"gpt-codex","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-01-14","last_updated":"2026-01-14","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":1.75,"output":14,"cache_read":0.175}},"gpt-3.5-turbo-instruct":{"id":"gpt-3.5-turbo-instruct","name":"GPT-3.5 Turbo Instruct","family":"gpt","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2021-08","release_date":"2023-09-21","last_updated":"2023-09-21","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":4096,"output":4096},"cost":{"input":1.5,"output":2}},"meta-llama-3-70b-instruct":{"id":"meta-llama-3-70b-instruct","name":"Meta-Llama-3-70B-Instruct","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2023-12","release_date":"2024-04-18","last_updated":"2024-04-18","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":8192,"output":2048},"cost":{"input":2.68,"output":3.54}},"gpt-5.2-chat":{"id":"gpt-5.2-chat","name":"GPT-5.2 Chat","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2025-12-11","last_updated":"2025-12-11","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":1.75,"output":14,"cache_read":0.175}},"cohere-command-r-08-2024":{"id":"cohere-command-r-08-2024","name":"Command R","family":"command-r","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-06-01","release_date":"2024-08-30","last_updated":"2024-08-30","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4000},"cost":{"input":0.15,"output":0.6}},"phi-3.5-moe-instruct":{"id":"phi-3.5-moe-instruct","name":"Phi-3.5-MoE-instruct","family":"phi","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2023-10","release_date":"2024-08-20","last_updated":"2024-08-20","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4096},"cost":{"input":0.16,"output":0.64}},"llama-3.2-11b-vision-instruct":{"id":"llama-3.2-11b-vision-instruct","name":"Llama-3.2-11B-Vision-Instruct","family":"llama","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2023-12","release_date":"2024-09-25","last_updated":"2024-09-25","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":8192},"cost":{"input":0.37,"output":0.37}},"gpt-3.5-turbo-0125":{"id":"gpt-3.5-turbo-0125","name":"GPT-3.5 Turbo 0125","family":"gpt","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2021-08","release_date":"2024-01-25","last_updated":"2024-01-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":16384,"output":16384},"cost":{"input":0.5,"output":1.5}},"phi-4-multimodal":{"id":"phi-4-multimodal","name":"Phi-4-multimodal","family":"phi","attachment":true,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2023-10","release_date":"2024-12-11","last_updated":"2024-12-11","modalities":{"input":["text","image","audio"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4096},"cost":{"input":0.08,"output":0.32,"input_audio":4}},"gpt-5.3-codex":{"id":"gpt-5.3-codex","name":"GPT-5.3 Codex","family":"gpt-codex","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-02-24","last_updated":"2026-02-24","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":1.75,"output":14,"cache_read":0.175}},"deepseek-v3.2-speciale":{"id":"deepseek-v3.2-speciale","name":"DeepSeek-V3.2-Speciale","family":"deepseek","attachment":false,"reasoning":true,"tool_call":false,"temperature":true,"knowledge":"2024-07","release_date":"2025-12-01","last_updated":"2025-12-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":128000},"cost":{"input":0.58,"output":1.68}},"phi-3-medium-4k-instruct":{"id":"phi-3-medium-4k-instruct","name":"Phi-3-medium-instruct (4k)","family":"phi","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2023-10","release_date":"2024-04-23","last_updated":"2024-04-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":4096,"output":1024},"cost":{"input":0.17,"output":0.68}},"meta-llama-3.1-70b-instruct":{"id":"meta-llama-3.1-70b-instruct","name":"Meta-Llama-3.1-70B-Instruct","family":"llama","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2023-12","release_date":"2024-07-23","last_updated":"2024-07-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":32768},"cost":{"input":2.68,"output":3.54}},"phi-3-mini-4k-instruct":{"id":"phi-3-mini-4k-instruct","name":"Phi-3-mini-instruct (4k)","family":"phi","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2023-10","release_date":"2024-04-23","last_updated":"2024-04-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":4096,"output":1024},"cost":{"input":0.13,"output":0.52}},"cohere-embed-v3-english":{"id":"cohere-embed-v3-english","name":"Embed v3 English","family":"cohere-embed","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2023-11-07","last_updated":"2023-11-07","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":512,"output":1024},"cost":{"input":0.1,"output":0}},"phi-3.5-mini-instruct":{"id":"phi-3.5-mini-instruct","name":"Phi-3.5-mini-instruct","family":"phi","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2023-10","release_date":"2024-08-20","last_updated":"2024-08-20","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4096},"cost":{"input":0.13,"output":0.52}},"meta-llama-3-8b-instruct":{"id":"meta-llama-3-8b-instruct","name":"Meta-Llama-3-8B-Instruct","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2023-12","release_date":"2024-04-18","last_updated":"2024-04-18","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":8192,"output":2048},"cost":{"input":0.3,"output":0.61}},"phi-3-small-8k-instruct":{"id":"phi-3-small-8k-instruct","name":"Phi-3-small-instruct (8k)","family":"phi","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2023-10","release_date":"2024-04-23","last_updated":"2024-04-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":8192,"output":2048},"cost":{"input":0.15,"output":0.6}},"gpt-4.1":{"id":"gpt-4.1","name":"GPT-4.1","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-04","release_date":"2025-04-14","last_updated":"2025-04-14","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1047576,"output":32768},"cost":{"input":2,"output":8,"cache_read":0.5}},"cohere-command-r-plus-08-2024":{"id":"cohere-command-r-plus-08-2024","name":"Command R+","family":"command-r","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-06-01","release_date":"2024-08-30","last_updated":"2024-08-30","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4000},"cost":{"input":2.5,"output":10}},"llama-4-maverick-17b-128e-instruct-fp8":{"id":"llama-4-maverick-17b-128e-instruct-fp8","name":"Llama 4 Maverick 17B 128E Instruct FP8","family":"llama","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-08","release_date":"2025-04-05","last_updated":"2025-04-05","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":8192},"cost":{"input":0.25,"output":1}},"mistral-medium-2505":{"id":"mistral-medium-2505","name":"Mistral Medium 3","family":"mistral-medium","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-05","release_date":"2025-05-07","last_updated":"2025-05-07","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":128000},"cost":{"input":0.4,"output":2}},"deepseek-r1":{"id":"deepseek-r1","name":"DeepSeek-R1","family":"deepseek-thinking","attachment":false,"reasoning":true,"tool_call":false,"temperature":true,"knowledge":"2024-07","release_date":"2025-01-20","last_updated":"2025-01-20","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":163840,"output":163840},"cost":{"input":1.35,"output":5.4}},"phi-4-reasoning-plus":{"id":"phi-4-reasoning-plus","name":"Phi-4-reasoning-plus","family":"phi","attachment":false,"reasoning":true,"tool_call":false,"temperature":true,"knowledge":"2023-10","release_date":"2024-12-11","last_updated":"2024-12-11","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":32000,"output":4096},"cost":{"input":0.125,"output":0.5}},"mai-ds-r1":{"id":"mai-ds-r1","name":"MAI-DS-R1","family":"mai","attachment":false,"reasoning":true,"tool_call":false,"temperature":true,"knowledge":"2024-06","release_date":"2025-01-20","last_updated":"2025-01-20","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":8192},"cost":{"input":1.35,"output":5.4}},"text-embedding-ada-002":{"id":"text-embedding-ada-002","name":"text-embedding-ada-002","family":"text-embedding","attachment":false,"reasoning":false,"tool_call":false,"release_date":"2022-12-15","last_updated":"2022-12-15","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":8192,"output":1536},"cost":{"input":0.1,"output":0}},"gpt-5.1-codex-mini":{"id":"gpt-5.1-codex-mini","name":"GPT-5.1 Codex Mini","family":"gpt-codex","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-11-14","last_updated":"2025-11-14","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":0.25,"output":2,"cache_read":0.025}},"grok-4-fast-reasoning":{"id":"grok-4-fast-reasoning","name":"Grok 4 Fast (Reasoning)","family":"grok","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-07","release_date":"2025-09-19","last_updated":"2025-09-19","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":2000000,"output":30000},"cost":{"input":0.2,"output":0.5,"cache_read":0.05}},"gpt-4o-mini":{"id":"gpt-4o-mini","name":"GPT-4o mini","family":"gpt-mini","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2023-09","release_date":"2024-07-18","last_updated":"2024-07-18","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":0.15,"output":0.6,"cache_read":0.075}},"gpt-5-nano":{"id":"gpt-5-nano","name":"GPT-5 Nano","family":"gpt-nano","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2024-05-30","release_date":"2025-08-07","last_updated":"2025-08-07","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":272000,"output":128000},"cost":{"input":0.05,"output":0.4,"cache_read":0.01}},"gpt-5.1":{"id":"gpt-5.1","name":"GPT-5.1","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-11-14","last_updated":"2025-11-14","modalities":{"input":["text","image","audio"],"output":["text","image","audio"]},"open_weights":false,"limit":{"context":272000,"output":128000},"cost":{"input":1.25,"output":10,"cache_read":0.125}},"phi-4-mini":{"id":"phi-4-mini","name":"Phi-4-mini","family":"phi","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2023-10","release_date":"2024-12-11","last_updated":"2024-12-11","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4096},"cost":{"input":0.075,"output":0.3}},"phi-3-small-128k-instruct":{"id":"phi-3-small-128k-instruct","name":"Phi-3-small-instruct (128k)","family":"phi","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2023-10","release_date":"2024-04-23","last_updated":"2024-04-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4096},"cost":{"input":0.15,"output":0.6}},"phi-3-mini-128k-instruct":{"id":"phi-3-mini-128k-instruct","name":"Phi-3-mini-instruct (128k)","family":"phi","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2023-10","release_date":"2024-04-23","last_updated":"2024-04-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4096},"cost":{"input":0.13,"output":0.52}},"llama-4-scout-17b-16e-instruct":{"id":"llama-4-scout-17b-16e-instruct","name":"Llama 4 Scout 17B 16E Instruct","family":"llama","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-08","release_date":"2025-04-05","last_updated":"2025-04-05","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":8192},"cost":{"input":0.2,"output":0.78}},"meta-llama-3.1-8b-instruct":{"id":"meta-llama-3.1-8b-instruct","name":"Meta-Llama-3.1-8B-Instruct","family":"llama","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2023-12","release_date":"2024-07-23","last_updated":"2024-07-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":32768},"cost":{"input":0.3,"output":0.61}},"gpt-4-32k":{"id":"gpt-4-32k","name":"GPT-4 32K","family":"gpt","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2023-11","release_date":"2023-03-14","last_updated":"2023-03-14","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":32768,"output":32768},"cost":{"input":60,"output":120}},"mistral-nemo":{"id":"mistral-nemo","name":"Mistral Nemo","family":"mistral-nemo","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-07","release_date":"2024-07-18","last_updated":"2024-07-18","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":128000},"cost":{"input":0.15,"output":0.15}},"gpt-5.5":{"id":"gpt-5.5","name":"GPT-5.5","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-12-01","release_date":"2026-04-24","last_updated":"2026-04-24","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1050000,"input":922000,"output":128000},"cost":{"input":5,"output":30,"cache_read":0.5,"tiers":[{"input":10,"output":45,"cache_read":1,"tier":{"type":"context","size":272000}}],"context_over_200k":{"input":10,"output":45,"cache_read":1}}},"phi-4":{"id":"phi-4","name":"Phi-4","family":"phi","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2023-10","release_date":"2024-12-11","last_updated":"2024-12-11","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4096},"cost":{"input":0.125,"output":0.5}},"phi-4-reasoning":{"id":"phi-4-reasoning","name":"Phi-4-reasoning","family":"phi","attachment":false,"reasoning":true,"tool_call":false,"temperature":true,"knowledge":"2023-10","release_date":"2024-12-11","last_updated":"2024-12-11","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":32000,"output":4096},"cost":{"input":0.125,"output":0.5}},"o3-mini":{"id":"o3-mini","name":"o3-mini","family":"o-mini","attachment":false,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2024-05","release_date":"2024-12-20","last_updated":"2025-01-29","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":1.1,"output":4.4,"cache_read":0.55}},"o4-mini":{"id":"o4-mini","name":"o4-mini","family":"o-mini","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2024-05","release_date":"2025-04-16","last_updated":"2025-04-16","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":1.1,"output":4.4,"cache_read":0.275}},"text-embedding-3-large":{"id":"text-embedding-3-large","name":"text-embedding-3-large","family":"text-embedding","attachment":false,"reasoning":false,"tool_call":false,"release_date":"2024-01-25","last_updated":"2024-01-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":8191,"output":3072},"cost":{"input":0.13,"output":0}},"deepseek-v3.2":{"id":"deepseek-v3.2","name":"DeepSeek-V3.2","family":"deepseek","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-07","release_date":"2025-12-01","last_updated":"2025-12-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":128000},"cost":{"input":0.58,"output":1.68}},"gpt-4.1-mini":{"id":"gpt-4.1-mini","name":"GPT-4.1 mini","family":"gpt-mini","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-04","release_date":"2025-04-14","last_updated":"2025-04-14","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1047576,"output":32768},"cost":{"input":0.4,"output":1.6,"cache_read":0.1}},"gpt-5":{"id":"gpt-5","name":"GPT-5","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-08-07","last_updated":"2025-08-07","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":272000,"output":128000},"cost":{"input":1.25,"output":10,"cache_read":0.13}},"text-embedding-3-small":{"id":"text-embedding-3-small","name":"text-embedding-3-small","family":"text-embedding","attachment":false,"reasoning":false,"tool_call":false,"release_date":"2024-01-25","last_updated":"2024-01-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":8191,"output":1536},"cost":{"input":0.02,"output":0}},"mistral-small-2503":{"id":"mistral-small-2503","name":"Mistral Small 3.1","family":"mistral-small","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-09","release_date":"2025-03-01","last_updated":"2025-03-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":32768},"cost":{"input":0.1,"output":0.3}},"kimi-k2-thinking":{"id":"kimi-k2-thinking","name":"Kimi K2 Thinking","family":"kimi-thinking","attachment":false,"reasoning":true,"tool_call":true,"interleaved":true,"temperature":true,"knowledge":"2024-08","release_date":"2025-11-06","last_updated":"2025-12-02","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.6,"output":2.5,"cache_read":0.15}},"deepseek-v3-0324":{"id":"deepseek-v3-0324","name":"DeepSeek-V3-0324","family":"deepseek","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-07","release_date":"2025-03-24","last_updated":"2025-03-24","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":131072},"cost":{"input":1.14,"output":4.56}},"phi-3-medium-128k-instruct":{"id":"phi-3-medium-128k-instruct","name":"Phi-3-medium-instruct (128k)","family":"phi","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2023-10","release_date":"2024-04-23","last_updated":"2024-04-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4096},"cost":{"input":0.17,"output":0.68}},"o3":{"id":"o3","name":"o3","family":"o","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2024-05","release_date":"2025-04-16","last_updated":"2025-04-16","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":2,"output":8,"cache_read":0.5}},"gpt-5-codex":{"id":"gpt-5-codex","name":"GPT-5-Codex","family":"gpt-codex","attachment":false,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-09-15","last_updated":"2025-09-15","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":1.25,"output":10,"cache_read":0.13}},"gpt-5.2":{"id":"gpt-5.2","name":"GPT-5.2","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2025-12-11","last_updated":"2025-12-11","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":1.75,"output":14,"cache_read":0.125}},"gpt-4o":{"id":"gpt-4o","name":"GPT-4o","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2023-09","release_date":"2024-05-13","last_updated":"2024-08-06","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":2.5,"output":10,"cache_read":1.25}},"gpt-5-chat":{"id":"gpt-5-chat","name":"GPT-5 Chat","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":false,"temperature":false,"knowledge":"2024-10-24","release_date":"2025-08-07","last_updated":"2025-08-07","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":1.25,"output":10,"cache_read":0.13}},"meta-llama-3.1-405b-instruct":{"id":"meta-llama-3.1-405b-instruct","name":"Meta-Llama-3.1-405B-Instruct","family":"llama","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2023-12","release_date":"2024-07-23","last_updated":"2024-07-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":32768},"cost":{"input":5.33,"output":16}},"gpt-4-turbo-vision":{"id":"gpt-4-turbo-vision","name":"GPT-4 Turbo Vision","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2023-11","release_date":"2023-11-06","last_updated":"2024-04-09","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":4096},"cost":{"input":10,"output":30}},"ministral-3b":{"id":"ministral-3b","name":"Ministral 3B","family":"ministral","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-03","release_date":"2024-10-22","last_updated":"2024-10-22","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":8192},"cost":{"input":0.04,"output":0.04}},"gpt-5-mini":{"id":"gpt-5-mini","name":"GPT-5 Mini","family":"gpt-mini","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2024-05-30","release_date":"2025-08-07","last_updated":"2025-08-07","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":272000,"output":128000},"cost":{"input":0.25,"output":2,"cache_read":0.03}},"deepseek-r1-0528":{"id":"deepseek-r1-0528","name":"DeepSeek-R1-0528","family":"deepseek-thinking","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-07","release_date":"2025-05-28","last_updated":"2025-05-28","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":163840,"output":163840},"cost":{"input":1.35,"output":5.4}},"gpt-5-pro":{"id":"gpt-5-pro","name":"GPT-5 Pro","family":"gpt-pro","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-10-06","last_updated":"2025-10-06","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":272000},"cost":{"input":15,"output":120}},"model-router":{"id":"model-router","name":"Model Router","family":"model-router","attachment":true,"reasoning":false,"tool_call":true,"release_date":"2025-05-19","last_updated":"2025-11-18","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":0.14,"output":0}},"gpt-3.5-turbo-1106":{"id":"gpt-3.5-turbo-1106","name":"GPT-3.5 Turbo 1106","family":"gpt","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2021-08","release_date":"2023-11-06","last_updated":"2023-11-06","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":16384,"output":16384},"cost":{"input":1,"output":2}},"mistral-large-2411":{"id":"mistral-large-2411","name":"Mistral Large 24.11","family":"mistral-large","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-09","release_date":"2024-11-01","last_updated":"2024-11-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":32768},"cost":{"input":2,"output":6}}}},"openrouter":{"id":"openrouter","env":["OPENROUTER_API_KEY"],"npm":"@openrouter/ai-sdk-provider","api":"https://openrouter.ai/api/v1","name":"OpenRouter","doc":"https://openrouter.ai/models","models":{"kwaipilot/kat-coder-pro-v2":{"id":"kwaipilot/kat-coder-pro-v2","name":"KAT-Coder-Pro V2","family":"kat-coder","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-03-27","last_updated":"2026-03-27","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":80000},"cost":{"input":0.3,"output":1.2,"cache_read":0.06}},"z-ai/glm-4.5-air:free":{"id":"z-ai/glm-4.5-air:free","name":"GLM 4.5 Air (free)","family":"glm-air","attachment":false,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"knowledge":"2025-04","release_date":"2025-07-28","last_updated":"2025-07-28","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":96000},"cost":{"input":0,"output":0}},"z-ai/glm-4.6":{"id":"z-ai/glm-4.6","name":"GLM-4.6","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-09-30","last_updated":"2025-09-30","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":202752,"output":131072},"cost":{"input":0.43,"output":1.74,"cache_read":0.08}},"z-ai/glm-4.7":{"id":"z-ai/glm-4.7","name":"GLM-4.7","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_details"},"structured_output":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-12-22","last_updated":"2025-12-22","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":202752,"output":131072},"cost":{"input":0.4,"output":1.75,"cache_read":0.08}},"z-ai/glm-4-32b":{"id":"z-ai/glm-4-32b","name":"GLM 4 32B ","family":"glm","attachment":false,"reasoning":false,"tool_call":true,"structured_output":false,"temperature":true,"knowledge":"2024-06-30","release_date":"2025-07-24","last_updated":"2025-07-24","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":128000},"cost":{"input":0.1,"output":0.1}},"z-ai/glm-4.5v":{"id":"z-ai/glm-4.5v","name":"GLM-4.5V","family":"glm","attachment":true,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"knowledge":"2025-04","release_date":"2025-08-11","last_updated":"2025-08-11","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":65536,"output":16384},"cost":{"input":0.6,"output":1.8,"cache_read":0.11}},"z-ai/glm-4.6v":{"id":"z-ai/glm-4.6v","name":"GLM-4.6V","family":"glm","attachment":true,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"knowledge":"2025-04","release_date":"2025-12-08","last_updated":"2025-12-08","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":24000},"cost":{"input":0.3,"output":0.9,"cache_read":0.05}},"z-ai/glm-4.7-flash":{"id":"z-ai/glm-4.7-flash","name":"GLM-4.7-Flash","family":"glm-flash","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_details"},"structured_output":true,"temperature":true,"knowledge":"2025-04","release_date":"2026-01-19","last_updated":"2026-01-19","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":202752,"output":16384},"cost":{"input":0.06,"output":0.4,"cache_read":0.01}},"z-ai/glm-5v-turbo":{"id":"z-ai/glm-5v-turbo","name":"GLM-5V-Turbo","family":"glm","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":false,"temperature":true,"release_date":"2026-04-01","last_updated":"2026-04-01","modalities":{"input":["image","text","video"],"output":["text"]},"open_weights":false,"limit":{"context":202752,"output":131072},"cost":{"input":1.2,"output":4,"cache_read":0.24}},"z-ai/glm-5":{"id":"z-ai/glm-5","name":"GLM-5","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-02-11","last_updated":"2026-02-11","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":202752,"output":16384},"cost":{"input":0.6,"output":1.92,"cache_read":0.12}},"z-ai/glm-5-turbo":{"id":"z-ai/glm-5-turbo","name":"GLM-5-Turbo","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":false,"temperature":true,"release_date":"2026-03-16","last_updated":"2026-03-16","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":202752,"output":131072},"cost":{"input":1.2,"output":4,"cache_read":0.24}},"z-ai/glm-4.5":{"id":"z-ai/glm-4.5","name":"GLM-4.5","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"knowledge":"2025-04","release_date":"2025-07-28","last_updated":"2025-07-28","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":98304},"cost":{"input":0.6,"output":2.2,"cache_read":0.11}},"z-ai/glm-4.5-air":{"id":"z-ai/glm-4.5-air","name":"GLM-4.5-Air","family":"glm-air","attachment":false,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"knowledge":"2025-04","release_date":"2025-07-28","last_updated":"2025-07-28","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131070,"output":131070},"cost":{"input":0.125,"output":0.85,"cache_read":0.06}},"z-ai/glm-5.1":{"id":"z-ai/glm-5.1","name":"GLM-5.1","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-03-27","last_updated":"2026-03-27","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":202752,"output":131072},"cost":{"input":0.98,"output":3.08,"cache_read":0.182}},"upstage/solar-pro-3":{"id":"upstage/solar-pro-3","name":"Solar Pro 3","family":"solar-pro","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-01-27","last_updated":"2026-01-27","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":128000},"cost":{"input":0.15,"output":0.6,"cache_read":0.015}},"prime-intellect/intellect-3":{"id":"prime-intellect/intellect-3","name":"INTELLECT-3","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-10","release_date":"2025-11-27","last_updated":"2025-11-27","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":131072},"cost":{"input":0.2,"output":1.1}},"rekaai/reka-edge":{"id":"rekaai/reka-edge","name":"Reka Edge","family":"reka","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-03-20","last_updated":"2026-03-20","modalities":{"input":["image","text","video"],"output":["text"]},"open_weights":true,"limit":{"context":16384,"output":16384},"cost":{"input":0.1,"output":0.1}},"rekaai/reka-flash-3":{"id":"rekaai/reka-flash-3","name":"Reka Flash 3","family":"reka","attachment":false,"reasoning":true,"tool_call":false,"structured_output":false,"temperature":true,"knowledge":"2025-01-31","release_date":"2025-03-12","last_updated":"2025-03-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":65536,"output":65536},"cost":{"input":0.1,"output":0.2}},"nousresearch/hermes-4-70b":{"id":"nousresearch/hermes-4-70b","name":"Hermes 4 70B","family":"hermes","attachment":false,"reasoning":true,"tool_call":false,"structured_output":false,"temperature":true,"knowledge":"2024-08-31","release_date":"2025-08-26","last_updated":"2025-08-26","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":131072},"cost":{"input":0.13,"output":0.4}},"nousresearch/hermes-3-llama-3.1-405b":{"id":"nousresearch/hermes-3-llama-3.1-405b","name":"Hermes 3 405B Instruct","family":"nousresearch","attachment":false,"reasoning":false,"tool_call":false,"structured_output":true,"temperature":true,"knowledge":"2023-12-31","release_date":"2024-08-16","last_updated":"2024-08-16","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":16384},"cost":{"input":1,"output":1}},"nousresearch/hermes-3-llama-3.1-405b:free":{"id":"nousresearch/hermes-3-llama-3.1-405b:free","name":"Hermes 3 405B Instruct (free)","family":"hermes","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":true,"knowledge":"2023-12-31","release_date":"2024-08-16","last_updated":"2024-08-16","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":131072},"cost":{"input":0,"output":0}},"nousresearch/hermes-3-llama-3.1-70b":{"id":"nousresearch/hermes-3-llama-3.1-70b","name":"Hermes 3 70B Instruct","family":"nousresearch","attachment":false,"reasoning":false,"tool_call":false,"structured_output":true,"temperature":true,"knowledge":"2023-12-31","release_date":"2024-08-18","last_updated":"2024-08-18","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":16384},"cost":{"input":0.3,"output":0.3}},"nousresearch/hermes-4-405b":{"id":"nousresearch/hermes-4-405b","name":"Hermes 4 405B","family":"hermes","attachment":false,"reasoning":true,"tool_call":false,"structured_output":false,"temperature":true,"knowledge":"2024-08-31","release_date":"2025-08-26","last_updated":"2025-08-26","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":131072},"cost":{"input":1,"output":3}},"mistralai/mistral-small-24b-instruct-2501":{"id":"mistralai/mistral-small-24b-instruct-2501","name":"Mistral Small 3","family":"mistral-small","attachment":false,"reasoning":false,"tool_call":false,"structured_output":true,"temperature":true,"knowledge":"2023-10-31","release_date":"2025-01-30","last_updated":"2025-01-30","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":32768,"output":16384},"cost":{"input":0.05,"output":0.08}},"mistralai/mistral-medium-3.1":{"id":"mistralai/mistral-medium-3.1","name":"Mistral Medium 3.1","family":"mistral-medium","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-06-30","release_date":"2025-08-13","last_updated":"2025-08-13","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":262144},"cost":{"input":0.4,"output":2,"cache_read":0.04}},"mistralai/ministral-14b-2512":{"id":"mistralai/ministral-14b-2512","name":"Ministral 3 14B 2512","family":"ministral","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-12-02","last_updated":"2025-12-02","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.2,"output":0.2,"cache_read":0.02}},"mistralai/mistral-large-2407":{"id":"mistralai/mistral-large-2407","name":"Mistral Large 2407","family":"mistral-large","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-03-31","release_date":"2024-11-19","last_updated":"2024-11-19","modalities":{"input":["text","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":131072},"cost":{"input":2,"output":6,"cache_read":0.2}},"mistralai/mistral-small-2603":{"id":"mistralai/mistral-small-2603","name":"Mistral Small 4","family":"mistral-small","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-06","release_date":"2026-03-16","last_updated":"2026-03-16","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.15,"output":0.6,"cache_read":0.015}},"mistralai/ministral-8b-2512":{"id":"mistralai/ministral-8b-2512","name":"Ministral 3 8B 2512","family":"ministral","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-12-02","last_updated":"2025-12-02","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.15,"output":0.15,"cache_read":0.015}},"mistralai/mistral-large":{"id":"mistralai/mistral-large","name":"Mistral Large","family":"mistral-large","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-11-30","release_date":"2024-02-26","last_updated":"2024-02-26","modalities":{"input":["text","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":128000},"cost":{"input":2,"output":6,"cache_read":0.2}},"mistralai/mistral-small-3.1-24b-instruct":{"id":"mistralai/mistral-small-3.1-24b-instruct","name":"Mistral Small 3.1 24B","family":"mistral-small","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":true,"knowledge":"2023-10-31","release_date":"2025-03-17","last_updated":"2025-03-17","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":128000},"cost":{"input":0.351,"output":0.555}},"mistralai/mistral-nemo":{"id":"mistralai/mistral-nemo","name":"Mistral Nemo","family":"mistral-nemo","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-07","release_date":"2024-07-01","last_updated":"2024-07-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":131072},"cost":{"input":0.02,"output":0.03}},"mistralai/mistral-large-2512":{"id":"mistralai/mistral-large-2512","name":"Mistral Large 3","family":"mistral-large","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-11","release_date":"2024-11-01","last_updated":"2025-12-02","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.5,"output":1.5,"cache_read":0.05}},"mistralai/ministral-3b-2512":{"id":"mistralai/ministral-3b-2512","name":"Ministral 3 3B 2512","family":"ministral","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-12-02","last_updated":"2025-12-02","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":131072},"cost":{"input":0.1,"output":0.1,"cache_read":0.01}},"mistralai/mistral-saba":{"id":"mistralai/mistral-saba","name":"Saba","family":"mistral","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-09-30","release_date":"2025-02-17","last_updated":"2025-02-17","modalities":{"input":["text","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":32768,"output":32768},"cost":{"input":0.2,"output":0.6,"cache_read":0.02}},"mistralai/mistral-medium-3":{"id":"mistralai/mistral-medium-3","name":"Mistral Medium 3","family":"mistral-medium","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-05-07","last_updated":"2025-05-07","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":131072},"cost":{"input":0.4,"output":2,"cache_read":0.04}},"mistralai/voxtral-small-24b-2507":{"id":"mistralai/voxtral-small-24b-2507","name":"Voxtral Small 24B 2507","family":"mistral","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-10-30","last_updated":"2025-10-30","modalities":{"input":["text","audio","pdf"],"output":["text"]},"open_weights":true,"limit":{"context":32000,"output":32000},"cost":{"input":0.1,"output":0.3,"cache_read":0.01}},"mistralai/mistral-medium-3-5":{"id":"mistralai/mistral-medium-3-5","name":"Mistral Medium 3.5","family":"mistral-medium","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-04-30","last_updated":"2026-04-30","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"output":262144},"cost":{"input":1.5,"output":7.5}},"mistralai/mixtral-8x22b-instruct":{"id":"mistralai/mixtral-8x22b-instruct","name":"Mixtral 8x22B Instruct","family":"mistral","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-01-31","release_date":"2024-04-17","last_updated":"2024-04-17","modalities":{"input":["text","pdf"],"output":["text"]},"open_weights":true,"limit":{"context":65536,"output":65536},"cost":{"input":2,"output":6,"cache_read":0.2}},"mistralai/devstral-2512":{"id":"mistralai/devstral-2512","name":"Devstral 2","family":"devstral","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-12","release_date":"2025-12-09","last_updated":"2025-12-09","modalities":{"input":["text","pdf"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"status":"deprecated","cost":{"input":0.4,"output":2,"cache_read":0.04}},"mistralai/mistral-small-3.2-24b-instruct":{"id":"mistralai/mistral-small-3.2-24b-instruct","name":"Mistral Small 3.2 24B","family":"mistral-small","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2023-10-31","release_date":"2025-06-20","last_updated":"2025-06-20","modalities":{"input":["image","text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":16384},"cost":{"input":0.075,"output":0.2}},"mistralai/codestral-2508":{"id":"mistralai/codestral-2508","name":"Codestral 2508","family":"codestral","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-08-01","last_updated":"2025-08-01","modalities":{"input":["text","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":256000},"cost":{"input":0.3,"output":0.9,"cache_read":0.03}},"sao10k/l3.1-euryale-70b":{"id":"sao10k/l3.1-euryale-70b","name":"Llama 3.1 Euryale 70B v2.2","family":"llama","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2023-12-31","release_date":"2024-08-28","last_updated":"2024-08-28","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":16384},"cost":{"input":0.85,"output":0.85}},"sao10k/l3-lunaris-8b":{"id":"sao10k/l3-lunaris-8b","name":"Llama 3 8B Lunaris","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"structured_output":true,"temperature":true,"knowledge":"2023-12-31","release_date":"2024-08-13","last_updated":"2024-08-13","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":8192,"output":16384},"cost":{"input":0.04,"output":0.05}},"sao10k/l3.3-euryale-70b":{"id":"sao10k/l3.3-euryale-70b","name":"Llama 3.3 Euryale 70B","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"structured_output":true,"temperature":true,"knowledge":"2023-12-31","release_date":"2024-12-18","last_updated":"2024-12-18","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":16384},"cost":{"input":0.65,"output":0.75}},"sao10k/l3.1-70b-hanami-x1":{"id":"sao10k/l3.1-70b-hanami-x1","name":"Llama 3.1 70B Hanami x1","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":true,"knowledge":"2023-12-31","release_date":"2025-01-08","last_updated":"2025-01-08","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":16000,"output":16000},"cost":{"input":3,"output":3}},"deepseek/deepseek-r1-0528":{"id":"deepseek/deepseek-r1-0528","name":"R1 0528","family":"deepseek","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-05-28","last_updated":"2025-05-28","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":163840,"output":32768},"cost":{"input":0.5,"output":2.15,"cache_read":0.35}},"deepseek/deepseek-v3.2":{"id":"deepseek/deepseek-v3.2","name":"DeepSeek V3.2","family":"deepseek","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-07","release_date":"2025-12-01","last_updated":"2025-12-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":64000},"cost":{"input":0.2288,"output":0.3432}},"deepseek/deepseek-r1":{"id":"deepseek/deepseek-r1","name":"DeepSeek-R1","family":"deepseek-thinking","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-07","release_date":"2025-01-20","last_updated":"2025-05-29","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":64000,"output":16000},"cost":{"input":0.7,"output":2.5}},"deepseek/deepseek-chat-v3.1":{"id":"deepseek/deepseek-chat-v3.1","name":"DeepSeek V3.1","family":"deepseek","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-08-21","last_updated":"2025-08-21","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":163840,"output":32768},"cost":{"input":0.21,"output":0.79,"cache_read":0.13}},"deepseek/deepseek-chat-v3-0324":{"id":"deepseek/deepseek-chat-v3-0324","name":"DeepSeek V3 0324","family":"deepseek","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-07-31","release_date":"2025-03-24","last_updated":"2025-03-24","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":163840,"output":16384},"cost":{"input":0.2,"output":0.77,"cache_read":0.135}},"deepseek/deepseek-r1-distill-llama-70b":{"id":"deepseek/deepseek-r1-distill-llama-70b","name":"R1 Distill Llama 70B","family":"deepseek-thinking","attachment":false,"reasoning":true,"tool_call":false,"structured_output":false,"temperature":true,"knowledge":"2024-07-31","release_date":"2025-01-23","last_updated":"2025-01-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":16384},"cost":{"input":0.7,"output":0.8}},"deepseek/deepseek-chat":{"id":"deepseek/deepseek-chat","name":"DeepSeek Chat","family":"deepseek","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-09","release_date":"2025-12-01","last_updated":"2026-02-28","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":16000},"cost":{"input":0.2002,"output":0.8001}},"deepseek/deepseek-v3.1-terminus":{"id":"deepseek/deepseek-v3.1-terminus","name":"DeepSeek V3.1 Terminus","family":"deepseek","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-09-22","last_updated":"2025-09-22","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":163840,"output":32768},"cost":{"input":0.27,"output":0.95,"cache_read":0.13}},"deepseek/deepseek-v4-flash":{"id":"deepseek/deepseek-v4-flash","name":"DeepSeek V4 Flash","family":"deepseek-flash","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-05","release_date":"2026-04-24","last_updated":"2026-04-24","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1048576,"output":131072},"cost":{"input":0.0983,"output":0.1966,"cache_read":0.0197}},"deepseek/deepseek-v3.2-exp":{"id":"deepseek/deepseek-v3.2-exp","name":"DeepSeek V3.2 Exp","family":"deepseek","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-07-31","release_date":"2025-09-29","last_updated":"2025-09-29","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":163840,"output":65536},"cost":{"input":0.27,"output":0.41}},"deepseek/deepseek-v4-pro":{"id":"deepseek/deepseek-v4-pro","name":"DeepSeek V4 Pro","family":"deepseek-thinking","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-05","release_date":"2026-04-24","last_updated":"2026-04-24","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1048576,"output":384000},"cost":{"input":0.435,"output":0.87,"cache_read":0.003625}},"deepseek/deepseek-r1-distill-qwen-32b":{"id":"deepseek/deepseek-r1-distill-qwen-32b","name":"R1 Distill Qwen 32B","family":"deepseek","attachment":false,"reasoning":true,"tool_call":false,"structured_output":true,"temperature":true,"knowledge":"2024-07-31","release_date":"2025-01-29","last_updated":"2025-01-29","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":32768,"output":32768},"cost":{"input":0.29,"output":0.29}},"inception/mercury-2":{"id":"inception/mercury-2","name":"Mercury 2","family":"mercury","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-03-04","last_updated":"2026-03-04","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":50000},"cost":{"input":0.25,"output":0.75,"cache_read":0.025}},"relace/relace-apply-3":{"id":"relace/relace-apply-3","name":"Relace Apply 3","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":false,"release_date":"2025-09-26","last_updated":"2025-09-26","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":128000},"cost":{"input":0.85,"output":1.25}},"relace/relace-search":{"id":"relace/relace-search","name":"Relace Search","attachment":false,"reasoning":false,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-12-08","last_updated":"2025-12-08","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":128000},"cost":{"input":1,"output":3}},"thedrummer/rocinante-12b":{"id":"thedrummer/rocinante-12b","name":"Rocinante 12B","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-04-30","release_date":"2024-09-30","last_updated":"2024-09-30","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":32768,"output":32768},"cost":{"input":0.17,"output":0.43}},"thedrummer/skyfall-36b-v2":{"id":"thedrummer/skyfall-36b-v2","name":"Skyfall 36B V2","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":true,"knowledge":"2024-06-30","release_date":"2025-03-10","last_updated":"2025-03-10","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":32768,"output":32768},"cost":{"input":0.55,"output":0.8,"cache_read":0.25}},"thedrummer/unslopnemo-12b":{"id":"thedrummer/unslopnemo-12b","name":"UnslopNemo 12B","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-04-30","release_date":"2024-11-08","last_updated":"2024-11-08","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":32768,"output":32768},"cost":{"input":0.4,"output":0.4}},"thedrummer/cydonia-24b-v4.1":{"id":"thedrummer/cydonia-24b-v4.1","name":"Cydonia 24B V4.1","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":true,"knowledge":"2024-04-30","release_date":"2025-09-27","last_updated":"2025-09-27","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":131072},"cost":{"input":0.3,"output":0.5,"cache_read":0.15}},"deepcogito/cogito-v2.1-671b":{"id":"deepcogito/cogito-v2.1-671b","name":"Cogito v2.1 671B","family":"cogito","attachment":false,"reasoning":true,"tool_call":false,"structured_output":true,"temperature":true,"release_date":"2025-11-13","last_updated":"2025-11-13","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":128000},"cost":{"input":1.25,"output":1.25}},"inflection/inflection-3-pi":{"id":"inflection/inflection-3-pi","name":"Inflection 3 Pi","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":true,"knowledge":"2024-10-31","release_date":"2024-10-11","last_updated":"2024-10-11","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":8000,"output":1024},"cost":{"input":2.5,"output":10}},"inflection/inflection-3-productivity":{"id":"inflection/inflection-3-productivity","name":"Inflection 3 Productivity","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":true,"knowledge":"2024-10-31","release_date":"2024-10-11","last_updated":"2024-10-11","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":8000,"output":1024},"cost":{"input":2.5,"output":10}},"perceptron/perceptron-mk1":{"id":"perceptron/perceptron-mk1","name":"Perceptron Mk1","attachment":true,"reasoning":true,"tool_call":false,"structured_output":true,"temperature":true,"release_date":"2026-05-12","last_updated":"2026-05-12","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":32768,"output":8192},"cost":{"input":0.15,"output":1.5}},"anthropic/claude-sonnet-4":{"id":"anthropic/claude-sonnet-4","name":"Claude Sonnet 4","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"knowledge":"2025-01-31","release_date":"2025-05-22","last_updated":"2025-05-22","modalities":{"input":["image","text","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":64000},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75,"tiers":[{"input":6,"output":22.5,"cache_read":0.6,"cache_write":7.5,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":6,"output":22.5,"cache_read":0.6,"cache_write":7.5}}},"anthropic/claude-opus-4.8-fast":{"id":"anthropic/claude-opus-4.8-fast","name":"Claude Opus 4.8 (Fast)","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"release_date":"2026-05-27","last_updated":"2026-05-27","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":10,"output":50,"cache_read":1,"cache_write":12.5}},"anthropic/claude-sonnet-4.6":{"id":"anthropic/claude-sonnet-4.6","name":"Claude Sonnet 4.6","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-08-31","release_date":"2026-02-17","last_updated":"2026-03-13","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75,"tiers":[{"input":6,"output":22.5,"cache_read":0.6,"cache_write":7.5,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":6,"output":22.5,"cache_read":0.6,"cache_write":7.5}}},"anthropic/claude-opus-4.5":{"id":"anthropic/claude-opus-4.5","name":"Claude Opus 4.5 (latest)","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-11-24","last_updated":"2025-11-24","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25}},"anthropic/claude-opus-4.7":{"id":"anthropic/claude-opus-4.7","name":"Claude Opus 4.7","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2026-01-31","release_date":"2026-04-16","last_updated":"2026-04-16","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25,"tiers":[{"input":10,"output":37.5,"cache_read":1,"cache_write":12.5,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":10,"output":37.5,"cache_read":1,"cache_write":12.5}}},"anthropic/claude-3.5-haiku":{"id":"anthropic/claude-3.5-haiku","name":"Claude 3.5 Haiku","family":"claude","attachment":true,"reasoning":false,"tool_call":true,"structured_output":false,"temperature":true,"knowledge":"2024-07-31","release_date":"2024-11-04","last_updated":"2024-11-04","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":8192},"cost":{"input":0.8,"output":4,"cache_read":0.08,"cache_write":1}},"anthropic/claude-3-haiku":{"id":"anthropic/claude-3-haiku","name":"Claude 3 Haiku","family":"claude","attachment":true,"reasoning":false,"tool_call":true,"structured_output":false,"temperature":true,"knowledge":"2023-08-31","release_date":"2024-03-13","last_updated":"2024-03-13","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":4096},"cost":{"input":0.25,"output":1.25,"cache_read":0.03,"cache_write":0.3}},"anthropic/claude-opus-4.6-fast":{"id":"anthropic/claude-opus-4.6-fast","name":"Claude Opus 4.6 (Fast)","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-04-07","last_updated":"2026-04-07","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":30,"output":150,"cache_read":3,"cache_write":37.5}},"anthropic/claude-sonnet-4.5":{"id":"anthropic/claude-sonnet-4.5","name":"Claude Sonnet 4.5 (latest)","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-07-31","release_date":"2025-09-29","last_updated":"2025-09-29","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":64000},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75,"tiers":[{"input":6,"output":22.5,"cache_read":0.6,"cache_write":7.5,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":6,"output":22.5,"cache_read":0.6,"cache_write":7.5}}},"anthropic/claude-opus-4.6":{"id":"anthropic/claude-opus-4.6","name":"Claude Opus 4.6","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-05-31","release_date":"2026-02-05","last_updated":"2026-03-13","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25,"tiers":[{"input":10,"output":37.5,"cache_read":1,"cache_write":12.5,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":10,"output":37.5,"cache_read":1,"cache_write":12.5}}},"anthropic/claude-haiku-4.5":{"id":"anthropic/claude-haiku-4.5","name":"Claude Haiku 4.5 (latest)","family":"claude-haiku","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-02-28","release_date":"2025-10-15","last_updated":"2025-10-15","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":1,"output":5,"cache_read":0.1,"cache_write":1.25}},"anthropic/claude-opus-4.7-fast":{"id":"anthropic/claude-opus-4.7-fast","name":"Claude Opus 4.7 (Fast)","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"release_date":"2026-05-12","last_updated":"2026-05-12","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":30,"output":150,"cache_read":3,"cache_write":37.5}},"anthropic/claude-opus-4.1":{"id":"anthropic/claude-opus-4.1","name":"Claude Opus 4.1 (latest)","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":32000},"cost":{"input":15,"output":75,"cache_read":1.5,"cache_write":18.75}},"anthropic/claude-opus-4.8":{"id":"anthropic/claude-opus-4.8","name":"Claude Opus 4.8","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"release_date":"2026-05-28","last_updated":"2026-05-28","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25}},"anthropic/claude-opus-4":{"id":"anthropic/claude-opus-4","name":"Claude Opus 4","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"knowledge":"2025-01-31","release_date":"2025-05-22","last_updated":"2025-05-22","modalities":{"input":["image","text","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":32000},"cost":{"input":15,"output":75,"cache_read":1.5,"cache_write":18.75}},"xiaomi/mimo-v2.5":{"id":"xiaomi/mimo-v2.5","name":"MiMo-V2.5","family":"mimo","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_details"},"structured_output":false,"temperature":true,"knowledge":"2024-12","release_date":"2026-04-22","last_updated":"2026-04-22","modalities":{"input":["text","image","audio","video"],"output":["text"]},"open_weights":true,"limit":{"context":1048576,"output":131072},"cost":{"input":0.14,"output":0.28,"cache_read":0.0028}},"xiaomi/mimo-v2-flash":{"id":"xiaomi/mimo-v2-flash","name":"MiMo-V2-Flash","family":"mimo","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_details"},"structured_output":false,"temperature":true,"knowledge":"2024-12-01","release_date":"2025-12-16","last_updated":"2026-02-04","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":65536},"cost":{"input":0.1,"output":0.3,"cache_read":0.01}},"xiaomi/mimo-v2.5-pro":{"id":"xiaomi/mimo-v2.5-pro","name":"MiMo-V2.5-Pro","family":"mimo","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2024-12","release_date":"2026-04-22","last_updated":"2026-04-22","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1048576,"output":131072},"cost":{"input":0.435,"output":0.87,"cache_read":0.0036}},"ai21/jamba-large-1.7":{"id":"ai21/jamba-large-1.7","name":"Jamba Large 1.7","family":"jamba","attachment":false,"reasoning":false,"tool_call":true,"structured_output":false,"temperature":true,"knowledge":"2024-08-31","release_date":"2025-08-08","last_updated":"2025-08-08","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"output":4096},"cost":{"input":2,"output":8}},"qwen/qwen3.5-plus-02-15":{"id":"qwen/qwen3.5-plus-02-15","name":"Qwen3.5 Plus 2026-02-15","family":"qwen","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-04","release_date":"2026-02-16","last_updated":"2026-02-16","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":65536},"cost":{"input":0.26,"output":1.56}},"qwen/qwen-plus-2025-07-28":{"id":"qwen/qwen-plus-2025-07-28","name":"Qwen Plus 0728","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-09-08","last_updated":"2025-09-08","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":32768},"cost":{"input":0.26,"output":0.78}},"qwen/qwen3-30b-a3b-instruct-2507":{"id":"qwen/qwen3-30b-a3b-instruct-2507","name":"Qwen3 30B A3B Instruct 2507","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-06-30","release_date":"2025-07-29","last_updated":"2025-07-29","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":32000},"cost":{"input":0.04815,"output":0.19305}},"qwen/qwen3-next-80b-a3b-instruct:free":{"id":"qwen/qwen3-next-80b-a3b-instruct:free","name":"Qwen3 Next 80B A3B Instruct (free)","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-09","last_updated":"2025-09","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0,"output":0}},"qwen/qwen3.5-122b-a10b":{"id":"qwen/qwen3.5-122b-a10b","name":"Qwen3.5 122B-A10B","family":"qwen","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-02-23","last_updated":"2026-02-23","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.26,"output":2.08}},"qwen/qwen3-next-80b-a3b-instruct":{"id":"qwen/qwen3-next-80b-a3b-instruct","name":"Qwen3-Next 80B-A3B Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-09","last_updated":"2025-09","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":16384},"cost":{"input":0.09,"output":1.1}},"qwen/qwen2.5-vl-72b-instruct":{"id":"qwen/qwen2.5-vl-72b-instruct","name":"Qwen2.5 VL 72B Instruct","family":"qwen","attachment":true,"reasoning":false,"tool_call":false,"structured_output":true,"temperature":true,"knowledge":"2024-06-30","release_date":"2025-02-01","last_updated":"2025-02-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":32000,"output":8192},"cost":{"input":0.25,"output":0.75}},"qwen/qwen3-vl-30b-a3b-instruct":{"id":"qwen/qwen3-vl-30b-a3b-instruct","name":"Qwen3 VL 30B A3B Instruct","family":"qwen","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-10-06","last_updated":"2025-10-06","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":32768},"cost":{"input":0.13,"output":0.52}},"qwen/qwen3-coder:free":{"id":"qwen/qwen3-coder:free","name":"Qwen3 Coder 480B A35B (free)","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"structured_output":false,"temperature":true,"knowledge":"2025-06-30","release_date":"2025-07-23","last_updated":"2025-07-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262000,"output":262000},"cost":{"input":0,"output":0}},"qwen/qwen3-32b":{"id":"qwen/qwen3-32b","name":"Qwen3 32B","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-04","last_updated":"2025-04","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":40960,"output":16384},"cost":{"input":0.08,"output":0.28}},"qwen/qwen3-coder-30b-a3b-instruct":{"id":"qwen/qwen3-coder-30b-a3b-instruct","name":"Qwen3-Coder 30B-A3B Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-04","last_updated":"2025-04","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":160000,"output":32768},"cost":{"input":0.07,"output":0.27}},"qwen/qwen3-vl-30b-a3b-thinking":{"id":"qwen/qwen3-vl-30b-a3b-thinking","name":"Qwen3 VL 30B A3B Thinking","family":"qwen","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-10-06","last_updated":"2025-10-06","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":32768},"cost":{"input":0.13,"output":1.56}},"qwen/qwen-2.5-coder-32b-instruct":{"id":"qwen/qwen-2.5-coder-32b-instruct","name":"Qwen2.5 Coder 32B Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":true,"knowledge":"2024-06-30","release_date":"2024-11-11","last_updated":"2024-11-11","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":32768,"output":32768},"cost":{"input":0.66,"output":1}},"qwen/qwen3-vl-235b-a22b-instruct":{"id":"qwen/qwen3-vl-235b-a22b-instruct","name":"Qwen3 VL 235B A22B Instruct","family":"qwen","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-09-23","last_updated":"2025-09-23","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":16384},"cost":{"input":0.2,"output":0.88,"cache_read":0.11}},"qwen/qwen3.6-27b":{"id":"qwen/qwen3.6-27b","name":"Qwen3.6 27B","family":"qwen","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-04-22","last_updated":"2026-04-22","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":131072},"cost":{"input":0.289,"output":2.4}},"qwen/qwen3-235b-a22b":{"id":"qwen/qwen3-235b-a22b","name":"Qwen3 235B-A22B","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"knowledge":"2025-04","release_date":"2025-04","last_updated":"2025-04","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":8192},"cost":{"input":0.455,"output":1.82}},"qwen/qwen3.5-plus-20260420":{"id":"qwen/qwen3.5-plus-20260420","name":"Qwen3.5 Plus 2026-04-20","family":"qwen3.5","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-04-27","last_updated":"2026-04-27","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":65536},"cost":{"input":0.3,"output":1.8,"cache_write":0.375}},"qwen/qwen3-max":{"id":"qwen/qwen3-max","name":"Qwen3 Max","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"structured_output":false,"temperature":true,"knowledge":"2025-04","release_date":"2025-09-23","last_updated":"2025-09-23","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"output":32768},"cost":{"input":0.78,"output":3.9,"cache_read":0.156,"cache_write":0.975}},"qwen/qwen3-coder-plus":{"id":"qwen/qwen3-coder-plus","name":"Qwen3 Coder Plus","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-07-23","last_updated":"2025-07-23","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":65536},"cost":{"input":0.65,"output":3.25,"cache_read":0.13,"cache_write":0.8125}},"qwen/qwen3-14b":{"id":"qwen/qwen3-14b","name":"Qwen3 14B","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-04-28","last_updated":"2025-04-28","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":40960,"output":40960},"cost":{"input":0.1,"output":0.24}},"qwen/qwen3-coder-next":{"id":"qwen/qwen3-coder-next","name":"Qwen3 Coder Next","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-02-04","last_updated":"2026-02-04","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.11,"output":0.8,"cache_read":0.07}},"qwen/qwen3-235b-a22b-thinking-2507":{"id":"qwen/qwen3-235b-a22b-thinking-2507","name":"Qwen3 235B A22B Thinking 2507","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-06-30","release_date":"2025-07-25","last_updated":"2025-07-25","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.1,"output":0.1,"cache_read":0.1}},"qwen/qwen3-8b":{"id":"qwen/qwen3-8b","name":"Qwen3 8B","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-04-28","last_updated":"2025-04-28","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":40960,"output":8192},"cost":{"input":0.05,"output":0.4,"cache_read":0.05}},"qwen/qwen3.7-max":{"id":"qwen/qwen3.7-max","name":"Qwen3.7 Max","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-05-21","last_updated":"2026-05-21","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":65536},"cost":{"input":1.25,"output":3.75,"cache_read":0.25,"cache_write":1.5625}},"qwen/qwen3-235b-a22b-2507":{"id":"qwen/qwen3-235b-a22b-2507","name":"Qwen3 235B A22B Instruct 2507","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-06-30","release_date":"2025-07-21","last_updated":"2025-07-21","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":16384},"cost":{"input":0.071,"output":0.1}},"qwen/qwen3-30b-a3b":{"id":"qwen/qwen3-30b-a3b","name":"Qwen3 30B A3B","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-04-28","last_updated":"2025-04-28","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":40960,"output":16384},"cost":{"input":0.09,"output":0.45}},"qwen/qwen3.6-plus":{"id":"qwen/qwen3.6-plus","name":"Qwen3.6 Plus","family":"qwen","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-04","release_date":"2026-04-02","last_updated":"2026-04-02","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":65536},"cost":{"input":0.325,"output":1.95,"cache_write":0.40625}},"qwen/qwen3.5-9b":{"id":"qwen/qwen3.5-9b","name":"Qwen3.5-9B","family":"qwen3.5","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-03-10","last_updated":"2026-03-10","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":81920},"cost":{"input":0.04,"output":0.15}},"qwen/qwen3-vl-8b-instruct":{"id":"qwen/qwen3-vl-8b-instruct","name":"Qwen3 VL 8B Instruct","family":"qwen","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-10-14","last_updated":"2025-10-14","modalities":{"input":["image","text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":32768},"cost":{"input":0.08,"output":0.5}},"qwen/qwen3.5-flash-02-23":{"id":"qwen/qwen3.5-flash-02-23","name":"Qwen3.5-Flash","family":"qwen","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-02-25","last_updated":"2026-02-25","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":65536},"cost":{"input":0.065,"output":0.26}},"qwen/qwen3-next-80b-a3b-thinking":{"id":"qwen/qwen3-next-80b-a3b-thinking","name":"Qwen3-Next 80B-A3B (Thinking)","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-09","last_updated":"2025-09","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":32768},"cost":{"input":0.0975,"output":0.78}},"qwen/qwen3-coder-flash":{"id":"qwen/qwen3-coder-flash","name":"Qwen3 Coder Flash","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"structured_output":false,"temperature":true,"knowledge":"2025-04","release_date":"2025-07-28","last_updated":"2025-07-28","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":65536},"cost":{"input":0.195,"output":0.975,"cache_read":0.039,"cache_write":0.24375}},"qwen/qwen3.5-35b-a3b":{"id":"qwen/qwen3.5-35b-a3b","name":"Qwen3.5 35B-A3B","family":"qwen","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-02-23","last_updated":"2026-02-23","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.14,"output":1,"cache_read":0.05}},"qwen/qwen3.6-flash":{"id":"qwen/qwen3.6-flash","name":"Qwen3.6 Flash","family":"qwen3.6","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-04-27","last_updated":"2026-04-27","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":65536},"cost":{"input":0.1875,"output":1.125,"cache_write":0.234375}},"qwen/qwen3.6-35b-a3b":{"id":"qwen/qwen3.6-35b-a3b","name":"Qwen3.6 35B-A3B","family":"qwen","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-04-17","last_updated":"2026-04-17","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":262140,"output":262140},"cost":{"input":0.14,"output":1}},"qwen/qwen3-30b-a3b-thinking-2507":{"id":"qwen/qwen3-30b-a3b-thinking-2507","name":"Qwen3 30B A3B Thinking 2507","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-06-30","release_date":"2025-08-28","last_updated":"2025-08-28","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":131072},"cost":{"input":0.08,"output":0.4,"cache_read":0.08}},"qwen/qwen-plus-2025-07-28:thinking":{"id":"qwen/qwen-plus-2025-07-28:thinking","name":"Qwen Plus 0728 (thinking)","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-09-08","last_updated":"2025-09-08","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":32768},"cost":{"input":0.26,"output":0.78,"cache_write":0.325}},"qwen/qwen3-coder":{"id":"qwen/qwen3-coder","name":"Qwen3 Coder 480B A35B","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-06-30","release_date":"2025-07-23","last_updated":"2025-07-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":65536},"cost":{"input":0.22,"output":1.8}},"qwen/qwen3.6-max-preview":{"id":"qwen/qwen3.6-max-preview","name":"Qwen3.6 Max Preview","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-04","release_date":"2026-04-20","last_updated":"2026-04-20","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"output":65536},"cost":{"input":1.04,"output":6.24,"cache_write":1.3}},"qwen/qwen3.5-397b-a17b":{"id":"qwen/qwen3.5-397b-a17b","name":"Qwen3.5 397B-A17B","family":"qwen","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-02-15","last_updated":"2026-02-15","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":65536},"cost":{"input":0.39,"output":2.34}},"qwen/qwen3.7-plus":{"id":"qwen/qwen3.7-plus","name":"Qwen3.7 Plus","family":"qwen","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-04","release_date":"2026-06-02","last_updated":"2026-06-02","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":65536},"cost":{"input":0.4,"output":1.6,"cache_read":0.08,"cache_write":0.5}},"qwen/qwen-2.5-7b-instruct":{"id":"qwen/qwen-2.5-7b-instruct","name":"Qwen2.5 7B Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":true,"knowledge":"2024-06-30","release_date":"2024-10-16","last_updated":"2024-10-16","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":32768,"output":32768},"cost":{"input":0.04,"output":0.1}},"qwen/qwen3-max-thinking":{"id":"qwen/qwen3-max-thinking","name":"Qwen3 Max Thinking","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-02-09","last_updated":"2026-02-09","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"output":32768},"cost":{"input":0.78,"output":3.9}},"qwen/qwen3.5-27b":{"id":"qwen/qwen3.5-27b","name":"Qwen3.5 27B","family":"qwen","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-02-23","last_updated":"2026-02-23","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":65536},"cost":{"input":0.195,"output":1.56}},"qwen/qwen3-vl-8b-thinking":{"id":"qwen/qwen3-vl-8b-thinking","name":"Qwen3 VL 8B Thinking","family":"qwen","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-10-14","last_updated":"2025-10-14","modalities":{"input":["image","text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":32768},"cost":{"input":0.117,"output":1.365}},"qwen/qwen3-vl-235b-a22b-thinking":{"id":"qwen/qwen3-vl-235b-a22b-thinking","name":"Qwen3 VL 235B A22B Thinking","family":"qwen","attachment":true,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-09-23","last_updated":"2025-09-23","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":32768},"cost":{"input":0.26,"output":2.6}},"qwen/qwen-2.5-72b-instruct":{"id":"qwen/qwen-2.5-72b-instruct","name":"Qwen2.5 72B Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-06-30","release_date":"2024-09-19","last_updated":"2024-09-19","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":32768,"output":16384},"cost":{"input":0.36,"output":0.4}},"qwen/qwen3-vl-32b-instruct":{"id":"qwen/qwen3-vl-32b-instruct","name":"Qwen3 VL 32B Instruct","family":"qwen","attachment":true,"reasoning":false,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-10-23","last_updated":"2025-10-23","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":32768},"cost":{"input":0.104,"output":0.416}},"qwen/qwen-plus":{"id":"qwen/qwen-plus","name":"Qwen Plus","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"structured_output":false,"temperature":true,"knowledge":"2024-04","release_date":"2024-01-25","last_updated":"2025-09-11","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":32768},"cost":{"input":0.26,"output":0.78,"cache_read":0.052,"cache_write":0.325}},"~moonshotai/kimi-latest":{"id":"~moonshotai/kimi-latest","name":"MoonshotAI Kimi Latest","family":"kimi","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-04-27","last_updated":"2026-04-27","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"output":262144},"cost":{"input":0.684,"output":3.42,"cache_read":0.144}},"~google/gemini-pro-latest":{"id":"~google/gemini-pro-latest","name":"Google Gemini Pro Latest","family":"gemini-pro","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-04-27","last_updated":"2026-04-27","modalities":{"input":["audio","pdf","image","text","video"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":2,"output":12,"reasoning":12,"cache_read":0.2,"cache_write":0.375}},"~google/gemini-flash-latest":{"id":"~google/gemini-flash-latest","name":"Google Gemini Flash Latest","family":"gemini-flash","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01-01","release_date":"2026-04-27","last_updated":"2026-04-27","modalities":{"input":["text","image","video","pdf","audio"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":1.5,"output":9,"reasoning":9,"cache_read":0.15,"cache_write":0.083333}},"liquid/lfm-2-24b-a2b":{"id":"liquid/lfm-2-24b-a2b","name":"LFM2-24B-A2B","family":"liquid","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":true,"release_date":"2026-02-25","last_updated":"2026-02-25","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":32768,"output":32768},"cost":{"input":0.03,"output":0.12}},"liquid/lfm-2.5-1.2b-instruct:free":{"id":"liquid/lfm-2.5-1.2b-instruct:free","name":"LFM2.5-1.2B-Instruct (free)","family":"liquid","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":true,"knowledge":"2025-06","release_date":"2026-01-20","last_updated":"2026-01-20","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":32768,"output":32768},"cost":{"input":0,"output":0}},"liquid/lfm-2.5-1.2b-thinking:free":{"id":"liquid/lfm-2.5-1.2b-thinking:free","name":"LFM2.5-1.2B-Thinking (free)","family":"liquid","attachment":false,"reasoning":true,"tool_call":false,"structured_output":false,"temperature":true,"knowledge":"2025-06","release_date":"2026-01-20","last_updated":"2026-01-20","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":32768,"output":32768},"cost":{"input":0,"output":0}},"essentialai/rnj-1-instruct":{"id":"essentialai/rnj-1-instruct","name":"Rnj 1 Instruct","family":"rnj","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-12-07","last_updated":"2025-12-07","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":32768,"output":32768},"cost":{"input":0.15,"output":0.15}},"cohere/command-r-plus-08-2024":{"id":"cohere/command-r-plus-08-2024","name":"Command R+","family":"command-r","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-06-01","release_date":"2024-08-30","last_updated":"2024-08-30","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4000},"cost":{"input":2.5,"output":10}},"cohere/command-r-08-2024":{"id":"cohere/command-r-08-2024","name":"Command R","family":"command-r","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-06-01","release_date":"2024-08-30","last_updated":"2024-08-30","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4000},"cost":{"input":0.15,"output":0.6}},"cohere/command-a":{"id":"cohere/command-a","name":"Command A","family":"command-a","attachment":false,"reasoning":false,"tool_call":false,"structured_output":true,"temperature":true,"knowledge":"2024-08-31","release_date":"2025-03-13","last_updated":"2025-03-13","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"output":8192},"cost":{"input":2.5,"output":10}},"cohere/command-r7b-12-2024":{"id":"cohere/command-r7b-12-2024","name":"Command R7B","family":"command-r","attachment":false,"reasoning":false,"tool_call":false,"structured_output":true,"temperature":true,"knowledge":"2024-06-01","release_date":"2024-02-27","last_updated":"2024-02-27","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4000},"cost":{"input":0.0375,"output":0.15}},"openrouter/free":{"id":"openrouter/free","name":"Free Models Router","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-02-01","last_updated":"2026-02-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"input":200000,"output":8000},"cost":{"input":0,"output":0}},"openrouter/pareto-code":{"id":"openrouter/pareto-code","name":"Pareto Code Router","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":false,"release_date":"2026-04-21","last_updated":"2026-04-21","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":2000000,"output":200000}},"openrouter/bodybuilder":{"id":"openrouter/bodybuilder","name":"Body Builder (beta)","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":false,"release_date":"2025-12-05","last_updated":"2025-12-05","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":128000}},"openrouter/fusion":{"id":"openrouter/fusion","name":"Fusion","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":false,"release_date":"2026-05-12","last_updated":"2026-05-12","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":128000}},"openrouter/owl-alpha":{"id":"openrouter/owl-alpha","name":"Owl Alpha","family":"alpha","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-04-28","last_updated":"2026-04-28","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1048756,"output":262144},"status":"alpha","cost":{"input":0,"output":0}},"openrouter/auto":{"id":"openrouter/auto","name":"Auto Router","family":"auto","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2023-11-08","last_updated":"2023-11-08","modalities":{"input":["text","image","audio","pdf","video"],"output":["text","image"]},"open_weights":false,"limit":{"context":2000000,"output":2000000}},"moonshotai/kimi-k2-thinking":{"id":"moonshotai/kimi-k2-thinking","name":"Kimi K2 Thinking","family":"kimi-thinking","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_details"},"structured_output":true,"temperature":true,"knowledge":"2024-08","release_date":"2025-11-06","last_updated":"2025-11-06","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.6,"output":2.5}},"moonshotai/kimi-k2.6":{"id":"moonshotai/kimi-k2.6","name":"Kimi K2.6","family":"kimi-k2.6","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_details"},"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-04-21","last_updated":"2026-04-21","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.684,"output":3.42,"cache_read":0.144}},"moonshotai/kimi-k2.6:free":{"id":"moonshotai/kimi-k2.6:free","name":"Kimi K2.6 (free)","family":"kimi-k2.6","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":false,"temperature":false,"knowledge":"2025-01","release_date":"2026-04-21","last_updated":"2026-04-21","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0,"output":0}},"moonshotai/kimi-k2-0905":{"id":"moonshotai/kimi-k2-0905","name":"Kimi K2 0905","family":"kimi","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-12-31","release_date":"2025-09-04","last_updated":"2025-09-04","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.6,"output":2.5}},"moonshotai/kimi-k2":{"id":"moonshotai/kimi-k2","name":"Kimi K2 0711","family":"kimi","attachment":false,"reasoning":false,"tool_call":true,"structured_output":false,"temperature":true,"knowledge":"2024-12-31","release_date":"2025-07-11","last_updated":"2025-07-11","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":32768},"cost":{"input":0.57,"output":2.3}},"moonshotai/kimi-k2.5":{"id":"moonshotai/kimi-k2.5","name":"Kimi K2.5","family":"kimi-k2.5","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_details"},"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-01","last_updated":"2026-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.4,"output":1.9,"cache_read":0.09}},"meta-llama/llama-3.1-70b-instruct":{"id":"meta-llama/llama-3.1-70b-instruct","name":"Llama 3.1 70B Instruct","family":"llama","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2023-12-31","release_date":"2024-07-23","last_updated":"2024-07-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":16384},"cost":{"input":0.4,"output":0.4}},"meta-llama/llama-4-maverick":{"id":"meta-llama/llama-4-maverick","name":"Llama 4 Maverick","family":"llama","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-08-31","release_date":"2025-04-05","last_updated":"2025-04-05","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":1048576,"output":16384},"cost":{"input":0.15,"output":0.6}},"meta-llama/llama-guard-4-12b":{"id":"meta-llama/llama-guard-4-12b","name":"Llama Guard 4 12B","family":"llama","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":true,"knowledge":"2024-08-31","release_date":"2025-04-30","last_updated":"2025-04-30","modalities":{"input":["image","text"],"output":["text"]},"open_weights":true,"limit":{"context":163840,"output":16384},"cost":{"input":0.18,"output":0.18}},"meta-llama/llama-3.2-3b-instruct:free":{"id":"meta-llama/llama-3.2-3b-instruct:free","name":"Llama 3.2 3B Instruct (free)","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":true,"knowledge":"2023-12-31","release_date":"2024-09-25","last_updated":"2024-09-25","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":131072},"cost":{"input":0,"output":0}},"meta-llama/llama-3.2-3b-instruct":{"id":"meta-llama/llama-3.2-3b-instruct","name":"Llama 3.2 3B Instruct","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":true,"knowledge":"2023-12-31","release_date":"2024-09-25","last_updated":"2024-09-25","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":80000,"output":80000},"cost":{"input":0.0509,"output":0.335}},"meta-llama/llama-4-scout":{"id":"meta-llama/llama-4-scout","name":"Llama 4 Scout","family":"llama","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-08-31","release_date":"2025-04-05","last_updated":"2025-04-05","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":327680,"output":16384},"cost":{"input":0.08,"output":0.3}},"meta-llama/llama-3.2-11b-vision-instruct":{"id":"meta-llama/llama-3.2-11b-vision-instruct","name":"Llama 3.2 11B Vision Instruct","family":"llama","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":true,"knowledge":"2023-12-31","release_date":"2024-09-25","last_updated":"2024-09-25","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":16384},"cost":{"input":0.245,"output":0.245}},"meta-llama/llama-3.3-70b-instruct:free":{"id":"meta-llama/llama-3.3-70b-instruct:free","name":"Llama 3.3 70B Instruct (free)","family":"llama","attachment":false,"reasoning":false,"tool_call":true,"structured_output":false,"temperature":true,"knowledge":"2023-12","release_date":"2024-12-06","last_updated":"2024-12-06","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":65536,"output":131072},"cost":{"input":0,"output":0}},"meta-llama/llama-3.2-1b-instruct":{"id":"meta-llama/llama-3.2-1b-instruct","name":"Llama 3.2 1B Instruct","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":true,"knowledge":"2023-12-31","release_date":"2024-09-25","last_updated":"2024-09-25","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":60000,"output":60000},"cost":{"input":0.027,"output":0.201}},"meta-llama/llama-3-70b-instruct":{"id":"meta-llama/llama-3-70b-instruct","name":"Llama 3 70B Instruct","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"structured_output":true,"temperature":true,"knowledge":"2023-12-31","release_date":"2024-04-18","last_updated":"2024-04-18","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":8192,"output":8000},"cost":{"input":0.51,"output":0.74}},"meta-llama/llama-3-8b-instruct":{"id":"meta-llama/llama-3-8b-instruct","name":"Llama 3 8B Instruct","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":true,"knowledge":"2023-12-31","release_date":"2024-04-18","last_updated":"2024-04-18","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":8192,"output":8192},"cost":{"input":0.14,"output":0.14}},"meta-llama/llama-3.1-8b-instruct":{"id":"meta-llama/llama-3.1-8b-instruct","name":"Llama 3.1 8B Instruct","family":"llama","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2023-12-31","release_date":"2024-07-23","last_updated":"2024-07-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":16384},"cost":{"input":0.02,"output":0.03}},"meta-llama/llama-3.3-70b-instruct":{"id":"meta-llama/llama-3.3-70b-instruct","name":"Llama-3.3-70B-Instruct","family":"llama","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2023-12","release_date":"2024-12-06","last_updated":"2024-12-06","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":16384},"cost":{"input":0.1,"output":0.32}},"meta-llama/llama-guard-3-8b":{"id":"meta-llama/llama-guard-3-8b","name":"Llama Guard 3 8B","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":true,"knowledge":"2023-12-31","release_date":"2025-02-12","last_updated":"2025-02-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":131072},"cost":{"input":0.484,"output":0.03}},"perplexity/sonar":{"id":"perplexity/sonar","name":"Sonar","family":"sonar","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":true,"release_date":"2025-01-27","last_updated":"2025-01-27","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":127072,"output":127072},"cost":{"input":1,"output":1}},"perplexity/sonar-pro":{"id":"perplexity/sonar-pro","name":"Sonar Pro","family":"sonar-pro","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":true,"release_date":"2025-03-07","last_updated":"2025-03-07","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":8000},"cost":{"input":3,"output":15}},"perplexity/sonar-reasoning-pro":{"id":"perplexity/sonar-reasoning-pro","name":"Sonar Reasoning Pro","family":"sonar-reasoning","attachment":true,"reasoning":true,"tool_call":false,"structured_output":false,"temperature":true,"release_date":"2025-03-07","last_updated":"2025-03-07","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":128000},"cost":{"input":2,"output":8}},"perplexity/sonar-pro-search":{"id":"perplexity/sonar-pro-search","name":"Sonar Pro Search","family":"sonar-pro","attachment":true,"reasoning":true,"tool_call":false,"structured_output":true,"temperature":true,"release_date":"2025-10-30","last_updated":"2025-10-30","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":8000},"cost":{"input":3,"output":15}},"perplexity/sonar-deep-research":{"id":"perplexity/sonar-deep-research","name":"Sonar Deep Research","family":"sonar-deep-research","attachment":false,"reasoning":true,"tool_call":false,"structured_output":false,"temperature":true,"release_date":"2025-03-07","last_updated":"2025-03-07","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":128000},"cost":{"input":2,"output":8,"reasoning":3}},"anthracite-org/magnum-v4-72b":{"id":"anthracite-org/magnum-v4-72b","name":"Magnum v4 72B","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":true,"knowledge":"2024-06-30","release_date":"2024-10-22","last_updated":"2024-10-22","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":16384,"output":2048},"cost":{"input":3,"output":5}},"mancer/weaver":{"id":"mancer/weaver","name":"Weaver (alpha)","family":"alpha","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":true,"knowledge":"2023-06-30","release_date":"2023-08-02","last_updated":"2023-08-02","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":8000,"output":2000},"cost":{"input":0.75,"output":1}},"baidu/ernie-4.5-vl-424b-a47b":{"id":"baidu/ernie-4.5-vl-424b-a47b","name":"ERNIE 4.5 VL 424B A47B ","family":"ernie","attachment":true,"reasoning":true,"tool_call":false,"structured_output":false,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-06-30","last_updated":"2025-06-30","modalities":{"input":["image","text"],"output":["text"]},"open_weights":true,"limit":{"context":123000,"output":16000},"cost":{"input":0.42,"output":1.25}},"x-ai/grok-4.20-multi-agent":{"id":"x-ai/grok-4.20-multi-agent","name":"Grok 4.20 Multi-Agent","family":"grok","attachment":true,"reasoning":true,"tool_call":false,"structured_output":true,"temperature":true,"knowledge":"2025-09-01","release_date":"2026-03-31","last_updated":"2026-03-31","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":2000000,"output":2000000},"cost":{"input":2,"output":6,"cache_read":0.2}},"x-ai/grok-build-0.1":{"id":"x-ai/grok-build-0.1","name":"Grok Build 0.1","family":"grok-build","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-04-16","last_updated":"2026-04-16","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":256000},"cost":{"input":1,"output":2,"cache_read":0.2}},"x-ai/grok-4.20":{"id":"x-ai/grok-4.20","name":"Grok 4.20","family":"grok","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-09-01","release_date":"2026-03-31","last_updated":"2026-03-31","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":2000000,"output":2000000},"cost":{"input":1.25,"output":2.5,"cache_read":0.2}},"x-ai/grok-4.3":{"id":"x-ai/grok-4.3","name":"Grok 4.3","family":"grok","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-04-17","last_updated":"2026-04-17","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":1000000},"cost":{"input":1.25,"output":2.5,"cache_read":0.2,"tiers":[{"input":2.5,"output":5,"cache_read":0.4,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":2.5,"output":5,"cache_read":0.4}}},"~openai/gpt-latest":{"id":"~openai/gpt-latest","name":"OpenAI GPT Latest","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-12-01","release_date":"2026-04-27","last_updated":"2026-04-27","modalities":{"input":["pdf","image","text"],"output":["text"]},"open_weights":false,"limit":{"context":1050000,"output":128000},"cost":{"input":5,"output":30,"cache_read":0.5}},"~openai/gpt-mini-latest":{"id":"~openai/gpt-mini-latest","name":"OpenAI GPT Mini Latest","family":"gpt-mini","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-04-27","last_updated":"2026-04-27","modalities":{"input":["pdf","image","text"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":0.75,"output":4.5,"cache_read":0.075}},"nvidia/nemotron-3-nano-30b-a3b":{"id":"nvidia/nemotron-3-nano-30b-a3b","name":"Nemotron 3 Nano 30B A3B","family":"nemotron","attachment":false,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-12-15","last_updated":"2025-12-15","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":228000},"cost":{"input":0.05,"output":0.2}},"nvidia/nemotron-3-ultra-550b-a55b:free":{"id":"nvidia/nemotron-3-ultra-550b-a55b:free","name":"Nemotron 3 Ultra (free)","family":"nemotron","attachment":false,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2026-06-04","last_updated":"2026-06-04","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1000000,"output":65536},"cost":{"input":0,"output":0}},"nvidia/nemotron-nano-9b-v2":{"id":"nvidia/nemotron-nano-9b-v2","name":"Nemotron Nano 9B v2","family":"nemotron","attachment":false,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-08-18","last_updated":"2025-08-18","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":16384},"cost":{"input":0.04,"output":0.16}},"nvidia/nemotron-3-nano-30b-a3b:free":{"id":"nvidia/nemotron-3-nano-30b-a3b:free","name":"Nemotron 3 Nano 30B A3B (free)","family":"nemotron","attachment":false,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-12-15","last_updated":"2025-12-15","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"output":256000},"cost":{"input":0,"output":0}},"nvidia/nemotron-3.5-content-safety:free":{"id":"nvidia/nemotron-3.5-content-safety:free","name":"Nemotron 3.5 Content Safety (free)","family":"nemotron","attachment":true,"reasoning":true,"tool_call":false,"structured_output":false,"temperature":true,"release_date":"2026-06-04","last_updated":"2026-06-04","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":8192},"cost":{"input":0,"output":0}},"nvidia/nemotron-3-nano-omni-30b-a3b-reasoning:free":{"id":"nvidia/nemotron-3-nano-omni-30b-a3b-reasoning:free","name":"Nemotron 3 Nano Omni (free)","family":"nemotron","attachment":true,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2026-04-28","last_updated":"2026-04-28","modalities":{"input":["text","image","video","audio"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"output":65536},"cost":{"input":0,"output":0}},"nvidia/nemotron-3-ultra-550b-a55b":{"id":"nvidia/nemotron-3-ultra-550b-a55b","name":"Nemotron 3 Ultra 550B A55B","family":"nemotron","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-06-04","last_updated":"2026-06-04","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":16384},"cost":{"input":0.5,"output":2.5,"cache_read":0.15}},"nvidia/nemotron-3-super-120b-a12b:free":{"id":"nvidia/nemotron-3-super-120b-a12b:free","name":"Nemotron 3 Super (free)","family":"nemotron","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-03-11","last_updated":"2026-03-11","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0,"output":0}},"nvidia/nemotron-nano-12b-v2-vl:free":{"id":"nvidia/nemotron-nano-12b-v2-vl:free","name":"Nemotron Nano 12B 2 VL (free)","family":"nemotron","attachment":true,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-10-28","last_updated":"2025-10-28","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":128000},"cost":{"input":0,"output":0}},"nvidia/nemotron-nano-9b-v2:free":{"id":"nvidia/nemotron-nano-9b-v2:free","name":"Nemotron Nano 9B V2 (free)","family":"nemotron","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-08-18","last_updated":"2025-08-18","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":128000},"cost":{"input":0,"output":0}},"nvidia/llama-3.3-nemotron-super-49b-v1.5":{"id":"nvidia/llama-3.3-nemotron-super-49b-v1.5","name":"Llama 3.3 Nemotron Super 49B v1.5","family":"nemotron","attachment":false,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-07-25","last_updated":"2025-07-25","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":16384},"cost":{"input":0.1,"output":0.4}},"nvidia/nemotron-3-super-120b-a12b":{"id":"nvidia/nemotron-3-super-120b-a12b","name":"Nemotron 3 Super 120B A12B","family":"nemotron","attachment":false,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2026-03-11","last_updated":"2026-03-11","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.09,"output":0.45}},"switchpoint/router":{"id":"switchpoint/router","name":"Switchpoint Router","attachment":false,"reasoning":true,"tool_call":false,"structured_output":false,"temperature":true,"release_date":"2025-07-11","last_updated":"2025-07-11","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":131072},"cost":{"input":0.85,"output":3.4}},"arcee-ai/trinity-mini":{"id":"arcee-ai/trinity-mini","name":"Trinity Mini","family":"trinity-mini","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-12-01","last_updated":"2025-12-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":131072},"cost":{"input":0.045,"output":0.15}},"arcee-ai/trinity-large-thinking":{"id":"arcee-ai/trinity-large-thinking","name":"Trinity Large Thinking","family":"trinity","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-04-01","last_updated":"2026-04-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.22,"output":0.85,"cache_read":0.06}},"arcee-ai/maestro-reasoning":{"id":"arcee-ai/maestro-reasoning","name":"Maestro Reasoning","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-05-05","last_updated":"2025-05-05","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":32000},"cost":{"input":0.9,"output":3.3}},"arcee-ai/coder-large":{"id":"arcee-ai/coder-large","name":"Coder Large","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-05-05","last_updated":"2025-05-05","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":32768,"output":32768},"cost":{"input":0.5,"output":0.8}},"arcee-ai/virtuoso-large":{"id":"arcee-ai/virtuoso-large","name":"Virtuoso Large","attachment":false,"reasoning":false,"tool_call":true,"structured_output":false,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-05-05","last_updated":"2025-05-05","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":64000},"cost":{"input":0.75,"output":1.2}},"gryphe/mythomax-l2-13b":{"id":"gryphe/mythomax-l2-13b","name":"MythoMax 13B","attachment":false,"reasoning":false,"tool_call":false,"structured_output":true,"temperature":true,"knowledge":"2023-06-30","release_date":"2023-07-02","last_updated":"2023-07-02","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":4096,"output":4096},"cost":{"input":0.06,"output":0.06}},"cognitivecomputations/dolphin-mistral-24b-venice-edition:free":{"id":"cognitivecomputations/dolphin-mistral-24b-venice-edition:free","name":"Uncensored (free)","family":"mistral","attachment":false,"reasoning":false,"tool_call":false,"structured_output":true,"temperature":true,"knowledge":"2024-04-30","release_date":"2025-07-09","last_updated":"2025-07-09","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":32768,"output":32768},"cost":{"input":0,"output":0}},"microsoft/phi-4":{"id":"microsoft/phi-4","name":"Phi 4","family":"phi","attachment":false,"reasoning":false,"tool_call":false,"structured_output":true,"temperature":true,"knowledge":"2024-06-30","release_date":"2025-01-10","last_updated":"2025-01-10","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":16384,"output":16384},"cost":{"input":0.065,"output":0.14}},"microsoft/wizardlm-2-8x22b":{"id":"microsoft/wizardlm-2-8x22b","name":"WizardLM-2 8x22B","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":true,"knowledge":"2024-04-30","release_date":"2024-04-16","last_updated":"2024-04-16","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":65535,"output":8000},"cost":{"input":0.62,"output":0.62}},"microsoft/phi-4-mini-instruct":{"id":"microsoft/phi-4-mini-instruct","name":"Phi 4 Mini Instruct","family":"phi","attachment":false,"reasoning":false,"tool_call":false,"structured_output":true,"temperature":true,"release_date":"2025-10-17","last_updated":"2025-10-17","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":128000},"cost":{"input":0.08,"output":0.35,"cache_read":0.08}},"writer/palmyra-x5":{"id":"writer/palmyra-x5","name":"Palmyra X5","family":"palmyra","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":true,"release_date":"2026-01-21","last_updated":"2026-01-21","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1040000,"output":8192},"cost":{"input":0.6,"output":6}},"bytedance-seed/seed-2.0-mini":{"id":"bytedance-seed/seed-2.0-mini","name":"Seed-2.0-Mini","family":"seed","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-02-26","last_updated":"2026-02-26","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"output":131072},"cost":{"input":0.1,"output":0.4}},"bytedance-seed/seed-1.6-flash":{"id":"bytedance-seed/seed-1.6-flash","name":"Seed 1.6 Flash","family":"seed","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-12-23","last_updated":"2025-12-23","modalities":{"input":["image","text","video"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"output":32768},"cost":{"input":0.075,"output":0.3}},"bytedance-seed/seed-1.6":{"id":"bytedance-seed/seed-1.6","name":"Seed 1.6","family":"seed","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-12-23","last_updated":"2025-12-23","modalities":{"input":["image","text","video"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"output":32768},"cost":{"input":0.25,"output":2}},"bytedance-seed/seed-2.0-lite":{"id":"bytedance-seed/seed-2.0-lite","name":"Seed-2.0-Lite","family":"seed","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-03-10","last_updated":"2026-03-10","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"output":131072},"cost":{"input":0.25,"output":2}},"nex-agi/deepseek-v3.1-nex-n1":{"id":"nex-agi/deepseek-v3.1-nex-n1","name":"DeepSeek V3.1 Nex N1","family":"deepseek","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-12-08","last_updated":"2025-12-08","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":163840},"cost":{"input":0.135,"output":0.5}},"tencent/hy3-preview":{"id":"tencent/hy3-preview","name":"Hy3 preview","family":"Hy","attachment":false,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2026-04-20","last_updated":"2026-04-20","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.063,"output":0.21,"cache_read":0.021}},"tencent/hunyuan-a13b-instruct":{"id":"tencent/hunyuan-a13b-instruct","name":"Hunyuan A13B Instruct","family":"hunyuan","attachment":false,"reasoning":true,"tool_call":false,"structured_output":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-07-08","last_updated":"2025-07-08","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":131072},"cost":{"input":0.14,"output":0.57}},"ibm-granite/granite-4.1-8b":{"id":"ibm-granite/granite-4.1-8b","name":"Granite 4.1 8B","family":"granite","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-04-30","last_updated":"2026-04-30","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":131072},"cost":{"input":0.05,"output":0.1,"cache_read":0.05}},"ibm-granite/granite-4.0-h-micro":{"id":"ibm-granite/granite-4.0-h-micro","name":"Granite 4.0 Micro","family":"granite","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":true,"release_date":"2025-10-20","last_updated":"2025-10-20","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131000,"output":131000},"cost":{"input":0.017,"output":0.112}},"stepfun/step-3.7-flash":{"id":"stepfun/step-3.7-flash","name":"Step 3.7 Flash","family":"step","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-05-28","last_updated":"2026-05-28","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":256000},"cost":{"input":0.2,"output":1.15,"cache_read":0.04}},"stepfun/step-3.5-flash":{"id":"stepfun/step-3.5-flash","name":"Step 3.5 Flash","attachment":false,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"knowledge":"2025-01","release_date":"2026-01-29","last_updated":"2026-02-13","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":16384},"cost":{"input":0.09,"output":0.3,"cache_read":0.02}},"aion-labs/aion-2.0":{"id":"aion-labs/aion-2.0","name":"Aion-2.0","attachment":false,"reasoning":true,"tool_call":false,"structured_output":false,"temperature":true,"release_date":"2026-02-23","last_updated":"2026-02-23","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":32768},"cost":{"input":0.8,"output":1.6,"cache_read":0.2}},"aion-labs/aion-1.0":{"id":"aion-labs/aion-1.0","name":"Aion-1.0","attachment":false,"reasoning":true,"tool_call":false,"structured_output":false,"temperature":true,"release_date":"2025-02-04","last_updated":"2025-02-04","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":32768},"cost":{"input":4,"output":8}},"aion-labs/aion-rp-llama-3.1-8b":{"id":"aion-labs/aion-rp-llama-3.1-8b","name":"Aion-RP 1.0 (8B)","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":true,"knowledge":"2023-12-31","release_date":"2025-02-04","last_updated":"2025-02-04","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":32768,"output":32768},"cost":{"input":0.8,"output":1.6}},"aion-labs/aion-1.0-mini":{"id":"aion-labs/aion-1.0-mini","name":"Aion-1.0-Mini","attachment":false,"reasoning":true,"tool_call":false,"structured_output":false,"temperature":true,"release_date":"2025-02-04","last_updated":"2025-02-04","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":32768},"cost":{"input":0.7,"output":1.4}},"amazon/nova-pro-v1":{"id":"amazon/nova-pro-v1","name":"Nova Pro 1.0","family":"nova-pro","attachment":true,"reasoning":false,"tool_call":true,"structured_output":false,"temperature":true,"knowledge":"2024-10-31","release_date":"2024-12-05","last_updated":"2024-12-05","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":300000,"output":5120},"cost":{"input":0.8,"output":3.2}},"amazon/nova-lite-v1":{"id":"amazon/nova-lite-v1","name":"Nova Lite 1.0","family":"nova-lite","attachment":true,"reasoning":false,"tool_call":true,"structured_output":false,"temperature":true,"knowledge":"2024-10-31","release_date":"2024-12-05","last_updated":"2024-12-05","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":300000,"output":5120},"cost":{"input":0.06,"output":0.24}},"amazon/nova-micro-v1":{"id":"amazon/nova-micro-v1","name":"Nova Micro 1.0","family":"nova-micro","attachment":false,"reasoning":false,"tool_call":true,"structured_output":false,"temperature":true,"knowledge":"2024-10-31","release_date":"2024-12-05","last_updated":"2024-12-05","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":5120},"cost":{"input":0.035,"output":0.14}},"amazon/nova-premier-v1":{"id":"amazon/nova-premier-v1","name":"Nova Premier 1.0","family":"nova","attachment":true,"reasoning":false,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-10-31","last_updated":"2025-10-31","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":32000},"cost":{"input":2.5,"output":12.5,"cache_read":0.625}},"amazon/nova-2-lite-v1":{"id":"amazon/nova-2-lite-v1","name":"Nova 2 Lite","family":"nova","attachment":true,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-12-02","last_updated":"2025-12-02","modalities":{"input":["text","image","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":65535},"cost":{"input":0.3,"output":2.5}},"inclusionai/ling-2.6-flash":{"id":"inclusionai/ling-2.6-flash","name":"Ling-2.6-flash","family":"ling","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-04-21","last_updated":"2026-04-21","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"output":32768},"cost":{"input":0.01,"output":0.03,"cache_read":0.002}},"inclusionai/ling-2.6-1t":{"id":"inclusionai/ling-2.6-1t","name":"Ling-2.6-1T","family":"ling","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-04-23","last_updated":"2026-04-23","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"output":32768},"cost":{"input":0.075,"output":0.625,"cache_read":0.015}},"inclusionai/ring-2.6-1t":{"id":"inclusionai/ring-2.6-1t","name":"Ring-2.6-1T","family":"ring","attachment":false,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2026-05-08","last_updated":"2026-05-08","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"output":65536},"cost":{"input":0.075,"output":0.625,"cache_read":0.015}},"morph/morph-v3-fast":{"id":"morph/morph-v3-fast","name":"Morph V3 Fast","family":"morph","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":true,"release_date":"2025-07-07","last_updated":"2025-07-07","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":81920,"output":38000},"cost":{"input":0.8,"output":1.2}},"morph/morph-v3-large":{"id":"morph/morph-v3-large","name":"Morph V3 Large","family":"morph","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":true,"release_date":"2025-07-07","last_updated":"2025-07-07","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"output":131072},"cost":{"input":0.9,"output":1.9}},"undi95/remm-slerp-l2-13b":{"id":"undi95/remm-slerp-l2-13b","name":"ReMM SLERP 13B","attachment":false,"reasoning":false,"tool_call":false,"structured_output":true,"temperature":true,"knowledge":"2023-06-30","release_date":"2023-07-22","last_updated":"2023-07-22","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":6144,"output":4096},"cost":{"input":0.45,"output":0.65}},"google/gemini-2.5-flash-image":{"id":"google/gemini-2.5-flash-image","name":"Nano Banana","family":"gemini-flash","attachment":true,"reasoning":false,"tool_call":false,"structured_output":true,"temperature":true,"knowledge":"2025-06","release_date":"2025-08-26","last_updated":"2025-08-26","modalities":{"input":["text","image"],"output":["text","image"]},"open_weights":false,"limit":{"context":32768,"output":32768},"cost":{"input":0.3,"output":2.5,"cache_read":0.03,"cache_write":0.083333}},"google/gemma-4-31b-it:free":{"id":"google/gemma-4-31b-it:free","name":"Gemma 4 31B (free)","family":"gemma","attachment":true,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2026-04-02","last_updated":"2026-04-02","modalities":{"input":["image","text","video"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":32768},"cost":{"input":0,"output":0}},"google/lyria-3-clip-preview":{"id":"google/lyria-3-clip-preview","name":"Lyria 3 Clip Preview","family":"lyria","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":true,"release_date":"2026-03-30","last_updated":"2026-03-30","modalities":{"input":["text","image"],"output":["text","audio"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":0,"output":0}},"google/gemini-2.5-pro-preview":{"id":"google/gemini-2.5-pro-preview","name":"Gemini 2.5 Pro Preview 06-05","family":"gemini","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01-31","release_date":"2025-06-05","last_updated":"2025-06-05","modalities":{"input":["pdf","image","text","audio"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":1.25,"output":10,"reasoning":10,"cache_read":0.125,"cache_write":0.375}},"google/gemini-3.1-flash-lite-preview":{"id":"google/gemini-3.1-flash-lite-preview","name":"Gemini 3.1 Flash Lite Preview","family":"gemini-flash-lite","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-03-03","last_updated":"2026-03-03","modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":0.25,"output":1.5,"reasoning":1.5,"cache_read":0.025,"cache_write":0.083333}},"google/gemma-4-31b-it":{"id":"google/gemma-4-31b-it","name":"Gemma 4 31B IT","family":"gemma","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-04-02","last_updated":"2026-04-02","modalities":{"input":["image","text","video"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"output":8192},"cost":{"input":0.12,"output":0.36,"cache_read":0.09}},"google/gemini-3-flash-preview":{"id":"google/gemini-3-flash-preview","name":"Gemini 3 Flash Preview","family":"gemini-flash","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_details"},"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-12-17","last_updated":"2025-12-17","modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":0.5,"output":3,"reasoning":3,"cache_read":0.05,"cache_write":0.083333}},"google/gemma-4-26b-a4b-it:free":{"id":"google/gemma-4-26b-a4b-it:free","name":"Gemma 4 26B A4B (free)","family":"gemma","attachment":true,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2026-04-02","last_updated":"2026-04-02","modalities":{"input":["image","text","video"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":32768},"cost":{"input":0,"output":0}},"google/gemini-3.1-pro-preview-customtools":{"id":"google/gemini-3.1-pro-preview-customtools","name":"Gemini 3.1 Pro Preview Custom Tools","family":"gemini-pro","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_details"},"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-02-19","last_updated":"2026-02-19","modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":2,"output":12,"reasoning":12,"cache_read":0.2,"cache_write":0.375,"tiers":[{"input":4,"output":18,"cache_read":0.4,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":4,"output":18,"cache_read":0.4}}},"google/gemini-2.5-pro-preview-05-06":{"id":"google/gemini-2.5-pro-preview-05-06","name":"Gemini 2.5 Pro Preview 05-06","family":"gemini-pro","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01-31","release_date":"2025-05-07","last_updated":"2025-05-07","modalities":{"input":["text","image","pdf","audio","video"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65535},"cost":{"input":1.25,"output":10,"reasoning":10,"cache_read":0.125,"cache_write":0.375}},"google/gemma-3n-e4b-it":{"id":"google/gemma-3n-e4b-it","name":"Gemma 3n 4B","family":"gemma","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":true,"knowledge":"2024-08-31","release_date":"2025-05-20","last_updated":"2025-05-20","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":32768,"output":32768},"cost":{"input":0.06,"output":0.12}},"google/gemini-2.5-pro":{"id":"google/gemini-2.5-pro","name":"Gemini 2.5 Pro","family":"gemini-pro","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-03-20","last_updated":"2025-06-05","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":1.25,"output":10,"reasoning":10,"cache_read":0.125,"cache_write":0.375}},"google/gemini-3.1-pro-preview":{"id":"google/gemini-3.1-pro-preview","name":"Gemini 3.1 Pro Preview","family":"gemini-pro","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_details"},"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-02-19","last_updated":"2026-02-19","modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":2,"output":12,"reasoning":12,"cache_read":0.2,"cache_write":0.375,"tiers":[{"input":4,"output":18,"cache_read":0.4,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":4,"output":18,"cache_read":0.4}}},"google/gemma-3-27b-it":{"id":"google/gemma-3-27b-it","name":"Gemma 3 27B","family":"gemma","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-08-31","release_date":"2025-03-12","last_updated":"2025-03-12","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":16384},"cost":{"input":0.08,"output":0.16}},"google/gemini-3.1-flash-lite":{"id":"google/gemini-3.1-flash-lite","name":"Gemini 3.1 Flash Lite","family":"gemini-flash-lite","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-05-07","last_updated":"2026-05-07","modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":0.25,"output":1.5,"reasoning":1.5,"cache_read":0.025,"cache_write":0.083333}},"google/gemini-2.5-flash-lite":{"id":"google/gemini-2.5-flash-lite","name":"Gemini 2.5 Flash-Lite","family":"gemini-flash-lite","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-06-17","last_updated":"2025-06-17","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65535},"cost":{"input":0.1,"output":0.4,"reasoning":0.4,"cache_read":0.01,"cache_write":0.083333}},"google/gemini-2.5-flash":{"id":"google/gemini-2.5-flash","name":"Gemini 2.5 Flash","family":"gemini-flash","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-03-20","last_updated":"2025-06-05","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65535},"cost":{"input":0.3,"output":2.5,"reasoning":2.5,"cache_read":0.03,"cache_write":0.083333}},"google/gemma-3-12b-it":{"id":"google/gemma-3-12b-it","name":"Gemma 3 12B","family":"gemma","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-08-31","release_date":"2025-03-13","last_updated":"2025-03-13","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":16384},"cost":{"input":0.04,"output":0.13}},"google/gemma-4-26b-a4b-it":{"id":"google/gemma-4-26b-a4b-it","name":"Gemma 4 26B A4B IT","family":"gemma","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-04-02","last_updated":"2026-04-02","modalities":{"input":["image","text","video"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.06,"output":0.33}},"google/gemini-2.5-flash-lite-preview-09-2025":{"id":"google/gemini-2.5-flash-lite-preview-09-2025","name":"Gemini 2.5 Flash Lite Preview 09-2025","family":"gemini-flash-lite","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01-31","release_date":"2025-09-25","last_updated":"2025-09-25","modalities":{"input":["text","image","pdf","audio","video"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65535},"cost":{"input":0.1,"output":0.4,"reasoning":0.4,"cache_read":0.01,"cache_write":0.083333}},"google/gemma-3-4b-it":{"id":"google/gemma-3-4b-it","name":"Gemma 3 4B","family":"gemma","attachment":true,"reasoning":false,"tool_call":false,"structured_output":true,"temperature":true,"knowledge":"2024-08-31","release_date":"2025-03-13","last_updated":"2025-03-13","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":16384},"cost":{"input":0.04,"output":0.08}},"google/gemini-3.5-flash":{"id":"google/gemini-3.5-flash","name":"Gemini 3.5 Flash","family":"gemini-flash","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-05-19","last_updated":"2026-05-19","modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":1.5,"output":9,"reasoning":9,"cache_read":0.15,"cache_write":0.083333}},"google/lyria-3-pro-preview":{"id":"google/lyria-3-pro-preview","name":"Lyria 3 Pro Preview","family":"lyria","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":true,"release_date":"2026-03-30","last_updated":"2026-03-30","modalities":{"input":["text","image"],"output":["text","audio"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":0,"output":0}},"google/gemma-2-27b-it":{"id":"google/gemma-2-27b-it","name":"Gemma 2 27B","family":"gemma","attachment":false,"reasoning":false,"tool_call":false,"structured_output":true,"temperature":true,"knowledge":"2024-06-30","release_date":"2024-07-13","last_updated":"2024-07-13","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":8192,"output":2048},"cost":{"input":0.65,"output":0.65}},"google/gemini-3-pro-image-preview":{"id":"google/gemini-3-pro-image-preview","name":"Nano Banana Pro","family":"gemini-pro","attachment":true,"reasoning":true,"tool_call":false,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-11-20","last_updated":"2025-11-20","modalities":{"input":["text","image"],"output":["text","image"]},"open_weights":false,"limit":{"context":65536,"output":32768},"cost":{"input":2,"output":12,"reasoning":12,"cache_read":0.2,"cache_write":0.375}},"google/gemini-3.1-flash-image-preview":{"id":"google/gemini-3.1-flash-image-preview","name":"Nano Banana 2","family":"gemini-flash","attachment":true,"reasoning":true,"tool_call":false,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-02-26","last_updated":"2026-02-26","modalities":{"input":["image","text"],"output":["image","text"]},"open_weights":false,"limit":{"context":65536,"output":65536},"cost":{"input":0.5,"output":3}},"openai/gpt-4o-2024-08-06":{"id":"openai/gpt-4o-2024-08-06","name":"GPT-4o (2024-08-06)","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2023-09","release_date":"2024-08-06","last_updated":"2024-08-06","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":2.5,"output":10,"cache_read":1.25}},"openai/gpt-5-pro":{"id":"openai/gpt-5-pro","name":"GPT-5 Pro","family":"gpt-pro","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-10-06","last_updated":"2025-10-06","modalities":{"input":["image","text","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":15,"output":120}},"openai/gpt-5-mini":{"id":"openai/gpt-5-mini","name":"GPT-5 Mini","family":"gpt-mini","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-05-30","release_date":"2025-08-07","last_updated":"2025-08-07","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":0.25,"output":2,"cache_read":0.025}},"openai/o3-mini-high":{"id":"openai/o3-mini-high","name":"o3 Mini High","family":"o","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2023-10-31","release_date":"2025-02-12","last_updated":"2025-02-12","modalities":{"input":["text","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":1.1,"output":4.4,"cache_read":0.55}},"openai/o4-mini-high":{"id":"openai/o4-mini-high","name":"o4 Mini High","family":"o","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-06-30","release_date":"2025-04-16","last_updated":"2025-04-16","modalities":{"input":["image","text","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":1.1,"output":4.4,"cache_read":0.275}},"openai/gpt-5-chat":{"id":"openai/gpt-5-chat","name":"GPT-5 Chat","family":"gpt-codex","attachment":true,"reasoning":false,"tool_call":false,"structured_output":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-08-07","last_updated":"2025-08-07","modalities":{"input":["pdf","image","text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":1.25,"output":10,"cache_read":0.125}},"openai/gpt-4o":{"id":"openai/gpt-4o","name":"GPT-4o","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2023-09","release_date":"2024-05-13","last_updated":"2024-08-06","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":2.5,"output":10}},"openai/gpt-5.2":{"id":"openai/gpt-5.2","name":"GPT-5.2","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2025-12-11","last_updated":"2025-12-11","modalities":{"input":["pdf","image","text"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":1.75,"output":14,"cache_read":0.175}},"openai/gpt-4o-mini-2024-07-18":{"id":"openai/gpt-4o-mini-2024-07-18","name":"GPT-4o-mini (2024-07-18)","family":"o-mini","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2023-10-31","release_date":"2024-07-18","last_updated":"2024-07-18","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":0.15,"output":0.6,"cache_read":0.075}},"openai/gpt-5-codex":{"id":"openai/gpt-5-codex","name":"GPT-5-Codex","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-09-15","last_updated":"2025-09-15","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":1.25,"output":10,"cache_read":0.125}},"openai/o3":{"id":"openai/o3","name":"o3","family":"o","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-05","release_date":"2025-04-16","last_updated":"2025-04-16","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":2,"output":8,"cache_read":0.5}},"openai/gpt-5-image":{"id":"openai/gpt-5-image","name":"GPT-5 Image","family":"gpt","attachment":true,"reasoning":true,"tool_call":false,"structured_output":true,"temperature":true,"knowledge":"2024-10-01","release_date":"2025-10-14","last_updated":"2025-10-14","modalities":{"input":["image","text","pdf"],"output":["image","text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":10,"output":10,"cache_read":1.25}},"openai/gpt-4o-2024-11-20":{"id":"openai/gpt-4o-2024-11-20","name":"GPT-4o (2024-11-20)","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2023-09","release_date":"2024-11-20","last_updated":"2024-11-20","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":2.5,"output":10,"cache_read":1.25}},"openai/gpt-5":{"id":"openai/gpt-5","name":"GPT-5","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-08-07","last_updated":"2025-08-07","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":1.25,"output":10,"cache_read":0.125}},"openai/gpt-5.4-pro":{"id":"openai/gpt-5.4-pro","name":"GPT-5.4 Pro","family":"gpt-pro","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-03-05","last_updated":"2026-03-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1050000,"input":922000,"output":128000},"cost":{"input":30,"output":180}},"openai/gpt-4.1-mini":{"id":"openai/gpt-4.1-mini","name":"GPT-4.1 mini","family":"gpt-mini","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-04","release_date":"2025-04-14","last_updated":"2025-04-14","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1047576,"output":32768},"cost":{"input":0.4,"output":1.6,"cache_read":0.1}},"openai/gpt-5.2-pro":{"id":"openai/gpt-5.2-pro","name":"GPT-5.2 Pro","family":"gpt-pro","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2025-12-11","last_updated":"2025-12-11","modalities":{"input":["image","text","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":21,"output":168}},"openai/o3-pro":{"id":"openai/o3-pro","name":"o3-pro","family":"o-pro","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-05","release_date":"2025-06-10","last_updated":"2025-06-10","modalities":{"input":["text","pdf","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":20,"output":80}},"openai/gpt-4o-mini-search-preview":{"id":"openai/gpt-4o-mini-search-preview","name":"GPT-4o-mini Search Preview","family":"o-mini","attachment":false,"reasoning":false,"tool_call":false,"structured_output":true,"temperature":false,"knowledge":"2023-10-31","release_date":"2025-03-12","last_updated":"2025-03-12","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":0.15,"output":0.6}},"openai/o4-mini":{"id":"openai/o4-mini","name":"o4-mini","family":"o-mini","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-05","release_date":"2025-04-16","last_updated":"2025-04-16","modalities":{"input":["image","text","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":1.1,"output":4.4,"cache_read":0.275}},"openai/gpt-5.4":{"id":"openai/gpt-5.4","name":"GPT-5.4","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-03-05","last_updated":"2026-03-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1050000,"input":922000,"output":128000},"cost":{"input":2.5,"output":15,"cache_read":0.25}},"openai/gpt-5.4-image-2":{"id":"openai/gpt-5.4-image-2","name":"GPT-5.4 Image 2","family":"gpt","attachment":true,"reasoning":true,"tool_call":false,"structured_output":true,"temperature":false,"release_date":"2026-04-21","last_updated":"2026-04-21","modalities":{"input":["image","text","pdf"],"output":["image","text"]},"open_weights":false,"limit":{"context":272000,"output":128000},"cost":{"input":8,"output":15,"cache_read":2}},"openai/o3-mini":{"id":"openai/o3-mini","name":"o3-mini","family":"o-mini","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-05","release_date":"2024-12-20","last_updated":"2025-01-29","modalities":{"input":["text","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":1.1,"output":4.4,"cache_read":0.55}},"openai/gpt-5.5":{"id":"openai/gpt-5.5","name":"GPT-5.5","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-12-01","release_date":"2026-04-23","last_updated":"2026-04-23","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1050000,"input":922000,"output":128000},"cost":{"input":5,"output":30,"cache_read":0.5}},"openai/gpt-3.5-turbo-16k":{"id":"openai/gpt-3.5-turbo-16k","name":"GPT-3.5 Turbo 16k","family":"gpt","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2021-09-30","release_date":"2023-08-28","last_updated":"2023-08-28","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":16385,"output":4096},"cost":{"input":3,"output":4}},"openai/gpt-oss-20b:free":{"id":"openai/gpt-oss-20b:free","name":"gpt-oss-20b (free)","family":"gpt-oss","attachment":false,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"knowledge":"2024-06-30","release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":8192},"cost":{"input":0,"output":0}},"openai/gpt-5.1":{"id":"openai/gpt-5.1","name":"GPT-5.1","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-11-13","last_updated":"2025-11-13","modalities":{"input":["image","text","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":1.25,"output":10,"cache_read":0.13}},"openai/gpt-5-nano":{"id":"openai/gpt-5-nano","name":"GPT-5 Nano","family":"gpt-nano","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-05-30","release_date":"2025-08-07","last_updated":"2025-08-07","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":0.05,"output":0.4,"cache_read":0.01}},"openai/gpt-oss-120b":{"id":"openai/gpt-oss-120b","name":"gpt-oss-120b","family":"gpt-oss","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-06-30","release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":32768},"cost":{"input":0.039,"output":0.18}},"openai/gpt-4o-mini":{"id":"openai/gpt-4o-mini","name":"GPT-4o mini","family":"gpt-mini","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2023-09","release_date":"2024-07-18","last_updated":"2024-07-18","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":0.15,"output":0.6,"cache_read":0.075}},"openai/gpt-5.1-codex-max":{"id":"openai/gpt-5.1-codex-max","name":"GPT-5.1 Codex Max","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-11-13","last_updated":"2025-11-13","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":1.25,"output":10,"cache_read":0.125}},"openai/gpt-5.1-codex-mini":{"id":"openai/gpt-5.1-codex-mini","name":"GPT-5.1 Codex mini","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-11-13","last_updated":"2025-11-13","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":100000},"cost":{"input":0.25,"output":2,"cache_read":0.025}},"openai/o1-pro":{"id":"openai/o1-pro","name":"o1-pro","family":"o-pro","attachment":true,"reasoning":true,"tool_call":false,"structured_output":true,"temperature":false,"knowledge":"2023-09","release_date":"2025-03-19","last_updated":"2025-03-19","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":150,"output":600}},"openai/gpt-chat-latest":{"id":"openai/gpt-chat-latest","name":"GPT Chat Latest","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":false,"release_date":"2026-05-05","last_updated":"2026-05-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":5,"output":30,"cache_read":0.5}},"openai/gpt-oss-20b":{"id":"openai/gpt-oss-20b","name":"gpt-oss-20b","family":"gpt-oss","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-06-30","release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":131072},"cost":{"input":0.029,"output":0.14}},"openai/gpt-4-turbo-preview":{"id":"openai/gpt-4-turbo-preview","name":"GPT-4 Turbo Preview","family":"gpt","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2023-12-31","release_date":"2024-01-25","last_updated":"2024-01-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":4096},"cost":{"input":10,"output":30}},"openai/o3-deep-research":{"id":"openai/o3-deep-research","name":"o3-deep-research","family":"o","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-05","release_date":"2024-06-26","last_updated":"2024-06-26","modalities":{"input":["image","text","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":10,"output":40,"cache_read":2.5}},"openai/gpt-audio":{"id":"openai/gpt-audio","name":"GPT Audio","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-01-19","last_updated":"2026-01-19","modalities":{"input":["text","audio"],"output":["text","audio"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":2.5,"output":10}},"openai/gpt-5-image-mini":{"id":"openai/gpt-5-image-mini","name":"GPT-5 Image Mini","family":"gpt","attachment":true,"reasoning":true,"tool_call":false,"structured_output":true,"temperature":true,"release_date":"2025-10-16","last_updated":"2025-10-16","modalities":{"input":["pdf","image","text"],"output":["image","text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":2.5,"output":2,"cache_read":0.25}},"openai/gpt-4.1":{"id":"openai/gpt-4.1","name":"GPT-4.1","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-04","release_date":"2025-04-14","last_updated":"2025-04-14","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1047576,"output":32768},"cost":{"input":2,"output":8,"cache_read":0.5}},"openai/gpt-5.4-nano":{"id":"openai/gpt-5.4-nano","name":"GPT-5.4 nano","family":"gpt-nano","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-03-17","last_updated":"2026-03-17","modalities":{"input":["pdf","image","text"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":0.2,"output":1.25,"cache_read":0.02}},"openai/gpt-audio-mini":{"id":"openai/gpt-audio-mini","name":"GPT Audio Mini","family":"o-mini","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-01-19","last_updated":"2026-01-19","modalities":{"input":["text","audio"],"output":["text","audio"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":0.6,"output":2.4}},"openai/gpt-oss-120b:free":{"id":"openai/gpt-oss-120b:free","name":"gpt-oss-120b (free)","family":"gpt-oss","attachment":false,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"knowledge":"2024-06-30","release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":131072},"cost":{"input":0,"output":0}},"openai/gpt-5.3-codex":{"id":"openai/gpt-5.3-codex","name":"GPT-5.3 Codex","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-02-05","last_updated":"2026-02-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":1.75,"output":14,"cache_read":0.175}},"openai/gpt-5.5-pro":{"id":"openai/gpt-5.5-pro","name":"GPT-5.5 Pro","family":"gpt-pro","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-12-01","release_date":"2026-04-23","last_updated":"2026-04-23","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1050000,"input":922000,"output":128000},"cost":{"input":30,"output":180}},"openai/o4-mini-deep-research":{"id":"openai/o4-mini-deep-research","name":"o4-mini-deep-research","family":"o-mini","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-05","release_date":"2024-06-26","last_updated":"2024-06-26","modalities":{"input":["pdf","image","text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":2,"output":8,"cache_read":0.5}},"openai/gpt-3.5-turbo":{"id":"openai/gpt-3.5-turbo","name":"GPT-3.5-turbo","family":"gpt","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2021-09-01","release_date":"2023-03-01","last_updated":"2023-11-06","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":16385,"output":4096},"cost":{"input":0.5,"output":1.5}},"openai/gpt-5.2-chat":{"id":"openai/gpt-5.2-chat","name":"GPT-5.2 Chat","family":"gpt-codex","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2025-12-10","last_updated":"2025-12-10","modalities":{"input":["pdf","image","text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":1.75,"output":14,"cache_read":0.175}},"openai/gpt-3.5-turbo-instruct":{"id":"openai/gpt-3.5-turbo-instruct","name":"GPT-3.5 Turbo Instruct","family":"gpt","attachment":false,"reasoning":false,"tool_call":false,"structured_output":true,"temperature":true,"knowledge":"2021-09-30","release_date":"2023-09-28","last_updated":"2023-09-28","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":4095,"output":4096},"cost":{"input":1.5,"output":2}},"openai/gpt-5.2-codex":{"id":"openai/gpt-5.2-codex","name":"GPT-5.2 Codex","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2025-12-11","last_updated":"2025-12-11","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":1.75,"output":14,"cache_read":0.175}},"openai/gpt-5.1-codex":{"id":"openai/gpt-5.1-codex","name":"GPT-5.1 Codex","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-11-13","last_updated":"2025-11-13","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":1.25,"output":10,"cache_read":0.13}},"openai/gpt-4o-2024-05-13":{"id":"openai/gpt-4o-2024-05-13","name":"GPT-4o (2024-05-13)","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2023-09","release_date":"2024-05-13","last_updated":"2024-05-13","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":4096},"cost":{"input":5,"output":15}},"openai/gpt-5.1-chat":{"id":"openai/gpt-5.1-chat","name":"GPT-5.1 Chat","family":"gpt-codex","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-11-13","last_updated":"2025-11-13","modalities":{"input":["pdf","image","text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":32000},"cost":{"input":1.25,"output":10,"cache_read":0.13}},"openai/gpt-oss-safeguard-20b":{"id":"openai/gpt-oss-safeguard-20b","name":"gpt-oss-safeguard-20b","family":"gpt-oss","attachment":false,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-10-29","last_updated":"2025-10-29","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":65536},"cost":{"input":0.075,"output":0.3,"cache_read":0.037}},"openai/gpt-3.5-turbo-0613":{"id":"openai/gpt-3.5-turbo-0613","name":"GPT-3.5 Turbo (older v0613)","family":"gpt","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2021-09-30","release_date":"2024-01-25","last_updated":"2024-01-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":4095,"output":4096},"cost":{"input":1,"output":2}},"openai/gpt-5.4-mini":{"id":"openai/gpt-5.4-mini","name":"GPT-5.4 mini","family":"gpt-mini","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-03-17","last_updated":"2026-03-17","modalities":{"input":["pdf","image","text"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":0.75,"output":4.5,"cache_read":0.075}},"openai/gpt-4-turbo":{"id":"openai/gpt-4-turbo","name":"GPT-4 Turbo","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2023-12","release_date":"2023-11-06","last_updated":"2024-04-09","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":4096},"cost":{"input":10,"output":30}},"openai/o1":{"id":"openai/o1","name":"o1","family":"o","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2023-09","release_date":"2024-12-05","last_updated":"2024-12-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":15,"output":60,"cache_read":7.5}},"openai/gpt-4":{"id":"openai/gpt-4","name":"GPT-4","family":"gpt","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2023-11","release_date":"2023-11-06","last_updated":"2024-04-09","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":8191,"output":4096},"cost":{"input":30,"output":60}},"openai/gpt-5.3-chat":{"id":"openai/gpt-5.3-chat","name":"GPT-5.3 Chat","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":false,"release_date":"2026-03-03","last_updated":"2026-03-03","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":1.75,"output":14,"cache_read":0.175}},"openai/gpt-4o-search-preview":{"id":"openai/gpt-4o-search-preview","name":"GPT-4o Search Preview","family":"gpt","attachment":false,"reasoning":false,"tool_call":false,"structured_output":true,"temperature":false,"knowledge":"2023-10-31","release_date":"2025-03-12","last_updated":"2025-03-12","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":2.5,"output":10}},"openai/gpt-4.1-nano":{"id":"openai/gpt-4.1-nano","name":"GPT-4.1 nano","family":"gpt-nano","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-04","release_date":"2025-04-14","last_updated":"2025-04-14","modalities":{"input":["image","text","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1047576,"output":32768},"cost":{"input":0.1,"output":0.4,"cache_read":0.025}},"poolside/laguna-m.1:free":{"id":"poolside/laguna-m.1:free","name":"Laguna M.1 (free)","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":false,"temperature":true,"release_date":"2026-04-28","last_updated":"2026-04-28","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"output":32768},"cost":{"input":0,"output":0}},"poolside/laguna-xs.2:free":{"id":"poolside/laguna-xs.2:free","name":"Laguna XS.2 (free)","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":false,"temperature":true,"release_date":"2026-04-28","last_updated":"2026-04-28","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":32768},"cost":{"input":0,"output":0}},"bytedance/ui-tars-1.5-7b":{"id":"bytedance/ui-tars-1.5-7b","name":"UI-TARS 7B ","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":true,"knowledge":"2025-01-31","release_date":"2025-07-22","last_updated":"2025-07-22","modalities":{"input":["image","text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":2048},"cost":{"input":0.1,"output":0.2,"cache_read":0.1}},"~anthropic/claude-opus-latest":{"id":"~anthropic/claude-opus-latest","name":"Claude Opus Latest","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"release_date":"2026-04-21","last_updated":"2026-04-21","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25}},"~anthropic/claude-haiku-latest":{"id":"~anthropic/claude-haiku-latest","name":"Anthropic Claude Haiku Latest","family":"claude-haiku","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-04-27","last_updated":"2026-04-27","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":1,"output":5,"cache_read":0.1,"cache_write":1.25}},"~anthropic/claude-sonnet-latest":{"id":"~anthropic/claude-sonnet-latest","name":"Anthropic Claude Sonnet Latest","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-04-27","last_updated":"2026-04-27","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75}},"minimax/minimax-m1":{"id":"minimax/minimax-m1","name":"MiniMax M1","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"knowledge":"2024-06-30","release_date":"2025-06-17","last_updated":"2025-06-17","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":40000},"cost":{"input":0.4,"output":2.2}},"minimax/minimax-m3":{"id":"minimax/minimax-m3","name":"MiniMax-M3","family":"minimax","attachment":true,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2026-06-01","last_updated":"2026-06-01","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":524288,"output":512000},"cost":{"input":0.3,"output":1.2,"cache_read":0.06}},"minimax/minimax-01":{"id":"minimax/minimax-01","name":"MiniMax-01","family":"minimax","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":true,"knowledge":"2024-03-31","release_date":"2025-01-15","last_updated":"2025-01-15","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":1000192,"output":1000192},"cost":{"input":0.2,"output":1.1}},"minimax/minimax-m2.1":{"id":"minimax/minimax-m2.1","name":"MiniMax-M2.1","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_details"},"structured_output":true,"temperature":true,"release_date":"2025-12-23","last_updated":"2025-12-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":196608,"output":196608},"cost":{"input":0.29,"output":0.95,"cache_read":0.03}},"minimax/minimax-m2.7":{"id":"minimax/minimax-m2.7","name":"MiniMax-M2.7","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-03-18","last_updated":"2026-03-18","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":196608,"output":196608},"cost":{"input":0.279,"output":1.2}},"minimax/minimax-m2":{"id":"minimax/minimax-m2","name":"MiniMax-M2","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_details"},"structured_output":true,"temperature":true,"release_date":"2025-10-27","last_updated":"2025-10-27","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":196608,"output":196608},"cost":{"input":0.255,"output":1,"cache_read":0.03}},"minimax/minimax-m2.5":{"id":"minimax/minimax-m2.5","name":"MiniMax-M2.5","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_details"},"structured_output":true,"temperature":true,"release_date":"2026-02-12","last_updated":"2026-02-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":196608,"output":196608},"cost":{"input":0.15,"output":1.15}},"minimax/minimax-m2-her":{"id":"minimax/minimax-m2-her","name":"MiniMax M2-her","family":"minimax","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":true,"release_date":"2026-01-23","last_updated":"2026-01-23","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":65536,"output":2048},"cost":{"input":0.3,"output":1.2,"cache_read":0.03}},"allenai/olmo-3-32b-think":{"id":"allenai/olmo-3-32b-think","name":"Olmo 3 32B Think","family":"allenai","attachment":false,"reasoning":true,"tool_call":false,"structured_output":true,"temperature":true,"release_date":"2025-11-21","last_updated":"2025-11-21","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":65536,"output":65536},"cost":{"input":0.15,"output":0.5}}}},"privatemode-ai":{"id":"privatemode-ai","env":["PRIVATEMODE_API_KEY","PRIVATEMODE_ENDPOINT"],"npm":"@ai-sdk/openai-compatible","api":"http://localhost:8080/v1","name":"Privatemode AI","doc":"https://docs.privatemode.ai/api/overview","models":{"gemma-3-27b":{"id":"gemma-3-27b","name":"Gemma 3 27B","family":"gemma","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-08","release_date":"2025-03-12","last_updated":"2025-03-12","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":8192},"cost":{"input":0,"output":0}},"gpt-oss-120b":{"id":"gpt-oss-120b","name":"gpt-oss-120b","family":"gpt-oss","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-08","release_date":"2025-08-04","last_updated":"2025-08-14","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":128000},"cost":{"input":0,"output":0}},"whisper-large-v3":{"id":"whisper-large-v3","name":"Whisper large-v3","family":"whisper","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":true,"knowledge":"2023-09","release_date":"2023-09-01","last_updated":"2023-09-01","modalities":{"input":["audio"],"output":["text"]},"open_weights":true,"limit":{"context":0,"output":4096},"cost":{"input":0,"output":0}},"qwen3-embedding-4b":{"id":"qwen3-embedding-4b","name":"Qwen3-Embedding 4B","family":"qwen","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":true,"knowledge":"2025-06","release_date":"2025-06-06","last_updated":"2025-06-06","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":32000,"output":2560},"cost":{"input":0,"output":0}},"qwen3-coder-30b-a3b":{"id":"qwen3-coder-30b-a3b","name":"Qwen3-Coder 30B-A3B","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-04","last_updated":"2025-04","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":32768},"cost":{"input":0,"output":0}}}},"snowflake-cortex":{"id":"snowflake-cortex","env":["SNOWFLAKE_ACCOUNT","SNOWFLAKE_CORTEX_PAT"],"npm":"@ai-sdk/openai-compatible","api":"https://${SNOWFLAKE_ACCOUNT}.snowflakecomputing.com/api/v2/cortex/v1","name":"Snowflake Cortex","doc":"https://docs.snowflake.com/en/user-guide/snowflake-cortex/cortex-rest-api","models":{"openai-gpt-5.2":{"id":"openai-gpt-5.2","name":"GPT-5.2","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2025-12-11","last_updated":"2025-12-11","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000}},"claude-sonnet-4-6":{"id":"claude-sonnet-4-6","name":"Claude Sonnet 4.6","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-08-31","release_date":"2026-02-17","last_updated":"2026-03-13","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":16384}},"openai-gpt-4.1":{"id":"openai-gpt-4.1","name":"GPT-4.1","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-04","release_date":"2025-04-14","last_updated":"2025-04-14","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1047576,"output":32768}},"openai-gpt-5.4":{"id":"openai-gpt-5.4","name":"GPT-5.4","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-03-05","last_updated":"2026-03-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1050000,"input":922000,"output":128000},"status":"beta","experimental":{"modes":{"fast":{"cost":{"input":5,"output":30,"cache_read":0.5},"provider":{"body":{"service_tier":"priority"}}}}}},"claude-haiku-4-5":{"id":"claude-haiku-4-5","name":"Claude Haiku 4.5 (latest)","family":"claude-haiku","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-02-28","release_date":"2025-10-15","last_updated":"2025-10-15","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":16384}},"openai-gpt-5":{"id":"openai-gpt-5","name":"GPT-5","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-08-07","last_updated":"2025-08-07","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"status":"beta"},"openai-gpt-5-mini":{"id":"openai-gpt-5-mini","name":"GPT-5 Mini","family":"gpt-mini","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-05-30","release_date":"2025-08-07","last_updated":"2025-08-07","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":272000,"input":272000,"output":8192},"status":"beta"},"openai-gpt-5-nano":{"id":"openai-gpt-5-nano","name":"GPT-5 Nano","family":"gpt-nano","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-05-30","release_date":"2025-08-07","last_updated":"2025-08-07","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"status":"beta"},"openai-gpt-5.1":{"id":"openai-gpt-5.1","name":"GPT-5.1","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-11-13","last_updated":"2025-11-13","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000}},"claude-sonnet-4-5":{"id":"claude-sonnet-4-5","name":"Claude Sonnet 4.5 (latest)","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-07-31","release_date":"2025-09-29","last_updated":"2025-09-29","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":16384}},"claude-opus-4-7":{"id":"claude-opus-4-7","name":"Claude Opus 4.7","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2026-01-31","release_date":"2026-04-16","last_updated":"2026-04-16","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"status":"beta","experimental":{"modes":{"fast":{"cost":{"input":30,"output":150,"cache_read":3,"cache_write":37.5},"provider":{"body":{"speed":"fast"},"headers":{"anthropic-beta":"fast-mode-2026-02-01"}}}}}}}},"moonshotai":{"id":"moonshotai","env":["MOONSHOT_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://api.moonshot.ai/v1","name":"Moonshot AI","doc":"https://platform.moonshot.ai/docs/api/chat","models":{"kimi-k2-thinking-turbo":{"id":"kimi-k2-thinking-turbo","name":"Kimi K2 Thinking Turbo","family":"kimi-thinking","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2024-08","release_date":"2025-11-06","last_updated":"2025-11-06","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":1.15,"output":8,"cache_read":0.15}},"kimi-k2-thinking":{"id":"kimi-k2-thinking","name":"Kimi K2 Thinking","family":"kimi-thinking","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2024-08","release_date":"2025-11-06","last_updated":"2025-11-06","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.6,"output":2.5,"cache_read":0.15}},"kimi-k2.6":{"id":"kimi-k2.6","name":"Kimi K2.6","family":"kimi-k2.6","attachment":true,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-04-21","last_updated":"2026-04-21","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.95,"output":4,"cache_read":0.16}},"kimi-k2-turbo-preview":{"id":"kimi-k2-turbo-preview","name":"Kimi K2 Turbo","family":"kimi","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2025-09-05","last_updated":"2025-09-05","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":2.4,"output":10,"cache_read":0.6}},"kimi-k2-0905-preview":{"id":"kimi-k2-0905-preview","name":"Kimi K2 0905","family":"kimi","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2025-09-05","last_updated":"2025-09-05","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.6,"output":2.5,"cache_read":0.15}},"kimi-k2-0711-preview":{"id":"kimi-k2-0711-preview","name":"Kimi K2 0711","family":"kimi","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2025-07-14","last_updated":"2025-07-14","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":16384},"cost":{"input":0.6,"output":2.5,"cache_read":0.15}},"kimi-k2.5":{"id":"kimi-k2.5","name":"Kimi K2.5","family":"kimi-k2.5","attachment":false,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":false,"knowledge":"2025-01","release_date":"2026-01","last_updated":"2026-01","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.6,"output":3,"cache_read":0.1}}}},"perplexity":{"id":"perplexity","env":["PERPLEXITY_API_KEY"],"npm":"@ai-sdk/perplexity","name":"Perplexity","doc":"https://docs.perplexity.ai","models":{"sonar":{"id":"sonar","name":"Sonar","family":"sonar","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2025-09-01","release_date":"2024-01-01","last_updated":"2025-09-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":4096},"cost":{"input":1,"output":1}},"sonar-pro":{"id":"sonar-pro","name":"Sonar Pro","family":"sonar-pro","attachment":true,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2025-09-01","release_date":"2024-01-01","last_updated":"2025-09-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":8192},"cost":{"input":3,"output":15}},"sonar-reasoning-pro":{"id":"sonar-reasoning-pro","name":"Sonar Reasoning Pro","family":"sonar-reasoning","attachment":true,"reasoning":true,"tool_call":false,"temperature":true,"knowledge":"2025-09-01","release_date":"2024-01-01","last_updated":"2025-09-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":4096},"cost":{"input":2,"output":8}},"sonar-deep-research":{"id":"sonar-deep-research","name":"Perplexity Sonar Deep Research","attachment":false,"reasoning":true,"tool_call":false,"temperature":false,"knowledge":"2025-01","release_date":"2025-02-01","last_updated":"2025-09-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":32768},"cost":{"input":2,"output":8,"reasoning":3}}}},"llmgateway":{"id":"llmgateway","env":["LLMGATEWAY_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://api.llmgateway.io/v1","name":"LLM Gateway","doc":"https://llmgateway.io/docs","models":{"kimi-k2-thinking-turbo":{"id":"kimi-k2-thinking-turbo","name":"Kimi K2 Thinking Turbo","family":"kimi-thinking","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2024-08","release_date":"2025-11-06","last_updated":"2025-11-06","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":1.15,"output":8,"cache_read":0.15}},"gemini-pro-latest":{"id":"gemini-pro-latest","name":"Gemini Pro Latest","family":"gemini","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-02-27","last_updated":"2026-02-27","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":2,"output":12,"cache_read":0.2}},"llama-3.1-70b-instruct":{"id":"llama-3.1-70b-instruct","name":"Llama 3.1 70B Instruct","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":true,"release_date":"2024-07-23","last_updated":"2024-07-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":2048},"status":"beta","cost":{"input":0.72,"output":0.72}},"grok-4-20-beta-0309-reasoning":{"id":"grok-4-20-beta-0309-reasoning","name":"Grok 4.20 (Reasoning)","family":"grok","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-03-09","last_updated":"2026-03-09","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":2000000,"output":30000},"cost":{"input":1.25,"output":2.5,"cache_read":0.2,"tiers":[{"input":2.5,"output":5,"cache_read":0.4,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":2.5,"output":5,"cache_read":0.4}}},"gpt-5-pro":{"id":"gpt-5-pro","name":"GPT-5 Pro","family":"gpt-pro","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-10-06","last_updated":"2025-10-06","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":272000},"cost":{"input":15,"output":120}},"glm-4.5-flash":{"id":"glm-4.5-flash","name":"GLM-4.5-Flash","family":"glm-flash","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-07-28","last_updated":"2025-07-28","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":98304},"cost":{"input":0,"output":0,"cache_read":0,"cache_write":0}},"qwen3-30b-a3b-instruct-2507":{"id":"qwen3-30b-a3b-instruct-2507","name":"Qwen3 30B A3B Instruct (2507)","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-07-08","last_updated":"2025-07-08","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":8192},"cost":{"input":0.1,"output":0.3}},"deepseek-r1-0528":{"id":"deepseek-r1-0528","name":"DeepSeek R1 (0528)","family":"deepseek","attachment":false,"reasoning":true,"tool_call":false,"structured_output":false,"temperature":true,"release_date":"2025-05-28","last_updated":"2025-05-28","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":64000,"output":16384},"status":"beta","cost":{"input":0.55,"output":2.19}},"claude-sonnet-4-6":{"id":"claude-sonnet-4-6","name":"Claude Sonnet 4.6","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-08-31","release_date":"2026-02-17","last_updated":"2026-03-13","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":64000},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75}},"gpt-5-mini":{"id":"gpt-5-mini","name":"GPT-5 Mini","family":"gpt-mini","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-05-30","release_date":"2025-08-07","last_updated":"2025-08-07","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":0.25,"output":2,"cache_read":0.025}},"qwen35-397b-a17b":{"id":"qwen35-397b-a17b","name":"Qwen3.5 397B-A17B","family":"qwen","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-02-15","last_updated":"2026-02-15","modalities":{"input":["text","image","video","audio"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":65536},"cost":{"input":0.6,"output":3.6}},"qwen3-next-80b-a3b-instruct":{"id":"qwen3-next-80b-a3b-instruct","name":"Qwen3-Next 80B-A3B Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-09","last_updated":"2025-09","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":32768},"cost":{"input":0.5,"output":2}},"sonar":{"id":"sonar","name":"Sonar","family":"sonar","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2025-09-01","release_date":"2024-01-01","last_updated":"2025-09-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":4096},"cost":{"input":1,"output":1}},"qwen2-5-vl-72b-instruct":{"id":"qwen2-5-vl-72b-instruct","name":"Qwen2.5-VL 72B Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-04","release_date":"2024-09","last_updated":"2024-09","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":8192},"cost":{"input":2.8,"output":8.4}},"gemma-3-27b":{"id":"gemma-3-27b","name":"Gemma 3 27B","family":"gemma","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":true,"release_date":"2025-03-12","last_updated":"2025-03-12","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":16384},"cost":{"input":0.27,"output":0.27}},"glm-4.7-flashx":{"id":"glm-4.7-flashx","name":"GLM-4.7-FlashX","family":"glm-flash","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2026-01-19","last_updated":"2026-01-19","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":200000,"output":131072},"cost":{"input":0.07,"output":0.4,"cache_read":0.01,"cache_write":0}},"gpt-4o":{"id":"gpt-4o","name":"GPT-4o","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2023-09","release_date":"2024-05-13","last_updated":"2024-08-06","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":2.5,"output":10,"cache_read":1.25}},"qwen3-vl-30b-a3b-instruct":{"id":"qwen3-vl-30b-a3b-instruct","name":"Qwen3 VL 30B A3B Instruct","family":"qwen","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-10-02","last_updated":"2025-10-02","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":8192},"cost":{"input":0.2,"output":0.7}},"gpt-5.2":{"id":"gpt-5.2","name":"GPT-5.2","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2025-12-11","last_updated":"2025-12-11","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":1.75,"output":14,"cache_read":0.175}},"glm-4.6v-flash":{"id":"glm-4.6v-flash","name":"GLM-4.6V Flash","family":"glm","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-12-08","last_updated":"2025-12-08","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":16000},"status":"beta","cost":{"input":0,"output":0}},"gpt-5-chat-latest":{"id":"gpt-5-chat-latest","name":"GPT-5 Chat (latest)","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":false,"structured_output":true,"temperature":true,"knowledge":"2024-09-30","release_date":"2025-08-07","last_updated":"2025-08-07","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":1.25,"output":10,"cache_read":0.125}},"ministral-14b-2512":{"id":"ministral-14b-2512","name":"Ministral 14B","family":"mistral","attachment":true,"reasoning":false,"tool_call":false,"structured_output":true,"temperature":true,"release_date":"2025-12-02","last_updated":"2025-12-02","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":8192},"cost":{"input":0.2,"output":0.2}},"o3":{"id":"o3","name":"o3","family":"o","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-05","release_date":"2025-04-16","last_updated":"2025-04-16","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":2,"output":8,"cache_read":0.5}},"glm-4.6":{"id":"glm-4.6","name":"GLM-4.6","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-09-30","last_updated":"2025-09-30","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0.6,"output":2.2,"cache_read":0.11,"cache_write":0}},"gpt-5.3-chat-latest":{"id":"gpt-5.3-chat-latest","name":"GPT-5.3 Chat (latest)","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-08-31","release_date":"2026-03-03","last_updated":"2026-03-03","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":1.75,"output":14,"cache_read":0.175}},"qwen3-32b":{"id":"qwen3-32b","name":"Qwen3 32B","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-04","last_updated":"2025-04","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":16384},"cost":{"input":0.7,"output":2.8,"reasoning":8.4}},"qwen3-coder-30b-a3b-instruct":{"id":"qwen3-coder-30b-a3b-instruct","name":"Qwen3-Coder 30B-A3B Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-04","last_updated":"2025-04","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":65536},"cost":{"input":0.45,"output":2.25}},"kimi-k2-thinking":{"id":"kimi-k2-thinking","name":"Kimi K2 Thinking","family":"kimi-thinking","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2024-08","release_date":"2025-11-06","last_updated":"2025-11-06","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.6,"output":2.5,"cache_read":0.15}},"qwen3-vl-30b-a3b-thinking":{"id":"qwen3-vl-30b-a3b-thinking","name":"Qwen3 VL 30B A3B Thinking","family":"qwen","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-10-02","last_updated":"2025-10-02","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":8192},"cost":{"input":0.2,"output":1}},"claude-haiku-4-5-20251001":{"id":"claude-haiku-4-5-20251001","name":"Claude Haiku 4.5","family":"claude-haiku","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-02-28","release_date":"2025-10-15","last_updated":"2025-10-15","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":1,"output":5,"cache_read":0.1,"cache_write":1.25}},"ministral-8b-2512":{"id":"ministral-8b-2512","name":"Ministral 8B","family":"mistral","attachment":true,"reasoning":false,"tool_call":false,"structured_output":true,"temperature":true,"release_date":"2025-12-02","last_updated":"2025-12-02","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":8192},"cost":{"input":0.15,"output":0.15}},"glm-4-32b-0414-128k":{"id":"glm-4-32b-0414-128k","name":"GLM-4 32B (0414-128k)","family":"glm","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-04-14","last_updated":"2025-04-14","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":0.1,"output":0.1}},"qwen3-235b-a22b-fp8":{"id":"qwen3-235b-a22b-fp8","name":"Qwen3 235B A22B FP8","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-04-28","last_updated":"2025-04-28","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":8192},"cost":{"input":0.2,"output":0.8}},"qwen2-5-vl-32b-instruct":{"id":"qwen2-5-vl-32b-instruct","name":"Qwen2.5 VL 32B Instruct","family":"qwen","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-03-15","last_updated":"2025-03-15","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":8192},"cost":{"input":1.4,"output":4.2}},"qwen3-vl-235b-a22b-instruct":{"id":"qwen3-vl-235b-a22b-instruct","name":"Qwen3 VL 235B A22B Instruct","family":"qwen","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-09-15","last_updated":"2025-09-15","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":8192},"cost":{"input":0.3,"output":1.5}},"gpt-5":{"id":"gpt-5","name":"GPT-5","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-08-07","last_updated":"2025-08-07","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":1.25,"output":10,"cache_read":0.125}},"qwen3-32b-fp8":{"id":"qwen3-32b-fp8","name":"Qwen3 32B FP8","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-04-28","last_updated":"2025-04-28","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":8192},"cost":{"input":0.1,"output":0.1}},"gemini-3.1-flash-lite-preview":{"id":"gemini-3.1-flash-lite-preview","name":"Gemini 3.1 Flash Lite Preview","family":"gemini-flash-lite","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-03-03","last_updated":"2026-03-03","modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":0.25,"output":1.5,"cache_read":0.025,"input_audio":0.5}},"grok-4-0709":{"id":"grok-4-0709","name":"Grok 4 (0709)","family":"grok","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-07-09","last_updated":"2025-07-09","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":256000},"cost":{"input":3,"output":15}},"qwen-flash":{"id":"qwen-flash","name":"Qwen Flash","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-04","release_date":"2025-07-28","last_updated":"2025-07-28","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":32768},"cost":{"input":0.05,"output":0.4}},"claude-haiku-4-5":{"id":"claude-haiku-4-5","name":"Claude Haiku 4.5 (latest)","family":"claude-haiku","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-02-28","release_date":"2025-10-15","last_updated":"2025-10-15","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":1,"output":5,"cache_read":0.1,"cache_write":1.25}},"gemini-2.0-flash-lite":{"id":"gemini-2.0-flash-lite","name":"Gemini 2.0 Flash-Lite","family":"gemini-flash-lite","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-06","release_date":"2024-12-11","last_updated":"2024-12-11","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":8192},"cost":{"input":0.075,"output":0.3}},"sonar-pro":{"id":"sonar-pro","name":"Sonar Pro","family":"sonar-pro","attachment":true,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2025-09-01","release_date":"2024-01-01","last_updated":"2025-09-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":8192},"cost":{"input":3,"output":15}},"gpt-5.4-pro":{"id":"gpt-5.4-pro","name":"GPT-5.4 Pro","family":"gpt-pro","attachment":true,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-03-05","last_updated":"2026-03-05","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1050000,"input":922000,"output":128000},"cost":{"input":30,"output":180}},"qwen-max-latest":{"id":"qwen-max-latest","name":"Qwen Max Latest","family":"qwen","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-01-25","last_updated":"2025-01-25","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":32768,"output":8192},"cost":{"input":0.345,"output":1.377}},"gpt-4.1-mini":{"id":"gpt-4.1-mini","name":"GPT-4.1 mini","family":"gpt-mini","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-04","release_date":"2025-04-14","last_updated":"2025-04-14","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1047576,"output":32768},"cost":{"input":0.4,"output":1.6,"cache_read":0.1}},"grok-4-20-beta-0309-non-reasoning":{"id":"grok-4-20-beta-0309-non-reasoning","name":"Grok 4.20 (Non-Reasoning)","family":"grok","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2026-03-09","last_updated":"2026-03-09","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":2000000,"output":30000},"cost":{"input":1.25,"output":2.5,"cache_read":0.2,"tiers":[{"input":2.5,"output":5,"cache_read":0.4,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":2.5,"output":5,"cache_read":0.4}}},"deepseek-v3.2":{"id":"deepseek-v3.2","name":"DeepSeek V3.2","family":"deepseek","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-09-29","last_updated":"2025-09-29","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":163840,"output":16384},"cost":{"input":0.28,"output":0.42,"cache_read":0.056}},"seed-1-8-251228":{"id":"seed-1-8-251228","name":"Seed 1.8 (251228)","family":"seed","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-12-18","last_updated":"2025-12-18","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"output":8192},"cost":{"input":0.25,"output":2,"cache_read":0.05}},"gpt-5.2-pro":{"id":"gpt-5.2-pro","name":"GPT-5.2 Pro","family":"gpt-pro","attachment":true,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":false,"knowledge":"2025-08-31","release_date":"2025-12-11","last_updated":"2025-12-11","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":21,"output":168}},"gpt-4o-mini-search-preview":{"id":"gpt-4o-mini-search-preview","name":"GPT-4o Mini Search Preview","family":"gpt","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":true,"release_date":"2024-10-01","last_updated":"2024-10-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":0.15,"output":0.6}},"claude-opus-4-20250514":{"id":"claude-opus-4-20250514","name":"Claude Opus 4","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-05-22","last_updated":"2025-05-22","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":32000},"cost":{"input":15,"output":75,"cache_read":1.5,"cache_write":18.75}},"minimax-m2.7-highspeed":{"id":"minimax-m2.7-highspeed","name":"MiniMax-M2.7-highspeed","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-03-18","last_updated":"2026-03-18","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0.6,"output":2.4,"cache_read":0.06,"cache_write":0.375}},"o4-mini":{"id":"o4-mini","name":"o4-mini","family":"o-mini","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-05","release_date":"2025-04-16","last_updated":"2025-04-16","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":1.1,"output":4.4,"cache_read":0.275}},"gpt-5.4":{"id":"gpt-5.4","name":"GPT-5.4","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-03-05","last_updated":"2026-03-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1050000,"input":922000,"output":128000},"cost":{"input":2.5,"output":15,"cache_read":0.25}},"o3-mini":{"id":"o3-mini","name":"o3-mini","family":"o-mini","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-05","release_date":"2024-12-20","last_updated":"2025-01-29","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":1.1,"output":4.4,"cache_read":0.55}},"gemini-3-flash-preview":{"id":"gemini-3-flash-preview","name":"Gemini 3 Flash Preview","family":"gemini-flash","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-12-17","last_updated":"2025-12-17","modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":0.5,"output":3,"cache_read":0.05,"input_audio":1}},"mimo-v2-omni":{"id":"mimo-v2-omni","name":"MiMo-V2-Omni","family":"mimo","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2024-12","release_date":"2026-03-18","last_updated":"2026-03-18","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"output":131072},"cost":{"input":0.4,"output":2,"cache_read":0.08}},"qwen-coder-plus":{"id":"qwen-coder-plus","name":"Qwen Coder Plus","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2024-09-18","last_updated":"2024-09-18","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":8192},"cost":{"input":0.502,"output":1.004}},"minimax-m2.1":{"id":"minimax-m2.1","name":"MiniMax-M2.1","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-12-23","last_updated":"2025-12-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0.3,"output":1.2}},"gpt-5.5":{"id":"gpt-5.5","name":"GPT-5.5","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-12-01","release_date":"2026-04-23","last_updated":"2026-04-23","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1050000,"input":922000,"output":128000},"experimental":{"modes":{"fast":{"cost":{"input":12.5,"output":75,"cache_read":1.25},"provider":{"body":{"service_tier":"priority"}}}}},"cost":{"input":5,"output":30,"cache_read":0.5,"tiers":[{"input":10,"output":45,"cache_read":1,"tier":{"type":"context","size":272000}}],"context_over_200k":{"input":10,"output":45,"cache_read":1}}},"qwen3-max":{"id":"qwen3-max","name":"Qwen3 Max","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-09-23","last_updated":"2025-09-23","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"output":65536},"cost":{"input":1.2,"output":6}},"kimi-k2.6":{"id":"kimi-k2.6","name":"Kimi K2.6","family":"kimi-k2.6","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-04-21","last_updated":"2026-04-21","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.95,"output":4,"cache_read":0.16}},"mistral-large-2512":{"id":"mistral-large-2512","name":"Mistral Large 3","family":"mistral-large","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-11","release_date":"2024-11-01","last_updated":"2025-12-02","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.5,"output":1.5}},"qwen3-coder-plus":{"id":"qwen3-coder-plus","name":"Qwen3 Coder Plus","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-07-23","last_updated":"2025-07-23","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":1,"output":5}},"glm-4.7":{"id":"glm-4.7","name":"GLM-4.7","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2025-04","release_date":"2025-12-22","last_updated":"2025-12-22","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0.6,"output":2.2,"cache_read":0.11,"cache_write":0}},"gpt-5.2-chat-latest":{"id":"gpt-5.2-chat-latest","name":"GPT-5.2 Chat","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2025-12-11","last_updated":"2025-12-11","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":1.75,"output":14,"cache_read":0.175}},"gpt-5.1":{"id":"gpt-5.1","name":"GPT-5.1","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-11-13","last_updated":"2025-11-13","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":1.25,"output":10,"cache_read":0.125}},"gpt-5-nano":{"id":"gpt-5-nano","name":"GPT-5 Nano","family":"gpt-nano","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-05-30","release_date":"2025-08-07","last_updated":"2025-08-07","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":0.05,"output":0.4,"cache_read":0.005}},"gpt-oss-120b":{"id":"gpt-oss-120b","name":"GPT OSS 120B","family":"gpt-oss","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":32766},"cost":{"input":0.05,"output":0.25}},"ministral-3b-2512":{"id":"ministral-3b-2512","name":"Ministral 3B","family":"mistral","attachment":true,"reasoning":false,"tool_call":false,"structured_output":true,"temperature":true,"release_date":"2025-12-02","last_updated":"2025-12-02","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":8192},"cost":{"input":0.1,"output":0.1}},"gpt-4o-mini":{"id":"gpt-4o-mini","name":"GPT-4o mini","family":"gpt-mini","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2023-09","release_date":"2024-07-18","last_updated":"2024-07-18","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":0.15,"output":0.6,"cache_read":0.075}},"qwen3-coder-next":{"id":"qwen3-coder-next","name":"Qwen3 Coder Next","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-10-15","last_updated":"2025-10-15","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"output":65536},"cost":{"input":0.108,"output":0.675}},"grok-4-fast-reasoning":{"id":"grok-4-fast-reasoning","name":"Grok 4 Fast Reasoning","family":"grok","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-07-09","last_updated":"2025-07-09","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":2000000,"output":30000},"cost":{"input":0.2,"output":0.5,"cache_read":0.05}},"gpt-5.1-codex-mini":{"id":"gpt-5.1-codex-mini","name":"GPT-5.1 Codex mini","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-11-13","last_updated":"2025-11-13","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":0.25,"output":2,"cache_read":0.025}},"llama-4-maverick-17b-instruct":{"id":"llama-4-maverick-17b-instruct","name":"Llama 4 Maverick 17B Instruct","family":"llama","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":true,"release_date":"2025-04-05","last_updated":"2025-04-05","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":8192,"output":2048},"cost":{"input":0.24,"output":0.97}},"llama-3.2-3b-instruct":{"id":"llama-3.2-3b-instruct","name":"Llama 3.2 3B Instruct","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"structured_output":true,"temperature":true,"release_date":"2024-09-18","last_updated":"2024-09-18","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":32768,"output":32000},"cost":{"input":0.03,"output":0.05}},"qwen3-235b-a22b-thinking-2507":{"id":"qwen3-235b-a22b-thinking-2507","name":"Qwen3 235B A22B Thinking (2507)","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-07-08","last_updated":"2025-07-08","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":8192},"cost":{"input":0.2,"output":0.6}},"mistral-large-latest":{"id":"mistral-large-latest","name":"Mistral Large (latest)","family":"mistral-large","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-11","release_date":"2024-11-01","last_updated":"2025-12-02","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.5,"output":1.5}},"qwen3-4b-fp8":{"id":"qwen3-4b-fp8","name":"Qwen3 4B FP8","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-04-28","last_updated":"2025-04-28","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":8192},"cost":{"input":0.03,"output":0.03}},"qwen3.7-max":{"id":"qwen3.7-max","name":"Qwen3.7 Max","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-05-21","last_updated":"2026-05-21","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":65536},"cost":{"input":2.5,"output":7.5,"cache_read":0.5,"cache_write":3.125}},"qwen-vl-plus":{"id":"qwen-vl-plus","name":"Qwen-VL Plus","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-04","release_date":"2024-01-25","last_updated":"2025-08-15","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":8192},"cost":{"input":0.21,"output":0.63}},"gpt-oss-20b":{"id":"gpt-oss-20b","name":"GPT OSS 20B","family":"gpt-oss","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":32766},"cost":{"input":0.04,"output":0.15}},"llama-4-scout":{"id":"llama-4-scout","name":"Llama 4 Scout","family":"llama","attachment":false,"reasoning":false,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-04-05","last_updated":"2025-04-05","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":32768,"output":16384},"status":"beta","cost":{"input":0.18,"output":0.59}},"sonar-reasoning-pro":{"id":"sonar-reasoning-pro","name":"Sonar Reasoning Pro","family":"sonar-reasoning","attachment":true,"reasoning":true,"tool_call":false,"temperature":true,"knowledge":"2025-09-01","release_date":"2024-01-01","last_updated":"2025-09-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":4096},"cost":{"input":2,"output":8}},"gemini-2.5-pro":{"id":"gemini-2.5-pro","name":"Gemini 2.5 Pro","family":"gemini-pro","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-03-20","last_updated":"2025-06-05","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":1.25,"output":10,"cache_read":0.125,"tiers":[{"input":2.5,"output":15,"cache_read":0.25,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":2.5,"output":15,"cache_read":0.25}}},"glm-4.5v":{"id":"glm-4.5v","name":"GLM-4.5V","family":"glm","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-08-11","last_updated":"2025-08-11","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":64000,"output":16384},"cost":{"input":0.6,"output":1.8}},"gpt-4.1":{"id":"gpt-4.1","name":"GPT-4.1","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-04","release_date":"2025-04-14","last_updated":"2025-04-14","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1047576,"output":32768},"cost":{"input":2,"output":8,"cache_read":0.5}},"claude-sonnet-4-5-20250929":{"id":"claude-sonnet-4-5-20250929","name":"Claude Sonnet 4.5","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-07-31","release_date":"2025-09-29","last_updated":"2025-09-29","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75}},"qwen3.6-plus":{"id":"qwen3.6-plus","name":"Qwen3.6 Plus","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2026-04-02","last_updated":"2026-04-02","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":65536},"cost":{"input":0.5,"output":3,"cache_read":0.05,"cache_write":0.625,"tiers":[{"input":2,"output":6,"cache_read":0.2,"cache_write":2.5,"tier":{"type":"context","size":256000}}],"context_over_200k":{"input":2,"output":6,"cache_read":0.2,"cache_write":2.5}}},"llama-3.2-11b-instruct":{"id":"llama-3.2-11b-instruct","name":"Llama 3.2 11B Instruct","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"structured_output":true,"temperature":true,"release_date":"2024-09-25","last_updated":"2024-09-25","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":8192},"cost":{"input":0.07,"output":0.33}},"qwen3-vl-plus":{"id":"qwen3-vl-plus","name":"Qwen3-VL Plus","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-09-23","last_updated":"2025-09-23","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"output":32768},"cost":{"input":0.2,"output":1.6,"reasoning":4.8}},"glm-4.6v-flashx":{"id":"glm-4.6v-flashx","name":"GLM-4.6V FlashX","family":"glm","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-12-08","last_updated":"2025-12-08","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16000},"cost":{"input":0.04,"output":0.4,"cache_read":0.004}},"gpt-5.4-nano":{"id":"gpt-5.4-nano","name":"GPT-5.4 nano","family":"gpt-nano","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-03-17","last_updated":"2026-03-17","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":0.2,"output":1.25,"cache_read":0.02}},"claude-3-5-haiku":{"id":"claude-3-5-haiku","name":"Claude 3.5 Haiku","family":"claude","attachment":false,"reasoning":false,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2024-10-22","last_updated":"2024-10-22","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":8192},"status":"deprecated","cost":{"input":0.8,"output":4,"cache_read":0.08}},"claude-opus-4-1-20250805":{"id":"claude-opus-4-1-20250805","name":"Claude Opus 4.1","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":32000},"cost":{"input":15,"output":75,"cache_read":1.5,"cache_write":18.75}},"qwen3-vl-8b-instruct":{"id":"qwen3-vl-8b-instruct","name":"Qwen3 VL 8B Instruct","family":"qwen","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":true,"release_date":"2025-08-19","last_updated":"2025-08-19","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":8192},"cost":{"input":0.08,"output":0.5}},"qwen-max":{"id":"qwen-max","name":"Qwen Max","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-04","release_date":"2024-04-03","last_updated":"2025-01-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":32768,"output":8192},"cost":{"input":1.6,"output":6.4}},"qwen-omni-turbo":{"id":"qwen-omni-turbo","name":"Qwen-Omni Turbo","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-04","release_date":"2025-01-19","last_updated":"2025-03-26","modalities":{"input":["text","image","audio","video"],"output":["text","audio"]},"open_weights":false,"limit":{"context":32768,"output":2048},"cost":{"input":0.07,"output":0.27,"input_audio":4.44,"output_audio":8.89}},"gemini-3.1-pro-preview":{"id":"gemini-3.1-pro-preview","name":"Gemini 3.1 Pro Preview","family":"gemini-pro","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-02-19","last_updated":"2026-02-19","modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":2,"output":12,"cache_read":0.2,"tiers":[{"input":4,"output":18,"cache_read":0.4,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":4,"output":18,"cache_read":0.4}}},"qwen3-coder-480b-a35b-instruct":{"id":"qwen3-coder-480b-a35b-instruct","name":"Qwen3-Coder 480B-A35B Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-04","last_updated":"2025-04","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":65536},"cost":{"input":1.5,"output":7.5}},"glm-4.6v":{"id":"glm-4.6v","name":"GLM-4.6V","family":"glm","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-12-08","last_updated":"2025-12-08","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":32768},"cost":{"input":0.3,"output":0.9}},"gemini-3.1-flash-lite":{"id":"gemini-3.1-flash-lite","name":"Gemini 3.1 Flash Lite","family":"gemini-flash-lite","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-05-07","last_updated":"2026-05-07","modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":0.25,"output":1.5,"cache_read":0.025,"input_audio":0.5}},"gpt-5.3-codex":{"id":"gpt-5.3-codex","name":"GPT-5.3 Codex","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-02-05","last_updated":"2026-02-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":1.75,"output":14,"cache_read":0.175}},"gemini-2.5-flash-lite":{"id":"gemini-2.5-flash-lite","name":"Gemini 2.5 Flash-Lite","family":"gemini-flash-lite","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-06-17","last_updated":"2025-06-17","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":0.1,"output":0.4,"cache_read":0.01,"input_audio":0.3}},"qwen3-next-80b-a3b-thinking":{"id":"qwen3-next-80b-a3b-thinking","name":"Qwen3-Next 80B-A3B (Thinking)","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-09","last_updated":"2025-09","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":32768},"cost":{"input":0.5,"output":6}},"gemini-2.5-flash":{"id":"gemini-2.5-flash","name":"Gemini 2.5 Flash","family":"gemini-flash","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-03-20","last_updated":"2025-06-05","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":0.3,"output":2.5,"cache_read":0.03,"input_audio":1}},"qwen3-coder-flash":{"id":"qwen3-coder-flash","name":"Qwen3 Coder Flash","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-07-28","last_updated":"2025-07-28","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":65536},"cost":{"input":0.3,"output":1.5}},"claude-3-7-sonnet-20250219":{"id":"claude-3-7-sonnet-20250219","name":"Claude Sonnet 3.7","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-10-31","release_date":"2025-02-19","last_updated":"2025-02-19","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75}},"mistral-small-2506":{"id":"mistral-small-2506","name":"Mistral Small 3.2","family":"mistral-small","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-03","release_date":"2025-06-20","last_updated":"2025-06-20","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":16384},"cost":{"input":0.1,"output":0.3}},"gpt-5.5-pro":{"id":"gpt-5.5-pro","name":"GPT-5.5 Pro","family":"gpt-pro","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-12-01","release_date":"2026-04-23","last_updated":"2026-04-23","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1050000,"input":922000,"output":128000},"cost":{"input":30,"output":180,"tiers":[{"input":60,"output":270,"tier":{"type":"context","size":272000}}],"context_over_200k":{"input":60,"output":270}}},"qwen-turbo":{"id":"qwen-turbo","name":"Qwen Turbo","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-04","release_date":"2024-11-01","last_updated":"2025-04-28","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":16384},"cost":{"input":0.05,"output":0.2,"reasoning":0.5}},"qwq-plus":{"id":"qwq-plus","name":"QwQ Plus","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-04","release_date":"2025-03-05","last_updated":"2025-03-05","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":8192},"cost":{"input":0.8,"output":2.4}},"qwen3-vl-flash":{"id":"qwen3-vl-flash","name":"Qwen3 VL Flash","family":"qwen","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-10-09","last_updated":"2025-10-09","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":32000},"cost":{"input":0.022,"output":0.215,"cache_read":0.0044}},"gemini-2.0-flash":{"id":"gemini-2.0-flash","name":"Gemini 2.0 Flash","family":"gemini-flash","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-06","release_date":"2024-12-11","last_updated":"2024-12-11","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":8192},"cost":{"input":0.1,"output":0.4,"cache_read":0.025}},"gpt-3.5-turbo":{"id":"gpt-3.5-turbo","name":"GPT-3.5-turbo","family":"gpt","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":true,"knowledge":"2021-09-01","release_date":"2023-03-01","last_updated":"2023-11-06","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":16385,"output":4096},"cost":{"input":0.5,"output":1.5,"cache_read":0}},"glm-4.7-flash":{"id":"glm-4.7-flash","name":"GLM-4.7-Flash","family":"glm-flash","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2026-01-19","last_updated":"2026-01-19","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":200000,"output":131072},"cost":{"input":0,"output":0,"cache_read":0,"cache_write":0}},"grok-4-20-reasoning":{"id":"grok-4-20-reasoning","name":"Grok 4.20 (Reasoning)","family":"grok","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-03-09","last_updated":"2026-03-09","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":2000000,"output":30000},"cost":{"input":1.25,"output":2.5,"cache_read":0.2,"tiers":[{"input":2.5,"output":5,"cache_read":0.4,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":2.5,"output":5,"cache_read":0.4}}},"gemini-3.5-flash":{"id":"gemini-3.5-flash","name":"Gemini 3.5 Flash","family":"gemini-flash","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-05-19","last_updated":"2026-05-19","modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":1.5,"output":9,"cache_read":0.15,"input_audio":1.5}},"claude-3-5-sonnet-20241022":{"id":"claude-3-5-sonnet-20241022","name":"Claude Sonnet 3.5 v2","family":"claude-sonnet","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-04-30","release_date":"2024-10-22","last_updated":"2024-10-22","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":8192},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75}},"gemma-2-27b-it-together":{"id":"gemma-2-27b-it-together","name":"Gemma 2 27B IT","family":"gemma","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":true,"release_date":"2024-06-27","last_updated":"2024-06-27","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":8192,"output":16384},"cost":{"input":0.08,"output":0.08}},"claude-opus-4-5-20251101":{"id":"claude-opus-4-5-20251101","name":"Claude Opus 4.5","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-11-01","last_updated":"2025-11-01","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25}},"custom":{"id":"custom","name":"Custom Model","family":"auto","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2024-01-01","last_updated":"2024-01-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":0,"output":0}},"hermes-2-pro-llama-3-8b":{"id":"hermes-2-pro-llama-3-8b","name":"Hermes 2 Pro Llama 3 8B","family":"hermes","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":true,"release_date":"2024-05-27","last_updated":"2024-05-27","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":8192,"output":8192},"cost":{"input":0.14,"output":0.14}},"gpt-5.2-codex":{"id":"gpt-5.2-codex","name":"GPT-5.2 Codex","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2025-12-11","last_updated":"2025-12-11","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":1.75,"output":14,"cache_read":0.175}},"claude-3-opus":{"id":"claude-3-opus","name":"Claude 3 Opus","family":"claude","attachment":true,"reasoning":false,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2024-03-04","last_updated":"2024-03-04","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":4096},"cost":{"input":15,"output":75,"cache_read":1.5}},"llama-3.1-nemotron-ultra-253b":{"id":"llama-3.1-nemotron-ultra-253b","name":"Llama 3.1 Nemotron Ultra 253B","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"structured_output":true,"temperature":true,"release_date":"2025-04-07","last_updated":"2025-04-07","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":8192},"cost":{"input":0.6,"output":1.8}},"qwen3.6-35b-a3b":{"id":"qwen3.6-35b-a3b","name":"Qwen3.6 35B-A3B","family":"qwen","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-04-17","last_updated":"2026-04-17","modalities":{"input":["text","image","video","audio"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":65536},"cost":{"input":0.248,"output":1.485}},"minimax-m2.7":{"id":"minimax-m2.7","name":"MiniMax-M2.7","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-03-18","last_updated":"2026-03-18","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0.3,"output":1.2,"cache_read":0.06,"cache_write":0.375}},"qwen3-max-2026-01-23":{"id":"qwen3-max-2026-01-23","name":"Qwen3 Max (2026-01-23)","family":"qwen","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-01-23","last_updated":"2026-01-23","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":32800},"cost":{"input":0.359,"output":1.434,"cache_read":0.072}},"deepseek-v4-flash":{"id":"deepseek-v4-flash","name":"DeepSeek V4 Flash","family":"deepseek-flash","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-05","release_date":"2026-04-24","last_updated":"2026-04-24","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1000000,"output":384000},"cost":{"input":0.14,"output":0.28,"cache_read":0.0028}},"llama-3-70b-instruct":{"id":"llama-3-70b-instruct","name":"Llama 3 70B Instruct","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"structured_output":true,"temperature":true,"release_date":"2024-04-18","last_updated":"2024-04-18","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":8192,"output":8000},"cost":{"input":0.51,"output":0.74}},"qwen-plus-latest":{"id":"qwen-plus-latest","name":"Qwen Plus Latest","family":"qwen","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-01-25","last_updated":"2025-01-25","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":8192},"cost":{"input":0.115,"output":0.287}},"qwen3-30b-a3b-thinking-2507":{"id":"qwen3-30b-a3b-thinking-2507","name":"Qwen3 30B A3B Thinking (2507)","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-07-08","last_updated":"2025-07-08","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":8192},"cost":{"input":0.1,"output":0.1}},"claude-opus-4-8":{"id":"claude-opus-4-8","name":"Claude Opus 4.8","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2026-05-28","last_updated":"2026-05-28","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25}},"llama-3-8b-instruct":{"id":"llama-3-8b-instruct","name":"Llama 3 8B Instruct","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"structured_output":true,"temperature":true,"release_date":"2025-04-03","last_updated":"2025-04-03","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":8192,"output":8192},"cost":{"input":0.04,"output":0.04}},"devstral-small-2507":{"id":"devstral-small-2507","name":"Devstral Small","family":"devstral","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-05","release_date":"2025-07-10","last_updated":"2025-07-10","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":128000},"status":"deprecated","cost":{"input":0.1,"output":0.3}},"glm-5":{"id":"glm-5","name":"GLM-5","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"release_date":"2026-02-11","last_updated":"2026-02-11","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":1,"output":3.2,"cache_read":0.2,"cache_write":0}},"devstral-2512":{"id":"devstral-2512","name":"Devstral 2","family":"devstral","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-12","release_date":"2025-12-09","last_updated":"2025-12-09","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"status":"deprecated","cost":{"input":0.4,"output":2}},"glm-4.5":{"id":"glm-4.5","name":"GLM-4.5","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-07-28","last_updated":"2025-07-28","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":98304},"cost":{"input":0.6,"output":2.2,"cache_read":0.11,"cache_write":0}},"qwen3-235b-a22b-instruct-2507":{"id":"qwen3-235b-a22b-instruct-2507","name":"Qwen3 235B A22B Instruct (2507)","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-07-08","last_updated":"2025-07-08","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":8192},"cost":{"input":0.09,"output":0.58}},"gpt-5.1-codex":{"id":"gpt-5.1-codex","name":"GPT-5.1 Codex","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-11-13","last_updated":"2025-11-13","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":1.25,"output":10,"cache_read":0.125}},"grok-4-3":{"id":"grok-4-3","name":"Grok 4.3","family":"grok","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-04-17","last_updated":"2026-04-17","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":30000},"cost":{"input":1.25,"output":2.5,"cache_read":0.2,"tiers":[{"input":2.5,"output":5,"cache_read":0.4,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":2.5,"output":5,"cache_read":0.4}}},"claude-sonnet-4-20250514":{"id":"claude-sonnet-4-20250514","name":"Claude Sonnet 4","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-05-22","last_updated":"2025-05-22","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75}},"glm-4.5-x":{"id":"glm-4.5-x","name":"GLM-4.5 X","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-07-28","last_updated":"2025-07-28","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"status":"beta","cost":{"input":2.2,"output":8.9,"cache_read":0.45}},"pixtral-large-latest":{"id":"pixtral-large-latest","name":"Pixtral Large (latest)","family":"pixtral","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-11","release_date":"2024-11-01","last_updated":"2024-11-04","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":128000},"cost":{"input":2,"output":6}},"qwen3.6-max-preview":{"id":"qwen3.6-max-preview","name":"Qwen3.6 Max Preview","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2026-04-20","last_updated":"2026-04-20","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"output":65536},"cost":{"input":1.3,"output":7.8,"cache_read":0.13,"cache_write":1.625}},"qwen-vl-max":{"id":"qwen-vl-max","name":"Qwen-VL Max","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-04","release_date":"2024-04-08","last_updated":"2025-08-13","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":8192},"cost":{"input":0.8,"output":3.2}},"codestral-2508":{"id":"codestral-2508","name":"Codestral","family":"mistral","attachment":false,"reasoning":false,"tool_call":false,"structured_output":true,"temperature":true,"release_date":"2025-07-30","last_updated":"2025-07-30","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"output":16384},"cost":{"input":0.3,"output":0.9}},"minimax-m2":{"id":"minimax-m2","name":"MiniMax-M2","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-10-27","last_updated":"2025-10-27","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":196608,"output":128000},"cost":{"input":0.3,"output":1.2}},"minimax-m2.5":{"id":"minimax-m2.5","name":"MiniMax-M2.5","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-02-12","last_updated":"2026-02-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0.3,"output":1.2,"cache_read":0.03,"cache_write":0.375}},"llama-3.1-8b-instruct":{"id":"llama-3.1-8b-instruct","name":"Llama 3.1 8B Instruct","family":"llama","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2024-07-23","last_updated":"2024-07-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":2048},"status":"beta","cost":{"input":0.22,"output":0.22}},"seed-1-6-250915":{"id":"seed-1-6-250915","name":"Seed 1.6 (250915)","family":"seed","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-09-15","last_updated":"2025-09-15","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"output":8192},"cost":{"input":0.25,"output":2,"cache_read":0.05}},"claude-sonnet-4-5":{"id":"claude-sonnet-4-5","name":"Claude Sonnet 4.5 (latest)","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-07-31","release_date":"2025-09-29","last_updated":"2025-09-29","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75}},"gpt-5.4-mini":{"id":"gpt-5.4-mini","name":"GPT-5.4 mini","family":"gpt-mini","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-03-17","last_updated":"2026-03-17","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":0.75,"output":4.5,"cache_read":0.075}},"mimo-v2-pro":{"id":"mimo-v2-pro","name":"MiMo-V2-Pro","family":"mimo","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2024-12","release_date":"2026-03-18","last_updated":"2026-03-18","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":131072},"cost":{"input":1,"output":3,"cache_read":0.2,"tiers":[{"input":2,"output":6,"cache_read":0.4,"tier":{"type":"context","size":256000}}],"context_over_200k":{"input":2,"output":6,"cache_read":0.4}}},"gpt-4-turbo":{"id":"gpt-4-turbo","name":"GPT-4 Turbo","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"structured_output":false,"temperature":true,"knowledge":"2023-12","release_date":"2023-11-06","last_updated":"2024-04-09","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":4096},"cost":{"input":10,"output":30}},"minimax-m2.5-highspeed":{"id":"minimax-m2.5-highspeed","name":"MiniMax-M2.5-highspeed","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-02-13","last_updated":"2026-02-13","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0.6,"output":2.4,"cache_read":0.06,"cache_write":0.375}},"mimo-v2.5":{"id":"mimo-v2.5","name":"MiMo-V2.5","family":"mimo","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2024-12","release_date":"2026-04-22","last_updated":"2026-04-22","modalities":{"input":["text","image","audio","video"],"output":["text"]},"open_weights":true,"limit":{"context":1048576,"output":131072},"cost":{"input":0.4,"output":2,"cache_read":0.08,"tiers":[{"input":0.8,"output":4,"cache_read":0.16,"tier":{"type":"context","size":256000}}],"context_over_200k":{"input":0.8,"output":4,"cache_read":0.16}}},"claude-3-7-sonnet":{"id":"claude-3-7-sonnet","name":"Claude 3.7 Sonnet","family":"claude","attachment":false,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-02-24","last_updated":"2025-02-24","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":8192},"cost":{"input":3,"output":15,"cache_read":0.3}},"claude-opus-4-6":{"id":"claude-opus-4-6","name":"Claude Opus 4.6","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-05-31","release_date":"2026-02-05","last_updated":"2026-03-13","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25}},"llama-3.3-70b-instruct":{"id":"llama-3.3-70b-instruct","name":"Llama-3.3-70B-Instruct","family":"llama","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2023-12","release_date":"2024-12-06","last_updated":"2024-12-06","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4096},"cost":{"input":0,"output":0}},"qwen25-coder-7b":{"id":"qwen25-coder-7b","name":"Qwen2.5 Coder 7B","family":"qwen","attachment":false,"reasoning":false,"tool_call":false,"structured_output":true,"temperature":true,"release_date":"2024-09-19","last_updated":"2024-09-19","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":8192},"cost":{"input":0.05,"output":0.05}},"mimo-v2-flash":{"id":"mimo-v2-flash","name":"MiMo-V2-Flash","family":"mimo","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2024-12-01","release_date":"2025-12-16","last_updated":"2026-02-04","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":65536},"cost":{"input":0.1,"output":0.3,"cache_read":0.01}},"qwen3-30b-a3b-fp8":{"id":"qwen3-30b-a3b-fp8","name":"Qwen3 30B A3B FP8","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-04-28","last_updated":"2025-04-28","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":8192},"cost":{"input":0.1,"output":0.1}},"kimi-k2":{"id":"kimi-k2","name":"Kimi K2","family":"kimi","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-07-11","last_updated":"2025-07-11","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":16384},"cost":{"input":0.6,"output":2.5,"cache_read":0.12}},"gemma-3-1b-it":{"id":"gemma-3-1b-it","name":"Gemma 3 1B IT","family":"gemma","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":true,"release_date":"2025-03-12","last_updated":"2025-03-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1000000,"output":16384},"cost":{"input":0.08,"output":0.3}},"o1":{"id":"o1","name":"o1","family":"o","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2023-09","release_date":"2024-12-05","last_updated":"2024-12-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":15,"output":60,"cache_read":7.5}},"deepseek-v4-pro":{"id":"deepseek-v4-pro","name":"DeepSeek V4 Pro","family":"deepseek-thinking","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-05","release_date":"2026-04-24","last_updated":"2026-04-24","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1000000,"output":384000},"cost":{"input":0.435,"output":0.87,"cache_read":0.003625}},"kimi-k2.5":{"id":"kimi-k2.5","name":"Kimi K2.5","family":"kimi-k2.5","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":false,"knowledge":"2025-01","release_date":"2026-01","last_updated":"2026-01","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.6,"output":3,"cache_read":0.1}},"seed-1-6-250615":{"id":"seed-1-6-250615","name":"Seed 1.6 (250615)","family":"seed","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-06-25","last_updated":"2025-06-25","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"output":8192},"cost":{"input":0.25,"output":2,"cache_read":0.05}},"glm-4.5-airx":{"id":"glm-4.5-airx","name":"GLM-4.5 AirX","family":"glm","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-07-28","last_updated":"2025-07-28","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":1.1,"output":4.5,"cache_read":0.22}},"deepseek-v3.1":{"id":"deepseek-v3.1","name":"DeepSeek V3.1","family":"deepseek","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-08-21","last_updated":"2025-08-21","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":32768},"cost":{"input":0.56,"output":1.68,"cache_read":0.07}},"llama-4-scout-17b-instruct":{"id":"llama-4-scout-17b-instruct","name":"Llama 4 Scout 17B Instruct","family":"llama","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":true,"release_date":"2025-04-05","last_updated":"2025-04-05","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":8192,"output":2048},"cost":{"input":0.17,"output":0.66}},"claude-opus-4-7":{"id":"claude-opus-4-7","name":"Claude Opus 4.7","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2026-01-31","release_date":"2026-04-16","last_updated":"2026-04-16","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25}},"minimax-text-01":{"id":"minimax-text-01","name":"MiniMax Text 01","family":"minimax","attachment":false,"reasoning":true,"tool_call":false,"structured_output":false,"temperature":true,"release_date":"2025-01-15","last_updated":"2025-01-15","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1000000,"output":131072},"cost":{"input":0.2,"output":1.1}},"gpt-4":{"id":"gpt-4","name":"GPT-4","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"structured_output":false,"temperature":true,"knowledge":"2023-11","release_date":"2023-11-06","last_updated":"2024-04-09","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":8192,"output":8192},"cost":{"input":30,"output":60}},"glm-4.5-air":{"id":"glm-4.5-air","name":"GLM-4.5-Air","family":"glm-air","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-07-28","last_updated":"2025-07-28","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":98304},"cost":{"input":0.2,"output":1.1,"cache_read":0.03,"cache_write":0}},"grok-4-1-fast-reasoning":{"id":"grok-4-1-fast-reasoning","name":"Grok 4.1 Fast Reasoning","family":"grok","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-11-19","last_updated":"2025-11-19","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":2000000,"output":30000},"cost":{"input":0.2,"output":0.5,"cache_read":0.05}},"qwen3-vl-235b-a22b-thinking":{"id":"qwen3-vl-235b-a22b-thinking","name":"Qwen3 VL 235B A22B Thinking","family":"qwen","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-09-15","last_updated":"2025-09-15","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":8192},"cost":{"input":0.5,"output":2}},"glm-5.1":{"id":"glm-5.1","name":"GLM-5.1","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-03-27","last_updated":"2026-03-27","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":200000,"output":131072},"cost":{"input":6,"output":24,"cache_read":1.3,"cache_write":0}},"grok-4-20-non-reasoning":{"id":"grok-4-20-non-reasoning","name":"Grok 4.20 (Non-Reasoning)","family":"grok","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2026-03-09","last_updated":"2026-03-09","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":2000000,"output":30000},"cost":{"input":1.25,"output":2.5,"cache_read":0.2,"tiers":[{"input":2.5,"output":5,"cache_read":0.4,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":2.5,"output":5,"cache_read":0.4}}},"minimax-m2.1-lightning":{"id":"minimax-m2.1-lightning","name":"MiniMax M2.1 Lightning","family":"minimax","attachment":false,"reasoning":true,"tool_call":false,"structured_output":false,"temperature":true,"release_date":"2025-12-23","last_updated":"2025-12-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":196608,"output":131072},"cost":{"input":0.12,"output":0.48}},"gpt-4o-search-preview":{"id":"gpt-4o-search-preview","name":"GPT-4o Search Preview","family":"gpt","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":true,"release_date":"2024-10-01","last_updated":"2024-10-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":2.5,"output":10}},"mimo-v2.5-pro":{"id":"mimo-v2.5-pro","name":"MiMo-V2.5-Pro","family":"mimo","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2024-12","release_date":"2026-04-22","last_updated":"2026-04-22","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1048576,"output":131072},"cost":{"input":1,"output":3,"cache_read":0.2,"tiers":[{"input":2,"output":6,"cache_read":0.4,"tier":{"type":"context","size":256000}}],"context_over_200k":{"input":2,"output":6,"cache_read":0.4}}},"auto":{"id":"auto","name":"Auto Route","family":"auto","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2024-01-01","last_updated":"2024-01-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":0,"output":0}},"gpt-4.1-nano":{"id":"gpt-4.1-nano","name":"GPT-4.1 nano","family":"gpt-nano","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-04","release_date":"2025-04-14","last_updated":"2025-04-14","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1047576,"output":32768},"cost":{"input":0.1,"output":0.4,"cache_read":0.025}},"qwen-plus":{"id":"qwen-plus","name":"Qwen Plus","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-04","release_date":"2024-01-25","last_updated":"2025-09-11","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":32768},"cost":{"input":0.4,"output":1.2,"reasoning":4}},"seed-1-6-flash-250715":{"id":"seed-1-6-flash-250715","name":"Seed 1.6 Flash (250715)","family":"seed","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-07-26","last_updated":"2025-07-26","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"output":8192},"cost":{"input":0.07,"output":0.3,"cache_read":0.015}}}},"togetherai":{"id":"togetherai","env":["TOGETHER_API_KEY"],"npm":"@ai-sdk/togetherai","name":"Together AI","doc":"https://docs.together.ai/docs/serverless-models","models":{"MiniMaxAI/MiniMax-M2.5":{"id":"MiniMaxAI/MiniMax-M2.5","name":"MiniMax-M2.5","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-02-12","last_updated":"2026-02-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0.3,"output":1.2,"cache_read":0.06}},"MiniMaxAI/MiniMax-M2.7":{"id":"MiniMaxAI/MiniMax-M2.7","name":"MiniMax-M2.7","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-03-18","last_updated":"2026-03-18","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":202752,"output":131072},"cost":{"input":0.3,"output":1.2,"cache_read":0.06}},"zai-org/GLM-5.1":{"id":"zai-org/GLM-5.1","name":"GLM-5.1","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-11","release_date":"2026-04-07","last_updated":"2026-04-07","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":202752,"output":131072},"cost":{"input":1.4,"output":4.4}},"essentialai/Rnj-1-Instruct":{"id":"essentialai/Rnj-1-Instruct","name":"Rnj-1 Instruct","family":"rnj","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2025-12-05","last_updated":"2025-12-05","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":32768,"output":32768},"cost":{"input":0.15,"output":0.15}},"moonshotai/Kimi-K2.6":{"id":"moonshotai/Kimi-K2.6","name":"Kimi K2.6","family":"kimi-k2.6","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-04-21","last_updated":"2026-04-21","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":131000},"cost":{"input":1.2,"output":4.5,"cache_read":0.2}},"moonshotai/Kimi-K2.5":{"id":"moonshotai/Kimi-K2.5","name":"Kimi K2.5","family":"kimi","attachment":false,"reasoning":true,"tool_call":true,"interleaved":true,"temperature":true,"knowledge":"2026-01","release_date":"2026-01-27","last_updated":"2026-01-27","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.5,"output":2.8}},"meta-llama/Llama-3.3-70B-Instruct-Turbo":{"id":"meta-llama/Llama-3.3-70B-Instruct-Turbo","name":"Llama 3.3 70B","family":"llama","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2023-12","release_date":"2024-12-06","last_updated":"2024-12-06","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":131072},"cost":{"input":0.88,"output":0.88}},"deepseek-ai/DeepSeek-V4-Pro":{"id":"deepseek-ai/DeepSeek-V4-Pro","name":"DeepSeek V4 Pro","family":"deepseek","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-04-24","last_updated":"2026-04-24","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":512000,"output":384000},"cost":{"input":2.1,"output":4.4,"cache_read":0.2}},"deepseek-ai/DeepSeek-V3-1":{"id":"deepseek-ai/DeepSeek-V3-1","name":"DeepSeek V3.1","family":"deepseek","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-08","release_date":"2025-08-21","last_updated":"2025-08-21","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":131072},"cost":{"input":0.6,"output":1.7}},"deepseek-ai/DeepSeek-R1":{"id":"deepseek-ai/DeepSeek-R1","name":"DeepSeek-R1","family":"deepseek-thinking","attachment":false,"reasoning":true,"tool_call":false,"temperature":true,"knowledge":"2024-07","release_date":"2025-01-20","last_updated":"2025-03-24","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":163839,"output":163839},"cost":{"input":3,"output":7}},"deepseek-ai/DeepSeek-V3":{"id":"deepseek-ai/DeepSeek-V3","name":"DeepSeek-V3","family":"deepseek","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-07","release_date":"2024-12-26","last_updated":"2025-05-29","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":131072},"cost":{"input":1.25,"output":1.25}},"nvidia/nemotron-3-ultra-550b-a55b":{"id":"nvidia/nemotron-3-ultra-550b-a55b","name":"Nemotron 3 Ultra 550B A55B","family":"nemotron","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-06-04","last_updated":"2026-06-04","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":512300,"output":512300},"cost":{"input":0.6,"output":3.6,"cache_read":0.2}},"Qwen/Qwen3.6-Plus":{"id":"Qwen/Qwen3.6-Plus","name":"Qwen3.6 Plus","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-04-30","last_updated":"2026-04-30","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1000000,"output":500000},"cost":{"input":0.5,"output":3}},"Qwen/Qwen3-Coder-Next-FP8":{"id":"Qwen/Qwen3-Coder-Next-FP8","name":"Qwen3 Coder Next FP8","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2026-02-03","release_date":"2026-02-03","last_updated":"2026-02-03","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.5,"output":1.2}},"Qwen/Qwen3.5-397B-A17B":{"id":"Qwen/Qwen3.5-397B-A17B","name":"Qwen3.5 397B A17B","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-02-16","last_updated":"2026-02-16","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":130000},"cost":{"input":0.6,"output":3.6}},"Qwen/Qwen3.7-Max":{"id":"Qwen/Qwen3.7-Max","name":"Qwen3.7 Max","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-05-21","last_updated":"2026-05-21","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":500000},"cost":{"input":2.5,"output":7.5}},"Qwen/Qwen3-235B-A22B-Instruct-2507-tput":{"id":"Qwen/Qwen3-235B-A22B-Instruct-2507-tput","name":"Qwen3 235B A22B Instruct 2507 FP8","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-07","release_date":"2025-07-25","last_updated":"2025-07-25","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.2,"output":0.6}},"Qwen/Qwen3-Coder-480B-A35B-Instruct-FP8":{"id":"Qwen/Qwen3-Coder-480B-A35B-Instruct-FP8","name":"Qwen3 Coder 480B A35B Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-07-23","last_updated":"2025-07-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":2,"output":2}},"google/gemma-4-31B-it":{"id":"google/gemma-4-31B-it","name":"Gemma 4 31B Instruct","family":"gemma","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-04-07","last_updated":"2026-04-07","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":131072},"cost":{"input":0.2,"output":0.5}},"openai/gpt-oss-120b":{"id":"openai/gpt-oss-120b","name":"GPT OSS 120B","family":"gpt-oss","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-08","release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":131072},"cost":{"input":0.15,"output":0.6}}}},"moark":{"id":"moark","env":["MOARK_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://moark.com/v1","name":"Moark","doc":"https://moark.com/docs/openapi/v1#tag/%E6%96%87%E6%9C%AC%E7%94%9F%E6%88%90","models":{"GLM-4.7":{"id":"GLM-4.7","name":"GLM-4.7","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2025-04","release_date":"2025-12-22","last_updated":"2025-12-22","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":3.5,"output":14}},"MiniMax-M2.1":{"id":"MiniMax-M2.1","name":"MiniMax-M2.1","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-12-23","last_updated":"2025-12-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":2.1,"output":8.4}}}},"github-models":{"id":"github-models","env":["GITHUB_TOKEN"],"npm":"@ai-sdk/openai-compatible","api":"https://models.github.ai/inference","name":"GitHub Models","doc":"https://docs.github.com/en/github-models","models":{"core42/jais-30b-chat":{"id":"core42/jais-30b-chat","name":"JAIS 30b Chat","family":"jais","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2023-03","release_date":"2023-08-30","last_updated":"2023-08-30","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":8192,"output":2048},"cost":{"input":0,"output":0}},"deepseek/deepseek-r1-0528":{"id":"deepseek/deepseek-r1-0528","name":"DeepSeek-R1-0528","family":"deepseek-thinking","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-06","release_date":"2025-05-28","last_updated":"2025-05-28","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":65536,"output":8192},"cost":{"input":0,"output":0}},"deepseek/deepseek-v3-0324":{"id":"deepseek/deepseek-v3-0324","name":"DeepSeek-V3-0324","family":"deepseek","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-06","release_date":"2025-03-24","last_updated":"2025-03-24","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":8192},"cost":{"input":0,"output":0}},"deepseek/deepseek-r1":{"id":"deepseek/deepseek-r1","name":"DeepSeek-R1","family":"deepseek-thinking","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-06","release_date":"2025-01-20","last_updated":"2025-01-20","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":65536,"output":8192},"cost":{"input":0,"output":0}},"ai21-labs/ai21-jamba-1.5-large":{"id":"ai21-labs/ai21-jamba-1.5-large","name":"AI21 Jamba 1.5 Large","family":"jamba","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-03","release_date":"2024-08-29","last_updated":"2024-08-29","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":4096},"cost":{"input":0,"output":0}},"ai21-labs/ai21-jamba-1.5-mini":{"id":"ai21-labs/ai21-jamba-1.5-mini","name":"AI21 Jamba 1.5 Mini","family":"jamba","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-03","release_date":"2024-08-29","last_updated":"2024-08-29","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":4096},"cost":{"input":0,"output":0}},"xai/grok-3":{"id":"xai/grok-3","name":"Grok 3","family":"grok","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2024-12-09","last_updated":"2024-12-09","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":8192},"cost":{"input":0,"output":0}},"xai/grok-3-mini":{"id":"xai/grok-3-mini","name":"Grok 3 Mini","family":"grok","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2024-12-09","last_updated":"2024-12-09","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":8192},"cost":{"input":0,"output":0}},"cohere/cohere-command-r-plus-08-2024":{"id":"cohere/cohere-command-r-plus-08-2024","name":"Cohere Command R+ 08-2024","family":"command-r","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-03","release_date":"2024-08-01","last_updated":"2024-08-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":4096},"cost":{"input":0,"output":0}},"cohere/cohere-command-r-08-2024":{"id":"cohere/cohere-command-r-08-2024","name":"Cohere Command R 08-2024","family":"command-r","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-03","release_date":"2024-08-01","last_updated":"2024-08-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":4096},"cost":{"input":0,"output":0}},"cohere/cohere-command-r":{"id":"cohere/cohere-command-r","name":"Cohere Command R","family":"command-r","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-03","release_date":"2024-03-11","last_updated":"2024-08-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":4096},"cost":{"input":0,"output":0}},"cohere/cohere-command-a":{"id":"cohere/cohere-command-a","name":"Cohere Command A","family":"command-a","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-03","release_date":"2024-11-01","last_updated":"2024-11-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":4096},"cost":{"input":0,"output":0}},"cohere/cohere-command-r-plus":{"id":"cohere/cohere-command-r-plus","name":"Cohere Command R+","family":"command-r","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-03","release_date":"2024-04-04","last_updated":"2024-08-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":4096},"cost":{"input":0,"output":0}},"mistral-ai/mistral-large-2411":{"id":"mistral-ai/mistral-large-2411","name":"Mistral Large 24.11","family":"mistral-large","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-09","release_date":"2024-11-01","last_updated":"2024-11-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":32768},"cost":{"input":0,"output":0}},"mistral-ai/ministral-3b":{"id":"mistral-ai/ministral-3b","name":"Ministral 3B","family":"ministral","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-03","release_date":"2024-10-22","last_updated":"2024-10-22","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":8192},"cost":{"input":0,"output":0}},"mistral-ai/mistral-small-2503":{"id":"mistral-ai/mistral-small-2503","name":"Mistral Small 3.1","family":"mistral-small","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-09","release_date":"2025-03-01","last_updated":"2025-03-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":32768},"cost":{"input":0,"output":0}},"mistral-ai/mistral-nemo":{"id":"mistral-ai/mistral-nemo","name":"Mistral Nemo","family":"mistral-nemo","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-03","release_date":"2024-07-18","last_updated":"2024-07-18","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":8192},"cost":{"input":0,"output":0}},"mistral-ai/mistral-medium-2505":{"id":"mistral-ai/mistral-medium-2505","name":"Mistral Medium 3 (25.05)","family":"mistral-medium","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-09","release_date":"2025-05-01","last_updated":"2025-05-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":32768},"cost":{"input":0,"output":0}},"mistral-ai/codestral-2501":{"id":"mistral-ai/codestral-2501","name":"Codestral 25.01","family":"codestral","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-03","release_date":"2025-01-01","last_updated":"2025-01-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":32000,"output":8192},"cost":{"input":0,"output":0}},"microsoft/phi-3-medium-128k-instruct":{"id":"microsoft/phi-3-medium-128k-instruct","name":"Phi-3-medium instruct (128k)","family":"phi","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2023-10","release_date":"2024-04-23","last_updated":"2024-04-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4096},"cost":{"input":0,"output":0}},"microsoft/phi-3.5-vision-instruct":{"id":"microsoft/phi-3.5-vision-instruct","name":"Phi-3.5-vision instruct (128k)","family":"phi","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2023-10","release_date":"2024-08-20","last_updated":"2024-08-20","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4096},"cost":{"input":0,"output":0}},"microsoft/phi-4-reasoning":{"id":"microsoft/phi-4-reasoning","name":"Phi-4-Reasoning","family":"phi","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2023-10","release_date":"2024-12-11","last_updated":"2024-12-11","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4096},"cost":{"input":0,"output":0}},"microsoft/phi-4":{"id":"microsoft/phi-4","name":"Phi-4","family":"phi","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2023-10","release_date":"2024-12-11","last_updated":"2024-12-11","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":16000,"output":4096},"cost":{"input":0,"output":0}},"microsoft/phi-3-mini-128k-instruct":{"id":"microsoft/phi-3-mini-128k-instruct","name":"Phi-3-mini instruct (128k)","family":"phi","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2023-10","release_date":"2024-04-23","last_updated":"2024-04-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4096},"cost":{"input":0,"output":0}},"microsoft/phi-3-small-128k-instruct":{"id":"microsoft/phi-3-small-128k-instruct","name":"Phi-3-small instruct (128k)","family":"phi","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2023-10","release_date":"2024-04-23","last_updated":"2024-04-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4096},"cost":{"input":0,"output":0}},"microsoft/mai-ds-r1":{"id":"microsoft/mai-ds-r1","name":"MAI-DS-R1","family":"mai","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-06","release_date":"2025-01-20","last_updated":"2025-01-20","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":65536,"output":8192},"cost":{"input":0,"output":0}},"microsoft/phi-4-multimodal-instruct":{"id":"microsoft/phi-4-multimodal-instruct","name":"Phi-4-multimodal-instruct","family":"phi","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2023-10","release_date":"2024-12-11","last_updated":"2024-12-11","modalities":{"input":["text","image","audio"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4096},"cost":{"input":0,"output":0}},"microsoft/phi-3-small-8k-instruct":{"id":"microsoft/phi-3-small-8k-instruct","name":"Phi-3-small instruct (8k)","family":"phi","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2023-10","release_date":"2024-04-23","last_updated":"2024-04-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":8192,"output":2048},"cost":{"input":0,"output":0}},"microsoft/phi-4-mini-instruct":{"id":"microsoft/phi-4-mini-instruct","name":"Phi-4-mini-instruct","family":"phi","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2023-10","release_date":"2024-12-11","last_updated":"2024-12-11","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4096},"cost":{"input":0,"output":0}},"microsoft/phi-3.5-mini-instruct":{"id":"microsoft/phi-3.5-mini-instruct","name":"Phi-3.5-mini instruct (128k)","family":"phi","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2023-10","release_date":"2024-08-20","last_updated":"2024-08-20","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4096},"cost":{"input":0,"output":0}},"microsoft/phi-3-mini-4k-instruct":{"id":"microsoft/phi-3-mini-4k-instruct","name":"Phi-3-mini instruct (4k)","family":"phi","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2023-10","release_date":"2024-04-23","last_updated":"2024-04-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":4096,"output":1024},"cost":{"input":0,"output":0}},"microsoft/phi-3-medium-4k-instruct":{"id":"microsoft/phi-3-medium-4k-instruct","name":"Phi-3-medium instruct (4k)","family":"phi","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2023-10","release_date":"2024-04-23","last_updated":"2024-04-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":4096,"output":1024},"cost":{"input":0,"output":0}},"microsoft/phi-3.5-moe-instruct":{"id":"microsoft/phi-3.5-moe-instruct","name":"Phi-3.5-MoE instruct (128k)","family":"phi","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2023-10","release_date":"2024-08-20","last_updated":"2024-08-20","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4096},"cost":{"input":0,"output":0}},"microsoft/phi-4-mini-reasoning":{"id":"microsoft/phi-4-mini-reasoning","name":"Phi-4-mini-reasoning","family":"phi","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2023-10","release_date":"2024-12-11","last_updated":"2024-12-11","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4096},"cost":{"input":0,"output":0}},"meta/meta-llama-3.1-405b-instruct":{"id":"meta/meta-llama-3.1-405b-instruct","name":"Meta-Llama-3.1-405B-Instruct","family":"llama","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2023-12","release_date":"2024-07-23","last_updated":"2024-07-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":32768},"cost":{"input":0,"output":0}},"meta/meta-llama-3.1-8b-instruct":{"id":"meta/meta-llama-3.1-8b-instruct","name":"Meta-Llama-3.1-8B-Instruct","family":"llama","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2023-12","release_date":"2024-07-23","last_updated":"2024-07-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":32768},"cost":{"input":0,"output":0}},"meta/llama-4-scout-17b-16e-instruct":{"id":"meta/llama-4-scout-17b-16e-instruct","name":"Llama 4 Scout 17B 16E Instruct","family":"llama","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-12","release_date":"2025-01-31","last_updated":"2025-01-31","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":8192},"cost":{"input":0,"output":0}},"meta/llama-4-maverick-17b-128e-instruct-fp8":{"id":"meta/llama-4-maverick-17b-128e-instruct-fp8","name":"Llama 4 Maverick 17B 128E Instruct FP8","family":"llama","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-12","release_date":"2025-01-31","last_updated":"2025-01-31","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":8192},"cost":{"input":0,"output":0}},"meta/meta-llama-3-8b-instruct":{"id":"meta/meta-llama-3-8b-instruct","name":"Meta-Llama-3-8B-Instruct","family":"llama","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2023-12","release_date":"2024-04-18","last_updated":"2024-04-18","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":8192,"output":2048},"cost":{"input":0,"output":0}},"meta/meta-llama-3.1-70b-instruct":{"id":"meta/meta-llama-3.1-70b-instruct","name":"Meta-Llama-3.1-70B-Instruct","family":"llama","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2023-12","release_date":"2024-07-23","last_updated":"2024-07-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":32768},"cost":{"input":0,"output":0}},"meta/llama-3.2-11b-vision-instruct":{"id":"meta/llama-3.2-11b-vision-instruct","name":"Llama-3.2-11B-Vision-Instruct","family":"llama","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2023-12","release_date":"2024-09-25","last_updated":"2024-09-25","modalities":{"input":["text","image","audio"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":8192},"cost":{"input":0,"output":0}},"meta/meta-llama-3-70b-instruct":{"id":"meta/meta-llama-3-70b-instruct","name":"Meta-Llama-3-70B-Instruct","family":"llama","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2023-12","release_date":"2024-04-18","last_updated":"2024-04-18","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":8192,"output":2048},"cost":{"input":0,"output":0}},"meta/llama-3.3-70b-instruct":{"id":"meta/llama-3.3-70b-instruct","name":"Llama-3.3-70B-Instruct","family":"llama","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2023-12","release_date":"2024-12-06","last_updated":"2024-12-06","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":32768},"cost":{"input":0,"output":0}},"meta/llama-3.2-90b-vision-instruct":{"id":"meta/llama-3.2-90b-vision-instruct","name":"Llama-3.2-90B-Vision-Instruct","family":"llama","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2023-12","release_date":"2024-09-25","last_updated":"2024-09-25","modalities":{"input":["text","image","audio"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":8192},"cost":{"input":0,"output":0}},"openai/gpt-4o":{"id":"openai/gpt-4o","name":"GPT-4o","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2023-10","release_date":"2024-05-13","last_updated":"2024-05-13","modalities":{"input":["text","image","audio"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":0,"output":0}},"openai/o3":{"id":"openai/o3","name":"OpenAI o3","family":"o","attachment":false,"reasoning":true,"tool_call":false,"temperature":false,"knowledge":"2024-04","release_date":"2025-01-31","last_updated":"2025-01-31","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":0,"output":0}},"openai/gpt-4.1-mini":{"id":"openai/gpt-4.1-mini","name":"GPT-4.1-mini","family":"gpt-mini","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-04","release_date":"2025-04-14","last_updated":"2025-04-14","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":0,"output":0}},"openai/o4-mini":{"id":"openai/o4-mini","name":"OpenAI o4-mini","family":"o-mini","attachment":false,"reasoning":true,"tool_call":false,"temperature":false,"knowledge":"2024-04","release_date":"2025-01-31","last_updated":"2025-01-31","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":0,"output":0}},"openai/o3-mini":{"id":"openai/o3-mini","name":"OpenAI o3-mini","family":"o-mini","attachment":false,"reasoning":true,"tool_call":false,"temperature":false,"knowledge":"2024-04","release_date":"2025-01-31","last_updated":"2025-01-31","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":0,"output":0}},"openai/gpt-4o-mini":{"id":"openai/gpt-4o-mini","name":"GPT-4o mini","family":"gpt-mini","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2023-10","release_date":"2024-07-18","last_updated":"2024-07-18","modalities":{"input":["text","image","audio"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":0,"output":0}},"openai/gpt-4.1":{"id":"openai/gpt-4.1","name":"GPT-4.1","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-04","release_date":"2025-04-14","last_updated":"2025-04-14","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":0,"output":0}},"openai/o1-mini":{"id":"openai/o1-mini","name":"OpenAI o1-mini","family":"o-mini","attachment":false,"reasoning":true,"tool_call":false,"temperature":false,"knowledge":"2023-10","release_date":"2024-09-12","last_updated":"2024-12-17","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":65536},"cost":{"input":0,"output":0}},"openai/o1-preview":{"id":"openai/o1-preview","name":"OpenAI o1-preview","family":"o","attachment":false,"reasoning":true,"tool_call":false,"temperature":false,"knowledge":"2023-10","release_date":"2024-09-12","last_updated":"2024-09-12","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":32768},"cost":{"input":0,"output":0}},"openai/o1":{"id":"openai/o1","name":"OpenAI o1","family":"o","attachment":false,"reasoning":true,"tool_call":false,"temperature":false,"knowledge":"2023-10","release_date":"2024-09-12","last_updated":"2024-12-17","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":0,"output":0}},"openai/gpt-4.1-nano":{"id":"openai/gpt-4.1-nano","name":"GPT-4.1-nano","family":"gpt-nano","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-04","release_date":"2025-04-14","last_updated":"2025-04-14","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":0,"output":0}}}},"xiaomi-token-plan-cn":{"id":"xiaomi-token-plan-cn","env":["XIAOMI_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://token-plan-cn.xiaomimimo.com/v1","name":"Xiaomi Token Plan (China)","doc":"https://platform.xiaomimimo.com/#/docs","models":{"mimo-v2-tts":{"id":"mimo-v2-tts","name":"MiMo-V2-TTS","family":"mimo","attachment":false,"reasoning":false,"tool_call":false,"release_date":"2026-03-18","last_updated":"2026-03-18","modalities":{"input":["text"],"output":["audio"]},"open_weights":true,"limit":{"context":8192,"output":8192},"cost":{"input":0,"output":0}},"mimo-v2-omni":{"id":"mimo-v2-omni","name":"MiMo-V2-Omni","family":"mimo","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2024-12","release_date":"2026-03-18","last_updated":"2026-03-18","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"output":131072},"cost":{"input":0,"output":0,"cache_read":0}},"mimo-v2.5-tts-voicedesign":{"id":"mimo-v2.5-tts-voicedesign","name":"MiMo-V2.5-TTS-VoiceDesign","family":"mimo","attachment":false,"reasoning":false,"tool_call":false,"release_date":"2026-04-22","last_updated":"2026-04-22","modalities":{"input":["text"],"output":["audio"]},"open_weights":true,"limit":{"context":8192,"output":8192},"cost":{"input":0,"output":0}},"mimo-v2.5-tts-voiceclone":{"id":"mimo-v2.5-tts-voiceclone","name":"MiMo-V2.5-TTS-VoiceClone","family":"mimo","attachment":false,"reasoning":false,"tool_call":false,"release_date":"2026-04-22","last_updated":"2026-04-22","modalities":{"input":["text"],"output":["audio"]},"open_weights":true,"limit":{"context":8192,"output":8192},"cost":{"input":0,"output":0}},"mimo-v2-pro":{"id":"mimo-v2-pro","name":"MiMo-V2-Pro","family":"mimo","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2024-12","release_date":"2026-03-18","last_updated":"2026-03-18","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":131072},"cost":{"input":0,"output":0,"cache_read":0}},"mimo-v2.5":{"id":"mimo-v2.5","name":"MiMo-V2.5","family":"mimo","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2024-12","release_date":"2026-04-22","last_updated":"2026-04-22","modalities":{"input":["text","image","audio","video"],"output":["text"]},"open_weights":true,"limit":{"context":1048576,"output":131072},"cost":{"input":0,"output":0,"cache_read":0}},"mimo-v2.5-tts":{"id":"mimo-v2.5-tts","name":"MiMo-V2.5-TTS","family":"mimo","attachment":false,"reasoning":false,"tool_call":false,"release_date":"2026-04-22","last_updated":"2026-04-22","modalities":{"input":["text"],"output":["audio"]},"open_weights":true,"limit":{"context":8192,"output":8192},"cost":{"input":0,"output":0}},"mimo-v2.5-pro":{"id":"mimo-v2.5-pro","name":"MiMo-V2.5-Pro","family":"mimo","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2024-12","release_date":"2026-04-22","last_updated":"2026-04-22","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1048576,"output":131072},"cost":{"input":0,"output":0,"cache_read":0}}}},"lmstudio":{"id":"lmstudio","env":["LMSTUDIO_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"http://127.0.0.1:1234/v1","name":"LMStudio","doc":"https://lmstudio.ai/models","models":{"qwen/qwen3-coder-30b":{"id":"qwen/qwen3-coder-30b","name":"Qwen3 Coder 30B","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-07-23","last_updated":"2025-07-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":65536},"cost":{"input":0,"output":0}},"qwen/qwen3-30b-a3b-2507":{"id":"qwen/qwen3-30b-a3b-2507","name":"Qwen3 30B A3B 2507","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-07-30","last_updated":"2025-07-30","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":16384},"cost":{"input":0,"output":0}},"openai/gpt-oss-20b":{"id":"openai/gpt-oss-20b","name":"GPT OSS 20B","family":"gpt-oss","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":32768},"cost":{"input":0,"output":0}}}},"zenmux":{"id":"zenmux","env":["ZENMUX_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://zenmux.ai/api/v1","name":"ZenMux","doc":"https://docs.zenmux.ai","models":{"z-ai/glm-4.7-flashx":{"id":"z-ai/glm-4.7-flashx","name":"GLM 4.7 FlashX","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2025-01-01","release_date":"2026-01-19","last_updated":"2026-01-19","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":0.07,"output":0.42,"cache_read":0.01}},"z-ai/glm-4.6v-flash":{"id":"z-ai/glm-4.6v-flash","name":"GLM 4.6V FlashX","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01-01","release_date":"2025-12-08","last_updated":"2025-12-08","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":0.02,"output":0.21,"cache_read":0.0043}},"z-ai/glm-4.6":{"id":"z-ai/glm-4.6","name":"GLM 4.6","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01-01","release_date":"2025-09-30","last_updated":"2025-09-30","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":0.35,"output":1.54,"cache_read":0.07}},"z-ai/glm-4.7-flash-free":{"id":"z-ai/glm-4.7-flash-free","name":"GLM 4.7 Flash (Free)","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2025-01-01","release_date":"2026-01-19","last_updated":"2026-01-19","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":0,"output":0}},"z-ai/glm-4.7":{"id":"z-ai/glm-4.7","name":"GLM 4.7","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2025-01-01","release_date":"2025-12-23","last_updated":"2025-12-23","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":0.28,"output":1.14,"cache_read":0.06}},"z-ai/glm-4.6v":{"id":"z-ai/glm-4.6v","name":"GLM 4.6V","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01-01","release_date":"2025-12-08","last_updated":"2025-12-08","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":0.14,"output":0.42,"cache_read":0.03}},"z-ai/glm-5v-turbo":{"id":"z-ai/glm-5v-turbo","name":"GLM 5V Turbo","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"release_date":"2026-04-01","last_updated":"2026-04-01","modalities":{"input":["text","image","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":128000},"cost":{"input":0.726,"output":3.1946,"cache_read":0.1743}},"z-ai/glm-5":{"id":"z-ai/glm-5","name":"GLM 5","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2025-01-01","release_date":"2026-02-12","last_updated":"2026-02-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":200000,"output":128000},"cost":{"input":0.58,"output":2.6,"cache_read":0.14}},"z-ai/glm-5-turbo":{"id":"z-ai/glm-5-turbo","name":"GLM 5 Turbo","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01-01","release_date":"2026-03-20","last_updated":"2026-03-20","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":128000},"cost":{"input":0.88,"output":3.48}},"z-ai/glm-4.5":{"id":"z-ai/glm-4.5","name":"GLM 4.5","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01-01","release_date":"2025-07-25","last_updated":"2025-07-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":64000},"cost":{"input":0.35,"output":1.54,"cache_read":0.07}},"z-ai/glm-4.5-air":{"id":"z-ai/glm-4.5-air","name":"GLM 4.5 Air","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01-01","release_date":"2025-07-25","last_updated":"2025-07-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":64000},"cost":{"input":0.11,"output":0.56,"cache_read":0.02}},"z-ai/glm-4.6v-flash-free":{"id":"z-ai/glm-4.6v-flash-free","name":"GLM 4.6V Flash (Free)","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01-01","release_date":"2025-12-08","last_updated":"2025-12-08","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":0,"output":0}},"z-ai/glm-5.1":{"id":"z-ai/glm-5.1","name":"GLM-5.1","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-04-03","last_updated":"2026-04-03","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":131072},"cost":{"input":0.8781,"output":3.5126,"cache_read":0.1903}},"sapiens-ai/agnes-1.5-pro":{"id":"sapiens-ai/agnes-1.5-pro","name":"Agnes 1.5 Pro","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-03-21","last_updated":"2026-03-21","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":256000},"cost":{"input":0.16,"output":0.8}},"sapiens-ai/agnes-1.5-lite":{"id":"sapiens-ai/agnes-1.5-lite","name":"Agnes 1.5 Lite","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2026-03-26","last_updated":"2026-03-26","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":256000},"cost":{"input":0.12,"output":0.6}},"deepseek/deepseek-v3.2":{"id":"deepseek/deepseek-v3.2","name":"DeepSeek V3.2","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01-01","release_date":"2025-12-05","last_updated":"2025-12-05","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":64000},"cost":{"input":0.28,"output":0.43}},"deepseek/deepseek-chat":{"id":"deepseek/deepseek-chat","name":"DeepSeek-V3.2 (Non-thinking Mode)","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-01-01","release_date":"2025-12-01","last_updated":"2025-12-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":64000},"cost":{"input":0.28,"output":0.42,"cache_read":0.03}},"deepseek/deepseek-v4-flash":{"id":"deepseek/deepseek-v4-flash","name":"DeepSeek V4 Flash","family":"deepseek-flash","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-05","release_date":"2026-04-24","last_updated":"2026-04-24","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1000000,"output":384000},"cost":{"input":0.14,"output":0.28,"cache_read":0.0028}},"deepseek/deepseek-v3.2-exp":{"id":"deepseek/deepseek-v3.2-exp","name":"DeepSeek-V3.2-Exp","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01-01","release_date":"2025-09-29","last_updated":"2025-09-29","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":163000,"output":64000},"cost":{"input":0.22,"output":0.33}},"deepseek/deepseek-v4-pro":{"id":"deepseek/deepseek-v4-pro","name":"DeepSeek V4 Pro","family":"deepseek-thinking","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-05","release_date":"2026-04-24","last_updated":"2026-04-24","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1000000,"output":384000},"cost":{"input":0.435,"output":0.87,"cache_read":0.003625}},"anthropic/claude-sonnet-4":{"id":"anthropic/claude-sonnet-4","name":"Claude Sonnet 4","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01-01","release_date":"2025-05-22","last_updated":"2025-05-22","modalities":{"input":["image","text","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":64000},"provider":{"npm":"@ai-sdk/anthropic","api":"https://zenmux.ai/api/anthropic/v1"},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75}},"anthropic/claude-sonnet-4.6":{"id":"anthropic/claude-sonnet-4.6","name":"Claude Sonnet 4.6","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-08-31","release_date":"2026-02-18","last_updated":"2026-02-18","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":64000},"provider":{"npm":"@ai-sdk/anthropic","api":"https://zenmux.ai/api/anthropic/v1"},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75}},"anthropic/claude-3.7-sonnet":{"id":"anthropic/claude-3.7-sonnet","name":"Claude 3.7 Sonnet","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01-01","release_date":"2025-02-24","last_updated":"2025-02-24","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"provider":{"npm":"@ai-sdk/anthropic","api":"https://zenmux.ai/api/anthropic/v1"},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75}},"anthropic/claude-opus-4.5":{"id":"anthropic/claude-opus-4.5","name":"Claude Opus 4.5","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01-01","release_date":"2025-11-24","last_updated":"2025-11-24","modalities":{"input":["pdf","image","text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"provider":{"npm":"@ai-sdk/anthropic","api":"https://zenmux.ai/api/anthropic/v1"},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25}},"anthropic/claude-opus-4.7":{"id":"anthropic/claude-opus-4.7","name":"Claude Opus 4.7","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2026-01-31","release_date":"2026-04-16","last_updated":"2026-04-16","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"provider":{"npm":"@ai-sdk/anthropic","api":"https://zenmux.ai/api/anthropic/v1"},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25}},"anthropic/claude-3.5-haiku":{"id":"anthropic/claude-3.5-haiku","name":"Claude 3.5 Haiku","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-01-01","release_date":"2024-11-04","last_updated":"2024-11-04","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"provider":{"npm":"@ai-sdk/anthropic","api":"https://zenmux.ai/api/anthropic/v1"},"cost":{"input":0.8,"output":4,"cache_read":0.08,"cache_write":1}},"anthropic/claude-sonnet-4.5":{"id":"anthropic/claude-sonnet-4.5","name":"Claude Sonnet 4.5","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01-01","release_date":"2025-09-29","last_updated":"2025-09-29","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":64000},"provider":{"npm":"@ai-sdk/anthropic","api":"https://zenmux.ai/api/anthropic/v1"},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75}},"anthropic/claude-opus-4.6":{"id":"anthropic/claude-opus-4.6","name":"Claude Opus 4.6","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-05-31","release_date":"2026-02-06","last_updated":"2026-02-06","modalities":{"input":["image","text"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"provider":{"npm":"@ai-sdk/anthropic","api":"https://zenmux.ai/api/anthropic/v1"},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25}},"anthropic/claude-haiku-4.5":{"id":"anthropic/claude-haiku-4.5","name":"Claude Haiku 4.5","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-01-01","release_date":"2025-10-15","last_updated":"2025-10-15","modalities":{"input":["image","text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"provider":{"npm":"@ai-sdk/anthropic","api":"https://zenmux.ai/api/anthropic/v1"},"cost":{"input":1,"output":5,"cache_read":0.1,"cache_write":1.25}},"anthropic/claude-opus-4.1":{"id":"anthropic/claude-opus-4.1","name":"Claude Opus 4.1","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01-01","release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["image","text","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"provider":{"npm":"@ai-sdk/anthropic","api":"https://zenmux.ai/api/anthropic/v1"},"cost":{"input":15,"output":75,"cache_read":1.5,"cache_write":18.75}},"anthropic/claude-opus-4":{"id":"anthropic/claude-opus-4","name":"Claude Opus 4","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01-01","release_date":"2025-05-22","last_updated":"2025-05-22","modalities":{"input":["image","text","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":32000},"provider":{"npm":"@ai-sdk/anthropic","api":"https://zenmux.ai/api/anthropic/v1"},"cost":{"input":15,"output":75,"cache_read":1.5,"cache_write":18.75}},"xiaomi/mimo-v2-omni":{"id":"xiaomi/mimo-v2-omni","name":"MiMo V2 Omni","family":"mimo","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-12","release_date":"2026-03-18","last_updated":"2026-03-18","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":265000,"output":265000},"cost":{"input":0.4,"output":2,"cache_read":0.08}},"xiaomi/mimo-v2-pro":{"id":"xiaomi/mimo-v2-pro","name":"MiMo V2 Pro","family":"mimo","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-12","release_date":"2026-03-18","last_updated":"2026-03-18","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":256000},"cost":{"input":1,"output":3,"cache_read":0.2,"tiers":[{"input":2,"output":6,"cache_read":0.4,"tier":{"type":"context","size":256000}}],"context_over_200k":{"input":2,"output":6,"cache_read":0.4}}},"xiaomi/mimo-v2.5":{"id":"xiaomi/mimo-v2.5","name":"MiMo-V2.5","family":"mimo","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2024-12","release_date":"2026-04-22","last_updated":"2026-04-22","modalities":{"input":["text","image","audio","video"],"output":["text"]},"open_weights":true,"limit":{"context":1048576,"output":131072},"cost":{"input":0.4,"output":2,"cache_read":0.08,"tiers":[{"input":0.8,"output":4,"cache_read":0.16,"tier":{"type":"context","size":256000}}],"context_over_200k":{"input":0.8,"output":4,"cache_read":0.16}}},"xiaomi/mimo-v2-flash":{"id":"xiaomi/mimo-v2-flash","name":"MiMo-V2-Flash","family":"mimo","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-12-01","release_date":"2025-12-16","last_updated":"2026-02-04","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":65536},"cost":{"input":0.1,"output":0.3,"cache_read":0.01}},"xiaomi/mimo-v2.5-pro":{"id":"xiaomi/mimo-v2.5-pro","name":"MiMo-V2.5-Pro","family":"mimo","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2024-12","release_date":"2026-04-22","last_updated":"2026-04-22","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1048576,"output":131072},"cost":{"input":1,"output":3,"cache_read":0.2,"tiers":[{"input":2,"output":6,"cache_read":0.4,"tier":{"type":"context","size":256000}}],"context_over_200k":{"input":2,"output":6,"cache_read":0.4}}},"qwen/qwen3.5-plus":{"id":"qwen/qwen3.5-plus","name":"Qwen3.5 Plus","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01-01","release_date":"2026-03-20","last_updated":"2026-03-20","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":64000},"cost":{"input":0.8,"output":4.8}},"qwen/qwen3-max":{"id":"qwen/qwen3-max","name":"Qwen3-Max-Thinking","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01-01","release_date":"2026-01-23","last_updated":"2026-01-23","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":64000},"cost":{"input":1.2,"output":6}},"qwen/qwen3-coder-plus":{"id":"qwen/qwen3-coder-plus","name":"Qwen3-Coder-Plus","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-01-01","release_date":"2025-07-23","last_updated":"2025-07-23","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":64000},"cost":{"input":1,"output":5,"cache_read":0.1,"cache_write":1.25}},"qwen/qwen3.5-flash":{"id":"qwen/qwen3.5-flash","name":"Qwen3.5 Flash","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-01-01","release_date":"2026-03-20","last_updated":"2026-03-20","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1020000,"output":1020000},"cost":{"input":0.1,"output":0.4}},"qwen/qwen3.6-plus":{"id":"qwen/qwen3.6-plus","name":"Qwen3.6-Plus","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-03-30","last_updated":"2026-03-30","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":64000},"cost":{"input":0.5,"output":3,"cache_read":0.05,"cache_write":0.625,"tiers":[{"input":2,"output":6,"cache_read":0.2,"cache_write":2.5,"tier":{"type":"context","size":256000}}],"context_over_200k":{"input":2,"output":6,"cache_read":0.2,"cache_write":2.5}}},"kuaishou/kat-coder-pro-v2":{"id":"kuaishou/kat-coder-pro-v2","name":"KAT-Coder-Pro-V2","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2026-03-30","last_updated":"2026-03-30","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":80000},"cost":{"input":0.3,"output":1.2,"cache_read":0.06}},"moonshotai/kimi-k2-thinking-turbo":{"id":"moonshotai/kimi-k2-thinking-turbo","name":"Kimi K2 Thinking Turbo","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01-01","release_date":"2025-11-06","last_updated":"2025-11-06","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262000,"output":64000},"cost":{"input":1.15,"output":8,"cache_read":0.15}},"moonshotai/kimi-k2-thinking":{"id":"moonshotai/kimi-k2-thinking","name":"Kimi K2 Thinking","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01-01","release_date":"2025-11-06","last_updated":"2025-11-06","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262000,"output":64000},"cost":{"input":0.6,"output":2.5,"cache_read":0.15}},"moonshotai/kimi-k2.6":{"id":"moonshotai/kimi-k2.6","name":"Kimi K2.6","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":false,"knowledge":"2025-01-01","release_date":"2026-04-20","last_updated":"2026-04-20","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":262140,"output":262140},"cost":{"input":0.95,"output":4,"cache_read":0.16}},"moonshotai/kimi-k2-0905":{"id":"moonshotai/kimi-k2-0905","name":"Kimi K2 0905","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-01-01","release_date":"2025-09-04","last_updated":"2025-09-04","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262000,"output":64000},"cost":{"input":0.6,"output":2.5,"cache_read":0.15}},"moonshotai/kimi-k2.5":{"id":"moonshotai/kimi-k2.5","name":"Kimi K2.5","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":false,"knowledge":"2025-01-01","release_date":"2026-01-27","last_updated":"2026-01-27","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":262000,"output":64000},"cost":{"input":0.58,"output":3.02,"cache_read":0.1}},"baidu/ernie-5.0-thinking-preview":{"id":"baidu/ernie-5.0-thinking-preview","name":"ERNIE 5.0","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01-01","release_date":"2026-01-22","last_updated":"2026-01-22","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":64000},"cost":{"input":0.84,"output":3.37}},"x-ai/grok-4.1-fast-non-reasoning":{"id":"x-ai/grok-4.1-fast-non-reasoning","name":"Grok 4.1 Fast Non Reasoning","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-01-01","release_date":"2025-11-20","last_updated":"2025-11-20","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":2000000,"output":64000},"cost":{"input":0.2,"output":0.5,"cache_read":0.05}},"x-ai/grok-4.2-fast-non-reasoning":{"id":"x-ai/grok-4.2-fast-non-reasoning","name":"Grok 4.2 Fast Non Reasoning","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-08-31","release_date":"2026-03-20","last_updated":"2026-03-20","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":2000000,"output":30000},"cost":{"input":3,"output":9}},"x-ai/grok-4.2-fast":{"id":"x-ai/grok-4.2-fast","name":"Grok 4.2 Fast","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-08-31","release_date":"2026-03-20","last_updated":"2026-03-20","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":2000000,"output":30000},"cost":{"input":3,"output":9}},"x-ai/grok-4.1-fast":{"id":"x-ai/grok-4.1-fast","name":"Grok 4.1 Fast","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01-01","release_date":"2025-11-20","last_updated":"2025-11-20","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":2000000,"output":64000},"cost":{"input":0.2,"output":0.5,"cache_read":0.05}},"x-ai/grok-4":{"id":"x-ai/grok-4","name":"Grok 4","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01-01","release_date":"2025-07-09","last_updated":"2025-07-09","modalities":{"input":["image","text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":64000},"cost":{"input":3,"output":15,"cache_read":0.75}},"x-ai/grok-code-fast-1":{"id":"x-ai/grok-code-fast-1","name":"Grok Code Fast 1","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01-01","release_date":"2025-08-26","last_updated":"2025-08-26","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":64000},"cost":{"input":0.2,"output":1.5,"cache_read":0.02}},"x-ai/grok-4-fast":{"id":"x-ai/grok-4-fast","name":"Grok 4 Fast","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01-01","release_date":"2025-09-19","last_updated":"2025-09-19","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":2000000,"output":64000},"cost":{"input":0.2,"output":0.5,"cache_read":0.05}},"tencent/hy3-preview":{"id":"tencent/hy3-preview","name":"Hy3 preview","family":"Hy","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-04-20","last_updated":"2026-04-20","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"output":64000},"cost":{"input":0.172,"output":0.572,"cache_read":0.058,"cache_write":0}},"stepfun/step-3.5-flash":{"id":"stepfun/step-3.5-flash","name":"Step 3.5 Flash","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-01-01","release_date":"2026-02-02","last_updated":"2026-02-02","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":64000},"cost":{"input":0.1,"output":0.3}},"stepfun/step-3":{"id":"stepfun/step-3","name":"Step-3","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01-01","release_date":"2025-07-31","last_updated":"2025-07-31","modalities":{"input":["image","text"],"output":["text"]},"open_weights":false,"limit":{"context":65536,"output":64000},"cost":{"input":0.21,"output":0.57}},"stepfun/step-3.5-flash-free":{"id":"stepfun/step-3.5-flash-free","name":"Step 3.5 Flash (Free)","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01-01","release_date":"2026-02-02","last_updated":"2026-02-02","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":64000},"cost":{"input":0,"output":0}},"inclusionai/ring-1t":{"id":"inclusionai/ring-1t","name":"Ring-1T","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01-01","release_date":"2025-10-12","last_updated":"2025-10-12","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":64000},"cost":{"input":0.56,"output":2.24,"cache_read":0.11}},"inclusionai/ling-1t":{"id":"inclusionai/ling-1t","name":"Ling-1T","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-01-01","release_date":"2025-10-09","last_updated":"2025-10-09","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":64000},"cost":{"input":0.56,"output":2.24,"cache_read":0.11}},"volcengine/doubao-seed-2.0-code":{"id":"volcengine/doubao-seed-2.0-code","name":"Doubao Seed 2.0 Code","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-01-01","release_date":"2026-03-20","last_updated":"2026-03-20","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":32000},"cost":{"input":0.9,"output":4.48}},"volcengine/doubao-seed-2.0-mini":{"id":"volcengine/doubao-seed-2.0-mini","name":"Doubao-Seed-2.0-mini","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2026-02-14","release_date":"2026-02-14","last_updated":"2026-02-14","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":64000},"cost":{"input":0.03,"output":0.28,"cache_read":0.01,"cache_write":0.0024}},"volcengine/doubao-seed-1.8":{"id":"volcengine/doubao-seed-1.8","name":"Doubao-Seed-1.8","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01-01","release_date":"2025-12-18","last_updated":"2025-12-18","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":64000},"cost":{"input":0.11,"output":0.28,"cache_read":0.02,"cache_write":0.0024}},"volcengine/doubao-seed-2.0-pro":{"id":"volcengine/doubao-seed-2.0-pro","name":"Doubao-Seed-2.0-pro","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2026-02-14","release_date":"2026-02-14","last_updated":"2026-02-14","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":64000},"cost":{"input":0.45,"output":2.24,"cache_read":0.09,"cache_write":0.0024}},"volcengine/doubao-seed-code":{"id":"volcengine/doubao-seed-code","name":"Doubao-Seed-Code","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01-01","release_date":"2025-11-11","last_updated":"2025-11-11","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":64000},"cost":{"input":0.17,"output":1.12,"cache_read":0.03}},"volcengine/doubao-seed-2.0-lite":{"id":"volcengine/doubao-seed-2.0-lite","name":"Doubao-Seed-2.0-lite","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2026-02-14","release_date":"2026-02-14","last_updated":"2026-02-14","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":64000},"cost":{"input":0.09,"output":0.51,"cache_read":0.02,"cache_write":0.0024}},"google/gemini-3.1-flash-lite-preview":{"id":"google/gemini-3.1-flash-lite-preview","name":"Gemini 3.1 Flash Lite Preview","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2025-03-20","last_updated":"2025-03-20","modalities":{"input":["text","image","audio","video"],"output":["text"]},"open_weights":false,"limit":{"context":1050000,"output":65530},"cost":{"input":0.25,"output":1.5}},"google/gemini-3-flash-preview":{"id":"google/gemini-3-flash-preview","name":"Gemini 3 Flash Preview","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01-01","release_date":"2025-12-17","last_updated":"2025-12-17","modalities":{"input":["text","image","pdf","audio"],"output":["text"]},"open_weights":false,"limit":{"context":1048000,"output":64000},"cost":{"input":0.5,"output":3,"cache_read":0.05,"cache_write":1}},"google/gemini-2.5-pro":{"id":"google/gemini-2.5-pro","name":"Gemini 2.5 Pro","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01-01","release_date":"2025-06-17","last_updated":"2025-06-17","modalities":{"input":["pdf","image","text","audio","video"],"output":["text"]},"open_weights":false,"limit":{"context":1048000,"output":64000},"cost":{"input":1.25,"output":10,"cache_read":0.31,"cache_write":4.5}},"google/gemini-3.1-pro-preview":{"id":"google/gemini-3.1-pro-preview","name":"Gemini 3.1 Pro Preview","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2026-02-19","release_date":"2026-02-19","last_updated":"2026-02-19","modalities":{"input":["text","image","pdf","audio","video"],"output":["text"]},"open_weights":false,"limit":{"context":1048000,"output":64000},"cost":{"input":2,"output":12,"cache_read":0.2,"cache_write":4.5}},"google/gemini-2.5-flash-lite":{"id":"google/gemini-2.5-flash-lite","name":"Gemini 2.5 Flash Lite","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-01-01","release_date":"2025-07-22","last_updated":"2025-07-22","modalities":{"input":["pdf","image","text","audio"],"output":["text"]},"open_weights":false,"limit":{"context":1048000,"output":64000},"cost":{"input":0.1,"output":0.4,"cache_read":0.03,"cache_write":1}},"google/gemini-2.5-flash":{"id":"google/gemini-2.5-flash","name":"Gemini 2.5 Flash","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01-01","release_date":"2025-06-17","last_updated":"2025-06-17","modalities":{"input":["pdf","image","text","audio"],"output":["text"]},"open_weights":false,"limit":{"context":1048000,"output":64000},"cost":{"input":0.3,"output":2.5,"cache_read":0.07,"cache_write":1}},"openai/gpt-5.2":{"id":"openai/gpt-5.2","name":"GPT-5.2","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2025-01-01","release_date":"2025-12-11","last_updated":"2025-12-11","modalities":{"input":["image","text","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":64000},"provider":{"npm":"@ai-sdk/openai","api":"https://zenmux.ai/api/v1"},"cost":{"input":1.75,"output":14,"cache_read":0.17}},"openai/gpt-5-codex":{"id":"openai/gpt-5-codex","name":"GPT-5 Codex","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01-01","release_date":"2025-09-23","last_updated":"2025-09-23","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":64000},"provider":{"npm":"@ai-sdk/openai","api":"https://zenmux.ai/api/v1"},"cost":{"input":1.25,"output":10,"cache_read":0.12}},"openai/gpt-5":{"id":"openai/gpt-5","name":"GPT-5","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01-01","release_date":"2025-08-07","last_updated":"2025-08-07","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":64000},"provider":{"npm":"@ai-sdk/openai","api":"https://zenmux.ai/api/v1"},"cost":{"input":1.25,"output":10,"cache_read":0.12}},"openai/gpt-5.4-pro":{"id":"openai/gpt-5.4-pro","name":"GPT-5.4 Pro","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-08-31","release_date":"2026-03-20","last_updated":"2026-03-20","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1050000,"output":128000},"provider":{"npm":"@ai-sdk/openai","api":"https://zenmux.ai/api/v1"},"cost":{"input":45,"output":225}},"openai/gpt-5.2-pro":{"id":"openai/gpt-5.2-pro","name":"GPT-5.2-Pro","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2025-12-11","last_updated":"2025-12-11","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"provider":{"npm":"@ai-sdk/openai","api":"https://zenmux.ai/api/v1"},"cost":{"input":21,"output":168}},"openai/gpt-5.4":{"id":"openai/gpt-5.4","name":"GPT-5.4","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-08-31","release_date":"2026-03-20","last_updated":"2026-03-20","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1050000,"output":128000},"provider":{"npm":"@ai-sdk/openai","api":"https://zenmux.ai/api/v1"},"cost":{"input":3.75,"output":18.75}},"openai/gpt-5.5":{"id":"openai/gpt-5.5","name":"GPT-5.5","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-12-01","release_date":"2026-04-23","last_updated":"2026-04-23","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1050000,"input":922000,"output":128000},"experimental":{"modes":{"fast":{"cost":{"input":12.5,"output":75,"cache_read":1.25},"provider":{"body":{"service_tier":"priority"}}}}},"cost":{"input":5,"output":30,"cache_read":0.5,"tiers":[{"input":10,"output":45,"cache_read":1,"tier":{"type":"context","size":272000}}],"context_over_200k":{"input":10,"output":45,"cache_read":1}}},"openai/gpt-5.1":{"id":"openai/gpt-5.1","name":"GPT-5.1","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01-01","release_date":"2025-11-13","last_updated":"2025-11-13","modalities":{"input":["image","text","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":64000},"provider":{"npm":"@ai-sdk/openai","api":"https://zenmux.ai/api/v1"},"cost":{"input":1.25,"output":10,"cache_read":0.12}},"openai/gpt-5.1-codex-mini":{"id":"openai/gpt-5.1-codex-mini","name":"GPT-5.1-Codex-Mini","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01-01","release_date":"2025-11-13","last_updated":"2025-11-13","modalities":{"input":["image","text"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":64000},"provider":{"npm":"@ai-sdk/openai","api":"https://zenmux.ai/api/v1"},"cost":{"input":0.25,"output":2,"cache_read":0.03}},"openai/gpt-5.4-nano":{"id":"openai/gpt-5.4-nano","name":"GPT-5.4 Nano","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-08-31","release_date":"2026-03-20","last_updated":"2026-03-20","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"provider":{"npm":"@ai-sdk/openai","api":"https://zenmux.ai/api/v1"},"cost":{"input":0.2,"output":1.25}},"openai/gpt-5.3-codex":{"id":"openai/gpt-5.3-codex","name":"GPT-5.3 Codex","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-08-31","release_date":"2026-03-20","last_updated":"2026-03-20","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"provider":{"npm":"@ai-sdk/openai","api":"https://zenmux.ai/api/v1"},"cost":{"input":1.75,"output":14}},"openai/gpt-5.5-pro":{"id":"openai/gpt-5.5-pro","name":"GPT-5.5 Pro","family":"gpt-pro","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-12-01","release_date":"2026-04-23","last_updated":"2026-04-23","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1050000,"input":922000,"output":128000},"cost":{"input":30,"output":180,"tiers":[{"input":60,"output":270,"tier":{"type":"context","size":272000}}],"context_over_200k":{"input":60,"output":270}}},"openai/gpt-5.2-codex":{"id":"openai/gpt-5.2-codex","name":"GPT-5.2-Codex","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2025-01-01","release_date":"2026-01-15","last_updated":"2026-01-15","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":64000},"provider":{"npm":"@ai-sdk/openai","api":"https://zenmux.ai/api/v1"},"cost":{"input":1.75,"output":14,"cache_read":0.17}},"openai/gpt-5.1-codex":{"id":"openai/gpt-5.1-codex","name":"GPT-5.1-Codex","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01-01","release_date":"2025-11-13","last_updated":"2025-11-13","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":64000},"provider":{"npm":"@ai-sdk/openai","api":"https://zenmux.ai/api/v1"},"cost":{"input":1.25,"output":10,"cache_read":0.12}},"openai/gpt-5.1-chat":{"id":"openai/gpt-5.1-chat","name":"GPT-5.1 Chat","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-01-01","release_date":"2025-11-13","last_updated":"2025-11-13","modalities":{"input":["pdf","image","text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":64000},"provider":{"npm":"@ai-sdk/openai","api":"https://zenmux.ai/api/v1"},"cost":{"input":1.25,"output":10,"cache_read":0.12}},"openai/gpt-5.4-mini":{"id":"openai/gpt-5.4-mini","name":"GPT-5.4 Mini","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-08-31","release_date":"2026-03-20","last_updated":"2026-03-20","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"provider":{"npm":"@ai-sdk/openai","api":"https://zenmux.ai/api/v1"},"cost":{"input":0.75,"output":4.5}},"openai/gpt-5.3-chat":{"id":"openai/gpt-5.3-chat","name":"GPT-5.3 Chat","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-08-31","release_date":"2026-03-20","last_updated":"2026-03-20","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16380},"provider":{"npm":"@ai-sdk/openai","api":"https://zenmux.ai/api/v1"},"cost":{"input":1.75,"output":14}},"minimax/minimax-m2.5-lightning":{"id":"minimax/minimax-m2.5-lightning","name":"MiniMax M2.5 highspeed","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01-01","release_date":"2026-02-13","last_updated":"2026-02-13","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":204800,"output":131072},"provider":{"npm":"@ai-sdk/anthropic","api":"https://zenmux.ai/api/anthropic/v1"},"cost":{"input":0.6,"output":4.8,"cache_read":0.06,"cache_write":0.75}},"minimax/minimax-m2.7-highspeed":{"id":"minimax/minimax-m2.7-highspeed","name":"MiniMax M2.7 highspeed","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01-01","release_date":"2026-03-20","last_updated":"2026-03-20","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":204800,"output":131070},"provider":{"npm":"@ai-sdk/anthropic","api":"https://zenmux.ai/api/anthropic/v1"},"cost":{"input":0.611,"output":2.4439}},"minimax/minimax-m2.1":{"id":"minimax/minimax-m2.1","name":"MiniMax M2.1","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01-01","release_date":"2025-12-22","last_updated":"2025-12-22","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":204000,"output":64000},"provider":{"npm":"@ai-sdk/anthropic","api":"https://zenmux.ai/api/anthropic/v1"},"cost":{"input":0.3,"output":1.2,"cache_read":0.03,"cache_write":0.38}},"minimax/minimax-m2.7":{"id":"minimax/minimax-m2.7","name":"MiniMax M2.7","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01-01","release_date":"2026-03-20","last_updated":"2026-03-20","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":204800,"output":131070},"provider":{"npm":"@ai-sdk/anthropic","api":"https://zenmux.ai/api/anthropic/v1"},"cost":{"input":0.3055,"output":1.2219}},"minimax/minimax-m2":{"id":"minimax/minimax-m2","name":"MiniMax M2","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01-01","release_date":"2025-10-27","last_updated":"2025-10-27","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":204000,"output":64000},"provider":{"npm":"@ai-sdk/anthropic","api":"https://zenmux.ai/api/anthropic/v1"},"cost":{"input":0.3,"output":1.2,"cache_read":0.03,"cache_write":0.38}},"minimax/minimax-m2.5":{"id":"minimax/minimax-m2.5","name":"MiniMax M2.5","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01-01","release_date":"2026-02-13","last_updated":"2026-02-13","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":204800,"output":131072},"provider":{"npm":"@ai-sdk/anthropic","api":"https://zenmux.ai/api/anthropic/v1"},"cost":{"input":0.3,"output":1.2,"cache_read":0.03,"cache_write":0.375}}}},"claudinio":{"id":"claudinio","env":["CLAUDINIO_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://api.claudin.io/v1","name":"Claudinio","doc":"https://claudin.io","models":{"claudinio":{"id":"claudinio","name":"Claudinio","attachment":true,"reasoning":true,"tool_call":true,"knowledge":"2026-05","release_date":"2026-05-12","last_updated":"2026-06-02","modalities":{"input":["text","image","audio","video"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":64000},"cost":{"input":0.5,"output":2,"cache_read":0.15}}}},"alibaba-coding-plan":{"id":"alibaba-coding-plan","env":["ALIBABA_CODING_PLAN_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://coding-intl.dashscope.aliyuncs.com/v1","name":"Alibaba Coding Plan","doc":"https://www.alibabacloud.com/help/en/model-studio/coding-plan","models":{"MiniMax-M2.5":{"id":"MiniMax-M2.5","name":"MiniMax-M2.5","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"release_date":"2026-02-12","last_updated":"2026-02-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":196608,"input":196601,"output":24576},"cost":{"input":0,"output":0,"cache_read":0,"cache_write":0}},"qwen3.5-plus":{"id":"qwen3.5-plus","name":"Qwen3.5 Plus","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2026-02-16","last_updated":"2026-02-16","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":65536},"cost":{"input":0,"output":0,"cache_read":0,"cache_write":0}},"qwen3-coder-plus":{"id":"qwen3-coder-plus","name":"Qwen3 Coder Plus","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-07-23","last_updated":"2025-07-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1000000,"output":65536},"cost":{"input":0,"output":0,"cache_read":0,"cache_write":0}},"glm-4.7":{"id":"glm-4.7","name":"GLM-4.7","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2025-04","release_date":"2025-12-22","last_updated":"2025-12-22","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":202752,"output":16384},"cost":{"input":0,"output":0,"cache_read":0,"cache_write":0}},"qwen3-coder-next":{"id":"qwen3-coder-next","name":"Qwen3 Coder Next","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-02-03","last_updated":"2026-02-03","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":65536},"cost":{"input":0,"output":0,"cache_read":0,"cache_write":0}},"qwen3.7-max":{"id":"qwen3.7-max","name":"Qwen3.7 Max","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-05-21","last_updated":"2026-05-21","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":65536},"cost":{"input":2.5,"output":7.5,"cache_read":0.5,"cache_write":3.125}},"qwen3.6-plus":{"id":"qwen3.6-plus","name":"Qwen3.6 Plus","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2026-04-02","last_updated":"2026-04-02","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":65536},"cost":{"input":0,"output":0,"cache_read":0,"cache_write":0}},"qwen3.6-flash":{"id":"qwen3.6-flash","name":"Qwen3.6 Flash","family":"qwen3.6","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-04-27","last_updated":"2026-04-27","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":65536},"cost":{"input":0.1875,"output":1.125,"cache_write":0.234375}},"qwen3-max-2026-01-23":{"id":"qwen3-max-2026-01-23","name":"Qwen3 Max","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2026-01-23","last_updated":"2026-01-23","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"output":32768},"cost":{"input":0,"output":0,"cache_read":0,"cache_write":0}},"glm-5":{"id":"glm-5","name":"GLM-5","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"release_date":"2026-02-11","last_updated":"2026-02-11","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":202752,"output":16384},"cost":{"input":0,"output":0,"cache_read":0,"cache_write":0}},"kimi-k2.5":{"id":"kimi-k2.5","name":"Kimi K2.5","family":"kimi","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2025-01","release_date":"2026-01-27","last_updated":"2026-01-27","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":32768},"cost":{"input":0,"output":0,"cache_read":0,"cache_write":0}}}},"modelscope":{"id":"modelscope","env":["MODELSCOPE_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://api-inference.modelscope.cn/v1","name":"ModelScope","doc":"https://modelscope.cn/docs/model-service/API-Inference/intro","models":{"ZhipuAI/GLM-4.5":{"id":"ZhipuAI/GLM-4.5","name":"GLM-4.5","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-07-28","last_updated":"2025-07-28","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":98304},"cost":{"input":0,"output":0}},"ZhipuAI/GLM-4.6":{"id":"ZhipuAI/GLM-4.6","name":"GLM-4.6","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-07","release_date":"2025-09-30","last_updated":"2025-09-30","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":202752,"output":98304},"cost":{"input":0,"output":0}},"Qwen/Qwen3-30B-A3B-Instruct-2507":{"id":"Qwen/Qwen3-30B-A3B-Instruct-2507","name":"Qwen3 30B A3B Instruct 2507","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-07-30","last_updated":"2025-07-30","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":16384},"cost":{"input":0,"output":0}},"Qwen/Qwen3-235B-A22B-Thinking-2507":{"id":"Qwen/Qwen3-235B-A22B-Thinking-2507","name":"Qwen3-235B-A22B-Thinking-2507","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-07-25","last_updated":"2025-07-25","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":131072},"cost":{"input":0,"output":0}},"Qwen/Qwen3-Coder-30B-A3B-Instruct":{"id":"Qwen/Qwen3-Coder-30B-A3B-Instruct","name":"Qwen3 Coder 30B A3B Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-07-31","last_updated":"2025-07-31","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":65536},"cost":{"input":0,"output":0}},"Qwen/Qwen3-235B-A22B-Instruct-2507":{"id":"Qwen/Qwen3-235B-A22B-Instruct-2507","name":"Qwen3 235B A22B Instruct 2507","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-04-28","last_updated":"2025-07-21","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":131072},"cost":{"input":0,"output":0}},"Qwen/Qwen3-30B-A3B-Thinking-2507":{"id":"Qwen/Qwen3-30B-A3B-Thinking-2507","name":"Qwen3 30B A3B Thinking 2507","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-07-30","last_updated":"2025-07-30","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":32768},"cost":{"input":0,"output":0}}}},"qihang-ai":{"id":"qihang-ai","env":["QIHANG_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://api.qhaigc.net/v1","name":"QiHang","doc":"https://www.qhaigc.net/docs","models":{"gpt-5-mini":{"id":"gpt-5-mini","name":"GPT-5-Mini","family":"gpt-mini","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-09-30","release_date":"2025-09-15","last_updated":"2025-09-15","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":0.04,"output":0.29}},"gpt-5.2":{"id":"gpt-5.2","name":"GPT-5.2","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-08-31","release_date":"2025-12-11","last_updated":"2025-12-11","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":0.25,"output":2}},"claude-haiku-4-5-20251001":{"id":"claude-haiku-4-5-20251001","name":"Claude Haiku 4.5","family":"claude-haiku","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-07-31","release_date":"2025-10-01","last_updated":"2025-10-01","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":0.14,"output":0.71}},"gemini-3-flash-preview":{"id":"gemini-3-flash-preview","name":"Gemini 3 Flash Preview","family":"gemini-flash","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-12-17","last_updated":"2025-12-17","modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":0.07,"output":0.43,"tiers":[{"input":0.07,"output":0.43,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":0.07,"output":0.43}}},"claude-sonnet-4-5-20250929":{"id":"claude-sonnet-4-5-20250929","name":"Claude Sonnet 4.5","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-07-31","release_date":"2025-09-29","last_updated":"2025-09-29","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":0.43,"output":2.14}},"gemini-2.5-flash":{"id":"gemini-2.5-flash","name":"Gemini 2.5 Flash","family":"gemini-flash","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-12-17","last_updated":"2025-12-17","modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":0.09,"output":0.71,"tiers":[{"input":0.09,"output":0.71,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":0.09,"output":0.71}}},"claude-opus-4-5-20251101":{"id":"claude-opus-4-5-20251101","name":"Claude Opus 4.5","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-03","release_date":"2025-11-01","last_updated":"2025-11-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":32000},"cost":{"input":0.71,"output":3.57}},"gpt-5.2-codex":{"id":"gpt-5.2-codex","name":"GPT-5.2 Codex","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2025-12-11","last_updated":"2025-12-11","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":0.14,"output":1.14}},"gemini-3-pro-preview":{"id":"gemini-3-pro-preview","name":"Gemini 3 Pro Preview","family":"gemini-pro","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-11","release_date":"2025-11-19","last_updated":"2025-11-19","modalities":{"input":["text","image","audio","video"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":65000},"cost":{"input":0.57,"output":3.43}}}},"aihubmix":{"id":"aihubmix","env":["AIHUBMIX_API_KEY"],"npm":"@aihubmix/ai-sdk-provider","name":"AIHubMix","doc":"https://docs.aihubmix.com","models":{"doubao-seed-2-0-mini-260428":{"id":"doubao-seed-2-0-mini-260428","name":"Doubao Seed 2.0 Mini 260428","family":"seed","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-04-28","last_updated":"2026-04-28","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":128000},"cost":{"input":0.03,"output":0.28,"cache_read":0.00564,"input_audio":0.423,"tiers":[{"input":0.06,"output":0.56,"cache_read":0.01128,"input_audio":0.846,"tier":{"type":"context","size":32000}},{"input":0.11,"output":1.13,"cache_read":0.02256,"input_audio":1.692,"tier":{"type":"context","size":128000}}]}},"doubao-seed-2-0-code-preview":{"id":"doubao-seed-2-0-code-preview","name":"Doubao Seed 2.0 Code Preview","family":"seed","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-02-14","last_updated":"2026-02-14","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":128000},"cost":{"input":0.48,"output":2.41,"cache_read":0.09644,"tiers":[{"input":0.72,"output":3.62,"cache_read":0.144656,"tier":{"type":"context","size":32000}},{"input":1.45,"output":7.23,"cache_read":0.28932,"tier":{"type":"context","size":128000}}]}},"doubao-seed-2-0-pro":{"id":"doubao-seed-2-0-pro","name":"Doubao Seed 2.0 Pro","family":"seed","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-02-14","last_updated":"2026-02-14","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":128000},"cost":{"input":0.48,"output":2.41,"cache_read":0.09644,"tiers":[{"input":0.72,"output":3.62,"cache_read":0.144656,"tier":{"type":"context","size":32000}},{"input":1.45,"output":7.23,"cache_read":0.28932,"tier":{"type":"context","size":128000}}]}},"claude-sonnet-4-6":{"id":"claude-sonnet-4-6","name":"Claude Sonnet 4.6","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"interleaved":true,"structured_output":true,"temperature":true,"knowledge":"2025-08-31","release_date":"2026-02-17","last_updated":"2026-03-13","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":64000},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75,"tiers":[{"input":6,"output":22.5,"cache_read":0.6,"cache_write":7.5,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":6,"output":22.5,"cache_read":0.6,"cache_write":7.5}}},"coding-minimax-m2.7-highspeed":{"id":"coding-minimax-m2.7-highspeed","name":"Coding MiniMax M2.7 Highspeed","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-03-18","last_updated":"2026-03-18","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":128100},"cost":{"input":0.2,"output":0.2}},"gpt-5.2":{"id":"gpt-5.2","name":"GPT-5.2","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2025-12-11","last_updated":"2025-12-11","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":1.75,"output":14,"cache_read":0.175}},"gpt-5.4":{"id":"gpt-5.4","name":"GPT-5.4","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-03-05","last_updated":"2026-03-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1050000,"input":922000,"output":128000},"experimental":{"modes":{"fast":{"cost":{"input":5,"output":30,"cache_read":0.5},"provider":{"body":{"service_tier":"priority"}}}}},"cost":{"input":2.5,"output":15,"cache_read":0.25,"tiers":[{"input":5,"output":22.5,"cache_read":0.5,"tier":{"type":"context","size":272000}}],"context_over_200k":{"input":5,"output":22.5,"cache_read":0.5}}},"gemini-3-flash-preview":{"id":"gemini-3-flash-preview","name":"Gemini 3 Flash Preview","family":"gemini-flash","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-12-17","last_updated":"2025-12-17","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":0.5,"output":3,"cache_read":0.05,"tiers":[{"input":0.5,"output":3,"cache_read":0.05,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":0.5,"output":3,"cache_read":0.05}}},"gpt-5.5":{"id":"gpt-5.5","name":"GPT-5.5","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-12-01","release_date":"2026-04-23","last_updated":"2026-04-23","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1050000,"input":922000,"output":128000},"experimental":{"modes":{"fast":{"cost":{"input":12.5,"output":75,"cache_read":1.25},"provider":{"body":{"service_tier":"priority"}}}}},"cost":{"input":5,"output":30,"cache_read":0.5,"tiers":[{"input":10,"output":45,"cache_read":1,"tier":{"type":"context","size":272000}}],"context_over_200k":{"input":10,"output":45,"cache_read":1}}},"xiaomi-mimo-v2.5-pro":{"id":"xiaomi-mimo-v2.5-pro","name":"Xiaomi MiMo-V2.5-Pro","family":"mimo-v2.5-pro","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2024-12","release_date":"2026-04-22","last_updated":"2026-05-13","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1048576,"output":131072},"cost":{"input":1.1,"output":3.3,"cache_read":0.22,"tiers":[{"input":2.2,"output":6.6,"cache_read":0.44,"tier":{"type":"context","size":256000}}],"context_over_200k":{"input":2.2,"output":6.6,"cache_read":0.44}}},"claude-opus-4-6-think":{"id":"claude-opus-4-6-think","name":"Claude Opus 4.6 Thinking","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-05-31","release_date":"2026-02-05","last_updated":"2026-03-13","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25,"tiers":[{"input":10,"output":37.5,"cache_read":1,"cache_write":12.5,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":10,"output":37.5,"cache_read":1,"cache_write":12.5}}},"kimi-k2.6":{"id":"kimi-k2.6","name":"Kimi K2.6","family":"kimi-k2.6","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":false,"knowledge":"2025-01","release_date":"2026-04-21","last_updated":"2026-04-21","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":32768},"cost":{"input":0.95,"output":4,"cache_read":0.16}},"alicloud-deepseek-v4-flash":{"id":"alicloud-deepseek-v4-flash","name":"DeepSeek V4 Flash (Alibaba Cloud)","family":"deepseek-flash","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-05","release_date":"2026-04-24","last_updated":"2026-04-24","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1000000,"output":384000},"cost":{"input":0.14,"output":0.28,"cache_read":0.028}},"alicloud-glm-5.1":{"id":"alicloud-glm-5.1","name":"GLM-5.1 (Alibaba Cloud)","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-03-27","last_updated":"2026-03-27","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":200000,"output":128000},"cost":{"input":0.84,"output":3.38,"cache_read":0.169,"cache_write":1.05625}},"gpt-5.1":{"id":"gpt-5.1","name":"GPT-5.1","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-11-13","last_updated":"2025-11-13","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":1.25,"output":10,"cache_read":0.13}},"gpt-5.1-codex-mini":{"id":"gpt-5.1-codex-mini","name":"GPT-5.1 Codex mini","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-11-13","last_updated":"2025-11-13","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":0.25,"output":2,"cache_read":0.025}},"xiaomi-mimo-v2.5-pro-free":{"id":"xiaomi-mimo-v2.5-pro-free","name":"Xiaomi MiMo-V2.5-Pro (free)","family":"mimo-v2.5-pro","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2024-12","release_date":"2026-04-22","last_updated":"2026-05-13","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1048576,"output":131072},"cost":{"input":0,"output":0,"cache_read":0}},"gemini-3.1-pro-preview-customtools":{"id":"gemini-3.1-pro-preview-customtools","name":"Gemini 3.1 Pro Preview Custom Tools","family":"gemini-pro","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-02-19","last_updated":"2026-02-19","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":2,"output":12,"cache_read":0.2,"tiers":[{"input":4,"output":18,"cache_read":0.4,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":4,"output":18,"cache_read":0.4}}},"coding-xiaomi-mimo-v2.5":{"id":"coding-xiaomi-mimo-v2.5","name":"Coding Xiaomi MiMo-V2.5","family":"mimo-v2.5","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2024-12","release_date":"2026-04-22","last_updated":"2026-05-13","modalities":{"input":["text","image","audio","video"],"output":["text"]},"open_weights":true,"limit":{"context":1048576,"output":131072},"cost":{"input":0.08,"output":0.4,"cache_read":0.016,"tiers":[{"input":0.16,"output":0.8,"cache_read":0.032,"tier":{"type":"context","size":256000}}],"context_over_200k":{"input":0.16,"output":0.8,"cache_read":0.032}}},"gemini-2.5-pro":{"id":"gemini-2.5-pro","name":"Gemini 2.5 Pro","family":"gemini-pro","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-03-20","last_updated":"2025-06-05","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":1.25,"output":10,"cache_read":0.125,"tiers":[{"input":2.5,"output":15,"cache_read":0.25,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":2.5,"output":15,"cache_read":0.25}}},"qwen3.6-plus":{"id":"qwen3.6-plus","name":"Qwen3.6 Plus","family":"qwen3.6","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-04","release_date":"2026-05-09","last_updated":"2026-05-09","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":991000,"output":64000},"cost":{"input":0.28,"output":1.69,"cache_read":0.0282,"cache_write":0.3525,"tiers":[{"input":1.13,"output":6.77,"cache_read":0.1128,"cache_write":1.41,"tier":{"type":"context","size":256000}}],"context_over_200k":{"input":1.13,"output":6.77,"cache_read":0.1128,"cache_write":1.41}}},"grok-4.3":{"id":"grok-4.3","name":"Grok 4.3","family":"grok","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-05-01","last_updated":"2026-05-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":1000000},"cost":{"input":1.25,"output":2.5,"cache_read":0.2,"tiers":[{"input":2.5,"output":5,"cache_read":0.4,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":2.5,"output":5,"cache_read":0.4}}},"gemini-3.1-pro-preview":{"id":"gemini-3.1-pro-preview","name":"Gemini 3.1 Pro Preview","family":"gemini-pro","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-02-19","last_updated":"2026-02-19","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":2,"output":12,"cache_read":0.2,"tiers":[{"input":4,"output":18,"cache_read":0.4,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":4,"output":18,"cache_read":0.4}}},"gemini-3.1-flash-lite":{"id":"gemini-3.1-flash-lite","name":"Gemini 3.1 Flash Lite","family":"gemini-flash-lite","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-05-07","last_updated":"2026-05-07","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":0.25,"output":1.5,"cache_read":0.025,"cache_write":1}},"gpt-5.3-codex":{"id":"gpt-5.3-codex","name":"GPT-5.3 Codex","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-02-05","last_updated":"2026-02-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":1.75,"output":14,"cache_read":0.175}},"gemini-2.5-flash":{"id":"gemini-2.5-flash","name":"Gemini 2.5 Flash","family":"gemini-flash","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-03-20","last_updated":"2025-06-05","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":0.3,"output":2.5,"cache_read":0.03,"input_audio":1}},"doubao-seed-2-0-lite-260428":{"id":"doubao-seed-2-0-lite-260428","name":"Doubao Seed 2.0 Lite 260428","family":"seed","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-04-28","last_updated":"2026-04-28","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":128000},"cost":{"input":0.08,"output":0.51,"cache_read":0.01692,"input_audio":1.269,"tiers":[{"input":0.13,"output":0.76,"cache_read":0.02536,"input_audio":1.902,"tier":{"type":"context","size":32000}},{"input":0.25,"output":1.52,"cache_read":0.05072,"input_audio":3.804,"tier":{"type":"context","size":128000}}]}},"deep-deepseek-v4-pro":{"id":"deep-deepseek-v4-pro","name":"DeepSeek V4 Pro (DeepSeek)","family":"deepseek-thinking","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-05","release_date":"2026-04-24","last_updated":"2026-04-24","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1000000,"output":384000},"cost":{"input":0.478,"output":0.956,"cache_read":0.004302}},"claude-opus-4-7-think":{"id":"claude-opus-4-7-think","name":"Claude Opus 4.7 Thinking","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":false,"knowledge":"2026-01-31","release_date":"2026-04-16","last_updated":"2026-04-16","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25,"tiers":[{"input":10,"output":37.5,"cache_read":1,"cache_write":12.5,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":10,"output":37.5,"cache_read":1,"cache_write":12.5}}},"qwen3.6-flash":{"id":"qwen3.6-flash","name":"Qwen3.6 Flash","family":"qwen3.6","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-04","release_date":"2026-04-02","last_updated":"2026-04-02","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":991000,"output":64000},"cost":{"input":0.17,"output":1.01,"cache_read":0.0169,"cache_write":0.21125,"tiers":[{"input":0.68,"output":4.06,"cache_read":0.0676,"cache_write":0.845,"tier":{"type":"context","size":256000}}],"context_over_200k":{"input":0.68,"output":4.06,"cache_read":0.0676,"cache_write":0.845}}},"claude-sonnet-4-6-think":{"id":"claude-sonnet-4-6-think","name":"Claude Sonnet 4.6 Thinking","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-08-31","release_date":"2026-02-17","last_updated":"2026-03-13","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":64000},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75,"tiers":[{"input":6,"output":22.5,"cache_read":0.6,"cache_write":7.5,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":6,"output":22.5,"cache_read":0.6,"cache_write":7.5}}},"glm-5v-turbo":{"id":"glm-5v-turbo","name":"GLM 5 Vision Turbo","family":"glmv","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-05-09","last_updated":"2026-05-09","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":128000},"cost":{"input":0.7042,"output":3.09848,"cache_read":0.169008}},"gpt-5.2-codex":{"id":"gpt-5.2-codex","name":"GPT-5.2 Codex","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2025-12-11","last_updated":"2025-12-11","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":1.75,"output":14,"cache_read":0.175}},"minimax-m2.7":{"id":"minimax-m2.7","name":"MiniMax M2.7","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-03-18","last_updated":"2026-03-18","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":128000},"cost":{"input":0.3,"output":1.2,"cache_read":0.06,"cache_write":0.375}},"coding-glm-5.1-free":{"id":"coding-glm-5.1-free","name":"Coding GLM 5.1 (free)","family":"glm-free","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-04-11","last_updated":"2026-04-11","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":200000,"output":128000},"cost":{"input":0,"output":0}},"gpt-5.1-codex":{"id":"gpt-5.1-codex","name":"GPT-5.1 Codex","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-11-13","last_updated":"2025-11-13","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":1.25,"output":10,"cache_read":0.125}},"deep-deepseek-v4-flash":{"id":"deep-deepseek-v4-flash","name":"DeepSeek V4 Flash (DeepSeek)","family":"deepseek-flash","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-05","release_date":"2026-04-24","last_updated":"2026-04-24","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1000000,"output":384000},"cost":{"input":0.154,"output":0.308,"cache_read":0.0308}},"alicloud-deepseek-v4-pro":{"id":"alicloud-deepseek-v4-pro","name":"DeepSeek V4 Pro (Alibaba Cloud)","family":"deepseek-thinking","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-05","release_date":"2026-04-24","last_updated":"2026-04-24","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1000000,"output":384000},"cost":{"input":1.69,"output":3.38,"cache_read":0.13}},"qwen3.6-max-preview":{"id":"qwen3.6-max-preview","name":"Qwen3.6 Max Preview","family":"qwen3.6","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-04","release_date":"2026-05-09","last_updated":"2026-05-09","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":240000,"output":64000},"cost":{"input":1.27,"output":7.61,"cache_read":0.1268,"cache_write":1.585,"tiers":[{"input":2.11,"output":12.67,"cache_read":0.2112,"cache_write":2.64,"tier":{"type":"context","size":128000}}]}},"xiaomi-mimo-v2.5":{"id":"xiaomi-mimo-v2.5","name":"Xiaomi MiMo-V2.5","family":"mimo-v2.5","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2024-12","release_date":"2026-04-22","last_updated":"2026-05-13","modalities":{"input":["text","image","audio","video"],"output":["text"]},"open_weights":true,"limit":{"context":1048576,"output":131072},"cost":{"input":0.44,"output":2.2,"cache_read":0.088,"tiers":[{"input":0.88,"output":4.4,"cache_read":0.176,"tier":{"type":"context","size":256000}}],"context_over_200k":{"input":0.88,"output":4.4,"cache_read":0.176}}},"gpt-5.4-mini":{"id":"gpt-5.4-mini","name":"GPT-5.4 mini","family":"gpt-mini","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-03-17","last_updated":"2026-03-17","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"experimental":{"modes":{"fast":{"cost":{"input":1.5,"output":9,"cache_read":0.15},"provider":{"body":{"service_tier":"priority"}}}}},"cost":{"input":0.75,"output":4.5,"cache_read":0.075}},"claude-opus-4-6":{"id":"claude-opus-4-6","name":"Claude Opus 4.6","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"interleaved":true,"structured_output":true,"temperature":true,"knowledge":"2025-05-31","release_date":"2026-02-05","last_updated":"2026-03-13","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25,"tiers":[{"input":10,"output":37.5,"cache_read":1,"cache_write":12.5,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":10,"output":37.5,"cache_read":1,"cache_write":12.5}}},"kimi-k2.5":{"id":"kimi-k2.5","name":"Kimi K2.5","family":"kimi-k2.5","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":false,"knowledge":"2025-01","release_date":"2026-01","last_updated":"2026-01","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":32768},"cost":{"input":0.6,"output":3,"cache_read":0.1}},"claude-opus-4-7":{"id":"claude-opus-4-7","name":"Claude Opus 4.7","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"interleaved":true,"structured_output":true,"temperature":false,"knowledge":"2026-01-31","release_date":"2026-04-16","last_updated":"2026-04-16","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25,"tiers":[{"input":10,"output":37.5,"cache_read":1,"cache_write":12.5,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":10,"output":37.5,"cache_read":1,"cache_write":12.5}}},"coding-minimax-m2.7":{"id":"coding-minimax-m2.7","name":"Coding MiniMax M2.7","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-03-18","last_updated":"2026-03-18","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":128100},"cost":{"input":0.2,"output":0.2}},"coding-glm-5.1":{"id":"coding-glm-5.1","name":"Coding GLM 5.1","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-04-11","last_updated":"2026-04-11","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":200000,"output":128000},"cost":{"input":0.06,"output":0.22,"cache_read":0.013}},"coding-xiaomi-mimo-v2.5-pro":{"id":"coding-xiaomi-mimo-v2.5-pro","name":"Coding Xiaomi MiMo-V2.5-Pro","family":"mimo-v2.5-pro","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2024-12","release_date":"2026-04-22","last_updated":"2026-05-13","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1048576,"output":131072},"cost":{"input":0.2,"output":0.6,"cache_read":0.04,"tiers":[{"input":0.4,"output":1.2,"cache_read":0.08,"tier":{"type":"context","size":256000}}],"context_over_200k":{"input":0.4,"output":1.2,"cache_read":0.08}}},"xiaomi-mimo-v2.5-free":{"id":"xiaomi-mimo-v2.5-free","name":"Xiaomi MiMo-V2.5 (free)","family":"mimo-v2.5","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2024-12","release_date":"2026-04-22","last_updated":"2026-05-13","modalities":{"input":["text","image","audio","video"],"output":["text"]},"open_weights":true,"limit":{"context":1048576,"output":131072},"cost":{"input":0,"output":0,"cache_read":0}},"coding-minimax-m2.7-free":{"id":"coding-minimax-m2.7-free","name":"Coding MiniMax M2.7 (Free)","family":"minimax-free","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-03-18","last_updated":"2026-03-18","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":128100},"cost":{"input":0,"output":0}},"zai-glm-5.1":{"id":"zai-glm-5.1","name":"GLM-5.1 (Z.ai)","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-03-27","last_updated":"2026-03-27","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":200000,"output":128000},"cost":{"input":0.845,"output":3.38,"cache_read":0.183112}}}},"poe":{"id":"poe","env":["POE_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://api.poe.com/v1","name":"Poe","doc":"https://creator.poe.com/docs/external-applications/openai-compatible-api","models":{"empiriolabs/deepseek-v4-pro-el":{"id":"empiriolabs/deepseek-v4-pro-el","name":"DeepSeek-V4-Pro-EL","attachment":true,"reasoning":true,"tool_call":true,"release_date":"2026-04-24","last_updated":"2026-05-02","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1000000,"input":1000000,"output":384000},"cost":{"input":1.67,"output":3.33}},"empiriolabs/deepseek-v4-flash-el":{"id":"empiriolabs/deepseek-v4-flash-el","name":"DeepSeek-V4-Flash-EL","attachment":true,"reasoning":true,"tool_call":true,"release_date":"2026-04-24","last_updated":"2026-05-02","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1000000,"input":1000000,"output":384000},"cost":{"input":0.14,"output":0.28}},"elevenlabs/elevenlabs-v3":{"id":"elevenlabs/elevenlabs-v3","name":"ElevenLabs-v3","family":"elevenlabs","attachment":true,"reasoning":false,"tool_call":true,"temperature":false,"release_date":"2025-06-05","last_updated":"2025-06-05","modalities":{"input":["text"],"output":["audio"]},"open_weights":false,"limit":{"context":128000,"output":0}},"elevenlabs/elevenlabs-music":{"id":"elevenlabs/elevenlabs-music","name":"ElevenLabs-Music","family":"elevenlabs","attachment":true,"reasoning":false,"tool_call":true,"temperature":false,"release_date":"2025-08-29","last_updated":"2025-08-29","modalities":{"input":["text"],"output":["audio"]},"open_weights":false,"limit":{"context":2000,"output":0}},"elevenlabs/elevenlabs-v2.5-turbo":{"id":"elevenlabs/elevenlabs-v2.5-turbo","name":"ElevenLabs-v2.5-Turbo","family":"elevenlabs","attachment":true,"reasoning":false,"tool_call":true,"temperature":false,"release_date":"2024-10-28","last_updated":"2024-10-28","modalities":{"input":["text"],"output":["audio"]},"open_weights":false,"limit":{"context":128000,"output":0}},"fireworks-ai/kimi-k2.5-fw":{"id":"fireworks-ai/kimi-k2.5-fw","name":"Kimi-K2.5-FW","attachment":true,"reasoning":false,"tool_call":true,"temperature":false,"release_date":"2026-01-27","last_updated":"2026-01-27","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"input":245760,"output":16384},"cost":{"input":0,"output":0}},"novita/glm-4.7-n":{"id":"novita/glm-4.7-n","name":"glm-4.7-n","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2025-12-22","last_updated":"2025-12-22","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":205000,"output":131072}},"novita/glm-4.6":{"id":"novita/glm-4.6","name":"GLM-4.6","family":"glm","attachment":true,"reasoning":false,"tool_call":true,"temperature":false,"release_date":"2025-09-30","last_updated":"2025-09-30","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":0,"output":0}},"novita/kimi-k2-thinking":{"id":"novita/kimi-k2-thinking","name":"kimi-k2-thinking","family":"kimi","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2025-11-07","last_updated":"2025-11-07","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":0}},"novita/deepseek-v3.2":{"id":"novita/deepseek-v3.2","name":"DeepSeek-V3.2","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-12-01","last_updated":"2025-12-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":0},"cost":{"input":0.27,"output":0.4,"cache_read":0.13}},"novita/minimax-m2.1":{"id":"novita/minimax-m2.1","name":"minimax-m2.1","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2025-12-26","last_updated":"2025-12-26","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":205000,"output":131072}},"novita/kimi-k2.6":{"id":"novita/kimi-k2.6","name":"Kimi-K2.6","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2026-04-20","last_updated":"2026-05-02","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"input":262144,"output":262144},"cost":{"input":0.96,"output":4.04,"cache_read":0.16}},"novita/glm-4.7":{"id":"novita/glm-4.7","name":"glm-4.7","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-12-22","last_updated":"2025-12-22","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":205000,"output":131072},"status":"deprecated"},"novita/glm-4.6v":{"id":"novita/glm-4.6v","name":"glm-4.6v","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2025-12-09","last_updated":"2025-12-09","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":131000,"output":32768}},"novita/glm-4.7-flash":{"id":"novita/glm-4.7-flash","name":"glm-4.7-flash","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2026-01-19","last_updated":"2026-01-19","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":65500}},"novita/glm-5":{"id":"novita/glm-5","name":"GLM-5","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-02-15","last_updated":"2026-02-15","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":205000,"output":131072},"cost":{"input":1,"output":3.2,"cache_read":0.2}},"novita/kimi-k2.5":{"id":"novita/kimi-k2.5","name":"Kimi-K2.5","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-01-27","last_updated":"2026-01-27","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":262144},"cost":{"input":0.6,"output":3,"cache_read":0.1}},"anthropic/claude-sonnet-4":{"id":"anthropic/claude-sonnet-4","name":"Claude-Sonnet-4","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2025-05-21","last_updated":"2025-05-21","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":983040,"output":64000},"cost":{"input":2.6,"output":13,"cache_read":0.26,"cache_write":3.2}},"anthropic/claude-sonnet-4.6":{"id":"anthropic/claude-sonnet-4.6","name":"Claude-Sonnet-4.6","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2026-02-05","last_updated":"2026-02-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":983040,"output":128000},"cost":{"input":2.6,"output":13,"cache_read":0.26,"cache_write":3.2}},"anthropic/claude-opus-4.5":{"id":"anthropic/claude-opus-4.5","name":"Claude-Opus-4.5","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2025-11-21","last_updated":"2025-11-21","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":196608,"output":64000},"cost":{"input":4.3,"output":21,"cache_read":0.43,"cache_write":5.3}},"anthropic/claude-opus-4.7":{"id":"anthropic/claude-opus-4.7","name":"Claude-Opus-4.7","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2026-04-15","last_updated":"2026-04-15","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":128000},"cost":{"input":4.3,"output":21,"cache_read":0.43,"cache_write":5.4}},"anthropic/claude-haiku-3":{"id":"anthropic/claude-haiku-3","name":"Claude-Haiku-3","family":"claude-haiku","attachment":true,"reasoning":false,"tool_call":true,"temperature":false,"release_date":"2024-03-09","last_updated":"2024-03-09","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":189096,"output":8192},"cost":{"input":0.21,"output":1.1,"cache_read":0.021,"cache_write":0.26}},"anthropic/claude-sonnet-3.5":{"id":"anthropic/claude-sonnet-3.5","name":"Claude-Sonnet-3.5","family":"claude-sonnet","attachment":true,"reasoning":false,"tool_call":true,"temperature":false,"release_date":"2024-06-05","last_updated":"2024-06-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":189096,"output":8192},"status":"deprecated","cost":{"input":2.6,"output":13,"cache_read":0.26,"cache_write":3.2}},"anthropic/claude-sonnet-3.5-june":{"id":"anthropic/claude-sonnet-3.5-june","name":"Claude-Sonnet-3.5-June","family":"claude-sonnet","attachment":true,"reasoning":false,"tool_call":true,"temperature":false,"release_date":"2024-11-18","last_updated":"2024-11-18","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":189096,"output":8192},"status":"deprecated","cost":{"input":2.6,"output":13,"cache_read":0.26,"cache_write":3.2}},"anthropic/claude-sonnet-4.5":{"id":"anthropic/claude-sonnet-4.5","name":"Claude-Sonnet-4.5","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2025-09-26","last_updated":"2025-09-26","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":983040,"output":32768},"cost":{"input":2.6,"output":13,"cache_read":0.26,"cache_write":3.2}},"anthropic/claude-opus-4.6":{"id":"anthropic/claude-opus-4.6","name":"Claude-Opus-4.6","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2026-02-04","last_updated":"2026-02-04","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":983040,"output":128000},"cost":{"input":4.3,"output":21,"cache_read":0.43,"cache_write":5.3}},"anthropic/claude-haiku-4.5":{"id":"anthropic/claude-haiku-4.5","name":"Claude-Haiku-4.5","family":"claude-haiku","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2025-10-15","last_updated":"2025-10-15","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":192000,"output":64000},"cost":{"input":0.85,"output":4.3,"cache_read":0.085,"cache_write":1.1}},"anthropic/claude-sonnet-3.7":{"id":"anthropic/claude-sonnet-3.7","name":"Claude-Sonnet-3.7","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2025-02-19","last_updated":"2025-02-19","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":196608,"output":128000},"cost":{"input":2.6,"output":13,"cache_read":0.26,"cache_write":3.2}},"anthropic/claude-haiku-3.5":{"id":"anthropic/claude-haiku-3.5","name":"Claude-Haiku-3.5","family":"claude-haiku","attachment":true,"reasoning":false,"tool_call":true,"temperature":false,"release_date":"2024-10-01","last_updated":"2024-10-01","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":189096,"output":8192},"cost":{"input":0.68,"output":3.4,"cache_read":0.068,"cache_write":0.85}},"anthropic/claude-opus-4.1":{"id":"anthropic/claude-opus-4.1","name":"Claude-Opus-4.1","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":196608,"output":32000},"cost":{"input":13,"output":64,"cache_read":1.3,"cache_write":16}},"anthropic/claude-opus-4.8":{"id":"anthropic/claude-opus-4.8","name":"Claude-Opus-4.8","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2026-05-28","last_updated":"2026-05-28","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":128000},"cost":{"input":4.2929,"output":21.4646}},"anthropic/claude-opus-4":{"id":"anthropic/claude-opus-4","name":"Claude-Opus-4","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2025-05-21","last_updated":"2025-05-21","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":192512,"output":28672},"cost":{"input":13,"output":64,"cache_read":1.3,"cache_write":16}},"xai/grok-4.20-multi-agent":{"id":"xai/grok-4.20-multi-agent","name":"Grok-4.20-Multi-Agent","attachment":true,"reasoning":false,"tool_call":true,"temperature":false,"release_date":"2026-03-13","last_updated":"2026-03-13","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":0},"cost":{"input":2,"output":6,"cache_read":0.2}},"xai/grok-4.1-fast-non-reasoning":{"id":"xai/grok-4.1-fast-non-reasoning","name":"Grok-4.1-Fast-Non-Reasoning","family":"grok","attachment":true,"reasoning":false,"tool_call":true,"temperature":false,"release_date":"2025-11-19","last_updated":"2025-11-19","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":2000000,"output":30000}},"xai/grok-4-fast-non-reasoning":{"id":"xai/grok-4-fast-non-reasoning","name":"Grok-4-Fast-Non-Reasoning","family":"grok","attachment":true,"reasoning":false,"tool_call":true,"temperature":false,"release_date":"2025-09-16","last_updated":"2025-09-16","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":2000000,"output":128000},"cost":{"input":0.2,"output":0.5,"cache_read":0.05}},"xai/grok-4.1-fast-reasoning":{"id":"xai/grok-4.1-fast-reasoning","name":"Grok-4.1-Fast-Reasoning","family":"grok","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2025-11-19","last_updated":"2025-11-19","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":2000000,"output":30000}},"xai/grok-3":{"id":"xai/grok-3","name":"Grok 3","family":"grok","attachment":true,"reasoning":false,"tool_call":true,"temperature":false,"release_date":"2025-04-11","last_updated":"2025-04-11","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":8192},"cost":{"input":3,"output":15,"cache_read":0.75}},"xai/grok-4-fast-reasoning":{"id":"xai/grok-4-fast-reasoning","name":"Grok-4-Fast-Reasoning","family":"grok","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2025-09-16","last_updated":"2025-09-16","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":2000000,"output":128000},"cost":{"input":0.2,"output":0.5,"cache_read":0.05}},"xai/grok-3-mini":{"id":"xai/grok-3-mini","name":"Grok 3 Mini","family":"grok","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2025-04-11","last_updated":"2025-04-11","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":8192},"cost":{"input":0.3,"output":0.5,"cache_read":0.075}},"xai/grok-4":{"id":"xai/grok-4","name":"Grok-4","family":"grok","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2025-07-10","last_updated":"2025-07-10","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":128000},"cost":{"input":3,"output":15,"cache_read":0.75}},"xai/grok-code-fast-1":{"id":"xai/grok-code-fast-1","name":"Grok Code Fast 1","family":"grok","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2025-08-22","last_updated":"2025-08-22","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":128000},"cost":{"input":0.2,"output":1.5,"cache_read":0.02}},"trytako/tako":{"id":"trytako/tako","name":"Tako","family":"tako","attachment":true,"reasoning":false,"tool_call":true,"temperature":false,"release_date":"2024-08-15","last_updated":"2024-08-15","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":2048,"output":0}},"topazlabs-co/topazlabs":{"id":"topazlabs-co/topazlabs","name":"TopazLabs","family":"topazlabs","attachment":true,"reasoning":false,"tool_call":true,"temperature":false,"release_date":"2024-12-03","last_updated":"2024-12-03","modalities":{"input":["text"],"output":["image"]},"open_weights":false,"limit":{"context":204,"output":0}},"runwayml/runway":{"id":"runwayml/runway","name":"Runway","family":"runway","attachment":true,"reasoning":false,"tool_call":true,"temperature":false,"release_date":"2024-10-11","last_updated":"2024-10-11","modalities":{"input":["text","image"],"output":["video"]},"open_weights":false,"limit":{"context":256,"output":0}},"runwayml/runway-gen-4-turbo":{"id":"runwayml/runway-gen-4-turbo","name":"Runway-Gen-4-Turbo","family":"runway","attachment":true,"reasoning":false,"tool_call":true,"temperature":false,"release_date":"2025-05-09","last_updated":"2025-05-09","modalities":{"input":["text","image"],"output":["video"]},"open_weights":false,"limit":{"context":256,"output":0}},"stabilityai/stablediffusionxl":{"id":"stabilityai/stablediffusionxl","name":"StableDiffusionXL","family":"stable-diffusion","attachment":true,"reasoning":false,"tool_call":true,"temperature":false,"release_date":"2023-07-09","last_updated":"2023-07-09","modalities":{"input":["text","image"],"output":["image"]},"open_weights":false,"limit":{"context":200,"output":0}},"poetools/claude-code":{"id":"poetools/claude-code","name":"claude-code","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2025-11-27","last_updated":"2025-11-27","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":0,"output":0}},"google/imagen-4-ultra":{"id":"google/imagen-4-ultra","name":"Imagen-4-Ultra","family":"imagen","attachment":true,"reasoning":false,"tool_call":true,"temperature":false,"release_date":"2025-05-24","last_updated":"2025-05-24","modalities":{"input":["text"],"output":["image"]},"open_weights":false,"limit":{"context":480,"output":0}},"google/nano-banana-pro":{"id":"google/nano-banana-pro","name":"Nano-Banana-Pro","family":"nano-banana","attachment":true,"reasoning":false,"tool_call":true,"temperature":false,"release_date":"2025-11-19","last_updated":"2025-11-19","modalities":{"input":["text","image"],"output":["image"]},"open_weights":false,"limit":{"context":65536,"output":0},"cost":{"input":2,"output":12,"cache_read":0.2}},"google/imagen-3-fast":{"id":"google/imagen-3-fast","name":"Imagen-3-Fast","family":"imagen","attachment":true,"reasoning":false,"tool_call":true,"temperature":false,"release_date":"2024-10-17","last_updated":"2024-10-17","modalities":{"input":["text"],"output":["image"]},"open_weights":false,"limit":{"context":480,"output":0}},"google/veo-3":{"id":"google/veo-3","name":"Veo-3","family":"veo","attachment":true,"reasoning":false,"tool_call":true,"temperature":false,"release_date":"2025-05-21","last_updated":"2025-05-21","modalities":{"input":["text"],"output":["video"]},"open_weights":false,"limit":{"context":480,"output":0}},"google/gemini-3-pro":{"id":"google/gemini-3-pro","name":"Gemini-3-Pro","family":"gemini-pro","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2025-10-22","last_updated":"2025-10-22","modalities":{"input":["text","image","video","audio"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"status":"deprecated","cost":{"input":1.6,"output":9.6,"cache_read":0.16}},"google/veo-3.1-fast":{"id":"google/veo-3.1-fast","name":"Veo-3.1-Fast","family":"veo","attachment":true,"reasoning":false,"tool_call":true,"temperature":false,"release_date":"2025-10-15","last_updated":"2025-10-15","modalities":{"input":["text","image"],"output":["video"]},"open_weights":false,"limit":{"context":480,"output":0}},"google/gemini-2.0-flash-lite":{"id":"google/gemini-2.0-flash-lite","name":"Gemini-2.0-Flash-Lite","family":"gemini-flash-lite","attachment":true,"reasoning":false,"tool_call":true,"temperature":false,"release_date":"2025-02-05","last_updated":"2025-02-05","modalities":{"input":["text","image","video","audio"],"output":["text"]},"open_weights":false,"limit":{"context":990000,"output":8192},"cost":{"input":0.052,"output":0.21}},"google/imagen-4":{"id":"google/imagen-4","name":"Imagen-4","family":"imagen","attachment":true,"reasoning":false,"tool_call":true,"temperature":false,"release_date":"2025-05-22","last_updated":"2025-05-22","modalities":{"input":["text"],"output":["image"]},"open_weights":false,"limit":{"context":480,"output":0}},"google/gemini-3-flash":{"id":"google/gemini-3-flash","name":"Gemini-3-Flash","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2025-10-07","last_updated":"2025-10-07","modalities":{"input":["text","image","video","audio"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":0.4,"output":2.4,"cache_read":0.04}},"google/gemini-2.5-pro":{"id":"google/gemini-2.5-pro","name":"Gemini-2.5-Pro","family":"gemini-pro","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2025-02-05","last_updated":"2025-02-05","modalities":{"input":["text","image","video","audio"],"output":["text"]},"open_weights":false,"limit":{"context":1065535,"output":65535},"cost":{"input":0.87,"output":7,"cache_read":0.087}},"google/imagen-4-fast":{"id":"google/imagen-4-fast","name":"Imagen-4-Fast","family":"imagen","attachment":true,"reasoning":false,"tool_call":true,"temperature":false,"release_date":"2025-06-25","last_updated":"2025-06-25","modalities":{"input":["text"],"output":["image"]},"open_weights":false,"limit":{"context":480,"output":0}},"google/nano-banana":{"id":"google/nano-banana","name":"Nano-Banana","family":"nano-banana","attachment":true,"reasoning":false,"tool_call":true,"temperature":false,"release_date":"2025-08-21","last_updated":"2025-08-21","modalities":{"input":["text","image"],"output":["text","image"]},"open_weights":false,"limit":{"context":65536,"output":0},"cost":{"input":0.21,"output":1.8,"cache_read":0.021}},"google/gemini-3.1-flash-lite":{"id":"google/gemini-3.1-flash-lite","name":"Gemini-3.1-Flash-Lite","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2026-02-18","last_updated":"2026-02-18","modalities":{"input":["text","image","video","audio"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":0.25,"output":1.5}},"google/gemini-2.5-flash-lite":{"id":"google/gemini-2.5-flash-lite","name":"Gemini-2.5-Flash-Lite","family":"gemini-flash-lite","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2025-06-19","last_updated":"2025-06-19","modalities":{"input":["text","image","video","audio"],"output":["text"]},"open_weights":false,"limit":{"context":1024000,"output":64000},"cost":{"input":0.07,"output":0.28}},"google/gemini-2.5-flash":{"id":"google/gemini-2.5-flash","name":"Gemini-2.5-Flash","family":"gemini-flash","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2025-04-26","last_updated":"2025-04-26","modalities":{"input":["text","image","video","audio"],"output":["text"]},"open_weights":false,"limit":{"context":1065535,"output":65535},"cost":{"input":0.21,"output":1.8,"cache_read":0.021}},"google/gemma-4-31b":{"id":"google/gemma-4-31b","name":"Gemma-4-31B","attachment":true,"reasoning":false,"tool_call":true,"temperature":false,"release_date":"2026-04-02","last_updated":"2026-04-02","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"output":8192},"cost":{"input":0,"output":0}},"google/veo-2":{"id":"google/veo-2","name":"Veo-2","family":"veo","attachment":true,"reasoning":false,"tool_call":true,"temperature":false,"release_date":"2024-12-02","last_updated":"2024-12-02","modalities":{"input":["text"],"output":["video"]},"open_weights":false,"limit":{"context":480,"output":0}},"google/gemini-2.0-flash":{"id":"google/gemini-2.0-flash","name":"Gemini-2.0-Flash","family":"gemini-flash","attachment":true,"reasoning":false,"tool_call":true,"temperature":false,"release_date":"2024-12-11","last_updated":"2024-12-11","modalities":{"input":["text","image","video","audio"],"output":["text"]},"open_weights":false,"limit":{"context":990000,"output":8192},"cost":{"input":0.1,"output":0.42}},"google/gemini-3.1-pro":{"id":"google/gemini-3.1-pro","name":"Gemini-3.1-Pro","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2026-02-19","last_updated":"2026-02-19","modalities":{"input":["text","image","video","audio"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":2,"output":12,"cache_read":0.2}},"google/gemini-3.5-flash":{"id":"google/gemini-3.5-flash","name":"Gemini-3.5-Flash","family":"gemini-flash","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-01","release_date":"2026-05-19","last_updated":"2026-05-19","modalities":{"input":["text","image","audio"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":1.5152,"output":9.0909,"cache_read":0.1515}},"google/veo-3.1":{"id":"google/veo-3.1","name":"Veo-3.1","family":"veo","attachment":true,"reasoning":false,"tool_call":true,"temperature":false,"release_date":"2025-10-15","last_updated":"2025-10-15","modalities":{"input":["text"],"output":["video"]},"open_weights":false,"limit":{"context":480,"output":0}},"google/lyria":{"id":"google/lyria","name":"Lyria","family":"lyria","attachment":true,"reasoning":false,"tool_call":true,"temperature":false,"release_date":"2025-06-04","last_updated":"2025-06-04","modalities":{"input":["text"],"output":["audio"]},"open_weights":false,"limit":{"context":0,"output":0}},"google/gemini-deep-research":{"id":"google/gemini-deep-research","name":"gemini-deep-research","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2025-12-11","last_updated":"2025-12-11","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":0},"status":"deprecated","cost":{"input":1.6,"output":9.6}},"google/veo-3-fast":{"id":"google/veo-3-fast","name":"Veo-3-Fast","family":"veo","attachment":true,"reasoning":false,"tool_call":true,"temperature":false,"release_date":"2025-10-13","last_updated":"2025-10-13","modalities":{"input":["text"],"output":["video"]},"open_weights":false,"limit":{"context":480,"output":0}},"google/imagen-3":{"id":"google/imagen-3","name":"Imagen-3","family":"imagen","attachment":true,"reasoning":false,"tool_call":true,"temperature":false,"release_date":"2024-10-15","last_updated":"2024-10-15","modalities":{"input":["text"],"output":["image"]},"open_weights":false,"limit":{"context":480,"output":0}},"openai/chatgpt-4o-latest":{"id":"openai/chatgpt-4o-latest","name":"ChatGPT-4o-Latest","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"temperature":false,"release_date":"2024-08-14","last_updated":"2024-08-14","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":8192},"status":"deprecated","cost":{"input":4.5,"output":14}},"openai/gpt-5-pro":{"id":"openai/gpt-5-pro","name":"GPT-5-Pro","family":"gpt-pro","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2025-10-06","last_updated":"2025-10-06","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":14,"output":110}},"openai/gpt-5-mini":{"id":"openai/gpt-5-mini","name":"GPT-5-mini","family":"gpt-mini","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2025-06-25","last_updated":"2025-06-25","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":0.22,"output":1.8,"cache_read":0.022}},"openai/o3-mini-high":{"id":"openai/o3-mini-high","name":"o3-mini-high","family":"o-mini","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2025-01-31","last_updated":"2025-01-31","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":0.99,"output":4}},"openai/gpt-image-1":{"id":"openai/gpt-image-1","name":"GPT-Image-1","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"temperature":false,"release_date":"2025-03-31","last_updated":"2025-03-31","modalities":{"input":["text","image"],"output":["image"]},"open_weights":false,"limit":{"context":128000,"output":0}},"openai/gpt-5-chat":{"id":"openai/gpt-5-chat","name":"GPT-5-Chat","family":"gpt-codex","attachment":true,"reasoning":false,"tool_call":true,"temperature":false,"release_date":"2025-08-07","last_updated":"2025-08-07","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":1.1,"output":9,"cache_read":0.11}},"openai/gpt-4o":{"id":"openai/gpt-4o","name":"GPT-4o","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"temperature":false,"release_date":"2024-05-13","last_updated":"2024-05-13","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":8192}},"openai/gpt-5.2":{"id":"openai/gpt-5.2","name":"GPT-5.2","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2025-12-08","last_updated":"2025-12-08","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":1.6,"output":13,"cache_read":0.16}},"openai/gpt-5-codex":{"id":"openai/gpt-5-codex","name":"GPT-5-Codex","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2025-09-23","last_updated":"2025-09-23","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":1.1,"output":9}},"openai/o3":{"id":"openai/o3","name":"o3","family":"o","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2025-04-16","last_updated":"2025-04-16","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":1.8,"output":7.2,"cache_read":0.45}},"openai/sora-2-pro":{"id":"openai/sora-2-pro","name":"Sora-2-Pro","family":"sora","attachment":true,"reasoning":false,"tool_call":true,"temperature":false,"release_date":"2025-10-06","last_updated":"2025-10-06","modalities":{"input":["text","image"],"output":["video"]},"open_weights":false,"limit":{"context":0,"output":0}},"openai/gpt-5":{"id":"openai/gpt-5","name":"GPT-5","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":1.1,"output":9,"cache_read":0.11}},"openai/gpt-4-classic":{"id":"openai/gpt-4-classic","name":"GPT-4-Classic","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"temperature":false,"release_date":"2024-03-25","last_updated":"2024-03-25","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":8192,"output":4096},"status":"deprecated","cost":{"input":27,"output":54}},"openai/gpt-image-1-mini":{"id":"openai/gpt-image-1-mini","name":"GPT-Image-1-Mini","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"temperature":false,"release_date":"2025-08-26","last_updated":"2025-08-26","modalities":{"input":["text","image"],"output":["image"]},"open_weights":false,"limit":{"context":0,"output":0}},"openai/gpt-5.4-pro":{"id":"openai/gpt-5.4-pro","name":"GPT-5.4-Pro","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2026-03-05","last_updated":"2026-03-05","modalities":{"input":["text","image"],"output":["image"]},"open_weights":false,"limit":{"context":1050000,"input":922000,"output":128000},"cost":{"input":27,"output":160}},"openai/gpt-4.1-mini":{"id":"openai/gpt-4.1-mini","name":"GPT-4.1-mini","family":"gpt-mini","attachment":true,"reasoning":false,"tool_call":true,"temperature":false,"release_date":"2025-04-15","last_updated":"2025-04-15","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1047576,"output":32768},"cost":{"input":0.36,"output":1.4,"cache_read":0.09}},"openai/gpt-5.2-pro":{"id":"openai/gpt-5.2-pro","name":"GPT-5.2-Pro","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2025-12-11","last_updated":"2025-12-11","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":19,"output":150}},"openai/o3-pro":{"id":"openai/o3-pro","name":"o3-pro","family":"o-pro","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2025-06-10","last_updated":"2025-06-10","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":18,"output":72}},"openai/o4-mini":{"id":"openai/o4-mini","name":"o4-mini","family":"o-mini","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2025-04-16","last_updated":"2025-04-16","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":0.99,"output":4,"cache_read":0.25}},"openai/gpt-5.4":{"id":"openai/gpt-5.4","name":"GPT-5.4","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2026-02-26","last_updated":"2026-02-26","modalities":{"input":["text","image","pdf"],"output":["image"]},"open_weights":false,"limit":{"context":1050000,"input":922000,"output":128000},"cost":{"input":2.2,"output":14,"cache_read":0.22}},"openai/o3-mini":{"id":"openai/o3-mini","name":"o3-mini","family":"o-mini","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2025-01-31","last_updated":"2025-01-31","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":0.99,"output":4}},"openai/dall-e-3":{"id":"openai/dall-e-3","name":"DALL-E-3","family":"dall-e","attachment":true,"reasoning":false,"tool_call":true,"temperature":false,"release_date":"2023-11-06","last_updated":"2023-11-06","modalities":{"input":["text"],"output":["image"]},"open_weights":false,"limit":{"context":800,"output":0}},"openai/gpt-5.5":{"id":"openai/gpt-5.5","name":"GPT-5.5","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-12-01","release_date":"2026-04-08","last_updated":"2026-04-08","modalities":{"input":["text","image"],"output":["text","image"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":4.5455,"output":27.2727,"cache_read":0.4545}},"openai/gpt-4o-mini-search":{"id":"openai/gpt-4o-mini-search","name":"GPT-4o-mini-Search","family":"gpt-mini","attachment":true,"reasoning":false,"tool_call":true,"temperature":false,"release_date":"2025-03-11","last_updated":"2025-03-11","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":8192},"cost":{"input":0.14,"output":0.54}},"openai/gpt-5.1":{"id":"openai/gpt-5.1","name":"GPT-5.1","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2025-11-12","last_updated":"2025-11-12","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":1.1,"output":9,"cache_read":0.11}},"openai/gpt-5-nano":{"id":"openai/gpt-5-nano","name":"GPT-5-nano","family":"gpt-nano","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":0.045,"output":0.36,"cache_read":0.0045}},"openai/gpt-4o-aug":{"id":"openai/gpt-4o-aug","name":"GPT-4o-Aug","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"temperature":false,"release_date":"2024-11-21","last_updated":"2024-11-21","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":8192},"cost":{"input":2.2,"output":9,"cache_read":1.1}},"openai/gpt-4o-mini":{"id":"openai/gpt-4o-mini","name":"GPT-4o-mini","family":"gpt-mini","attachment":true,"reasoning":false,"tool_call":true,"temperature":false,"release_date":"2024-07-18","last_updated":"2024-07-18","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":124096,"output":4096},"cost":{"input":0.14,"output":0.54,"cache_read":0.068}},"openai/gpt-5.1-codex-max":{"id":"openai/gpt-5.1-codex-max","name":"GPT-5.1-Codex-Max","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2025-12-08","last_updated":"2025-12-08","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":1.1,"output":9,"cache_read":0.11}},"openai/gpt-5.1-codex-mini":{"id":"openai/gpt-5.1-codex-mini","name":"GPT-5.1-Codex-Mini","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2025-11-12","last_updated":"2025-11-12","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":0.22,"output":1.8,"cache_read":0.022}},"openai/o1-pro":{"id":"openai/o1-pro","name":"o1-pro","family":"o-pro","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2025-03-19","last_updated":"2025-03-19","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":140,"output":540}},"openai/gpt-4o-search":{"id":"openai/gpt-4o-search","name":"GPT-4o-Search","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"temperature":false,"release_date":"2025-03-11","last_updated":"2025-03-11","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":8192},"cost":{"input":2.2,"output":9}},"openai/o3-deep-research":{"id":"openai/o3-deep-research","name":"o3-deep-research","family":"o","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2025-06-27","last_updated":"2025-06-27","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":9,"output":36,"cache_read":2.2}},"openai/gpt-3.5-turbo-raw":{"id":"openai/gpt-3.5-turbo-raw","name":"GPT-3.5-Turbo-Raw","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"temperature":false,"release_date":"2023-09-27","last_updated":"2023-09-27","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":4524,"output":2048},"cost":{"input":0.45,"output":1.4}},"openai/gpt-4.1":{"id":"openai/gpt-4.1","name":"GPT-4.1","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"temperature":false,"release_date":"2025-04-14","last_updated":"2025-04-14","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1047576,"output":32768},"cost":{"input":1.8,"output":7.2,"cache_read":0.45}},"openai/gpt-5.4-nano":{"id":"openai/gpt-5.4-nano","name":"GPT-5.4-Nano","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2026-03-11","last_updated":"2026-03-11","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":0.18,"output":1.1,"cache_read":0.018}},"openai/gpt-5.3-codex":{"id":"openai/gpt-5.3-codex","name":"GPT-5.3-Codex","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2026-02-10","last_updated":"2026-02-10","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":1.6,"output":13,"cache_read":0.16}},"openai/gpt-5.3-codex-spark":{"id":"openai/gpt-5.3-codex-spark","name":"GPT-5.3-Codex-Spark","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2026-03-04","last_updated":"2026-03-04","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":0,"output":0}},"openai/gpt-5.3-instant":{"id":"openai/gpt-5.3-instant","name":"GPT-5.3-Instant","attachment":true,"reasoning":false,"tool_call":true,"temperature":false,"release_date":"2026-03-03","last_updated":"2026-03-03","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":111616,"output":16384},"cost":{"input":1.6,"output":13,"cache_read":0.16}},"openai/gpt-5.5-pro":{"id":"openai/gpt-5.5-pro","name":"GPT-5.5-Pro","family":"gpt-pro","attachment":true,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":false,"knowledge":"2025-12-01","release_date":"2026-04-08","last_updated":"2026-04-08","modalities":{"input":["text","image"],"output":["text","image"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":27.2727,"output":163.6364}},"openai/o4-mini-deep-research":{"id":"openai/o4-mini-deep-research","name":"o4-mini-deep-research","family":"o-mini","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2025-06-27","last_updated":"2025-06-27","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":1.8,"output":7.2,"cache_read":0.45}},"openai/gpt-3.5-turbo":{"id":"openai/gpt-3.5-turbo","name":"GPT-3.5-Turbo","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"temperature":false,"release_date":"2023-09-13","last_updated":"2023-09-13","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":16384,"output":2048},"cost":{"input":0.45,"output":1.4}},"openai/gpt-4-classic-0314":{"id":"openai/gpt-4-classic-0314","name":"GPT-4-Classic-0314","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"temperature":false,"release_date":"2024-08-26","last_updated":"2024-08-26","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":8192,"output":4096},"status":"deprecated","cost":{"input":27,"output":54}},"openai/gpt-3.5-turbo-instruct":{"id":"openai/gpt-3.5-turbo-instruct","name":"GPT-3.5-Turbo-Instruct","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"temperature":false,"release_date":"2023-09-20","last_updated":"2023-09-20","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":3500,"output":1024},"cost":{"input":1.4,"output":1.8}},"openai/gpt-5.1-instant":{"id":"openai/gpt-5.1-instant","name":"GPT-5.1-Instant","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2025-11-12","last_updated":"2025-11-12","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":1.1,"output":9,"cache_read":0.11}},"openai/sora-2":{"id":"openai/sora-2","name":"Sora-2","family":"sora","attachment":true,"reasoning":false,"tool_call":true,"temperature":false,"release_date":"2025-10-06","last_updated":"2025-10-06","modalities":{"input":["text","image"],"output":["video"]},"open_weights":false,"limit":{"context":0,"output":0}},"openai/gpt-5.2-codex":{"id":"openai/gpt-5.2-codex","name":"GPT-5.2-Codex","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2026-01-14","last_updated":"2026-01-14","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":1.6,"output":13,"cache_read":0.16}},"openai/gpt-image-2":{"id":"openai/gpt-image-2","name":"GPT-Image-2","attachment":true,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2026-04-21","last_updated":"2026-04-21","modalities":{"input":["text","image"],"output":["image"]},"open_weights":false,"limit":{"context":0,"output":0},"cost":{"input":5.0505,"output":32.3232,"cache_read":1.2626}},"openai/gpt-5.1-codex":{"id":"openai/gpt-5.1-codex","name":"GPT-5.1-Codex","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2025-11-12","last_updated":"2025-11-12","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":1.1,"output":9,"cache_read":0.11}},"openai/gpt-5.4-mini":{"id":"openai/gpt-5.4-mini","name":"GPT-5.4-Mini","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2026-03-12","last_updated":"2026-03-12","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":0.68,"output":4,"cache_read":0.068}},"openai/gpt-4-turbo":{"id":"openai/gpt-4-turbo","name":"GPT-4-Turbo","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"temperature":false,"release_date":"2023-09-13","last_updated":"2023-09-13","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":4096},"cost":{"input":9,"output":27}},"openai/o1":{"id":"openai/o1","name":"o1","family":"o","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2024-12-18","last_updated":"2024-12-18","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":14,"output":54}},"openai/gpt-image-1.5":{"id":"openai/gpt-image-1.5","name":"gpt-image-1.5","attachment":true,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2025-12-16","last_updated":"2025-12-16","modalities":{"input":["text","image"],"output":["image"]},"open_weights":false,"limit":{"context":128000,"output":0}},"openai/gpt-4.1-nano":{"id":"openai/gpt-4.1-nano","name":"GPT-4.1-nano","family":"gpt-nano","attachment":true,"reasoning":false,"tool_call":true,"temperature":false,"release_date":"2025-04-15","last_updated":"2025-04-15","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1047576,"output":32768},"cost":{"input":0.09,"output":0.36,"cache_read":0.022}},"openai/gpt-5.2-instant":{"id":"openai/gpt-5.2-instant","name":"GPT-5.2-Instant","attachment":true,"reasoning":false,"tool_call":true,"temperature":false,"release_date":"2025-12-11","last_updated":"2025-12-11","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":1.6,"output":13,"cache_read":0.16}},"cerebras/gpt-oss-120b-cs":{"id":"cerebras/gpt-oss-120b-cs","name":"GPT-OSS-120B-CS","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2025-08-06","last_updated":"2025-08-06","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":0},"cost":{"input":0.35,"output":0.75}},"cerebras/llama-3.3-70b-cs":{"id":"cerebras/llama-3.3-70b-cs","name":"llama-3.3-70b-cs","attachment":true,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2025-05-13","last_updated":"2025-05-13","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":0,"output":0},"status":"deprecated"},"cerebras/llama-3.1-8b-cs":{"id":"cerebras/llama-3.1-8b-cs","name":"Llama-3.1-8B-CS","attachment":true,"reasoning":false,"tool_call":true,"temperature":false,"release_date":"2025-05-13","last_updated":"2025-05-13","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":0},"cost":{"input":0.1,"output":0.1}},"cerebras/qwen3-235b-2507-cs":{"id":"cerebras/qwen3-235b-2507-cs","name":"qwen3-235b-2507-cs","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2025-08-06","last_updated":"2025-08-06","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":0,"output":0},"status":"deprecated"},"cerebras/qwen3-32b-cs":{"id":"cerebras/qwen3-32b-cs","name":"qwen3-32b-cs","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2025-05-15","last_updated":"2025-05-15","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":0,"output":0},"status":"deprecated"},"ideogramai/ideogram-v2a":{"id":"ideogramai/ideogram-v2a","name":"Ideogram-v2a","family":"ideogram","attachment":true,"reasoning":false,"tool_call":true,"temperature":false,"release_date":"2025-02-27","last_updated":"2025-02-27","modalities":{"input":["text"],"output":["image"]},"open_weights":false,"limit":{"context":150,"output":0}},"ideogramai/ideogram":{"id":"ideogramai/ideogram","name":"Ideogram","family":"ideogram","attachment":true,"reasoning":false,"tool_call":true,"temperature":false,"release_date":"2024-04-03","last_updated":"2024-04-03","modalities":{"input":["text","image"],"output":["image"]},"open_weights":false,"limit":{"context":150,"output":0}},"ideogramai/ideogram-v2a-turbo":{"id":"ideogramai/ideogram-v2a-turbo","name":"Ideogram-v2a-Turbo","family":"ideogram","attachment":true,"reasoning":false,"tool_call":true,"temperature":false,"release_date":"2025-02-27","last_updated":"2025-02-27","modalities":{"input":["text"],"output":["image"]},"open_weights":false,"limit":{"context":150,"output":0}},"ideogramai/ideogram-v2":{"id":"ideogramai/ideogram-v2","name":"Ideogram-v2","family":"ideogram","attachment":true,"reasoning":false,"tool_call":true,"temperature":false,"release_date":"2024-08-21","last_updated":"2024-08-21","modalities":{"input":["text","image"],"output":["image"]},"open_weights":false,"limit":{"context":150,"output":0}},"lumalabs/ray2":{"id":"lumalabs/ray2","name":"Ray2","family":"ray","attachment":true,"reasoning":false,"tool_call":true,"temperature":false,"release_date":"2025-02-20","last_updated":"2025-02-20","modalities":{"input":["text","image"],"output":["video"]},"open_weights":false,"limit":{"context":5000,"output":0}}}},"umans-ai-coding-plan":{"id":"umans-ai-coding-plan","env":["UMANS_AI_CODING_PLAN_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://api.code.umans.ai/v1","name":"Umans AI Coding Plan","doc":"https://app.umans.ai/offers/code/docs","models":{"umans-kimi-k2.6":{"id":"umans-kimi-k2.6","name":"Kimi K2.6","family":"kimi-k2.6","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":false,"knowledge":"2025-01","release_date":"2026-04-21","last_updated":"2026-04-21","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0,"output":0,"cache_read":0,"cache_write":0}},"umans-glm-5.1":{"id":"umans-glm-5.1","name":"GLM 5.1","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-03-27","last_updated":"2026-03-27","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0,"output":0,"cache_read":0,"cache_write":0}},"umans-qwen3.6-35b-a3b":{"id":"umans-qwen3.6-35b-a3b","name":"Qwen3.6 35B A3B","family":"qwen","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"release_date":"2026-04-17","last_updated":"2026-04-17","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0,"output":0,"cache_read":0,"cache_write":0}},"umans-coder":{"id":"umans-coder","name":"Umans Coder","family":"kimi-k2.6","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":false,"knowledge":"2025-01","release_date":"2026-04-21","last_updated":"2026-04-21","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0,"output":0,"cache_read":0,"cache_write":0}},"umans-flash":{"id":"umans-flash","name":"Umans Flash","family":"qwen","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"release_date":"2026-04-17","last_updated":"2026-04-17","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0,"output":0,"cache_read":0,"cache_write":0}}}},"firepass":{"id":"firepass","env":["FIREPASS_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://api.fireworks.ai/inference/v1/","name":"Fireworks (Firepass)","doc":"https://docs.fireworks.ai/firepass","models":{"accounts/fireworks/routers/kimi-k2p6-turbo":{"id":"accounts/fireworks/routers/kimi-k2p6-turbo","name":"Kimi K2.6 Turbo","family":"kimi-thinking","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"release_date":"2026-04-17","last_updated":"2026-04-17","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262000,"output":262000},"cost":{"input":0,"output":0,"cache_read":0}}}},"gmicloud":{"id":"gmicloud","env":["GMICLOUD_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://api.gmi-serving.com/v1","name":"GMI Cloud","doc":"https://docs.gmicloud.ai/inference-engine/api-reference/llm-api-reference","models":{"zai-org/GLM-5-FP8":{"id":"zai-org/GLM-5-FP8","name":"GLM-5","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"release_date":"2026-02-11","last_updated":"2026-02-11","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":202752,"output":131072},"cost":{"input":0.6,"output":1.92,"cache_read":0.12}},"zai-org/GLM-5.1-FP8":{"id":"zai-org/GLM-5.1-FP8","name":"GLM-5.1","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-03-27","last_updated":"2026-03-27","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":202752,"output":131072},"cost":{"input":0.98,"output":3.08,"cache_read":0.182}},"anthropic/claude-sonnet-4.6":{"id":"anthropic/claude-sonnet-4.6","name":"Claude Sonnet 4.6","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-08-31","release_date":"2026-02-17","last_updated":"2026-03-13","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":409600,"output":64000},"cost":{"input":3,"output":15,"cache_read":0.3}},"anthropic/claude-opus-4.7":{"id":"anthropic/claude-opus-4.7","name":"Claude Opus 4.7","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2026-01-31","release_date":"2026-04-16","last_updated":"2026-04-16","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":409600,"output":128000},"experimental":{"modes":{"fast":{"cost":{"input":30,"output":150,"cache_read":3,"cache_write":37.5},"provider":{"body":{"speed":"fast"},"headers":{"anthropic-beta":"fast-mode-2026-02-01"}}}}},"cost":{"input":4.5,"output":22.5,"cache_read":0.45}},"anthropic/claude-opus-4.6":{"id":"anthropic/claude-opus-4.6","name":"Claude Opus 4.6","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-05-31","release_date":"2026-02-05","last_updated":"2026-03-13","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":409600,"output":128000},"cost":{"input":5,"output":25,"cache_read":0.5}},"moonshotai/Kimi-K2.6":{"id":"moonshotai/Kimi-K2.6","name":"Kimi K2.6","family":"kimi-k2.6","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-04-21","last_updated":"2026-04-21","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":65536,"output":65536},"cost":{"input":0.855,"output":3.6,"cache_read":0.144}},"deepseek-ai/DeepSeek-V4-Flash":{"id":"deepseek-ai/DeepSeek-V4-Flash","name":"DeepSeek V4 Flash","family":"deepseek-flash","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-05","release_date":"2026-04-24","last_updated":"2026-04-24","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1048575,"output":384000},"cost":{"input":0.112,"output":0.224,"cache_read":0.022}},"deepseek-ai/DeepSeek-V4-Pro":{"id":"deepseek-ai/DeepSeek-V4-Pro","name":"DeepSeek V4 Pro","family":"deepseek-thinking","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-05","release_date":"2026-04-24","last_updated":"2026-04-24","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1048576,"output":384000},"cost":{"input":1.392,"output":2.784,"cache_read":0.116}}}},"mixlayer":{"id":"mixlayer","env":["MIXLAYER_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://models.mixlayer.ai/v1","name":"Mixlayer","doc":"https://docs.mixlayer.com","models":{"qwen/qwen3.5-122b-a10b":{"id":"qwen/qwen3.5-122b-a10b","name":"Qwen3.5 122B A10B","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-03-18","last_updated":"2026-03-18","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.4,"output":3.2}},"qwen/qwen3.5-9b":{"id":"qwen/qwen3.5-9b","name":"Qwen3.5 9B","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-03-18","last_updated":"2026-03-18","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.1,"output":0.4}},"qwen/qwen3.5-35b-a3b":{"id":"qwen/qwen3.5-35b-a3b","name":"Qwen3.5 35B A3B","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-03-18","last_updated":"2026-03-18","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.25,"output":1.3}},"qwen/qwen3.5-397b-a17b":{"id":"qwen/qwen3.5-397b-a17b","name":"Qwen3.5 397B A17B","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-03-18","last_updated":"2026-03-18","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.6,"output":3.6}},"qwen/qwen3.5-27b":{"id":"qwen/qwen3.5-27b","name":"Qwen3.5 27B","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-03-18","last_updated":"2026-03-18","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.3,"output":2.4}}}},"minimax-coding-plan":{"id":"minimax-coding-plan","env":["MINIMAX_API_KEY"],"npm":"@ai-sdk/anthropic","api":"https://api.minimax.io/anthropic/v1","name":"MiniMax Token Plan (minimax.io)","doc":"https://platform.minimax.io/docs/token-plan/intro","models":{"MiniMax-M2.5":{"id":"MiniMax-M2.5","name":"MiniMax-M2.5","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-02-12","last_updated":"2026-02-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0,"output":0,"cache_read":0,"cache_write":0}},"MiniMax-M3":{"id":"MiniMax-M3","name":"MiniMax-M3","family":"minimax","attachment":true,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"tool_call":true,"temperature":true,"release_date":"2026-06-01","last_updated":"2026-06-01","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":512000,"output":128000},"cost":{"input":0,"output":0,"cache_read":0,"cache_write":0}},"MiniMax-M2.5-highspeed":{"id":"MiniMax-M2.5-highspeed","name":"MiniMax-M2.5-highspeed","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-02-13","last_updated":"2026-02-13","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0,"output":0,"cache_read":0,"cache_write":0}},"MiniMax-M2.7":{"id":"MiniMax-M2.7","name":"MiniMax-M2.7","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-03-18","last_updated":"2026-03-18","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0,"output":0,"cache_read":0,"cache_write":0}},"MiniMax-M2":{"id":"MiniMax-M2","name":"MiniMax-M2","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-10-27","last_updated":"2025-10-27","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":196608,"output":128000},"cost":{"input":0,"output":0}},"MiniMax-M2.7-highspeed":{"id":"MiniMax-M2.7-highspeed","name":"MiniMax-M2.7-highspeed","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-03-18","last_updated":"2026-03-18","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0,"output":0,"cache_read":0,"cache_write":0}},"MiniMax-M2.1":{"id":"MiniMax-M2.1","name":"MiniMax-M2.1","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-12-23","last_updated":"2025-12-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0,"output":0}}}},"evroc":{"id":"evroc","env":["EVROC_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://models.think.evroc.com/v1","name":"evroc","doc":"https://docs.evroc.com/products/think/overview.html","models":{"mistralai/Voxtral-Small-24B-2507":{"id":"mistralai/Voxtral-Small-24B-2507","name":"Voxtral Small 24B","family":"voxtral","attachment":false,"reasoning":false,"tool_call":false,"release_date":"2025-03-01","last_updated":"2025-03-01","modalities":{"input":["audio","text"],"output":["text"]},"open_weights":true,"limit":{"context":32000,"output":32000},"cost":{"input":0.00236,"output":0.00236,"output_audio":2.36}},"mistralai/devstral-small-2-24b-instruct-2512":{"id":"mistralai/devstral-small-2-24b-instruct-2512","name":"Devstral Small 2 24B Instruct 2512","family":"devstral","attachment":false,"reasoning":false,"tool_call":true,"release_date":"2025-12-01","last_updated":"2025-12-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":32768,"output":32768},"cost":{"input":0.12,"output":0.47}},"mistralai/Magistral-Small-2509":{"id":"mistralai/Magistral-Small-2509","name":"Magistral Small 1.2 24B","family":"magistral-small","attachment":false,"reasoning":false,"tool_call":false,"release_date":"2025-06-01","last_updated":"2025-06-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":131072},"cost":{"input":0.59,"output":2.36}},"KBLab/kb-whisper-large":{"id":"KBLab/kb-whisper-large","name":"KB Whisper","family":"whisper","attachment":false,"reasoning":false,"tool_call":false,"release_date":"2024-10-01","last_updated":"2024-10-01","modalities":{"input":["audio"],"output":["text"]},"open_weights":true,"limit":{"context":448,"output":448},"cost":{"input":0.00236,"output":0.00236,"output_audio":2.36}},"moonshotai/Kimi-K2.5":{"id":"moonshotai/Kimi-K2.5","name":"Kimi K2.5","family":"kimi","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"release_date":"2026-01-27","last_updated":"2026-01-27","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":1.47,"output":5.9}},"nvidia/Llama-3.3-70B-Instruct-FP8":{"id":"nvidia/Llama-3.3-70B-Instruct-FP8","name":"Llama 3.3 70B","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"release_date":"2024-12-01","last_updated":"2024-12-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":32768},"cost":{"input":1.18,"output":1.18}},"intfloat/multilingual-e5-large-instruct":{"id":"intfloat/multilingual-e5-large-instruct","name":"E5 Multi-Lingual Large Embeddings 0.6B","family":"text-embedding","attachment":false,"reasoning":false,"tool_call":false,"release_date":"2024-06-01","last_updated":"2024-06-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":512,"output":512},"cost":{"input":0.12,"output":0.12}},"microsoft/Phi-4-multimodal-instruct":{"id":"microsoft/Phi-4-multimodal-instruct","name":"Phi-4 15B","family":"phi","attachment":false,"reasoning":false,"tool_call":false,"release_date":"2025-01-01","last_updated":"2025-01-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":32000,"output":32000},"cost":{"input":0.24,"output":0.47}},"Qwen/Qwen3-Embedding-8B":{"id":"Qwen/Qwen3-Embedding-8B","name":"Qwen3 Embedding 8B","family":"text-embedding","attachment":false,"reasoning":false,"tool_call":false,"release_date":"2025-07-30","last_updated":"2025-07-30","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":40960,"output":4096},"cost":{"input":0.12,"output":0.12}},"Qwen/Qwen3-30B-A3B-Instruct-2507-FP8":{"id":"Qwen/Qwen3-30B-A3B-Instruct-2507-FP8","name":"Qwen3 30B 2507","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"release_date":"2025-07-30","last_updated":"2025-07-30","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":64000,"output":64000},"cost":{"input":0.35,"output":1.42}},"Qwen/Qwen3-VL-30B-A3B-Instruct":{"id":"Qwen/Qwen3-VL-30B-A3B-Instruct","name":"Qwen3 VL 30B","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"release_date":"2025-07-30","last_updated":"2025-07-30","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":100000,"output":100000},"cost":{"input":0.24,"output":0.94}},"openai/gpt-oss-120b":{"id":"openai/gpt-oss-120b","name":"GPT OSS 120B","family":"gpt-oss","attachment":false,"reasoning":true,"tool_call":true,"release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":65536,"output":65536},"cost":{"input":0.24,"output":0.94}},"openai/whisper-large-v3":{"id":"openai/whisper-large-v3","name":"Whisper 3 Large","family":"whisper","attachment":false,"reasoning":false,"tool_call":false,"release_date":"2024-10-01","last_updated":"2024-10-01","modalities":{"input":["audio"],"output":["text"]},"open_weights":true,"limit":{"context":448,"output":4096},"cost":{"input":0.00236,"output":0.00236,"output_audio":2.36}}}},"nvidia":{"id":"nvidia","env":["NVIDIA_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://integrate.api.nvidia.com/v1","name":"Nvidia","doc":"https://docs.api.nvidia.com/nim/","models":{"z-ai/glm4.7":{"id":"z-ai/glm4.7","name":"GLM-4.7","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2025-04","release_date":"2025-12-22","last_updated":"2025-12-22","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0,"output":0}},"z-ai/glm-5.1":{"id":"z-ai/glm-5.1","name":"GLM-5.1","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-03-27","last_updated":"2026-03-27","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":131072},"cost":{"input":0,"output":0}},"upstage/solar-10_7b-instruct":{"id":"upstage/solar-10_7b-instruct","name":"solar-10.7b-instruct","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2024-06-05","last_updated":"2025-04-10","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":8192},"cost":{"input":0,"output":0}},"sarvamai/sarvam-m":{"id":"sarvamai/sarvam-m","name":"sarvam-m","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2025-07-25","last_updated":"2025-07-25","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":8192},"cost":{"input":0,"output":0}},"mistralai/magistral-small-2506":{"id":"mistralai/magistral-small-2506","name":"Magistral Small 2506","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-09-25","last_updated":"2025-09-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":32768,"input":32768,"output":32768},"cost":{"input":0,"output":0}},"mistralai/mistral-large-3-675b-instruct-2512":{"id":"mistralai/mistral-large-3-675b-instruct-2512","name":"Mistral Large 3 675B Instruct 2512","family":"mistral-large","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-12-02","last_updated":"2025-12-02","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0,"output":0}},"mistralai/mistral-nemotron":{"id":"mistralai/mistral-nemotron","name":"mistral-nemotron","family":"nemotron","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2025-06-11","last_updated":"2025-06-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":8192},"cost":{"input":0,"output":0}},"mistralai/mixtral-8x7b-instruct":{"id":"mistralai/mixtral-8x7b-instruct","name":"Mistral: Mixtral 8x7B Instruct","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2023-12-10","last_updated":"2026-03-15","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":32768,"output":16384},"cost":{"input":0,"output":0}},"mistralai/mistral-7b-instruct-v03":{"id":"mistralai/mistral-7b-instruct-v03","name":"Mistral-7B-Instruct-v0.3","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-04-01","last_updated":"2025-04-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":65536,"output":65536},"cost":{"input":0,"output":0}},"mistralai/mixtral-8x22b-instruct":{"id":"mistralai/mixtral-8x22b-instruct","name":"Mistral: Mixtral 8x22B Instruct","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2024-04-17","last_updated":"2024-04-17","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":65536,"output":13108},"cost":{"input":0,"output":0}},"mistralai/mistral-medium-3-instruct":{"id":"mistralai/mistral-medium-3-instruct","name":"Mistral Medium 3","family":"mistral-medium","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-09-25","last_updated":"2025-09-25","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"input":131072,"output":32768},"cost":{"input":0,"output":0}},"mistralai/mistral-small-4-119b-2603":{"id":"mistralai/mistral-small-4-119b-2603","name":"mistral-small-4-119b-2603","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2026-03-16","last_updated":"2026-03-16","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":8192},"cost":{"input":0,"output":0}},"mistralai/devstral-2-123b-instruct-2512":{"id":"mistralai/devstral-2-123b-instruct-2512","name":"Devstral-2-123B-Instruct-2512","family":"devstral","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-12","release_date":"2025-12-08","last_updated":"2025-12-09","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0,"output":0}},"qwen/qwen2.5-coder-32b-instruct":{"id":"qwen/qwen2.5-coder-32b-instruct","name":"Qwen2.5 Coder 32b Instruct","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2024-11-06","last_updated":"2024-11-06","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4096},"cost":{"input":0,"output":0}},"qwen/qwen3.5-122b-a10b":{"id":"qwen/qwen3.5-122b-a10b","name":"Qwen3.5 122B-A10B","family":"qwen","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-02-23","last_updated":"2026-02-23","modalities":{"input":["text","image","video","audio"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":65536},"cost":{"input":0,"output":0}},"qwen/qwen3-next-80b-a3b-instruct":{"id":"qwen/qwen3-next-80b-a3b-instruct","name":"Qwen3-Next-80B-A3B-Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-12","release_date":"2024-12-01","last_updated":"2025-09-05","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"output":16384},"cost":{"input":0,"output":0}},"qwen/qwen-image-edit":{"id":"qwen/qwen-image-edit","name":"Qwen Image Edit","family":"qwen","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":true,"release_date":"2025-08-19","last_updated":"2025-08-19","modalities":{"input":["text","image"],"output":["image"]},"open_weights":false,"limit":{"context":0,"output":0},"cost":{"input":0,"output":0}},"qwen/qwen3-coder-480b-a35b-instruct":{"id":"qwen/qwen3-coder-480b-a35b-instruct","name":"Qwen3 Coder 480B A35B Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-07-23","last_updated":"2025-07-23","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"output":66536},"cost":{"input":0,"output":0}},"qwen/qwen3-next-80b-a3b-thinking":{"id":"qwen/qwen3-next-80b-a3b-thinking","name":"Qwen3-Next-80B-A3B-Thinking","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-12","release_date":"2024-12-01","last_updated":"2025-09-05","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":16384},"cost":{"input":0,"output":0}},"qwen/qwen-image":{"id":"qwen/qwen-image","name":"Qwen Image","family":"qwen","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":true,"release_date":"2025-08-07","last_updated":"2025-08-07","modalities":{"input":["text","image"],"output":["image"]},"open_weights":false,"limit":{"context":0,"output":0},"cost":{"input":0,"output":0}},"qwen/qwen3.5-397b-a17b":{"id":"qwen/qwen3.5-397b-a17b","name":"Qwen3.5-397B-A17B","family":"qwen","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2026-01","release_date":"2026-02-16","last_updated":"2026-02-16","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":8192},"cost":{"input":0,"output":0}},"black-forest-labs/flux_1-schnell":{"id":"black-forest-labs/flux_1-schnell","name":"FLUX.1-schnell","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":false,"knowledge":"2024-07","release_date":"2024-08-01","last_updated":"2026-02-04","modalities":{"input":["text"],"output":["image"]},"open_weights":true,"limit":{"context":77,"input":77,"output":0},"cost":{"input":0,"output":0}},"black-forest-labs/flux_2-klein-4b":{"id":"black-forest-labs/flux_2-klein-4b","name":"FLUX.2 Klein 4B","family":"flux","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2025-06","release_date":"2026-01-14","last_updated":"2026-01-31","modalities":{"input":["image","text"],"output":["image"]},"open_weights":true,"limit":{"context":40960,"output":40960},"cost":{"input":0,"output":0}},"black-forest-labs/flux_1-kontext-dev":{"id":"black-forest-labs/flux_1-kontext-dev","name":"FLUX.1-Kontext-dev","attachment":true,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2025-08-12","last_updated":"2025-08-12","modalities":{"input":["text","image"],"output":["image"]},"open_weights":true,"limit":{"context":40960,"output":40960},"cost":{"input":0,"output":0}},"black-forest-labs/flux.1-dev":{"id":"black-forest-labs/flux.1-dev","name":"FLUX.1-dev","family":"flux","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2024-08","release_date":"2024-08-01","last_updated":"2025-09-05","modalities":{"input":["text"],"output":["image"]},"open_weights":false,"limit":{"context":4096,"output":0},"cost":{"input":0,"output":0}},"moonshotai/kimi-k2-thinking":{"id":"moonshotai/kimi-k2-thinking","name":"Kimi K2 Thinking","family":"kimi-thinking","attachment":false,"reasoning":true,"tool_call":true,"interleaved":true,"structured_output":true,"temperature":true,"knowledge":"2025-07","release_date":"2025-11","last_updated":"2025-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0,"output":0,"cache_read":0,"cache_write":0}},"moonshotai/kimi-k2-instruct":{"id":"moonshotai/kimi-k2-instruct","name":"Kimi K2 Instruct","family":"kimi","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-01","release_date":"2025-01-01","last_updated":"2025-09-05","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":8192},"cost":{"input":0,"output":0}},"moonshotai/kimi-k2.6":{"id":"moonshotai/kimi-k2.6","name":"Kimi K2.6","family":"kimi-k2.6","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-04-21","last_updated":"2026-04-21","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0,"output":0}},"moonshotai/kimi-k2-instruct-0905":{"id":"moonshotai/kimi-k2-instruct-0905","name":"Kimi K2 0905","family":"kimi","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2025-09-05","last_updated":"2025-09-05","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0,"output":0}},"abacusai/dracarys-llama-3_1-70b-instruct":{"id":"abacusai/dracarys-llama-3_1-70b-instruct","name":"dracarys-llama-3.1-70b-instruct","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2024-09-11","last_updated":"2025-05-22","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":8192},"cost":{"input":0,"output":0}},"deepseek-ai/deepseek-v3.2":{"id":"deepseek-ai/deepseek-v3.2","name":"DeepSeek V3.2","family":"deepseek","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-07","release_date":"2025-12-01","last_updated":"2025-12-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":163840,"output":65536},"cost":{"input":0,"output":0}},"deepseek-ai/deepseek-v3.1-terminus":{"id":"deepseek-ai/deepseek-v3.1-terminus","name":"DeepSeek V3.1 Terminus","family":"deepseek","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-09-22","last_updated":"2025-09-22","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":8192},"cost":{"input":0,"output":0}},"deepseek-ai/deepseek-v4-flash":{"id":"deepseek-ai/deepseek-v4-flash","name":"DeepSeek V4 Flash","family":"deepseek-flash","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-05","release_date":"2026-04-24","last_updated":"2026-04-24","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1048576,"output":393216},"cost":{"input":0.14,"output":0.28,"cache_read":0.0028}},"deepseek-ai/deepseek-v4-pro":{"id":"deepseek-ai/deepseek-v4-pro","name":"DeepSeek V4 Pro","family":"deepseek-thinking","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-05","release_date":"2026-04-24","last_updated":"2026-04-24","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1048576,"output":393216},"cost":{"input":0.435,"output":0.87,"cache_read":0.003625}},"nvidia/cosmos-predict1-5b":{"id":"nvidia/cosmos-predict1-5b","name":"cosmos-predict1-5b","attachment":true,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2025-03-18","last_updated":"2025-03-18","modalities":{"input":["text","image","video"],"output":["video"]},"open_weights":true,"limit":{"context":0,"output":4096},"cost":{"input":0,"output":0}},"nvidia/magpie-tts-zeroshot":{"id":"nvidia/magpie-tts-zeroshot","name":"magpie-tts-zeroshot","attachment":true,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2025-05-22","last_updated":"2025-06-12","modalities":{"input":["text","audio"],"output":["audio"]},"open_weights":true,"limit":{"context":0,"output":4096},"cost":{"input":0,"output":0}},"nvidia/sparsedrive":{"id":"nvidia/sparsedrive","name":"sparsedrive","attachment":true,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-03-18","last_updated":"2025-07-20","modalities":{"input":["video"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":8192},"cost":{"input":0,"output":0}},"nvidia/streampetr":{"id":"nvidia/streampetr","name":"streampetr","attachment":true,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-11-13","last_updated":"2025-11-13","modalities":{"input":["video"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":8192},"cost":{"input":0,"output":0}},"nvidia/nemotron-3-nano-omni-30b-a3b-reasoning":{"id":"nvidia/nemotron-3-nano-omni-30b-a3b-reasoning","name":"Nemotron 3 Nano Omni","family":"nemotron","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-04-28","last_updated":"2026-04-28","modalities":{"input":["text","image","video","audio"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"output":65536},"cost":{"input":0,"output":0}},"nvidia/nemotron-3-nano-30b-a3b":{"id":"nvidia/nemotron-3-nano-30b-a3b","name":"nemotron-3-nano-30b-a3b","family":"nemotron","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-09","release_date":"2024-12","last_updated":"2024-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":131072},"cost":{"input":0,"output":0}},"nvidia/nv-embed-v1":{"id":"nvidia/nv-embed-v1","name":"nv-embed-v1","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2024-06-07","last_updated":"2025-07-22","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":32768,"output":2048},"cost":{"input":0,"output":0}},"nvidia/llama-nemotron-rerank-vl-1b-v2":{"id":"nvidia/llama-nemotron-rerank-vl-1b-v2","name":"llama-nemotron-rerank-vl-1b-v2","family":"nemotron","attachment":true,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2026-03-31","last_updated":"2026-03-31","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4096},"cost":{"input":0,"output":0}},"nvidia/studiovoice":{"id":"nvidia/studiovoice","name":"studiovoice","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2024-10-03","last_updated":"2025-06-13","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":8192},"cost":{"input":0,"output":0}},"nvidia/cosmos-transfer2_5-2b":{"id":"nvidia/cosmos-transfer2_5-2b","name":"cosmos-transfer2.5-2b","attachment":true,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2026-02-26","last_updated":"2026-02-26","modalities":{"input":["text","image","video"],"output":["video"]},"open_weights":true,"limit":{"context":0,"output":4096},"cost":{"input":0,"output":0}},"nvidia/nemotron-3-content-safety":{"id":"nvidia/nemotron-3-content-safety","name":"nemotron-3-content-safety","family":"nemotron","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2026-04-16","last_updated":"2026-04-16","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4096},"cost":{"input":0,"output":0}},"nvidia/usdvalidate":{"id":"nvidia/usdvalidate","name":"usdvalidate","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2024-07-24","last_updated":"2025-01-08","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":0,"output":4096},"cost":{"input":0,"output":0}},"nvidia/llama-3_2-nemoretriever-300m-embed-v1":{"id":"nvidia/llama-3_2-nemoretriever-300m-embed-v1","name":"llama-3_2-nemoretriever-300m-embed-v1","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2025-07-24","last_updated":"2025-07-24","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":32768,"output":2048},"cost":{"input":0,"output":0}},"nvidia/llama-nemotron-embed-vl-1b-v2":{"id":"nvidia/llama-nemotron-embed-vl-1b-v2","name":"llama-nemotron-embed-vl-1b-v2","family":"nemotron","attachment":true,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2026-02-10","last_updated":"2026-02-10","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":32768,"output":2048},"cost":{"input":0,"output":0}},"nvidia/usdcode":{"id":"nvidia/usdcode","name":"usdcode","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2026-01-01","last_updated":"2026-01-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":4096},"cost":{"input":0,"output":0}},"nvidia/llama-3_1-nemotron-safety-guard-8b-v3":{"id":"nvidia/llama-3_1-nemotron-safety-guard-8b-v3","name":"llama-3.1-nemotron-safety-guard-8b-v3","family":"nemotron","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2025-10-28","last_updated":"2025-10-28","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4096},"cost":{"input":0,"output":0}},"nvidia/rerank-qa-mistral-4b":{"id":"nvidia/rerank-qa-mistral-4b","name":"rerank-qa-mistral-4b","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2024-03-17","last_updated":"2025-01-17","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4096},"cost":{"input":0,"output":0}},"nvidia/nvidia-nemotron-nano-9b-v2":{"id":"nvidia/nvidia-nemotron-nano-9b-v2","name":"nvidia-nemotron-nano-9b-v2","family":"nemotron","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-09","release_date":"2025-08-18","last_updated":"2025-08-18","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":131072},"cost":{"input":0,"output":0}},"nvidia/synthetic-video-detector":{"id":"nvidia/synthetic-video-detector","name":"synthetic-video-detector","attachment":true,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2026-04-16","last_updated":"2026-04-16","modalities":{"input":["video"],"output":["text"]},"open_weights":true,"limit":{"context":0,"output":4096},"cost":{"input":0,"output":0}},"nvidia/llama-3_3-nemotron-super-49b-v1_5":{"id":"nvidia/llama-3_3-nemotron-super-49b-v1_5","name":"Llama 3.3 Nemotron Super 49B v1.5","family":"nemotron","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2023-12","release_date":"2025-07-25","last_updated":"2025-07-25","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":131072},"cost":{"input":0,"output":0}},"nvidia/nv-embedcode-7b-v1":{"id":"nvidia/nv-embedcode-7b-v1","name":"nv-embedcode-7b-v1","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2025-03-17","last_updated":"2025-05-29","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":32768,"output":2048},"cost":{"input":0,"output":0}},"nvidia/cosmos-transfer1-7b":{"id":"nvidia/cosmos-transfer1-7b","name":"cosmos-transfer1-7b","attachment":true,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2025-06-13","last_updated":"2025-06-30","modalities":{"input":["text","image","video"],"output":["video"]},"open_weights":true,"limit":{"context":0,"output":4096},"cost":{"input":0,"output":0}},"nvidia/nemotron-mini-4b-instruct":{"id":"nvidia/nemotron-mini-4b-instruct","name":"nemotron-mini-4b-instruct","family":"nemotron","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2024-08-21","last_updated":"2024-08-26","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":8192},"cost":{"input":0,"output":0}},"nvidia/nemotron-voicechat":{"id":"nvidia/nemotron-voicechat","name":"nemotron-voicechat","family":"nemotron","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2026-03-16","last_updated":"2026-03-16","modalities":{"input":["text","audio"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":8192},"cost":{"input":0,"output":0}},"nvidia/riva-translate-4b-instruct-v1_1":{"id":"nvidia/riva-translate-4b-instruct-v1_1","name":"riva-translate-4b-instruct-v1_1","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2025-12-12","last_updated":"2025-12-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4096},"cost":{"input":0,"output":0}},"nvidia/llama-3_3-nemotron-super-49b-v1":{"id":"nvidia/llama-3_3-nemotron-super-49b-v1","name":"Llama 3.3 Nemotron Super 49B v1","family":"nemotron","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2023-12","release_date":"2025-04-07","last_updated":"2025-04-07","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":131072},"cost":{"input":0,"output":0}},"nvidia/nemotron-content-safety-reasoning-4b":{"id":"nvidia/nemotron-content-safety-reasoning-4b","name":"nemotron-content-safety-reasoning-4b","family":"nemotron","attachment":false,"reasoning":true,"tool_call":false,"temperature":false,"release_date":"2026-01-22","last_updated":"2026-01-22","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4096},"cost":{"input":0,"output":0}},"nvidia/nemotron-3-super-120b-a12b":{"id":"nvidia/nemotron-3-super-120b-a12b","name":"Nemotron 3 Super","family":"nemotron","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-04","release_date":"2026-03-11","last_updated":"2026-03-11","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.2,"output":0.8}},"nvidia/gliner-pii":{"id":"nvidia/gliner-pii","name":"gliner-pii","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2026-03-03","last_updated":"2026-03-03","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4096},"cost":{"input":0,"output":0}},"nvidia/bevformer":{"id":"nvidia/bevformer","name":"bevformer","attachment":true,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-03-18","last_updated":"2025-07-20","modalities":{"input":["video"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":8192},"cost":{"input":0,"output":0}},"nvidia/active-speaker-detection":{"id":"nvidia/active-speaker-detection","name":"Active Speaker Detection","attachment":true,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2026-04-16","last_updated":"2026-04-16","modalities":{"input":["video"],"output":["text"]},"open_weights":true,"limit":{"context":0,"output":4096},"cost":{"input":0,"output":0}},"minimaxai/minimax-m2.7":{"id":"minimaxai/minimax-m2.7","name":"MiniMax-M2.7","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-03-18","last_updated":"2026-04-11","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0,"output":0}},"minimaxai/minimax-m2.5":{"id":"minimaxai/minimax-m2.5","name":"MiniMax-M2.5","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-08","release_date":"2026-02-12","last_updated":"2026-02-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0,"output":0}},"microsoft/phi-4-multimodal-instruct":{"id":"microsoft/phi-4-multimodal-instruct","name":"Phi 4 Multimodal","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"release_date":"2025-07-26","last_updated":"2025-07-26","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":16384},"cost":{"input":0,"output":0}},"microsoft/phi-4-mini-instruct":{"id":"microsoft/phi-4-mini-instruct","name":"Phi-4-Mini","family":"phi","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-12","release_date":"2024-12-01","last_updated":"2025-09-05","modalities":{"input":["text","image","audio"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":8192},"cost":{"input":0,"output":0}},"stepfun-ai/step-3.7-flash":{"id":"stepfun-ai/step-3.7-flash","name":"Step 3.7 Flash","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-05-28","last_updated":"2026-05-28","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"output":16384},"cost":{"input":0,"output":0}},"stepfun-ai/step-3.5-flash":{"id":"stepfun-ai/step-3.5-flash","name":"Step 3.5 Flash","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-02-02","last_updated":"2026-02-02","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"output":16384},"cost":{"input":0,"output":0}},"meta/llama-3.1-70b-instruct":{"id":"meta/llama-3.1-70b-instruct","name":"Llama 3.1 70b Instruct","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2024-07-16","last_updated":"2024-07-16","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4096},"cost":{"input":0,"output":0}},"meta/llama-guard-4-12b":{"id":"meta/llama-guard-4-12b","name":"Llama Guard 4 12B","family":"llama","attachment":true,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-04-05","last_updated":"2026-04-30","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":16384},"cost":{"input":0,"output":0}},"meta/llama-4-maverick-17b-128e-instruct":{"id":"meta/llama-4-maverick-17b-128e-instruct","name":"Llama 4 Maverick 17b 128e Instruct","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-02","release_date":"2025-04-01","last_updated":"2025-04-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4096},"cost":{"input":0,"output":0}},"meta/esm2-650m":{"id":"meta/esm2-650m","name":"esm2-650m","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2024-08-29","last_updated":"2025-03-10","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":8192},"cost":{"input":0,"output":0}},"meta/llama-3.2-3b-instruct":{"id":"meta/llama-3.2-3b-instruct","name":"Llama 3.2 3B Instruct","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"structured_output":true,"temperature":true,"release_date":"2024-09-18","last_updated":"2024-09-18","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":32768,"output":32000},"cost":{"input":0,"output":0}},"meta/llama-3.2-11b-vision-instruct":{"id":"meta/llama-3.2-11b-vision-instruct","name":"Llama 3.2 11b Vision Instruct","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2023-12","release_date":"2024-09-18","last_updated":"2024-09-18","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4096},"cost":{"input":0,"output":0}},"meta/llama-3.2-1b-instruct":{"id":"meta/llama-3.2-1b-instruct","name":"Llama 3.2 1b Instruct","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2023-12","release_date":"2024-09-18","last_updated":"2024-09-18","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4096},"cost":{"input":0,"output":0}},"meta/esmfold":{"id":"meta/esmfold","name":"esmfold","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2024-03-15","last_updated":"2025-06-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":8192},"cost":{"input":0,"output":0}},"meta/llama-3.1-8b-instruct":{"id":"meta/llama-3.1-8b-instruct","name":"Llama 3.1 8B Instruct","family":"llama","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2023-12","release_date":"2025-01-01","last_updated":"2025-01-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":16000,"output":4096},"cost":{"input":0,"output":0}},"meta/llama-3.3-70b-instruct":{"id":"meta/llama-3.3-70b-instruct","name":"Llama 3.3 70b Instruct","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2024-11-26","last_updated":"2024-11-26","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4096},"cost":{"input":0,"output":0}},"meta/llama-3.2-90b-vision-instruct":{"id":"meta/llama-3.2-90b-vision-instruct","name":"Llama-3.2-90B-Vision-Instruct","family":"llama","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2023-12","release_date":"2024-09-25","last_updated":"2024-09-25","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":8192},"cost":{"input":0,"output":0}},"baai/bge-m3":{"id":"baai/bge-m3","name":"BGE M3","family":"bge","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2024-01-30","last_updated":"2026-04-30","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":8192,"output":1024},"cost":{"input":0,"output":0}},"google/gemma-4-31b-it":{"id":"google/gemma-4-31b-it","name":"Gemma-4-31B-IT","family":"gemma","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-04-02","last_updated":"2026-04-02","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"output":16384},"cost":{"input":0,"output":0}},"google/gemma-2-2b-it":{"id":"google/gemma-2-2b-it","name":"Gemma 2 2b It","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2024-07-16","last_updated":"2024-07-16","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4096},"cost":{"input":0,"output":0}},"google/gemma-3n-e4b-it":{"id":"google/gemma-3n-e4b-it","name":"Gemma 3n E4b It","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-06","release_date":"2025-06-03","last_updated":"2025-06-03","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4096},"cost":{"input":0,"output":0}},"google/google-paligemma":{"id":"google/google-paligemma","name":"paligemma","attachment":true,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2024-05-14","last_updated":"2024-08-26","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":8192},"cost":{"input":0,"output":0}},"google/gemma-3n-e2b-it":{"id":"google/gemma-3n-e2b-it","name":"Gemma 3n E2b It","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-06","release_date":"2025-06-12","last_updated":"2025-06-12","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4096},"cost":{"input":0,"output":0}},"google/gemma-3-27b-it":{"id":"google/gemma-3-27b-it","name":"Gemma-3-27B-IT","family":"gemma","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-12","release_date":"2024-12-01","last_updated":"2025-09-05","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":8192},"cost":{"input":0,"output":0}},"openai/gpt-oss-120b":{"id":"openai/gpt-oss-120b","name":"GPT-OSS-120B","family":"gpt-oss","attachment":true,"reasoning":true,"tool_call":false,"temperature":true,"knowledge":"2025-08","release_date":"2025-08-04","last_updated":"2025-08-14","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":8192},"cost":{"input":0,"output":0}},"openai/gpt-oss-20b":{"id":"openai/gpt-oss-20b","name":"GPT OSS 20B","family":"gpt-oss","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":32768},"cost":{"input":0,"output":0}},"openai/whisper-large-v3":{"id":"openai/whisper-large-v3","name":"Whisper Large v3","family":"whisper","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"knowledge":"2023-09","release_date":"2023-09-01","last_updated":"2025-09-05","modalities":{"input":["audio"],"output":["text"]},"open_weights":true,"limit":{"context":0,"output":4096},"cost":{"input":0,"output":0}},"bytedance/seed-oss-36b-instruct":{"id":"bytedance/seed-oss-36b-instruct","name":"ByteDance-Seed/Seed-OSS-36B-Instruct","family":"seed","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-09-04","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262000,"output":262000},"cost":{"input":0,"output":0}}}},"google-vertex-anthropic":{"id":"google-vertex-anthropic","env":["GOOGLE_VERTEX_PROJECT","GOOGLE_VERTEX_LOCATION","GOOGLE_APPLICATION_CREDENTIALS"],"npm":"@ai-sdk/google-vertex/anthropic","name":"Vertex (Anthropic)","doc":"https://cloud.google.com/vertex-ai/generative-ai/docs/partner-models/claude","models":{"claude-opus-4-7@default":{"id":"claude-opus-4-7@default","name":"Claude Opus 4.7","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2026-01-31","release_date":"2026-04-16","last_updated":"2026-04-16","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25,"tiers":[{"input":10,"output":37.5,"cache_read":1,"cache_write":12.5,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":10,"output":37.5,"cache_read":1,"cache_write":12.5}}},"claude-haiku-4-5@20251001":{"id":"claude-haiku-4-5@20251001","name":"Claude Haiku 4.5","family":"claude-haiku","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-02-28","release_date":"2025-10-15","last_updated":"2025-10-15","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":1,"output":5,"cache_read":0.1,"cache_write":1.25}},"claude-sonnet-4@20250514":{"id":"claude-sonnet-4@20250514","name":"Claude Sonnet 4","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-05-22","last_updated":"2025-05-22","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75}},"claude-opus-4-5@20251101":{"id":"claude-opus-4-5@20251101","name":"Claude Opus 4.5","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-11-01","last_updated":"2025-11-01","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25}},"claude-opus-4-1@20250805":{"id":"claude-opus-4-1@20250805","name":"Claude Opus 4.1","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":32000},"cost":{"input":15,"output":75,"cache_read":1.5,"cache_write":18.75}},"claude-sonnet-4-5@20250929":{"id":"claude-sonnet-4-5@20250929","name":"Claude Sonnet 4.5","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-07-31","release_date":"2025-09-29","last_updated":"2025-09-29","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75}},"claude-sonnet-4-6@default":{"id":"claude-sonnet-4-6@default","name":"Claude Sonnet 4.6","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-08-31","release_date":"2026-02-17","last_updated":"2026-03-13","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75,"tiers":[{"input":6,"output":22.5,"cache_read":0.6,"cache_write":7.5,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":6,"output":22.5,"cache_read":0.6,"cache_write":7.5}}},"claude-3-5-sonnet@20241022":{"id":"claude-3-5-sonnet@20241022","name":"Claude Sonnet 3.5 v2","family":"claude-sonnet","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-04-30","release_date":"2024-10-22","last_updated":"2024-10-22","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":8192},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75}},"claude-opus-4-8@default":{"id":"claude-opus-4-8@default","name":"Claude Opus 4.8","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2026-05-28","last_updated":"2026-05-28","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25,"tiers":[{"input":10,"output":37.5,"cache_read":1,"cache_write":12.5,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":10,"output":37.5,"cache_read":1,"cache_write":12.5}}},"claude-opus-4@20250514":{"id":"claude-opus-4@20250514","name":"Claude Opus 4","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-05-22","last_updated":"2025-05-22","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":32000},"cost":{"input":15,"output":75,"cache_read":1.5,"cache_write":18.75}},"claude-3-7-sonnet@20250219":{"id":"claude-3-7-sonnet@20250219","name":"Claude Sonnet 3.7","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-10-31","release_date":"2025-02-19","last_updated":"2025-02-19","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75}},"claude-3-5-haiku@20241022":{"id":"claude-3-5-haiku@20241022","name":"Claude Haiku 3.5","family":"claude-haiku","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-07-31","release_date":"2024-10-22","last_updated":"2024-10-22","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":8192},"cost":{"input":0.8,"output":4,"cache_read":0.08,"cache_write":1}},"claude-opus-4-6@default":{"id":"claude-opus-4-6@default","name":"Claude Opus 4.6","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-05-31","release_date":"2026-02-05","last_updated":"2026-03-13","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25,"tiers":[{"input":10,"output":37.5,"cache_read":1,"cache_write":12.5,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":10,"output":37.5,"cache_read":1,"cache_write":12.5}}}}},"routing-run":{"id":"routing-run","env":["ROUTING_RUN_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://ai.routing.sh/v1","name":"routing.run","doc":"https://docs.routing.run/api-reference/models","models":{"route/mistral-large-3":{"id":"route/mistral-large-3","name":"Mistral Large 3","family":"mistral-large","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-11","release_date":"2024-11-01","last_updated":"2025-12-02","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":32768},"cost":{"input":0.5,"output":1.5}},"route/mistral-small-2503":{"id":"route/mistral-small-2503","name":"Mistral Small 2503","family":"mistral-small","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-06","release_date":"2026-03-16","last_updated":"2026-03-16","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":32768},"cost":{"input":0.15,"output":0.6}},"route/mimo-v2.5-pro-6bit":{"id":"route/mimo-v2.5-pro-6bit","name":"MiMo V2.5 Pro 6bit","family":"mimo","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2024-12","release_date":"2026-04-22","last_updated":"2026-04-22","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":1000000,"output":262144},"cost":{"input":0.45,"output":1.35,"cache_read":0.2,"tiers":[{"input":2,"output":6,"cache_read":0.4,"tier":{"type":"context","size":256000}}],"context_over_200k":{"input":2,"output":6,"cache_read":0.4}}},"route/gemma-4-31b-it":{"id":"route/gemma-4-31b-it","name":"Gemma 4 31B IT","family":"gemma","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-04-02","last_updated":"2026-04-02","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":65536},"cost":{"input":0.1,"output":0.3}},"route/qwen3.6-27b":{"id":"route/qwen3.6-27b","name":"Qwen3.6 27B","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-04-22","last_updated":"2026-04-22","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":202000,"output":32768},"cost":{"input":1.1,"output":3.3}},"route/deepseek-v3.2":{"id":"route/deepseek-v3.2","name":"DeepSeek V3.2","family":"deepseek","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2024-07","release_date":"2025-12-01","last_updated":"2025-12-01","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":163840,"output":163840},"cost":{"input":0.4928,"output":0.7392}},"route/minimax-m2.7-highspeed":{"id":"route/minimax-m2.7-highspeed","name":"MiniMax M2.7 Highspeed","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"release_date":"2026-03-18","last_updated":"2026-03-18","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":100000,"output":131072},"cost":{"input":0.33,"output":1.32,"cache_read":0.06,"cache_write":0.375}},"route/kimi-k2.6":{"id":"route/kimi-k2.6","name":"Kimi K2.6","family":"kimi-k2.6","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-04-21","last_updated":"2026-04-21","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.462,"output":2.42,"cache_read":0.16}},"route/deepseek-v4-flash-6bit":{"id":"route/deepseek-v4-flash-6bit","name":"DeepSeek V4 Flash 6bit","family":"deepseek-flash","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-05","release_date":"2026-04-24","last_updated":"2026-04-24","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1000000,"output":131072},"cost":{"input":0.4928,"output":0.7392,"cache_read":0.0028}},"route/qwen3.6-27b-202k":{"id":"route/qwen3.6-27b-202k","name":"Qwen3.6 27B 202K","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-04-22","last_updated":"2026-04-22","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":202000,"output":32768},"cost":{"input":1.1,"output":3.3}},"route/deepseek-v4-pro-6bit":{"id":"route/deepseek-v4-pro-6bit","name":"DeepSeek V4 Pro 6bit","family":"deepseek-thinking","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-05","release_date":"2026-04-24","last_updated":"2026-04-24","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1000000,"output":131072},"cost":{"input":0.4928,"output":0.7392,"cache_read":0.003625}},"route/kimi-k2.6-6bit":{"id":"route/kimi-k2.6-6bit","name":"Kimi K2.6 6bit","family":"kimi-k2.6","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-04-21","last_updated":"2026-04-21","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.462,"output":2.42,"cache_read":0.16}},"route/mistral-medium-2505":{"id":"route/mistral-medium-2505","name":"Mistral Medium 2505","family":"mistral-medium","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-05","release_date":"2025-05-07","last_updated":"2025-05-07","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":32768},"cost":{"input":0.4,"output":2}},"route/step-3.5-flash":{"id":"route/step-3.5-flash","name":"Step 3.5 Flash","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2025-01","release_date":"2026-01-29","last_updated":"2026-02-13","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"input":256000,"output":65536},"cost":{"input":0.096,"output":0.288,"cache_read":0.019}},"route/glm-5.1-6bit":{"id":"route/glm-5.1-6bit","name":"GLM 5.1 6bit","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-03-27","last_updated":"2026-03-27","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":202752,"output":65536},"cost":{"input":1,"output":3,"cache_read":0.26,"cache_write":0}},"route/stepfun-3.5-flash":{"id":"route/stepfun-3.5-flash","name":"StepFun 3.5 Flash","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2025-01","release_date":"2026-01-29","last_updated":"2026-02-13","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"input":256000,"output":65536},"cost":{"input":0.096,"output":0.288,"cache_read":0.019}},"route/minimax-m2.7":{"id":"route/minimax-m2.7","name":"MiniMax M2.7","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"release_date":"2026-03-18","last_updated":"2026-03-18","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":100000,"output":131072},"cost":{"input":0.33,"output":1.32,"cache_read":0.06,"cache_write":0.375}},"route/deepseek-v4-flash":{"id":"route/deepseek-v4-flash","name":"DeepSeek V4 Flash","family":"deepseek-flash","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-05","release_date":"2026-04-24","last_updated":"2026-04-24","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1000000,"output":131072},"cost":{"input":0.4928,"output":0.7392,"cache_read":0.0028}},"route/step-3.5-flash-2603":{"id":"route/step-3.5-flash-2603","name":"Step 3.5 Flash 2603","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2025-01","release_date":"2026-04-02","last_updated":"2026-04-02","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"input":256000,"output":65536},"cost":{"input":0.1,"output":0.3,"cache_read":0.02}},"route/minimax-m2.5":{"id":"route/minimax-m2.5","name":"MiniMax M2.5","family":"minimax","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2026-02-12","last_updated":"2026-02-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":100000,"output":131072},"cost":{"input":0.193,"output":1.238,"cache_read":0.03,"cache_write":0.375}},"route/minimax-m2.5-highspeed":{"id":"route/minimax-m2.5-highspeed","name":"MiniMax M2.5 Highspeed","family":"minimax","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2026-02-13","last_updated":"2026-02-13","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":100000,"output":131072},"cost":{"input":0.193,"output":1.238,"cache_read":0.06,"cache_write":0.375}},"route/mimo-v2.5":{"id":"route/mimo-v2.5","name":"MiMo V2.5","family":"mimo","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2024-12","release_date":"2026-04-22","last_updated":"2026-04-22","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":1000000,"output":262144},"cost":{"input":0.45,"output":1.35,"cache_read":0.2,"tiers":[{"input":2,"output":6,"cache_read":0.4,"tier":{"type":"context","size":256000}}],"context_over_200k":{"input":2,"output":6,"cache_read":0.4}}},"route/deepseek-v4-pro":{"id":"route/deepseek-v4-pro","name":"DeepSeek V4 Pro","family":"deepseek-thinking","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-05","release_date":"2026-04-24","last_updated":"2026-04-24","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1000000,"output":131072},"cost":{"input":0.4928,"output":0.7392,"cache_read":0.003625}},"route/kimi-k2.5":{"id":"route/kimi-k2.5","name":"Kimi K2.5","family":"kimi-k2.5","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-01","release_date":"2026-01","last_updated":"2026-01","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":32768},"cost":{"input":0.462,"output":2.42,"cache_read":0.1}},"route/glm-5.1":{"id":"route/glm-5.1","name":"GLM 5.1","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-03-27","last_updated":"2026-03-27","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":202752,"output":65536},"cost":{"input":1,"output":3,"cache_read":0.26,"cache_write":0}},"route/mimo-v2.5-pro":{"id":"route/mimo-v2.5-pro","name":"MiMo V2.5 Pro","family":"mimo","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2024-12","release_date":"2026-04-22","last_updated":"2026-04-22","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":1000000,"output":262144},"cost":{"input":0.45,"output":1.35,"cache_read":0.2,"tiers":[{"input":2,"output":6,"cache_read":0.4,"tier":{"type":"context","size":256000}}],"context_over_200k":{"input":2,"output":6,"cache_read":0.4}}}}},"xiaomi-token-plan-ams":{"id":"xiaomi-token-plan-ams","env":["XIAOMI_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://token-plan-ams.xiaomimimo.com/v1","name":"Xiaomi Token Plan (Europe)","doc":"https://platform.xiaomimimo.com/#/docs","models":{"mimo-v2.5-pro":{"id":"mimo-v2.5-pro","name":"MiMo-V2.5-Pro","family":"mimo","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2024-12","release_date":"2026-04-22","last_updated":"2026-04-22","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1048576,"output":131072},"cost":{"input":0,"output":0,"cache_read":0}},"mimo-v2.5-tts":{"id":"mimo-v2.5-tts","name":"MiMo-V2.5-TTS","family":"mimo","attachment":false,"reasoning":false,"tool_call":false,"release_date":"2026-04-22","last_updated":"2026-04-22","modalities":{"input":["text"],"output":["audio"]},"open_weights":true,"limit":{"context":8192,"output":8192},"cost":{"input":0,"output":0}},"mimo-v2.5":{"id":"mimo-v2.5","name":"MiMo-V2.5","family":"mimo","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2024-12","release_date":"2026-04-22","last_updated":"2026-04-22","modalities":{"input":["text","image","audio","video"],"output":["text"]},"open_weights":true,"limit":{"context":1048576,"output":131072},"cost":{"input":0,"output":0,"cache_read":0}},"mimo-v2-pro":{"id":"mimo-v2-pro","name":"MiMo-V2-Pro","family":"mimo","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2024-12","release_date":"2026-03-18","last_updated":"2026-03-18","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":131072},"cost":{"input":0,"output":0,"cache_read":0}},"mimo-v2.5-tts-voiceclone":{"id":"mimo-v2.5-tts-voiceclone","name":"MiMo-V2.5-TTS-VoiceClone","family":"mimo","attachment":false,"reasoning":false,"tool_call":false,"release_date":"2026-04-22","last_updated":"2026-04-22","modalities":{"input":["text"],"output":["audio"]},"open_weights":true,"limit":{"context":8192,"output":8192},"cost":{"input":0,"output":0}},"mimo-v2.5-tts-voicedesign":{"id":"mimo-v2.5-tts-voicedesign","name":"MiMo-V2.5-TTS-VoiceDesign","family":"mimo","attachment":false,"reasoning":false,"tool_call":false,"release_date":"2026-04-22","last_updated":"2026-04-22","modalities":{"input":["text"],"output":["audio"]},"open_weights":true,"limit":{"context":8192,"output":8192},"cost":{"input":0,"output":0}},"mimo-v2-omni":{"id":"mimo-v2-omni","name":"MiMo-V2-Omni","family":"mimo","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2024-12","release_date":"2026-03-18","last_updated":"2026-03-18","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"output":131072},"cost":{"input":0,"output":0,"cache_read":0}},"mimo-v2-tts":{"id":"mimo-v2-tts","name":"MiMo-V2-TTS","family":"mimo","attachment":false,"reasoning":false,"tool_call":false,"release_date":"2026-03-18","last_updated":"2026-03-18","modalities":{"input":["text"],"output":["audio"]},"open_weights":true,"limit":{"context":8192,"output":8192},"cost":{"input":0,"output":0}}}},"deepinfra":{"id":"deepinfra","env":["DEEPINFRA_API_KEY"],"npm":"@ai-sdk/deepinfra","name":"Deep Infra","doc":"https://deepinfra.com/models","models":{"XiaomiMiMo/MiMo-V2.5":{"id":"XiaomiMiMo/MiMo-V2.5","name":"MiMo-V2.5","family":"mimo","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2024-12","release_date":"2026-04-22","last_updated":"2026-04-22","modalities":{"input":["text","image","audio","video"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":16384},"cost":{"input":0.4,"output":2,"cache_read":0.08,"tiers":[{"input":0.8,"output":4,"cache_read":0.16,"tier":{"type":"context","size":256000}}],"context_over_200k":{"input":0.8,"output":4,"cache_read":0.16}}},"XiaomiMiMo/MiMo-V2.5-Pro":{"id":"XiaomiMiMo/MiMo-V2.5-Pro","name":"MiMo-V2.5-Pro","family":"mimo","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2024-12","release_date":"2026-04-22","last_updated":"2026-04-22","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1048576,"output":16384},"cost":{"input":1,"output":3,"cache_read":0.2,"tiers":[{"input":2,"output":6,"cache_read":0.4,"tier":{"type":"context","size":256000}}],"context_over_200k":{"input":2,"output":6,"cache_read":0.4}}},"MiniMaxAI/MiniMax-M2.5":{"id":"MiniMaxAI/MiniMax-M2.5","name":"MiniMax M2.5","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2025-06","release_date":"2026-02-12","last_updated":"2026-02-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0.27,"output":0.95,"cache_read":0.03,"cache_write":0.375}},"MiniMaxAI/MiniMax-M2":{"id":"MiniMaxAI/MiniMax-M2","name":"MiniMax M2","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2024-10","release_date":"2025-11-13","last_updated":"2025-11-13","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":32768},"cost":{"input":0.254,"output":1.02}},"MiniMaxAI/MiniMax-M2.1":{"id":"MiniMaxAI/MiniMax-M2.1","name":"MiniMax M2.1","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2025-06","release_date":"2025-12-23","last_updated":"2025-12-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":196608,"output":196608},"cost":{"input":0.28,"output":1.2}},"zai-org/GLM-4.7":{"id":"zai-org/GLM-4.7","name":"GLM-4.7","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2025-04","release_date":"2025-12-22","last_updated":"2025-12-22","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":202752,"output":16384},"cost":{"input":0.43,"output":1.75,"cache_read":0.08}},"zai-org/GLM-5":{"id":"zai-org/GLM-5","name":"GLM-5","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2025-12","release_date":"2026-02-12","last_updated":"2026-02-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":202752,"output":16384},"cost":{"input":0.8,"output":2.56,"cache_read":0.16}},"zai-org/GLM-5.1":{"id":"zai-org/GLM-5.1","name":"GLM-5.1","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-04","release_date":"2026-04-07","last_updated":"2026-04-07","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":202752,"output":16384},"cost":{"input":1.4,"output":4.4,"cache_read":0.26}},"zai-org/GLM-4.5":{"id":"zai-org/GLM-4.5","name":"GLM-4.5","family":"glm","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-07-28","last_updated":"2025-07-28","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":98304},"status":"deprecated","cost":{"input":0.6,"output":2.2}},"zai-org/GLM-4.6V":{"id":"zai-org/GLM-4.6V","name":"GLM-4.6V","family":"glm","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2025-04","release_date":"2025-09-30","last_updated":"2025-09-30","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0.3,"output":0.9}},"zai-org/GLM-4.7-Flash":{"id":"zai-org/GLM-4.7-Flash","name":"GLM-4.7-Flash","family":"glm-flash","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2025-04","release_date":"2026-01-19","last_updated":"2026-01-19","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":202752,"output":16384},"cost":{"input":0.06,"output":0.4}},"zai-org/GLM-4.6":{"id":"zai-org/GLM-4.6","name":"GLM-4.6","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2025-04","release_date":"2025-09-30","last_updated":"2025-09-30","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0.43,"output":1.74,"cache_read":0.08}},"anthropic/claude-4-opus":{"id":"anthropic/claude-4-opus","name":"Claude Opus 4","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-06-12","last_updated":"2025-06-12","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":32000},"cost":{"input":16.5,"output":82.5}},"anthropic/claude-3-7-sonnet-latest":{"id":"anthropic/claude-3-7-sonnet-latest","name":"Claude Sonnet 3.7 (Latest)","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-10-31","release_date":"2025-03-13","last_updated":"2025-03-13","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":3.3,"output":16.5,"cache_read":0.33}},"moonshotai/Kimi-K2.6":{"id":"moonshotai/Kimi-K2.6","name":"Kimi K2.6","family":"kimi","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2024-04","release_date":"2026-04-21","last_updated":"2026-04-21","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":16384},"cost":{"input":0.75,"output":3.5,"cache_read":0.15}},"moonshotai/Kimi-K2-Instruct-0905":{"id":"moonshotai/Kimi-K2-Instruct-0905","name":"Kimi K2 0905","family":"kimi","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2025-09-05","last_updated":"2025-09-05","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.4,"output":2,"cache_read":0.15}},"moonshotai/Kimi-K2.5":{"id":"moonshotai/Kimi-K2.5","name":"Kimi K2.5","family":"kimi","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-01-27","last_updated":"2026-01-27","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":32768},"cost":{"input":0.5,"output":2.8}},"moonshotai/Kimi-K2-Instruct":{"id":"moonshotai/Kimi-K2-Instruct","name":"Kimi K2","family":"kimi","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2025-07-11","last_updated":"2025-07-11","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":32768},"cost":{"input":0.5,"output":2}},"moonshotai/Kimi-K2-Thinking":{"id":"moonshotai/Kimi-K2-Thinking","name":"Kimi K2 Thinking","family":"kimi-thinking","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2024-10","release_date":"2025-11-06","last_updated":"2025-11-07","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":32768},"cost":{"input":0.47,"output":2}},"meta-llama/Llama-3.1-70B-Instruct":{"id":"meta-llama/Llama-3.1-70B-Instruct","name":"Llama 3.1 70B","family":"llama","attachment":false,"reasoning":false,"tool_call":true,"release_date":"2024-07-23","last_updated":"2024-07-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":16384},"cost":{"input":0.4,"output":0.4}},"meta-llama/Llama-3.3-70B-Instruct-Turbo":{"id":"meta-llama/Llama-3.3-70B-Instruct-Turbo","name":"Llama 3.3 70B Turbo","family":"llama","attachment":false,"reasoning":false,"tool_call":true,"release_date":"2024-12-06","last_updated":"2024-12-06","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":16384},"cost":{"input":0.1,"output":0.32}},"meta-llama/Llama-3.1-8B-Instruct-Turbo":{"id":"meta-llama/Llama-3.1-8B-Instruct-Turbo","name":"Llama 3.1 8B Turbo","family":"llama","attachment":false,"reasoning":false,"tool_call":true,"release_date":"2024-07-23","last_updated":"2024-07-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":16384},"cost":{"input":0.02,"output":0.03}},"meta-llama/Llama-3.1-70B-Instruct-Turbo":{"id":"meta-llama/Llama-3.1-70B-Instruct-Turbo","name":"Llama 3.1 70B Turbo","family":"llama","attachment":false,"reasoning":false,"tool_call":true,"release_date":"2024-07-23","last_updated":"2024-07-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":16384},"cost":{"input":0.4,"output":0.4}},"meta-llama/Llama-3.1-8B-Instruct":{"id":"meta-llama/Llama-3.1-8B-Instruct","name":"Llama 3.1 8B","family":"llama","attachment":false,"reasoning":false,"tool_call":true,"release_date":"2024-07-23","last_updated":"2024-07-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":16384},"cost":{"input":0.02,"output":0.05}},"meta-llama/Llama-4-Maverick-17B-128E-Instruct-FP8":{"id":"meta-llama/Llama-4-Maverick-17B-128E-Instruct-FP8","name":"Llama 4 Maverick 17B FP8","family":"llama","attachment":false,"reasoning":false,"tool_call":true,"release_date":"2025-04-05","last_updated":"2025-04-05","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":1000000,"output":16384},"cost":{"input":0.15,"output":0.6}},"meta-llama/Llama-4-Scout-17B-16E-Instruct":{"id":"meta-llama/Llama-4-Scout-17B-16E-Instruct","name":"Llama 4 Scout 17B","family":"llama","attachment":false,"reasoning":false,"tool_call":true,"release_date":"2025-04-05","last_updated":"2025-04-05","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":10000000,"output":16384},"cost":{"input":0.08,"output":0.3}},"deepseek-ai/DeepSeek-V4-Flash":{"id":"deepseek-ai/DeepSeek-V4-Flash","name":"DeepSeek V4 Flash","family":"deepseek-flash","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-05","release_date":"2026-04-24","last_updated":"2026-04-24","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1048576,"output":16384},"cost":{"input":0.1,"output":0.2,"cache_read":0.02}},"deepseek-ai/DeepSeek-V4-Pro":{"id":"deepseek-ai/DeepSeek-V4-Pro","name":"DeepSeek V4 Pro","family":"deepseek-thinking","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-05","release_date":"2026-04-24","last_updated":"2026-04-24","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1048576,"output":16384},"cost":{"input":1.3,"output":2.6,"cache_read":0.1}},"deepseek-ai/DeepSeek-V3.2":{"id":"deepseek-ai/DeepSeek-V3.2","name":"DeepSeek-V3.2","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2024-12","release_date":"2025-12-02","last_updated":"2025-12-02","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":163840,"output":64000},"cost":{"input":0.26,"output":0.38,"cache_read":0.13}},"deepseek-ai/DeepSeek-R1-0528":{"id":"deepseek-ai/DeepSeek-R1-0528","name":"DeepSeek-R1-0528","attachment":false,"reasoning":true,"tool_call":false,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2024-07","release_date":"2025-05-28","last_updated":"2025-05-28","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":163840,"output":64000},"cost":{"input":0.5,"output":2.15,"cache_read":0.35}},"Qwen/Qwen3-Coder-480B-A35B-Instruct":{"id":"Qwen/Qwen3-Coder-480B-A35B-Instruct","name":"Qwen3 Coder 480B A35B Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-07-23","last_updated":"2025-07-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":66536},"cost":{"input":0.4,"output":1.6}},"Qwen/Qwen3-Coder-480B-A35B-Instruct-Turbo":{"id":"Qwen/Qwen3-Coder-480B-A35B-Instruct-Turbo","name":"Qwen3 Coder 480B A35B Instruct Turbo","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-07-23","last_updated":"2025-07-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":66536},"cost":{"input":0.3,"output":1.2}},"Qwen/Qwen3.6-35B-A3B":{"id":"Qwen/Qwen3.6-35B-A3B","name":"Qwen3.6 35B A3B","family":"qwen","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-04-01","last_updated":"2026-04-01","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":81920},"cost":{"input":0.2,"output":1}},"Qwen/Qwen3.5-35B-A3B":{"id":"Qwen/Qwen3.5-35B-A3B","name":"Qwen 3.5 35B A3B","family":"qwen","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-02-01","last_updated":"2026-04-20","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":81920},"cost":{"input":0.2,"output":0.95}},"Qwen/Qwen3.5-397B-A17B":{"id":"Qwen/Qwen3.5-397B-A17B","name":"Qwen 3.5 397B A17B","family":"qwen","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-02-01","last_updated":"2026-04-20","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":81920},"cost":{"input":0.54,"output":3.4}},"google/gemma-4-26B-A4B-it":{"id":"google/gemma-4-26B-A4B-it","name":"Gemma 4 26B A4B IT","family":"gemma","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-04-02","last_updated":"2026-04-02","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":32768},"cost":{"input":0.07,"output":0.34}},"google/gemma-4-31B-it":{"id":"google/gemma-4-31B-it","name":"Gemma 4 31B IT","family":"gemma","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-04-02","last_updated":"2026-04-02","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":32768},"cost":{"input":0.13,"output":0.38}},"openai/gpt-oss-120b":{"id":"openai/gpt-oss-120b","name":"GPT OSS 120B","family":"gpt-oss","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":16384},"cost":{"input":0.05,"output":0.24}},"openai/gpt-oss-20b":{"id":"openai/gpt-oss-20b","name":"GPT OSS 20B","family":"gpt-oss","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":16384},"cost":{"input":0.03,"output":0.14}}}},"zhipuai":{"id":"zhipuai","env":["ZHIPU_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://open.bigmodel.cn/api/paas/v4","name":"Zhipu AI","doc":"https://docs.z.ai/guides/overview/pricing","models":{"glm-5v-turbo":{"id":"glm-5v-turbo","name":"GLM-5V-Turbo","family":"glm","attachment":true,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"release_date":"2026-04-01","last_updated":"2026-04-01","modalities":{"input":["text","image","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":131072},"cost":{"input":5,"output":22,"cache_read":1.2,"cache_write":0}},"glm-5":{"id":"glm-5","name":"GLM-5","family":"glm","attachment":false,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"release_date":"2026-02-11","last_updated":"2026-02-11","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":1,"output":3.2,"cache_read":0.2,"cache_write":0}},"glm-5.1":{"id":"glm-5.1","name":"GLM-5.1","family":"glm","attachment":false,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-03-27","last_updated":"2026-03-27","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":131072},"cost":{"input":6,"output":24,"cache_read":1.3,"cache_write":0}},"glm-4.5-air":{"id":"glm-4.5-air","name":"GLM-4.5-Air","family":"glm-air","attachment":false,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-07-28","last_updated":"2025-07-28","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":98304},"cost":{"input":0.2,"output":1.1,"cache_read":0.03,"cache_write":0}},"glm-4.5":{"id":"glm-4.5","name":"GLM-4.5","family":"glm","attachment":false,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-07-28","last_updated":"2025-07-28","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":98304},"cost":{"input":0.6,"output":2.2,"cache_read":0.11,"cache_write":0}},"glm-4.7-flash":{"id":"glm-4.7-flash","name":"GLM-4.7-Flash","family":"glm-flash","attachment":false,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2026-01-19","last_updated":"2026-01-19","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":200000,"output":131072},"cost":{"input":0,"output":0,"cache_read":0,"cache_write":0}},"glm-4.6v":{"id":"glm-4.6v","name":"GLM-4.6V","family":"glm","attachment":true,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-12-08","last_updated":"2025-12-08","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":32768},"cost":{"input":0.3,"output":0.9}},"glm-4.5v":{"id":"glm-4.5v","name":"GLM-4.5V","family":"glm","attachment":true,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-08-11","last_updated":"2025-08-11","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":64000,"output":16384},"cost":{"input":0.6,"output":1.8}},"glm-4.7":{"id":"glm-4.7","name":"GLM-4.7","family":"glm","attachment":false,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2025-04","release_date":"2025-12-22","last_updated":"2025-12-22","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0.6,"output":2.2,"cache_read":0.11,"cache_write":0}},"glm-4.6":{"id":"glm-4.6","name":"GLM-4.6","family":"glm","attachment":false,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-09-30","last_updated":"2025-09-30","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0.6,"output":2.2,"cache_read":0.11,"cache_write":0}},"glm-4.7-flashx":{"id":"glm-4.7-flashx","name":"GLM-4.7-FlashX","family":"glm-flash","attachment":false,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2026-01-19","last_updated":"2026-01-19","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":200000,"output":131072},"cost":{"input":0.07,"output":0.4,"cache_read":0.01,"cache_write":0}},"glm-4.5-flash":{"id":"glm-4.5-flash","name":"GLM-4.5-Flash","family":"glm-flash","attachment":false,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-07-28","last_updated":"2025-07-28","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":98304},"cost":{"input":0,"output":0,"cache_read":0,"cache_write":0}}}},"io-net":{"id":"io-net","env":["IOINTELLIGENCE_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://api.intelligence.io.solutions/api/v1","name":"IO.NET","doc":"https://io.net/docs/guides/intelligence/io-intelligence","models":{"mistralai/Magistral-Small-2506":{"id":"mistralai/Magistral-Small-2506","name":"Magistral Small 2506","family":"magistral-small","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-06-01","last_updated":"2025-06-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":4096},"cost":{"input":0.5,"output":1.5,"cache_read":0.25,"cache_write":1}},"mistralai/Mistral-Large-Instruct-2411":{"id":"mistralai/Mistral-Large-Instruct-2411","name":"Mistral Large Instruct 2411","family":"mistral-large","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2024-11-01","last_updated":"2024-11-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":4096},"cost":{"input":2,"output":6,"cache_read":1,"cache_write":4}},"mistralai/Mistral-Nemo-Instruct-2407":{"id":"mistralai/Mistral-Nemo-Instruct-2407","name":"Mistral Nemo Instruct 2407","family":"mistral-nemo","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-05","release_date":"2024-07-01","last_updated":"2024-07-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4096},"cost":{"input":0.02,"output":0.04,"cache_read":0.01,"cache_write":0.04}},"mistralai/Devstral-Small-2505":{"id":"mistralai/Devstral-Small-2505","name":"Devstral Small 2505","family":"devstral","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-12","release_date":"2025-05-01","last_updated":"2025-05-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":4096},"cost":{"input":0.05,"output":0.22,"cache_read":0.025,"cache_write":0.1}},"zai-org/GLM-4.6":{"id":"zai-org/GLM-4.6","name":"GLM 4.6","family":"glm","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2024-11-15","last_updated":"2024-11-15","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":4096},"cost":{"input":0.4,"output":1.75,"cache_read":0.2,"cache_write":0.8}},"Intel/Qwen3-Coder-480B-A35B-Instruct-int4-mixed-ar":{"id":"Intel/Qwen3-Coder-480B-A35B-Instruct-int4-mixed-ar","name":"Qwen 3 Coder 480B","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-12","release_date":"2025-01-15","last_updated":"2025-01-15","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":106000,"output":4096},"cost":{"input":0.22,"output":0.95,"cache_read":0.11,"cache_write":0.44}},"moonshotai/Kimi-K2-Instruct-0905":{"id":"moonshotai/Kimi-K2-Instruct-0905","name":"Kimi K2 Instruct","family":"kimi","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-08","release_date":"2024-09-05","last_updated":"2024-09-05","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":32768,"output":4096},"cost":{"input":0.39,"output":1.9,"cache_read":0.195,"cache_write":0.78}},"moonshotai/Kimi-K2-Thinking":{"id":"moonshotai/Kimi-K2-Thinking","name":"Kimi K2 Thinking","family":"kimi-thinking","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-08","release_date":"2024-11-01","last_updated":"2024-11-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":32768,"output":4096},"cost":{"input":0.55,"output":2.25,"cache_read":0.275,"cache_write":1.1}},"meta-llama/Llama-4-Maverick-17B-128E-Instruct-FP8":{"id":"meta-llama/Llama-4-Maverick-17B-128E-Instruct-FP8","name":"Llama 4 Maverick 17B 128E Instruct","family":"llama","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-12","release_date":"2025-01-15","last_updated":"2025-01-15","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":430000,"output":4096},"cost":{"input":0.15,"output":0.6,"cache_read":0.075,"cache_write":0.3}},"meta-llama/Llama-3.2-90B-Vision-Instruct":{"id":"meta-llama/Llama-3.2-90B-Vision-Instruct","name":"Llama 3.2 90B Vision Instruct","family":"llama","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2023-12","release_date":"2024-09-25","last_updated":"2024-09-25","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":16000,"output":4096},"cost":{"input":0.35,"output":0.4,"cache_read":0.175,"cache_write":0.7}},"meta-llama/Llama-3.3-70B-Instruct":{"id":"meta-llama/Llama-3.3-70B-Instruct","name":"Llama 3.3 70B Instruct","family":"llama","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2023-12","release_date":"2024-12-06","last_updated":"2024-12-06","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4096},"cost":{"input":0.13,"output":0.38,"cache_read":0.065,"cache_write":0.26}},"deepseek-ai/DeepSeek-R1-0528":{"id":"deepseek-ai/DeepSeek-R1-0528","name":"DeepSeek R1","family":"deepseek-thinking","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-07","release_date":"2025-01-20","last_updated":"2025-05-28","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4096},"cost":{"input":2,"output":8.75,"cache_read":1,"cache_write":4}},"Qwen/Qwen3-235B-A22B-Thinking-2507":{"id":"Qwen/Qwen3-235B-A22B-Thinking-2507","name":"Qwen 3 235B Thinking","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-12","release_date":"2025-07-01","last_updated":"2025-07-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":4096},"cost":{"input":0.11,"output":0.6,"cache_read":0.055,"cache_write":0.22}},"Qwen/Qwen3-Next-80B-A3B-Instruct":{"id":"Qwen/Qwen3-Next-80B-A3B-Instruct","name":"Qwen 3 Next 80B Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-12","release_date":"2025-01-10","last_updated":"2025-01-10","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":4096},"cost":{"input":0.1,"output":0.8,"cache_read":0.05,"cache_write":0.2}},"Qwen/Qwen2.5-VL-32B-Instruct":{"id":"Qwen/Qwen2.5-VL-32B-Instruct","name":"Qwen 2.5 VL 32B Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-09","release_date":"2024-11-01","last_updated":"2024-11-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":32000,"output":4096},"cost":{"input":0.05,"output":0.22,"cache_read":0.025,"cache_write":0.1}},"openai/gpt-oss-120b":{"id":"openai/gpt-oss-120b","name":"GPT-OSS 120B","family":"gpt-oss","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2024-12-01","last_updated":"2024-12-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":4096},"cost":{"input":0.04,"output":0.4,"cache_read":0.02,"cache_write":0.08}},"openai/gpt-oss-20b":{"id":"openai/gpt-oss-20b","name":"GPT-OSS 20B","family":"gpt-oss","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2024-12-01","last_updated":"2024-12-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":64000,"output":4096},"cost":{"input":0.03,"output":0.14,"cache_read":0.015,"cache_write":0.06}}}},"groq":{"id":"groq","env":["GROQ_API_KEY"],"npm":"@ai-sdk/groq","name":"Groq","doc":"https://console.groq.com/docs/models","models":{"whisper-large-v3-turbo":{"id":"whisper-large-v3-turbo","name":"Whisper Large v3 Turbo","family":"whisper","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2024-10","release_date":"2024-10-01","last_updated":"2024-10-01","modalities":{"input":["audio"],"output":["text"]},"open_weights":true,"limit":{"context":448,"output":448},"cost":{"input":0,"output":0}},"llama3-8b-8192":{"id":"llama3-8b-8192","name":"Llama 3 8B","family":"llama","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2023-03","release_date":"2024-04-18","last_updated":"2024-04-18","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":8192,"output":8192},"status":"deprecated","cost":{"input":0.05,"output":0.08}},"mistral-saba-24b":{"id":"mistral-saba-24b","name":"Mistral Saba 24B","family":"mistral","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-08","release_date":"2025-02-06","last_updated":"2025-02-06","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":32768,"output":32768},"status":"deprecated","cost":{"input":0.79,"output":0.79}},"allam-2-7b":{"id":"allam-2-7b","name":"ALLaM-2-7b","family":"allam","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2024-09","release_date":"2024-09","last_updated":"2024-09","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":4096,"output":4096},"cost":{"input":0,"output":0}},"llama-3.1-8b-instant":{"id":"llama-3.1-8b-instant","name":"Llama 3.1 8B Instant","family":"llama","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2023-12","release_date":"2024-07-23","last_updated":"2024-07-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":131072},"cost":{"input":0.05,"output":0.08}},"qwen-qwq-32b":{"id":"qwen-qwq-32b","name":"Qwen QwQ 32B","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-09","release_date":"2024-11-27","last_updated":"2024-11-27","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":16384},"status":"deprecated","cost":{"input":0.29,"output":0.39}},"deepseek-r1-distill-llama-70b":{"id":"deepseek-r1-distill-llama-70b","name":"DeepSeek R1 Distill Llama 70B","family":"deepseek-thinking","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-07","release_date":"2025-01-20","last_updated":"2025-01-20","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":8192},"status":"deprecated","cost":{"input":0.75,"output":0.99}},"whisper-large-v3":{"id":"whisper-large-v3","name":"Whisper Large V3","family":"whisper","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2023-09","release_date":"2023-09-01","last_updated":"2025-09-05","modalities":{"input":["audio"],"output":["text"]},"open_weights":true,"limit":{"context":448,"output":448},"cost":{"input":0,"output":0}},"gemma2-9b-it":{"id":"gemma2-9b-it","name":"Gemma 2 9B","family":"gemma","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-06","release_date":"2024-06-27","last_updated":"2024-06-27","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":8192,"output":8192},"status":"deprecated","cost":{"input":0.2,"output":0.2}},"llama-3.3-70b-versatile":{"id":"llama-3.3-70b-versatile","name":"Llama 3.3 70B Versatile","family":"llama","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2023-12","release_date":"2024-12-06","last_updated":"2024-12-06","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":32768},"cost":{"input":0.59,"output":0.79}},"llama3-70b-8192":{"id":"llama3-70b-8192","name":"Llama 3 70B","family":"llama","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2023-03","release_date":"2024-04-18","last_updated":"2024-04-18","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":8192,"output":8192},"status":"deprecated","cost":{"input":0.59,"output":0.79}},"llama-guard-3-8b":{"id":"llama-guard-3-8b","name":"Llama Guard 3 8B","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2024-07-23","last_updated":"2024-07-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":8192,"output":8192},"status":"deprecated","cost":{"input":0.2,"output":0.2}},"qwen/qwen3-32b":{"id":"qwen/qwen3-32b","name":"Qwen3 32B","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-11-08","release_date":"2024-12-23","last_updated":"2024-12-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":40960},"cost":{"input":0.29,"output":0.59}},"moonshotai/kimi-k2-instruct":{"id":"moonshotai/kimi-k2-instruct","name":"Kimi K2 Instruct","family":"kimi","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2025-07-14","last_updated":"2025-07-14","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":16384},"status":"deprecated","cost":{"input":1,"output":3}},"moonshotai/kimi-k2-instruct-0905":{"id":"moonshotai/kimi-k2-instruct-0905","name":"Kimi K2 Instruct 0905","family":"kimi","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-10","release_date":"2025-09-05","last_updated":"2026-05-27","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":16384},"cost":{"input":1,"output":3,"cache_read":0.5}},"meta-llama/llama-guard-4-12b":{"id":"meta-llama/llama-guard-4-12b","name":"Llama Guard 4 12B","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-04-05","last_updated":"2025-04-05","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":1024},"status":"deprecated","cost":{"input":0.2,"output":0.2}},"meta-llama/llama-4-maverick-17b-128e-instruct":{"id":"meta-llama/llama-4-maverick-17b-128e-instruct","name":"Llama 4 Maverick 17B","family":"llama","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-08","release_date":"2025-04-05","last_updated":"2025-04-05","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":8192},"status":"deprecated","cost":{"input":0.2,"output":0.6}},"meta-llama/llama-4-scout-17b-16e-instruct":{"id":"meta-llama/llama-4-scout-17b-16e-instruct","name":"Llama 4 Scout 17B","family":"llama","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-08","release_date":"2025-04-05","last_updated":"2025-04-05","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":8192},"cost":{"input":0.11,"output":0.34}},"meta-llama/llama-prompt-guard-2-86m":{"id":"meta-llama/llama-prompt-guard-2-86m","name":"Llama Prompt Guard 2 86M","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2024-10","release_date":"2024-10-01","last_updated":"2024-10-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":512,"output":512},"cost":{"input":0.04,"output":0.04}},"meta-llama/llama-prompt-guard-2-22m":{"id":"meta-llama/llama-prompt-guard-2-22m","name":"Llama Prompt Guard 2 22M","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2024-10","release_date":"2024-10-01","last_updated":"2024-10-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":512,"output":512},"cost":{"input":0.03,"output":0.03}},"groq/compound-mini":{"id":"groq/compound-mini","name":"Compound Mini","family":"groq","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-09-04","release_date":"2025-09-04","last_updated":"2025-09-04","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":8192},"cost":{"input":0,"output":0}},"groq/compound":{"id":"groq/compound","name":"Compound","family":"groq","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-09-04","release_date":"2025-09-04","last_updated":"2025-09-04","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":8192},"cost":{"input":0,"output":0}},"canopylabs/orpheus-v1-english":{"id":"canopylabs/orpheus-v1-english","name":"Orpheus V1 English","family":"canopylabs","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2025-12-19","release_date":"2025-12-19","last_updated":"2025-12-19","modalities":{"input":["text"],"output":["audio"]},"open_weights":false,"limit":{"context":4000,"output":50000},"cost":{"input":0,"output":0}},"canopylabs/orpheus-arabic-saudi":{"id":"canopylabs/orpheus-arabic-saudi","name":"Orpheus Arabic Saudi","family":"canopylabs","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2025-12-16","release_date":"2025-12-16","last_updated":"2025-12-16","modalities":{"input":["text"],"output":["audio"]},"open_weights":false,"limit":{"context":4000,"output":50000},"cost":{"input":40,"output":0}},"openai/gpt-oss-120b":{"id":"openai/gpt-oss-120b","name":"GPT OSS 120B","family":"gpt-oss","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-08-05","last_updated":"2026-05-27","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":65536},"cost":{"input":0.15,"output":0.6,"cache_read":0.075}},"openai/gpt-oss-20b":{"id":"openai/gpt-oss-20b","name":"GPT OSS 20B","family":"gpt-oss","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-08-05","last_updated":"2026-05-27","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":65536},"cost":{"input":0.075,"output":0.3,"cache_read":0.0375}},"openai/gpt-oss-safeguard-20b":{"id":"openai/gpt-oss-safeguard-20b","name":"Safety GPT OSS 20B","family":"gpt-oss","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-03-05","last_updated":"2025-03-05","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":65536},"cost":{"input":0.075,"output":0.3,"cache_read":0.037}}}},"sap-ai-core":{"id":"sap-ai-core","env":["AICORE_SERVICE_KEY"],"npm":"@jerome-benoit/sap-ai-provider-v2","name":"SAP AI Core","doc":"https://help.sap.com/docs/sap-ai-core","models":{"anthropic--claude-3-sonnet":{"id":"anthropic--claude-3-sonnet","name":"anthropic--claude-3-sonnet","family":"claude-sonnet","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2023-08-31","release_date":"2024-03-04","last_updated":"2024-03-04","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":4096},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75}},"gpt-5-mini":{"id":"gpt-5-mini","name":"gpt-5-mini","family":"gpt-mini","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-05-30","release_date":"2025-08-07","last_updated":"2025-08-07","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":0.25,"output":2,"cache_read":0.025}},"sonar":{"id":"sonar","name":"sonar","family":"sonar","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2025-09-01","release_date":"2024-01-01","last_updated":"2025-09-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":4096},"cost":{"input":1,"output":1}},"anthropic--claude-4.6-sonnet":{"id":"anthropic--claude-4.6-sonnet","name":"anthropic--claude-4.6-sonnet","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-08","release_date":"2026-02-17","last_updated":"2026-03-13","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":64000},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75}},"anthropic--claude-4.6-opus":{"id":"anthropic--claude-4.6-opus","name":"anthropic--claude-4.6-opus","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-05","release_date":"2026-02-05","last_updated":"2026-03-13","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25}},"anthropic--claude-4.5-sonnet":{"id":"anthropic--claude-4.5-sonnet","name":"anthropic--claude-4.5-sonnet","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-07-31","release_date":"2025-09-29","last_updated":"2025-09-29","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75}},"gpt-5":{"id":"gpt-5","name":"gpt-5","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-08-07","last_updated":"2025-08-07","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":1.25,"output":10,"cache_read":0.125}},"sonar-pro":{"id":"sonar-pro","name":"sonar-pro","family":"sonar-pro","attachment":true,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2025-09-01","release_date":"2024-01-01","last_updated":"2025-09-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":8192},"cost":{"input":3,"output":15}},"gpt-4.1-mini":{"id":"gpt-4.1-mini","name":"gpt-4.1-mini","family":"gpt-mini","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-04","release_date":"2025-04-14","last_updated":"2025-04-14","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1047576,"output":32768},"cost":{"input":0.4,"output":1.6,"cache_read":0.1}},"gpt-5.4":{"id":"gpt-5.4","name":"gpt-5.4","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-03-05","last_updated":"2026-03-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1050000,"input":922000,"output":128000},"cost":{"input":2.5,"output":15,"cache_read":0.25}},"anthropic--claude-4.7-opus":{"id":"anthropic--claude-4.7-opus","name":"anthropic--claude-4.7-opus","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2026-01-31","release_date":"2026-04-16","last_updated":"2026-04-16","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25}},"gpt-5.5":{"id":"gpt-5.5","name":"gpt-5.5","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-12-01","release_date":"2026-04-23","last_updated":"2026-04-23","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1050000,"input":922000,"output":128000},"cost":{"input":5,"output":30,"cache_read":0.5}},"gpt-5-nano":{"id":"gpt-5-nano","name":"gpt-5-nano","family":"gpt-nano","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-05-30","release_date":"2025-08-07","last_updated":"2025-08-07","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":0.05,"output":0.4,"cache_read":0.005}},"anthropic--claude-3-haiku":{"id":"anthropic--claude-3-haiku","name":"anthropic--claude-3-haiku","family":"claude-haiku","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2023-08-31","release_date":"2024-03-13","last_updated":"2024-03-13","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":4096},"cost":{"input":0.25,"output":1.25,"cache_read":0.03,"cache_write":0.3}},"anthropic--claude-3.7-sonnet":{"id":"anthropic--claude-3.7-sonnet","name":"anthropic--claude-3.7-sonnet","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-10-31","release_date":"2025-02-24","last_updated":"2025-02-24","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75}},"gemini-2.5-pro":{"id":"gemini-2.5-pro","name":"gemini-2.5-pro","family":"gemini-pro","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-03-25","last_updated":"2025-06-05","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":1.25,"output":10,"cache_read":0.125}},"gpt-4.1":{"id":"gpt-4.1","name":"gpt-4.1","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-04","release_date":"2025-04-14","last_updated":"2025-04-14","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1047576,"output":32768},"cost":{"input":2,"output":8,"cache_read":0.5}},"anthropic--claude-3.5-sonnet":{"id":"anthropic--claude-3.5-sonnet","name":"anthropic--claude-3.5-sonnet","family":"claude-sonnet","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-04-30","release_date":"2024-10-22","last_updated":"2024-10-22","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":8192},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75}},"anthropic--claude-4.5-opus":{"id":"anthropic--claude-4.5-opus","name":"anthropic--claude-4.5-opus","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-05","release_date":"2025-11-24","last_updated":"2025-11-24","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25}},"anthropic--claude-3-opus":{"id":"anthropic--claude-3-opus","name":"anthropic--claude-3-opus","family":"claude-opus","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2023-08-31","release_date":"2024-02-29","last_updated":"2024-02-29","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":4096},"cost":{"input":15,"output":75,"cache_read":1.5,"cache_write":18.75}},"gemini-2.5-flash-lite":{"id":"gemini-2.5-flash-lite","name":"gemini-2.5-flash-lite","family":"gemini-flash-lite","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-06-17","last_updated":"2025-06-17","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":0.1,"output":0.4,"cache_read":0.01,"input_audio":0.3}},"gemini-2.5-flash":{"id":"gemini-2.5-flash","name":"gemini-2.5-flash","family":"gemini-flash","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-04-17","last_updated":"2025-06-05","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":0.3,"output":2.5,"cache_read":0.03,"input_audio":1}},"anthropic--claude-4-sonnet":{"id":"anthropic--claude-4-sonnet","name":"anthropic--claude-4-sonnet","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-05-22","last_updated":"2025-05-22","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75}},"anthropic--claude-4.5-haiku":{"id":"anthropic--claude-4.5-haiku","name":"anthropic--claude-4.5-haiku","family":"claude-haiku","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-02-28","release_date":"2025-10-15","last_updated":"2025-10-15","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":1,"output":5,"cache_read":0.1,"cache_write":1.25}},"anthropic--claude-4-opus":{"id":"anthropic--claude-4-opus","name":"anthropic--claude-4-opus","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-05-22","last_updated":"2025-05-22","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":32000},"cost":{"input":15,"output":75,"cache_read":1.5,"cache_write":18.75}},"sonar-deep-research":{"id":"sonar-deep-research","name":"sonar-deep-research","family":"sonar-deep-research","attachment":false,"reasoning":true,"tool_call":false,"temperature":false,"knowledge":"2025-01","release_date":"2025-02-01","last_updated":"2025-09-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":32768},"cost":{"input":2,"output":8,"reasoning":3}}}},"lilac":{"id":"lilac","env":["LILAC_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://api.getlilac.com/v1","name":"Lilac","doc":"https://docs.getlilac.com/inference/models","models":{"zai-org/glm-5.1":{"id":"zai-org/glm-5.1","name":"GLM 5.1","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-04","release_date":"2026-03-27","last_updated":"2026-03-27","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":202800,"output":131072},"cost":{"input":0.9,"output":3,"cache_read":0.27}},"moonshotai/kimi-k2.6":{"id":"moonshotai/kimi-k2.6","name":"Kimi K2.6","family":"kimi-k2.6","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-04-21","last_updated":"2026-04-21","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.7,"output":3.5,"cache_read":0.2}},"minimaxai/minimax-m2.7":{"id":"minimaxai/minimax-m2.7","name":"MiniMax M2.7","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-03-18","last_updated":"2026-03-18","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":204800},"cost":{"input":0.3,"output":1.2,"cache_read":0.055}},"google/gemma-4-31b-it":{"id":"google/gemma-4-31b-it","name":"Gemma 4 31B IT","family":"gemma","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-04-02","last_updated":"2026-04-02","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":262100,"output":262100},"cost":{"input":0.11,"output":0.35}}}},"stepfun-ai":{"id":"stepfun-ai","env":["STEPFUN_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://api.stepfun.ai/step_plan/v1","name":"StepFun AI","doc":"https://platform.stepfun.ai/docs/en/step-plan/integrations/open-code","models":{"step-3.5-flash-2603":{"id":"step-3.5-flash-2603","name":"Step 3.5 Flash 2603","attachment":false,"reasoning":true,"reasoning_options":[{"type":"effort","values":["low","high"]}],"tool_call":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-04-02","last_updated":"2026-04-02","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"input":256000,"output":256000},"cost":{"input":0.1,"output":0.3,"cache_read":0.02}},"step-3.5-flash":{"id":"step-3.5-flash","name":"Step 3.5 Flash","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-01-29","last_updated":"2026-02-13","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"input":256000,"output":256000},"cost":{"input":0.096,"output":0.288,"cache_read":0.019}}}},"tencent-coding-plan":{"id":"tencent-coding-plan","env":["TENCENT_CODING_PLAN_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://api.lkeap.cloud.tencent.com/coding/v3","name":"Tencent Coding Plan (China)","doc":"https://cloud.tencent.com/document/product/1772/128947","models":{"hunyuan-2.0-instruct":{"id":"hunyuan-2.0-instruct","name":"Tencent HY 2.0 Instruct","family":"hunyuan","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2026-03-08","last_updated":"2026-03-08","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":16384},"cost":{"input":0,"output":0,"cache_read":0,"cache_write":0}},"hunyuan-t1":{"id":"hunyuan-t1","name":"Hunyuan-T1","family":"hunyuan","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"release_date":"2026-03-08","last_updated":"2026-03-08","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":16384},"cost":{"input":0,"output":0,"cache_read":0,"cache_write":0}},"hunyuan-turbos":{"id":"hunyuan-turbos","name":"Hunyuan-TurboS","family":"hunyuan","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2026-03-08","last_updated":"2026-03-08","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":16384},"cost":{"input":0,"output":0,"cache_read":0,"cache_write":0}},"tc-code-latest":{"id":"tc-code-latest","name":"Auto","family":"auto","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2026-03-08","last_updated":"2026-03-08","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":16384},"cost":{"input":0,"output":0,"cache_read":0,"cache_write":0}},"glm-5":{"id":"glm-5","name":"GLM-5","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"release_date":"2026-02-11","last_updated":"2026-02-11","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":202752,"output":16384},"cost":{"input":0,"output":0,"cache_read":0,"cache_write":0}},"minimax-m2.5":{"id":"minimax-m2.5","name":"MiniMax-M2.5","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"release_date":"2026-02-12","last_updated":"2026-02-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":32768},"cost":{"input":0,"output":0,"cache_read":0,"cache_write":0}},"hunyuan-2.0-thinking":{"id":"hunyuan-2.0-thinking","name":"Tencent HY 2.0 Think","family":"hunyuan","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"release_date":"2026-03-08","last_updated":"2026-03-08","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":16384},"cost":{"input":0,"output":0,"cache_read":0,"cache_write":0}},"kimi-k2.5":{"id":"kimi-k2.5","name":"Kimi-K2.5","family":"kimi","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2025-01","release_date":"2026-01-27","last_updated":"2026-01-27","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":32768},"cost":{"input":0,"output":0,"cache_read":0,"cache_write":0}}}},"opencode-go":{"id":"opencode-go","env":["OPENCODE_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://opencode.ai/zen/go/v1","name":"OpenCode Go","doc":"https://opencode.ai/docs/zen","models":{"minimax-m3":{"id":"minimax-m3","name":"MiniMax M3","family":"minimax-m3","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-05-31","last_updated":"2026-05-31","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":512000,"output":131072},"provider":{"npm":"@ai-sdk/anthropic"},"cost":{"input":0.6,"output":2.4,"cache_read":0.12}},"qwen3.5-plus":{"id":"qwen3.5-plus","name":"Qwen3.5 Plus","family":"qwen3.5","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2026-02-16","last_updated":"2026-02-16","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"output":65536},"status":"deprecated","provider":{"npm":"@ai-sdk/anthropic"},"cost":{"input":0.2,"output":1.2,"cache_read":0.02,"cache_write":0.25}},"mimo-v2-omni":{"id":"mimo-v2-omni","name":"MiMo V2 Omni","family":"mimo-v2-omni","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2024-12","release_date":"2026-03-18","last_updated":"2026-03-18","modalities":{"input":["text","image","audio","pdf"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":128000},"status":"deprecated","cost":{"input":0.4,"output":2,"cache_read":0.08}},"kimi-k2.6":{"id":"kimi-k2.6","name":"Kimi K2.6","family":"kimi-k2.6","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2024-10","release_date":"2026-04-21","last_updated":"2026-04-21","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":65536},"cost":{"input":0.95,"output":4,"cache_read":0.16}},"qwen3.7-max":{"id":"qwen3.7-max","name":"Qwen3.7 Max","family":"qwen3.7-max","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-05-21","last_updated":"2026-05-21","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":65536},"provider":{"npm":"@ai-sdk/anthropic"},"cost":{"input":2.5,"output":7.5,"cache_read":0.5,"cache_write":3.125}},"qwen3.6-plus":{"id":"qwen3.6-plus","name":"Qwen3.6 Plus","family":"qwen3.6","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2026-04-02","last_updated":"2026-04-02","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":65536},"provider":{"npm":"@ai-sdk/anthropic"},"cost":{"input":0.5,"output":3,"cache_read":0.05,"cache_write":0.625,"tiers":[{"input":2,"output":6,"cache_read":0.2,"cache_write":2.5,"tier":{"type":"context","size":256000}}],"context_over_200k":{"input":2,"output":6,"cache_read":0.2,"cache_write":2.5}}},"minimax-m2.7":{"id":"minimax-m2.7","name":"MiniMax M2.7","family":"minimax-m2.7","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-03-18","last_updated":"2026-03-18","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"provider":{"npm":"@ai-sdk/anthropic"},"cost":{"input":0.3,"output":1.2,"cache_read":0.06}},"deepseek-v4-flash":{"id":"deepseek-v4-flash","name":"DeepSeek V4 Flash","family":"deepseek-flash","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-05","release_date":"2026-04-24","last_updated":"2026-04-24","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1000000,"output":384000},"cost":{"input":0.14,"output":0.28,"cache_read":0.0028}},"glm-5":{"id":"glm-5","name":"GLM-5","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2025-04","release_date":"2026-02-11","last_updated":"2026-02-11","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":202752,"output":32768},"cost":{"input":1,"output":3.2,"cache_read":0.2}},"minimax-m2.5":{"id":"minimax-m2.5","name":"MiniMax M2.5","family":"minimax-m2.5","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-02-12","last_updated":"2026-02-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":65536},"provider":{"npm":"@ai-sdk/anthropic"},"cost":{"input":0.3,"output":1.2,"cache_read":0.03}},"mimo-v2-pro":{"id":"mimo-v2-pro","name":"MiMo V2 Pro","family":"mimo-v2-pro","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2024-12","release_date":"2026-03-18","last_updated":"2026-03-18","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1048576,"output":128000},"status":"deprecated","cost":{"input":1,"output":3,"cache_read":0.2,"tiers":[{"input":2,"output":6,"cache_read":0.4,"tier":{"type":"context","size":256000}}],"context_over_200k":{"input":2,"output":6,"cache_read":0.4}}},"qwen3.7-plus":{"id":"qwen3.7-plus","name":"Qwen3.7 Plus","family":"qwen3.7-plus","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-06-02","last_updated":"2026-06-02","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":65536},"provider":{"npm":"@ai-sdk/anthropic"},"cost":{"input":0.4,"output":1.6,"cache_read":0.04,"cache_write":0.5,"tiers":[{"input":1.2,"output":4.8,"cache_read":0.12,"cache_write":1.5,"tier":{"type":"context","size":256000}}],"context_over_200k":{"input":1.2,"output":4.8,"cache_read":0.12,"cache_write":1.5}}},"mimo-v2.5":{"id":"mimo-v2.5","name":"MiMo V2.5","family":"mimo-v2.5","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2024-12","release_date":"2026-04-22","last_updated":"2026-04-22","modalities":{"input":["text","image","audio","video"],"output":["text"]},"open_weights":true,"limit":{"context":1000000,"output":128000},"cost":{"input":0.14,"output":0.28,"cache_read":0.0028}},"deepseek-v4-pro":{"id":"deepseek-v4-pro","name":"DeepSeek V4 Pro","family":"deepseek-thinking","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-05","release_date":"2026-04-24","last_updated":"2026-04-24","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1000000,"output":384000},"cost":{"input":1.74,"output":3.48,"cache_read":0.0145}},"kimi-k2.5":{"id":"kimi-k2.5","name":"Kimi K2.5","family":"kimi-k2.5","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2024-10","release_date":"2026-01-27","last_updated":"2026-01-27","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":65536},"cost":{"input":0.6,"output":3,"cache_read":0.1}},"glm-5.1":{"id":"glm-5.1","name":"GLM-5.1","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2025-04","release_date":"2026-04-07","last_updated":"2026-04-07","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":202752,"output":32768},"cost":{"input":1.4,"output":4.4,"cache_read":0.26}},"mimo-v2.5-pro":{"id":"mimo-v2.5-pro","name":"MiMo V2.5 Pro","family":"mimo-v2.5-pro","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2024-12","release_date":"2026-04-22","last_updated":"2026-04-22","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1048576,"output":128000},"cost":{"input":1.74,"output":3.48,"cache_read":0.0145}}}},"gitlab":{"id":"gitlab","env":["GITLAB_TOKEN"],"npm":"gitlab-ai-provider","name":"GitLab Duo","doc":"https://docs.gitlab.com/user/duo_agent_platform/","models":{"duo-chat-sonnet-4-5":{"id":"duo-chat-sonnet-4-5","name":"Agentic Chat (Claude Sonnet 4.5)","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-07-31","release_date":"2026-01-08","last_updated":"2026-01-08","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":0,"output":0,"cache_read":0,"cache_write":0}},"duo-chat-gpt-5-4":{"id":"duo-chat-gpt-5-4","name":"Agentic Chat (GPT-5.4)","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-03-05","last_updated":"2026-03-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1050000,"input":922000,"output":128000},"cost":{"input":0,"output":0}},"duo-chat-gpt-5-2":{"id":"duo-chat-gpt-5-2","name":"Agentic Chat (GPT-5.2)","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-01-23","last_updated":"2026-01-23","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":0,"output":0}},"duo-chat-opus-4-7":{"id":"duo-chat-opus-4-7","name":"Agentic Chat (Claude Opus 4.7)","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2026-01-31","release_date":"2026-04-16","last_updated":"2026-04-16","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":64000},"cost":{"input":0,"output":0,"cache_read":0,"cache_write":0}},"duo-chat-opus-4-5":{"id":"duo-chat-opus-4-5","name":"Agentic Chat (Claude Opus 4.5)","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2026-01-08","last_updated":"2026-01-08","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":0,"output":0,"cache_read":0,"cache_write":0}},"duo-chat-opus-4-8":{"id":"duo-chat-opus-4-8","name":"Agentic Chat (Claude Opus 4.8)","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2026-01-31","release_date":"2026-05-28","last_updated":"2026-05-28","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":0,"output":0,"cache_read":0,"cache_write":0}},"duo-chat-gpt-5-4-nano":{"id":"duo-chat-gpt-5-4-nano","name":"Agentic Chat (GPT-5.4 Nano)","family":"gpt-nano","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-03-17","last_updated":"2026-03-17","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":0,"output":0}},"duo-chat-gpt-5-4-mini":{"id":"duo-chat-gpt-5-4-mini","name":"Agentic Chat (GPT-5.4 Mini)","family":"gpt-mini","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-03-17","last_updated":"2026-03-17","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":0,"output":0}},"duo-chat-gpt-5-mini":{"id":"duo-chat-gpt-5-mini","name":"Agentic Chat (GPT-5 Mini)","family":"gpt-mini","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-05-30","release_date":"2026-01-22","last_updated":"2026-01-22","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":0,"output":0}},"duo-chat-opus-4-6":{"id":"duo-chat-opus-4-6","name":"Agentic Chat (Claude Opus 4.6)","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-05-31","release_date":"2026-02-05","last_updated":"2026-02-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":64000},"cost":{"input":0,"output":0,"cache_read":0,"cache_write":0}},"duo-chat-gpt-5-5":{"id":"duo-chat-gpt-5-5","name":"Agentic Chat (GPT-5.5)","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-04-23","last_updated":"2026-04-23","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1050000,"input":922000,"output":128000},"cost":{"input":0,"output":0}},"duo-chat-gpt-5-1":{"id":"duo-chat-gpt-5-1","name":"Agentic Chat (GPT-5.1)","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2026-01-22","last_updated":"2026-01-22","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":0,"output":0}},"duo-chat-haiku-4-5":{"id":"duo-chat-haiku-4-5","name":"Agentic Chat (Claude Haiku 4.5)","family":"claude-haiku","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-02-28","release_date":"2026-01-08","last_updated":"2026-01-08","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":0,"output":0,"cache_read":0,"cache_write":0}},"duo-chat-gpt-5-2-codex":{"id":"duo-chat-gpt-5-2-codex","name":"Agentic Chat (GPT-5.2 Codex)","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-01-22","last_updated":"2026-01-22","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":0,"output":0}},"duo-chat-gpt-5-3-codex":{"id":"duo-chat-gpt-5-3-codex","name":"Agentic Chat (GPT-5.3 Codex)","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-02-05","last_updated":"2026-02-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":0,"output":0}},"duo-chat-sonnet-4-6":{"id":"duo-chat-sonnet-4-6","name":"Agentic Chat (Claude Sonnet 4.6)","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-08-31","release_date":"2026-02-17","last_updated":"2026-02-17","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":64000},"cost":{"input":0,"output":0,"cache_read":0,"cache_write":0}},"duo-chat-gpt-5-codex":{"id":"duo-chat-gpt-5-codex","name":"Agentic Chat (GPT-5 Codex)","family":"gpt-codex","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2026-01-22","last_updated":"2026-01-22","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":0,"output":0}}}},"cortecs":{"id":"cortecs","env":["CORTECS_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://api.cortecs.ai/v1","name":"Cortecs","doc":"https://api.cortecs.ai/v1/models","models":{"nova-pro-v1":{"id":"nova-pro-v1","name":"Nova Pro 1.0","family":"nova-pro","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-04","release_date":"2024-12-03","last_updated":"2024-12-03","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":300000,"output":5000},"cost":{"input":1.016,"output":4.061}},"claude-sonnet-4":{"id":"claude-sonnet-4","name":"Claude Sonnet 4","family":"claude-sonnet","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-03","release_date":"2025-05-22","last_updated":"2025-05-22","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":3.307,"output":16.536}},"deepseek-r1-0528":{"id":"deepseek-r1-0528","name":"DeepSeek R1 0528","family":"deepseek-thinking","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-07","release_date":"2025-05-28","last_updated":"2025-05-28","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":164000,"output":164000},"cost":{"input":0.585,"output":2.307}},"qwen3.5-122b-a10b":{"id":"qwen3.5-122b-a10b","name":"Qwen3.5 122B A10B","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2026-01","release_date":"2026-02-24","last_updated":"2026-02-24","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.444,"output":3.106}},"llama-3.1-405b-instruct":{"id":"llama-3.1-405b-instruct","name":"Llama 3.1 405B Instruct","family":"llama","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2023-12","release_date":"2024-07-23","last_updated":"2024-07-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":128000},"cost":{"input":0,"output":0}},"qwen3-32b":{"id":"qwen3-32b","name":"Qwen3 32B","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-12","release_date":"2025-04-29","last_updated":"2025-04-29","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":16384,"output":16384},"cost":{"input":0.099,"output":0.33}},"hermes-4-70b":{"id":"hermes-4-70b","name":"Hermes 4 70B","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2023-12","release_date":"2025-08-26","last_updated":"2025-08-26","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":128000},"cost":{"input":0.116,"output":0.358}},"deepseek-v3-0324":{"id":"deepseek-v3-0324","name":"DeepSeek V3 0324","family":"deepseek","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-07","release_date":"2025-03-24","last_updated":"2025-03-24","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":128000},"cost":{"input":0.551,"output":1.654}},"qwen3-coder-30b-a3b-instruct":{"id":"qwen3-coder-30b-a3b-instruct","name":"Qwen3 Coder 30B A3B Instruct","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-07-31","last_updated":"2025-07-31","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262000,"output":262000},"cost":{"input":0.053,"output":0.222}},"kimi-k2-thinking":{"id":"kimi-k2-thinking","name":"Kimi K2 Thinking","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2025-12","release_date":"2025-12-08","last_updated":"2025-12-08","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262000,"output":262000},"cost":{"input":0.656,"output":2.731}},"devstral-small-2512":{"id":"devstral-small-2512","name":"Devstral Small 2 2512","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-12","release_date":"2025-12-09","last_updated":"2025-12-09","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262000,"output":262000},"cost":{"input":0,"output":0}},"claude-haiku-4-5":{"id":"claude-haiku-4-5","name":"Claude Haiku 4.5","family":"claude-haiku","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-02-28","release_date":"2025-10-15","last_updated":"2025-10-15","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":200000},"cost":{"input":1.09,"output":5.43}},"deepseek-v3.2":{"id":"deepseek-v3.2","name":"DeepSeek V3.2","family":"deepseek","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-07","release_date":"2025-12-01","last_updated":"2025-12-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":163840,"output":163840},"cost":{"input":0.266,"output":0.444}},"gpt-5.4":{"id":"gpt-5.4","name":"GPT-5.4","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-03-05","last_updated":"2026-03-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1050000,"output":128000},"cost":{"input":3,"output":16.13,"cache_read":0.25}},"kimi-k2-instruct":{"id":"kimi-k2-instruct","name":"Kimi K2 Instruct","family":"kimi","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-07","release_date":"2025-07-11","last_updated":"2025-09-05","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131000,"output":131000},"cost":{"input":0.551,"output":2.646}},"minimax-m2.1":{"id":"minimax-m2.1","name":"MiniMax-M2.1","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"release_date":"2025-12-23","last_updated":"2025-12-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":196000,"output":196000},"cost":{"input":0.34,"output":1.34}},"intellect-3":{"id":"intellect-3","name":"INTELLECT 3","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-11","release_date":"2025-11-26","last_updated":"2025-11-26","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":128000},"cost":{"input":0.219,"output":1.202}},"kimi-k2.6":{"id":"kimi-k2.6","name":"Kimi K2.6","family":"kimi-thinking","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"release_date":"2026-04-17","last_updated":"2026-04-17","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"output":256000},"cost":{"input":0.81,"output":3.54,"cache_read":0.2}},"mistral-large-2512":{"id":"mistral-large-2512","name":"Mistral Large 3 2512","family":"mistral-large","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-12","release_date":"2025-12-01","last_updated":"2025-12-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"output":256000},"cost":{"input":0.5,"output":1.5,"cache_read":0.05}},"glm-4.7":{"id":"glm-4.7","name":"GLM 4.7","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2025-04","release_date":"2025-12-22","last_updated":"2025-12-22","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":198000,"output":198000},"cost":{"input":0.45,"output":2.23}},"gpt-oss-120b":{"id":"gpt-oss-120b","name":"GPT Oss 120b","family":"gpt-oss","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-01","release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":128000},"cost":{"input":0,"output":0}},"qwen3-coder-next":{"id":"qwen3-coder-next","name":"Qwen3 Coder Next 80B","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2026-02-04","last_updated":"2026-02-04","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"output":65536},"cost":{"input":0.158,"output":0.84}},"gemini-2.5-pro":{"id":"gemini-2.5-pro","name":"Gemini 2.5 Pro","family":"gemini-pro","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-03-20","last_updated":"2025-06-17","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65535},"cost":{"input":1.654,"output":11.024}},"gpt-4.1":{"id":"gpt-4.1","name":"GPT 4.1","family":"gpt","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-06","release_date":"2025-04-14","last_updated":"2025-04-14","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1047576,"output":32768},"cost":{"input":2.354,"output":9.417}},"qwen3-coder-480b-a35b-instruct":{"id":"qwen3-coder-480b-a35b-instruct","name":"Qwen3 Coder 480B A35B Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-07-25","last_updated":"2025-07-25","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262000,"output":262000},"cost":{"input":0.441,"output":1.984}},"claude-opus4-5":{"id":"claude-opus4-5","name":"Claude Opus 4.5","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-11-24","last_updated":"2025-11-24","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":200000},"cost":{"input":5.98,"output":29.89}},"qwen3-next-80b-a3b-thinking":{"id":"qwen3-next-80b-a3b-thinking","name":"Qwen3 Next 80B A3B Thinking","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-09-11","last_updated":"2025-09-11","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":128000},"cost":{"input":0.164,"output":1.311}},"mixtral-8x7B-instruct-v0.1":{"id":"mixtral-8x7B-instruct-v0.1","name":"Mixtral 8x7B Instruct v0.1","attachment":false,"reasoning":true,"tool_call":false,"temperature":true,"knowledge":"2023-09","release_date":"2023-12-11","last_updated":"2023-12-11","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":32000,"output":32000},"cost":{"input":0.438,"output":0.68}},"glm-4.7-flash":{"id":"glm-4.7-flash","name":"GLM-4.7-Flash","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2025-04","release_date":"2025-08-08","last_updated":"2025-08-08","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":203000,"output":203000},"cost":{"input":0.09,"output":0.53}},"claude-opus4-6":{"id":"claude-opus4-6","name":"Claude Opus 4.6","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-05-31","release_date":"2026-02-05","last_updated":"2026-03-13","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":1000000},"cost":{"input":5.98,"output":29.89}},"minimax-m2.7":{"id":"minimax-m2.7","name":"MiniMax-m2.7","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-03-18","last_updated":"2026-03-18","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":202752,"output":196072},"cost":{"input":0.47,"output":1.4}},"deepseek-v4-flash":{"id":"deepseek-v4-flash","name":"DeepSeek V4 Flash","family":"deepseek-flash","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2025-05","release_date":"2026-04-24","last_updated":"2026-04-24","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1048576,"output":384000},"cost":{"input":0.133,"output":0.266,"cache_read":0.0028}},"glm-5":{"id":"glm-5","name":"GLM 5","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"release_date":"2026-02-11","last_updated":"2026-02-11","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":202752,"output":202752},"cost":{"input":1.08,"output":3.44}},"devstral-2512":{"id":"devstral-2512","name":"Devstral 2 2512","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-12","release_date":"2025-12-09","last_updated":"2025-12-09","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262000,"output":262000},"cost":{"input":0,"output":0}},"glm-4.5":{"id":"glm-4.5","name":"GLM 4.5","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2025-04","release_date":"2025-07-29","last_updated":"2025-07-29","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":131072},"cost":{"input":0.67,"output":2.46}},"qwen3-235b-a22b-instruct-2507":{"id":"qwen3-235b-a22b-instruct-2507","name":"Qwen3 235B A22B Instruct 2507","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-07-23","last_updated":"2025-07-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131000,"output":131000},"cost":{"input":0.062,"output":0.408}},"claude-4-6-sonnet":{"id":"claude-4-6-sonnet","name":"Claude Sonnet 4.6","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-08-31","release_date":"2026-02-17","last_updated":"2026-03-13","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":1000000},"cost":{"input":3.59,"output":17.92}},"qwen3.5-397b-a17b":{"id":"qwen3.5-397b-a17b","name":"Qwen3.5 397B A17B","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2026-01","release_date":"2026-02-16","last_updated":"2026-02-16","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":250000,"output":250000},"cost":{"input":0.6,"output":3.6}},"claude-opus4-7":{"id":"claude-opus4-7","name":"Claude Opus 4.7","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2026-01-31","release_date":"2026-04-16","last_updated":"2026-04-16","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":5.6,"output":27.99,"cache_read":0.56,"cache_write":6.99}},"codestral-2508":{"id":"codestral-2508","name":"Codestral 2508","family":"mistral","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-03","release_date":"2025-07-30","last_updated":"2025-07-30","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"output":256000},"cost":{"input":0.3,"output":0.9,"cache_read":0.03}},"minimax-m2":{"id":"minimax-m2","name":"MiniMax-M2","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2024-11","release_date":"2025-10-27","last_updated":"2025-10-27","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":400000,"output":400000},"cost":{"input":0.39,"output":1.57}},"minimax-m2.5":{"id":"minimax-m2.5","name":"MiniMax-M2.5","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"release_date":"2026-02-12","last_updated":"2026-02-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":196608,"output":196608},"cost":{"input":0.32,"output":1.18}},"claude-4-5-sonnet":{"id":"claude-4-5-sonnet","name":"Claude 4.5 Sonnet","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-07-31","release_date":"2025-09-29","last_updated":"2025-09-29","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":200000},"cost":{"input":3.259,"output":16.296}},"nemotron-3-super-120b-a12b":{"id":"nemotron-3-super-120b-a12b","name":"Nemotron 3 Super 120B A12B","family":"nemotron","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-12","release_date":"2026-03-11","last_updated":"2026-03-11","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.266,"output":0.799}},"llama-3.3-70b-instruct":{"id":"llama-3.3-70b-instruct","name":"Llama 3.3 70B Instruct","family":"llama","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2023-12","release_date":"2024-12-06","last_updated":"2024-12-06","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131000,"output":131000},"cost":{"input":0.089,"output":0.275}},"deepseek-v4-pro":{"id":"deepseek-v4-pro","name":"DeepSeek V4 Pro","family":"deepseek-thinking","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2025-05","release_date":"2026-04-24","last_updated":"2026-04-24","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1048576,"output":384000},"cost":{"input":1.553,"output":3.106,"cache_read":0.003625}},"kimi-k2.5":{"id":"kimi-k2.5","name":"Kimi K2.5","family":"kimi-thinking","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2025-01","release_date":"2026-01-27","last_updated":"2026-01-27","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"output":256000},"cost":{"input":0.55,"output":2.76}},"glm-4.5-air":{"id":"glm-4.5-air","name":"GLM 4.5 Air","family":"glm-air","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-08-01","last_updated":"2025-08-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":131072},"cost":{"input":0.22,"output":1.34}},"glm-5.1":{"id":"glm-5.1","name":"GLM-5.1","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-04-14","last_updated":"2026-04-14","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":1.31,"output":4.1,"cache_read":0.24}},"qwen-2.5-72b-instruct":{"id":"qwen-2.5-72b-instruct","name":"Qwen2.5 72B Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-06","release_date":"2024-09-19","last_updated":"2024-09-19","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":33000,"output":33000},"cost":{"input":0.062,"output":0.231}}}},"auriko":{"id":"auriko","env":["AURIKO_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://api.auriko.ai/v1","name":"Auriko","doc":"https://docs.auriko.ai","models":{"minimax-m2-7":{"id":"minimax-m2-7","name":"MiniMax-M2.7","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-03-18","last_updated":"2026-03-18","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0.3,"output":1.2,"cache_write":0.375}},"claude-sonnet-4-6":{"id":"claude-sonnet-4-6","name":"Claude Sonnet 4.6","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-08-31","release_date":"2026-02-17","last_updated":"2026-03-13","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":64000},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75}},"minimax-m2-7-highspeed":{"id":"minimax-m2-7-highspeed","name":"MiniMax-M2.7-highspeed","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-03-18","last_updated":"2026-03-18","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0.6,"output":2.4,"cache_write":0.375}},"kimi-k2.6":{"id":"kimi-k2.6","name":"Kimi K2.6","family":"kimi-k2.6","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-04-21","last_updated":"2026-04-21","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.95,"output":4,"cache_read":0.16}},"gemini-2.5-pro":{"id":"gemini-2.5-pro","name":"Gemini 2.5 Pro","family":"gemini-pro","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-03-20","last_updated":"2025-06-05","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":1.25,"output":10,"cache_read":0.125,"tiers":[{"input":2.5,"output":15,"cache_read":0.25,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":2.5,"output":15,"cache_read":0.25}}},"grok-4.3":{"id":"grok-4.3","name":"Grok 4.3","family":"grok","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-04-17","last_updated":"2026-04-17","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":30000},"cost":{"input":1.25,"output":2.5,"cache_read":0.2,"tiers":[{"input":2.5,"output":5,"cache_read":0.4,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":2.5,"output":5,"cache_read":0.4}}},"gemini-3.1-pro-preview":{"id":"gemini-3.1-pro-preview","name":"Gemini 3.1 Pro Preview","family":"gemini-pro","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-02-19","last_updated":"2026-02-19","modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":2,"output":12,"cache_read":0.2,"tiers":[{"input":4,"output":18,"cache_read":0.4,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":4,"output":18,"cache_read":0.4}}},"gemini-2.5-flash":{"id":"gemini-2.5-flash","name":"Gemini 2.5 Flash","family":"gemini-flash","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-03-20","last_updated":"2025-06-05","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":0.3,"output":2.5,"cache_read":0.03}},"qwen-3.6-plus":{"id":"qwen-3.6-plus","name":"Qwen3.6 Plus","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2026-04-02","last_updated":"2026-04-02","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":65536},"cost":{"input":0.5,"output":3,"cache_read":0.1,"tiers":[{"input":2,"output":6,"cache_read":0.2,"cache_write":2.5,"tier":{"type":"context","size":256000}}],"context_over_200k":{"input":2,"output":6,"cache_read":0.2,"cache_write":2.5}}},"deepseek-v4-flash":{"id":"deepseek-v4-flash","name":"DeepSeek V4 Flash","family":"deepseek-flash","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-05","release_date":"2026-04-24","last_updated":"2026-04-24","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1000000,"output":384000},"cost":{"input":0.14,"output":0.28,"cache_read":0.0028}},"claude-opus-4-6":{"id":"claude-opus-4-6","name":"Claude Opus 4.6","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-05-31","release_date":"2026-02-05","last_updated":"2026-03-13","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25}},"deepseek-v4-pro":{"id":"deepseek-v4-pro","name":"DeepSeek V4 Pro","family":"deepseek-thinking","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-05","release_date":"2026-04-24","last_updated":"2026-04-24","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1000000,"output":384000},"cost":{"input":0.435,"output":0.87,"cache_read":0.003625}},"kimi-k2.5":{"id":"kimi-k2.5","name":"Kimi K2.5","family":"kimi-k2.5","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":false,"knowledge":"2025-01","release_date":"2026-01","last_updated":"2026-01","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.5,"output":2.8}},"claude-opus-4-7":{"id":"claude-opus-4-7","name":"Claude Opus 4.7","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2026-01-31","release_date":"2026-04-16","last_updated":"2026-04-16","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"experimental":{"modes":{"fast":{"cost":{"input":30,"output":150,"cache_read":3,"cache_write":37.5},"provider":{"body":{"speed":"fast"},"headers":{"anthropic-beta":"fast-mode-2026-02-01"}}}}},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25}},"glm-5.1":{"id":"glm-5.1","name":"GLM-5.1","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-03-27","last_updated":"2026-03-27","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":200000,"output":131072},"cost":{"input":1.4,"output":4.4,"cache_read":0.26}}}},"wafer.ai":{"id":"wafer.ai","env":["WAFER_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://pass.wafer.ai/v1","name":"Wafer","doc":"https://docs.wafer.ai/wafer-pass","models":{"Kimi-K2.6":{"id":"Kimi-K2.6","name":"Kimi-K2.6","family":"kimi","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-05-13","last_updated":"2026-06-01","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":65536},"cost":{"input":0.68,"output":3.15,"cache_read":0.07,"cache_write":0}},"Qwen3.6-35B-A3B":{"id":"Qwen3.6-35B-A3B","name":"Qwen3.6-35B-A3B","family":"qwen","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-04","release_date":"2026-05-11","last_updated":"2026-05-30","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"input":229376,"output":65536},"cost":{"input":0.15,"output":1,"cache_read":0.02,"cache_write":0}},"qwen3.7-max":{"id":"qwen3.7-max","name":"Qwen3.7-Max","family":"qwen3.7-max","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-05-21","last_updated":"2026-05-30","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":65536},"cost":{"input":5,"output":15,"cache_read":0.5,"cache_write":0}},"Qwen3.5-397B-A17B":{"id":"Qwen3.5-397B-A17B","name":"Qwen3.5-397B-A17B","family":"qwen","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-04","release_date":"2026-02-16","last_updated":"2026-06-01","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":65536},"cost":{"input":0.43,"output":2.6,"cache_read":0.04,"cache_write":0}},"GLM-5.1":{"id":"GLM-5.1","name":"GLM-5.1","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-04","release_date":"2026-04-07","last_updated":"2026-06-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":202752,"output":131072},"cost":{"input":1,"output":3.2,"cache_read":0.1,"cache_write":0}},"deepseek-v4-flash":{"id":"deepseek-v4-flash","name":"DeepSeek V4 Flash","family":"deepseek-flash","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-05","release_date":"2026-04-24","last_updated":"2026-05-30","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1000000,"output":384000},"cost":{"input":0.14,"output":0.28,"cache_read":0.01,"cache_write":0}},"deepseek-v4-pro":{"id":"deepseek-v4-pro","name":"DeepSeek V4 Pro","family":"deepseek-thinking","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-05","release_date":"2026-04-24","last_updated":"2026-05-30","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1000000,"output":384000},"cost":{"input":1.74,"output":3.48,"cache_read":0.02,"cache_write":0}}}},"berget":{"id":"berget","env":["BERGET_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://api.berget.ai/v1","name":"Berget.AI","doc":"https://api.berget.ai","models":{"mistralai/Mistral-Medium-3.5-128B":{"id":"mistralai/Mistral-Medium-3.5-128B","name":"Mistral Medium 3.5 128B","family":"mistral-medium","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2026-04","release_date":"2026-04-29","last_updated":"2026-04-29","modalities":{"input":["image","text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":131072},"cost":{"input":1.65,"output":5.5}},"mistralai/Mistral-Small-3.2-24B-Instruct-2506":{"id":"mistralai/Mistral-Small-3.2-24B-Instruct-2506","name":"Mistral Small 3.2 24B Instruct 2506","family":"mistral-small","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-09","release_date":"2025-10-01","last_updated":"2025-10-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":32000,"output":8192},"cost":{"input":0.33,"output":0.33}},"zai-org/GLM-4.7":{"id":"zai-org/GLM-4.7","name":"GLM 4.7","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-12","release_date":"2026-01-19","last_updated":"2026-01-19","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":8192},"cost":{"input":0.77,"output":2.75}},"moonshotai/Kimi-K2.6":{"id":"moonshotai/Kimi-K2.6","name":"Kimi K2.6","family":"kimi-k2.6","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-05-07","last_updated":"2026-05-07","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.83,"output":3.85,"cache_read":0.16}},"meta-llama/Llama-3.3-70B-Instruct":{"id":"meta-llama/Llama-3.3-70B-Instruct","name":"Llama 3.3 70B Instruct","family":"llama","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2023-12","release_date":"2025-04-27","last_updated":"2025-04-27","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":8192},"cost":{"input":0.99,"output":0.99}},"google/gemma-4-31B-it":{"id":"google/gemma-4-31B-it","name":"Gemma 4 31B Instruct","family":"gemma","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-12","release_date":"2026-04-02","last_updated":"2026-04-02","modalities":{"input":["audio","image","text","video"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":8192},"cost":{"input":0.275,"output":0.55}},"openai/gpt-oss-120b":{"id":"openai/gpt-oss-120b","name":"GPT-OSS-120B","family":"gpt-oss","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-08","release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":8192},"cost":{"input":0.44,"output":0.99}}}},"cloudflare-ai-gateway":{"id":"cloudflare-ai-gateway","env":["CLOUDFLARE_API_TOKEN","CLOUDFLARE_ACCOUNT_ID","CLOUDFLARE_GATEWAY_ID"],"npm":"ai-gateway-provider","name":"Cloudflare AI Gateway","doc":"https://developers.cloudflare.com/ai-gateway/","models":{"anthropic/claude-opus-4-5":{"id":"anthropic/claude-opus-4-5","name":"Claude Opus 4.5 (latest)","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-11-24","last_updated":"2025-11-24","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25}},"anthropic/claude-sonnet-4":{"id":"anthropic/claude-sonnet-4","name":"Claude Sonnet 4 (latest)","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-05-22","last_updated":"2025-05-22","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75}},"anthropic/claude-sonnet-4-6":{"id":"anthropic/claude-sonnet-4-6","name":"Claude Sonnet 4.6","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"interleaved":true,"temperature":true,"knowledge":"2025-08-31","release_date":"2026-02-17","last_updated":"2026-02-17","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":64000},"provider":{"npm":"ai-gateway-provider"},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75,"tiers":[{"input":6,"output":22.5,"cache_read":0.6,"cache_write":7.5,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":6,"output":22.5,"cache_read":0.6,"cache_write":7.5}}},"anthropic/claude-3-sonnet":{"id":"anthropic/claude-3-sonnet","name":"Claude Sonnet 3","family":"claude-sonnet","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2023-08-31","release_date":"2024-03-04","last_updated":"2024-03-04","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":4096},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":0.3}},"anthropic/claude-haiku-4-5":{"id":"anthropic/claude-haiku-4-5","name":"Claude Haiku 4.5 (latest)","family":"claude-haiku","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-02-28","release_date":"2025-10-15","last_updated":"2025-10-15","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":1,"output":5,"cache_read":0.1,"cache_write":1.25}},"anthropic/claude-opus-4-1":{"id":"anthropic/claude-opus-4-1","name":"Claude Opus 4.1 (latest)","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":32000},"cost":{"input":15,"output":75,"cache_read":1.5,"cache_write":18.75}},"anthropic/claude-3.5-haiku":{"id":"anthropic/claude-3.5-haiku","name":"Claude Haiku 3.5 (latest)","family":"claude-haiku","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-07-31","release_date":"2024-10-22","last_updated":"2024-10-22","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":8192},"cost":{"input":0.8,"output":4,"cache_read":0.08,"cache_write":1}},"anthropic/claude-3.5-sonnet":{"id":"anthropic/claude-3.5-sonnet","name":"Claude Sonnet 3.5 v2","family":"claude-sonnet","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-04-30","release_date":"2024-10-22","last_updated":"2024-10-22","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":8192},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75}},"anthropic/claude-3-haiku":{"id":"anthropic/claude-3-haiku","name":"Claude Haiku 3","family":"claude-haiku","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2023-08-31","release_date":"2024-03-13","last_updated":"2024-03-13","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":4096},"cost":{"input":0.25,"output":1.25,"cache_read":0.03,"cache_write":0.3}},"anthropic/claude-3-5-haiku":{"id":"anthropic/claude-3-5-haiku","name":"Claude Haiku 3.5 (latest)","family":"claude-haiku","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-07-31","release_date":"2024-10-22","last_updated":"2024-10-22","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":8192},"cost":{"input":0.8,"output":4,"cache_read":0.08,"cache_write":1}},"anthropic/claude-3-opus":{"id":"anthropic/claude-3-opus","name":"Claude Opus 3","family":"claude-opus","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2023-08-31","release_date":"2024-02-29","last_updated":"2024-02-29","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":4096},"cost":{"input":15,"output":75,"cache_read":1.5,"cache_write":18.75}},"anthropic/claude-opus-4-8":{"id":"anthropic/claude-opus-4-8","name":"Claude Opus 4.8","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2026-05-28","last_updated":"2026-05-28","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25}},"anthropic/claude-sonnet-4-5":{"id":"anthropic/claude-sonnet-4-5","name":"Claude Sonnet 4.5 (latest)","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-07-31","release_date":"2025-09-29","last_updated":"2025-09-29","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75}},"anthropic/claude-opus-4-6":{"id":"anthropic/claude-opus-4-6","name":"Claude Opus 4.6 (latest)","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-05-31","release_date":"2026-02-05","last_updated":"2026-02-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25,"tiers":[{"input":10,"output":37.5,"cache_read":1,"cache_write":12.5,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":10,"output":37.5,"cache_read":1,"cache_write":12.5}}},"anthropic/claude-opus-4-7":{"id":"anthropic/claude-opus-4-7","name":"Claude Opus 4.7","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2026-01","release_date":"2026-04-16","last_updated":"2026-04-16","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"provider":{"npm":"@ai-sdk/anthropic"},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25}},"anthropic/claude-opus-4":{"id":"anthropic/claude-opus-4","name":"Claude Opus 4 (latest)","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-05-22","last_updated":"2025-05-22","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":32000},"cost":{"input":15,"output":75,"cache_read":1.5,"cache_write":18.75}},"workers-ai/@cf/pipecat-ai/smart-turn-v2":{"id":"workers-ai/@cf/pipecat-ai/smart-turn-v2","name":"Pipecat Smart Turn v2","family":"smart-turn","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-11-14","last_updated":"2025-11-14","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":0,"output":0}},"workers-ai/@cf/mistralai/mistral-small-3.1-24b-instruct":{"id":"workers-ai/@cf/mistralai/mistral-small-3.1-24b-instruct","name":"Mistral Small 3.1 24B Instruct","family":"mistral-small","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-04-11","last_updated":"2025-04-11","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":0.35,"output":0.56}},"workers-ai/@cf/zai-org/glm-4.7-flash":{"id":"workers-ai/@cf/zai-org/glm-4.7-flash","name":"GLM-4.7-Flash","family":"glm-flash","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2026-01-19","last_updated":"2026-01-19","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":131072},"cost":{"input":0.06,"output":0.4}},"workers-ai/@cf/myshell-ai/melotts":{"id":"workers-ai/@cf/myshell-ai/melotts","name":"MyShell MeloTTS","family":"melotts","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-11-14","last_updated":"2025-11-14","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":0,"output":0}},"workers-ai/@cf/mistral/mistral-7b-instruct-v0.1":{"id":"workers-ai/@cf/mistral/mistral-7b-instruct-v0.1","name":"Mistral 7B Instruct v0.1","family":"mistral","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-04-03","last_updated":"2025-04-03","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":0.11,"output":0.19}},"workers-ai/@cf/qwen/qwen2.5-coder-32b-instruct":{"id":"workers-ai/@cf/qwen/qwen2.5-coder-32b-instruct","name":"Qwen 2.5 Coder 32B Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-04-11","last_updated":"2025-04-11","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":0.66,"output":1}},"workers-ai/@cf/qwen/qwq-32b":{"id":"workers-ai/@cf/qwen/qwq-32b","name":"QwQ 32B","family":"qwen","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-04-11","last_updated":"2025-04-11","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":0.66,"output":1}},"workers-ai/@cf/qwen/qwen3-embedding-0.6b":{"id":"workers-ai/@cf/qwen/qwen3-embedding-0.6b","name":"Qwen3 Embedding 0.6B","family":"qwen","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-11-14","last_updated":"2025-11-14","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":0.012,"output":0}},"workers-ai/@cf/qwen/qwen3-30b-a3b-fp8":{"id":"workers-ai/@cf/qwen/qwen3-30b-a3b-fp8","name":"Qwen3 30B A3B FP8","family":"qwen","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-11-14","last_updated":"2025-11-14","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":0.051,"output":0.34}},"workers-ai/@cf/huggingface/distilbert-sst-2-int8":{"id":"workers-ai/@cf/huggingface/distilbert-sst-2-int8","name":"DistilBERT SST-2 INT8","family":"distilbert","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-04-03","last_updated":"2025-04-03","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":0.026,"output":0}},"workers-ai/@cf/deepgram/nova-3":{"id":"workers-ai/@cf/deepgram/nova-3","name":"Deepgram Nova 3","family":"nova","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-11-14","last_updated":"2025-11-14","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":0,"output":0}},"workers-ai/@cf/deepgram/aura-2-es":{"id":"workers-ai/@cf/deepgram/aura-2-es","name":"Deepgram Aura 2 (ES)","family":"aura","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-11-14","last_updated":"2025-11-14","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":0,"output":0}},"workers-ai/@cf/deepgram/aura-2-en":{"id":"workers-ai/@cf/deepgram/aura-2-en","name":"Deepgram Aura 2 (EN)","family":"aura","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-11-14","last_updated":"2025-11-14","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":0,"output":0}},"workers-ai/@cf/moonshotai/kimi-k2.6":{"id":"workers-ai/@cf/moonshotai/kimi-k2.6","name":"Kimi K2.6","family":"kimi","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-04-20","last_updated":"2026-04-20","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"output":256000},"cost":{"input":0.95,"output":4,"cache_read":0.16}},"workers-ai/@cf/moonshotai/kimi-k2.5":{"id":"workers-ai/@cf/moonshotai/kimi-k2.5","name":"Kimi K2.5","family":"kimi","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-01-27","last_updated":"2026-01-27","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"output":256000},"cost":{"input":0.6,"output":3,"cache_read":0.1}},"workers-ai/@cf/deepseek-ai/deepseek-r1-distill-qwen-32b":{"id":"workers-ai/@cf/deepseek-ai/deepseek-r1-distill-qwen-32b","name":"DeepSeek R1 Distill Qwen 32B","family":"deepseek-thinking","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-04-03","last_updated":"2025-04-03","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":0.5,"output":4.88}},"workers-ai/@cf/nvidia/nemotron-3-120b-a12b":{"id":"workers-ai/@cf/nvidia/nemotron-3-120b-a12b","name":"Nemotron 3 Super 120B","family":"nemotron","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"release_date":"2026-03-11","last_updated":"2026-03-11","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"output":256000},"cost":{"input":0.5,"output":1.5}},"workers-ai/@cf/aisingapore/gemma-sea-lion-v4-27b-it":{"id":"workers-ai/@cf/aisingapore/gemma-sea-lion-v4-27b-it","name":"Gemma SEA-LION v4 27B IT","family":"gemma","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-09-25","last_updated":"2025-09-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":0.35,"output":0.56}},"workers-ai/@cf/facebook/bart-large-cnn":{"id":"workers-ai/@cf/facebook/bart-large-cnn","name":"BART Large CNN","family":"bart","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-04-09","last_updated":"2025-04-09","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":0,"output":0}},"workers-ai/@cf/meta/llama-3.3-70b-instruct-fp8-fast":{"id":"workers-ai/@cf/meta/llama-3.3-70b-instruct-fp8-fast","name":"Llama 3.3 70B Instruct FP8 Fast","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-04-03","last_updated":"2025-04-03","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":0.29,"output":2.25}},"workers-ai/@cf/meta/llama-3.1-8b-instruct-awq":{"id":"workers-ai/@cf/meta/llama-3.1-8b-instruct-awq","name":"Llama 3.1 8B Instruct AWQ","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-04-03","last_updated":"2025-04-03","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":0.12,"output":0.27}},"workers-ai/@cf/meta/llama-4-scout-17b-16e-instruct":{"id":"workers-ai/@cf/meta/llama-4-scout-17b-16e-instruct","name":"Llama 4 Scout 17B 16E Instruct","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-04-16","last_updated":"2025-04-16","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":0.27,"output":0.85}},"workers-ai/@cf/meta/llama-3.1-8b-instruct-fp8":{"id":"workers-ai/@cf/meta/llama-3.1-8b-instruct-fp8","name":"Llama 3.1 8B Instruct FP8","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-04-03","last_updated":"2025-04-03","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":0.15,"output":0.29}},"workers-ai/@cf/meta/llama-3.2-3b-instruct":{"id":"workers-ai/@cf/meta/llama-3.2-3b-instruct","name":"Llama 3.2 3B Instruct","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-04-03","last_updated":"2025-04-03","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":0.051,"output":0.34}},"workers-ai/@cf/meta/llama-2-7b-chat-fp16":{"id":"workers-ai/@cf/meta/llama-2-7b-chat-fp16","name":"Llama 2 7B Chat FP16","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-04-03","last_updated":"2025-04-03","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":0.56,"output":6.67}},"workers-ai/@cf/meta/llama-3.2-11b-vision-instruct":{"id":"workers-ai/@cf/meta/llama-3.2-11b-vision-instruct","name":"Llama 3.2 11B Vision Instruct","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-04-03","last_updated":"2025-04-03","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":0.049,"output":0.68}},"workers-ai/@cf/meta/m2m100-1.2b":{"id":"workers-ai/@cf/meta/m2m100-1.2b","name":"M2M100 1.2B","family":"m2m","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-04-03","last_updated":"2025-04-03","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":0.34,"output":0.34}},"workers-ai/@cf/meta/llama-3.2-1b-instruct":{"id":"workers-ai/@cf/meta/llama-3.2-1b-instruct","name":"Llama 3.2 1B Instruct","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-04-03","last_updated":"2025-04-03","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":0.027,"output":0.2}},"workers-ai/@cf/meta/llama-3-8b-instruct":{"id":"workers-ai/@cf/meta/llama-3-8b-instruct","name":"Llama 3 8B Instruct","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-04-03","last_updated":"2025-04-03","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":0.28,"output":0.83}},"workers-ai/@cf/meta/llama-3.1-8b-instruct":{"id":"workers-ai/@cf/meta/llama-3.1-8b-instruct","name":"Llama 3.1 8B Instruct","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-04-03","last_updated":"2025-04-03","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":0.28,"output":0.8299999999999998}},"workers-ai/@cf/meta/llama-3-8b-instruct-awq":{"id":"workers-ai/@cf/meta/llama-3-8b-instruct-awq","name":"Llama 3 8B Instruct AWQ","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-04-03","last_updated":"2025-04-03","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":0.12,"output":0.27}},"workers-ai/@cf/meta/llama-guard-3-8b":{"id":"workers-ai/@cf/meta/llama-guard-3-8b","name":"Llama Guard 3 8B","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-04-03","last_updated":"2025-04-03","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":0.48,"output":0.03}},"workers-ai/@cf/ibm-granite/granite-4.0-h-micro":{"id":"workers-ai/@cf/ibm-granite/granite-4.0-h-micro","name":"IBM Granite 4.0 H Micro","family":"granite","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-10-15","last_updated":"2025-10-15","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":0.017,"output":0.11}},"workers-ai/@cf/ai4bharat/indictrans2-en-indic-1B":{"id":"workers-ai/@cf/ai4bharat/indictrans2-en-indic-1B","name":"IndicTrans2 EN-Indic 1B","family":"indictrans","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-09-25","last_updated":"2025-09-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":0.34,"output":0.34}},"workers-ai/@cf/pfnet/plamo-embedding-1b":{"id":"workers-ai/@cf/pfnet/plamo-embedding-1b","name":"PLaMo Embedding 1B","family":"plamo","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-09-25","last_updated":"2025-09-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":0.019,"output":0}},"workers-ai/@cf/baai/bge-m3":{"id":"workers-ai/@cf/baai/bge-m3","name":"BGE M3","family":"bge","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-04-03","last_updated":"2025-04-03","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":0.012,"output":0}},"workers-ai/@cf/baai/bge-base-en-v1.5":{"id":"workers-ai/@cf/baai/bge-base-en-v1.5","name":"BGE Base EN v1.5","family":"bge","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-04-03","last_updated":"2025-04-03","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":0.067,"output":0}},"workers-ai/@cf/baai/bge-small-en-v1.5":{"id":"workers-ai/@cf/baai/bge-small-en-v1.5","name":"BGE Small EN v1.5","family":"bge","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-04-03","last_updated":"2025-04-03","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":0.02,"output":0}},"workers-ai/@cf/baai/bge-reranker-base":{"id":"workers-ai/@cf/baai/bge-reranker-base","name":"BGE Reranker Base","family":"bge","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-04-09","last_updated":"2025-04-09","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":0.0031,"output":0}},"workers-ai/@cf/baai/bge-large-en-v1.5":{"id":"workers-ai/@cf/baai/bge-large-en-v1.5","name":"BGE Large EN v1.5","family":"bge","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-04-03","last_updated":"2025-04-03","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":0.2,"output":0}},"workers-ai/@cf/google/gemma-3-12b-it":{"id":"workers-ai/@cf/google/gemma-3-12b-it","name":"Gemma 3 12B IT","family":"gemma","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-04-11","last_updated":"2025-04-11","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":0.35,"output":0.56}},"workers-ai/@cf/openai/gpt-oss-120b":{"id":"workers-ai/@cf/openai/gpt-oss-120b","name":"GPT OSS 120B","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":0.35,"output":0.75}},"workers-ai/@cf/openai/gpt-oss-20b":{"id":"workers-ai/@cf/openai/gpt-oss-20b","name":"GPT OSS 20B","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":0.2,"output":0.3}},"openai/gpt-4o":{"id":"openai/gpt-4o","name":"GPT-4o","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2023-09","release_date":"2024-05-13","last_updated":"2024-08-06","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":2.5,"output":10,"cache_read":1.25}},"openai/gpt-5.2":{"id":"openai/gpt-5.2","name":"GPT-5.2","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2025-12-11","last_updated":"2025-12-11","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":1.75,"output":14,"cache_read":0.175}},"openai/o3":{"id":"openai/o3","name":"o3","family":"o","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-05","release_date":"2025-04-16","last_updated":"2025-04-16","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":2,"output":8,"cache_read":0.5}},"openai/o3-pro":{"id":"openai/o3-pro","name":"o3-pro","family":"o-pro","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-05","release_date":"2025-06-10","last_updated":"2025-06-10","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":20,"output":80}},"openai/o4-mini":{"id":"openai/o4-mini","name":"o4-mini","family":"o-mini","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-05","release_date":"2025-04-16","last_updated":"2025-04-16","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":1.1,"output":4.4,"cache_read":0.28}},"openai/gpt-5.4":{"id":"openai/gpt-5.4","name":"GPT-5.4","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-03-05","last_updated":"2026-03-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1050000,"input":922000,"output":128000},"provider":{"npm":"ai-gateway-provider"},"cost":{"input":2.5,"output":15,"cache_read":0.25}},"openai/o3-mini":{"id":"openai/o3-mini","name":"o3-mini","family":"o-mini","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-05","release_date":"2024-12-20","last_updated":"2025-01-29","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":1.1,"output":4.4,"cache_read":0.55}},"openai/gpt-5.5":{"id":"openai/gpt-5.5","name":"GPT-5.5","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-12-01","release_date":"2026-04-23","last_updated":"2026-04-23","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1050000,"input":922000,"output":128000},"cost":{"input":5,"output":30,"cache_read":0.5,"tiers":[{"input":10,"output":45,"cache_read":1,"tier":{"type":"context","size":272000}}],"context_over_200k":{"input":10,"output":45,"cache_read":1}}},"openai/gpt-5.1":{"id":"openai/gpt-5.1","name":"GPT-5.1","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-11-13","last_updated":"2025-11-13","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":1.25,"output":10,"cache_read":0.13}},"openai/gpt-4o-mini":{"id":"openai/gpt-4o-mini","name":"GPT-4o mini","family":"gpt-mini","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2023-09","release_date":"2024-07-18","last_updated":"2024-07-18","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":0.15,"output":0.6,"cache_read":0.08}},"openai/gpt-5.3-codex":{"id":"openai/gpt-5.3-codex","name":"GPT-5.3 Codex","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-02-05","last_updated":"2026-02-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"provider":{"npm":"ai-gateway-provider"},"cost":{"input":1.75,"output":14,"cache_read":0.175}},"openai/gpt-3.5-turbo":{"id":"openai/gpt-3.5-turbo","name":"GPT-3.5-turbo","family":"gpt","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":true,"knowledge":"2021-09-01","release_date":"2023-03-01","last_updated":"2023-11-06","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":16385,"output":4096},"cost":{"input":0.5,"output":1.5,"cache_read":1.25}},"openai/gpt-5.2-codex":{"id":"openai/gpt-5.2-codex","name":"GPT-5.2 Codex","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2025-12-11","last_updated":"2025-12-11","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"provider":{"npm":"ai-gateway-provider"},"cost":{"input":1.75,"output":14,"cache_read":0.175}},"openai/gpt-5.1-codex":{"id":"openai/gpt-5.1-codex","name":"GPT-5.1 Codex","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-11-13","last_updated":"2025-11-13","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":1.25,"output":10,"cache_read":0.125}},"openai/gpt-4-turbo":{"id":"openai/gpt-4-turbo","name":"GPT-4 Turbo","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"structured_output":false,"temperature":true,"knowledge":"2023-12","release_date":"2023-11-06","last_updated":"2024-04-09","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":4096},"cost":{"input":10,"output":30}},"openai/o1":{"id":"openai/o1","name":"o1","family":"o","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2023-09","release_date":"2024-12-05","last_updated":"2024-12-05","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":15,"output":60,"cache_read":7.5}},"openai/gpt-4":{"id":"openai/gpt-4","name":"GPT-4","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"structured_output":false,"temperature":true,"knowledge":"2023-11","release_date":"2023-11-06","last_updated":"2024-04-09","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":8192,"output":8192},"cost":{"input":30,"output":60}}}},"requesty":{"id":"requesty","env":["REQUESTY_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://router.requesty.ai/v1","name":"Requesty","doc":"https://requesty.ai/solution/llm-routing/models","models":{"anthropic/claude-opus-4-5":{"id":"anthropic/claude-opus-4-5","name":"Claude Opus 4.5","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-11-24","last_updated":"2025-11-24","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25}},"anthropic/claude-sonnet-4":{"id":"anthropic/claude-sonnet-4","name":"Claude Sonnet 4","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-05-22","last_updated":"2025-05-22","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75}},"anthropic/claude-sonnet-4-6":{"id":"anthropic/claude-sonnet-4-6","name":"Claude Sonnet 4.6","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-08-31","release_date":"2026-02-17","last_updated":"2026-02-17","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75,"tiers":[{"input":6,"output":22.5,"cache_read":0.6,"cache_write":7.5,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":6,"output":22.5,"cache_read":0.6,"cache_write":7.5}}},"anthropic/claude-haiku-4-5":{"id":"anthropic/claude-haiku-4-5","name":"Claude Haiku 4.5","family":"claude-haiku","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-02-01","release_date":"2025-10-15","last_updated":"2025-10-15","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":62000},"cost":{"input":1,"output":5,"cache_read":0.1,"cache_write":1.25}},"anthropic/claude-opus-4-1":{"id":"anthropic/claude-opus-4-1","name":"Claude Opus 4.1","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":32000},"cost":{"input":15,"output":75,"cache_read":1.5,"cache_write":18.75}},"anthropic/claude-sonnet-4-5":{"id":"anthropic/claude-sonnet-4-5","name":"Claude Sonnet 4.5","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-07-31","release_date":"2025-09-29","last_updated":"2025-09-29","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":64000},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75}},"anthropic/claude-3-7-sonnet":{"id":"anthropic/claude-3-7-sonnet","name":"Claude Sonnet 3.7","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-01","release_date":"2025-02-19","last_updated":"2025-02-19","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75}},"anthropic/claude-opus-4-6":{"id":"anthropic/claude-opus-4-6","name":"Claude Opus 4.6","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-05-31","release_date":"2026-02-05","last_updated":"2026-02-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25,"tiers":[{"input":10,"output":37.5,"cache_read":1,"cache_write":12.5,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":10,"output":37.5,"cache_read":1,"cache_write":12.5}}},"anthropic/claude-opus-4":{"id":"anthropic/claude-opus-4","name":"Claude Opus 4","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-05-22","last_updated":"2025-05-22","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":32000},"cost":{"input":15,"output":75,"cache_read":1.5,"cache_write":18.75}},"xai/grok-4":{"id":"xai/grok-4","name":"Grok 4","family":"grok","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-09-09","last_updated":"2025-09-09","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":64000},"cost":{"input":3,"output":15,"cache_read":0.75,"cache_write":3}},"xai/grok-4-fast":{"id":"xai/grok-4-fast","name":"Grok 4 Fast","family":"grok","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-09-19","last_updated":"2025-09-19","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":2000000,"output":64000},"cost":{"input":0.2,"output":0.5,"cache_read":0.05,"cache_write":0.2}},"google/gemini-3-flash-preview":{"id":"google/gemini-3-flash-preview","name":"Gemini 3 Flash","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-12-17","last_updated":"2025-12-17","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":0.5,"output":3,"cache_read":0.05,"cache_write":1}},"google/gemini-2.5-pro":{"id":"google/gemini-2.5-pro","name":"Gemini 2.5 Pro","family":"gemini-pro","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-03-20","last_updated":"2025-06-05","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":1.25,"output":10,"cache_read":0.31,"cache_write":2.375,"tiers":[{"input":2.5,"output":15,"cache_read":0.25,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":2.5,"output":15,"cache_read":0.25}}},"google/gemini-2.5-flash":{"id":"google/gemini-2.5-flash","name":"Gemini 2.5 Flash","family":"gemini-flash","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-06-17","last_updated":"2025-06-17","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":0.3,"output":2.5,"cache_read":0.075,"cache_write":0.55}},"google/gemini-3-pro-preview":{"id":"google/gemini-3-pro-preview","name":"Gemini 3 Pro","family":"gemini-pro","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-11-18","last_updated":"2025-11-18","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":2,"output":12,"cache_read":0.2,"cache_write":4.5}},"openai/gpt-5-pro":{"id":"openai/gpt-5-pro","name":"GPT-5 Pro","family":"gpt-pro","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-10-06","last_updated":"2025-10-06","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":272000},"cost":{"input":15,"output":120}},"openai/gpt-5-mini":{"id":"openai/gpt-5-mini","name":"GPT-5 Mini","family":"gpt-mini","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2024-05-30","release_date":"2025-08-07","last_updated":"2025-08-07","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":32000},"cost":{"input":0.25,"output":2,"cache_read":0.03}},"openai/gpt-5-chat":{"id":"openai/gpt-5-chat","name":"GPT-5 Chat (latest)","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":false,"structured_output":true,"temperature":true,"knowledge":"2024-09-30","release_date":"2025-08-07","last_updated":"2025-08-07","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":1.25,"output":10}},"openai/gpt-5.2":{"id":"openai/gpt-5.2","name":"GPT-5.2","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2025-12-11","last_updated":"2025-12-11","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":1.75,"output":14,"cache_read":0.175}},"openai/gpt-5-codex":{"id":"openai/gpt-5-codex","name":"GPT-5 Codex","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-10-01","release_date":"2025-09-15","last_updated":"2025-09-15","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":1.25,"output":10,"cache_read":0.125}},"openai/gpt-5-image":{"id":"openai/gpt-5-image","name":"GPT-5 Image","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-10-01","release_date":"2025-10-14","last_updated":"2025-10-14","modalities":{"input":["text","image","pdf"],"output":["text","image"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":5,"output":10,"cache_read":1.25}},"openai/gpt-5":{"id":"openai/gpt-5","name":"GPT-5","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-08-07","last_updated":"2025-08-07","modalities":{"input":["text","audio","image","video"],"output":["text","audio","image"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":1.25,"output":10,"cache_read":0.13}},"openai/gpt-5.4-pro":{"id":"openai/gpt-5.4-pro","name":"GPT-5.4 Pro","family":"gpt-pro","attachment":true,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-03-05","last_updated":"2026-03-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1050000,"input":922000,"output":128000},"cost":{"input":30,"output":180,"cache_read":30}},"openai/gpt-4.1-mini":{"id":"openai/gpt-4.1-mini","name":"GPT-4.1 Mini","family":"gpt-mini","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-04","release_date":"2025-04-14","last_updated":"2025-04-14","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1047576,"output":32768},"cost":{"input":0.4,"output":1.6,"cache_read":0.1}},"openai/gpt-5.2-pro":{"id":"openai/gpt-5.2-pro","name":"GPT-5.2 Pro","family":"gpt-pro","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2025-12-11","last_updated":"2025-12-11","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":21,"output":168}},"openai/o4-mini":{"id":"openai/o4-mini","name":"o4 Mini","family":"o-mini","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-06","release_date":"2025-04-16","last_updated":"2025-04-16","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":1.1,"output":4.4,"cache_read":0.28}},"openai/gpt-5.4":{"id":"openai/gpt-5.4","name":"GPT-5.4","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-03-05","last_updated":"2026-03-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1050000,"input":922000,"output":128000},"cost":{"input":2.5,"output":15,"cache_read":0.25,"tiers":[{"input":5,"output":22.5,"cache_read":0.5,"tier":{"type":"context","size":272000}}],"context_over_200k":{"input":5,"output":22.5,"cache_read":0.5}}},"openai/gpt-5.1":{"id":"openai/gpt-5.1","name":"GPT-5.1","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-09-30","release_date":"2025-11-13","last_updated":"2025-11-13","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":1.25,"output":10,"cache_read":0.125}},"openai/gpt-5-nano":{"id":"openai/gpt-5-nano","name":"GPT-5 Nano","family":"gpt-nano","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2024-05-30","release_date":"2025-08-07","last_updated":"2025-08-07","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":16000,"output":4000},"cost":{"input":0.05,"output":0.4,"cache_read":0.01}},"openai/gpt-4o-mini":{"id":"openai/gpt-4o-mini","name":"GPT-4o Mini","family":"gpt-mini","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2024-07-18","last_updated":"2024-07-18","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":0.15,"output":0.6,"cache_read":0.08}},"openai/gpt-5.1-codex-max":{"id":"openai/gpt-5.1-codex-max","name":"GPT-5.1-Codex-Max","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-09-30","release_date":"2025-11-13","last_updated":"2025-11-13","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":1.1,"output":9,"cache_read":0.11}},"openai/gpt-5.1-codex-mini":{"id":"openai/gpt-5.1-codex-mini","name":"GPT-5.1-Codex-Mini","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-09-30","release_date":"2025-11-13","last_updated":"2025-11-13","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":100000},"cost":{"input":0.25,"output":2,"cache_read":0.025}},"openai/gpt-4.1":{"id":"openai/gpt-4.1","name":"GPT-4.1","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-04","release_date":"2025-04-14","last_updated":"2025-04-14","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1047576,"output":32768},"cost":{"input":2,"output":8,"cache_read":0.5}},"openai/gpt-5.3-codex":{"id":"openai/gpt-5.3-codex","name":"GPT-5.3-Codex","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-02-24","last_updated":"2026-02-24","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":1.75,"output":14,"cache_read":0.175}},"openai/gpt-5.2-chat":{"id":"openai/gpt-5.2-chat","name":"GPT-5.2 Chat","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2025-12-11","last_updated":"2025-12-11","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":1.75,"output":14,"cache_read":0.175}},"openai/gpt-5.2-codex":{"id":"openai/gpt-5.2-codex","name":"GPT-5.2-Codex","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-08-31","release_date":"2026-01-14","last_updated":"2026-01-14","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":1.75,"output":14,"cache_read":0.175}},"openai/gpt-5.1-codex":{"id":"openai/gpt-5.1-codex","name":"GPT-5.1-Codex","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-09-30","release_date":"2025-11-13","last_updated":"2025-11-13","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":1.25,"output":10,"cache_read":0.125}},"openai/gpt-5.1-chat":{"id":"openai/gpt-5.1-chat","name":"GPT-5.1 Chat","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-09-30","release_date":"2025-11-13","last_updated":"2025-11-13","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":1.25,"output":10,"cache_read":0.125}}}},"venice":{"id":"venice","env":["VENICE_API_KEY"],"npm":"venice-ai-sdk-provider","name":"Venice AI","doc":"https://docs.venice.ai","models":{"nvidia-nemotron-cascade-2-30b-a3b":{"id":"nvidia-nemotron-cascade-2-30b-a3b","name":"Nemotron Cascade 2 30B A3B","family":"nemotron","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-03-24","last_updated":"2026-04-09","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"output":32768},"cost":{"input":0.14,"output":0.8}},"zai-org-glm-4.7-flash":{"id":"zai-org-glm-4.7-flash","name":"GLM 4.7 Flash","family":"glm-flash","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-01-29","last_updated":"2026-03-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":16384},"cost":{"input":0.125,"output":0.5}},"openai-gpt-52":{"id":"openai-gpt-52","name":"GPT-5.2","family":"gpt","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-08-31","release_date":"2025-12-13","last_updated":"2026-03-12","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":65536},"cost":{"input":2.19,"output":17.5,"cache_read":0.219}},"claude-opus-4-5":{"id":"claude-opus-4-5","name":"Claude Opus 4.5","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-12-06","last_updated":"2026-04-12","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":198000,"output":32768},"cost":{"input":6,"output":30,"cache_read":0.6,"cache_write":7.5}},"claude-sonnet-4-6":{"id":"claude-sonnet-4-6","name":"Claude Sonnet 4.6","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-08-31","release_date":"2026-02-17","last_updated":"2026-03-16","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":64000},"cost":{"input":3.6,"output":18,"cache_read":0.36,"cache_write":4.5}},"claude-opus-4-8-fast":{"id":"claude-opus-4-8-fast","name":"Claude Opus 4.8 Fast","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-05-28","last_updated":"2026-05-28","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":12,"output":60,"cache_read":1.2,"cache_write":15}},"openai-gpt-54":{"id":"openai-gpt-54","name":"GPT-5.4","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-03-05","last_updated":"2026-03-09","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":131072},"cost":{"input":3.13,"output":18.8,"cache_read":0.313}},"qwen3-next-80b":{"id":"qwen3-next-80b","name":"Qwen 3 Next 80b","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-07","release_date":"2025-04-29","last_updated":"2026-03-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"output":16384},"cost":{"input":0.35,"output":1.9}},"openai-gpt-4o-mini-2024-07-18":{"id":"openai-gpt-4o-mini-2024-07-18","name":"GPT-4o Mini","family":"gpt-mini","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-02-28","last_updated":"2026-03-06","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":0.1875,"output":0.75,"cache_read":0.09375}},"mistral-small-2603":{"id":"mistral-small-2603","name":"Mistral Small 4","family":"mistral-small","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-03-16","last_updated":"2026-04-09","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"output":65536},"cost":{"input":0.1875,"output":0.75}},"gemma-4-uncensored":{"id":"gemma-4-uncensored","name":"Gemma 4 Uncensored","family":"gemma","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-04-13","last_updated":"2026-04-19","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"output":8192},"cost":{"input":0.1625,"output":0.5}},"openai-gpt-oss-120b":{"id":"openai-gpt-oss-120b","name":"OpenAI GPT OSS 120B","family":"gpt-oss","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-07","release_date":"2025-11-06","last_updated":"2026-05-06","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":16384},"cost":{"input":0.07,"output":0.3}},"hermes-3-llama-3.1-405b":{"id":"hermes-3-llama-3.1-405b","name":"Hermes 3 Llama 3.1 405b","family":"hermes","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2024-04","release_date":"2025-09-25","last_updated":"2026-03-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":16384},"cost":{"input":1.1,"output":3}},"claude-opus-4-7-fast":{"id":"claude-opus-4-7-fast","name":"Claude Opus 4.7 Fast","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-05-14","last_updated":"2026-05-14","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":36,"output":180,"cache_read":3.6,"cache_write":45}},"openai-gpt-4o-2024-11-20":{"id":"openai-gpt-4o-2024-11-20","name":"GPT-4o","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-02-28","last_updated":"2026-03-06","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":3.125,"output":12.5}},"google-gemma-4-26b-a4b-it":{"id":"google-gemma-4-26b-a4b-it","name":"Google Gemma 4 26B A4B Instruct","family":"gemma","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-04-02","last_updated":"2026-04-12","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"output":8192},"cost":{"input":0.1625,"output":0.5}},"claude-opus-4-6-fast":{"id":"claude-opus-4-6-fast","name":"Claude Opus 4.6 Fast","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-05-31","release_date":"2026-04-08","last_updated":"2026-04-08","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":36,"output":180,"cache_read":3.6,"cache_write":45}},"google-gemma-3-27b-it":{"id":"google-gemma-3-27b-it","name":"Google Gemma 3 27B Instruct","family":"gemma","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-07","release_date":"2025-11-04","last_updated":"2026-03-12","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":198000,"output":16384},"cost":{"input":0.12,"output":0.2}},"minimax-m3":{"id":"minimax-m3","name":"MiniMax M3","family":"minimax-m3","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-06-01","last_updated":"2026-06-04","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":500000,"output":131072},"cost":{"input":0.3,"output":1.2,"cache_read":0.06}},"venice-uncensored-role-play":{"id":"venice-uncensored-role-play","name":"Venice Role Play Uncensored","family":"venice","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-02-20","last_updated":"2026-03-16","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4096},"cost":{"input":0.5,"output":2}},"deepseek-v3.2":{"id":"deepseek-v3.2","name":"DeepSeek V3.2","family":"deepseek","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-10","release_date":"2025-12-04","last_updated":"2026-03-24","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":160000,"output":32768},"cost":{"input":0.33,"output":0.48,"cache_read":0.16}},"gemini-3-flash-preview":{"id":"gemini-3-flash-preview","name":"Gemini 3 Flash Preview","family":"gemini-flash","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-12-19","last_updated":"2026-03-12","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":65536},"cost":{"input":0.7,"output":3.75,"cache_read":0.07}},"zai-org-glm-5-1":{"id":"zai-org-glm-5-1","name":"GLM 5.1","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-04-07","last_updated":"2026-04-08","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":200000,"output":24000},"cost":{"input":1.75,"output":5.5,"cache_read":0.325}},"grok-build-0-1":{"id":"grok-build-0-1","name":"Grok Build 0.1","family":"grok-build","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-05-21","last_updated":"2026-05-22","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":65536},"cost":{"input":1,"output":2,"cache_read":0.2,"tiers":[{"input":2,"output":4,"cache_read":0.4,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":2,"output":4,"cache_read":0.4}}},"qwen3-6-27b":{"id":"qwen3-6-27b","name":"Qwen 3.6 27B","family":"qwen","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-04-24","last_updated":"2026-04-29","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":65536},"cost":{"input":0.325,"output":3.25}},"zai-org-glm-4.6":{"id":"zai-org-glm-4.6","name":"GLM 4.6","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2024-04-01","last_updated":"2026-04-04","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":198000,"output":16384},"cost":{"input":0.85,"output":2.75,"cache_read":0.3}},"gemini-3-1-pro-preview":{"id":"gemini-3-1-pro-preview","name":"Gemini 3.1 Pro Preview","family":"gemini-pro","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-02-19","last_updated":"2026-03-12","modalities":{"input":["text","image","audio","video"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":32768},"cost":{"input":2.5,"output":15,"cache_read":0.5,"cache_write":0.5,"tiers":[{"input":5,"output":22.5,"cache_read":0.5,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":5,"output":22.5,"cache_read":0.5}}},"qwen3-vl-235b-a22b":{"id":"qwen3-vl-235b-a22b","name":"Qwen3 VL 235B","family":"qwen","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-01-16","last_updated":"2026-03-12","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"output":16384},"cost":{"input":0.25,"output":1.5}},"openai-gpt-55-pro":{"id":"openai-gpt-55-pro","name":"GPT-5.5 Pro","family":"gpt-pro","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-04-24","last_updated":"2026-04-25","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":37.5,"output":225}},"kimi-k2-5":{"id":"kimi-k2-5","name":"Kimi K2.5","family":"kimi","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2024-04","release_date":"2026-01-27","last_updated":"2026-04-30","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":65536},"cost":{"input":0.56,"output":3.5,"cache_read":0.22}},"qwen3-235b-a22b-thinking-2507":{"id":"qwen3-235b-a22b-thinking-2507","name":"Qwen 3 235B A22B Thinking 2507","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-07","release_date":"2025-04-29","last_updated":"2026-03-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":16384},"cost":{"input":0.45,"output":3.5}},"venice-uncensored-1-2":{"id":"venice-uncensored-1-2","name":"Venice Uncensored 1.2","family":"venice","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-04-01","last_updated":"2026-04-19","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":8192},"cost":{"input":0.2,"output":0.9}},"qwen3-5-397b-a17b":{"id":"qwen3-5-397b-a17b","name":"Qwen 3.5 397B","family":"qwen","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-02-16","last_updated":"2026-04-16","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":32768},"cost":{"input":0.75,"output":4.5}},"qwen-3-6-plus":{"id":"qwen-3-6-plus","name":"Qwen 3.6 Plus Uncensored","family":"qwen","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-04-06","last_updated":"2026-04-12","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":65536},"cost":{"input":0.625,"output":3.75,"cache_read":0.0625,"cache_write":0.78,"tiers":[{"input":2.5,"output":7.5,"cache_read":0.0625,"cache_write":0.78,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":2.5,"output":7.5,"cache_read":0.0625,"cache_write":0.78}}},"zai-org-glm-5":{"id":"zai-org-glm-5","name":"GLM 5","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-02-11","last_updated":"2026-03-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":198000,"output":32000},"cost":{"input":1,"output":3.2,"cache_read":0.2}},"qwen3-5-35b-a3b":{"id":"qwen3-5-35b-a3b","name":"Qwen 3.5 35B A3B","family":"qwen","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-02-25","last_updated":"2026-05-25","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"output":16384},"cost":{"input":0.3125,"output":1.25,"cache_read":0.15625}},"openai-gpt-54-pro":{"id":"openai-gpt-54-pro","name":"GPT-5.4 Pro","family":"gpt-pro","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-03-05","last_updated":"2026-03-09","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":37.5,"output":225,"tiers":[{"input":75,"output":337.5,"tier":{"type":"context","size":272000}}],"context_over_200k":{"input":75,"output":337.5}}},"minimax-m25":{"id":"minimax-m25","name":"MiniMax M2.5","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"release_date":"2026-02-12","last_updated":"2026-04-12","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":198000,"output":32768},"cost":{"input":0.34,"output":1.19,"cache_read":0.04}},"kimi-k2-6":{"id":"kimi-k2-6","name":"Kimi K2.6","family":"kimi","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-04-20","last_updated":"2026-04-30","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"output":65536},"cost":{"input":0.85,"output":4.655,"cache_read":0.22}},"openai-gpt-53-codex":{"id":"openai-gpt-53-codex","name":"GPT-5.3 Codex","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-02-24","last_updated":"2026-03-12","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":2.19,"output":17.5,"cache_read":0.219}},"mistral-small-3-2-24b-instruct":{"id":"mistral-small-3-2-24b-instruct","name":"Mistral Small 3.2 24B Instruct","family":"mistral-small","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-01-15","last_updated":"2026-03-16","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"output":16384},"cost":{"input":0.09375,"output":0.25}},"qwen-3-7-max":{"id":"qwen-3-7-max","name":"Qwen 3.7 Max","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-05-22","last_updated":"2026-05-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":65536},"cost":{"input":2.7,"output":8.05,"cache_read":0.27,"cache_write":3.35}},"z-ai-glm-5v-turbo":{"id":"z-ai-glm-5v-turbo","name":"GLM 5V Turbo","family":"glmv","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-04-01","last_updated":"2026-04-12","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":32768},"cost":{"input":1.5,"output":5,"cache_read":0.3}},"openai-gpt-54-mini":{"id":"openai-gpt-54-mini","name":"GPT-5.4 Mini","family":"gpt-mini","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-03-27","last_updated":"2026-03-31","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":0.9375,"output":5.625,"cache_read":0.09375}},"nvidia-nemotron-3-nano-30b-a3b":{"id":"nvidia-nemotron-3-nano-30b-a3b","name":"NVIDIA Nemotron 3 Nano 30B","family":"nemotron","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-01-27","last_updated":"2026-03-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":16384},"cost":{"input":0.075,"output":0.3}},"llama-3.3-70b":{"id":"llama-3.3-70b","name":"Llama 3.3 70B","family":"llama","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2023-12","release_date":"2025-04-06","last_updated":"2026-03-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4096},"cost":{"input":0.7,"output":2.8}},"llama-3.2-3b":{"id":"llama-3.2-3b","name":"Llama 3.2 3B","family":"llama","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2023-12","release_date":"2024-10-03","last_updated":"2026-03-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4096},"cost":{"input":0.15,"output":0.6}},"qwen3-coder-480b-a35b-instruct-turbo":{"id":"qwen3-coder-480b-a35b-instruct-turbo","name":"Qwen 3 Coder 480B Turbo","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-01-27","last_updated":"2026-02-26","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"output":65536},"cost":{"input":0.35,"output":1.5,"cache_read":0.04}},"deepseek-v4-flash":{"id":"deepseek-v4-flash","name":"DeepSeek V4 Flash","family":"deepseek-flash","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-04-24","last_updated":"2026-04-29","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1000000,"output":32768},"cost":{"input":0.17,"output":0.35,"cache_read":0.028}},"grok-4-20-multi-agent":{"id":"grok-4-20-multi-agent","name":"Grok 4.20 Multi-Agent","family":"grok","attachment":true,"reasoning":true,"tool_call":false,"structured_output":true,"temperature":true,"release_date":"2026-03-12","last_updated":"2026-05-07","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":2000000,"output":128000},"cost":{"input":1.42,"output":2.83,"cache_read":0.23,"tiers":[{"input":2.83,"output":5.67,"cache_read":0.45,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":2.83,"output":5.67,"cache_read":0.45}}},"openai-gpt-52-codex":{"id":"openai-gpt-52-codex","name":"GPT-5.2 Codex","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-08","release_date":"2025-01-15","last_updated":"2026-03-12","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":65536},"cost":{"input":2.19,"output":17.5,"cache_read":0.219}},"minimax-m27":{"id":"minimax-m27","name":"MiniMax M2.7","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-03-18","last_updated":"2026-04-12","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":198000,"output":32768},"cost":{"input":0.375,"output":1.5,"cache_read":0.075}},"claude-opus-4-8":{"id":"claude-opus-4-8","name":"Claude Opus 4.8","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-05-28","last_updated":"2026-05-28","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":6,"output":30,"cache_read":0.6,"cache_write":7.5}},"arcee-trinity-large-thinking":{"id":"arcee-trinity-large-thinking","name":"Trinity Large Thinking","family":"trinity","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-04-02","last_updated":"2026-04-04","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"output":65536},"cost":{"input":0.3125,"output":1.125,"cache_read":0.075}},"qwen3-235b-a22b-instruct-2507":{"id":"qwen3-235b-a22b-instruct-2507","name":"Qwen 3 235B A22B Instruct 2507","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-07","release_date":"2025-04-29","last_updated":"2026-03-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":16384},"cost":{"input":0.15,"output":0.75}},"grok-4-3":{"id":"grok-4-3","name":"Grok 4.3","family":"grok","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-04-18","last_updated":"2026-05-04","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":32000},"cost":{"input":1.42,"output":2.83,"cache_read":0.23,"tiers":[{"input":2.83,"output":5.67,"cache_read":0.45,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":2.83,"output":5.67,"cache_read":0.45}}},"qwen3-5-9b":{"id":"qwen3-5-9b","name":"Qwen 3.5 9B","family":"qwen","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-03-05","last_updated":"2026-04-19","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"output":32768},"cost":{"input":0.1,"output":0.15}},"qwen-3-7-plus":{"id":"qwen-3-7-plus","name":"Qwen 3.7 Plus","family":"qwen","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-06-02","last_updated":"2026-06-04","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":65536},"cost":{"input":0.5,"output":2,"cache_read":0.05,"cache_write":0.625,"tiers":[{"input":1.5,"output":6,"cache_read":0.15,"cache_write":1.875,"tier":{"type":"context","size":256000}}],"context_over_200k":{"input":1.5,"output":6,"cache_read":0.15,"cache_write":1.875}}},"claude-sonnet-4-5":{"id":"claude-sonnet-4-5","name":"Claude Sonnet 4.5","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-01-15","last_updated":"2026-04-12","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":198000,"output":64000},"cost":{"input":3.75,"output":18.75,"cache_read":0.375,"cache_write":4.69}},"gemini-3-5-flash":{"id":"gemini-3-5-flash","name":"Gemini 3.5 Flash","family":"gemini-flash","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-05-22","last_updated":"2026-05-25","modalities":{"input":["text","image","audio","video"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":65536},"cost":{"input":1.55,"output":9.45,"cache_read":0.155,"cache_write":0.086}},"claude-opus-4-6":{"id":"claude-opus-4-6","name":"Claude Opus 4.6","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-05-31","release_date":"2026-02-05","last_updated":"2026-03-16","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":6,"output":30,"cache_read":0.6,"cache_write":7.5}},"olafangensan-glm-4.7-flash-heretic":{"id":"olafangensan-glm-4.7-flash-heretic","name":"GLM 4.7 Flash Heretic","family":"glm-flash","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-02-04","last_updated":"2026-03-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":200000,"output":24000},"cost":{"input":0.14,"output":0.8}},"deepseek-v4-pro":{"id":"deepseek-v4-pro","name":"DeepSeek V4 Pro","family":"deepseek","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-04-24","last_updated":"2026-04-29","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1000000,"output":32768},"cost":{"input":1.73,"output":3.796,"cache_read":0.33}},"aion-labs-aion-2-0":{"id":"aion-labs-aion-2-0","name":"Aion 2.0","family":"o","attachment":false,"reasoning":true,"tool_call":false,"temperature":true,"release_date":"2026-03-24","last_updated":"2026-04-12","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":32768},"cost":{"input":1,"output":2,"cache_read":0.25}},"claude-opus-4-7":{"id":"claude-opus-4-7","name":"Claude Opus 4.7","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"release_date":"2026-04-16","last_updated":"2026-04-16","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":6,"output":30,"cache_read":0.6,"cache_write":7.5}},"google-gemma-4-31b-it":{"id":"google-gemma-4-31b-it","name":"Google Gemma 4 31B Instruct","family":"gemma","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-04-03","last_updated":"2026-06-04","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"output":8192},"cost":{"input":0.155,"output":0.44,"cache_read":0.12}},"z-ai-glm-5-turbo":{"id":"z-ai-glm-5-turbo","name":"GLM 5 Turbo","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-03-15","last_updated":"2026-04-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":200000,"output":32768},"cost":{"input":1.2,"output":4,"cache_read":0.24}},"grok-4-20":{"id":"grok-4-20","name":"Grok 4.20","family":"grok","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-03-12","last_updated":"2026-05-07","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":2000000,"output":128000},"cost":{"input":1.42,"output":2.83,"cache_read":0.23,"tiers":[{"input":2.83,"output":5.67,"cache_read":0.45,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":2.83,"output":5.67,"cache_read":0.45}}},"mercury-2":{"id":"mercury-2","name":"Mercury 2","family":"mercury","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-02-20","last_updated":"2026-04-09","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":50000},"cost":{"input":0.3125,"output":0.9375,"cache_read":0.03125}},"zai-org-glm-4.7":{"id":"zai-org-glm-4.7","name":"GLM 4.7","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-12-24","last_updated":"2026-03-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":198000,"output":16384},"cost":{"input":0.55,"output":2.65,"cache_read":0.11}},"openai-gpt-55":{"id":"openai-gpt-55","name":"GPT-5.5","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-04-23","last_updated":"2026-04-25","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":131072},"cost":{"input":6.25,"output":37.5,"cache_read":0.625,"tiers":[{"input":12.5,"output":56.25,"cache_read":1.25,"tier":{"type":"context","size":272000}}],"context_over_200k":{"input":12.5,"output":56.25,"cache_read":1.25}}}}},"azure":{"id":"azure","env":["AZURE_RESOURCE_NAME","AZURE_API_KEY"],"npm":"@ai-sdk/azure","name":"Azure","doc":"https://learn.microsoft.com/en-us/azure/ai-services/openai/concepts/models","models":{"mistral-large-2411":{"id":"mistral-large-2411","name":"Mistral Large 24.11","family":"mistral-large","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-09","release_date":"2024-11-01","last_updated":"2024-11-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":32768},"cost":{"input":2,"output":6}},"gpt-3.5-turbo-1106":{"id":"gpt-3.5-turbo-1106","name":"GPT-3.5 Turbo 1106","family":"gpt","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2021-08","release_date":"2023-11-06","last_updated":"2023-11-06","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":16384,"output":16384},"cost":{"input":1,"output":2}},"claude-opus-4-5":{"id":"claude-opus-4-5","name":"Claude Opus 4.5","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-11-24","last_updated":"2025-08-01","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"provider":{"npm":"@ai-sdk/anthropic","api":"https://${AZURE_RESOURCE_NAME}.services.ai.azure.com/anthropic/v1"},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25}},"model-router":{"id":"model-router","name":"Model Router","family":"model-router","attachment":true,"reasoning":false,"tool_call":true,"release_date":"2025-05-19","last_updated":"2025-11-18","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":0.14,"output":0}},"gpt-5-pro":{"id":"gpt-5-pro","name":"GPT-5 Pro","family":"gpt-pro","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-10-06","last_updated":"2025-10-06","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":272000},"cost":{"input":15,"output":120}},"deepseek-r1-0528":{"id":"deepseek-r1-0528","name":"DeepSeek-R1-0528","family":"deepseek-thinking","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-07","release_date":"2025-05-28","last_updated":"2025-05-28","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":163840,"output":163840},"cost":{"input":1.35,"output":5.4}},"claude-sonnet-4-6":{"id":"claude-sonnet-4-6","name":"Claude Sonnet 4.6","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-08-31","release_date":"2026-02-17","last_updated":"2026-03-13","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":64000},"provider":{"npm":"@ai-sdk/anthropic","api":"https://${AZURE_RESOURCE_NAME}.services.ai.azure.com/anthropic/v1"},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75}},"gpt-5-mini":{"id":"gpt-5-mini","name":"GPT-5 Mini","family":"gpt-mini","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2024-05-30","release_date":"2025-08-07","last_updated":"2025-08-07","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":272000,"output":128000},"cost":{"input":0.25,"output":2,"cache_read":0.03}},"ministral-3b":{"id":"ministral-3b","name":"Ministral 3B","family":"ministral","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-03","release_date":"2024-10-22","last_updated":"2024-10-22","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":8192},"cost":{"input":0.04,"output":0.04}},"gpt-4-turbo-vision":{"id":"gpt-4-turbo-vision","name":"GPT-4 Turbo Vision","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2023-11","release_date":"2023-11-06","last_updated":"2024-04-09","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":4096},"cost":{"input":10,"output":30}},"meta-llama-3.1-405b-instruct":{"id":"meta-llama-3.1-405b-instruct","name":"Meta-Llama-3.1-405B-Instruct","family":"llama","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2023-12","release_date":"2024-07-23","last_updated":"2024-07-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":32768},"cost":{"input":5.33,"output":16}},"gpt-5-chat":{"id":"gpt-5-chat","name":"GPT-5 Chat","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":false,"temperature":false,"knowledge":"2024-10-24","release_date":"2025-08-07","last_updated":"2025-08-07","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":1.25,"output":10,"cache_read":0.13}},"gpt-4o":{"id":"gpt-4o","name":"GPT-4o","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2023-09","release_date":"2024-05-13","last_updated":"2024-08-06","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":2.5,"output":10,"cache_read":1.25}},"gpt-5.2":{"id":"gpt-5.2","name":"GPT-5.2","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2025-12-11","last_updated":"2025-12-11","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":1.75,"output":14,"cache_read":0.125}},"gpt-5-codex":{"id":"gpt-5-codex","name":"GPT-5-Codex","family":"gpt-codex","attachment":false,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-09-15","last_updated":"2025-09-15","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":1.25,"output":10,"cache_read":0.13}},"o3":{"id":"o3","name":"o3","family":"o","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2024-05","release_date":"2025-04-16","last_updated":"2025-04-16","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":2,"output":8,"cache_read":0.5}},"phi-3-medium-128k-instruct":{"id":"phi-3-medium-128k-instruct","name":"Phi-3-medium-instruct (128k)","family":"phi","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2023-10","release_date":"2024-04-23","last_updated":"2024-04-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4096},"cost":{"input":0.17,"output":0.68}},"deepseek-v3-0324":{"id":"deepseek-v3-0324","name":"DeepSeek-V3-0324","family":"deepseek","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-07","release_date":"2025-03-24","last_updated":"2025-03-24","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":131072},"cost":{"input":1.14,"output":4.56}},"kimi-k2-thinking":{"id":"kimi-k2-thinking","name":"Kimi K2 Thinking","family":"kimi-thinking","attachment":false,"reasoning":true,"tool_call":true,"interleaved":true,"temperature":true,"knowledge":"2024-08","release_date":"2025-11-06","last_updated":"2025-12-02","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.6,"output":2.5,"cache_read":0.15}},"mistral-small-2503":{"id":"mistral-small-2503","name":"Mistral Small 3.1","family":"mistral-small","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-09","release_date":"2025-03-01","last_updated":"2025-03-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":32768},"cost":{"input":0.1,"output":0.3}},"text-embedding-3-small":{"id":"text-embedding-3-small","name":"text-embedding-3-small","family":"text-embedding","attachment":false,"reasoning":false,"tool_call":false,"release_date":"2024-01-25","last_updated":"2024-01-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":8191,"output":1536},"cost":{"input":0.02,"output":0}},"gpt-5":{"id":"gpt-5","name":"GPT-5","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-08-07","last_updated":"2025-08-07","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":272000,"output":128000},"cost":{"input":1.25,"output":10,"cache_read":0.13}},"claude-haiku-4-5":{"id":"claude-haiku-4-5","name":"Claude Haiku 4.5","family":"claude-haiku","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-02-31","release_date":"2025-11-18","last_updated":"2025-11-18","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"provider":{"npm":"@ai-sdk/anthropic","api":"https://${AZURE_RESOURCE_NAME}.services.ai.azure.com/anthropic/v1"},"cost":{"input":1,"output":5,"cache_read":0.1,"cache_write":1.25}},"gpt-5.4-pro":{"id":"gpt-5.4-pro","name":"GPT-5.4 Pro","family":"gpt-pro","attachment":true,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-03-05","last_updated":"2026-03-05","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1050000,"input":922000,"output":128000},"cost":{"input":30,"output":180,"tiers":[{"input":60,"output":270,"tier":{"type":"context","size":272000}}],"context_over_200k":{"input":60,"output":270}}},"gpt-4.1-mini":{"id":"gpt-4.1-mini","name":"GPT-4.1 mini","family":"gpt-mini","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-04","release_date":"2025-04-14","last_updated":"2025-04-14","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1047576,"output":32768},"cost":{"input":0.4,"output":1.6,"cache_read":0.1}},"deepseek-v3.2":{"id":"deepseek-v3.2","name":"DeepSeek-V3.2","family":"deepseek","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-07","release_date":"2025-12-01","last_updated":"2025-12-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":128000},"cost":{"input":0.58,"output":1.68}},"text-embedding-3-large":{"id":"text-embedding-3-large","name":"text-embedding-3-large","family":"text-embedding","attachment":false,"reasoning":false,"tool_call":false,"release_date":"2024-01-25","last_updated":"2024-01-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":8191,"output":3072},"cost":{"input":0.13,"output":0}},"o4-mini":{"id":"o4-mini","name":"o4-mini","family":"o-mini","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2024-05","release_date":"2025-04-16","last_updated":"2025-04-16","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":1.1,"output":4.4,"cache_read":0.275}},"gpt-5.4":{"id":"gpt-5.4","name":"GPT-5.4","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-03-05","last_updated":"2026-03-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1050000,"input":922000,"output":128000},"cost":{"input":2.5,"output":15,"cache_read":0.25,"tiers":[{"input":5,"output":22.5,"cache_read":0.5,"tier":{"type":"context","size":272000}}],"context_over_200k":{"input":5,"output":22.5,"cache_read":0.5}}},"o3-mini":{"id":"o3-mini","name":"o3-mini","family":"o-mini","attachment":false,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2024-05","release_date":"2024-12-20","last_updated":"2025-01-29","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":1.1,"output":4.4,"cache_read":0.55}},"phi-4-reasoning":{"id":"phi-4-reasoning","name":"Phi-4-reasoning","family":"phi","attachment":false,"reasoning":true,"tool_call":false,"temperature":true,"knowledge":"2023-10","release_date":"2024-12-11","last_updated":"2024-12-11","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":32000,"output":4096},"cost":{"input":0.125,"output":0.5}},"phi-4":{"id":"phi-4","name":"Phi-4","family":"phi","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2023-10","release_date":"2024-12-11","last_updated":"2024-12-11","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4096},"cost":{"input":0.125,"output":0.5}},"gpt-5.5":{"id":"gpt-5.5","name":"GPT-5.5","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-12-01","release_date":"2026-04-24","last_updated":"2026-04-24","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1050000,"input":922000,"output":128000},"cost":{"input":5,"output":30,"cache_read":0.5,"tiers":[{"input":10,"output":45,"cache_read":1,"tier":{"type":"context","size":272000}}],"context_over_200k":{"input":10,"output":45,"cache_read":1}}},"mistral-nemo":{"id":"mistral-nemo","name":"Mistral Nemo","family":"mistral-nemo","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-07","release_date":"2024-07-18","last_updated":"2024-07-18","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":128000},"cost":{"input":0.15,"output":0.15}},"kimi-k2.6":{"id":"kimi-k2.6","name":"Kimi K2.6","family":"kimi","attachment":false,"reasoning":true,"tool_call":true,"interleaved":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-04-22","last_updated":"2026-04-22","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"provider":{"npm":"@ai-sdk/openai-compatible","api":"https://${AZURE_RESOURCE_NAME}.services.ai.azure.com/models","shape":"completions"},"cost":{"input":0.95,"output":4}},"gpt-4-32k":{"id":"gpt-4-32k","name":"GPT-4 32K","family":"gpt","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2023-11","release_date":"2023-03-14","last_updated":"2023-03-14","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":32768,"output":32768},"cost":{"input":60,"output":120}},"meta-llama-3.1-8b-instruct":{"id":"meta-llama-3.1-8b-instruct","name":"Meta-Llama-3.1-8B-Instruct","family":"llama","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2023-12","release_date":"2024-07-23","last_updated":"2024-07-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":32768},"cost":{"input":0.3,"output":0.61}},"llama-4-scout-17b-16e-instruct":{"id":"llama-4-scout-17b-16e-instruct","name":"Llama 4 Scout 17B 16E Instruct","family":"llama","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-08","release_date":"2025-04-05","last_updated":"2025-04-05","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":8192},"cost":{"input":0.2,"output":0.78}},"phi-3-mini-128k-instruct":{"id":"phi-3-mini-128k-instruct","name":"Phi-3-mini-instruct (128k)","family":"phi","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2023-10","release_date":"2024-04-23","last_updated":"2024-04-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4096},"cost":{"input":0.13,"output":0.52}},"phi-3-small-128k-instruct":{"id":"phi-3-small-128k-instruct","name":"Phi-3-small-instruct (128k)","family":"phi","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2023-10","release_date":"2024-04-23","last_updated":"2024-04-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4096},"cost":{"input":0.15,"output":0.6}},"phi-4-mini":{"id":"phi-4-mini","name":"Phi-4-mini","family":"phi","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2023-10","release_date":"2024-12-11","last_updated":"2024-12-11","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4096},"cost":{"input":0.075,"output":0.3}},"gpt-5.1":{"id":"gpt-5.1","name":"GPT-5.1","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-11-14","last_updated":"2025-11-14","modalities":{"input":["text","image","audio"],"output":["text","image","audio"]},"open_weights":false,"limit":{"context":272000,"output":128000},"cost":{"input":1.25,"output":10,"cache_read":0.125}},"gpt-5-nano":{"id":"gpt-5-nano","name":"GPT-5 Nano","family":"gpt-nano","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2024-05-30","release_date":"2025-08-07","last_updated":"2025-08-07","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":272000,"output":128000},"cost":{"input":0.05,"output":0.4,"cache_read":0.01}},"gpt-4o-mini":{"id":"gpt-4o-mini","name":"GPT-4o mini","family":"gpt-mini","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2023-09","release_date":"2024-07-18","last_updated":"2024-07-18","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":0.15,"output":0.6,"cache_read":0.075}},"claude-opus-4-1":{"id":"claude-opus-4-1","name":"Claude Opus 4.1","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-11-18","last_updated":"2025-11-18","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":32000},"provider":{"npm":"@ai-sdk/anthropic","api":"https://${AZURE_RESOURCE_NAME}.services.ai.azure.com/anthropic/v1"},"cost":{"input":15,"output":75,"cache_read":1.5,"cache_write":18.75}},"gpt-5.1-codex-max":{"id":"gpt-5.1-codex-max","name":"GPT-5.1 Codex Max","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-11-13","last_updated":"2025-11-13","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":1.25,"output":10,"cache_read":0.125}},"grok-4-fast-reasoning":{"id":"grok-4-fast-reasoning","name":"Grok 4 Fast (Reasoning)","family":"grok","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-07","release_date":"2025-09-19","last_updated":"2025-09-19","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":2000000,"output":30000},"cost":{"input":0.2,"output":0.5,"cache_read":0.05}},"gpt-5.1-codex-mini":{"id":"gpt-5.1-codex-mini","name":"GPT-5.1 Codex Mini","family":"gpt-codex","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-11-14","last_updated":"2025-11-14","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":0.25,"output":2,"cache_read":0.025}},"text-embedding-ada-002":{"id":"text-embedding-ada-002","name":"text-embedding-ada-002","family":"text-embedding","attachment":false,"reasoning":false,"tool_call":false,"release_date":"2022-12-15","last_updated":"2022-12-15","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":8192,"output":1536},"cost":{"input":0.1,"output":0}},"mai-ds-r1":{"id":"mai-ds-r1","name":"MAI-DS-R1","family":"mai","attachment":false,"reasoning":true,"tool_call":false,"temperature":true,"knowledge":"2024-06","release_date":"2025-01-20","last_updated":"2025-01-20","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":8192},"cost":{"input":1.35,"output":5.4}},"phi-4-reasoning-plus":{"id":"phi-4-reasoning-plus","name":"Phi-4-reasoning-plus","family":"phi","attachment":false,"reasoning":true,"tool_call":false,"temperature":true,"knowledge":"2023-10","release_date":"2024-12-11","last_updated":"2024-12-11","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":32000,"output":4096},"cost":{"input":0.125,"output":0.5}},"grok-4-1-fast-non-reasoning":{"id":"grok-4-1-fast-non-reasoning","name":"Grok 4.1 Fast (Non-Reasoning)","family":"grok","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2025-06-27","last_updated":"2025-06-27","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":8192},"status":"beta","cost":{"input":0.2,"output":0.5,"cache_read":0.05}},"deepseek-r1":{"id":"deepseek-r1","name":"DeepSeek-R1","family":"deepseek-thinking","attachment":false,"reasoning":true,"tool_call":false,"temperature":true,"knowledge":"2024-07","release_date":"2025-01-20","last_updated":"2025-01-20","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":163840,"output":163840},"cost":{"input":1.35,"output":5.4}},"mistral-medium-2505":{"id":"mistral-medium-2505","name":"Mistral Medium 3","family":"mistral-medium","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-05","release_date":"2025-05-07","last_updated":"2025-05-07","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":128000},"cost":{"input":0.4,"output":2}},"llama-4-maverick-17b-128e-instruct-fp8":{"id":"llama-4-maverick-17b-128e-instruct-fp8","name":"Llama 4 Maverick 17B 128E Instruct FP8","family":"llama","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-08","release_date":"2025-04-05","last_updated":"2025-04-05","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":8192},"cost":{"input":0.25,"output":1}},"cohere-command-r-plus-08-2024":{"id":"cohere-command-r-plus-08-2024","name":"Command R+","family":"command-r","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-06-01","release_date":"2024-08-30","last_updated":"2024-08-30","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4000},"cost":{"input":2.5,"output":10}},"gpt-4.1":{"id":"gpt-4.1","name":"GPT-4.1","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-04","release_date":"2025-04-14","last_updated":"2025-04-14","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1047576,"output":32768},"cost":{"input":2,"output":8,"cache_read":0.5}},"phi-3-small-8k-instruct":{"id":"phi-3-small-8k-instruct","name":"Phi-3-small-instruct (8k)","family":"phi","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2023-10","release_date":"2024-04-23","last_updated":"2024-04-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":8192,"output":2048},"cost":{"input":0.15,"output":0.6}},"meta-llama-3-8b-instruct":{"id":"meta-llama-3-8b-instruct","name":"Meta-Llama-3-8B-Instruct","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2023-12","release_date":"2024-04-18","last_updated":"2024-04-18","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":8192,"output":2048},"cost":{"input":0.3,"output":0.61}},"gpt-5.4-nano":{"id":"gpt-5.4-nano","name":"GPT-5.4 Nano","family":"gpt-nano","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-03-17","last_updated":"2026-03-17","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":0.2,"output":1.25,"cache_read":0.02}},"phi-3.5-mini-instruct":{"id":"phi-3.5-mini-instruct","name":"Phi-3.5-mini-instruct","family":"phi","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2023-10","release_date":"2024-08-20","last_updated":"2024-08-20","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4096},"cost":{"input":0.13,"output":0.52}},"cohere-embed-v3-english":{"id":"cohere-embed-v3-english","name":"Embed v3 English","family":"cohere-embed","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2023-11-07","last_updated":"2023-11-07","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":512,"output":1024},"cost":{"input":0.1,"output":0}},"phi-3-mini-4k-instruct":{"id":"phi-3-mini-4k-instruct","name":"Phi-3-mini-instruct (4k)","family":"phi","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2023-10","release_date":"2024-04-23","last_updated":"2024-04-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":4096,"output":1024},"cost":{"input":0.13,"output":0.52}},"meta-llama-3.1-70b-instruct":{"id":"meta-llama-3.1-70b-instruct","name":"Meta-Llama-3.1-70B-Instruct","family":"llama","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2023-12","release_date":"2024-07-23","last_updated":"2024-07-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":32768},"cost":{"input":2.68,"output":3.54}},"phi-3-medium-4k-instruct":{"id":"phi-3-medium-4k-instruct","name":"Phi-3-medium-instruct (4k)","family":"phi","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2023-10","release_date":"2024-04-23","last_updated":"2024-04-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":4096,"output":1024},"cost":{"input":0.17,"output":0.68}},"deepseek-v3.2-speciale":{"id":"deepseek-v3.2-speciale","name":"DeepSeek-V3.2-Speciale","family":"deepseek","attachment":false,"reasoning":true,"tool_call":false,"temperature":true,"knowledge":"2024-07","release_date":"2025-12-01","last_updated":"2025-12-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":128000},"cost":{"input":0.58,"output":1.68}},"gpt-5.3-codex":{"id":"gpt-5.3-codex","name":"GPT-5.3 Codex","family":"gpt-codex","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-02-24","last_updated":"2026-02-24","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":1.75,"output":14,"cache_read":0.175}},"phi-4-multimodal":{"id":"phi-4-multimodal","name":"Phi-4-multimodal","family":"phi","attachment":true,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2023-10","release_date":"2024-12-11","last_updated":"2024-12-11","modalities":{"input":["text","image","audio"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4096},"cost":{"input":0.08,"output":0.32,"input_audio":4}},"gpt-3.5-turbo-0125":{"id":"gpt-3.5-turbo-0125","name":"GPT-3.5 Turbo 0125","family":"gpt","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2021-08","release_date":"2024-01-25","last_updated":"2024-01-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":16384,"output":16384},"cost":{"input":0.5,"output":1.5}},"llama-3.2-11b-vision-instruct":{"id":"llama-3.2-11b-vision-instruct","name":"Llama-3.2-11B-Vision-Instruct","family":"llama","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2023-12","release_date":"2024-09-25","last_updated":"2024-09-25","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":8192},"cost":{"input":0.37,"output":0.37}},"phi-3.5-moe-instruct":{"id":"phi-3.5-moe-instruct","name":"Phi-3.5-MoE-instruct","family":"phi","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2023-10","release_date":"2024-08-20","last_updated":"2024-08-20","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4096},"cost":{"input":0.16,"output":0.64}},"cohere-command-r-08-2024":{"id":"cohere-command-r-08-2024","name":"Command R","family":"command-r","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-06-01","release_date":"2024-08-30","last_updated":"2024-08-30","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4000},"cost":{"input":0.15,"output":0.6}},"gpt-5.2-chat":{"id":"gpt-5.2-chat","name":"GPT-5.2 Chat","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2025-12-11","last_updated":"2025-12-11","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":1.75,"output":14,"cache_read":0.175}},"meta-llama-3-70b-instruct":{"id":"meta-llama-3-70b-instruct","name":"Meta-Llama-3-70B-Instruct","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2023-12","release_date":"2024-04-18","last_updated":"2024-04-18","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":8192,"output":2048},"cost":{"input":2.68,"output":3.54}},"grok-4-20-reasoning":{"id":"grok-4-20-reasoning","name":"Grok 4.20 (Reasoning)","family":"grok","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-09","release_date":"2026-04-08","last_updated":"2026-04-08","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262000,"output":8192},"status":"beta","cost":{"input":2,"output":6}},"gpt-3.5-turbo-instruct":{"id":"gpt-3.5-turbo-instruct","name":"GPT-3.5 Turbo Instruct","family":"gpt","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2021-08","release_date":"2023-09-21","last_updated":"2023-09-21","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":4096,"output":4096},"cost":{"input":1.5,"output":2}},"gpt-5.2-codex":{"id":"gpt-5.2-codex","name":"GPT-5.2 Codex","family":"gpt-codex","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-01-14","last_updated":"2026-01-14","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":1.75,"output":14,"cache_read":0.175}},"o1-mini":{"id":"o1-mini","name":"o1-mini","family":"o-mini","attachment":false,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2023-09","release_date":"2024-09-12","last_updated":"2024-09-12","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":65536},"cost":{"input":1.1,"output":4.4,"cache_read":0.55}},"gpt-5.1-codex":{"id":"gpt-5.1-codex","name":"GPT-5.1 Codex","family":"gpt-codex","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-11-14","last_updated":"2025-11-14","modalities":{"input":["text","image","audio"],"output":["text","image","audio"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":1.25,"output":10,"cache_read":0.125}},"phi-4-mini-reasoning":{"id":"phi-4-mini-reasoning","name":"Phi-4-mini-reasoning","family":"phi","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2023-10","release_date":"2024-12-11","last_updated":"2024-12-11","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4096},"cost":{"input":0.075,"output":0.3}},"o1-preview":{"id":"o1-preview","name":"o1-preview","family":"o","attachment":false,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2023-09","release_date":"2024-09-12","last_updated":"2024-09-12","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":32768},"cost":{"input":16.5,"output":66,"cache_read":8.25}},"gpt-5.1-chat":{"id":"gpt-5.1-chat","name":"GPT-5.1 Chat","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-11-14","last_updated":"2025-11-14","modalities":{"input":["text","image","audio"],"output":["text","image","audio"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":1.25,"output":10,"cache_read":0.125}},"gpt-3.5-turbo-0613":{"id":"gpt-3.5-turbo-0613","name":"GPT-3.5 Turbo 0613","family":"gpt","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2021-08","release_date":"2023-06-13","last_updated":"2023-06-13","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":16384,"output":16384},"cost":{"input":3,"output":4}},"claude-sonnet-4-5":{"id":"claude-sonnet-4-5","name":"Claude Sonnet 4.5","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-07-31","release_date":"2025-11-18","last_updated":"2025-11-18","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"provider":{"npm":"@ai-sdk/anthropic","api":"https://${AZURE_RESOURCE_NAME}.services.ai.azure.com/anthropic/v1"},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75}},"gpt-5.4-mini":{"id":"gpt-5.4-mini","name":"GPT-5.4 Mini","family":"gpt-mini","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-03-17","last_updated":"2026-03-17","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":0.75,"output":4.5,"cache_read":0.075}},"gpt-4-turbo":{"id":"gpt-4-turbo","name":"GPT-4 Turbo","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2023-12","release_date":"2023-11-06","last_updated":"2024-04-09","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":4096},"cost":{"input":10,"output":30}},"claude-opus-4-6":{"id":"claude-opus-4-6","name":"Claude Opus 4.6","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-05-31","release_date":"2026-02-05","last_updated":"2026-02-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":128000},"provider":{"npm":"@ai-sdk/anthropic","api":"https://${AZURE_RESOURCE_NAME}.services.ai.azure.com/anthropic/v1"},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25,"tiers":[{"input":10,"output":37.5,"cache_read":1,"cache_write":12.5,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":10,"output":37.5,"cache_read":1,"cache_write":12.5}}},"llama-3.3-70b-instruct":{"id":"llama-3.3-70b-instruct","name":"Llama-3.3-70B-Instruct","family":"llama","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2023-12","release_date":"2024-12-06","last_updated":"2024-12-06","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":32768},"cost":{"input":0.71,"output":0.71}},"llama-3.2-90b-vision-instruct":{"id":"llama-3.2-90b-vision-instruct","name":"Llama-3.2-90B-Vision-Instruct","family":"llama","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2023-12","release_date":"2024-09-25","last_updated":"2024-09-25","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":8192},"cost":{"input":2.04,"output":2.04}},"gpt-3.5-turbo-0301":{"id":"gpt-3.5-turbo-0301","name":"GPT-3.5 Turbo 0301","family":"gpt","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2021-08","release_date":"2023-03-01","last_updated":"2023-03-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":4096,"output":4096},"cost":{"input":1.5,"output":2}},"o1":{"id":"o1","name":"o1","family":"o","attachment":false,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2023-09","release_date":"2024-12-05","last_updated":"2024-12-05","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":15,"output":60,"cache_read":7.5}},"kimi-k2.5":{"id":"kimi-k2.5","name":"Kimi K2.5","family":"kimi","attachment":false,"reasoning":true,"tool_call":true,"interleaved":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-02-06","last_updated":"2026-02-06","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"provider":{"npm":"@ai-sdk/openai-compatible","api":"https://${AZURE_RESOURCE_NAME}.services.ai.azure.com/models","shape":"completions"},"cost":{"input":0.6,"output":3}},"codex-mini":{"id":"codex-mini","name":"Codex Mini","family":"gpt-codex-mini","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2024-04","release_date":"2025-05-16","last_updated":"2025-05-16","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":1.5,"output":6,"cache_read":0.375}},"deepseek-v3.1":{"id":"deepseek-v3.1","name":"DeepSeek-V3.1","family":"deepseek","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-07","release_date":"2025-08-21","last_updated":"2025-08-21","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":131072},"cost":{"input":0.56,"output":1.68}},"cohere-command-a":{"id":"cohere-command-a","name":"Command A","family":"command-a","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-06-01","release_date":"2025-03-13","last_updated":"2025-03-13","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"output":8000},"cost":{"input":2.5,"output":10}},"gpt-4":{"id":"gpt-4","name":"GPT-4","family":"gpt","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2023-11","release_date":"2023-03-14","last_updated":"2023-03-14","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":8192,"output":8192},"cost":{"input":60,"output":120}},"gpt-5.3-chat":{"id":"gpt-5.3-chat","name":"GPT-5.3 Chat","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-03-03","last_updated":"2026-03-03","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":1.75,"output":14,"cache_read":0.175}},"grok-4-1-fast-reasoning":{"id":"grok-4-1-fast-reasoning","name":"Grok 4.1 Fast (Reasoning)","family":"grok","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-06-27","last_updated":"2025-06-27","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":8192},"status":"beta","cost":{"input":0.2,"output":0.5,"cache_read":0.05}},"codestral-2501":{"id":"codestral-2501","name":"Codestral 25.01","family":"codestral","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-03","release_date":"2025-01-01","last_updated":"2025-01-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":256000},"cost":{"input":0.3,"output":0.9}},"grok-4-20-non-reasoning":{"id":"grok-4-20-non-reasoning","name":"Grok 4.20 (Non-Reasoning)","family":"grok","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-09","release_date":"2026-04-08","last_updated":"2026-04-08","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262000,"output":8192},"status":"beta","cost":{"input":2,"output":6}},"gpt-4.1-nano":{"id":"gpt-4.1-nano","name":"GPT-4.1 nano","family":"gpt-nano","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-04","release_date":"2025-04-14","last_updated":"2025-04-14","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1047576,"output":32768},"cost":{"input":0.1,"output":0.4,"cache_read":0.025}},"cohere-embed-v3-multilingual":{"id":"cohere-embed-v3-multilingual","name":"Embed v3 Multilingual","family":"cohere-embed","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2023-11-07","last_updated":"2023-11-07","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":512,"output":1024},"cost":{"input":0.1,"output":0}},"cohere-embed-v-4-0":{"id":"cohere-embed-v-4-0","name":"Embed v4","family":"cohere-embed","attachment":true,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2025-04-15","last_updated":"2025-04-15","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":1536},"cost":{"input":0.12,"output":0}}}},"atomic-chat":{"id":"atomic-chat","env":["ATOMIC_CHAT_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"http://127.0.0.1:1337/v1","name":"Atomic Chat","doc":"https://atomic.chat","models":{"Meta-Llama-3_1-8B-Instruct-GGUF":{"id":"Meta-Llama-3_1-8B-Instruct-GGUF","name":"Meta Llama 3.1 8B Instruct (GGUF)","family":"llama","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2024-07-23","last_updated":"2024-07-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":4096},"cost":{"input":0,"output":0}},"gemma-4-E4B-it-IQ4_XS":{"id":"gemma-4-E4B-it-IQ4_XS","name":"Gemma 4 E4B Instruct (IQ4_XS)","family":"gemma","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2026-04-02","last_updated":"2026-04-02","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":32768,"output":8192},"cost":{"input":0,"output":0}},"Qwen3_5-9B-MLX-4bit":{"id":"Qwen3_5-9B-MLX-4bit","name":"Qwen 3.5 9B (MLX 4-bit)","family":"qwen","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2026-03-05","last_updated":"2026-04-04","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":32768,"output":8192},"cost":{"input":0,"output":0}},"gemma-4-E4B-it-MLX-4bit":{"id":"gemma-4-E4B-it-MLX-4bit","name":"Gemma 4 E4B Instruct (MLX 4-bit)","family":"gemma","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2026-04-02","last_updated":"2026-04-02","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":32768,"output":8192},"cost":{"input":0,"output":0}},"Qwen3_5-9B-Q4_K_M":{"id":"Qwen3_5-9B-Q4_K_M","name":"Qwen 3.5 9B (Q4_K_M)","family":"qwen","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2026-03-05","last_updated":"2026-04-04","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":32768,"output":8192},"cost":{"input":0,"output":0}}}},"merge-gateway":{"id":"merge-gateway","env":["MERGE_GATEWAY_API_KEY"],"npm":"merge-gateway-ai-sdk-provider","name":"Merge Gateway","doc":"https://docs.merge.dev/merge-gateway","models":{"deepseek/deepseek-v4-flash":{"id":"deepseek/deepseek-v4-flash","name":"DeepSeek V4 Flash","family":"deepseek-flash","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-05","release_date":"2026-04-24","last_updated":"2026-04-24","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1000000,"output":384000},"cost":{"input":0.14,"output":0.28,"cache_read":0.0028}},"deepseek/deepseek-v4-pro":{"id":"deepseek/deepseek-v4-pro","name":"DeepSeek V4 Pro","family":"deepseek-thinking","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-05","release_date":"2026-04-24","last_updated":"2026-04-24","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1000000,"output":384000},"cost":{"input":0.435,"output":0.87,"cache_read":0.003625}},"anthropic/claude-sonnet-4-6":{"id":"anthropic/claude-sonnet-4-6","name":"Claude Sonnet 4.6","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-08-31","release_date":"2026-02-17","last_updated":"2026-03-13","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":64000},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75}},"anthropic/claude-haiku-4-5-20251001":{"id":"anthropic/claude-haiku-4-5-20251001","name":"Claude Haiku 4.5","family":"claude-haiku","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-02-28","release_date":"2025-10-15","last_updated":"2025-10-15","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":1,"output":5,"cache_read":0.1,"cache_write":1.25}},"anthropic/claude-opus-4-20250514":{"id":"anthropic/claude-opus-4-20250514","name":"Claude Opus 4","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-05-22","last_updated":"2025-05-22","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":32000},"cost":{"input":15,"output":75,"cache_read":1.5,"cache_write":18.75}},"anthropic/claude-sonnet-4-5-20250929":{"id":"anthropic/claude-sonnet-4-5-20250929","name":"Claude Sonnet 4.5","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-07-31","release_date":"2025-09-29","last_updated":"2025-09-29","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75}},"anthropic/claude-opus-4-1-20250805":{"id":"anthropic/claude-opus-4-1-20250805","name":"Claude Opus 4.1","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":32000},"cost":{"input":15,"output":75,"cache_read":1.5,"cache_write":18.75}},"anthropic/claude-opus-4-5-20251101":{"id":"anthropic/claude-opus-4-5-20251101","name":"Claude Opus 4.5","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-11-01","last_updated":"2025-11-01","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25}},"anthropic/claude-sonnet-4-20250514":{"id":"anthropic/claude-sonnet-4-20250514","name":"Claude Sonnet 4","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-05-22","last_updated":"2025-05-22","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75}},"anthropic/claude-opus-4-6":{"id":"anthropic/claude-opus-4-6","name":"Claude Opus 4.6","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-05-31","release_date":"2026-02-05","last_updated":"2026-03-13","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"experimental":{"modes":{"fast":{"cost":{"input":30,"output":150,"cache_read":3,"cache_write":37.5},"provider":{"body":{"speed":"fast"},"headers":{"anthropic-beta":"fast-mode-2026-02-01"}}}}},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25}},"anthropic/claude-opus-4-7":{"id":"anthropic/claude-opus-4-7","name":"Claude Opus 4.7","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2026-01-31","release_date":"2026-04-16","last_updated":"2026-04-16","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"experimental":{"modes":{"fast":{"cost":{"input":30,"output":150,"cache_read":3,"cache_write":37.5},"provider":{"body":{"speed":"fast"},"headers":{"anthropic-beta":"fast-mode-2026-02-01"}}}}},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25}},"mistral/mistral-large-2411":{"id":"mistral/mistral-large-2411","name":"Mistral Large 2.1","family":"mistral-large","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-11","release_date":"2024-11-01","last_updated":"2024-11-04","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":16384},"cost":{"input":2,"output":6}},"mistral/mistral-medium-latest":{"id":"mistral/mistral-medium-latest","name":"Mistral Medium (latest)","family":"mistral-medium","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-05","release_date":"2025-08-12","last_updated":"2025-08-12","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"output":262144},"cost":{"input":0.4,"output":2}},"mistral/devstral-medium-latest":{"id":"mistral/devstral-medium-latest","name":"Devstral 2 (latest)","family":"devstral","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-12","release_date":"2025-12-02","last_updated":"2025-12-02","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"status":"deprecated","cost":{"input":0.4,"output":2}},"mistral/mistral-large-2512":{"id":"mistral/mistral-large-2512","name":"Mistral Large 3","family":"mistral-large","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-11","release_date":"2024-11-01","last_updated":"2025-12-02","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.5,"output":1.5}},"mistral/mistral-large-latest":{"id":"mistral/mistral-large-latest","name":"Mistral Large (latest)","family":"mistral-large","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-11","release_date":"2024-11-01","last_updated":"2025-12-02","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.5,"output":1.5}},"mistral/mistral-medium-2505":{"id":"mistral/mistral-medium-2505","name":"Mistral Medium 3","family":"mistral-medium","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-05","release_date":"2025-05-07","last_updated":"2025-05-07","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":131072},"cost":{"input":0.4,"output":2}},"mistral/devstral-small-2507":{"id":"mistral/devstral-small-2507","name":"Devstral Small","family":"devstral","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-05","release_date":"2025-07-10","last_updated":"2025-07-10","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":128000},"status":"deprecated","cost":{"input":0.1,"output":0.3}},"mistral/devstral-2512":{"id":"mistral/devstral-2512","name":"Devstral 2","family":"devstral","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-12","release_date":"2025-12-09","last_updated":"2025-12-09","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"status":"deprecated","cost":{"input":0.4,"output":2}},"mistral/codestral-latest":{"id":"mistral/codestral-latest","name":"Codestral (latest)","family":"codestral","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2024-05-29","last_updated":"2025-01-04","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"output":4096},"cost":{"input":0.3,"output":0.9}},"mistral/pixtral-large-latest":{"id":"mistral/pixtral-large-latest","name":"Pixtral Large (latest)","family":"pixtral","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-11","release_date":"2024-11-01","last_updated":"2024-11-04","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":128000},"cost":{"input":2,"output":6}},"mistral/magistral-medium-latest":{"id":"mistral/magistral-medium-latest","name":"Magistral Medium (latest)","family":"magistral-medium","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-06","release_date":"2025-03-17","last_updated":"2025-03-20","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":2,"output":5}},"mistral/mistral-small-latest":{"id":"mistral/mistral-small-latest","name":"Mistral Small (latest)","family":"mistral-small","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-06","release_date":"2026-03-16","last_updated":"2026-03-16","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"output":256000},"cost":{"input":0.15,"output":0.6}},"mistral/devstral-medium-2507":{"id":"mistral/devstral-medium-2507","name":"Devstral Medium","family":"devstral","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-05","release_date":"2025-07-10","last_updated":"2025-07-10","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":128000},"status":"deprecated","cost":{"input":0.4,"output":2}},"xai/grok-4.20-0309-reasoning":{"id":"xai/grok-4.20-0309-reasoning","name":"Grok 4.20 (Reasoning)","family":"grok","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-03-09","last_updated":"2026-03-09","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":2000000,"output":30000},"cost":{"input":1.25,"output":2.5,"cache_read":0.2,"tiers":[{"input":2.5,"output":5,"cache_read":0.4,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":2.5,"output":5,"cache_read":0.4}}},"xai/grok-4.3":{"id":"xai/grok-4.3","name":"Grok 4.3","family":"grok","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-04-17","last_updated":"2026-04-17","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":30000},"cost":{"input":1.25,"output":2.5,"cache_read":0.2,"tiers":[{"input":2.5,"output":5,"cache_read":0.4,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":2.5,"output":5,"cache_read":0.4}}},"cohere/command-r-plus-08-2024":{"id":"cohere/command-r-plus-08-2024","name":"Command R+","family":"command-r","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-06-01","release_date":"2024-08-30","last_updated":"2024-08-30","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4000},"cost":{"input":2.5,"output":10}},"cohere/command-r-08-2024":{"id":"cohere/command-r-08-2024","name":"Command R","family":"command-r","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-06-01","release_date":"2024-08-30","last_updated":"2024-08-30","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4000},"cost":{"input":0.15,"output":0.6}},"cohere/command-r7b-12-2024":{"id":"cohere/command-r7b-12-2024","name":"Command R7B","family":"command-r","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-06-01","release_date":"2024-02-27","last_updated":"2024-02-27","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4000},"cost":{"input":0.0375,"output":0.15}},"cohere/command-a-03-2025":{"id":"cohere/command-a-03-2025","name":"Command A","family":"command-a","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-06-01","release_date":"2025-03-13","last_updated":"2025-03-13","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"output":8000},"cost":{"input":2.5,"output":10}},"zai/glm-4.7-flashx":{"id":"zai/glm-4.7-flashx","name":"GLM-4.7-FlashX","family":"glm-flash","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2026-01-19","last_updated":"2026-01-19","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":200000,"output":131072},"cost":{"input":0.07,"output":0.4,"cache_read":0.01,"cache_write":0}},"zai/glm-4.6":{"id":"zai/glm-4.6","name":"GLM-4.6","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-09-30","last_updated":"2025-09-30","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0.6,"output":2.2,"cache_read":0.11,"cache_write":0}},"zai/glm-4.7":{"id":"zai/glm-4.7","name":"GLM-4.7","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2025-04","release_date":"2025-12-22","last_updated":"2025-12-22","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0.6,"output":2.2,"cache_read":0.11,"cache_write":0}},"zai/glm-5":{"id":"zai/glm-5","name":"GLM-5","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"release_date":"2026-02-11","last_updated":"2026-02-11","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":1,"output":3.2,"cache_read":0.2,"cache_write":0}},"zai/glm-5-turbo":{"id":"zai/glm-5-turbo","name":"GLM-5-Turbo","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-03-16","last_updated":"2026-03-16","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":131072},"cost":{"input":1.2,"output":4,"cache_read":0.24,"cache_write":0}},"zai/glm-4.5":{"id":"zai/glm-4.5","name":"GLM-4.5","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-07-28","last_updated":"2025-07-28","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":98304},"cost":{"input":0.6,"output":2.2,"cache_read":0.11,"cache_write":0}},"zai/glm-4.5-air":{"id":"zai/glm-4.5-air","name":"GLM-4.5-Air","family":"glm-air","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-07-28","last_updated":"2025-07-28","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":98304},"cost":{"input":0.2,"output":1.1,"cache_read":0.03,"cache_write":0}},"zai/glm-5.1":{"id":"zai/glm-5.1","name":"GLM-5.1","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-03-27","last_updated":"2026-03-27","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":200000,"output":131072},"cost":{"input":1.4,"output":4.4,"cache_read":0.26,"cache_write":0}},"google/gemini-3.1-flash-lite-preview":{"id":"google/gemini-3.1-flash-lite-preview","name":"Gemini 3.1 Flash Lite Preview","family":"gemini-flash-lite","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-03-03","last_updated":"2026-03-03","modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":0.25,"output":1.5,"cache_read":0.025,"input_audio":0.5}},"google/gemma-4-31b-it":{"id":"google/gemma-4-31b-it","name":"Gemma 4 31B IT","family":"gemma","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-04-02","last_updated":"2026-04-02","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":32768}},"google/gemini-flash-lite-latest":{"id":"google/gemini-flash-lite-latest","name":"Gemini Flash-Lite Latest","family":"gemini-flash-lite","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-09-25","last_updated":"2025-09-25","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":0.1,"output":0.4,"cache_read":0.025}},"google/gemini-3-flash-preview":{"id":"google/gemini-3-flash-preview","name":"Gemini 3 Flash Preview","family":"gemini-flash","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-12-17","last_updated":"2025-12-17","modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":0.5,"output":3,"cache_read":0.05,"input_audio":1}},"google/gemini-3.1-pro-preview-customtools":{"id":"google/gemini-3.1-pro-preview-customtools","name":"Gemini 3.1 Pro Preview Custom Tools","family":"gemini-pro","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-02-19","last_updated":"2026-02-19","modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":2,"output":12,"cache_read":0.2,"tiers":[{"input":4,"output":18,"cache_read":0.4,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":4,"output":18,"cache_read":0.4}}},"google/gemini-flash-latest":{"id":"google/gemini-flash-latest","name":"Gemini Flash Latest","family":"gemini-flash","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-09-25","last_updated":"2025-09-25","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":0.3,"output":2.5,"cache_read":0.075,"input_audio":1}},"google/gemini-2.5-pro":{"id":"google/gemini-2.5-pro","name":"Gemini 2.5 Pro","family":"gemini-pro","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-03-20","last_updated":"2025-06-05","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":1.25,"output":10,"cache_read":0.125,"tiers":[{"input":2.5,"output":15,"cache_read":0.25,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":2.5,"output":15,"cache_read":0.25}}},"google/gemini-3.1-pro-preview":{"id":"google/gemini-3.1-pro-preview","name":"Gemini 3.1 Pro Preview","family":"gemini-pro","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-02-19","last_updated":"2026-02-19","modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":2,"output":12,"cache_read":0.2,"tiers":[{"input":4,"output":18,"cache_read":0.4,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":4,"output":18,"cache_read":0.4}}},"google/gemini-3.1-flash-lite":{"id":"google/gemini-3.1-flash-lite","name":"Gemini 3.1 Flash Lite","family":"gemini-flash-lite","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-05-07","last_updated":"2026-05-07","modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":0.25,"output":1.5,"cache_read":0.025,"input_audio":0.5}},"google/gemini-2.5-flash-lite":{"id":"google/gemini-2.5-flash-lite","name":"Gemini 2.5 Flash-Lite","family":"gemini-flash-lite","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-06-17","last_updated":"2025-06-17","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":0.1,"output":0.4,"cache_read":0.01,"input_audio":0.3}},"google/gemini-2.5-flash":{"id":"google/gemini-2.5-flash","name":"Gemini 2.5 Flash","family":"gemini-flash","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-03-20","last_updated":"2025-06-05","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":0.3,"output":2.5,"cache_read":0.03,"input_audio":1}},"google/gemma-4-26b-a4b-it":{"id":"google/gemma-4-26b-a4b-it","name":"Gemma 4 26B A4B IT","family":"gemma","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-04-02","last_updated":"2026-04-02","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":32768}},"google/gemini-3.5-flash":{"id":"google/gemini-3.5-flash","name":"Gemini 3.5 Flash","family":"gemini-flash","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-05-19","last_updated":"2026-05-19","modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":1.5,"output":9,"cache_read":0.15,"input_audio":1.5}},"google/gemini-3-pro-preview":{"id":"google/gemini-3-pro-preview","name":"Gemini 3 Pro Preview","family":"gemini-pro","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-11-18","last_updated":"2025-11-18","modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":2,"output":12,"cache_read":0.2,"tiers":[{"input":4,"output":18,"cache_read":0.4,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":4,"output":18,"cache_read":0.4}}},"openai/gpt-4o-2024-08-06":{"id":"openai/gpt-4o-2024-08-06","name":"GPT-4o (2024-08-06)","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2023-09","release_date":"2024-08-06","last_updated":"2024-08-06","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":2.5,"output":10,"cache_read":1.25}},"openai/gpt-5-mini":{"id":"openai/gpt-5-mini","name":"GPT-5 Mini","family":"gpt-mini","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-05-30","release_date":"2025-08-07","last_updated":"2025-08-07","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":0.25,"output":2,"cache_read":0.025}},"openai/gpt-4o":{"id":"openai/gpt-4o","name":"GPT-4o","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2023-09","release_date":"2024-05-13","last_updated":"2024-08-06","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":2.5,"output":10,"cache_read":1.25}},"openai/gpt-5.2":{"id":"openai/gpt-5.2","name":"GPT-5.2","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2025-12-11","last_updated":"2025-12-11","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":1.75,"output":14,"cache_read":0.175}},"openai/gpt-5-chat-latest":{"id":"openai/gpt-5-chat-latest","name":"GPT-5 Chat (latest)","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":false,"structured_output":true,"temperature":true,"knowledge":"2024-09-30","release_date":"2025-08-07","last_updated":"2025-08-07","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":1.25,"output":10,"cache_read":0.125}},"openai/o3":{"id":"openai/o3","name":"o3","family":"o","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-05","release_date":"2025-04-16","last_updated":"2025-04-16","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":2,"output":8,"cache_read":0.5}},"openai/gpt-5.3-chat-latest":{"id":"openai/gpt-5.3-chat-latest","name":"GPT-5.3 Chat (latest)","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-08-31","release_date":"2026-03-03","last_updated":"2026-03-03","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":1.75,"output":14,"cache_read":0.175}},"openai/gpt-4o-2024-11-20":{"id":"openai/gpt-4o-2024-11-20","name":"GPT-4o (2024-11-20)","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2023-09","release_date":"2024-11-20","last_updated":"2024-11-20","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":2.5,"output":10,"cache_read":1.25}},"openai/gpt-5":{"id":"openai/gpt-5","name":"GPT-5","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-08-07","last_updated":"2025-08-07","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":1.25,"output":10,"cache_read":0.125}},"openai/gpt-4.1-mini":{"id":"openai/gpt-4.1-mini","name":"GPT-4.1 mini","family":"gpt-mini","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-04","release_date":"2025-04-14","last_updated":"2025-04-14","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1047576,"output":32768},"cost":{"input":0.4,"output":1.6,"cache_read":0.1}},"openai/o4-mini":{"id":"openai/o4-mini","name":"o4-mini","family":"o-mini","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-05","release_date":"2025-04-16","last_updated":"2025-04-16","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":1.1,"output":4.4,"cache_read":0.275}},"openai/gpt-5.4":{"id":"openai/gpt-5.4","name":"GPT-5.4","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-03-05","last_updated":"2026-03-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1050000,"input":922000,"output":128000},"experimental":{"modes":{"fast":{"cost":{"input":5,"output":30,"cache_read":0.5},"provider":{"body":{"service_tier":"priority"}}}}},"cost":{"input":2.5,"output":15,"cache_read":0.25,"tiers":[{"input":5,"output":22.5,"cache_read":0.5,"tier":{"type":"context","size":272000}}],"context_over_200k":{"input":5,"output":22.5,"cache_read":0.5}}},"openai/o3-mini":{"id":"openai/o3-mini","name":"o3-mini","family":"o-mini","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-05","release_date":"2024-12-20","last_updated":"2025-01-29","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":1.1,"output":4.4,"cache_read":0.55}},"openai/gpt-5.5":{"id":"openai/gpt-5.5","name":"GPT-5.5","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-12-01","release_date":"2026-04-23","last_updated":"2026-04-23","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1050000,"input":922000,"output":128000},"experimental":{"modes":{"fast":{"cost":{"input":12.5,"output":75,"cache_read":1.25},"provider":{"body":{"service_tier":"priority"}}}}},"cost":{"input":5,"output":30,"cache_read":0.5,"tiers":[{"input":10,"output":45,"cache_read":1,"tier":{"type":"context","size":272000}}],"context_over_200k":{"input":10,"output":45,"cache_read":1}}},"openai/gpt-5.2-chat-latest":{"id":"openai/gpt-5.2-chat-latest","name":"GPT-5.2 Chat","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2025-12-11","last_updated":"2025-12-11","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":1.75,"output":14,"cache_read":0.175}},"openai/gpt-5.1":{"id":"openai/gpt-5.1","name":"GPT-5.1","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-11-13","last_updated":"2025-11-13","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":1.25,"output":10,"cache_read":0.125}},"openai/gpt-5-nano":{"id":"openai/gpt-5-nano","name":"GPT-5 Nano","family":"gpt-nano","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-05-30","release_date":"2025-08-07","last_updated":"2025-08-07","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":0.05,"output":0.4,"cache_read":0.005}},"openai/gpt-4o-mini":{"id":"openai/gpt-4o-mini","name":"GPT-4o mini","family":"gpt-mini","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2023-09","release_date":"2024-07-18","last_updated":"2024-07-18","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":0.15,"output":0.6,"cache_read":0.075}},"openai/gpt-4.1":{"id":"openai/gpt-4.1","name":"GPT-4.1","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-04","release_date":"2025-04-14","last_updated":"2025-04-14","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1047576,"output":32768},"cost":{"input":2,"output":8,"cache_read":0.5}},"openai/gpt-5.4-nano":{"id":"openai/gpt-5.4-nano","name":"GPT-5.4 nano","family":"gpt-nano","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-03-17","last_updated":"2026-03-17","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":0.2,"output":1.25,"cache_read":0.02}},"openai/gpt-4o-2024-05-13":{"id":"openai/gpt-4o-2024-05-13","name":"GPT-4o (2024-05-13)","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2023-09","release_date":"2024-05-13","last_updated":"2024-05-13","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":4096},"cost":{"input":5,"output":15}},"openai/gpt-5.4-mini":{"id":"openai/gpt-5.4-mini","name":"GPT-5.4 mini","family":"gpt-mini","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-03-17","last_updated":"2026-03-17","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"experimental":{"modes":{"fast":{"cost":{"input":1.5,"output":9,"cache_read":0.15},"provider":{"body":{"service_tier":"priority"}}}}},"cost":{"input":0.75,"output":4.5,"cache_read":0.075}},"openai/gpt-5.1-chat-latest":{"id":"openai/gpt-5.1-chat-latest","name":"GPT-5.1 Chat","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-11-13","last_updated":"2025-11-13","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":1.25,"output":10,"cache_read":0.125}},"openai/o1":{"id":"openai/o1","name":"o1","family":"o","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2023-09","release_date":"2024-12-05","last_updated":"2024-12-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":15,"output":60,"cache_read":7.5}},"openai/gpt-4.1-nano":{"id":"openai/gpt-4.1-nano","name":"GPT-4.1 nano","family":"gpt-nano","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-04","release_date":"2025-04-14","last_updated":"2025-04-14","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1047576,"output":32768},"cost":{"input":0.1,"output":0.4,"cache_read":0.025}},"minimax/minimax-m2.7-highspeed":{"id":"minimax/minimax-m2.7-highspeed","name":"MiniMax-M2.7-highspeed","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-03-18","last_updated":"2026-03-18","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0.6,"output":2.4,"cache_read":0.06,"cache_write":0.375}},"minimax/minimax-m2.1":{"id":"minimax/minimax-m2.1","name":"MiniMax-M2.1","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-12-23","last_updated":"2025-12-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0.3,"output":1.2}},"minimax/minimax-m2.7":{"id":"minimax/minimax-m2.7","name":"MiniMax-M2.7","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-03-18","last_updated":"2026-03-18","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0.3,"output":1.2,"cache_read":0.06,"cache_write":0.375}},"minimax/minimax-m2":{"id":"minimax/minimax-m2","name":"MiniMax-M2","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-10-27","last_updated":"2025-10-27","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":196608,"output":128000},"cost":{"input":0.3,"output":1.2}},"minimax/minimax-m2.5":{"id":"minimax/minimax-m2.5","name":"MiniMax-M2.5","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-02-12","last_updated":"2026-02-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0.3,"output":1.2,"cache_read":0.03,"cache_write":0.375}},"minimax/minimax-m2.5-highspeed":{"id":"minimax/minimax-m2.5-highspeed","name":"MiniMax-M2.5-highspeed","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-02-13","last_updated":"2026-02-13","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0.6,"output":2.4,"cache_read":0.06,"cache_write":0.375}}}},"stepfun":{"id":"stepfun","env":["STEPFUN_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://api.stepfun.com/v1","name":"StepFun","doc":"https://platform.stepfun.com/docs/zh/overview/concept","models":{"step-2-16k":{"id":"step-2-16k","name":"Step 2 (16K)","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-06","release_date":"2025-01-01","last_updated":"2026-02-13","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":16384,"input":16384,"output":8192},"cost":{"input":5.21,"output":16.44,"cache_read":1.04}},"step-1-32k":{"id":"step-1-32k","name":"Step 1 (32K)","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-06","release_date":"2025-01-01","last_updated":"2026-02-13","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":32768,"input":32768,"output":32768},"cost":{"input":2.05,"output":9.59,"cache_read":0.41}},"step-3.5-flash":{"id":"step-3.5-flash","name":"Step 3.5 Flash","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-01-29","last_updated":"2026-02-13","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"input":256000,"output":256000},"cost":{"input":0.096,"output":0.288,"cache_read":0.019}},"step-3.5-flash-2603":{"id":"step-3.5-flash-2603","name":"Step 3.5 Flash 2603","attachment":false,"reasoning":true,"reasoning_options":[{"type":"effort","values":["low","high"]}],"tool_call":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-04-02","last_updated":"2026-04-02","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"input":256000,"output":256000},"cost":{"input":0.1,"output":0.3,"cache_read":0.02}}}},"anyapi":{"id":"anyapi","env":["ANYAPI_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://api.anyapi.ai/v1","name":"AnyAPI","doc":"https://docs.anyapi.ai","models":{"mistralai/mistral-large-2512":{"id":"mistralai/mistral-large-2512","name":"Mistral Large 3","family":"mistral-large","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-11","release_date":"2024-11-01","last_updated":"2025-12-02","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144}},"mistralai/devstral-2512":{"id":"mistralai/devstral-2512","name":"Devstral 2","family":"devstral","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-12","release_date":"2025-12-09","last_updated":"2025-12-09","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"status":"deprecated"},"deepseek/deepseek-r1":{"id":"deepseek/deepseek-r1","name":"DeepSeek Reasoner","family":"deepseek-thinking","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2025-09","release_date":"2025-12-01","last_updated":"2026-02-28","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1000000,"output":384000}},"deepseek/deepseek-chat":{"id":"deepseek/deepseek-chat","name":"DeepSeek Chat","family":"deepseek","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-09","release_date":"2025-12-01","last_updated":"2026-02-28","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1000000,"output":384000}},"deepseek/deepseek-v4-flash":{"id":"deepseek/deepseek-v4-flash","name":"DeepSeek V4 Flash","family":"deepseek-flash","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-05","release_date":"2026-04-24","last_updated":"2026-04-24","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1000000,"output":384000}},"deepseek/deepseek-v4-pro":{"id":"deepseek/deepseek-v4-pro","name":"DeepSeek V4 Pro","family":"deepseek-thinking","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-05","release_date":"2026-04-24","last_updated":"2026-04-24","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1000000,"output":384000}},"anthropic/claude-sonnet-4-6":{"id":"anthropic/claude-sonnet-4-6","name":"Claude Sonnet 4.6","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-08-31","release_date":"2026-02-17","last_updated":"2026-03-13","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":64000}},"anthropic/claude-haiku-4-5":{"id":"anthropic/claude-haiku-4-5","name":"Claude Haiku 4.5 (latest)","family":"claude-haiku","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-02-28","release_date":"2025-10-15","last_updated":"2025-10-15","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000}},"anthropic/claude-sonnet-4-5":{"id":"anthropic/claude-sonnet-4-5","name":"Claude Sonnet 4.5 (latest)","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-07-31","release_date":"2025-09-29","last_updated":"2025-09-29","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000}},"anthropic/claude-opus-4-6":{"id":"anthropic/claude-opus-4-6","name":"Claude Opus 4.6","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-05-31","release_date":"2026-02-05","last_updated":"2026-03-13","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"experimental":{"modes":{"fast":{"cost":{"input":30,"output":150,"cache_read":3,"cache_write":37.5},"provider":{"body":{"speed":"fast"},"headers":{"anthropic-beta":"fast-mode-2026-02-01"}}}}}},"anthropic/claude-opus-4-7":{"id":"anthropic/claude-opus-4-7","name":"Claude Opus 4.7","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2026-01-31","release_date":"2026-04-16","last_updated":"2026-04-16","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"experimental":{"modes":{"fast":{"cost":{"input":30,"output":150,"cache_read":3,"cache_write":37.5},"provider":{"body":{"speed":"fast"},"headers":{"anthropic-beta":"fast-mode-2026-02-01"}}}}}},"xai/grok-4.3":{"id":"xai/grok-4.3","name":"Grok 4.3","family":"grok","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-04-17","last_updated":"2026-04-17","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":30000}},"cohere/command-r-plus-08-2024":{"id":"cohere/command-r-plus-08-2024","name":"Command R+","family":"command-r","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-06-01","release_date":"2024-08-30","last_updated":"2024-08-30","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4000}},"perplexity/sonar-pro":{"id":"perplexity/sonar-pro","name":"Sonar Pro","family":"sonar-pro","attachment":true,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2025-09-01","release_date":"2024-01-01","last_updated":"2025-09-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":8192}},"perplexity/sonar-reasoning-pro":{"id":"perplexity/sonar-reasoning-pro","name":"Sonar Reasoning Pro","family":"sonar-reasoning","attachment":true,"reasoning":true,"tool_call":false,"temperature":true,"knowledge":"2025-09-01","release_date":"2024-01-01","last_updated":"2025-09-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":4096}},"google/gemini-3-flash-preview":{"id":"google/gemini-3-flash-preview","name":"Gemini 3 Flash Preview","family":"gemini-flash","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-12-17","last_updated":"2025-12-17","modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536}},"google/gemini-2.5-pro":{"id":"google/gemini-2.5-pro","name":"Gemini 2.5 Pro","family":"gemini-pro","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-03-20","last_updated":"2025-06-05","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536}},"google/gemini-2.5-flash-lite":{"id":"google/gemini-2.5-flash-lite","name":"Gemini 2.5 Flash-Lite","family":"gemini-flash-lite","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-06-17","last_updated":"2025-06-17","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536}},"google/gemini-2.5-flash":{"id":"google/gemini-2.5-flash","name":"Gemini 2.5 Flash","family":"gemini-flash","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-03-20","last_updated":"2025-06-05","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536}},"google/gemini-3-pro-preview":{"id":"google/gemini-3-pro-preview","name":"Gemini 3 Pro Preview","family":"gemini-pro","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-11-18","last_updated":"2025-11-18","modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536}},"openai/gpt-5-mini":{"id":"openai/gpt-5-mini","name":"GPT-5 Mini","family":"gpt-mini","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-05-30","release_date":"2025-08-07","last_updated":"2025-08-07","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000}},"openai/gpt-5.2":{"id":"openai/gpt-5.2","name":"GPT-5.2","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2025-12-11","last_updated":"2025-12-11","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000}},"openai/o3":{"id":"openai/o3","name":"o3","family":"o","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-05","release_date":"2025-04-16","last_updated":"2025-04-16","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000}},"openai/gpt-5":{"id":"openai/gpt-5","name":"GPT-5","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-08-07","last_updated":"2025-08-07","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000}},"openai/gpt-4.1-mini":{"id":"openai/gpt-4.1-mini","name":"GPT-4.1 mini","family":"gpt-mini","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-04","release_date":"2025-04-14","last_updated":"2025-04-14","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1047576,"output":32768}},"openai/o4-mini":{"id":"openai/o4-mini","name":"o4-mini","family":"o-mini","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-05","release_date":"2025-04-16","last_updated":"2025-04-16","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000}},"openai/gpt-5.4":{"id":"openai/gpt-5.4","name":"GPT-5.4","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-03-05","last_updated":"2026-03-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1050000,"input":922000,"output":128000},"experimental":{"modes":{"fast":{"cost":{"input":5,"output":30,"cache_read":0.5},"provider":{"body":{"service_tier":"priority"}}}}}},"openai/o3-mini":{"id":"openai/o3-mini","name":"o3-mini","family":"o-mini","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-05","release_date":"2024-12-20","last_updated":"2025-01-29","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000}},"openai/gpt-5.1":{"id":"openai/gpt-5.1","name":"GPT-5.1","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-11-13","last_updated":"2025-11-13","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000}},"openai/gpt-4.1":{"id":"openai/gpt-4.1","name":"GPT-4.1","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-04","release_date":"2025-04-14","last_updated":"2025-04-14","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1047576,"output":32768}}}},"vultr":{"id":"vultr","env":["VULTR_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://api.vultrinference.com/v1","name":"Vultr","doc":"https://api.vultrinference.com/","models":{"MiniMaxAI/MiniMax-M2.7":{"id":"MiniMaxAI/MiniMax-M2.7","name":"MiniMax-M2.7","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-03-18","last_updated":"2026-03-18","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0.3,"output":1.2}},"zai-org/GLM-5.1-FP8":{"id":"zai-org/GLM-5.1-FP8","name":"GLM-5.1","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-03-27","last_updated":"2026-03-27","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":200000,"output":131072},"cost":{"input":0.85,"output":3.1}},"moonshotai/Kimi-K2.6":{"id":"moonshotai/Kimi-K2.6","name":"Kimi K2.6","family":"kimi-k2.6","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-04-21","last_updated":"2026-04-21","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":131072},"cost":{"input":0.15,"output":0.6}},"nvidia/Nemotron-Cascade-2-30B-A3B":{"id":"nvidia/Nemotron-Cascade-2-30B-A3B","name":"NVIDIA Nemotron Cascade 2","family":"nemotron","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-07","release_date":"2025-12-01","last_updated":"2025-12-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":131072},"cost":{"input":0.15,"output":0.6}},"nvidia/Nemotron-3-Nano-Omni-30B-A3B-Reasoning-BF16":{"id":"nvidia/Nemotron-3-Nano-Omni-30B-A3B-Reasoning-BF16","name":"NVIDIA Nemotron 3 Nano Omni","family":"nemotron","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-05","release_date":"2026-04-28","last_updated":"2026-04-28","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":131072},"cost":{"input":0.13,"output":0.38}},"nvidia/DeepSeek-V3.2-NVFP4":{"id":"nvidia/DeepSeek-V3.2-NVFP4","name":"DeepSeek V3.2","family":"deepseek","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-07","release_date":"2025-12-01","last_updated":"2025-12-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":131072},"cost":{"input":0.55,"output":1.65}},"nvidia/Llama-3.1-Nemotron-Safety-Guard-8B-v3":{"id":"nvidia/Llama-3.1-Nemotron-Safety-Guard-8B-v3","name":"Llama 3.1 Nemotron Safety Guard","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2023-12","release_date":"2025-10-28","last_updated":"2025-10-28","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":8192,"output":4096},"cost":{"input":0.01,"output":0.01}}}},"zai-coding-plan":{"id":"zai-coding-plan","env":["ZHIPU_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://api.z.ai/api/coding/paas/v4","name":"Z.AI Coding Plan","doc":"https://docs.z.ai/devpack/overview","models":{"glm-4.7":{"id":"glm-4.7","name":"GLM-4.7","family":"glm","attachment":false,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2025-04","release_date":"2025-12-22","last_updated":"2025-12-22","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0,"output":0,"cache_read":0,"cache_write":0}},"glm-5v-turbo":{"id":"glm-5v-turbo","name":"GLM-5V-Turbo","family":"glm","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"release_date":"2026-04-01","last_updated":"2026-04-01","modalities":{"input":["text","image","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":131072},"cost":{"input":0,"output":0,"cache_read":0,"cache_write":0}},"glm-5-turbo":{"id":"glm-5-turbo","name":"GLM-5-Turbo","family":"glm","attachment":false,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-03-16","last_updated":"2026-03-16","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":131072},"cost":{"input":0,"output":0,"cache_read":0,"cache_write":0}},"glm-4.5-air":{"id":"glm-4.5-air","name":"GLM-4.5-Air","family":"glm-air","attachment":false,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-07-28","last_updated":"2025-07-28","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":98304},"cost":{"input":0,"output":0,"cache_read":0,"cache_write":0}},"glm-5.1":{"id":"glm-5.1","name":"GLM-5.1","family":"glm","attachment":false,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-03-27","last_updated":"2026-03-27","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":131072},"cost":{"input":0,"output":0,"cache_read":0,"cache_write":0}}}},"amazon-bedrock":{"id":"amazon-bedrock","env":["AWS_ACCESS_KEY_ID","AWS_SECRET_ACCESS_KEY","AWS_REGION","AWS_BEARER_TOKEN_BEDROCK"],"npm":"@ai-sdk/amazon-bedrock","name":"Amazon Bedrock","doc":"https://docs.aws.amazon.com/bedrock/latest/userguide/models-supported.html","models":{"eu.anthropic.claude-haiku-4-5-20251001-v1:0":{"id":"eu.anthropic.claude-haiku-4-5-20251001-v1:0","name":"Claude Haiku 4.5 (EU)","family":"claude-haiku","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-02-28","release_date":"2025-10-15","last_updated":"2025-10-15","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":1,"output":5,"cache_read":0.1,"cache_write":1.25}},"qwen.qwen3-coder-30b-a3b-v1:0":{"id":"qwen.qwen3-coder-30b-a3b-v1:0","name":"Qwen3 Coder 30B A3B Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-04","release_date":"2025-09-18","last_updated":"2025-09-18","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"output":131072},"cost":{"input":0.15,"output":0.6}},"jp.anthropic.claude-opus-4-8":{"id":"jp.anthropic.claude-opus-4-8","name":"Claude Opus 4.8 (JP)","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2026-05-28","last_updated":"2026-05-28","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25}},"openai.gpt-oss-120b-1:0":{"id":"openai.gpt-oss-120b-1:0","name":"gpt-oss-120b","family":"gpt-oss","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":0.15,"output":0.6}},"mistral.ministral-3-8b-instruct":{"id":"mistral.ministral-3-8b-instruct","name":"Ministral 3 8B","family":"ministral","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2024-12-01","last_updated":"2024-12-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":4096},"cost":{"input":0.15,"output":0.15}},"amazon.nova-pro-v1:0":{"id":"amazon.nova-pro-v1:0","name":"Nova Pro","family":"nova-pro","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2024-12-03","last_updated":"2024-12-03","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":300000,"output":8192},"cost":{"input":0.8,"output":3.2,"cache_read":0.2}},"au.anthropic.claude-haiku-4-5-20251001-v1:0":{"id":"au.anthropic.claude-haiku-4-5-20251001-v1:0","name":"Claude Haiku 4.5 (AU)","family":"claude-haiku","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-02-28","release_date":"2025-10-15","last_updated":"2025-10-15","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":1,"output":5,"cache_read":0.1,"cache_write":1.25}},"nvidia.nemotron-super-3-120b":{"id":"nvidia.nemotron-super-3-120b","name":"NVIDIA Nemotron 3 Super 120B A12B","family":"nemotron","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-03-11","last_updated":"2026-03-11","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":131072},"cost":{"input":0.15,"output":0.65}},"global.anthropic.claude-opus-4-5-20251101-v1:0":{"id":"global.anthropic.claude-opus-4-5-20251101-v1:0","name":"Claude Opus 4.5 (Global)","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-11-24","last_updated":"2025-08-01","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25}},"deepseek.v3-v1:0":{"id":"deepseek.v3-v1:0","name":"DeepSeek-V3.1","family":"deepseek","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-07","release_date":"2025-09-18","last_updated":"2025-09-18","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":163840,"output":81920},"cost":{"input":0.58,"output":1.68}},"meta.llama3-1-70b-instruct-v1:0":{"id":"meta.llama3-1-70b-instruct-v1:0","name":"Llama 3.1 70B Instruct","family":"llama","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2023-12","release_date":"2024-07-23","last_updated":"2024-07-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4096},"cost":{"input":0.72,"output":0.72}},"writer.palmyra-x5-v1:0":{"id":"writer.palmyra-x5-v1:0","name":"Palmyra X5","family":"palmyra","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-04-28","last_updated":"2025-04-28","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1040000,"output":8192},"cost":{"input":0.6,"output":6}},"global.anthropic.claude-opus-4-7":{"id":"global.anthropic.claude-opus-4-7","name":"Claude Opus 4.7 (Global)","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2026-01-31","release_date":"2026-04-16","last_updated":"2026-04-16","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25}},"qwen.qwen3-235b-a22b-2507-v1:0":{"id":"qwen.qwen3-235b-a22b-2507-v1:0","name":"Qwen3 235B A22B 2507","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-04","release_date":"2025-09-18","last_updated":"2025-09-18","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":131072},"cost":{"input":0.22,"output":0.88}},"eu.anthropic.claude-opus-4-7":{"id":"eu.anthropic.claude-opus-4-7","name":"Claude Opus 4.7 (EU)","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2026-01-31","release_date":"2026-04-16","last_updated":"2026-04-16","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":5.5,"output":27.5,"cache_read":0.55,"cache_write":6.875}},"qwen.qwen3-vl-235b-a22b":{"id":"qwen.qwen3-vl-235b-a22b","name":"Qwen/Qwen3-VL-235B-A22B-Instruct","family":"qwen","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-10-04","last_updated":"2025-11-25","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":262000,"output":262000},"cost":{"input":0.3,"output":1.5}},"qwen.qwen3-coder-480b-a35b-v1:0":{"id":"qwen.qwen3-coder-480b-a35b-v1:0","name":"Qwen3 Coder 480B A35B Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-04","release_date":"2025-09-18","last_updated":"2025-09-18","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":65536},"cost":{"input":0.22,"output":1.8}},"mistral.devstral-2-123b":{"id":"mistral.devstral-2-123b","name":"Devstral 2 123B","family":"devstral","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-02-17","last_updated":"2026-02-17","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"output":8192},"cost":{"input":0.4,"output":2}},"minimax.minimax-m2.5":{"id":"minimax.minimax-m2.5","name":"MiniMax M2.5","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2026-03-18","last_updated":"2026-03-18","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":196608,"output":98304},"cost":{"input":0.3,"output":1.2}},"openai.gpt-oss-120b":{"id":"openai.gpt-oss-120b","name":"gpt-oss-120b","family":"gpt-oss","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"provider":{"npm":"@ai-sdk/amazon-bedrock/mantle","api":"https://bedrock-mantle.${AWS_REGION}.api.aws/v1","shape":"responses"},"cost":{"input":0.15,"output":0.6}},"us.anthropic.claude-opus-4-7":{"id":"us.anthropic.claude-opus-4-7","name":"Claude Opus 4.7 (US)","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2026-01-31","release_date":"2026-04-16","last_updated":"2026-04-16","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25}},"meta.llama3-1-8b-instruct-v1:0":{"id":"meta.llama3-1-8b-instruct-v1:0","name":"Llama 3.1 8B Instruct","family":"llama","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2023-12","release_date":"2024-07-23","last_updated":"2024-07-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4096},"cost":{"input":0.22,"output":0.22}},"qwen.qwen3-next-80b-a3b":{"id":"qwen.qwen3-next-80b-a3b","name":"Qwen/Qwen3-Next-80B-A3B-Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-09-18","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262000,"output":262000},"cost":{"input":0.14,"output":1.4}},"us.anthropic.claude-opus-4-6-v1":{"id":"us.anthropic.claude-opus-4-6-v1","name":"Claude Opus 4.6 (US)","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-05-31","release_date":"2026-02-05","last_updated":"2026-03-13","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25}},"mistral.ministral-3-14b-instruct":{"id":"mistral.ministral-3-14b-instruct","name":"Ministral 14B 3.0","family":"ministral","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2024-12-01","last_updated":"2024-12-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":4096},"cost":{"input":0.2,"output":0.2}},"anthropic.claude-haiku-4-5-20251001-v1:0":{"id":"anthropic.claude-haiku-4-5-20251001-v1:0","name":"Claude Haiku 4.5","family":"claude-haiku","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-02-28","release_date":"2025-10-15","last_updated":"2025-10-15","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":1,"output":5,"cache_read":0.1,"cache_write":1.25}},"au.anthropic.claude-opus-4-8":{"id":"au.anthropic.claude-opus-4-8","name":"Claude Opus 4.8 (AU)","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2026-05-28","last_updated":"2026-05-28","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25}},"mistral.voxtral-mini-3b-2507":{"id":"mistral.voxtral-mini-3b-2507","name":"Voxtral Mini 3B 2507","family":"mistral","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2024-12-01","last_updated":"2024-12-01","modalities":{"input":["audio","text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":4096},"cost":{"input":0.04,"output":0.04}},"moonshotai.kimi-k2.5":{"id":"moonshotai.kimi-k2.5","name":"Kimi K2.5","family":"kimi","attachment":false,"reasoning":true,"tool_call":true,"interleaved":true,"structured_output":true,"temperature":true,"release_date":"2026-02-06","last_updated":"2026-02-06","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262143,"output":16000},"cost":{"input":0.6,"output":3}},"global.anthropic.claude-opus-4-6-v1":{"id":"global.anthropic.claude-opus-4-6-v1","name":"Claude Opus 4.6 (Global)","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-05-31","release_date":"2026-02-05","last_updated":"2026-03-13","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25}},"mistral.ministral-3-3b-instruct":{"id":"mistral.ministral-3-3b-instruct","name":"Ministral 3 3B","family":"ministral","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-12-02","last_updated":"2025-12-02","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"output":8192},"cost":{"input":0.1,"output":0.1}},"us.anthropic.claude-opus-4-1-20250805-v1:0":{"id":"us.anthropic.claude-opus-4-1-20250805-v1:0","name":"Claude Opus 4.1 (US)","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":32000},"cost":{"input":15,"output":75,"cache_read":1.5,"cache_write":18.75}},"eu.anthropic.claude-opus-4-6-v1":{"id":"eu.anthropic.claude-opus-4-6-v1","name":"Claude Opus 4.6 (EU)","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-05-31","release_date":"2026-02-05","last_updated":"2026-03-13","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":5.5,"output":27.5,"cache_read":0.55,"cache_write":6.875}},"us.anthropic.claude-haiku-4-5-20251001-v1:0":{"id":"us.anthropic.claude-haiku-4-5-20251001-v1:0","name":"Claude Haiku 4.5 (US)","family":"claude-haiku","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-02-28","release_date":"2025-10-15","last_updated":"2025-10-15","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":1,"output":5,"cache_read":0.1,"cache_write":1.25}},"global.anthropic.claude-haiku-4-5-20251001-v1:0":{"id":"global.anthropic.claude-haiku-4-5-20251001-v1:0","name":"Claude Haiku 4.5 (Global)","family":"claude-haiku","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-02-28","release_date":"2025-10-15","last_updated":"2025-10-15","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":1,"output":5,"cache_read":0.1,"cache_write":1.25}},"moonshot.kimi-k2-thinking":{"id":"moonshot.kimi-k2-thinking","name":"Kimi K2 Thinking","family":"kimi-thinking","attachment":false,"reasoning":true,"tool_call":true,"interleaved":true,"structured_output":true,"temperature":true,"release_date":"2025-12-02","last_updated":"2025-12-02","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262143,"output":16000},"cost":{"input":0.6,"output":2.5}},"google.gemma-3-4b-it":{"id":"google.gemma-3-4b-it","name":"Gemma 3 4B IT","family":"gemma","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2024-12-01","last_updated":"2024-12-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":4096},"cost":{"input":0.04,"output":0.08}},"openai.gpt-5.5":{"id":"openai.gpt-5.5","name":"GPT-5.5","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-12-01","release_date":"2026-04-23","last_updated":"2026-06-01","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":272000,"output":128000},"provider":{"npm":"@ai-sdk/amazon-bedrock/mantle","api":"https://bedrock-mantle.${AWS_REGION}.api.aws/openai/v1","shape":"responses"},"cost":{"input":5.5,"output":33,"cache_read":0.55}},"zai.glm-4.7":{"id":"zai.glm-4.7","name":"GLM-4.7","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-12-22","last_updated":"2025-12-22","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0.6,"output":2.2}},"global.anthropic.claude-sonnet-4-6":{"id":"global.anthropic.claude-sonnet-4-6","name":"Claude Sonnet 4.6 (Global)","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-08-31","release_date":"2026-02-17","last_updated":"2026-03-13","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":64000},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75}},"nvidia.nemotron-nano-9b-v2":{"id":"nvidia.nemotron-nano-9b-v2","name":"NVIDIA Nemotron Nano 9B v2","family":"nemotron","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2024-12-01","last_updated":"2024-12-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":4096},"cost":{"input":0.06,"output":0.23}},"eu.anthropic.claude-sonnet-4-6":{"id":"eu.anthropic.claude-sonnet-4-6","name":"Claude Sonnet 4.6 (EU)","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-08-31","release_date":"2026-02-17","last_updated":"2026-03-13","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":64000},"cost":{"input":3.3,"output":16.5,"cache_read":0.33,"cache_write":4.125}},"openai.gpt-oss-safeguard-20b":{"id":"openai.gpt-oss-safeguard-20b","name":"GPT OSS Safeguard 20B","family":"gpt-oss","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-10-29","last_updated":"2025-10-29","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":0.07,"output":0.2}},"jp.anthropic.claude-sonnet-4-6":{"id":"jp.anthropic.claude-sonnet-4-6","name":"Claude Sonnet 4.6 (JP)","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-08-31","release_date":"2026-02-17","last_updated":"2026-03-13","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":64000},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75}},"minimax.minimax-m2.1":{"id":"minimax.minimax-m2.1","name":"MiniMax M2.1","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-12-23","last_updated":"2025-12-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0.3,"output":1.2}},"global.anthropic.claude-opus-4-8":{"id":"global.anthropic.claude-opus-4-8","name":"Claude Opus 4.8 (Global)","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2026-05-28","last_updated":"2026-05-28","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25}},"minimax.minimax-m2":{"id":"minimax.minimax-m2","name":"MiniMax M2","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-10-27","last_updated":"2025-10-27","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204608,"output":128000},"cost":{"input":0.3,"output":1.2}},"mistral.voxtral-small-24b-2507":{"id":"mistral.voxtral-small-24b-2507","name":"Voxtral Small 24B 2507","family":"mistral","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-07-01","last_updated":"2025-07-01","modalities":{"input":["text","audio"],"output":["text"]},"open_weights":true,"limit":{"context":32000,"output":8192},"cost":{"input":0.15,"output":0.35}},"deepseek.v3.2":{"id":"deepseek.v3.2","name":"DeepSeek-V3.2","family":"deepseek","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-07","release_date":"2026-02-06","last_updated":"2026-02-06","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":163840,"output":81920},"cost":{"input":0.62,"output":1.85}},"anthropic.claude-sonnet-4-5-20250929-v1:0":{"id":"anthropic.claude-sonnet-4-5-20250929-v1:0","name":"Claude Sonnet 4.5","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-07-31","release_date":"2025-09-29","last_updated":"2025-09-29","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75}},"eu.anthropic.claude-opus-4-8":{"id":"eu.anthropic.claude-opus-4-8","name":"Claude Opus 4.8 (EU)","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2026-05-28","last_updated":"2026-05-28","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":5.5,"output":27.5,"cache_read":0.55,"cache_write":6.875}},"anthropic.claude-opus-4-7":{"id":"anthropic.claude-opus-4-7","name":"Claude Opus 4.7","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2026-01-31","release_date":"2026-04-16","last_updated":"2026-04-16","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25}},"us.anthropic.claude-opus-4-5-20251101-v1:0":{"id":"us.anthropic.claude-opus-4-5-20251101-v1:0","name":"Claude Opus 4.5 (US)","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-11-24","last_updated":"2025-08-01","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25}},"anthropic.claude-sonnet-4-6":{"id":"anthropic.claude-sonnet-4-6","name":"Claude Sonnet 4.6","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-08-31","release_date":"2026-02-17","last_updated":"2026-03-13","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":64000},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75}},"us.anthropic.claude-opus-4-8":{"id":"us.anthropic.claude-opus-4-8","name":"Claude Opus 4.8 (US)","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2026-05-28","last_updated":"2026-05-28","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25}},"au.anthropic.claude-opus-4-6-v1":{"id":"au.anthropic.claude-opus-4-6-v1","name":"AU Anthropic Claude Opus 4.6","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-05","release_date":"2026-02-05","last_updated":"2026-02-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":16.5,"output":82.5,"cache_read":1.65,"cache_write":20.625}},"us.anthropic.claude-sonnet-4-5-20250929-v1:0":{"id":"us.anthropic.claude-sonnet-4-5-20250929-v1:0","name":"Claude Sonnet 4.5 (US)","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-07-31","release_date":"2025-09-29","last_updated":"2025-09-29","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75}},"nvidia.nemotron-nano-12b-v2":{"id":"nvidia.nemotron-nano-12b-v2","name":"NVIDIA Nemotron Nano 12B v2 VL BF16","family":"nemotron","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2024-12-01","last_updated":"2024-12-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":4096},"cost":{"input":0.2,"output":0.6}},"zai.glm-5":{"id":"zai.glm-5","name":"GLM-5","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-03-18","last_updated":"2026-03-18","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":202752,"output":101376},"cost":{"input":1,"output":3.2}},"meta.llama4-maverick-17b-instruct-v1:0":{"id":"meta.llama4-maverick-17b-instruct-v1:0","name":"Llama 4 Maverick 17B Instruct","family":"llama","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-08","release_date":"2025-04-05","last_updated":"2025-04-05","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":1000000,"output":16384},"cost":{"input":0.24,"output":0.97}},"anthropic.claude-opus-4-1-20250805-v1:0":{"id":"anthropic.claude-opus-4-1-20250805-v1:0","name":"Claude Opus 4.1","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":32000},"cost":{"input":15,"output":75,"cache_read":1.5,"cache_write":18.75}},"us.anthropic.claude-sonnet-4-6":{"id":"us.anthropic.claude-sonnet-4-6","name":"Claude Sonnet 4.6 (US)","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-08-31","release_date":"2026-02-17","last_updated":"2026-03-13","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":64000},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75}},"meta.llama3-3-70b-instruct-v1:0":{"id":"meta.llama3-3-70b-instruct-v1:0","name":"Llama 3.3 70B Instruct","family":"llama","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2023-12","release_date":"2024-12-06","last_updated":"2024-12-06","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4096},"cost":{"input":0.72,"output":0.72}},"qwen.qwen3-coder-next":{"id":"qwen.qwen3-coder-next","name":"Qwen3 Coder Next","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-02-06","last_updated":"2026-02-06","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":65536},"cost":{"input":0.22,"output":1.8}},"eu.anthropic.claude-opus-4-5-20251101-v1:0":{"id":"eu.anthropic.claude-opus-4-5-20251101-v1:0","name":"Claude Opus 4.5 (EU)","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-11-24","last_updated":"2025-08-01","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25}},"mistral.mistral-large-3-675b-instruct":{"id":"mistral.mistral-large-3-675b-instruct","name":"Mistral Large 3","family":"mistral","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-12-02","last_updated":"2025-12-02","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"output":8192},"cost":{"input":0.5,"output":1.5}},"writer.palmyra-x4-v1:0":{"id":"writer.palmyra-x4-v1:0","name":"Palmyra X4","family":"palmyra","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-04-28","last_updated":"2025-04-28","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":122880,"output":8192},"cost":{"input":2.5,"output":10}},"mistral.pixtral-large-2502-v1:0":{"id":"mistral.pixtral-large-2502-v1:0","name":"Pixtral Large (25.02)","family":"mistral","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2025-04-08","last_updated":"2025-04-08","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":8192},"cost":{"input":2,"output":6}},"amazon.nova-micro-v1:0":{"id":"amazon.nova-micro-v1:0","name":"Nova Micro","family":"nova-micro","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2024-12-03","last_updated":"2024-12-03","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":8192},"cost":{"input":0.035,"output":0.14,"cache_read":0.00875}},"anthropic.claude-opus-4-6-v1":{"id":"anthropic.claude-opus-4-6-v1","name":"Claude Opus 4.6","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-05-31","release_date":"2026-02-05","last_updated":"2026-03-13","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25}},"eu.anthropic.claude-sonnet-4-5-20250929-v1:0":{"id":"eu.anthropic.claude-sonnet-4-5-20250929-v1:0","name":"Claude Sonnet 4.5 (EU)","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-07-31","release_date":"2025-09-29","last_updated":"2025-09-29","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":3.3,"output":16.5,"cache_read":0.33,"cache_write":4.125}},"google.gemma-3-12b-it":{"id":"google.gemma-3-12b-it","name":"Google Gemma 3 12B","family":"gemma","attachment":false,"reasoning":false,"tool_call":false,"structured_output":true,"temperature":true,"knowledge":"2024-12","release_date":"2024-12-01","last_updated":"2024-12-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":8192},"cost":{"input":0.049999999999999996,"output":0.09999999999999999}},"mistral.magistral-small-2509":{"id":"mistral.magistral-small-2509","name":"Magistral Small 1.2","family":"magistral","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-12-02","last_updated":"2025-12-02","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":40000},"cost":{"input":0.5,"output":1.5}},"anthropic.claude-opus-4-5-20251101-v1:0":{"id":"anthropic.claude-opus-4-5-20251101-v1:0","name":"Claude Opus 4.5","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-11-24","last_updated":"2025-08-01","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25}},"google.gemma-3-27b-it":{"id":"google.gemma-3-27b-it","name":"Google Gemma 3 27B Instruct","family":"gemma","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-07","release_date":"2025-07-27","last_updated":"2025-07-27","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":202752,"output":8192},"cost":{"input":0.12,"output":0.2}},"us.meta.llama4-maverick-17b-instruct-v1:0":{"id":"us.meta.llama4-maverick-17b-instruct-v1:0","name":"Llama 4 Maverick 17B Instruct (US)","family":"llama","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-08","release_date":"2025-04-05","last_updated":"2025-04-05","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":1000000,"output":16384},"cost":{"input":0.24,"output":0.97}},"amazon.nova-2-lite-v1:0":{"id":"amazon.nova-2-lite-v1:0","name":"Nova 2 Lite","family":"nova","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2024-12-01","last_updated":"2024-12-01","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":4096},"cost":{"input":0.33,"output":2.75}},"jp.anthropic.claude-sonnet-4-5-20250929-v1:0":{"id":"jp.anthropic.claude-sonnet-4-5-20250929-v1:0","name":"Claude Sonnet 4.5 (JP)","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-07-31","release_date":"2025-09-29","last_updated":"2025-09-29","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75}},"us.meta.llama4-scout-17b-instruct-v1:0":{"id":"us.meta.llama4-scout-17b-instruct-v1:0","name":"Llama 4 Scout 17B Instruct (US)","family":"llama","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-08","release_date":"2025-04-05","last_updated":"2025-04-05","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":3500000,"output":16384},"cost":{"input":0.17,"output":0.66}},"nvidia.nemotron-nano-3-30b":{"id":"nvidia.nemotron-nano-3-30b","name":"NVIDIA Nemotron Nano 3 30B","family":"nemotron","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-12-23","last_updated":"2025-12-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4096},"cost":{"input":0.06,"output":0.24}},"au.anthropic.claude-sonnet-4-6":{"id":"au.anthropic.claude-sonnet-4-6","name":"AU Anthropic Claude Sonnet 4.6","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-08","release_date":"2026-02-17","last_updated":"2026-02-17","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":3.3,"output":16.5,"cache_read":0.33,"cache_write":4.125}},"openai.gpt-5.4":{"id":"openai.gpt-5.4","name":"GPT-5.4","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-03-05","last_updated":"2026-06-01","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":272000,"output":128000},"provider":{"npm":"@ai-sdk/amazon-bedrock/mantle","api":"https://bedrock-mantle.${AWS_REGION}.api.aws/openai/v1","shape":"responses"},"cost":{"input":2.75,"output":16.5,"cache_read":0.275}},"jp.anthropic.claude-opus-4-7":{"id":"jp.anthropic.claude-opus-4-7","name":"Claude Opus 4.7 (JP)","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2026-01-31","release_date":"2026-04-16","last_updated":"2026-04-16","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25}},"meta.llama4-scout-17b-instruct-v1:0":{"id":"meta.llama4-scout-17b-instruct-v1:0","name":"Llama 4 Scout 17B Instruct","family":"llama","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-08","release_date":"2025-04-05","last_updated":"2025-04-05","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":3500000,"output":16384},"cost":{"input":0.17,"output":0.66}},"openai.gpt-oss-safeguard-120b":{"id":"openai.gpt-oss-safeguard-120b","name":"GPT OSS Safeguard 120B","family":"gpt-oss","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-10-29","last_updated":"2025-10-29","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":0.15,"output":0.6}},"global.anthropic.claude-sonnet-4-5-20250929-v1:0":{"id":"global.anthropic.claude-sonnet-4-5-20250929-v1:0","name":"Claude Sonnet 4.5 (Global)","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-07-31","release_date":"2025-09-29","last_updated":"2025-09-29","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75}},"zai.glm-4.7-flash":{"id":"zai.glm-4.7-flash","name":"GLM-4.7-Flash","family":"glm-flash","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-04","release_date":"2026-01-19","last_updated":"2026-01-19","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":200000,"output":131072},"cost":{"input":0.07,"output":0.4}},"openai.gpt-oss-20b-1:0":{"id":"openai.gpt-oss-20b-1:0","name":"gpt-oss-20b","family":"gpt-oss","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":0.07,"output":0.3}},"anthropic.claude-opus-4-8":{"id":"anthropic.claude-opus-4-8","name":"Claude Opus 4.8","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2026-05-28","last_updated":"2026-05-28","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25}},"au.anthropic.claude-sonnet-4-5-20250929-v1:0":{"id":"au.anthropic.claude-sonnet-4-5-20250929-v1:0","name":"Claude Sonnet 4.5 (AU)","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-07-31","release_date":"2025-09-29","last_updated":"2025-09-29","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75}},"openai.gpt-oss-20b":{"id":"openai.gpt-oss-20b","name":"gpt-oss-20b","family":"gpt-oss","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"provider":{"npm":"@ai-sdk/amazon-bedrock/mantle","api":"https://bedrock-mantle.${AWS_REGION}.api.aws/v1","shape":"responses"},"cost":{"input":0.07,"output":0.3}},"qwen.qwen3-32b-v1:0":{"id":"qwen.qwen3-32b-v1:0","name":"Qwen3 32B (dense)","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-04","release_date":"2025-09-18","last_updated":"2025-09-18","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":16384,"output":16384},"cost":{"input":0.15,"output":0.6}},"deepseek.r1-v1:0":{"id":"deepseek.r1-v1:0","name":"DeepSeek-R1","family":"deepseek-thinking","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-07","release_date":"2025-01-20","last_updated":"2025-05-29","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":32768},"cost":{"input":1.35,"output":5.4}},"amazon.nova-lite-v1:0":{"id":"amazon.nova-lite-v1:0","name":"Nova Lite","family":"nova-lite","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2024-12-03","last_updated":"2024-12-03","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":300000,"output":8192},"cost":{"input":0.06,"output":0.24,"cache_read":0.015}},"us.deepseek.r1-v1:0":{"id":"us.deepseek.r1-v1:0","name":"DeepSeek-R1 (US)","family":"deepseek-thinking","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-07","release_date":"2025-01-20","last_updated":"2025-05-29","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":32768},"cost":{"input":1.35,"output":5.4}}}},"synthetic":{"id":"synthetic","env":["SYNTHETIC_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://api.synthetic.new/openai/v1","name":"Synthetic","doc":"https://synthetic.new/pricing","models":{"hf:openai/gpt-oss-120b":{"id":"hf:openai/gpt-oss-120b","name":"GPT OSS 120B","family":"gpt-oss","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":32768},"cost":{"input":0.1,"output":0.1}},"hf:meta-llama/Llama-3.1-70B-Instruct":{"id":"hf:meta-llama/Llama-3.1-70B-Instruct","name":"Llama-3.1-70B-Instruct","family":"llama","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2023-12","release_date":"2024-07-23","last_updated":"2024-07-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":32768},"cost":{"input":0.9,"output":0.9}},"hf:meta-llama/Llama-3.1-405B-Instruct":{"id":"hf:meta-llama/Llama-3.1-405B-Instruct","name":"Llama-3.1-405B-Instruct","family":"llama","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2023-12","release_date":"2024-07-23","last_updated":"2024-07-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":32768},"cost":{"input":3,"output":3}},"hf:meta-llama/Llama-3.1-8B-Instruct":{"id":"hf:meta-llama/Llama-3.1-8B-Instruct","name":"Llama-3.1-8B-Instruct","family":"llama","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2023-12","release_date":"2024-07-23","last_updated":"2024-07-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":32768},"cost":{"input":0.2,"output":0.2}},"hf:meta-llama/Llama-4-Maverick-17B-128E-Instruct-FP8":{"id":"hf:meta-llama/Llama-4-Maverick-17B-128E-Instruct-FP8","name":"Llama-4-Maverick-17B-128E-Instruct-FP8","family":"llama","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-08","release_date":"2025-04-05","last_updated":"2025-04-05","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":524000,"output":4096},"cost":{"input":0.22,"output":0.88}},"hf:meta-llama/Llama-3.3-70B-Instruct":{"id":"hf:meta-llama/Llama-3.3-70B-Instruct","name":"Llama-3.3-70B-Instruct","family":"llama","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2023-12","release_date":"2024-12-06","last_updated":"2024-12-06","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":32768},"cost":{"input":0.9,"output":0.9}},"hf:meta-llama/Llama-4-Scout-17B-16E-Instruct":{"id":"hf:meta-llama/Llama-4-Scout-17B-16E-Instruct","name":"Llama-4-Scout-17B-16E-Instruct","family":"llama","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-08","release_date":"2025-04-05","last_updated":"2025-04-05","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":328000,"output":4096},"cost":{"input":0.15,"output":0.6}},"hf:Qwen/Qwen3-Coder-480B-A35B-Instruct":{"id":"hf:Qwen/Qwen3-Coder-480B-A35B-Instruct","name":"Qwen 3 Coder 480B","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-07-23","last_updated":"2025-07-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"output":32000},"cost":{"input":2,"output":2}},"hf:Qwen/Qwen3-235B-A22B-Thinking-2507":{"id":"hf:Qwen/Qwen3-235B-A22B-Thinking-2507","name":"Qwen3 235B A22B Thinking 2507","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-07-25","last_updated":"2025-07-25","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"output":32000},"cost":{"input":0.65,"output":3}},"hf:Qwen/Qwen3.5-397B-A17B":{"id":"hf:Qwen/Qwen3.5-397B-A17B","name":"Qwen3.5-97B-A17B","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-02-11","last_updated":"2026-02-11","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":65536},"status":"beta","cost":{"input":0.6,"output":3,"cache_read":0.6}},"hf:Qwen/Qwen3-235B-A22B-Instruct-2507":{"id":"hf:Qwen/Qwen3-235B-A22B-Instruct-2507","name":"Qwen 3 235B Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-04-28","last_updated":"2025-07-21","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"output":32000},"cost":{"input":0.2,"output":0.6}},"hf:Qwen/Qwen2.5-Coder-32B-Instruct":{"id":"hf:Qwen/Qwen2.5-Coder-32B-Instruct","name":"Qwen2.5-Coder-32B-Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2024-10","release_date":"2024-11-11","last_updated":"2024-11-11","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":32768,"output":32768},"cost":{"input":0.8,"output":0.8}},"hf:MiniMaxAI/MiniMax-M2.5":{"id":"hf:MiniMaxAI/MiniMax-M2.5","name":"MiniMax-M2.5","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-02-07","last_updated":"2026-02-07","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":191488,"output":65536},"cost":{"input":0.6,"output":3,"cache_read":0.6}},"hf:MiniMaxAI/MiniMax-M2":{"id":"hf:MiniMaxAI/MiniMax-M2","name":"MiniMax-M2","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-10-27","last_updated":"2025-10-27","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":196608,"output":131000},"cost":{"input":0.55,"output":2.19}},"hf:MiniMaxAI/MiniMax-M2.1":{"id":"hf:MiniMaxAI/MiniMax-M2.1","name":"MiniMax-M2.1","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"release_date":"2025-12-23","last_updated":"2025-12-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0.55,"output":2.19}},"hf:zai-org/GLM-4.7":{"id":"hf:zai-org/GLM-4.7","name":"GLM 4.7","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2025-04","release_date":"2025-12-22","last_updated":"2025-12-22","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":200000,"output":64000},"cost":{"input":0.55,"output":2.19}},"hf:zai-org/GLM-5":{"id":"hf:zai-org/GLM-5","name":"GLM-5","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-02-12","last_updated":"2026-04-08","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":196608,"output":65536},"cost":{"input":1,"output":3,"cache_read":1}},"hf:zai-org/GLM-5.1":{"id":"hf:zai-org/GLM-5.1","name":"GLM 5.1","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-03-27","last_updated":"2026-04-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":196608,"output":65536},"cost":{"input":1,"output":3,"cache_read":1}},"hf:zai-org/GLM-4.7-Flash":{"id":"hf:zai-org/GLM-4.7-Flash","name":"GLM-4.7-Flash","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-01-18","last_updated":"2026-01-18","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":196608,"output":65536},"cost":{"input":0.06,"output":0.4,"cache_read":0.06}},"hf:zai-org/GLM-4.6":{"id":"hf:zai-org/GLM-4.6","name":"GLM 4.6","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-09-30","last_updated":"2025-09-30","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":200000,"output":64000},"cost":{"input":0.55,"output":2.19}},"hf:nvidia/NVIDIA-Nemotron-3-Super-120B-A12B-NVFP4":{"id":"hf:nvidia/NVIDIA-Nemotron-3-Super-120B-A12B-NVFP4","name":"Nemotron 3 Super 120B","family":"nemotron","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2024-04","release_date":"2026-03-11","last_updated":"2026-04-03","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":65536},"cost":{"input":0.3,"output":1,"cache_read":0.3}},"hf:nvidia/Kimi-K2.5-NVFP4":{"id":"hf:nvidia/Kimi-K2.5-NVFP4","name":"Kimi K2.5 (NVFP4)","family":"kimi","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2025-01","release_date":"2026-01","last_updated":"2026-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":65536},"cost":{"input":0.55,"output":2.19}},"hf:deepseek-ai/DeepSeek-V3.1":{"id":"hf:deepseek-ai/DeepSeek-V3.1","name":"DeepSeek V3.1","family":"deepseek","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-08-21","last_updated":"2025-08-21","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":128000},"cost":{"input":0.56,"output":1.68}},"hf:deepseek-ai/DeepSeek-V3.1-Terminus":{"id":"hf:deepseek-ai/DeepSeek-V3.1-Terminus","name":"DeepSeek V3.1 Terminus","family":"deepseek","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-09-22","last_updated":"2025-09-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":128000},"cost":{"input":1.2,"output":1.2}},"hf:deepseek-ai/DeepSeek-V3.2":{"id":"hf:deepseek-ai/DeepSeek-V3.2","name":"DeepSeek V3.2","family":"deepseek","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-12-01","last_updated":"2025-12-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":162816,"input":162816,"output":8000},"cost":{"input":0.27,"output":0.4,"cache_read":0.27,"cache_write":0}},"hf:deepseek-ai/DeepSeek-R1":{"id":"hf:deepseek-ai/DeepSeek-R1","name":"DeepSeek R1","family":"deepseek-thinking","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-01-20","last_updated":"2025-01-20","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":128000},"cost":{"input":0.55,"output":2.19}},"hf:deepseek-ai/DeepSeek-V3-0324":{"id":"hf:deepseek-ai/DeepSeek-V3-0324","name":"DeepSeek V3 (0324)","family":"deepseek","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2025-08-01","last_updated":"2025-08-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":128000},"cost":{"input":1.2,"output":1.2}},"hf:deepseek-ai/DeepSeek-V3":{"id":"hf:deepseek-ai/DeepSeek-V3","name":"DeepSeek V3","family":"deepseek","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-07","release_date":"2025-01-20","last_updated":"2025-05-29","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":128000},"cost":{"input":1.25,"output":1.25}},"hf:deepseek-ai/DeepSeek-R1-0528":{"id":"hf:deepseek-ai/DeepSeek-R1-0528","name":"DeepSeek R1 (0528)","family":"deepseek-thinking","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-08-01","last_updated":"2025-08-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":128000},"cost":{"input":3,"output":8}},"hf:moonshotai/Kimi-K2.6":{"id":"hf:moonshotai/Kimi-K2.6","name":"Kimi K2.6","family":"kimi-k2.6","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-04-21","last_updated":"2026-04-21","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":65536},"cost":{"input":0.95,"output":4,"cache_read":0.95}},"hf:moonshotai/Kimi-K2-Instruct-0905":{"id":"hf:moonshotai/Kimi-K2-Instruct-0905","name":"Kimi K2 0905","family":"kimi","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2025-09-05","last_updated":"2025-09-05","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":32768},"cost":{"input":1.2,"output":1.2}},"hf:moonshotai/Kimi-K2.5":{"id":"hf:moonshotai/Kimi-K2.5","name":"Kimi K2.5","family":"kimi","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2025-01","release_date":"2026-01","last_updated":"2026-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":65536},"cost":{"input":0.55,"output":2.19}},"hf:moonshotai/Kimi-K2-Thinking":{"id":"hf:moonshotai/Kimi-K2-Thinking","name":"Kimi K2 Thinking","family":"kimi-thinking","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-11","release_date":"2025-11-07","last_updated":"2025-11-07","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.55,"output":2.19}}}},"cloudferro-sherlock":{"id":"cloudferro-sherlock","env":["CLOUDFERRO_SHERLOCK_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://api-sherlock.cloudferro.com/openai/v1/","name":"CloudFerro Sherlock","doc":"https://docs.sherlock.cloudferro.com/","models":{"MiniMaxAI/MiniMax-M2.5":{"id":"MiniMaxAI/MiniMax-M2.5","name":"MiniMax-M2.5","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2026-01","release_date":"2026-03-05","last_updated":"2026-03-05","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":196000,"input":180000,"output":16000},"cost":{"input":0.3,"output":1.2}},"meta-llama/Llama-3.3-70B-Instruct":{"id":"meta-llama/Llama-3.3-70B-Instruct","name":"Llama 3.3 70B Instruct","family":"llama","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-10-09","release_date":"2024-12-06","last_updated":"2024-12-06","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":70000,"output":70000},"cost":{"input":2.92,"output":2.92}},"speakleash/Bielik-11B-v2.6-Instruct":{"id":"speakleash/Bielik-11B-v2.6-Instruct","name":"Bielik 11B v2.6 Instruct","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-03","release_date":"2025-03-13","last_updated":"2025-03-13","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":32000,"output":32000},"cost":{"input":0.67,"output":0.67}},"speakleash/Bielik-11B-v3.0-Instruct":{"id":"speakleash/Bielik-11B-v3.0-Instruct","name":"Bielik 11B v3.0 Instruct","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-03","release_date":"2025-03-13","last_updated":"2025-03-13","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":32000,"output":32000},"cost":{"input":0.67,"output":0.67}},"openai/gpt-oss-120b":{"id":"openai/gpt-oss-120b","name":"OpenAI GPT OSS 120B","family":"gpt-oss","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-08-28","last_updated":"2025-08-28","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131000,"output":131000},"cost":{"input":2.92,"output":2.92}}}},"helicone":{"id":"helicone","env":["HELICONE_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://ai-gateway.helicone.ai/v1","name":"Helicone","doc":"https://helicone.ai/models","models":{"chatgpt-4o-latest":{"id":"chatgpt-4o-latest","name":"OpenAI ChatGPT-4o","family":"gpt","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-08","release_date":"2024-08-14","last_updated":"2024-08-14","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":5,"output":20,"cache_read":2.5}},"mistral-large-2411":{"id":"mistral-large-2411","name":"Mistral-Large","family":"mistral-large","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-07","release_date":"2024-07-24","last_updated":"2024-07-24","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":32768},"cost":{"input":2,"output":6}},"gpt-5-pro":{"id":"gpt-5-pro","name":"OpenAI: GPT-5 Pro","family":"gpt-pro","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"knowledge":"2025-01","release_date":"2025-01-01","last_updated":"2025-01-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":32768},"cost":{"input":15,"output":120}},"claude-sonnet-4":{"id":"claude-sonnet-4","name":"Anthropic: Claude Sonnet 4","family":"claude-sonnet","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-05","release_date":"2025-05-14","last_updated":"2025-05-14","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":3,"output":15,"cache_read":0.30000000000000004,"cache_write":3.75}},"gpt-5-mini":{"id":"gpt-5-mini","name":"OpenAI GPT-5 Mini","family":"gpt-mini","attachment":false,"reasoning":false,"tool_call":true,"temperature":false,"knowledge":"2025-01","release_date":"2025-01-01","last_updated":"2025-01-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":0.25,"output":2,"cache_read":0.024999999999999998}},"qwen3-next-80b-a3b-instruct":{"id":"qwen3-next-80b-a3b-instruct","name":"Qwen3 Next 80B A3B Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-01-01","last_updated":"2025-01-01","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":262000,"output":16384},"cost":{"input":0.14,"output":1.4}},"sonar":{"id":"sonar","name":"Perplexity Sonar","family":"sonar","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2025-01","release_date":"2025-01-27","last_updated":"2025-01-27","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":127000,"output":4096},"cost":{"input":1,"output":1}},"gpt-4o":{"id":"gpt-4o","name":"OpenAI GPT-4o","family":"gpt","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-05","release_date":"2024-05-13","last_updated":"2024-05-13","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":2.5,"output":10,"cache_read":1.25}},"llama-4-maverick":{"id":"llama-4-maverick","name":"Meta Llama 4 Maverick 17B 128E","family":"llama","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-01-01","last_updated":"2025-01-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":8192},"cost":{"input":0.15,"output":0.6}},"gpt-5-chat-latest":{"id":"gpt-5-chat-latest","name":"OpenAI GPT-5 Chat Latest","family":"gpt-codex","attachment":false,"reasoning":false,"tool_call":true,"temperature":false,"knowledge":"2024-09","release_date":"2024-09-30","last_updated":"2024-09-30","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":1.25,"output":10,"cache_read":0.12500000000000003}},"gpt-5-codex":{"id":"gpt-5-codex","name":"OpenAI: GPT-5 Codex","family":"gpt-codex","attachment":false,"reasoning":false,"tool_call":true,"temperature":false,"knowledge":"2025-01","release_date":"2025-01-01","last_updated":"2025-01-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":1.25,"output":10,"cache_read":0.12500000000000003}},"o3":{"id":"o3","name":"OpenAI o3","family":"o","attachment":false,"reasoning":false,"tool_call":true,"temperature":false,"knowledge":"2024-06","release_date":"2024-06-01","last_updated":"2024-06-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":2,"output":8,"cache_read":0.5}},"glm-4.6":{"id":"glm-4.6","name":"Zai GLM-4.6","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-07","release_date":"2024-07-18","last_updated":"2024-07-18","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":204800,"output":131072},"cost":{"input":0.44999999999999996,"output":1.5}},"qwen3-32b":{"id":"qwen3-32b","name":"Qwen3 32B","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-04-28","last_updated":"2025-04-28","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":40960},"cost":{"input":0.29,"output":0.59}},"qwen3-coder-30b-a3b-instruct":{"id":"qwen3-coder-30b-a3b-instruct","name":"Qwen3 Coder 30B A3B Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-07","release_date":"2025-07-31","last_updated":"2025-07-31","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"output":262144},"cost":{"input":0.09999999999999999,"output":0.3}},"kimi-k2-thinking":{"id":"kimi-k2-thinking","name":"Kimi K2 Thinking","family":"kimi-thinking","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-11","release_date":"2025-11-06","last_updated":"2025-11-06","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":262144},"cost":{"input":0.48,"output":2}},"deepseek-tng-r1t2-chimera":{"id":"deepseek-tng-r1t2-chimera","name":"DeepSeek TNG R1T2 Chimera","family":"deepseek-thinking","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-07","release_date":"2025-07-02","last_updated":"2025-07-02","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":130000,"output":163840},"cost":{"input":0.3,"output":1.2}},"claude-haiku-4-5-20251001":{"id":"claude-haiku-4-5-20251001","name":"Anthropic: Claude 4.5 Haiku (20251001)","family":"claude-haiku","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-10","release_date":"2025-10-01","last_updated":"2025-10-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":8192},"cost":{"input":1,"output":5,"cache_read":0.09999999999999999,"cache_write":1.25}},"claude-3.5-sonnet-v2":{"id":"claude-3.5-sonnet-v2","name":"Anthropic: Claude 3.5 Sonnet v2","family":"claude-sonnet","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2024-10-22","last_updated":"2024-10-22","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":8192},"cost":{"input":3,"output":15,"cache_read":0.30000000000000004,"cache_write":3.75}},"qwen3-vl-235b-a22b-instruct":{"id":"qwen3-vl-235b-a22b-instruct","name":"Qwen3 VL 235B A22B Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-09","release_date":"2025-09-23","last_updated":"2025-09-23","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":16384},"cost":{"input":0.3,"output":1.5}},"gpt-5":{"id":"gpt-5","name":"OpenAI GPT-5","family":"gpt","attachment":false,"reasoning":false,"tool_call":true,"temperature":false,"knowledge":"2025-01","release_date":"2025-01-01","last_updated":"2025-01-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":1.25,"output":10,"cache_read":0.12500000000000003}},"grok-4-fast-non-reasoning":{"id":"grok-4-fast-non-reasoning","name":"xAI Grok 4 Fast Non-Reasoning","family":"grok","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-09","release_date":"2025-09-19","last_updated":"2025-09-19","modalities":{"input":["text","image","audio"],"output":["text"]},"open_weights":false,"limit":{"context":2000000,"output":2000000},"cost":{"input":0.19999999999999998,"output":0.5,"cache_read":0.049999999999999996}},"sonar-pro":{"id":"sonar-pro","name":"Perplexity Sonar Pro","family":"sonar-pro","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2025-01","release_date":"2025-01-27","last_updated":"2025-01-27","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":4096},"cost":{"input":3,"output":15}},"gpt-4.1-mini":{"id":"gpt-4.1-mini","name":"OpenAI GPT-4.1 Mini","family":"gpt-mini","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-04-14","last_updated":"2025-04-14","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1047576,"output":32768},"cost":{"input":0.39999999999999997,"output":1.5999999999999999,"cache_read":0.09999999999999999}},"deepseek-v3.2":{"id":"deepseek-v3.2","name":"DeepSeek V3.2","family":"deepseek","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-09","release_date":"2025-09-22","last_updated":"2025-09-22","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":163840,"output":65536},"cost":{"input":0.27,"output":0.41}},"o3-pro":{"id":"o3-pro","name":"OpenAI o3 Pro","family":"o-pro","attachment":false,"reasoning":false,"tool_call":true,"temperature":false,"knowledge":"2024-06","release_date":"2024-06-01","last_updated":"2024-06-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":20,"output":80}},"llama-3.1-8b-instant":{"id":"llama-3.1-8b-instant","name":"Meta Llama 3.1 8B Instant","family":"llama","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-07","release_date":"2024-07-01","last_updated":"2024-07-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":32678},"cost":{"input":0.049999999999999996,"output":0.08}},"o4-mini":{"id":"o4-mini","name":"OpenAI o4 Mini","family":"o-mini","attachment":false,"reasoning":false,"tool_call":true,"temperature":false,"knowledge":"2024-06","release_date":"2024-06-01","last_updated":"2024-06-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":1.1,"output":4.4,"cache_read":0.275}},"o3-mini":{"id":"o3-mini","name":"OpenAI o3 Mini","family":"o-mini","attachment":false,"reasoning":false,"tool_call":true,"temperature":false,"knowledge":"2023-10","release_date":"2023-10-01","last_updated":"2023-10-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":1.1,"output":4.4,"cache_read":0.55}},"sonar-reasoning":{"id":"sonar-reasoning","name":"Perplexity Sonar Reasoning","family":"sonar-reasoning","attachment":false,"reasoning":true,"tool_call":false,"temperature":true,"knowledge":"2025-01","release_date":"2025-01-27","last_updated":"2025-01-27","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":127000,"output":4096},"cost":{"input":1,"output":5}},"deepseek-reasoner":{"id":"deepseek-reasoner","name":"DeepSeek Reasoner","family":"deepseek-thinking","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2025-01","release_date":"2025-01-20","last_updated":"2025-01-20","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":64000},"cost":{"input":0.56,"output":1.68,"cache_read":0.07}},"ernie-4.5-21b-a3b-thinking":{"id":"ernie-4.5-21b-a3b-thinking","name":"Baidu Ernie 4.5 21B A3B Thinking","family":"ernie","attachment":false,"reasoning":true,"tool_call":false,"temperature":true,"knowledge":"2025-03","release_date":"2025-03-16","last_updated":"2025-03-16","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":8000},"cost":{"input":0.07,"output":0.28}},"claude-3.7-sonnet":{"id":"claude-3.7-sonnet","name":"Anthropic: Claude 3.7 Sonnet","family":"claude-sonnet","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-02","release_date":"2025-02-19","last_updated":"2025-02-19","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":3,"output":15,"cache_read":0.30000000000000004,"cache_write":3.75}},"mistral-nemo":{"id":"mistral-nemo","name":"Mistral Nemo","family":"mistral-nemo","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2024-07","release_date":"2024-07-18","last_updated":"2024-07-18","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16400},"cost":{"input":20,"output":40}},"mistral-small":{"id":"mistral-small","name":"Mistral Small 3.2","family":"mistral-small","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-03","release_date":"2025-06-20","last_updated":"2025-06-20","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":16384},"cost":{"input":0.075,"output":0.2}},"gpt-5.1":{"id":"gpt-5.1","name":"OpenAI GPT-5.1","family":"gpt","attachment":false,"reasoning":false,"tool_call":true,"temperature":false,"knowledge":"2025-01","release_date":"2025-01-01","last_updated":"2025-01-01","modalities":{"input":["text","image"],"output":["text","image"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":1.25,"output":10,"cache_read":0.12500000000000003}},"gpt-5-nano":{"id":"gpt-5-nano","name":"OpenAI GPT-5 Nano","family":"gpt-nano","attachment":false,"reasoning":false,"tool_call":true,"temperature":false,"knowledge":"2025-01","release_date":"2025-01-01","last_updated":"2025-01-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":0.049999999999999996,"output":0.39999999999999997,"cache_read":0.005}},"gpt-oss-120b":{"id":"gpt-oss-120b","name":"OpenAI GPT-OSS 120b","family":"gpt-oss","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-06","release_date":"2024-06-01","last_updated":"2024-06-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":131072},"cost":{"input":0.04,"output":0.16}},"grok-3":{"id":"grok-3","name":"xAI Grok 3","family":"grok","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-06","release_date":"2024-06-01","last_updated":"2024-06-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":131072},"cost":{"input":3,"output":15,"cache_read":0.75}},"gpt-4o-mini":{"id":"gpt-4o-mini","name":"OpenAI GPT-4o-mini","family":"gpt-mini","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-07","release_date":"2024-07-18","last_updated":"2024-07-18","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":0.15,"output":0.6,"cache_read":0.075}},"claude-opus-4-1":{"id":"claude-opus-4-1","name":"Anthropic: Claude Opus 4.1","family":"claude-opus","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-08","release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":32000},"cost":{"input":15,"output":75,"cache_read":1.5,"cache_write":18.75}},"grok-4-fast-reasoning":{"id":"grok-4-fast-reasoning","name":"xAI: Grok 4 Fast Reasoning","family":"grok","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-09","release_date":"2025-09-01","last_updated":"2025-09-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":2000000,"output":2000000},"cost":{"input":0.19999999999999998,"output":0.5,"cache_read":0.049999999999999996}},"gpt-5.1-codex-mini":{"id":"gpt-5.1-codex-mini","name":"OpenAI: GPT-5.1 Codex Mini","family":"gpt-codex","attachment":false,"reasoning":false,"tool_call":true,"temperature":false,"knowledge":"2025-01","release_date":"2025-01-01","last_updated":"2025-01-01","modalities":{"input":["text","image"],"output":["text","image"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":0.25,"output":2,"cache_read":0.024999999999999998}},"grok-4-1-fast-non-reasoning":{"id":"grok-4-1-fast-non-reasoning","name":"xAI Grok 4.1 Fast Non-Reasoning","family":"grok","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-11","release_date":"2025-11-17","last_updated":"2025-11-17","modalities":{"input":["text","image"],"output":["text","image"]},"open_weights":false,"limit":{"context":2000000,"output":30000},"cost":{"input":0.19999999999999998,"output":0.5,"cache_read":0.049999999999999996}},"claude-3.5-haiku":{"id":"claude-3.5-haiku","name":"Anthropic: Claude 3.5 Haiku","family":"claude-haiku","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2024-10-22","last_updated":"2024-10-22","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":8192},"cost":{"input":0.7999999999999999,"output":4,"cache_read":0.08,"cache_write":1}},"gpt-oss-20b":{"id":"gpt-oss-20b","name":"OpenAI GPT-OSS 20b","family":"gpt-oss","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-06","release_date":"2024-06-01","last_updated":"2024-06-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":131072},"cost":{"input":0.049999999999999996,"output":0.19999999999999998}},"llama-prompt-guard-2-86m":{"id":"llama-prompt-guard-2-86m","name":"Meta Llama Prompt Guard 2 86M","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2024-10","release_date":"2024-10-01","last_updated":"2024-10-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":512,"output":2},"cost":{"input":0.01,"output":0.01}},"llama-4-scout":{"id":"llama-4-scout","name":"Meta Llama 4 Scout 17B 16E","family":"llama","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-01-01","last_updated":"2025-01-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":8192},"cost":{"input":0.08,"output":0.3}},"sonar-reasoning-pro":{"id":"sonar-reasoning-pro","name":"Perplexity Sonar Reasoning Pro","family":"sonar-reasoning","attachment":false,"reasoning":true,"tool_call":false,"temperature":true,"knowledge":"2025-01","release_date":"2025-01-27","last_updated":"2025-01-27","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":127000,"output":4096},"cost":{"input":2,"output":8}},"gemini-2.5-pro":{"id":"gemini-2.5-pro","name":"Google Gemini 2.5 Pro","family":"gemini-pro","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-06","release_date":"2025-06-17","last_updated":"2025-06-17","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":1.25,"output":10,"cache_read":0.3125,"cache_write":1.25}},"deepseek-r1-distill-llama-70b":{"id":"deepseek-r1-distill-llama-70b","name":"DeepSeek R1 Distill Llama 70B","family":"deepseek-thinking","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-01-20","last_updated":"2025-01-20","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":4096},"cost":{"input":0.03,"output":0.13}},"qwen3-30b-a3b":{"id":"qwen3-30b-a3b","name":"Qwen3 30B A3B","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-06","release_date":"2025-06-01","last_updated":"2025-06-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":41000,"output":41000},"cost":{"input":0.08,"output":0.29}},"gpt-4.1":{"id":"gpt-4.1","name":"OpenAI GPT-4.1","family":"gpt","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-04-14","last_updated":"2025-04-14","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1047576,"output":32768},"cost":{"input":2,"output":8,"cache_read":0.5}},"llama-guard-4":{"id":"llama-guard-4","name":"Meta Llama Guard 4 12B","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2025-01","release_date":"2025-01-01","last_updated":"2025-01-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":1024},"cost":{"input":0.21,"output":0.21}},"claude-sonnet-4-5-20250929":{"id":"claude-sonnet-4-5-20250929","name":"Anthropic: Claude Sonnet 4.5 (20250929)","family":"claude-sonnet","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-09","release_date":"2025-09-29","last_updated":"2025-09-29","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":3,"output":15,"cache_read":0.30000000000000004,"cache_write":3.75}},"claude-opus-4-1-20250805":{"id":"claude-opus-4-1-20250805","name":"Anthropic: Claude Opus 4.1 (20250805)","family":"claude-opus","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-08","release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":32000},"cost":{"input":15,"output":75,"cache_read":1.5,"cache_write":18.75}},"gemini-2.5-flash-lite":{"id":"gemini-2.5-flash-lite","name":"Google Gemini 2.5 Flash Lite","family":"gemini-flash-lite","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-07","release_date":"2025-07-22","last_updated":"2025-07-22","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65535},"cost":{"input":0.09999999999999999,"output":0.39999999999999997,"cache_read":0.024999999999999998,"cache_write":0.09999999999999999}},"gemini-2.5-flash":{"id":"gemini-2.5-flash","name":"Google Gemini 2.5 Flash","family":"gemini-flash","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-06","release_date":"2025-06-17","last_updated":"2025-06-17","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65535},"cost":{"input":0.3,"output":2.5,"cache_read":0.075,"cache_write":0.3}},"claude-4.5-haiku":{"id":"claude-4.5-haiku","name":"Anthropic: Claude 4.5 Haiku","family":"claude-haiku","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-10","release_date":"2025-10-01","last_updated":"2025-10-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":8192},"cost":{"input":1,"output":5,"cache_read":0.09999999999999999,"cache_write":1.25}},"deepseek-v3.1-terminus":{"id":"deepseek-v3.1-terminus","name":"DeepSeek V3.1 Terminus","family":"deepseek","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-09","release_date":"2025-09-22","last_updated":"2025-09-22","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":0.27,"output":1,"cache_read":0.21600000000000003}},"gemma-3-12b-it":{"id":"gemma-3-12b-it","name":"Google Gemma 3 12B","family":"gemma","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2024-12","release_date":"2024-12-01","last_updated":"2024-12-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":8192},"cost":{"input":0.049999999999999996,"output":0.09999999999999999}},"claude-4.5-opus":{"id":"claude-4.5-opus","name":"Anthropic: Claude Opus 4.5","family":"claude-opus","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-11","release_date":"2025-11-24","last_updated":"2025-11-24","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25}},"kimi-k2-0711":{"id":"kimi-k2-0711","name":"Kimi K2 (07/11)","family":"kimi","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-01-01","last_updated":"2025-01-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":16384},"cost":{"input":0.5700000000000001,"output":2.3}},"claude-4.5-sonnet":{"id":"claude-4.5-sonnet","name":"Anthropic: Claude Sonnet 4.5","family":"claude-sonnet","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-09","release_date":"2025-09-29","last_updated":"2025-09-29","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":3,"output":15,"cache_read":0.30000000000000004,"cache_write":3.75}},"qwen2.5-coder-7b-fast":{"id":"qwen2.5-coder-7b-fast","name":"Qwen2.5 Coder 7B fast","family":"qwen","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2024-09","release_date":"2024-09-15","last_updated":"2024-09-15","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":32000,"output":8192},"cost":{"input":0.03,"output":0.09}},"hermes-2-pro-llama-3-8b":{"id":"hermes-2-pro-llama-3-8b","name":"Hermes 2 Pro Llama 3 8B","family":"llama","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-05","release_date":"2024-05-27","last_updated":"2024-05-27","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":131072},"cost":{"input":0.14,"output":0.14}},"gpt-4.1-mini-2025-04-14":{"id":"gpt-4.1-mini-2025-04-14","name":"OpenAI GPT-4.1 Mini","family":"gpt-mini","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-04-14","last_updated":"2025-04-14","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1047576,"output":32768},"cost":{"input":0.39999999999999997,"output":1.5999999999999999,"cache_read":0.09999999999999999}},"kimi-k2-0905":{"id":"kimi-k2-0905","name":"Kimi K2 (09/05)","family":"kimi","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-09","release_date":"2025-09-05","last_updated":"2025-09-05","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"output":16384},"cost":{"input":0.5,"output":2,"cache_read":0.39999999999999997}},"o1-mini":{"id":"o1-mini","name":"OpenAI: o1-mini","family":"o-mini","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"knowledge":"2025-01","release_date":"2025-01-01","last_updated":"2025-01-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":65536},"cost":{"input":1.1,"output":4.4,"cache_read":0.55}},"deepseek-v3":{"id":"deepseek-v3","name":"DeepSeek V3","family":"deepseek","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-12","release_date":"2024-12-26","last_updated":"2024-12-26","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":8192},"cost":{"input":0.56,"output":1.68,"cache_read":0.07}},"gpt-5.1-codex":{"id":"gpt-5.1-codex","name":"OpenAI: GPT-5.1 Codex","family":"gpt-codex","attachment":false,"reasoning":false,"tool_call":true,"temperature":false,"knowledge":"2025-01","release_date":"2025-01-01","last_updated":"2025-01-01","modalities":{"input":["text","image"],"output":["text","image"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":1.25,"output":10,"cache_read":0.12500000000000003}},"claude-3-haiku-20240307":{"id":"claude-3-haiku-20240307","name":"Anthropic: Claude 3 Haiku","family":"claude-haiku","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-03","release_date":"2024-03-07","last_updated":"2024-03-07","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":4096},"cost":{"input":0.25,"output":1.25,"cache_read":0.03,"cache_write":0.3}},"gemma2-9b-it":{"id":"gemma2-9b-it","name":"Google Gemma 2","family":"gemma","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2024-06","release_date":"2024-06-25","last_updated":"2024-06-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":8192,"output":8192},"cost":{"input":0.01,"output":0.03}},"gemini-3-pro-preview":{"id":"gemini-3-pro-preview","name":"Google Gemini 3 Pro Preview","family":"gemini-pro","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-11","release_date":"2025-11-18","last_updated":"2025-11-18","modalities":{"input":["text","image","audio","video"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":2,"output":12,"cache_read":0.19999999999999998}},"qwen3-coder":{"id":"qwen3-coder","name":"Qwen3 Coder 480B A35B Instruct Turbo","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-07","release_date":"2025-07-23","last_updated":"2025-07-23","modalities":{"input":["text","image","audio","video"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"output":16384},"cost":{"input":0.22,"output":0.95}},"grok-3-mini":{"id":"grok-3-mini","name":"xAI Grok 3 Mini","family":"grok","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-06","release_date":"2024-06-01","last_updated":"2024-06-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":131072},"cost":{"input":0.3,"output":0.5,"cache_read":0.075}},"llama-3.1-8b-instruct-turbo":{"id":"llama-3.1-8b-instruct-turbo","name":"Meta Llama 3.1 8B Instruct Turbo","family":"llama","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-07","release_date":"2024-07-23","last_updated":"2024-07-23","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":128000},"cost":{"input":0.02,"output":0.03}},"llama-3.1-8b-instruct":{"id":"llama-3.1-8b-instruct","name":"Meta Llama 3.1 8B Instruct","family":"llama","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-07","release_date":"2024-07-23","last_updated":"2024-07-23","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":16384,"output":16384},"cost":{"input":0.02,"output":0.049999999999999996}},"llama-3.3-70b-versatile":{"id":"llama-3.3-70b-versatile","name":"Meta Llama 3.3 70B Versatile","family":"llama","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-12","release_date":"2024-12-06","last_updated":"2024-12-06","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":32678},"cost":{"input":0.59,"output":0.7899999999999999}},"qwen3-235b-a22b-thinking":{"id":"qwen3-235b-a22b-thinking","name":"Qwen3 235B A22B Thinking","family":"qwen","attachment":false,"reasoning":true,"tool_call":false,"temperature":true,"knowledge":"2025-07","release_date":"2025-07-25","last_updated":"2025-07-25","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"output":81920},"cost":{"input":0.3,"output":2.9000000000000004}},"gpt-5.1-chat-latest":{"id":"gpt-5.1-chat-latest","name":"OpenAI GPT-5.1 Chat","family":"gpt-codex","attachment":false,"reasoning":false,"tool_call":true,"temperature":false,"knowledge":"2025-01","release_date":"2025-01-01","last_updated":"2025-01-01","modalities":{"input":["text","image"],"output":["text","image"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":1.25,"output":10,"cache_read":0.12500000000000003}},"grok-4":{"id":"grok-4","name":"xAI Grok 4","family":"grok","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-07","release_date":"2024-07-09","last_updated":"2024-07-09","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":256000},"cost":{"input":3,"output":15,"cache_read":0.75}},"llama-3.3-70b-instruct":{"id":"llama-3.3-70b-instruct","name":"Meta Llama 3.3 70B Instruct","family":"llama","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-12","release_date":"2024-12-06","last_updated":"2024-12-06","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16400},"cost":{"input":0.13,"output":0.39}},"llama-prompt-guard-2-22m":{"id":"llama-prompt-guard-2-22m","name":"Meta Llama Prompt Guard 2 22M","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2024-10","release_date":"2024-10-01","last_updated":"2024-10-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":512,"output":2},"cost":{"input":0.01,"output":0.01}},"o1":{"id":"o1","name":"OpenAI: o1","family":"o","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"knowledge":"2025-01","release_date":"2025-01-01","last_updated":"2025-01-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":15,"output":60,"cache_read":7.5}},"grok-4-1-fast-reasoning":{"id":"grok-4-1-fast-reasoning","name":"xAI Grok 4.1 Fast Reasoning","family":"grok","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-11","release_date":"2025-11-17","last_updated":"2025-11-17","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":2000000,"output":2000000},"cost":{"input":0.19999999999999998,"output":0.5,"cache_read":0.049999999999999996}},"claude-opus-4":{"id":"claude-opus-4","name":"Anthropic: Claude Opus 4","family":"claude-opus","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-05","release_date":"2025-05-14","last_updated":"2025-05-14","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":32000},"cost":{"input":15,"output":75,"cache_read":1.5,"cache_write":18.75}},"grok-code-fast-1":{"id":"grok-code-fast-1","name":"xAI Grok Code Fast 1","family":"grok","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-08","release_date":"2024-08-25","last_updated":"2024-08-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":10000},"cost":{"input":0.19999999999999998,"output":1.5,"cache_read":0.02}},"sonar-deep-research":{"id":"sonar-deep-research","name":"Perplexity Sonar Deep Research","family":"sonar-deep-research","attachment":false,"reasoning":true,"tool_call":false,"temperature":true,"knowledge":"2025-01","release_date":"2025-01-27","last_updated":"2025-01-27","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":127000,"output":4096},"cost":{"input":2,"output":8}},"gpt-4.1-nano":{"id":"gpt-4.1-nano","name":"OpenAI GPT-4.1 Nano","family":"gpt-nano","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-04-14","last_updated":"2025-04-14","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1047576,"output":32768},"cost":{"input":0.09999999999999999,"output":0.39999999999999997,"cache_read":0.024999999999999998}}}},"zai":{"id":"zai","env":["ZHIPU_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://api.z.ai/api/paas/v4","name":"Z.AI","doc":"https://docs.z.ai/guides/overview/pricing","models":{"glm-4.5-flash":{"id":"glm-4.5-flash","name":"GLM-4.5-Flash","family":"glm-flash","attachment":false,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-07-28","last_updated":"2025-07-28","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":98304},"cost":{"input":0,"output":0,"cache_read":0,"cache_write":0}},"glm-4.7-flashx":{"id":"glm-4.7-flashx","name":"GLM-4.7-FlashX","family":"glm-flash","attachment":false,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2026-01-19","last_updated":"2026-01-19","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":200000,"output":131072},"cost":{"input":0.07,"output":0.4,"cache_read":0.01,"cache_write":0}},"glm-4.6":{"id":"glm-4.6","name":"GLM-4.6","family":"glm","attachment":false,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-09-30","last_updated":"2025-09-30","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0.6,"output":2.2,"cache_read":0.11,"cache_write":0}},"glm-4.7":{"id":"glm-4.7","name":"GLM-4.7","family":"glm","attachment":false,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2025-04","release_date":"2025-12-22","last_updated":"2025-12-22","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0.6,"output":2.2,"cache_read":0.11,"cache_write":0}},"glm-4.5v":{"id":"glm-4.5v","name":"GLM-4.5V","family":"glm","attachment":true,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-08-11","last_updated":"2025-08-11","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":64000,"output":16384},"cost":{"input":0.6,"output":1.8}},"glm-4.6v":{"id":"glm-4.6v","name":"GLM-4.6V","family":"glm","attachment":true,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-12-08","last_updated":"2025-12-08","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":32768},"cost":{"input":0.3,"output":0.9}},"glm-4.7-flash":{"id":"glm-4.7-flash","name":"GLM-4.7-Flash","family":"glm-flash","attachment":false,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2026-01-19","last_updated":"2026-01-19","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":200000,"output":131072},"cost":{"input":0,"output":0,"cache_read":0,"cache_write":0}},"glm-5v-turbo":{"id":"glm-5v-turbo","name":"GLM-5V-Turbo","family":"glm","attachment":true,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"release_date":"2026-04-01","last_updated":"2026-04-01","modalities":{"input":["text","image","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":131072},"cost":{"input":1.2,"output":4,"cache_read":0.24,"cache_write":0}},"glm-5":{"id":"glm-5","name":"GLM-5","family":"glm","attachment":false,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"release_date":"2026-02-11","last_updated":"2026-02-11","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":1,"output":3.2,"cache_read":0.2,"cache_write":0}},"glm-5-turbo":{"id":"glm-5-turbo","name":"GLM-5-Turbo","family":"glm","attachment":false,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-03-16","last_updated":"2026-03-16","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":131072},"cost":{"input":1.2,"output":4,"cache_read":0.24,"cache_write":0}},"glm-4.5":{"id":"glm-4.5","name":"GLM-4.5","family":"glm","attachment":false,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-07-28","last_updated":"2025-07-28","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":98304},"cost":{"input":0.6,"output":2.2,"cache_read":0.11,"cache_write":0}},"glm-4.5-air":{"id":"glm-4.5-air","name":"GLM-4.5-Air","family":"glm-air","attachment":false,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-07-28","last_updated":"2025-07-28","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":98304},"cost":{"input":0.2,"output":1.1,"cache_read":0.03,"cache_write":0}},"glm-5.1":{"id":"glm-5.1","name":"GLM-5.1","family":"glm","attachment":false,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-03-27","last_updated":"2026-03-27","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":131072},"cost":{"input":1.4,"output":4.4,"cache_read":0.26,"cache_write":0}}}},"nova":{"id":"nova","env":["NOVA_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://api.nova.amazon.com/v1","name":"Nova","doc":"https://nova.amazon.com/dev/documentation","models":{"nova-2-pro-v1":{"id":"nova-2-pro-v1","name":"Nova 2 Pro","family":"nova-pro","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-12-03","last_updated":"2026-01-03","modalities":{"input":["text","image","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":64000},"cost":{"input":0,"output":0,"reasoning":0}},"nova-2-lite-v1":{"id":"nova-2-lite-v1","name":"Nova 2 Lite","family":"nova-lite","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-12-01","last_updated":"2025-12-01","modalities":{"input":["text","image","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":64000},"cost":{"input":0,"output":0,"reasoning":0}}}},"nearai":{"id":"nearai","env":["NEARAI_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://cloud-api.near.ai/v1","name":"NEAR AI Cloud","doc":"https://docs.near.ai/","models":{"zai-org/GLM-5.1-FP8":{"id":"zai-org/GLM-5.1-FP8","name":"GLM-5.1 FP8","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-03-27","last_updated":"2026-03-27","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":202752,"output":131072},"cost":{"input":0.85,"output":3.3}},"anthropic/claude-sonnet-4-6":{"id":"anthropic/claude-sonnet-4-6","name":"Claude Sonnet 4.6","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-08-31","release_date":"2026-02-17","last_updated":"2026-03-13","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":64000},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75}},"anthropic/claude-haiku-4-5":{"id":"anthropic/claude-haiku-4-5","name":"Claude Haiku 4.5 (latest)","family":"claude-haiku","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-02-28","release_date":"2025-10-15","last_updated":"2025-10-15","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":1,"output":5,"cache_read":0.1,"cache_write":1.25}},"anthropic/claude-sonnet-4-5":{"id":"anthropic/claude-sonnet-4-5","name":"Claude Sonnet 4.5 (latest)","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-07-31","release_date":"2025-09-29","last_updated":"2025-09-29","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":3,"output":15.5,"cache_read":0.3,"cache_write":3.75}},"anthropic/claude-opus-4-6":{"id":"anthropic/claude-opus-4-6","name":"Claude Opus 4.6","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-05-31","release_date":"2026-02-05","last_updated":"2026-03-13","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":128000},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25}},"anthropic/claude-opus-4-7":{"id":"anthropic/claude-opus-4-7","name":"Claude Opus 4.7","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2026-01-31","release_date":"2026-04-16","last_updated":"2026-04-16","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25}},"black-forest-labs/FLUX.2-klein-4B":{"id":"black-forest-labs/FLUX.2-klein-4B","name":"FLUX.2 Klein 4B","family":"flux","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2026-01-14","last_updated":"2026-01-14","modalities":{"input":["text","image"],"output":["image"]},"open_weights":true,"limit":{"context":128000,"output":128000},"cost":{"input":1,"output":1}},"Qwen/Qwen3.6-35B-A3B-FP8":{"id":"Qwen/Qwen3.6-35B-A3B-FP8","name":"Qwen 3.6 35B A3B FP8","family":"qwen","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-04-17","last_updated":"2026-04-17","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":32768},"cost":{"input":0.17,"output":1.1,"cache_read":0.056}},"Qwen/Qwen3-30B-A3B-Instruct-2507":{"id":"Qwen/Qwen3-30B-A3B-Instruct-2507","name":"Qwen3 30B-A3B Instruct 2507","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-07-29","last_updated":"2025-07-29","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":32768},"cost":{"input":0.15,"output":0.55}},"Qwen/Qwen3-Reranker-0.6B":{"id":"Qwen/Qwen3-Reranker-0.6B","name":"Qwen3 Reranker 0.6B","family":"qwen","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2025-06-03","last_updated":"2025-06-03","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":40960,"output":1024},"cost":{"input":0.01,"output":0.01}},"Qwen/Qwen3-Embedding-0.6B":{"id":"Qwen/Qwen3-Embedding-0.6B","name":"Qwen3 Embedding 0.6B","family":"text-embedding","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2025-06-03","last_updated":"2025-06-03","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":40960,"output":1024},"cost":{"input":0.01,"output":0}},"Qwen/Qwen3-VL-30B-A3B-Instruct":{"id":"Qwen/Qwen3-VL-30B-A3B-Instruct","name":"Qwen3-VL 30B-A3B Instruct","family":"qwen","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-09-23","last_updated":"2025-09-23","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"output":32768},"cost":{"input":0.15,"output":0.55}},"Qwen/Qwen3.5-122B-A10B":{"id":"Qwen/Qwen3.5-122B-A10B","name":"Qwen3.5 122B-A10B","family":"qwen","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-02-23","last_updated":"2026-02-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":32768},"cost":{"input":0.4,"output":3.2}},"google/gemini-3-pro":{"id":"google/gemini-3-pro","name":"Gemini 3 Pro Preview","family":"gemini-pro","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-11-18","last_updated":"2025-11-18","modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":1.25,"output":15,"cache_read":0}},"google/gemini-2.5-pro":{"id":"google/gemini-2.5-pro","name":"Gemini 2.5 Pro","family":"gemini-pro","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-03-20","last_updated":"2025-06-05","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":1.25,"output":10,"cache_read":0.125,"tiers":[{"input":2.5,"output":15,"cache_read":0.25,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":2.5,"output":15,"cache_read":0.25}}},"google/gemma-4-31B-it":{"id":"google/gemma-4-31B-it","name":"Gemma 4 31B IT","family":"gemma","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-04-02","last_updated":"2026-04-02","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":32768},"cost":{"input":0.13,"output":0.4,"cache_read":0.026}},"google/gemini-3.1-flash-lite":{"id":"google/gemini-3.1-flash-lite","name":"Gemini 3.1 Flash Lite","family":"gemini-flash-lite","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-05-07","last_updated":"2026-05-07","modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":0.25,"output":1.5,"cache_read":0.025,"input_audio":0.5}},"google/gemini-2.5-flash-lite":{"id":"google/gemini-2.5-flash-lite","name":"Gemini 2.5 Flash-Lite","family":"gemini-flash-lite","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-06-17","last_updated":"2025-06-17","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":0.1,"output":0.4,"cache_read":0.01,"input_audio":0.3}},"google/gemini-2.5-flash":{"id":"google/gemini-2.5-flash","name":"Gemini 2.5 Flash","family":"gemini-flash","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-03-20","last_updated":"2025-06-05","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":0.3,"output":2.5,"cache_read":0.03,"input_audio":1}},"google/gemini-3.5-flash":{"id":"google/gemini-3.5-flash","name":"Gemini 3.5 Flash","family":"gemini-flash","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-05-19","last_updated":"2026-05-19","modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":1.5,"output":9,"cache_read":0.15,"input_audio":1.5}},"openai/gpt-5-mini":{"id":"openai/gpt-5-mini","name":"GPT-5 Mini","family":"gpt-mini","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-05-30","release_date":"2025-08-07","last_updated":"2025-08-07","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":0.25,"output":2,"cache_read":0.025}},"openai/gpt-5.2":{"id":"openai/gpt-5.2","name":"GPT-5.2","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2025-12-11","last_updated":"2025-12-11","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":1.8,"output":15.5,"cache_read":0.18}},"openai/o3":{"id":"openai/o3","name":"o3","family":"o","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-05","release_date":"2025-04-16","last_updated":"2025-04-16","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":2,"output":8,"cache_read":0.5}},"openai/gpt-5":{"id":"openai/gpt-5","name":"GPT-5","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-08-07","last_updated":"2025-08-07","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":1.25,"output":10,"cache_read":0.125}},"openai/gpt-4.1-mini":{"id":"openai/gpt-4.1-mini","name":"GPT-4.1 mini","family":"gpt-mini","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-04","release_date":"2025-04-14","last_updated":"2025-04-14","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1047576,"output":32768},"cost":{"input":0.4,"output":1.6,"cache_read":0.1}},"openai/o4-mini":{"id":"openai/o4-mini","name":"o4-mini","family":"o-mini","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-05","release_date":"2025-04-16","last_updated":"2025-04-16","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":1.1,"output":4.4,"cache_read":0.275}},"openai/gpt-5.4":{"id":"openai/gpt-5.4","name":"GPT-5.4","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-03-05","last_updated":"2026-03-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1050000,"input":922000,"output":128000},"cost":{"input":2.5,"output":15,"cache_read":0.25,"tiers":[{"input":5,"output":22.5,"cache_read":0.5,"tier":{"type":"context","size":272000}}],"context_over_200k":{"input":5,"output":22.5,"cache_read":0.5}}},"openai/o3-mini":{"id":"openai/o3-mini","name":"o3-mini","family":"o-mini","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-05","release_date":"2024-12-20","last_updated":"2025-01-29","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":1.1,"output":4.4,"cache_read":0.55}},"openai/gpt-5.5":{"id":"openai/gpt-5.5","name":"GPT-5.5","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-12-01","release_date":"2026-04-23","last_updated":"2026-04-23","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1050000,"input":922000,"output":128000},"cost":{"input":5,"output":30,"cache_read":0.5,"tiers":[{"input":10,"output":45,"cache_read":1,"tier":{"type":"context","size":272000}}],"context_over_200k":{"input":10,"output":45,"cache_read":1}}},"openai/gpt-5.1":{"id":"openai/gpt-5.1","name":"GPT-5.1","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-11-13","last_updated":"2025-11-13","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":1.25,"output":10,"cache_read":0.125}},"openai/gpt-5-nano":{"id":"openai/gpt-5-nano","name":"GPT-5 Nano","family":"gpt-nano","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-05-30","release_date":"2025-08-07","last_updated":"2025-08-07","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":0.05,"output":0.4,"cache_read":0.005}},"openai/gpt-oss-120b":{"id":"openai/gpt-oss-120b","name":"GPT-OSS 120B","family":"gpt-oss","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131000,"output":32768},"cost":{"input":0.15,"output":0.55}},"openai/gpt-4.1":{"id":"openai/gpt-4.1","name":"GPT-4.1","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-04","release_date":"2025-04-14","last_updated":"2025-04-14","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1047576,"output":32768},"cost":{"input":2,"output":8,"cache_read":0.5}},"openai/gpt-5.4-nano":{"id":"openai/gpt-5.4-nano","name":"GPT-5.4 nano","family":"gpt-nano","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-03-17","last_updated":"2026-03-17","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":0.2,"output":1.25,"cache_read":0.02}},"openai/whisper-large-v3":{"id":"openai/whisper-large-v3","name":"Whisper Large v3","family":"whisper","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2023-11-06","last_updated":"2023-11-06","modalities":{"input":["audio"],"output":["text"]},"open_weights":true,"limit":{"context":448,"output":448},"cost":{"input":0.01,"output":0}},"openai/gpt-5.4-mini":{"id":"openai/gpt-5.4-mini","name":"GPT-5.4 mini","family":"gpt-mini","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-03-17","last_updated":"2026-03-17","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":0.75,"output":4.5,"cache_read":0.075}},"openai/gpt-4.1-nano":{"id":"openai/gpt-4.1-nano","name":"GPT-4.1 nano","family":"gpt-nano","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-04","release_date":"2025-04-14","last_updated":"2025-04-14","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1047576,"output":32768},"cost":{"input":0.1,"output":0.4,"cache_read":0.025}}}},"inceptron":{"id":"inceptron","env":["INCEPTRON_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://api.inceptron.io/v1","name":"Inceptron","doc":"https://docs.inceptron.io","models":{"MiniMaxAI/MiniMax-M2.5":{"id":"MiniMaxAI/MiniMax-M2.5","name":"MiniMax M2.5","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-02-12","last_updated":"2026-02-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":196608,"output":196608},"cost":{"input":0.24,"output":0.9,"cache_read":0.03,"cache_write":0}},"zai-org/GLM-5.1-FP8":{"id":"zai-org/GLM-5.1-FP8","name":"GLM 5.1","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-03-27","last_updated":"2026-03-27","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":202752,"output":202752},"cost":{"input":1.4,"output":4.4,"cache_read":0.26,"cache_write":0}},"moonshotai/Kimi-K2.6":{"id":"moonshotai/Kimi-K2.6","name":"Kimi K2.6","family":"kimi-k2.6","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-04-21","last_updated":"2026-04-21","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.78,"output":3.5,"cache_read":0.2,"cache_write":0}},"nvidia/llama-3.3-70b-instruct-fp8":{"id":"nvidia/llama-3.3-70b-instruct-fp8","name":"Llama 3.3 70B Instruct","family":"llama","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2023-12","release_date":"2024-12-06","last_updated":"2024-12-06","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":131072},"cost":{"input":0.12,"output":0.38,"cache_read":0,"cache_write":0}}}},"xpersona":{"id":"xpersona","env":["XPERSONA_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://www.xpersona.co/v1","name":"Xpersona","doc":"https://www.xpersona.co/docs","models":{"xpersona-gpt-5.5":{"id":"xpersona-gpt-5.5","name":"GPT-5.5","family":"gpt","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":false,"knowledge":"2025-12-30","release_date":"2026-05-29","last_updated":"2026-05-29","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":3,"output":18,"reasoning":18,"cache_read":0.3}},"xpersona-frieren-coder":{"id":"xpersona-frieren-coder","name":"Xpersona Frieren 1","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-12-30","release_date":"2026-05-01","last_updated":"2026-05-25","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":384000},"cost":{"input":1.5,"output":6,"reasoning":6,"cache_read":0.15}}}},"perplexity-agent":{"id":"perplexity-agent","env":["PERPLEXITY_API_KEY"],"npm":"@ai-sdk/openai","api":"https://api.perplexity.ai/v1","name":"Perplexity Agent","doc":"https://docs.perplexity.ai/docs/agent-api/models","models":{"anthropic/claude-opus-4-5":{"id":"anthropic/claude-opus-4-5","name":"Claude Opus 4.5","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-11-24","last_updated":"2025-11-24","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":5,"output":25,"cache_read":0.5}},"anthropic/claude-sonnet-4-6":{"id":"anthropic/claude-sonnet-4-6","name":"Claude Sonnet 4.6","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-08-31","release_date":"2026-02-17","last_updated":"2026-02-17","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":3,"output":15,"cache_read":0.3}},"anthropic/claude-haiku-4-5":{"id":"anthropic/claude-haiku-4-5","name":"Claude Haiku 4.5","family":"claude-haiku","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-02-28","release_date":"2025-10-15","last_updated":"2025-10-15","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":1,"output":5,"cache_read":0.1}},"anthropic/claude-sonnet-4-5":{"id":"anthropic/claude-sonnet-4-5","name":"Claude Sonnet 4.5","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-07-31","release_date":"2025-09-29","last_updated":"2025-09-29","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":3,"output":15,"cache_read":0.3}},"anthropic/claude-opus-4-6":{"id":"anthropic/claude-opus-4-6","name":"Claude Opus 4.6","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-05-31","release_date":"2026-02-05","last_updated":"2026-02-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":128000},"cost":{"input":5,"output":25,"cache_read":0.5}},"anthropic/claude-opus-4-7":{"id":"anthropic/claude-opus-4-7","name":"Claude Opus 4.7","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2026-01-31","release_date":"2026-04-16","last_updated":"2026-04-16","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":5,"output":25,"cache_read":0.5}},"xai/grok-4-1-fast-non-reasoning":{"id":"xai/grok-4-1-fast-non-reasoning","name":"Grok 4.1 Fast (Non-Reasoning)","family":"grok","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-07","release_date":"2025-11-19","last_updated":"2025-11-19","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":2000000,"output":30000},"cost":{"input":0.2,"output":0.5,"cache_read":0.05}},"perplexity/sonar":{"id":"perplexity/sonar","name":"Sonar","family":"sonar","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-09-01","release_date":"2024-01-01","last_updated":"2025-09-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":8192},"cost":{"input":0.25,"output":2.5,"cache_read":0.0625}},"nvidia/nemotron-3-super-120b-a12b":{"id":"nvidia/nemotron-3-super-120b-a12b","name":"Nemotron 3 Super 120B","family":"nemotron","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2026-02","release_date":"2026-03-11","last_updated":"2026-03-11","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1000000,"output":32000},"cost":{"input":0.25,"output":2.5}},"google/gemini-3-flash-preview":{"id":"google/gemini-3-flash-preview","name":"Gemini 3 Flash Preview","family":"gemini-flash","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-12-17","last_updated":"2025-12-17","modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":0.5,"output":3,"cache_read":0.05,"tiers":[{"input":0.5,"output":3,"cache_read":0.05,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":0.5,"output":3,"cache_read":0.05}}},"google/gemini-2.5-pro":{"id":"google/gemini-2.5-pro","name":"Gemini 2.5 Pro","family":"gemini-pro","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-03-20","last_updated":"2025-06-05","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":1.25,"output":10,"cache_read":0.125,"tiers":[{"input":2.5,"output":15,"cache_read":0.25,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":2.5,"output":15,"cache_read":0.25}}},"google/gemini-3.1-pro-preview":{"id":"google/gemini-3.1-pro-preview","name":"Gemini 3.1 Pro Preview","family":"gemini-pro","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-02-19","last_updated":"2026-02-19","modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":2,"output":12,"cache_read":0.2,"tiers":[{"input":4,"output":18,"cache_read":0.4,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":4,"output":18,"cache_read":0.4}}},"google/gemini-2.5-flash":{"id":"google/gemini-2.5-flash","name":"Gemini 2.5 Flash","family":"gemini-flash","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-03-20","last_updated":"2025-06-05","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":0.3,"output":2.5,"cache_read":0.03}},"openai/gpt-5-mini":{"id":"openai/gpt-5-mini","name":"GPT-5 Mini","family":"gpt-mini","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2024-05-30","release_date":"2025-08-07","last_updated":"2025-08-07","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":0.25,"output":2,"cache_read":0.025}},"openai/gpt-5.2":{"id":"openai/gpt-5.2","name":"GPT-5.2","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2025-12-11","last_updated":"2025-12-11","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":1.75,"output":14,"cache_read":0.175}},"openai/gpt-5.4":{"id":"openai/gpt-5.4","name":"GPT-5.4","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-03-05","last_updated":"2026-03-05","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1050000,"input":922000,"output":128000},"cost":{"input":2.5,"output":15,"cache_read":0.25}},"openai/gpt-5.5":{"id":"openai/gpt-5.5","name":"GPT-5.5","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2025-12-01","release_date":"2026-04-23","last_updated":"2026-04-23","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1050000,"input":922000,"output":128000},"cost":{"input":5,"output":30,"cache_read":0.5}},"openai/gpt-5.1":{"id":"openai/gpt-5.1","name":"GPT-5.1","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-11-13","last_updated":"2025-11-13","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":1.25,"output":10,"cache_read":0.125}}}},"jiekou":{"id":"jiekou","env":["JIEKOU_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://api.jiekou.ai/openai","name":"Jiekou.AI","doc":"https://docs.jiekou.ai/docs/support/quickstart?utm_source=github_models.dev","models":{"gemini-2.5-flash-lite-preview-06-17":{"id":"gemini-2.5-flash-lite-preview-06-17","name":"gemini-2.5-flash-lite-preview-06-17","family":"gemini-flash-lite","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-01","last_updated":"2026-01","modalities":{"input":["text","video","image","audio"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65535},"cost":{"input":0.09,"output":0.36}},"gpt-5-pro":{"id":"gpt-5-pro","name":"gpt-5-pro","family":"gpt-pro","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-01","last_updated":"2026-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":272000},"cost":{"input":13.5,"output":108}},"gpt-5-mini":{"id":"gpt-5-mini","name":"gpt-5-mini","family":"gpt-mini","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-01","last_updated":"2026-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":0.225,"output":1.8}},"gemini-2.5-flash-preview-05-20":{"id":"gemini-2.5-flash-preview-05-20","name":"gemini-2.5-flash-preview-05-20","family":"gemini-flash","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-01","last_updated":"2026-01","modalities":{"input":["text","image","video","audio"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":200000},"cost":{"input":0.135,"output":3.15}},"gpt-5.2":{"id":"gpt-5.2","name":"gpt-5.2","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-01","last_updated":"2026-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":1.575,"output":12.6}},"gpt-5-chat-latest":{"id":"gpt-5-chat-latest","name":"gpt-5-chat-latest","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-01","last_updated":"2026-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":1.125,"output":9}},"gpt-5-codex":{"id":"gpt-5-codex","name":"gpt-5-codex","family":"gpt-codex","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-01","last_updated":"2026-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":1.125,"output":9}},"o3":{"id":"o3","name":"o3","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-01","last_updated":"2026-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":131072},"cost":{"input":10,"output":40}},"gemini-2.5-pro-preview-06-05":{"id":"gemini-2.5-pro-preview-06-05","name":"gemini-2.5-pro-preview-06-05","family":"gemini-pro","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-01","last_updated":"2026-01","modalities":{"input":["text","image","video","audio"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":200000},"cost":{"input":1.125,"output":9}},"claude-haiku-4-5-20251001":{"id":"claude-haiku-4-5-20251001","name":"claude-haiku-4-5-20251001","family":"claude-haiku","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-01","last_updated":"2026-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":20000,"output":64000},"cost":{"input":0.9,"output":4.5}},"grok-4-0709":{"id":"grok-4-0709","name":"grok-4-0709","family":"grok","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-01","last_updated":"2026-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":8192},"cost":{"input":2.7,"output":13.5}},"grok-4-fast-non-reasoning":{"id":"grok-4-fast-non-reasoning","name":"grok-4-fast-non-reasoning","family":"grok","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-01","last_updated":"2026-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":2000000,"output":2000000},"cost":{"input":0.18,"output":0.45}},"gpt-5.2-pro":{"id":"gpt-5.2-pro","name":"gpt-5.2-pro","family":"gpt-pro","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-01","last_updated":"2026-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":18.9,"output":151.2}},"claude-opus-4-20250514":{"id":"claude-opus-4-20250514","name":"claude-opus-4-20250514","family":"claude-opus","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-01","last_updated":"2026-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":32000},"cost":{"input":13.5,"output":67.5}},"o4-mini":{"id":"o4-mini","name":"o4-mini","family":"o","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-01","last_updated":"2026-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":1.1,"output":4.4}},"o3-mini":{"id":"o3-mini","name":"o3-mini","family":"o","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-01","last_updated":"2026-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":131072},"cost":{"input":1.1,"output":4.4}},"gemini-3-flash-preview":{"id":"gemini-3-flash-preview","name":"gemini-3-flash-preview","family":"gemini-flash","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-01","last_updated":"2026-01","modalities":{"input":["text","image","video","audio"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":0.5,"output":3}},"gpt-5.1":{"id":"gpt-5.1","name":"gpt-5.1","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-02","last_updated":"2026-02","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":1.125,"output":9}},"gpt-5-nano":{"id":"gpt-5-nano","name":"gpt-5-nano","family":"gpt-nano","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-01","last_updated":"2026-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":0.045,"output":0.36}},"gpt-5.1-codex-max":{"id":"gpt-5.1-codex-max","name":"gpt-5.1-codex-max","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-01","last_updated":"2026-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":1.125,"output":9}},"grok-4-fast-reasoning":{"id":"grok-4-fast-reasoning","name":"grok-4-fast-reasoning","family":"grok","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-01","last_updated":"2026-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":2000000,"output":2000000},"cost":{"input":0.18,"output":0.45}},"gpt-5.1-codex-mini":{"id":"gpt-5.1-codex-mini","name":"gpt-5.1-codex-mini","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-01","last_updated":"2026-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":0.225,"output":1.8}},"grok-4-1-fast-non-reasoning":{"id":"grok-4-1-fast-non-reasoning","name":"grok-4-1-fast-non-reasoning","family":"grok","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-01","last_updated":"2026-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":2000000,"output":2000000},"cost":{"input":0.18,"output":0.45}},"gemini-2.5-pro":{"id":"gemini-2.5-pro","name":"gemini-2.5-pro","family":"gemini-pro","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-01","last_updated":"2026-01","modalities":{"input":["text","image","video","audio"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65535},"cost":{"input":1.125,"output":9}},"claude-sonnet-4-5-20250929":{"id":"claude-sonnet-4-5-20250929","name":"claude-sonnet-4-5-20250929","family":"claude-sonnet","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-01","last_updated":"2026-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":2.7,"output":13.5}},"claude-opus-4-1-20250805":{"id":"claude-opus-4-1-20250805","name":"claude-opus-4-1-20250805","family":"claude-opus","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-01","last_updated":"2026-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":32000},"cost":{"input":13.5,"output":67.5}},"gemini-2.5-flash-lite":{"id":"gemini-2.5-flash-lite","name":"gemini-2.5-flash-lite","family":"gemini-flash-lite","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-01","last_updated":"2026-01","modalities":{"input":["text","image","video","audio"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65535},"cost":{"input":0.09,"output":0.36}},"gemini-2.5-flash":{"id":"gemini-2.5-flash","name":"gemini-2.5-flash","family":"gemini-flash","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-01","last_updated":"2026-01","modalities":{"input":["text","image","video","audio"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65535},"cost":{"input":0.27,"output":2.25}},"gemini-2.5-flash-lite-preview-09-2025":{"id":"gemini-2.5-flash-lite-preview-09-2025","name":"gemini-2.5-flash-lite-preview-09-2025","family":"gemini-flash-lite","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-01","last_updated":"2026-01","modalities":{"input":["text","image","video","audio"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":0.09,"output":0.36}},"claude-opus-4-5-20251101":{"id":"claude-opus-4-5-20251101","name":"claude-opus-4-5-20251101","family":"claude-opus","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-01","last_updated":"2026-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":65536},"cost":{"input":4.5,"output":22.5}},"gpt-5.2-codex":{"id":"gpt-5.2-codex","name":"gpt-5.2-codex","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-01","last_updated":"2026-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":1.75,"output":14}},"gpt-5.1-codex":{"id":"gpt-5.1-codex","name":"gpt-5.1-codex","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-01","last_updated":"2026-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":1.125,"output":9}},"claude-sonnet-4-20250514":{"id":"claude-sonnet-4-20250514","name":"claude-sonnet-4-20250514","family":"claude-sonnet","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-01","last_updated":"2026-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":2.7,"output":13.5}},"gemini-3-pro-preview":{"id":"gemini-3-pro-preview","name":"gemini-3-pro-preview","family":"gemini-pro","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-01","last_updated":"2026-01","modalities":{"input":["text","image","video","audio"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":1.8,"output":10.8}},"claude-opus-4-6":{"id":"claude-opus-4-6","name":"claude-opus-4-6","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-05-31","release_date":"2026-02","last_updated":"2026-02","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":5,"output":25}},"grok-4-1-fast-reasoning":{"id":"grok-4-1-fast-reasoning","name":"grok-4-1-fast-reasoning","family":"grok","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-01","last_updated":"2026-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":2000000,"output":2000000},"cost":{"input":0.18,"output":0.45}},"grok-code-fast-1":{"id":"grok-code-fast-1","name":"grok-code-fast-1","family":"grok","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-01","last_updated":"2026-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":256000},"cost":{"input":0.18,"output":1.35}},"deepseek/deepseek-r1-0528":{"id":"deepseek/deepseek-r1-0528","name":"DeepSeek R1 0528","family":"deepseek-thinking","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-01","last_updated":"2026-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":163840,"output":32768},"cost":{"input":0.7,"output":2.5}},"deepseek/deepseek-v3-0324":{"id":"deepseek/deepseek-v3-0324","name":"DeepSeek V3 0324","family":"deepseek","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-01","last_updated":"2026-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":163840,"output":163840},"cost":{"input":0.28,"output":1.14}},"deepseek/deepseek-v3.1":{"id":"deepseek/deepseek-v3.1","name":"DeepSeek V3.1","family":"deepseek","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-01","last_updated":"2026-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":163840,"output":32768},"cost":{"input":0.27,"output":1}},"xiaomimimo/mimo-v2-flash":{"id":"xiaomimimo/mimo-v2-flash","name":"XiaomiMiMo/MiMo-V2-Flash","family":"mimo","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-01","last_updated":"2026-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":131072},"cost":{"input":0,"output":0}},"zai-org/glm-4.7":{"id":"zai-org/glm-4.7","name":"GLM-4.7","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-01","last_updated":"2026-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0.6,"output":2.2}},"zai-org/glm-4.5v":{"id":"zai-org/glm-4.5v","name":"GLM 4.5V","family":"glmv","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-01","last_updated":"2026-01","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":65536,"output":16384},"cost":{"input":0.6,"output":1.8}},"zai-org/glm-4.7-flash":{"id":"zai-org/glm-4.7-flash","name":"GLM-4.7-Flash","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-01","last_updated":"2026-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":200000,"output":128000},"cost":{"input":0.07,"output":0.4}},"zai-org/glm-4.5":{"id":"zai-org/glm-4.5","name":"GLM-4.5","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-01","last_updated":"2026-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":98304},"cost":{"input":0.6,"output":2.2}},"qwen/qwen3-next-80b-a3b-instruct":{"id":"qwen/qwen3-next-80b-a3b-instruct","name":"Qwen3 Next 80B A3B Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-01","last_updated":"2026-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":65536,"output":65536},"cost":{"input":0.15,"output":1.5}},"qwen/qwen3-235b-a22b-fp8":{"id":"qwen/qwen3-235b-a22b-fp8","name":"Qwen3 235B A22B","family":"qwen","attachment":false,"reasoning":true,"tool_call":false,"structured_output":false,"temperature":true,"release_date":"2026-01","last_updated":"2026-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":40960,"output":20000},"cost":{"input":0.2,"output":0.8}},"qwen/qwen3-32b-fp8":{"id":"qwen/qwen3-32b-fp8","name":"Qwen3 32B","family":"qwen","attachment":false,"reasoning":true,"tool_call":false,"structured_output":false,"temperature":true,"release_date":"2026-01","last_updated":"2026-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":40960,"output":20000},"cost":{"input":0.1,"output":0.45}},"qwen/qwen3-coder-next":{"id":"qwen/qwen3-coder-next","name":"qwen/qwen3-coder-next","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-02","last_updated":"2026-02","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":65536},"cost":{"input":0.2,"output":1.5}},"qwen/qwen3-235b-a22b-thinking-2507":{"id":"qwen/qwen3-235b-a22b-thinking-2507","name":"Qwen3 235B A22b Thinking 2507","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-01","last_updated":"2026-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":131072},"cost":{"input":0.3,"output":3}},"qwen/qwen3-coder-480b-a35b-instruct":{"id":"qwen/qwen3-coder-480b-a35b-instruct","name":"Qwen3 Coder 480B A35B Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-01","last_updated":"2026-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":65536},"cost":{"input":0.29,"output":1.2}},"qwen/qwen3-next-80b-a3b-thinking":{"id":"qwen/qwen3-next-80b-a3b-thinking","name":"Qwen3 Next 80B A3B Thinking","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-01","last_updated":"2026-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":65536,"output":65536},"cost":{"input":0.15,"output":1.5}},"qwen/qwen3-235b-a22b-instruct-2507":{"id":"qwen/qwen3-235b-a22b-instruct-2507","name":"Qwen3 235B A22B Instruct 2507","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-01","last_updated":"2026-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":16384},"cost":{"input":0.15,"output":0.8}},"qwen/qwen3-30b-a3b-fp8":{"id":"qwen/qwen3-30b-a3b-fp8","name":"Qwen3 30B A3B","family":"qwen","attachment":false,"reasoning":true,"tool_call":false,"structured_output":false,"temperature":true,"release_date":"2026-01","last_updated":"2026-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":40960,"output":20000},"cost":{"input":0.09,"output":0.45}},"moonshotai/kimi-k2-instruct":{"id":"moonshotai/kimi-k2-instruct","name":"Kimi K2 Instruct","family":"kimi","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-01","last_updated":"2026-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":131072},"cost":{"input":0.57,"output":2.3}},"moonshotai/kimi-k2-0905":{"id":"moonshotai/kimi-k2-0905","name":"Kimi K2 0905","family":"kimi","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-01","last_updated":"2026-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.6,"output":2.5}},"moonshotai/kimi-k2.5":{"id":"moonshotai/kimi-k2.5","name":"Kimi K2.5","family":"kimi","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-01","last_updated":"2026-01","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.6,"output":3}},"baidu/ernie-4.5-vl-424b-a47b":{"id":"baidu/ernie-4.5-vl-424b-a47b","name":"ERNIE 4.5 VL 424B A47B","family":"ernie","attachment":true,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2026-01","last_updated":"2026-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":123000,"output":16000},"cost":{"input":0.42,"output":1.25}},"baidu/ernie-4.5-300b-a47b-paddle":{"id":"baidu/ernie-4.5-300b-a47b-paddle","name":"ERNIE 4.5 300B A47B","family":"ernie","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-01","last_updated":"2026-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":123000,"output":12000},"cost":{"input":0.28,"output":1.1}},"minimaxai/minimax-m1-80k":{"id":"minimaxai/minimax-m1-80k","name":"MiniMax M1","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2026-01","last_updated":"2026-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1000000,"output":40000},"cost":{"input":0.55,"output":2.2}},"minimax/minimax-m2.1":{"id":"minimax/minimax-m2.1","name":"Minimax M2.1","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-01","last_updated":"2026-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0.3,"output":1.2}}}},"abliteration-ai":{"id":"abliteration-ai","env":["ABLIT_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://api.abliteration.ai/v1","name":"abliteration.ai","doc":"https://docs.abliteration.ai/models","models":{"abliterated-model":{"id":"abliterated-model","name":"Abliterated Model","attachment":true,"reasoning":false,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2026-01-06","last_updated":"2026-01-06","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":150000,"input":150000,"output":8192},"cost":{"input":3,"output":3}}}},"minimax-cn":{"id":"minimax-cn","env":["MINIMAX_API_KEY"],"npm":"@ai-sdk/anthropic","api":"https://api.minimaxi.com/anthropic/v1","name":"MiniMax (minimaxi.com)","doc":"https://platform.minimaxi.com/docs/guides/quickstart","models":{"MiniMax-M2.5":{"id":"MiniMax-M2.5","name":"MiniMax-M2.5","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-02-12","last_updated":"2026-02-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0.3,"output":1.2,"cache_read":0.03,"cache_write":0.375}},"MiniMax-M3":{"id":"MiniMax-M3","name":"MiniMax-M3","family":"minimax","attachment":true,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"tool_call":true,"temperature":true,"release_date":"2026-06-01","last_updated":"2026-06-01","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":512000,"output":128000},"cost":{"input":0.6,"output":2.4,"cache_read":0.12}},"MiniMax-M2.5-highspeed":{"id":"MiniMax-M2.5-highspeed","name":"MiniMax-M2.5-highspeed","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-02-13","last_updated":"2026-02-13","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0.6,"output":2.4,"cache_read":0.06,"cache_write":0.375}},"MiniMax-M2.7":{"id":"MiniMax-M2.7","name":"MiniMax-M2.7","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-03-18","last_updated":"2026-03-18","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0.3,"output":1.2,"cache_read":0.06,"cache_write":0.375}},"MiniMax-M2":{"id":"MiniMax-M2","name":"MiniMax-M2","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-10-27","last_updated":"2025-10-27","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":196608,"output":128000},"cost":{"input":0.3,"output":1.2}},"MiniMax-M2.7-highspeed":{"id":"MiniMax-M2.7-highspeed","name":"MiniMax-M2.7-highspeed","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-03-18","last_updated":"2026-03-18","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0.6,"output":2.4,"cache_read":0.06,"cache_write":0.375}},"MiniMax-M2.1":{"id":"MiniMax-M2.1","name":"MiniMax-M2.1","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-12-23","last_updated":"2025-12-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0.3,"output":1.2}}}},"qiniu-ai":{"id":"qiniu-ai","env":["QINIU_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://api.qnaigc.com/v1","name":"Qiniu","doc":"https://developer.qiniu.com/aitokenapi","models":{"qwen3-30b-a3b-instruct-2507":{"id":"qwen3-30b-a3b-instruct-2507","name":"Qwen3 30b A3b Instruct 2507","attachment":false,"reasoning":false,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2026-02-04","last_updated":"2026-02-04","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":32000}},"deepseek-r1-0528":{"id":"deepseek-r1-0528","name":"DeepSeek-R1-0528","attachment":false,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":32000}},"doubao-seed-2.0-code":{"id":"doubao-seed-2.0-code","name":"Doubao Seed 2.0 Code","attachment":true,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2026-02-14","last_updated":"2026-02-14","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":128000}},"gemini-2.5-flash-image":{"id":"gemini-2.5-flash-image","name":"Gemini 2.5 Flash Image","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":true,"release_date":"2025-10-22","last_updated":"2025-10-22","modalities":{"input":["text","image"],"output":["image"]},"open_weights":false,"limit":{"context":32768,"output":8192}},"qwen3-next-80b-a3b-instruct":{"id":"qwen3-next-80b-a3b-instruct","name":"Qwen3 Next 80B A3B Instruct","attachment":false,"reasoning":false,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-09-12","last_updated":"2025-09-12","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":32768}},"qwen3-max-preview":{"id":"qwen3-max-preview","name":"Qwen3 Max Preview","attachment":false,"reasoning":false,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-09-06","last_updated":"2025-09-06","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":64000}},"qwen2.5-vl-72b-instruct":{"id":"qwen2.5-vl-72b-instruct","name":"Qwen 2.5 VL 72B Instruct","attachment":true,"reasoning":false,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text","image","audio","video"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":8192}},"qwen3-32b":{"id":"qwen3-32b","name":"Qwen3 32B","attachment":false,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":40000,"output":4096}},"deepseek-v3-0324":{"id":"deepseek-v3-0324","name":"DeepSeek-V3-0324","attachment":false,"reasoning":false,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16000}},"qwen3-vl-30b-a3b-thinking":{"id":"qwen3-vl-30b-a3b-thinking","name":"Qwen3-Vl 30b A3b Thinking","attachment":true,"reasoning":false,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2026-02-09","last_updated":"2026-02-09","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":32000}},"MiniMax-M1":{"id":"MiniMax-M1","name":"MiniMax M1","attachment":false,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":80000}},"qwen-max-2025-01-25":{"id":"qwen-max-2025-01-25","name":"Qwen2.5-Max-2025-01-25","attachment":false,"reasoning":false,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":4096}},"gemini-2.0-flash-lite":{"id":"gemini-2.0-flash-lite","name":"Gemini 2.0 Flash Lite","attachment":true,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text","image","audio","video"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":8192}},"doubao-seed-2.0-mini":{"id":"doubao-seed-2.0-mini","name":"Doubao Seed 2.0 Mini","attachment":true,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2026-02-14","last_updated":"2026-02-14","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":32000}},"qwen3-235b-a22b":{"id":"qwen3-235b-a22b","name":"Qwen 3 235B A22B","attachment":false,"reasoning":false,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":32000}},"claude-3.7-sonnet":{"id":"claude-3.7-sonnet","name":"Claude 3.7 Sonnet","attachment":true,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":128000}},"qwen3-max":{"id":"qwen3-max","name":"Qwen3 Max","attachment":false,"reasoning":false,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-09-24","last_updated":"2025-09-24","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"output":65536}},"gpt-oss-120b":{"id":"gpt-oss-120b","name":"gpt-oss-120b","attachment":false,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-08-06","last_updated":"2025-08-06","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":4096}},"doubao-1.5-thinking-pro":{"id":"doubao-1.5-thinking-pro","name":"Doubao 1.5 Thinking Pro","attachment":false,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16000}},"claude-3.5-haiku":{"id":"claude-3.5-haiku","name":"Claude 3.5 Haiku","attachment":true,"reasoning":false,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-08-26","last_updated":"2025-08-26","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":8192}},"deepseek-r1":{"id":"deepseek-r1","name":"DeepSeek-R1","attachment":false,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":32000}},"claude-3.5-sonnet":{"id":"claude-3.5-sonnet","name":"Claude 3.5 Sonnet","attachment":true,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-09-09","last_updated":"2025-09-09","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":8200}},"qwen3-235b-a22b-thinking-2507":{"id":"qwen3-235b-a22b-thinking-2507","name":"Qwen3 235B A22B Thinking 2507","attachment":false,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-08-12","last_updated":"2025-08-12","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"output":4096}},"gpt-oss-20b":{"id":"gpt-oss-20b","name":"gpt-oss-20b","attachment":false,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-08-06","last_updated":"2025-08-06","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":4096}},"gemini-2.5-pro":{"id":"gemini-2.5-pro","name":"Gemini 2.5 Pro","attachment":true,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text","image","video","audio"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536}},"doubao-1.5-pro-32k":{"id":"doubao-1.5-pro-32k","name":"Doubao 1.5 Pro 32k","attachment":false,"reasoning":false,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":12000}},"qwen3-30b-a3b":{"id":"qwen3-30b-a3b","name":"Qwen3 30B A3B","attachment":false,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":40000,"output":4096}},"claude-4.0-sonnet":{"id":"claude-4.0-sonnet","name":"Claude 4.0 Sonnet","attachment":true,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000}},"qwen-vl-max-2025-01-25":{"id":"qwen-vl-max-2025-01-25","name":"Qwen VL-MAX-2025-01-25","attachment":true,"reasoning":false,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text","image","audio","video"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":4096}},"qwen3-coder-480b-a35b-instruct":{"id":"qwen3-coder-480b-a35b-instruct","name":"Qwen3 Coder 480B A35B Instruct","attachment":false,"reasoning":false,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-08-14","last_updated":"2025-08-14","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262000,"output":4096}},"gemini-2.5-flash-lite":{"id":"gemini-2.5-flash-lite","name":"Gemini 2.5 Flash Lite","attachment":true,"reasoning":false,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text","image","audio","video"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":64000}},"qwen3-next-80b-a3b-thinking":{"id":"qwen3-next-80b-a3b-thinking","name":"Qwen3 Next 80B A3B Thinking","attachment":false,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-09-12","last_updated":"2025-09-12","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":32768}},"gemini-2.5-flash":{"id":"gemini-2.5-flash","name":"Gemini 2.5 Flash","attachment":true,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text","image","audio","video"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":64000}},"claude-4.5-haiku":{"id":"claude-4.5-haiku","name":"Claude 4.5 Haiku","attachment":true,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-10-16","last_updated":"2025-10-16","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000}},"claude-4.1-opus":{"id":"claude-4.1-opus","name":"Claude 4.1 Opus","attachment":true,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-08-06","last_updated":"2025-08-06","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":32000}},"qwen-turbo":{"id":"qwen-turbo","name":"Qwen-Turbo","attachment":false,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":4096}},"doubao-seed-2.0-pro":{"id":"doubao-seed-2.0-pro","name":"Doubao Seed 2.0 Pro","attachment":true,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2026-02-14","last_updated":"2026-02-14","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":128000}},"doubao-1.5-vision-pro":{"id":"doubao-1.5-vision-pro","name":"Doubao 1.5 Vision Pro","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":true,"release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16000}},"claude-4.5-opus":{"id":"claude-4.5-opus","name":"Claude 4.5 Opus","attachment":true,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-11-25","last_updated":"2025-11-25","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":200000}},"gemini-2.0-flash":{"id":"gemini-2.0-flash","name":"Gemini 2.0 Flash","attachment":true,"reasoning":false,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text","image","audio","video"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":8192}},"claude-4.5-sonnet":{"id":"claude-4.5-sonnet","name":"Claude 4.5 Sonnet","attachment":true,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-09-30","last_updated":"2025-09-30","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000}},"doubao-seed-1.6-flash":{"id":"doubao-seed-1.6-flash","name":"Doubao-Seed 1.6 Flash","attachment":true,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-08-15","last_updated":"2025-08-15","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":32000}},"claude-4.0-opus":{"id":"claude-4.0-opus","name":"Claude 4.0 Opus","attachment":true,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":32000}},"qwen2.5-vl-7b-instruct":{"id":"qwen2.5-vl-7b-instruct","name":"Qwen 2.5 VL 7B Instruct","attachment":true,"reasoning":false,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text","image","audio","video"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":8192}},"gemini-3.0-pro-preview":{"id":"gemini-3.0-pro-preview","name":"Gemini 3.0 Pro Preview","attachment":true,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-11-19","last_updated":"2025-11-19","modalities":{"input":["text","image","video","pdf","audio"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":64000}},"qwen3-30b-a3b-thinking-2507":{"id":"qwen3-30b-a3b-thinking-2507","name":"Qwen3 30b A3b Thinking 2507","attachment":false,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2026-02-04","last_updated":"2026-02-04","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":126000,"output":32000}},"glm-4.5":{"id":"glm-4.5","name":"GLM 4.5","attachment":false,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":98304}},"deepseek-v3":{"id":"deepseek-v3","name":"DeepSeek-V3","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":true,"release_date":"2025-08-13","last_updated":"2025-08-13","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16000}},"qwen3-235b-a22b-instruct-2507":{"id":"qwen3-235b-a22b-instruct-2507","name":"Qwen3 235b A22B Instruct 2507","attachment":false,"reasoning":false,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-08-12","last_updated":"2025-08-12","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"output":64000}},"qwen3.5-397b-a17b":{"id":"qwen3.5-397b-a17b","name":"Qwen3.5 397B A17B","attachment":true,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2026-02-22","last_updated":"2026-02-22","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":64000}},"gemini-3.0-flash-preview":{"id":"gemini-3.0-flash-preview","name":"Gemini 3.0 Flash Preview","attachment":true,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-12-18","last_updated":"2025-12-18","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":64000}},"mimo-v2-flash":{"id":"mimo-v2-flash","name":"Mimo-V2-Flash","family":"mimo","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-12-01","release_date":"2025-12-16","last_updated":"2026-02-04","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"output":256000},"cost":{"input":0.1,"output":0.3,"cache_read":0.01}},"kimi-k2":{"id":"kimi-k2","name":"Kimi K2","attachment":false,"reasoning":false,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":128000}},"doubao-seed-1.6-thinking":{"id":"doubao-seed-1.6-thinking","name":"Doubao-Seed 1.6 Thinking","attachment":true,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-08-15","last_updated":"2025-08-15","modalities":{"input":["image","text","video"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":32000}},"deepseek-v3.1":{"id":"deepseek-v3.1","name":"DeepSeek-V3.1","attachment":false,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-08-19","last_updated":"2025-08-19","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":32000}},"gemini-3.0-pro-image-preview":{"id":"gemini-3.0-pro-image-preview","name":"Gemini 3.0 Pro Image Preview","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":true,"release_date":"2025-11-20","last_updated":"2025-11-20","modalities":{"input":["text","image"],"output":["text","image"]},"open_weights":false,"limit":{"context":32768,"output":8192}},"glm-4.5-air":{"id":"glm-4.5-air","name":"GLM 4.5 Air","attachment":false,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131000,"output":4096}},"kling-v2-6":{"id":"kling-v2-6","name":"Kling-V2 6","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":true,"release_date":"2026-01-13","last_updated":"2026-01-13","modalities":{"input":["text","image","video"],"output":["video"]},"open_weights":false,"limit":{"context":99999999,"output":99999999}},"doubao-seed-1.6":{"id":"doubao-seed-1.6","name":"Doubao-Seed 1.6","attachment":true,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-08-15","last_updated":"2025-08-15","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":32000}},"doubao-seed-2.0-lite":{"id":"doubao-seed-2.0-lite","name":"Doubao Seed 2.0 Lite","attachment":true,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2026-02-14","last_updated":"2026-02-14","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":32000}},"z-ai/glm-4.6":{"id":"z-ai/glm-4.6","name":"Z-AI/GLM 4.6","attachment":false,"reasoning":false,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-10-11","last_updated":"2025-10-11","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":200000}},"z-ai/glm-4.7":{"id":"z-ai/glm-4.7","name":"Z-Ai/GLM 4.7","attachment":false,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-12-23","last_updated":"2025-12-23","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":200000}},"z-ai/autoglm-phone-9b":{"id":"z-ai/autoglm-phone-9b","name":"Z-Ai/Autoglm Phone 9b","attachment":true,"reasoning":false,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-12-23","last_updated":"2025-12-23","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":12800,"output":4096}},"z-ai/glm-5":{"id":"z-ai/glm-5","name":"Z-Ai/GLM 5","attachment":false,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2026-02-12","last_updated":"2026-02-12","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":128000}},"deepseek/deepseek-v3.2-exp-thinking":{"id":"deepseek/deepseek-v3.2-exp-thinking","name":"DeepSeek/DeepSeek-V3.2-Exp-Thinking","attachment":false,"reasoning":true,"tool_call":false,"structured_output":false,"temperature":true,"release_date":"2025-09-29","last_updated":"2025-09-29","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":32000}},"deepseek/deepseek-v3.1-terminus":{"id":"deepseek/deepseek-v3.1-terminus","name":"DeepSeek/DeepSeek-V3.1-Terminus","attachment":false,"reasoning":false,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-09-22","last_updated":"2025-09-22","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":32000}},"deepseek/deepseek-v3.1-terminus-thinking":{"id":"deepseek/deepseek-v3.1-terminus-thinking","name":"DeepSeek/DeepSeek-V3.1-Terminus-Thinking","attachment":false,"reasoning":true,"tool_call":false,"structured_output":false,"temperature":true,"release_date":"2025-09-22","last_updated":"2025-09-22","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":32000}},"deepseek/deepseek-v3.2-251201":{"id":"deepseek/deepseek-v3.2-251201","name":"Deepseek/DeepSeek-V3.2","attachment":false,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-12-01","last_updated":"2025-12-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":32000}},"deepseek/deepseek-v3.2-exp":{"id":"deepseek/deepseek-v3.2-exp","name":"DeepSeek/DeepSeek-V3.2-Exp","attachment":false,"reasoning":false,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-09-29","last_updated":"2025-09-29","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":32000}},"deepseek/deepseek-math-v2":{"id":"deepseek/deepseek-math-v2","name":"Deepseek/Deepseek-Math-V2","attachment":false,"reasoning":true,"tool_call":false,"structured_output":false,"temperature":true,"release_date":"2025-12-04","last_updated":"2025-12-04","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":160000,"output":160000}},"xiaomi/mimo-v2-flash":{"id":"xiaomi/mimo-v2-flash","name":"Xiaomi/Mimo-V2-Flash","family":"mimo","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-12-01","release_date":"2025-12-16","last_updated":"2026-02-04","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"output":256000},"cost":{"input":0.1,"output":0.3,"cache_read":0.01}},"moonshotai/kimi-k2-thinking":{"id":"moonshotai/kimi-k2-thinking","name":"Kimi K2 Thinking","attachment":false,"reasoning":false,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-11-07","last_updated":"2025-11-07","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":100000}},"moonshotai/kimi-k2-0905":{"id":"moonshotai/kimi-k2-0905","name":"Kimi K2 0905","attachment":false,"reasoning":false,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-09-08","last_updated":"2025-09-08","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":100000}},"moonshotai/kimi-k2.5":{"id":"moonshotai/kimi-k2.5","name":"Moonshotai/Kimi-K2.5","attachment":true,"reasoning":false,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2026-01-28","last_updated":"2026-01-28","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":256000}},"x-ai/grok-4.1-fast-non-reasoning":{"id":"x-ai/grok-4.1-fast-non-reasoning","name":"X-Ai/Grok 4.1 Fast Non Reasoning","attachment":true,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-12-19","last_updated":"2025-12-19","modalities":{"input":["text","image","audio","video"],"output":["text"]},"open_weights":false,"limit":{"context":2000000,"output":2000000}},"x-ai/grok-4-fast-non-reasoning":{"id":"x-ai/grok-4-fast-non-reasoning","name":"X-Ai/Grok-4-Fast-Non-Reasoning","attachment":true,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-12-18","last_updated":"2025-12-18","modalities":{"input":["text","image","audio","video"],"output":["text"]},"open_weights":false,"limit":{"context":2000000,"output":2000000}},"x-ai/grok-4.1-fast-reasoning":{"id":"x-ai/grok-4.1-fast-reasoning","name":"X-Ai/Grok 4.1 Fast Reasoning","attachment":true,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-12-19","last_updated":"2025-12-19","modalities":{"input":["text","image","audio","video"],"output":["text"]},"open_weights":false,"limit":{"context":20000000,"output":2000000}},"x-ai/grok-4-fast-reasoning":{"id":"x-ai/grok-4-fast-reasoning","name":"X-Ai/Grok-4-Fast-Reasoning","attachment":true,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-12-18","last_updated":"2025-12-18","modalities":{"input":["text","image","audio","video"],"output":["text"]},"open_weights":false,"limit":{"context":2000000,"output":2000000}},"x-ai/grok-4.1-fast":{"id":"x-ai/grok-4.1-fast","name":"x-AI/Grok-4.1-Fast","attachment":false,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-11-20","last_updated":"2025-11-20","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":2000000,"output":2000000}},"x-ai/grok-code-fast-1":{"id":"x-ai/grok-code-fast-1","name":"x-AI/Grok-Code-Fast 1","attachment":false,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-09-02","last_updated":"2025-09-02","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":10000}},"x-ai/grok-4-fast":{"id":"x-ai/grok-4-fast","name":"x-AI/Grok-4-Fast","attachment":true,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-09-20","last_updated":"2025-09-20","modalities":{"input":["text","image","audio","video"],"output":["text"]},"open_weights":false,"limit":{"context":2000000,"output":2000000}},"stepfun-ai/gelab-zero-4b-preview":{"id":"stepfun-ai/gelab-zero-4b-preview","name":"Stepfun-Ai/Gelab Zero 4b Preview","attachment":true,"reasoning":false,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-12-23","last_updated":"2025-12-23","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":8192,"output":4096}},"stepfun/step-3.5-flash":{"id":"stepfun/step-3.5-flash","name":"Stepfun/Step-3.5 Flash","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":true,"release_date":"2026-02-02","last_updated":"2026-02-02","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":64000,"output":4096}},"meituan/longcat-flash-lite":{"id":"meituan/longcat-flash-lite","name":"Meituan/Longcat-Flash-Lite","attachment":false,"reasoning":false,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2026-02-06","last_updated":"2026-02-06","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":320000}},"meituan/longcat-flash-chat":{"id":"meituan/longcat-flash-chat","name":"Meituan/Longcat-Flash-Chat","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":true,"release_date":"2025-11-05","last_updated":"2025-11-05","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":131072}},"openai/gpt-5.2":{"id":"openai/gpt-5.2","name":"OpenAI/GPT-5.2","attachment":true,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-12-11","last_updated":"2025-12-11","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000}},"openai/gpt-5":{"id":"openai/gpt-5","name":"OpenAI/GPT-5","attachment":false,"reasoning":false,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-09-19","last_updated":"2025-09-19","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000}},"minimax/minimax-m2.1":{"id":"minimax/minimax-m2.1","name":"Minimax/Minimax-M2.1","attachment":false,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-12-23","last_updated":"2025-12-23","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":204800,"output":128000}},"minimax/minimax-m2":{"id":"minimax/minimax-m2","name":"Minimax/Minimax-M2","attachment":false,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-10-28","last_updated":"2025-10-28","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":128000}},"minimax/minimax-m2.5":{"id":"minimax/minimax-m2.5","name":"Minimax/Minimax-M2.5","attachment":false,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2026-02-12","last_updated":"2026-02-12","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":204800,"output":128000}},"minimax/minimax-m2.5-highspeed":{"id":"minimax/minimax-m2.5-highspeed","name":"Minimax/Minimax-M2.5 Highspeed","attachment":false,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2026-02-14","last_updated":"2026-02-14","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":204800,"output":128000}}}},"morph":{"id":"morph","env":["MORPH_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://api.morphllm.com/v1","name":"Morph","doc":"https://docs.morphllm.com/api-reference/introduction","models":{"morph-v3-fast":{"id":"morph-v3-fast","name":"Morph v3 Fast","family":"morph","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2024-08-15","last_updated":"2024-08-15","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":16000,"output":16000},"cost":{"input":0.8,"output":1.2}},"morph-v3-large":{"id":"morph-v3-large","name":"Morph v3 Large","family":"morph","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2024-08-15","last_updated":"2024-08-15","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":32000,"output":32000},"cost":{"input":0.9,"output":1.9}},"auto":{"id":"auto","name":"Auto","family":"auto","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2024-06-01","last_updated":"2024-06-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":32000,"output":32000},"cost":{"input":0.85,"output":1.55}}}},"xiaomi-token-plan-sgp":{"id":"xiaomi-token-plan-sgp","env":["XIAOMI_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://token-plan-sgp.xiaomimimo.com/v1","name":"Xiaomi Token Plan (Singapore)","doc":"https://platform.xiaomimimo.com/#/docs","models":{"mimo-v2.5-pro":{"id":"mimo-v2.5-pro","name":"MiMo-V2.5-Pro","family":"mimo","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2024-12","release_date":"2026-04-22","last_updated":"2026-04-22","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1048576,"output":131072},"cost":{"input":0,"output":0,"cache_read":0}},"mimo-v2.5-tts":{"id":"mimo-v2.5-tts","name":"MiMo-V2.5-TTS","family":"mimo","attachment":false,"reasoning":false,"tool_call":false,"release_date":"2026-04-22","last_updated":"2026-04-22","modalities":{"input":["text"],"output":["audio"]},"open_weights":true,"limit":{"context":8192,"output":8192},"cost":{"input":0,"output":0}},"mimo-v2.5":{"id":"mimo-v2.5","name":"MiMo-V2.5","family":"mimo","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2024-12","release_date":"2026-04-22","last_updated":"2026-04-22","modalities":{"input":["text","image","audio","video"],"output":["text"]},"open_weights":true,"limit":{"context":1048576,"output":131072},"cost":{"input":0,"output":0,"cache_read":0}},"mimo-v2-pro":{"id":"mimo-v2-pro","name":"MiMo-V2-Pro","family":"mimo","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2024-12","release_date":"2026-03-18","last_updated":"2026-03-18","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":131072},"cost":{"input":0,"output":0,"cache_read":0}},"mimo-v2.5-tts-voiceclone":{"id":"mimo-v2.5-tts-voiceclone","name":"MiMo-V2.5-TTS-VoiceClone","family":"mimo","attachment":false,"reasoning":false,"tool_call":false,"release_date":"2026-04-22","last_updated":"2026-04-22","modalities":{"input":["text"],"output":["audio"]},"open_weights":true,"limit":{"context":8192,"output":8192},"cost":{"input":0,"output":0}},"mimo-v2.5-tts-voicedesign":{"id":"mimo-v2.5-tts-voicedesign","name":"MiMo-V2.5-TTS-VoiceDesign","family":"mimo","attachment":false,"reasoning":false,"tool_call":false,"release_date":"2026-04-22","last_updated":"2026-04-22","modalities":{"input":["text"],"output":["audio"]},"open_weights":true,"limit":{"context":8192,"output":8192},"cost":{"input":0,"output":0}},"mimo-v2-omni":{"id":"mimo-v2-omni","name":"MiMo-V2-Omni","family":"mimo","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2024-12","release_date":"2026-03-18","last_updated":"2026-03-18","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"output":131072},"cost":{"input":0,"output":0,"cache_read":0}},"mimo-v2-tts":{"id":"mimo-v2-tts","name":"MiMo-V2-TTS","family":"mimo","attachment":false,"reasoning":false,"tool_call":false,"release_date":"2026-03-18","last_updated":"2026-03-18","modalities":{"input":["text"],"output":["audio"]},"open_weights":true,"limit":{"context":8192,"output":8192},"cost":{"input":0,"output":0}}}},"fastrouter":{"id":"fastrouter","env":["FASTROUTER_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://go.fastrouter.ai/api/v1","name":"FastRouter","doc":"https://fastrouter.ai/models","models":{"z-ai/glm-5":{"id":"z-ai/glm-5","name":"GLM-5","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"release_date":"2026-02-11","last_updated":"2026-02-11","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0.95,"output":3.15}},"anthropic/claude-sonnet-4":{"id":"anthropic/claude-sonnet-4","name":"Claude Sonnet 4","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-05-22","last_updated":"2025-05-22","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75}},"anthropic/claude-opus-4.1":{"id":"anthropic/claude-opus-4.1","name":"Claude Opus 4.1","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":32000},"cost":{"input":15,"output":75,"cache_read":1.5,"cache_write":18.75}},"qwen/qwen3-coder":{"id":"qwen/qwen3-coder","name":"Qwen3 Coder","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-07-23","last_updated":"2025-07-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":66536},"cost":{"input":0.3,"output":1.2}},"moonshotai/kimi-k2":{"id":"moonshotai/kimi-k2","name":"Kimi K2","family":"kimi","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2025-07-11","last_updated":"2025-07-11","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":32768},"cost":{"input":0.55,"output":2.2}},"x-ai/grok-4":{"id":"x-ai/grok-4","name":"Grok 4","family":"grok","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-07","release_date":"2025-07-09","last_updated":"2025-07-09","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":64000},"cost":{"input":3,"output":15,"cache_read":0.75,"cache_write":15}},"deepseek-ai/deepseek-r1-distill-llama-70b":{"id":"deepseek-ai/deepseek-r1-distill-llama-70b","name":"DeepSeek R1 Distill Llama 70B","family":"deepseek-thinking","attachment":false,"reasoning":true,"tool_call":false,"temperature":true,"knowledge":"2024-10","release_date":"2025-01-23","last_updated":"2025-01-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":131072},"cost":{"input":0.03,"output":0.14}},"google/gemini-2.5-pro":{"id":"google/gemini-2.5-pro","name":"Gemini 2.5 Pro","family":"gemini-pro","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-06-17","last_updated":"2025-06-17","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":1.25,"output":10,"cache_read":0.31}},"google/gemini-2.5-flash":{"id":"google/gemini-2.5-flash","name":"Gemini 2.5 Flash","family":"gemini-flash","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-06-17","last_updated":"2025-06-17","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":0.3,"output":2.5,"cache_read":0.0375}},"openai/gpt-5-mini":{"id":"openai/gpt-5-mini","name":"GPT-5 Mini","family":"gpt-mini","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-10-01","release_date":"2025-08-07","last_updated":"2025-08-07","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":0.25,"output":2,"cache_read":0.025}},"openai/gpt-5":{"id":"openai/gpt-5","name":"GPT-5","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-10-01","release_date":"2025-08-07","last_updated":"2025-08-07","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":1.25,"output":10,"cache_read":0.125}},"openai/gpt-5-nano":{"id":"openai/gpt-5-nano","name":"GPT-5 Nano","family":"gpt-nano","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-10-01","release_date":"2025-08-07","last_updated":"2025-08-07","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":0.05,"output":0.4,"cache_read":0.005}},"openai/gpt-oss-120b":{"id":"openai/gpt-oss-120b","name":"GPT OSS 120B","family":"gpt-oss","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":32768},"cost":{"input":0.15,"output":0.6}},"openai/gpt-oss-20b":{"id":"openai/gpt-oss-20b","name":"GPT OSS 20B","family":"gpt-oss","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":65536},"cost":{"input":0.05,"output":0.2}},"openai/gpt-4.1":{"id":"openai/gpt-4.1","name":"GPT-4.1","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-04","release_date":"2025-04-14","last_updated":"2025-04-14","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1047576,"output":32768},"cost":{"input":2,"output":8,"cache_read":0.5}}}},"siliconflow":{"id":"siliconflow","env":["SILICONFLOW_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://api.siliconflow.com/v1","name":"SiliconFlow","doc":"https://cloud.siliconflow.com/models","models":{"THUDM/GLM-Z1-32B-0414":{"id":"THUDM/GLM-Z1-32B-0414","name":"THUDM/GLM-Z1-32B-0414","family":"glm-z","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-04-18","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131000,"output":131000},"cost":{"input":0.14,"output":0.57}},"THUDM/GLM-Z1-9B-0414":{"id":"THUDM/GLM-Z1-9B-0414","name":"THUDM/GLM-Z1-9B-0414","family":"glm-z","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-04-18","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131000,"output":131000},"cost":{"input":0.086,"output":0.086}},"THUDM/GLM-4-32B-0414":{"id":"THUDM/GLM-4-32B-0414","name":"THUDM/GLM-4-32B-0414","family":"glm","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-04-18","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":33000,"output":33000},"cost":{"input":0.27,"output":0.27}},"THUDM/GLM-4-9B-0414":{"id":"THUDM/GLM-4-9B-0414","name":"THUDM/GLM-4-9B-0414","family":"glm","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-04-18","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":33000,"output":33000},"cost":{"input":0.086,"output":0.086}},"MiniMaxAI/MiniMax-M2.5":{"id":"MiniMaxAI/MiniMax-M2.5","name":"MiniMaxAI/MiniMax-M2.5","family":"minimax","attachment":false,"reasoning":false,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2026-02-15","last_updated":"2026-02-15","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":197000,"output":131000},"cost":{"input":0.3,"output":1.2}},"MiniMaxAI/MiniMax-M2.1":{"id":"MiniMaxAI/MiniMax-M2.1","name":"MiniMaxAI/MiniMax-M2.1","family":"minimax","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-12-23","last_updated":"2025-12-23","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":197000,"output":131000},"cost":{"input":0.3,"output":1.2}},"inclusionAI/Ling-mini-2.0":{"id":"inclusionAI/Ling-mini-2.0","name":"inclusionAI/Ling-mini-2.0","family":"ling","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-09-10","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131000,"output":131000},"cost":{"input":0.07,"output":0.28}},"inclusionAI/Ling-flash-2.0":{"id":"inclusionAI/Ling-flash-2.0","name":"inclusionAI/Ling-flash-2.0","family":"ling","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-09-18","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131000,"output":131000},"cost":{"input":0.14,"output":0.57}},"inclusionAI/Ring-flash-2.0":{"id":"inclusionAI/Ring-flash-2.0","name":"inclusionAI/Ring-flash-2.0","family":"ring","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-09-29","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131000,"output":131000},"cost":{"input":0.14,"output":0.57}},"zai-org/GLM-4.7":{"id":"zai-org/GLM-4.7","name":"zai-org/GLM-4.7","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2025-12-22","last_updated":"2025-12-22","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":205000,"output":205000},"cost":{"input":0.6,"output":2.2}},"zai-org/GLM-4.5-Air":{"id":"zai-org/GLM-4.5-Air","name":"zai-org/GLM-4.5-Air","family":"glm-air","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-07-28","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131000,"output":131000},"cost":{"input":0.14,"output":0.86}},"zai-org/GLM-5":{"id":"zai-org/GLM-5","name":"zai-org/GLM-5","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-02-12","last_updated":"2026-02-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":205000,"output":205000},"cost":{"input":1,"output":3.2}},"zai-org/GLM-5.1":{"id":"zai-org/GLM-5.1","name":"zai-org/GLM-5.1","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-04-08","last_updated":"2026-04-08","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":205000,"output":205000},"cost":{"input":1.4,"output":4.4,"cache_write":0}},"zai-org/GLM-4.5V":{"id":"zai-org/GLM-4.5V","name":"zai-org/GLM-4.5V","family":"glm","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-08-13","last_updated":"2025-11-25","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":66000,"output":66000},"cost":{"input":0.14,"output":0.86}},"zai-org/GLM-5V-Turbo":{"id":"zai-org/GLM-5V-Turbo","name":"zai-org/GLM-5V-Turbo","family":"glm","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"release_date":"2026-04-01","last_updated":"2026-04-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":131072},"cost":{"input":1.2,"output":4,"cache_write":0}},"zai-org/GLM-4.5":{"id":"zai-org/GLM-4.5","name":"zai-org/GLM-4.5","family":"glm","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-07-28","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131000,"output":131000},"cost":{"input":0.4,"output":2}},"zai-org/GLM-4.6V":{"id":"zai-org/GLM-4.6V","name":"zai-org/GLM-4.6V","family":"glm","attachment":true,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-12-07","last_updated":"2025-12-07","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":131000,"output":131000},"cost":{"input":0.3,"output":0.9}},"zai-org/GLM-4.6":{"id":"zai-org/GLM-4.6","name":"zai-org/GLM-4.6","family":"glm","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-10-04","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":205000,"output":205000},"cost":{"input":0.5,"output":1.9}},"moonshotai/Kimi-K2.6":{"id":"moonshotai/Kimi-K2.6","name":"moonshotai/Kimi-K2.6","family":"kimi","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-04-21","last_updated":"2026-04-21","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262000,"output":262000},"cost":{"input":0.95,"output":4,"cache_read":0.16}},"moonshotai/Kimi-K2-Instruct-0905":{"id":"moonshotai/Kimi-K2-Instruct-0905","name":"moonshotai/Kimi-K2-Instruct-0905","family":"kimi","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-09-08","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262000,"output":262000},"cost":{"input":0.4,"output":2}},"moonshotai/Kimi-K2.5":{"id":"moonshotai/Kimi-K2.5","name":"moonshotai/Kimi-K2.5","family":"kimi","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-01-27","last_updated":"2026-01-27","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262000,"output":262000},"cost":{"input":0.45,"output":2.25}},"moonshotai/Kimi-K2-Instruct":{"id":"moonshotai/Kimi-K2-Instruct","name":"moonshotai/Kimi-K2-Instruct","family":"kimi","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-07-13","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131000,"output":131000},"cost":{"input":0.58,"output":2.29}},"moonshotai/Kimi-K2-Thinking":{"id":"moonshotai/Kimi-K2-Thinking","name":"moonshotai/Kimi-K2-Thinking","family":"kimi-thinking","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-11-07","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262000,"output":262000},"cost":{"input":0.55,"output":2.5}},"meta-llama/Meta-Llama-3.1-8B-Instruct":{"id":"meta-llama/Meta-Llama-3.1-8B-Instruct","name":"meta-llama/Meta-Llama-3.1-8B-Instruct","family":"llama","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-04-23","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":33000,"output":4000},"cost":{"input":0.06,"output":0.06}},"ByteDance-Seed/Seed-OSS-36B-Instruct":{"id":"ByteDance-Seed/Seed-OSS-36B-Instruct","name":"ByteDance-Seed/Seed-OSS-36B-Instruct","family":"seed","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-09-04","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262000,"output":262000},"cost":{"input":0.21,"output":0.57}},"baidu/ERNIE-4.5-300B-A47B":{"id":"baidu/ERNIE-4.5-300B-A47B","name":"baidu/ERNIE-4.5-300B-A47B","family":"ernie","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-07-02","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131000,"output":131000},"cost":{"input":0.28,"output":1.1}},"deepseek-ai/DeepSeek-V3.1":{"id":"deepseek-ai/DeepSeek-V3.1","name":"deepseek-ai/DeepSeek-V3.1","family":"deepseek","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-08-25","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":164000,"output":164000},"cost":{"input":0.27,"output":1}},"deepseek-ai/deepseek-vl2":{"id":"deepseek-ai/deepseek-vl2","name":"deepseek-ai/deepseek-vl2","family":"deepseek","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2024-12-13","last_updated":"2025-11-25","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":4000,"output":4000},"cost":{"input":0.15,"output":0.15}},"deepseek-ai/DeepSeek-V3.1-Terminus":{"id":"deepseek-ai/DeepSeek-V3.1-Terminus","name":"deepseek-ai/DeepSeek-V3.1-Terminus","family":"deepseek","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-09-29","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":164000,"output":164000},"cost":{"input":0.27,"output":1}},"deepseek-ai/DeepSeek-V3.2":{"id":"deepseek-ai/DeepSeek-V3.2","name":"deepseek-ai/DeepSeek-V3.2","family":"deepseek","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-12-03","last_updated":"2025-12-03","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":164000,"output":164000},"cost":{"input":0.27,"output":0.42}},"deepseek-ai/DeepSeek-R1-Distill-Qwen-32B":{"id":"deepseek-ai/DeepSeek-R1-Distill-Qwen-32B","name":"deepseek-ai/DeepSeek-R1-Distill-Qwen-32B","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-01-20","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131000,"output":131000},"cost":{"input":0.18,"output":0.18}},"deepseek-ai/DeepSeek-R1":{"id":"deepseek-ai/DeepSeek-R1","name":"deepseek-ai/DeepSeek-R1","family":"deepseek-thinking","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-05-28","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":164000,"output":164000},"cost":{"input":0.5,"output":2.18}},"deepseek-ai/DeepSeek-R1-Distill-Qwen-14B":{"id":"deepseek-ai/DeepSeek-R1-Distill-Qwen-14B","name":"deepseek-ai/DeepSeek-R1-Distill-Qwen-14B","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-01-20","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131000,"output":131000},"cost":{"input":0.1,"output":0.1}},"deepseek-ai/DeepSeek-V3.2-Exp":{"id":"deepseek-ai/DeepSeek-V3.2-Exp","name":"deepseek-ai/DeepSeek-V3.2-Exp","family":"deepseek","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-10-10","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":164000,"output":164000},"cost":{"input":0.27,"output":0.41}},"deepseek-ai/DeepSeek-V3":{"id":"deepseek-ai/DeepSeek-V3","name":"deepseek-ai/DeepSeek-V3","family":"deepseek","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2024-12-26","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":164000,"output":164000},"cost":{"input":0.25,"output":1}},"deepseek-ai/deepseek-v4-flash":{"id":"deepseek-ai/deepseek-v4-flash","name":"DeepSeek V4 Flash","family":"deepseek-flash","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-05","release_date":"2026-04-24","last_updated":"2026-04-24","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1000000,"output":384000},"cost":{"input":0.14,"output":0.28,"cache_read":0.028}},"deepseek-ai/deepseek-v4-pro":{"id":"deepseek-ai/deepseek-v4-pro","name":"DeepSeek V4 Pro","family":"deepseek-thinking","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-05","release_date":"2026-04-24","last_updated":"2026-04-24","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1000000,"output":384000},"cost":{"input":1.74,"output":3.48,"cache_read":0.145}},"stepfun-ai/Step-3.5-Flash":{"id":"stepfun-ai/Step-3.5-Flash","name":"stepfun-ai/Step-3.5-Flash","family":"step","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-02-11","last_updated":"2026-02-11","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262000,"output":262000},"cost":{"input":0.1,"output":0.3}},"nex-agi/DeepSeek-V3.1-Nex-N1":{"id":"nex-agi/DeepSeek-V3.1-Nex-N1","name":"nex-agi/DeepSeek-V3.1-Nex-N1","family":"deepseek","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-01-01","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131000,"output":131000},"cost":{"input":0.5,"output":2}},"tencent/Hunyuan-A13B-Instruct":{"id":"tencent/Hunyuan-A13B-Instruct","name":"tencent/Hunyuan-A13B-Instruct","family":"hunyuan","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-06-30","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131000,"output":131000},"cost":{"input":0.14,"output":0.57}},"tencent/Hunyuan-MT-7B":{"id":"tencent/Hunyuan-MT-7B","name":"tencent/Hunyuan-MT-7B","family":"hunyuan","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-09-18","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":33000,"output":33000},"cost":{"input":0,"output":0}},"Qwen/Qwen3-VL-235B-A22B-Thinking":{"id":"Qwen/Qwen3-VL-235B-A22B-Thinking","name":"Qwen/Qwen3-VL-235B-A22B-Thinking","family":"qwen","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-10-04","last_updated":"2025-11-25","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":262000,"output":262000},"cost":{"input":0.45,"output":3.5}},"Qwen/Qwen3-Coder-480B-A35B-Instruct":{"id":"Qwen/Qwen3-Coder-480B-A35B-Instruct","name":"Qwen/Qwen3-Coder-480B-A35B-Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-07-31","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262000,"output":262000},"cost":{"input":0.25,"output":1}},"Qwen/Qwen3-VL-8B-Instruct":{"id":"Qwen/Qwen3-VL-8B-Instruct","name":"Qwen/Qwen3-VL-8B-Instruct","family":"qwen","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-10-15","last_updated":"2025-11-25","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":262000,"output":262000},"cost":{"input":0.18,"output":0.68}},"Qwen/Qwen3-VL-8B-Thinking":{"id":"Qwen/Qwen3-VL-8B-Thinking","name":"Qwen/Qwen3-VL-8B-Thinking","family":"qwen","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-10-15","last_updated":"2025-11-25","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":262000,"output":262000},"cost":{"input":0.18,"output":2}},"Qwen/Qwen3-Omni-30B-A3B-Captioner":{"id":"Qwen/Qwen3-Omni-30B-A3B-Captioner","name":"Qwen/Qwen3-Omni-30B-A3B-Captioner","family":"qwen","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-10-04","last_updated":"2025-11-25","modalities":{"input":["audio"],"output":["text"]},"open_weights":false,"limit":{"context":66000,"output":66000},"cost":{"input":0.1,"output":0.4}},"Qwen/QwQ-32B":{"id":"Qwen/QwQ-32B","name":"Qwen/QwQ-32B","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-03-06","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131000,"output":131000},"cost":{"input":0.15,"output":0.58}},"Qwen/Qwen2.5-72B-Instruct":{"id":"Qwen/Qwen2.5-72B-Instruct","name":"Qwen/Qwen2.5-72B-Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2024-09-18","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":33000,"output":4000},"cost":{"input":0.59,"output":0.59}},"Qwen/Qwen3-Omni-30B-A3B-Instruct":{"id":"Qwen/Qwen3-Omni-30B-A3B-Instruct","name":"Qwen/Qwen3-Omni-30B-A3B-Instruct","family":"qwen","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-10-04","last_updated":"2025-11-25","modalities":{"input":["text","image","audio"],"output":["text"]},"open_weights":false,"limit":{"context":66000,"output":66000},"cost":{"input":0.1,"output":0.4}},"Qwen/Qwen3-30B-A3B-Instruct-2507":{"id":"Qwen/Qwen3-30B-A3B-Instruct-2507","name":"Qwen/Qwen3-30B-A3B-Instruct-2507","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-07-30","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262000,"output":262000},"cost":{"input":0.09,"output":0.3}},"Qwen/Qwen3-235B-A22B":{"id":"Qwen/Qwen3-235B-A22B","name":"Qwen/Qwen3-235B-A22B","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-04-30","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131000,"output":131000},"cost":{"input":0.35,"output":1.42}},"Qwen/Qwen3-14B":{"id":"Qwen/Qwen3-14B","name":"Qwen/Qwen3-14B","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-04-30","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131000,"output":131000},"cost":{"input":0.07,"output":0.28}},"Qwen/Qwen3-VL-32B-Thinking":{"id":"Qwen/Qwen3-VL-32B-Thinking","name":"Qwen/Qwen3-VL-32B-Thinking","family":"qwen","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-10-21","last_updated":"2025-11-25","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":262000,"output":262000},"cost":{"input":0.2,"output":1.5}},"Qwen/Qwen2.5-72B-Instruct-128K":{"id":"Qwen/Qwen2.5-72B-Instruct-128K","name":"Qwen/Qwen2.5-72B-Instruct-128K","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2024-09-18","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131000,"output":4000},"cost":{"input":0.59,"output":0.59}},"Qwen/Qwen3-8B":{"id":"Qwen/Qwen3-8B","name":"Qwen/Qwen3-8B","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-04-30","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131000,"output":131000},"cost":{"input":0.06,"output":0.06}},"Qwen/Qwen3-235B-A22B-Thinking-2507":{"id":"Qwen/Qwen3-235B-A22B-Thinking-2507","name":"Qwen/Qwen3-235B-A22B-Thinking-2507","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-07-28","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262000,"output":262000},"cost":{"input":0.13,"output":0.6}},"Qwen/Qwen3-Coder-30B-A3B-Instruct":{"id":"Qwen/Qwen3-Coder-30B-A3B-Instruct","name":"Qwen/Qwen3-Coder-30B-A3B-Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-08-01","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262000,"output":262000},"cost":{"input":0.07,"output":0.28}},"Qwen/Qwen3-Omni-30B-A3B-Thinking":{"id":"Qwen/Qwen3-Omni-30B-A3B-Thinking","name":"Qwen/Qwen3-Omni-30B-A3B-Thinking","family":"qwen","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-10-04","last_updated":"2025-11-25","modalities":{"input":["text","image","audio"],"output":["text"]},"open_weights":false,"limit":{"context":66000,"output":66000},"cost":{"input":0.1,"output":0.4}},"Qwen/Qwen3-235B-A22B-Instruct-2507":{"id":"Qwen/Qwen3-235B-A22B-Instruct-2507","name":"Qwen/Qwen3-235B-A22B-Instruct-2507","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-07-23","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262000,"output":262000},"cost":{"input":0.09,"output":0.6}},"Qwen/Qwen3-VL-32B-Instruct":{"id":"Qwen/Qwen3-VL-32B-Instruct","name":"Qwen/Qwen3-VL-32B-Instruct","family":"qwen","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-10-21","last_updated":"2025-11-25","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":262000,"output":262000},"cost":{"input":0.2,"output":0.6}},"Qwen/Qwen3-Next-80B-A3B-Instruct":{"id":"Qwen/Qwen3-Next-80B-A3B-Instruct","name":"Qwen/Qwen3-Next-80B-A3B-Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-09-18","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262000,"output":262000},"cost":{"input":0.14,"output":1.4}},"Qwen/Qwen2.5-14B-Instruct":{"id":"Qwen/Qwen2.5-14B-Instruct","name":"Qwen/Qwen2.5-14B-Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2024-09-18","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":33000,"output":4000},"cost":{"input":0.1,"output":0.1}},"Qwen/Qwen3-VL-30B-A3B-Instruct":{"id":"Qwen/Qwen3-VL-30B-A3B-Instruct","name":"Qwen/Qwen3-VL-30B-A3B-Instruct","family":"qwen","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-10-05","last_updated":"2025-11-25","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":262000,"output":262000},"cost":{"input":0.29,"output":1}},"Qwen/Qwen2.5-Coder-32B-Instruct":{"id":"Qwen/Qwen2.5-Coder-32B-Instruct","name":"Qwen/Qwen2.5-Coder-32B-Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2024-11-11","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":33000,"output":4000},"cost":{"input":0.18,"output":0.18}},"Qwen/Qwen2.5-VL-72B-Instruct":{"id":"Qwen/Qwen2.5-VL-72B-Instruct","name":"Qwen/Qwen2.5-VL-72B-Instruct","family":"qwen","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-01-28","last_updated":"2025-11-25","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":131000,"output":4000},"cost":{"input":0.59,"output":0.59}},"Qwen/Qwen2.5-VL-32B-Instruct":{"id":"Qwen/Qwen2.5-VL-32B-Instruct","name":"Qwen/Qwen2.5-VL-32B-Instruct","family":"qwen","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-03-24","last_updated":"2025-11-25","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":131000,"output":131000},"cost":{"input":0.27,"output":0.27}},"Qwen/Qwen3-32B":{"id":"Qwen/Qwen3-32B","name":"Qwen/Qwen3-32B","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-04-30","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131000,"output":131000},"cost":{"input":0.14,"output":0.57}},"Qwen/Qwen2.5-32B-Instruct":{"id":"Qwen/Qwen2.5-32B-Instruct","name":"Qwen/Qwen2.5-32B-Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2024-09-19","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":33000,"output":4000},"cost":{"input":0.18,"output":0.18}},"Qwen/Qwen2.5-VL-7B-Instruct":{"id":"Qwen/Qwen2.5-VL-7B-Instruct","name":"Qwen/Qwen2.5-VL-7B-Instruct","family":"qwen","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-01-28","last_updated":"2025-11-25","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":33000,"output":4000},"cost":{"input":0.05,"output":0.05}},"Qwen/Qwen3-30B-A3B-Thinking-2507":{"id":"Qwen/Qwen3-30B-A3B-Thinking-2507","name":"Qwen/Qwen3-30B-A3B-Thinking-2507","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-07-31","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262000,"output":131000},"cost":{"input":0.09,"output":0.3}},"Qwen/Qwen3-VL-30B-A3B-Thinking":{"id":"Qwen/Qwen3-VL-30B-A3B-Thinking","name":"Qwen/Qwen3-VL-30B-A3B-Thinking","family":"qwen","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-10-11","last_updated":"2025-11-25","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":262000,"output":262000},"cost":{"input":0.29,"output":1}},"Qwen/Qwen2.5-7B-Instruct":{"id":"Qwen/Qwen2.5-7B-Instruct","name":"Qwen/Qwen2.5-7B-Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2024-09-18","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":33000,"output":4000},"cost":{"input":0.05,"output":0.05}},"Qwen/Qwen3-Next-80B-A3B-Thinking":{"id":"Qwen/Qwen3-Next-80B-A3B-Thinking","name":"Qwen/Qwen3-Next-80B-A3B-Thinking","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-09-25","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262000,"output":262000},"cost":{"input":0.14,"output":0.57}},"Qwen/Qwen3-VL-235B-A22B-Instruct":{"id":"Qwen/Qwen3-VL-235B-A22B-Instruct","name":"Qwen/Qwen3-VL-235B-A22B-Instruct","family":"qwen","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-10-04","last_updated":"2025-11-25","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":262000,"output":262000},"cost":{"input":0.3,"output":1.5}},"openai/gpt-oss-120b":{"id":"openai/gpt-oss-120b","name":"openai/gpt-oss-120b","family":"gpt-oss","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-08-13","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131000,"output":8000},"cost":{"input":0.05,"output":0.45}},"openai/gpt-oss-20b":{"id":"openai/gpt-oss-20b","name":"openai/gpt-oss-20b","family":"gpt-oss","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-08-13","last_updated":"2025-11-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131000,"output":8000},"cost":{"input":0.04,"output":0.18}}}},"vercel":{"id":"vercel","env":["AI_GATEWAY_API_KEY"],"npm":"@ai-sdk/gateway","name":"Vercel AI Gateway","doc":"https://github.com/vercel/ai/tree/5eb85cc45a259553501f535b8ac79a77d0e79223/packages/gateway","models":{"kwaipilot/kat-coder-pro-v2":{"id":"kwaipilot/kat-coder-pro-v2","name":"Kat Coder Pro V2","family":"kat-coder","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-03-27","last_updated":"2026-03-30","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":256000},"cost":{"input":0.3,"output":1.2,"cache_read":0.06}},"kwaipilot/kat-coder-pro-v1":{"id":"kwaipilot/kat-coder-pro-v1","name":"KAT-Coder-Pro V1","family":"kat-coder","attachment":false,"reasoning":true,"tool_call":false,"temperature":true,"knowledge":"2024-10","release_date":"2025-10-24","last_updated":"2025-10-24","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":32000}},"bfl/flux-kontext-max":{"id":"bfl/flux-kontext-max","name":"FLUX.1 Kontext Max","family":"flux","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2025-06","last_updated":"2025-06","modalities":{"input":["text"],"output":["image"]},"open_weights":false,"limit":{"context":512,"output":0}},"bfl/flux-pro-1.1-ultra":{"id":"bfl/flux-pro-1.1-ultra","name":"FLUX1.1 [pro] Ultra","family":"flux","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2024-11","last_updated":"2024-11","modalities":{"input":["text"],"output":["image"]},"open_weights":false,"limit":{"context":512,"output":0}},"bfl/flux-pro-1.0-fill":{"id":"bfl/flux-pro-1.0-fill","name":"FLUX.1 Fill [pro]","family":"flux","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2024-10","last_updated":"2024-10","modalities":{"input":["text"],"output":["image"]},"open_weights":false,"limit":{"context":512,"output":0}},"bfl/flux-pro-1.1":{"id":"bfl/flux-pro-1.1","name":"FLUX1.1 [pro]","family":"flux","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2024-10","last_updated":"2024-10","modalities":{"input":["text"],"output":["image"]},"open_weights":false,"limit":{"context":512,"output":0}},"bfl/flux-kontext-pro":{"id":"bfl/flux-kontext-pro","name":"FLUX.1 Kontext Pro","family":"flux","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2025-06","last_updated":"2025-06","modalities":{"input":["text"],"output":["image"]},"open_weights":false,"limit":{"context":512,"output":0}},"prime-intellect/intellect-3":{"id":"prime-intellect/intellect-3","name":"INTELLECT 3","family":"intellect","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2025-11-26","last_updated":"2025-11-26","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":131072},"cost":{"input":0.2,"output":1.1}},"deepseek/deepseek-v3.2":{"id":"deepseek/deepseek-v3.2","name":"DeepSeek V3.2","family":"deepseek","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2024-07","release_date":"2025-12-01","last_updated":"2025-12-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":163842,"output":8000},"cost":{"input":0.27,"output":0.4,"cache_read":0.22}},"deepseek/deepseek-v3.2-thinking":{"id":"deepseek/deepseek-v3.2-thinking","name":"DeepSeek V3.2 Thinking","family":"deepseek-thinking","attachment":false,"reasoning":true,"tool_call":true,"interleaved":true,"temperature":true,"knowledge":"2024-07","release_date":"2025-12-01","last_updated":"2025-12-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":64000},"cost":{"input":0.28,"output":0.42,"cache_read":0.03}},"deepseek/deepseek-v3.1-terminus":{"id":"deepseek/deepseek-v3.1-terminus","name":"DeepSeek V3.1 Terminus","family":"deepseek","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-07","release_date":"2025-09-22","last_updated":"2025-09-22","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":65536},"cost":{"input":0.27,"output":1}},"deepseek/deepseek-v4-flash":{"id":"deepseek/deepseek-v4-flash","name":"DeepSeek V4 Flash","family":"deepseek","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-04-23","last_updated":"2026-04-24","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1000000,"output":384000},"cost":{"input":0.14,"output":0.28,"cache_read":0.028}},"deepseek/deepseek-v3":{"id":"deepseek/deepseek-v3","name":"DeepSeek V3 0324","family":"deepseek","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-07","release_date":"2024-12-26","last_updated":"2024-12-26","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":163840,"output":16384},"cost":{"input":0.77,"output":0.77}},"deepseek/deepseek-v3.2-exp":{"id":"deepseek/deepseek-v3.2-exp","name":"DeepSeek V3.2 Exp","family":"deepseek","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-09","release_date":"2025-09-29","last_updated":"2025-09-29","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":163840,"output":163840},"cost":{"input":0.27,"output":0.4}},"deepseek/deepseek-v4-pro":{"id":"deepseek/deepseek-v4-pro","name":"DeepSeek V4 Pro","family":"deepseek","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-04-23","last_updated":"2026-04-24","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1000000,"output":384000},"cost":{"input":1.74,"output":3.48,"cache_read":0.145}},"deepseek/deepseek-v3.1":{"id":"deepseek/deepseek-v3.1","name":"DeepSeek-V3.1","family":"deepseek","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-07","release_date":"2025-08-21","last_updated":"2025-08-21","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":163840,"output":128000},"cost":{"input":0.3,"output":1}},"deepseek/deepseek-r1":{"id":"deepseek/deepseek-r1","name":"DeepSeek-R1","family":"deepseek-thinking","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-07","release_date":"2025-01-20","last_updated":"2025-05-29","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":32768},"cost":{"input":1.35,"output":5.4}},"inception/mercury-edit-2":{"id":"inception/mercury-edit-2","name":"Mercury Edit 2","attachment":false,"reasoning":true,"tool_call":false,"temperature":true,"release_date":"2026-03-30","last_updated":"2026-03-30","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":8192},"cost":{"input":0.25,"output":0.75,"cache_read":0.025}},"inception/mercury-2":{"id":"inception/mercury-2","name":"Mercury 2","family":"mercury","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-02-24","last_updated":"2026-03-06","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":128000},"cost":{"input":0.25,"output":0.75,"cache_read":0.024999999999999998}},"interfaze/interfaze-beta":{"id":"interfaze/interfaze-beta","name":"Interfaze Beta","attachment":false,"reasoning":true,"tool_call":false,"temperature":true,"release_date":"2025-10-07","last_updated":"2026-04-29","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":32000},"cost":{"input":1.5,"output":3.5}},"anthropic/claude-sonnet-4.6":{"id":"anthropic/claude-sonnet-4.6","name":"Claude Sonnet 4.6","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"interleaved":true,"temperature":true,"knowledge":"2025-08-31","release_date":"2026-02-17","last_updated":"2026-02-17","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75,"tiers":[{"input":6,"output":22.5,"cache_read":0.6,"cache_write":7.5,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":6,"output":22.5,"cache_read":0.6,"cache_write":7.5}}},"anthropic/claude-opus-4.5":{"id":"anthropic/claude-opus-4.5","name":"Claude Opus 4.5","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"interleaved":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-11-24","last_updated":"2025-11-24","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":18.75}},"anthropic/claude-opus-4.7":{"id":"anthropic/claude-opus-4.7","name":"Claude Opus 4.7","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2026-04-16","last_updated":"2026-04-16","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25}},"anthropic/claude-opus-4.6":{"id":"anthropic/claude-opus-4.6","name":"Claude Opus 4.6","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"interleaved":true,"temperature":true,"knowledge":"2025-05-31","release_date":"2026-02","last_updated":"2026-02","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25}},"anthropic/claude-haiku-4.5":{"id":"anthropic/claude-haiku-4.5","name":"Claude Haiku 4.5","family":"claude-haiku","attachment":true,"reasoning":true,"tool_call":true,"interleaved":true,"temperature":true,"knowledge":"2025-02-28","release_date":"2025-10-15","last_updated":"2025-10-15","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":1,"output":5,"cache_read":0.1,"cache_write":1.25}},"anthropic/claude-opus-4.8":{"id":"anthropic/claude-opus-4.8","name":"Claude Opus 4.8","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-05-28","last_updated":"2026-05-28","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25}},"anthropic/claude-3.5-sonnet-20240620":{"id":"anthropic/claude-3.5-sonnet-20240620","name":"Claude 3.5 Sonnet (2024-06-20)","family":"claude-sonnet","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-04","release_date":"2024-06-20","last_updated":"2024-06-20","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":8192},"cost":{"input":3,"output":15}},"anthropic/claude-opus-4":{"id":"anthropic/claude-opus-4","name":"Claude Opus 4","family":"claude-opus","attachment":true,"reasoning":true,"reasoning_options":[{"type":"budget_tokens","min":1024}],"tool_call":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-05-22","last_updated":"2025-05-22","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":32000},"cost":{"input":15,"output":75,"cache_read":1.5,"cache_write":18.75}},"anthropic/claude-opus-4.1":{"id":"anthropic/claude-opus-4.1","name":"Claude Opus 4.1","family":"claude-opus","attachment":true,"reasoning":true,"reasoning_options":[{"type":"budget_tokens","min":1024}],"tool_call":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":32000},"cost":{"input":15,"output":75,"cache_read":1.5,"cache_write":18.75}},"anthropic/claude-3-opus":{"id":"anthropic/claude-3-opus","name":"Claude Opus 3","family":"claude-opus","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2023-08-31","release_date":"2024-02-29","last_updated":"2024-02-29","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":4096},"status":"deprecated","cost":{"input":15,"output":75,"cache_read":1.5,"cache_write":18.75}},"anthropic/claude-sonnet-4.5":{"id":"anthropic/claude-sonnet-4.5","name":"Claude Sonnet 4.5","family":"claude-sonnet","attachment":true,"reasoning":true,"reasoning_options":[{"type":"budget_tokens","min":1024}],"tool_call":true,"temperature":true,"knowledge":"2025-07-31","release_date":"2025-09-29","last_updated":"2025-09-29","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75}},"anthropic/claude-3-haiku":{"id":"anthropic/claude-3-haiku","name":"Claude Haiku 3","family":"claude-haiku","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2023-08-31","release_date":"2024-03-13","last_updated":"2024-03-13","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":4096},"status":"deprecated","cost":{"input":0.25,"output":1.25,"cache_read":0.03,"cache_write":0.3}},"anthropic/claude-3.5-sonnet":{"id":"anthropic/claude-3.5-sonnet","name":"Claude Sonnet 3.5 v2","family":"claude-sonnet","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-04-30","release_date":"2024-10-22","last_updated":"2024-10-22","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":8192},"status":"deprecated","cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75}},"anthropic/claude-3.5-haiku":{"id":"anthropic/claude-3.5-haiku","name":"Claude Haiku 3.5","family":"claude-haiku","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-07-31","release_date":"2024-10-22","last_updated":"2024-10-22","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":8192},"status":"deprecated","cost":{"input":0.8,"output":4,"cache_read":0.08,"cache_write":1}},"anthropic/claude-3.7-sonnet":{"id":"anthropic/claude-3.7-sonnet","name":"Claude Sonnet 3.7","family":"claude-sonnet","attachment":true,"reasoning":true,"reasoning_options":[{"type":"budget_tokens","min":1024}],"tool_call":true,"temperature":true,"knowledge":"2024-10-31","release_date":"2025-02-19","last_updated":"2025-02-19","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"status":"deprecated","cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75}},"anthropic/claude-sonnet-4":{"id":"anthropic/claude-sonnet-4","name":"Claude Sonnet 4","family":"claude-sonnet","attachment":true,"reasoning":true,"reasoning_options":[{"type":"budget_tokens","min":1024}],"tool_call":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-05-22","last_updated":"2025-05-22","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75}},"alibaba/qwen-3-14b":{"id":"alibaba/qwen-3-14b","name":"Qwen3-14B","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-04","last_updated":"2025-04","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":40960,"output":16384},"cost":{"input":0.06,"output":0.24}},"alibaba/qwen3-next-80b-a3b-instruct":{"id":"alibaba/qwen3-next-80b-a3b-instruct","name":"Qwen3 Next 80B A3B Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-09-12","last_updated":"2025-09-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":32768},"cost":{"input":0.09,"output":1.1}},"alibaba/qwen3-max-preview":{"id":"alibaba/qwen3-max-preview","name":"Qwen3 Max Preview","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-09-23","last_updated":"2025-09-23","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"output":32768},"cost":{"input":1.2,"output":6,"cache_read":0.24}},"alibaba/qwen3-vl-thinking":{"id":"alibaba/qwen3-vl-thinking","name":"Qwen3 VL Thinking","family":"qwen","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-09","release_date":"2025-09-24","last_updated":"2025-09-24","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":129024},"cost":{"input":0.7,"output":8.4}},"alibaba/qwen3-vl-235b-a22b-instruct":{"id":"alibaba/qwen3-vl-235b-a22b-instruct","name":"Qwen3 VL 235B A22B Instruct","family":"qwen","attachment":true,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2025-09-24","last_updated":"2026-05-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":129024},"cost":{"input":0.39999999999999997,"output":1.5999999999999999}},"alibaba/qwen3.6-27b":{"id":"alibaba/qwen3.6-27b","name":"Qwen 3.6 27B","family":"qwen3.6","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-04-22","last_updated":"2026-05-01","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":256000},"cost":{"input":0.6,"output":3.5999999999999996}},"alibaba/qwen3.5-plus":{"id":"alibaba/qwen3.5-plus","name":"Qwen 3.5 Plus","family":"qwen","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-02-16","last_updated":"2026-02-19","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":64000},"cost":{"input":0.4,"output":2.4,"cache_read":0.04,"cache_write":0.5}},"alibaba/qwen3-max":{"id":"alibaba/qwen3-max","name":"Qwen3 Max","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-09-23","last_updated":"2025-09-23","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"output":32768},"cost":{"input":1.2,"output":6}},"alibaba/qwen3-coder-plus":{"id":"alibaba/qwen3-coder-plus","name":"Qwen3 Coder Plus","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-07-23","last_updated":"2025-07-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1000000,"output":1000000},"cost":{"input":1,"output":5}},"alibaba/qwen3-coder-next":{"id":"alibaba/qwen3-coder-next","name":"Qwen3 Coder Next","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-07-22","last_updated":"2026-02-19","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":256000},"cost":{"input":0.5,"output":1.2}},"alibaba/qwen3.5-flash":{"id":"alibaba/qwen3.5-flash","name":"Qwen 3.5 Flash","family":"qwen","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-02-24","last_updated":"2026-02-24","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":64000},"cost":{"input":0.1,"output":0.4,"cache_read":0.001,"cache_write":0.125}},"alibaba/qwen3.7-max":{"id":"alibaba/qwen3.7-max","name":"Qwen 3.7 Max","family":"qwen","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-05-21","last_updated":"2026-05-21","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":991000,"output":64000},"cost":{"input":2.5,"output":7.5,"cache_read":0.5,"cache_write":3.125}},"alibaba/qwen3.6-plus":{"id":"alibaba/qwen3.6-plus","name":"Qwen 3.6 Plus","family":"qwen","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-04-02","last_updated":"2026-04-03","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":64000},"cost":{"input":0.5,"output":3,"cache_read":0.09999999999999999,"cache_write":0.625}},"alibaba/qwen3-next-80b-a3b-thinking":{"id":"alibaba/qwen3-next-80b-a3b-thinking","name":"Qwen3 Next 80B A3B Thinking","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-09","release_date":"2025-09-12","last_updated":"2025-09-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":65536},"cost":{"input":0.15,"output":1.5}},"alibaba/qwen3-embedding-8b":{"id":"alibaba/qwen3-embedding-8b","name":"Qwen3 Embedding 8B","family":"qwen","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2025-06-05","last_updated":"2025-06-05","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":32768,"output":32768},"cost":{"input":0.05,"output":0}},"alibaba/qwen3-embedding-4b":{"id":"alibaba/qwen3-embedding-4b","name":"Qwen3 Embedding 4B","family":"qwen","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2025-06-05","last_updated":"2025-06-05","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":32768,"output":32768},"cost":{"input":0.02,"output":0}},"alibaba/qwen3-embedding-0.6b":{"id":"alibaba/qwen3-embedding-0.6b","name":"Qwen3 Embedding 0.6B","family":"qwen","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2025-11-14","last_updated":"2025-11-14","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":32768,"output":32768},"cost":{"input":0.01,"output":0}},"alibaba/qwen-3-235b":{"id":"alibaba/qwen-3-235b","name":"Qwen3 235B A22B Instruct 2507","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-04","last_updated":"2025-04","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":40960,"output":16384},"cost":{"input":0.13,"output":0.6}},"alibaba/qwen3-coder-30b-a3b":{"id":"alibaba/qwen3-coder-30b-a3b","name":"Qwen 3 Coder 30B A3B Instruct","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-04","last_updated":"2025-04","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":160000,"output":32768},"cost":{"input":0.07,"output":0.27}},"alibaba/qwen3-coder":{"id":"alibaba/qwen3-coder","name":"Qwen3 Coder 480B A35B Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-04","last_updated":"2025-04","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"output":66536},"cost":{"input":0.38,"output":1.53}},"alibaba/qwen-3-32b":{"id":"alibaba/qwen-3-32b","name":"Qwen 3.32B","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-04","last_updated":"2025-04","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":40960,"output":16384},"cost":{"input":0.1,"output":0.3}},"alibaba/qwen3-235b-a22b-thinking":{"id":"alibaba/qwen3-235b-a22b-thinking","name":"Qwen3 235B A22B Thinking 2507","family":"qwen","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-04","last_updated":"2025-04","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":262114,"output":262114},"cost":{"input":0.3,"output":2.9}},"alibaba/qwen3-max-thinking":{"id":"alibaba/qwen3-max-thinking","name":"Qwen 3 Max Thinking","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-01","last_updated":"2025-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"output":65536},"cost":{"input":1.2,"output":6,"cache_read":0.24}},"alibaba/qwen-3.6-max-preview":{"id":"alibaba/qwen-3.6-max-preview","name":"Qwen 3.6 Max Preview","family":"qwen","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-04-20","last_updated":"2026-04-24","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":true,"limit":{"context":240000,"output":64000},"cost":{"input":1.3,"output":7.8,"cache_read":0.26,"cache_write":1.625}},"alibaba/qwen-3-30b":{"id":"alibaba/qwen-3-30b","name":"Qwen3-30B-A3B","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-04","last_updated":"2025-04","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":40960,"output":16384},"cost":{"input":0.08,"output":0.29}},"alibaba/qwen3-vl-instruct":{"id":"alibaba/qwen3-vl-instruct","name":"Qwen3 VL Instruct","family":"qwen","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-09-24","last_updated":"2025-09-24","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":129024},"cost":{"input":0.7,"output":2.8}},"xiaomi/mimo-v2-pro":{"id":"xiaomi/mimo-v2-pro","name":"MiMo V2 Pro","family":"mimo","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-03-18","last_updated":"2026-03-20","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"cost":{"input":1,"output":3,"cache_read":0.19999999999999998}},"xiaomi/mimo-v2.5":{"id":"xiaomi/mimo-v2.5","name":"MiMo M2.5","family":"mimo-v2.5","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-04-22","last_updated":"2026-05-01","modalities":{"input":["text","image","audio","video"],"output":["text"]},"open_weights":false,"limit":{"context":1050000,"output":131100},"cost":{"input":0.39999999999999997,"output":2,"cache_read":0.08}},"xiaomi/mimo-v2-flash":{"id":"xiaomi/mimo-v2-flash","name":"MiMo V2 Flash","family":"mimo","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2025-12-17","last_updated":"2025-12-17","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"output":32000},"cost":{"input":0.1,"output":0.29}},"xiaomi/mimo-v2.5-pro":{"id":"xiaomi/mimo-v2.5-pro","name":"MiMo V2.5 Pro","family":"mimo-v2.5-pro","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-04-22","last_updated":"2026-05-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1050000,"output":131000},"cost":{"input":1,"output":3,"cache_read":0.19999999999999998}},"mistral/codestral-embed":{"id":"mistral/codestral-embed","name":"Codestral Embed","family":"codestral-embed","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2025-05-28","last_updated":"2025-05-28","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":8192,"output":1536},"cost":{"input":0.15,"output":0}},"mistral/mistral-large-3":{"id":"mistral/mistral-large-3","name":"Mistral Large 3","family":"mistral-large","attachment":true,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2024-10","release_date":"2025-12-02","last_updated":"2025-12-02","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":256000},"cost":{"input":0.5,"output":1.5}},"mistral/devstral-small-2":{"id":"mistral/devstral-small-2","name":"Devstral Small 2","family":"devstral","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2025-05-07","last_updated":"2025-05-07","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":256000}},"mistral/mistral-embed":{"id":"mistral/mistral-embed","name":"Mistral Embed","family":"mistral-embed","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2023-12-11","last_updated":"2023-12-11","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":8192,"output":1536},"cost":{"input":0.1,"output":0}},"mistral/mistral-nemo":{"id":"mistral/mistral-nemo","name":"Mistral Nemo","family":"mistral-nemo","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-04","release_date":"2024-07-01","last_updated":"2024-07-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":60288,"output":16000},"cost":{"input":0.04,"output":0.17}},"mistral/mistral-medium-3.5":{"id":"mistral/mistral-medium-3.5","name":"Mistral Medium Latest","family":"mistral-medium","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-05-21","last_updated":"2026-05-21","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":256000},"cost":{"input":1.5,"output":7.5}},"mistral/ministral-14b":{"id":"mistral/ministral-14b","name":"Ministral 14B","family":"ministral","attachment":true,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2024-10","release_date":"2025-12-01","last_updated":"2025-12-01","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":256000},"cost":{"input":0.2,"output":0.2}},"mistral/mistral-medium":{"id":"mistral/mistral-medium","name":"Mistral Medium 3.1","family":"mistral-medium","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2025-05-07","last_updated":"2025-05-07","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":64000},"cost":{"input":0.4,"output":2}},"mistral/devstral-small":{"id":"mistral/devstral-small","name":"Devstral Small 1.1","family":"devstral","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2025-05-07","last_updated":"2025-05-07","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":64000},"cost":{"input":0.1,"output":0.3}},"mistral/devstral-2":{"id":"mistral/devstral-2","name":"Devstral 2","family":"devstral","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2025-12-09","last_updated":"2025-12-09","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":256000}},"mistral/mixtral-8x22b-instruct":{"id":"mistral/mixtral-8x22b-instruct","name":"Mixtral 8x22B","family":"mixtral","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-04","release_date":"2024-04-17","last_updated":"2024-04-17","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":64000,"output":64000},"cost":{"input":2,"output":6}},"mistral/ministral-8b":{"id":"mistral/ministral-8b","name":"Ministral 8B (latest)","family":"ministral","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2024-10-01","last_updated":"2024-10-04","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":128000},"cost":{"input":0.1,"output":0.1}},"mistral/pixtral-large":{"id":"mistral/pixtral-large","name":"Pixtral Large (latest)","family":"pixtral","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-11","release_date":"2024-11-01","last_updated":"2024-11-04","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":128000},"cost":{"input":2,"output":6}},"mistral/pixtral-12b":{"id":"mistral/pixtral-12b","name":"Pixtral 12B","family":"pixtral","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-09","release_date":"2024-09-01","last_updated":"2024-09-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":128000},"cost":{"input":0.15,"output":0.15}},"mistral/magistral-small":{"id":"mistral/magistral-small","name":"Magistral Small","family":"magistral-small","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-06","release_date":"2025-03-17","last_updated":"2025-03-17","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":128000},"cost":{"input":0.5,"output":1.5}},"mistral/codestral":{"id":"mistral/codestral","name":"Codestral (latest)","family":"codestral","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2024-05-29","last_updated":"2025-01-04","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"output":4096},"cost":{"input":0.3,"output":0.9}},"mistral/mistral-small":{"id":"mistral/mistral-small","name":"Mistral Small (latest)","family":"mistral-small","attachment":true,"reasoning":true,"reasoning_options":[{"type":"effort","values":["none","high"]}],"tool_call":true,"temperature":true,"knowledge":"2025-06","release_date":"2026-03-16","last_updated":"2026-03-16","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"output":256000},"cost":{"input":0.15,"output":0.6}},"mistral/magistral-medium":{"id":"mistral/magistral-medium","name":"Magistral Medium (latest)","family":"magistral-medium","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-06","release_date":"2025-03-17","last_updated":"2025-03-20","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":16384},"cost":{"input":2,"output":5}},"mistral/ministral-3b":{"id":"mistral/ministral-3b","name":"Ministral 3B (latest)","family":"ministral","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2024-10-01","last_updated":"2024-10-04","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":128000},"cost":{"input":0.04,"output":0.04}},"xai/grok-4.20-multi-agent":{"id":"xai/grok-4.20-multi-agent","name":"Grok 4.20 Multi-Agent","family":"grok","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-03-09","last_updated":"2026-03-23","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":2000000,"output":2000000},"cost":{"input":2,"output":6,"cache_read":0.19999999999999998}},"xai/grok-4.20-reasoning":{"id":"xai/grok-4.20-reasoning","name":"Grok 4.20 Reasoning","family":"grok","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-03-09","last_updated":"2026-03-23","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":2000000,"output":2000000},"cost":{"input":2,"output":6,"cache_read":0.19999999999999998}},"xai/grok-4.1-fast-non-reasoning":{"id":"xai/grok-4.1-fast-non-reasoning","name":"Grok 4.1 Fast Non-Reasoning","family":"grok","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2025-07-09","last_updated":"2025-07-09","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":2000000,"output":30000},"cost":{"input":0.2,"output":0.5,"cache_read":0.05}},"xai/grok-build-0.1":{"id":"xai/grok-build-0.1","name":"Grok Build 0.1","family":"grok-build","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-05-20","last_updated":"2026-05-21","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":256000},"cost":{"input":1,"output":2,"cache_read":0.19999999999999998}},"xai/grok-imagine-image-pro":{"id":"xai/grok-imagine-image-pro","name":"Grok Imagine Image Pro","family":"grok","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2026-01-28","last_updated":"2026-02-19","modalities":{"input":["text"],"output":["text","image"]},"open_weights":false,"limit":{"context":0,"output":0}},"xai/grok-4.1-fast-reasoning":{"id":"xai/grok-4.1-fast-reasoning","name":"Grok 4.1 Fast Reasoning","family":"grok","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2025-07-09","last_updated":"2025-07-09","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":2000000,"output":30000},"cost":{"input":0.2,"output":0.5,"cache_read":0.05}},"xai/grok-4-fast-reasoning":{"id":"xai/grok-4-fast-reasoning","name":"Grok 4 Fast Reasoning","family":"grok","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2025-07-09","last_updated":"2025-07-09","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":2000000,"output":256000},"cost":{"input":0.2,"output":0.5,"cache_read":0.05}},"xai/grok-4.20-non-reasoning-beta":{"id":"xai/grok-4.20-non-reasoning-beta","name":"Grok 4.20 Beta Non-Reasoning","family":"grok","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2026-03-11","last_updated":"2026-03-13","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":2000000,"output":2000000},"cost":{"input":2,"output":6,"cache_read":0.19999999999999998}},"xai/grok-4.3":{"id":"xai/grok-4.3","name":"Grok 4.3","family":"grok","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-04-30","last_updated":"2026-05-01","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":1000000},"cost":{"input":1.25,"output":2.5,"cache_read":0.19999999999999998}},"xai/grok-4.20-reasoning-beta":{"id":"xai/grok-4.20-reasoning-beta","name":"Grok 4.20 Beta Reasoning","family":"grok","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-03-11","last_updated":"2026-03-13","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":2000000,"output":2000000},"cost":{"input":2,"output":6,"cache_read":0.19999999999999998}},"xai/grok-imagine-image":{"id":"xai/grok-imagine-image","name":"Grok Imagine Image","family":"grok","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2026-01-28","last_updated":"2026-02-19","modalities":{"input":["text"],"output":["text","image"]},"open_weights":false,"limit":{"context":0,"output":0}},"xai/grok-4.20-multi-agent-beta":{"id":"xai/grok-4.20-multi-agent-beta","name":"Grok 4.20 Multi Agent Beta","family":"grok","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-03-11","last_updated":"2026-03-13","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":2000000,"output":2000000},"cost":{"input":2,"output":6,"cache_read":0.19999999999999998}},"xai/grok-4.20-non-reasoning":{"id":"xai/grok-4.20-non-reasoning","name":"Grok 4.20 Non-Reasoning","family":"grok","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2026-03-09","last_updated":"2026-03-23","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":2000000,"output":2000000},"cost":{"input":2,"output":6,"cache_read":0.19999999999999998}},"cohere/embed-v4.0":{"id":"cohere/embed-v4.0","name":"Embed v4.0","family":"cohere-embed","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2025-04-15","last_updated":"2025-04-15","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":8192,"output":1536},"cost":{"input":0.12,"output":0}},"cohere/command-a":{"id":"cohere/command-a","name":"Command A","family":"command","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2025-03-13","last_updated":"2025-03-13","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":8000},"cost":{"input":2.5,"output":10}},"moonshotai/kimi-k2-thinking-turbo":{"id":"moonshotai/kimi-k2-thinking-turbo","name":"Kimi K2 Thinking Turbo","family":"kimi-thinking","attachment":false,"reasoning":true,"tool_call":true,"interleaved":true,"temperature":true,"knowledge":"2024-08","release_date":"2025-11-06","last_updated":"2025-11-06","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262114,"output":262114},"cost":{"input":1.15,"output":8,"cache_read":0.15}},"moonshotai/kimi-k2-thinking":{"id":"moonshotai/kimi-k2-thinking","name":"Kimi K2 Thinking","family":"kimi-thinking","attachment":false,"reasoning":true,"tool_call":true,"interleaved":true,"temperature":true,"knowledge":"2024-08","release_date":"2025-11-06","last_updated":"2025-11-06","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":216144,"output":216144},"cost":{"input":0.47,"output":2,"cache_read":0.14}},"moonshotai/kimi-k2.6":{"id":"moonshotai/kimi-k2.6","name":"Kimi K2.6","family":"kimi-k2.6","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-04-20","last_updated":"2026-04-24","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":true,"limit":{"context":262000,"output":262000},"cost":{"input":0.95,"output":4,"cache_read":0.16}},"moonshotai/kimi-k2-turbo":{"id":"moonshotai/kimi-k2-turbo","name":"Kimi K2 Turbo","family":"kimi","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-08","release_date":"2025-09-05","last_updated":"2025-09-05","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":16384},"cost":{"input":2.4,"output":10}},"moonshotai/kimi-k2-0905":{"id":"moonshotai/kimi-k2-0905","name":"Kimi K2 0905","family":"kimi","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2024-10","release_date":"2025-09-05","last_updated":"2025-09-05","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":16384},"cost":{"input":0.6,"output":2.5}},"moonshotai/kimi-k2.5":{"id":"moonshotai/kimi-k2.5","name":"Kimi K2.5","family":"kimi","attachment":true,"reasoning":true,"tool_call":true,"interleaved":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-01-26","last_updated":"2026-01-26","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.6,"output":1.2}},"moonshotai/kimi-k2":{"id":"moonshotai/kimi-k2","name":"Kimi K2 Instruct","family":"kimi","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2025-07-14","last_updated":"2025-07-14","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":16384},"status":"deprecated","cost":{"input":1,"output":3}},"perplexity/sonar":{"id":"perplexity/sonar","name":"Sonar","family":"sonar","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-02","release_date":"2025-02-19","last_updated":"2025-02-19","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":127000,"output":8000},"cost":{"input":1,"output":1}},"perplexity/sonar-pro":{"id":"perplexity/sonar-pro","name":"Sonar Pro","family":"sonar-pro","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-09","release_date":"2025-02-19","last_updated":"2025-02-19","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":8000},"cost":{"input":3,"output":15}},"perplexity/sonar-reasoning":{"id":"perplexity/sonar-reasoning","name":"Sonar Reasoning","family":"sonar-reasoning","attachment":false,"reasoning":true,"tool_call":false,"temperature":true,"knowledge":"2025-09","release_date":"2025-02-19","last_updated":"2025-02-19","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":127000,"output":8000},"cost":{"input":1,"output":5}},"perplexity/sonar-reasoning-pro":{"id":"perplexity/sonar-reasoning-pro","name":"Sonar Reasoning Pro","family":"sonar-reasoning","attachment":false,"reasoning":true,"tool_call":false,"temperature":true,"knowledge":"2025-09","release_date":"2025-02-19","last_updated":"2025-02-19","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":127000,"output":8000},"cost":{"input":2,"output":8}},"nvidia/nemotron-3-nano-30b-a3b":{"id":"nvidia/nemotron-3-nano-30b-a3b","name":"Nemotron 3 Nano 30B A3B","family":"nemotron","attachment":false,"reasoning":true,"tool_call":false,"temperature":true,"knowledge":"2024-10","release_date":"2024-12","last_updated":"2024-12","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"output":262144},"cost":{"input":0.06,"output":0.24}},"nvidia/nemotron-nano-9b-v2":{"id":"nvidia/nemotron-nano-9b-v2","name":"Nvidia Nemotron Nano 9B V2","family":"nemotron","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2025-08-18","last_updated":"2025-08-18","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":131072},"cost":{"input":0.04,"output":0.16}},"nvidia/nemotron-nano-12b-v2-vl":{"id":"nvidia/nemotron-nano-12b-v2-vl","name":"Nvidia Nemotron Nano 12B V2 VL","family":"nemotron","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2024-12","last_updated":"2024-12","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":131072},"cost":{"input":0.2,"output":0.6}},"nvidia/nemotron-3-super-120b-a12b":{"id":"nvidia/nemotron-3-super-120b-a12b","name":"NVIDIA Nemotron 3 Super 120B A12B","family":"nemotron","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2026-03-18","last_updated":"2026-03-30","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":32000},"cost":{"input":0.15,"output":0.65}},"arcee-ai/trinity-large-preview":{"id":"arcee-ai/trinity-large-preview","name":"Trinity Large Preview","family":"trinity","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2025-01","last_updated":"2025-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131000,"output":131000},"cost":{"input":0.25,"output":1}},"arcee-ai/trinity-mini":{"id":"arcee-ai/trinity-mini","name":"Trinity Mini","family":"trinity","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2024-10","release_date":"2025-12","last_updated":"2025-12","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":131072},"cost":{"input":0.05,"output":0.15}},"arcee-ai/trinity-large-thinking":{"id":"arcee-ai/trinity-large-thinking","name":"Trinity Large Thinking","family":"trinity","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-04-01","last_updated":"2026-04-03","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262100,"output":80000},"cost":{"input":0.25,"output":0.8999999999999999}},"meta/llama-3.1-8b":{"id":"meta/llama-3.1-8b","name":"Llama 3.1 8B Instruct","family":"llama","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2023-12","release_date":"2024-07-23","last_updated":"2024-07-23","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":16384},"cost":{"input":0.03,"output":0.05}},"meta/llama-3.1-70b":{"id":"meta/llama-3.1-70b","name":"Llama 3.1 70B Instruct","family":"llama","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2023-12","release_date":"2024-07-23","last_updated":"2024-07-23","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":16384},"cost":{"input":0.4,"output":0.4}},"meta/llama-3.2-3b":{"id":"meta/llama-3.2-3b","name":"Llama 3.2 3B Instruct","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2023-12","release_date":"2024-09-18","last_updated":"2024-09-18","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":8192},"cost":{"input":0.15,"output":0.15}},"meta/llama-3.2-90b":{"id":"meta/llama-3.2-90b","name":"Llama 3.2 90B Vision Instruct","family":"llama","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2023-12","release_date":"2024-09-25","last_updated":"2024-09-25","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":8192},"cost":{"input":0.72,"output":0.72}},"meta/llama-3.2-11b":{"id":"meta/llama-3.2-11b","name":"Llama 3.2 11B Vision Instruct","family":"llama","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2023-12","release_date":"2024-09-25","last_updated":"2024-09-25","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":8192},"cost":{"input":0.16,"output":0.16}},"meta/llama-3.2-1b":{"id":"meta/llama-3.2-1b","name":"Llama 3.2 1B Instruct","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2023-12","release_date":"2024-09-18","last_updated":"2024-09-18","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":8192},"cost":{"input":0.1,"output":0.1}},"meta/llama-3.3-70b":{"id":"meta/llama-3.3-70b","name":"Llama-3.3-70B-Instruct","family":"llama","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2023-12","release_date":"2024-12-06","last_updated":"2024-12-06","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4096},"cost":{"input":0,"output":0}},"meta/llama-4-scout":{"id":"meta/llama-4-scout","name":"Llama-4-Scout-17B-16E-Instruct-FP8","family":"llama","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-08","release_date":"2025-04-05","last_updated":"2025-04-05","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4096},"cost":{"input":0,"output":0}},"meta/llama-4-maverick":{"id":"meta/llama-4-maverick","name":"Llama-4-Maverick-17B-128E-Instruct-FP8","family":"llama","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-08","release_date":"2025-04-05","last_updated":"2025-04-05","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4096},"cost":{"input":0,"output":0}},"amazon/nova-2-lite":{"id":"amazon/nova-2-lite","name":"Nova 2 Lite","family":"nova","attachment":true,"reasoning":true,"tool_call":false,"temperature":true,"knowledge":"2024-10","release_date":"2024-12-01","last_updated":"2024-12-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":1000000},"cost":{"input":0.3,"output":2.5}},"amazon/titan-embed-text-v2":{"id":"amazon/titan-embed-text-v2","name":"Titan Text Embeddings V2","family":"titan-embed","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2024-04","last_updated":"2024-04","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":8192,"output":1536},"cost":{"input":0.02,"output":0}},"amazon/nova-micro":{"id":"amazon/nova-micro","name":"Nova Micro","family":"nova-micro","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2024-12-03","last_updated":"2024-12-03","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":8192},"cost":{"input":0.035,"output":0.14,"cache_read":0.00875}},"amazon/nova-pro":{"id":"amazon/nova-pro","name":"Nova Pro","family":"nova-pro","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2024-12-03","last_updated":"2024-12-03","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":300000,"output":8192},"cost":{"input":0.8,"output":3.2,"cache_read":0.2}},"amazon/nova-lite":{"id":"amazon/nova-lite","name":"Nova Lite","family":"nova-lite","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2024-12-03","last_updated":"2024-12-03","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":300000,"output":8192},"cost":{"input":0.06,"output":0.24,"cache_read":0.015}},"zai/glm-4.7-flashx":{"id":"zai/glm-4.7-flashx","name":"GLM 4.7 FlashX","family":"glm-flash","attachment":false,"reasoning":true,"tool_call":true,"interleaved":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-01","last_updated":"2025-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":200000,"output":128000},"cost":{"input":0.06,"output":0.4,"cache_read":0.01}},"zai/glm-4.6v-flash":{"id":"zai/glm-4.6v-flash","name":"GLM-4.6V-Flash","family":"glm","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2025-09-30","last_updated":"2025-09-30","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":24000}},"zai/glm-4.6":{"id":"zai/glm-4.6","name":"GLM 4.6","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-09-30","last_updated":"2025-09-30","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":200000,"output":96000},"cost":{"input":0.45,"output":1.8}},"zai/glm-4.7":{"id":"zai/glm-4.7","name":"GLM 4.7","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":true,"temperature":true,"knowledge":"2024-10","release_date":"2025-12-22","last_updated":"2025-12-22","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":202752,"output":120000},"cost":{"input":0.43,"output":1.75,"cache_read":0.08}},"zai/glm-4.5v":{"id":"zai/glm-4.5v","name":"GLM 4.5V","family":"glm","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-08","release_date":"2025-08-11","last_updated":"2025-08-11","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":66000,"output":66000},"cost":{"input":0.6,"output":1.8}},"zai/glm-4.6v":{"id":"zai/glm-4.6v","name":"GLM-4.6V","family":"glm","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2025-09-30","last_updated":"2025-09-30","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":24000},"cost":{"input":0.3,"output":0.9,"cache_read":0.05}},"zai/glm-4.7-flash":{"id":"zai/glm-4.7-flash","name":"GLM 4.7 Flash","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-03-13","last_updated":"2026-03-13","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":131000},"cost":{"input":0.07,"output":0.39999999999999997}},"zai/glm-5v-turbo":{"id":"zai/glm-5v-turbo","name":"GLM 5V Turbo","family":"glm","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-04-01","last_updated":"2026-04-03","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":128000},"cost":{"input":1.2,"output":4,"cache_read":0.24}},"zai/glm-5":{"id":"zai/glm-5","name":"GLM-5","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-02-12","last_updated":"2026-02-19","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":202800,"output":131072},"cost":{"input":1,"output":3.2,"cache_read":0.2}},"zai/glm-5-turbo":{"id":"zai/glm-5-turbo","name":"GLM 5 Turbo","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-03-15","last_updated":"2026-03-17","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":202800,"output":131100},"cost":{"input":1.2,"output":4,"cache_read":0.24}},"zai/glm-4.5":{"id":"zai/glm-4.5","name":"GLM 4.5","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":true,"temperature":true,"knowledge":"2025-07","release_date":"2025-07-28","last_updated":"2025-07-28","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":131072},"cost":{"input":0.6,"output":2.2}},"zai/glm-4.5-air":{"id":"zai/glm-4.5-air","name":"GLM 4.5 Air","family":"glm-air","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-07-28","last_updated":"2025-07-28","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":96000},"cost":{"input":0.2,"output":1.1}},"zai/glm-5.1":{"id":"zai/glm-5.1","name":"GLM 5.1","family":"glm","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-04-07","last_updated":"2026-04-16","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":202752,"output":202752},"cost":{"input":1.4,"output":4.4,"cache_read":0.26}},"meituan/longcat-flash-thinking-2601":{"id":"meituan/longcat-flash-thinking-2601","name":"LongCat Flash Thinking 2601","family":"longcat","attachment":false,"reasoning":true,"tool_call":false,"temperature":true,"release_date":"2026-03-13","last_updated":"2026-03-13","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":32768,"output":32768}},"meituan/longcat-flash-chat":{"id":"meituan/longcat-flash-chat","name":"LongCat Flash Chat","family":"longcat","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2025-08-30","last_updated":"2025-08-30","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":8192}},"meituan/longcat-flash-thinking":{"id":"meituan/longcat-flash-thinking","name":"LongCat Flash Thinking","family":"longcat","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2025-09-23","last_updated":"2025-09-23","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":8192},"cost":{"input":0.15,"output":1.5}},"voyage/voyage-code-2":{"id":"voyage/voyage-code-2","name":"voyage-code-2","family":"voyage","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2024-01","last_updated":"2024-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":8192,"output":1536},"cost":{"input":0.12,"output":0}},"voyage/voyage-code-3":{"id":"voyage/voyage-code-3","name":"voyage-code-3","family":"voyage","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2024-09","last_updated":"2024-09","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":8192,"output":1536},"cost":{"input":0.18,"output":0}},"voyage/voyage-finance-2":{"id":"voyage/voyage-finance-2","name":"voyage-finance-2","family":"voyage","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2024-03","last_updated":"2024-03","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":8192,"output":1536},"cost":{"input":0.12,"output":0}},"voyage/voyage-3.5":{"id":"voyage/voyage-3.5","name":"voyage-3.5","family":"voyage","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2025-05-20","last_updated":"2025-05-20","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":8192,"output":1536},"cost":{"input":0.06,"output":0}},"voyage/voyage-4-large":{"id":"voyage/voyage-4-large","name":"voyage-4-large","family":"voyage","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2026-03-06","last_updated":"2026-03-06","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":32000,"output":0}},"voyage/voyage-3.5-lite":{"id":"voyage/voyage-3.5-lite","name":"voyage-3.5-lite","family":"voyage","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2025-05-20","last_updated":"2025-05-20","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":8192,"output":1536},"cost":{"input":0.02,"output":0}},"voyage/voyage-4":{"id":"voyage/voyage-4","name":"voyage-4","family":"voyage","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2026-03-06","last_updated":"2026-03-06","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":32000,"output":0}},"voyage/voyage-3-large":{"id":"voyage/voyage-3-large","name":"voyage-3-large","family":"voyage","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2024-09","last_updated":"2024-09","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":8192,"output":1536},"cost":{"input":0.18,"output":0}},"voyage/voyage-law-2":{"id":"voyage/voyage-law-2","name":"voyage-law-2","family":"voyage","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2024-03","last_updated":"2024-03","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":8192,"output":1536},"cost":{"input":0.12,"output":0}},"voyage/voyage-4-lite":{"id":"voyage/voyage-4-lite","name":"voyage-4-lite","family":"voyage","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2026-03-06","last_updated":"2026-03-06","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":32000,"output":0}},"morph/morph-v3-large":{"id":"morph/morph-v3-large","name":"Morph v3 Large","family":"morph","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2024-08-15","last_updated":"2024-08-15","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":32000,"output":32000},"cost":{"input":0.9,"output":1.9}},"morph/morph-v3-fast":{"id":"morph/morph-v3-fast","name":"Morph v3 Fast","family":"morph","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2024-08-15","last_updated":"2024-08-15","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":16000,"output":16000},"cost":{"input":0.8,"output":1.2}},"vercel/v0-1.5-md":{"id":"vercel/v0-1.5-md","name":"v0-1.5-md","family":"v0","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-06-09","last_updated":"2025-06-09","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":32000},"cost":{"input":3,"output":15}},"vercel/v0-1.0-md":{"id":"vercel/v0-1.0-md","name":"v0-1.0-md","family":"v0","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-05-22","last_updated":"2025-05-22","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":32000},"cost":{"input":3,"output":15}},"google/gemini-2.5-flash-image-preview":{"id":"google/gemini-2.5-flash-image-preview","name":"Nano Banana Preview (Gemini 2.5 Flash Image Preview)","family":"gemini-flash","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2025-01","release_date":"2025-03-20","last_updated":"2025-03-20","modalities":{"input":["text"],"output":["text","image"]},"open_weights":false,"limit":{"context":32768,"output":32768},"cost":{"input":0.3,"output":2.5}},"google/gemini-2.5-flash-image":{"id":"google/gemini-2.5-flash-image","name":"Nano Banana (Gemini 2.5 Flash Image)","family":"gemini-flash","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2025-01","release_date":"2025-03-20","last_updated":"2025-03-20","modalities":{"input":["text"],"output":["text","image"]},"open_weights":false,"limit":{"context":32768,"output":32768},"cost":{"input":0.3,"output":2.5}},"google/gemini-embedding-2":{"id":"google/gemini-embedding-2","name":"Gemini Embedding 2","family":"gemini-embedding","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2026-03-10","last_updated":"2026-03-23","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":0,"output":0}},"google/gemini-3.1-flash-lite-preview":{"id":"google/gemini-3.1-flash-lite-preview","name":"Gemini 3.1 Flash Lite Preview","family":"gemini","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-03-03","last_updated":"2026-03-06","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":65000},"cost":{"input":0.25,"output":1.5,"cache_read":0.025,"cache_write":1}},"google/gemma-4-31b-it":{"id":"google/gemma-4-31b-it","name":"Gemma 4 31B IT","family":"gemma","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-04-02","last_updated":"2026-04-03","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"output":131072},"cost":{"input":0.14,"output":0.39999999999999997}},"google/imagen-4.0-generate-001":{"id":"google/imagen-4.0-generate-001","name":"Imagen 4","family":"imagen","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2025-05-22","last_updated":"2025-05-22","modalities":{"input":["text"],"output":["image"]},"open_weights":false,"limit":{"context":480,"output":0}},"google/text-embedding-005":{"id":"google/text-embedding-005","name":"Text Embedding 005","family":"text-embedding","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2024-08","last_updated":"2024-08","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":8192,"output":1536},"cost":{"input":0.03,"output":0}},"google/gemini-3-flash":{"id":"google/gemini-3-flash","name":"Gemini 3 Flash","family":"gemini-flash","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-03","release_date":"2025-12-17","last_updated":"2025-12-17","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":64000},"cost":{"input":0.5,"output":3,"cache_read":0.05}},"google/gemini-3.1-pro-preview":{"id":"google/gemini-3.1-pro-preview","name":"Gemini 3.1 Pro Preview","family":"gemini","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-02-19","last_updated":"2026-02-24","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":64000},"cost":{"input":2,"output":12,"cache_read":0.2}},"google/gemini-3.1-flash-lite":{"id":"google/gemini-3.1-flash-lite","name":"Gemini 3.1 Flash Lite","family":"gemini","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-05-07","last_updated":"2026-05-08","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":65000},"cost":{"input":0.25,"output":1.5,"cache_read":0.03}},"google/gemini-2.5-flash-lite":{"id":"google/gemini-2.5-flash-lite","name":"Gemini 2.5 Flash Lite","family":"gemini-flash-lite","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-06-17","last_updated":"2025-06-17","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":0.1,"output":0.4,"cache_read":0.01}},"google/gemini-2.5-flash-preview-09-2025":{"id":"google/gemini-2.5-flash-preview-09-2025","name":"Gemini 2.5 Flash Preview 09-25","family":"gemini-flash","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-09-25","last_updated":"2025-09-25","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":0.3,"output":2.5,"cache_read":0.03,"cache_write":0.383}},"google/gemma-4-26b-a4b-it":{"id":"google/gemma-4-26b-a4b-it","name":"Gemma 4 26B A4B IT","family":"gemma","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-04-02","last_updated":"2026-04-03","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"output":131072},"cost":{"input":0.13,"output":0.39999999999999997}},"google/gemini-2.5-flash-lite-preview-09-2025":{"id":"google/gemini-2.5-flash-lite-preview-09-2025","name":"Gemini 2.5 Flash Lite Preview 09-25","family":"gemini-flash-lite","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-09-25","last_updated":"2025-09-25","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":0.1,"output":0.4,"cache_read":0.01}},"google/gemini-3.5-flash":{"id":"google/gemini-3.5-flash","name":"Gemini 3.5 Flash","family":"gemini","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-05-19","last_updated":"2026-05-21","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":64000},"cost":{"input":1.5,"output":9,"cache_read":0.15}},"google/imagen-4.0-ultra-generate-001":{"id":"google/imagen-4.0-ultra-generate-001","name":"Imagen 4 Ultra","family":"imagen","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2025-05-24","last_updated":"2025-05-24","modalities":{"input":["text"],"output":["image"]},"open_weights":false,"limit":{"context":480,"output":0}},"google/gemini-3-pro-preview":{"id":"google/gemini-3-pro-preview","name":"Gemini 3 Pro Preview","family":"gemini-pro","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-11-18","last_updated":"2025-11-18","modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":64000},"cost":{"input":2,"output":12,"cache_read":0.2,"tiers":[{"input":4,"output":18,"cache_read":0.4,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":4,"output":18,"cache_read":0.4}}},"google/gemini-embedding-001":{"id":"google/gemini-embedding-001","name":"Gemini Embedding 001","family":"gemini-embedding","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2025-05-20","last_updated":"2025-05-20","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":8192,"output":1536},"cost":{"input":0.15,"output":0}},"google/gemini-3-pro-image":{"id":"google/gemini-3-pro-image","name":"Nano Banana Pro (Gemini 3 Pro Image)","family":"gemini-pro","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2025-03","release_date":"2025-09","last_updated":"2025-09","modalities":{"input":["text"],"output":["text","image"]},"open_weights":false,"limit":{"context":65536,"output":32768},"cost":{"input":2,"output":120}},"google/imagen-4.0-fast-generate-001":{"id":"google/imagen-4.0-fast-generate-001","name":"Imagen 4 Fast","family":"imagen","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2025-06","last_updated":"2025-06","modalities":{"input":["text"],"output":["image"]},"open_weights":false,"limit":{"context":480,"output":0}},"google/text-multilingual-embedding-002":{"id":"google/text-multilingual-embedding-002","name":"Text Multilingual Embedding 002","family":"text-embedding","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2024-03","last_updated":"2024-03","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":8192,"output":1536},"cost":{"input":0.03,"output":0}},"google/gemini-3.1-flash-image-preview":{"id":"google/gemini-3.1-flash-image-preview","name":"Gemini 3.1 Flash Image Preview (Nano Banana 2)","family":"gemini","attachment":true,"reasoning":true,"tool_call":false,"temperature":true,"release_date":"2026-02-26","last_updated":"2026-03-06","modalities":{"input":["text","image"],"output":["text","image"]},"open_weights":false,"limit":{"context":131072,"output":32768},"cost":{"input":0.5,"output":3}},"google/gemini-2.0-flash":{"id":"google/gemini-2.0-flash","name":"Gemini 2.0 Flash","family":"gemini-flash","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-06","release_date":"2024-12-11","last_updated":"2024-12-11","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":8192},"status":"deprecated","cost":{"input":0.1,"output":0.4,"cache_read":0.025}},"google/gemini-2.5-flash":{"id":"google/gemini-2.5-flash","name":"Gemini 2.5 Flash","family":"gemini-flash","attachment":true,"reasoning":true,"reasoning_options":[{"type":"toggle"},{"type":"budget_tokens","min":0,"max":24576}],"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-03-20","last_updated":"2025-06-05","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":0.3,"output":2.5,"cache_read":0.03,"input_audio":1}},"google/gemini-2.5-pro":{"id":"google/gemini-2.5-pro","name":"Gemini 2.5 Pro","family":"gemini-pro","attachment":true,"reasoning":true,"reasoning_options":[{"type":"budget_tokens","min":128,"max":32768}],"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-03-20","last_updated":"2025-06-05","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":1.25,"output":10,"cache_read":0.125,"tiers":[{"input":2.5,"output":15,"cache_read":0.25,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":2.5,"output":15,"cache_read":0.25}}},"google/gemini-2.0-flash-lite":{"id":"google/gemini-2.0-flash-lite","name":"Gemini 2.0 Flash-Lite","family":"gemini-flash-lite","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-06","release_date":"2024-12-11","last_updated":"2024-12-11","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":8192},"status":"deprecated","cost":{"input":0.075,"output":0.3}},"openai/gpt-5-pro":{"id":"openai/gpt-5-pro","name":"GPT-5 pro","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2025-08-07","last_updated":"2025-08-07","modalities":{"input":["text","image","pdf"],"output":["text","image"]},"open_weights":false,"limit":{"context":400000,"input":128000,"output":272000},"cost":{"input":15,"output":120}},"openai/gpt-5-chat":{"id":"openai/gpt-5-chat","name":"GPT-5 Chat","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2025-08-07","last_updated":"2025-08-07","modalities":{"input":["text","image","pdf"],"output":["text","image"]},"open_weights":false,"limit":{"context":128000,"input":111616,"output":16384},"cost":{"input":1.25,"output":10,"cache_read":0.13}},"openai/gpt-5.2":{"id":"openai/gpt-5.2","name":"GPT-5.2","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2025-08-07","last_updated":"2025-08-07","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":1.75,"output":14,"cache_read":0.18}},"openai/text-embedding-3-small":{"id":"openai/text-embedding-3-small","name":"text-embedding-3-small","family":"text-embedding","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2024-01-25","last_updated":"2024-01-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":8192,"input":6656,"output":1536},"cost":{"input":0.02,"output":0}},"openai/gpt-5.4-pro":{"id":"openai/gpt-5.4-pro","name":"GPT 5.4 Pro","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-03-05","last_updated":"2026-03-06","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1050000,"input":922000,"output":128000},"cost":{"input":30,"output":180}},"openai/text-embedding-3-large":{"id":"openai/text-embedding-3-large","name":"text-embedding-3-large","family":"text-embedding","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2024-01-25","last_updated":"2024-01-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":8192,"input":6656,"output":1536},"cost":{"input":0.13,"output":0}},"openai/gpt-5.2-pro":{"id":"openai/gpt-5.2-pro","name":"GPT 5.2 ","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2025-08-07","last_updated":"2025-08-07","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":21,"output":168}},"openai/o3-pro":{"id":"openai/o3-pro","name":"o3 Pro","family":"o-pro","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2024-10","release_date":"2025-04-16","last_updated":"2025-04-16","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"input":100000,"output":100000},"cost":{"input":20,"output":80}},"openai/gpt-4o-mini-search-preview":{"id":"openai/gpt-4o-mini-search-preview","name":"GPT 4o Mini Search Preview","family":"gpt-mini","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":true,"knowledge":"2023-09","release_date":"2025-01","last_updated":"2025-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":111616,"output":16384},"cost":{"input":0.15,"output":0.6}},"openai/gpt-5.4":{"id":"openai/gpt-5.4","name":"GPT 5.4","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-03-05","last_updated":"2026-03-06","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1050000,"input":922000,"output":128000},"cost":{"input":2.5,"output":15,"cache_read":0.25}},"openai/gpt-5.5":{"id":"openai/gpt-5.5","name":"GPT 5.5","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-04-24","last_updated":"2026-04-24","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"input":872000,"output":128000},"cost":{"input":5,"output":30,"cache_read":0.5}},"openai/gpt-oss-120b":{"id":"openai/gpt-oss-120b","name":"GPT OSS 120B","family":"gpt-oss","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":131072},"cost":{"input":0.1,"output":0.5}},"openai/gpt-5.1-codex-max":{"id":"openai/gpt-5.1-codex-max","name":"GPT 5.1 Codex Max","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2025-08-07","last_updated":"2025-08-07","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":1.25,"output":10,"cache_read":0.13}},"openai/gpt-5.1-codex-mini":{"id":"openai/gpt-5.1-codex-mini","name":"GPT-5.1 Codex mini","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2025-05-16","last_updated":"2025-05-16","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":0.25,"output":2,"cache_read":0.03}},"openai/text-embedding-ada-002":{"id":"openai/text-embedding-ada-002","name":"text-embedding-ada-002","family":"text-embedding","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2022-12-15","last_updated":"2022-12-15","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":8192,"input":6656,"output":1536},"cost":{"input":0.1,"output":0}},"openai/gpt-oss-20b":{"id":"openai/gpt-oss-20b","name":"GPT OSS 20B","family":"gpt-oss","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"input":98304,"output":32768},"cost":{"input":0.07,"output":0.3}},"openai/o3-deep-research":{"id":"openai/o3-deep-research","name":"o3-deep-research","family":"o","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2024-10","release_date":"2024-06-26","last_updated":"2024-06-26","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"input":100000,"output":100000},"cost":{"input":10,"output":40,"cache_read":2.5}},"openai/gpt-5.4-nano":{"id":"openai/gpt-5.4-nano","name":"GPT 5.4 Nano","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-03-17","last_updated":"2026-03-17","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":0.19999999999999998,"output":1.25,"cache_read":0.02}},"openai/gpt-5.3-codex":{"id":"openai/gpt-5.3-codex","name":"GPT 5.3 Codex","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-02-24","last_updated":"2026-02-24","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":1.75,"output":14,"cache_read":0.175}},"openai/gpt-5.5-pro":{"id":"openai/gpt-5.5-pro","name":"GPT 5.5 Pro","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-04-24","last_updated":"2026-04-24","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"input":872000,"output":128000},"cost":{"input":30,"output":180}},"openai/gpt-3.5-turbo":{"id":"openai/gpt-3.5-turbo","name":"GPT-3.5 Turbo","family":"gpt","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2021-09","release_date":"2023-03-01","last_updated":"2023-03-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":16385,"input":12289,"output":4096},"cost":{"input":0.5,"output":1.5}},"openai/gpt-5.2-chat":{"id":"openai/gpt-5.2-chat","name":"GPT-5.2 Chat","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2025-08-07","last_updated":"2025-08-07","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":111616,"output":16384},"cost":{"input":1.75,"output":14,"cache_read":0.18}},"openai/gpt-3.5-turbo-instruct":{"id":"openai/gpt-3.5-turbo-instruct","name":"GPT-3.5 Turbo Instruct","family":"gpt","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2021-09","release_date":"2023-03-01","last_updated":"2023-03-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":8192,"input":4096,"output":4096},"cost":{"input":1.5,"output":2}},"openai/gpt-5.1-instant":{"id":"openai/gpt-5.1-instant","name":"GPT-5.1 Instant","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2025-08-07","last_updated":"2025-08-07","modalities":{"input":["text","image","pdf"],"output":["text","image"]},"open_weights":false,"limit":{"context":128000,"input":111616,"output":16384},"cost":{"input":1.25,"output":10,"cache_read":0.13}},"openai/gpt-5.2-codex":{"id":"openai/gpt-5.2-codex","name":"GPT-5.2-Codex","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2025-12","last_updated":"2025-12","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":1.75,"output":14,"cache_read":0.175}},"openai/gpt-5.1-codex":{"id":"openai/gpt-5.1-codex","name":"GPT-5.1-Codex","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2025-08-07","last_updated":"2025-08-07","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":1.25,"output":10,"cache_read":0.13}},"openai/gpt-oss-safeguard-20b":{"id":"openai/gpt-oss-safeguard-20b","name":"gpt-oss-safeguard-20b","family":"gpt-oss","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2024-12-01","last_updated":"2024-12-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"input":65536,"output":65536},"cost":{"input":0.08,"output":0.3,"cache_read":0.04}},"openai/gpt-5.4-mini":{"id":"openai/gpt-5.4-mini","name":"GPT 5.4 Mini","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-03-17","last_updated":"2026-03-17","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":0.75,"output":4.5,"cache_read":0.075}},"openai/gpt-5.1-thinking":{"id":"openai/gpt-5.1-thinking","name":"GPT 5.1 Thinking","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2024-10","release_date":"2025-08-07","last_updated":"2025-08-07","modalities":{"input":["text","image","pdf"],"output":["text","image"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":1.25,"output":10,"cache_read":0.13}},"openai/codex-mini":{"id":"openai/codex-mini","name":"Codex Mini","family":"gpt-codex-mini","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2025-05-16","last_updated":"2025-05-16","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"input":100000,"output":100000},"cost":{"input":1.5,"output":6,"cache_read":0.38}},"openai/gpt-5.3-chat":{"id":"openai/gpt-5.3-chat","name":"GPT-5.3 Chat","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-03-03","last_updated":"2026-03-06","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":111616,"output":16384},"cost":{"input":1.75,"output":14,"cache_read":0.175}},"openai/gpt-4.1-nano":{"id":"openai/gpt-4.1-nano","name":"GPT-4.1 nano","family":"gpt-nano","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-04","release_date":"2025-04-14","last_updated":"2025-04-14","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1047576,"output":32768},"cost":{"input":0.1,"output":0.4,"cache_read":0.025}},"openai/o1":{"id":"openai/o1","name":"o1","family":"o","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2023-09","release_date":"2024-12-05","last_updated":"2024-12-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":15,"output":60,"cache_read":7.5}},"openai/gpt-4-turbo":{"id":"openai/gpt-4-turbo","name":"GPT-4 Turbo","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"structured_output":false,"temperature":true,"knowledge":"2023-12","release_date":"2023-11-06","last_updated":"2024-04-09","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":4096},"cost":{"input":10,"output":30}},"openai/gpt-4.1":{"id":"openai/gpt-4.1","name":"GPT-4.1","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-04","release_date":"2025-04-14","last_updated":"2025-04-14","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1047576,"output":32768},"cost":{"input":2,"output":8,"cache_read":0.5}},"openai/gpt-4o-mini":{"id":"openai/gpt-4o-mini","name":"GPT-4o mini","family":"gpt-mini","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2023-09","release_date":"2024-07-18","last_updated":"2024-07-18","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":0.15,"output":0.6,"cache_read":0.075}},"openai/gpt-5-nano":{"id":"openai/gpt-5-nano","name":"GPT-5 Nano","family":"gpt-nano","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-05-30","release_date":"2025-08-07","last_updated":"2025-08-07","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":0.05,"output":0.4,"cache_read":0.005}},"openai/o3-mini":{"id":"openai/o3-mini","name":"o3-mini","family":"o-mini","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-05","release_date":"2024-12-20","last_updated":"2025-01-29","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":1.1,"output":4.4,"cache_read":0.55}},"openai/o4-mini":{"id":"openai/o4-mini","name":"o4-mini","family":"o-mini","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-05","release_date":"2025-04-16","last_updated":"2025-04-16","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":1.1,"output":4.4,"cache_read":0.275}},"openai/gpt-4.1-mini":{"id":"openai/gpt-4.1-mini","name":"GPT-4.1 mini","family":"gpt-mini","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-04","release_date":"2025-04-14","last_updated":"2025-04-14","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1047576,"output":32768},"cost":{"input":0.4,"output":1.6,"cache_read":0.1}},"openai/gpt-5":{"id":"openai/gpt-5","name":"GPT-5","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-08-07","last_updated":"2025-08-07","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":1.25,"output":10,"cache_read":0.125}},"openai/o3":{"id":"openai/o3","name":"o3","family":"o","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-05","release_date":"2025-04-16","last_updated":"2025-04-16","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":2,"output":8,"cache_read":0.5}},"openai/gpt-5-codex":{"id":"openai/gpt-5-codex","name":"GPT-5-Codex","family":"gpt-codex","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-09-15","last_updated":"2025-09-15","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":1.25,"output":10,"cache_read":0.125}},"openai/gpt-4o":{"id":"openai/gpt-4o","name":"GPT-4o","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2023-09","release_date":"2024-05-13","last_updated":"2024-08-06","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":2.5,"output":10,"cache_read":1.25}},"openai/gpt-5-mini":{"id":"openai/gpt-5-mini","name":"GPT-5 Mini","family":"gpt-mini","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-05-30","release_date":"2025-08-07","last_updated":"2025-08-07","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":0.25,"output":2,"cache_read":0.025}},"bytedance/seed-1.6":{"id":"bytedance/seed-1.6","name":"Seed 1.6","family":"seed","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2025-09","last_updated":"2025-09","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":32000},"cost":{"input":0.25,"output":2,"cache_read":0.05}},"bytedance/seed-1.8":{"id":"bytedance/seed-1.8","name":"Seed 1.8","family":"seed","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2025-10","last_updated":"2025-10","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":64000},"cost":{"input":0.25,"output":2,"cache_read":0.05}},"recraft/recraft-v2":{"id":"recraft/recraft-v2","name":"Recraft V2","family":"recraft","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2024-03","last_updated":"2024-03","modalities":{"input":["text"],"output":["image"]},"open_weights":false,"limit":{"context":512,"output":0}},"recraft/recraft-v3":{"id":"recraft/recraft-v3","name":"Recraft V3","family":"recraft","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2024-10","last_updated":"2024-10","modalities":{"input":["text"],"output":["image"]},"open_weights":false,"limit":{"context":512,"output":0}},"minimax/minimax-m2.7-highspeed":{"id":"minimax/minimax-m2.7-highspeed","name":"MiniMax M2.7 High Speed","family":"minimax","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-03-18","last_updated":"2026-03-18","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131100},"cost":{"input":0.6,"output":2.4,"cache_read":0.06,"cache_write":0.375}},"minimax/minimax-m2.1":{"id":"minimax/minimax-m2.1","name":"MiniMax M2.1","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"interleaved":true,"temperature":true,"knowledge":"2024-10","release_date":"2025-10-27","last_updated":"2025-10-27","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":204800,"output":131072},"cost":{"input":0.3,"output":1.2,"cache_read":0.03,"cache_write":0.38}},"minimax/minimax-m2.7":{"id":"minimax/minimax-m2.7","name":"Minimax M2.7","family":"minimax","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-03-18","last_updated":"2026-03-18","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131000},"cost":{"input":0.3,"output":1.2,"cache_read":0.06,"cache_write":0.375}},"minimax/minimax-m2":{"id":"minimax/minimax-m2","name":"MiniMax M2","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"interleaved":true,"temperature":true,"knowledge":"2024-10","release_date":"2025-10-27","last_updated":"2025-10-27","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262114,"output":262114},"cost":{"input":0.27,"output":1.15,"cache_read":0.03,"cache_write":0.38}},"minimax/minimax-m2.5":{"id":"minimax/minimax-m2.5","name":"MiniMax M2.5","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-02-12","last_updated":"2026-02-19","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":204800,"output":131000},"cost":{"input":0.3,"output":1.2,"cache_read":0.03,"cache_write":0.375}},"minimax/minimax-m2.5-highspeed":{"id":"minimax/minimax-m2.5-highspeed","name":"MiniMax M2.5 High Speed","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-02-12","last_updated":"2026-03-13","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":0,"output":0},"cost":{"input":0.6,"output":2.4,"cache_read":0.03,"cache_write":0.375}},"minimax/minimax-m2.1-lightning":{"id":"minimax/minimax-m2.1-lightning","name":"MiniMax M2.1 Lightning","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2025-10-27","last_updated":"2025-10-27","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":204800,"output":131072},"cost":{"input":0.3,"output":2.4,"cache_read":0.03,"cache_write":0.38}}}},"abacus":{"id":"abacus","env":["ABACUS_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://routellm.abacus.ai/v1","name":"Abacus","doc":"https://abacus.ai/help/api","models":{"route-llm":{"id":"route-llm","name":"Route LLM","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2024-01-01","last_updated":"2024-01-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":3,"output":15}},"claude-sonnet-4-6":{"id":"claude-sonnet-4-6","name":"Claude Sonnet 4.6","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-08-31","release_date":"2026-02-17","last_updated":"2026-02-17","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":3,"output":15}},"gpt-5-mini":{"id":"gpt-5-mini","name":"GPT-5 Mini","family":"gpt-mini","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2024-05-30","release_date":"2025-08-07","last_updated":"2025-08-07","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":0.25,"output":2}},"gpt-5.2":{"id":"gpt-5.2","name":"GPT-5.2","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2025-12-11","last_updated":"2025-12-11","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":1.75,"output":14}},"gpt-5-codex":{"id":"gpt-5-codex","name":"GPT-5 Codex","family":"gpt","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-09-15","last_updated":"2025-09-15","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":1.25,"output":10}},"o3":{"id":"o3","name":"o3","family":"o","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2024-05","release_date":"2025-04-16","last_updated":"2025-04-16","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":2,"output":8}},"gpt-5.3-chat-latest":{"id":"gpt-5.3-chat-latest","name":"GPT-5.3 Chat Latest","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-03-01","last_updated":"2026-03-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":1.75,"output":14}},"claude-haiku-4-5-20251001":{"id":"claude-haiku-4-5-20251001","name":"Claude Haiku 4.5","family":"claude-haiku","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-02-28","release_date":"2025-10-15","last_updated":"2025-10-15","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":1,"output":5}},"gpt-4o-2024-11-20":{"id":"gpt-4o-2024-11-20","name":"GPT-4o (2024-11-20)","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2024-11-20","last_updated":"2024-11-20","modalities":{"input":["text","image","audio"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":2.5,"output":10}},"gpt-5":{"id":"gpt-5","name":"GPT-5","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-08-07","last_updated":"2025-08-07","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":1.25,"output":10}},"gemini-3.1-flash-lite-preview":{"id":"gemini-3.1-flash-lite-preview","name":"Gemini 3.1 Flash Lite Preview","family":"gemini-flash","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-03-01","last_updated":"2026-03-01","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":0.25,"output":1.5,"cache_read":0.025,"cache_write":1}},"grok-4-0709":{"id":"grok-4-0709","name":"Grok 4","family":"grok","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-07-09","last_updated":"2025-07-09","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":16384},"cost":{"input":3,"output":15}},"grok-4-fast-non-reasoning":{"id":"grok-4-fast-non-reasoning","name":"Grok 4 Fast (Non-Reasoning)","family":"grok","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2025-07-09","last_updated":"2025-07-09","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":2000000,"output":16384},"cost":{"input":0.2,"output":0.5}},"gpt-4.1-mini":{"id":"gpt-4.1-mini","name":"GPT-4.1 Mini","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-04","release_date":"2025-04-14","last_updated":"2025-04-14","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1047576,"output":32768},"cost":{"input":0.4,"output":1.6}},"o3-pro":{"id":"o3-pro","name":"o3-pro","family":"o-pro","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2024-05","release_date":"2025-06-10","last_updated":"2025-06-10","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":20,"output":40}},"claude-opus-4-20250514":{"id":"claude-opus-4-20250514","name":"Claude Opus 4","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-05-14","last_updated":"2025-05-14","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":32000},"cost":{"input":15,"output":75}},"o4-mini":{"id":"o4-mini","name":"o4-mini","family":"o-mini","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2024-05","release_date":"2025-04-16","last_updated":"2025-04-16","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":1.1,"output":4.4}},"gpt-5.4":{"id":"gpt-5.4","name":"GPT-5.4","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-03-05","last_updated":"2026-03-05","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1050000,"input":922000,"output":128000},"cost":{"input":2.5,"output":15}},"o3-mini":{"id":"o3-mini","name":"o3-mini","family":"o-mini","attachment":false,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2024-05","release_date":"2024-12-20","last_updated":"2025-01-29","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":1.1,"output":4.4}},"gemini-3-flash-preview":{"id":"gemini-3-flash-preview","name":"Gemini 3 Flash Preview","family":"gemini-flash","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-12-17","last_updated":"2025-12-17","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":0.5,"output":3}},"qwen-2.5-coder-32b":{"id":"qwen-2.5-coder-32b","name":"Qwen 2.5 Coder 32B","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2024-11-11","last_updated":"2024-11-11","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":8192},"cost":{"input":0.79,"output":0.79}},"qwen3-max":{"id":"qwen3-max","name":"Qwen3 Max","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-05-28","last_updated":"2025-05-28","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":16384},"cost":{"input":1.2,"output":6}},"gpt-5.2-chat-latest":{"id":"gpt-5.2-chat-latest","name":"GPT-5.2 Chat Latest","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-09-30","release_date":"2026-01-01","last_updated":"2026-01-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":1.75,"output":14}},"gpt-5.1":{"id":"gpt-5.1","name":"GPT-5.1","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-11-13","last_updated":"2025-11-13","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":1.25,"output":10}},"gpt-5-nano":{"id":"gpt-5-nano","name":"GPT-5 Nano","family":"gpt-nano","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2024-05-30","release_date":"2025-08-07","last_updated":"2025-08-07","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":0.05,"output":0.4}},"gpt-4o-mini":{"id":"gpt-4o-mini","name":"GPT-4o Mini","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-04","release_date":"2024-07-18","last_updated":"2024-07-18","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":0.15,"output":0.6}},"gpt-5.1-codex-max":{"id":"gpt-5.1-codex-max","name":"GPT-5.1 Codex Max","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-11-13","last_updated":"2025-11-13","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":1.25,"output":10}},"grok-4-1-fast-non-reasoning":{"id":"grok-4-1-fast-non-reasoning","name":"Grok 4.1 Fast (Non-Reasoning)","family":"grok","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2025-11-17","last_updated":"2025-11-17","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":2000000,"output":16384},"cost":{"input":0.2,"output":0.5}},"gemini-2.5-pro":{"id":"gemini-2.5-pro","name":"Gemini 2.5 Pro","family":"gemini-pro","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-03-25","last_updated":"2025-03-25","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":1.25,"output":10}},"gpt-4.1":{"id":"gpt-4.1","name":"GPT-4.1","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-04","release_date":"2025-04-14","last_updated":"2025-04-14","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1047576,"output":32768},"cost":{"input":2,"output":8}},"claude-sonnet-4-5-20250929":{"id":"claude-sonnet-4-5-20250929","name":"Claude Sonnet 4.5","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-07-31","release_date":"2025-09-29","last_updated":"2025-09-29","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":3,"output":15}},"claude-opus-4-1-20250805":{"id":"claude-opus-4-1-20250805","name":"Claude Opus 4.1","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":32000},"cost":{"input":15,"output":75}},"gemini-3.1-pro-preview":{"id":"gemini-3.1-pro-preview","name":"Gemini 3.1 Pro Preview","family":"gemini-pro","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-02-19","last_updated":"2026-02-19","modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":2,"output":12}},"gpt-5.3-codex":{"id":"gpt-5.3-codex","name":"GPT-5.3 Codex","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-02-05","last_updated":"2026-02-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":1.75,"output":14}},"gemini-2.5-flash":{"id":"gemini-2.5-flash","name":"Gemini 2.5 Flash","family":"gemini-flash","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-03-20","last_updated":"2025-06-05","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":0.3,"output":2.5}},"claude-3-7-sonnet-20250219":{"id":"claude-3-7-sonnet-20250219","name":"Claude Sonnet 3.7","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-10-31","release_date":"2025-02-19","last_updated":"2025-02-19","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":3,"output":15}},"kimi-k2-turbo-preview":{"id":"kimi-k2-turbo-preview","name":"Kimi K2 Turbo Preview","family":"kimi","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2025-07-08","last_updated":"2025-07-08","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":8192},"cost":{"input":0.15,"output":8}},"claude-opus-4-5-20251101":{"id":"claude-opus-4-5-20251101","name":"Claude Opus 4.5","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-11-01","last_updated":"2025-11-01","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":5,"output":25}},"gpt-5.2-codex":{"id":"gpt-5.2-codex","name":"GPT-5.2 Codex","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2025-12-11","last_updated":"2025-12-11","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":1.75,"output":14}},"gpt-5.1-codex":{"id":"gpt-5.1-codex","name":"GPT-5.1 Codex","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-11-13","last_updated":"2025-11-13","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":1.25,"output":10}},"claude-sonnet-4-20250514":{"id":"claude-sonnet-4-20250514","name":"Claude Sonnet 4","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-05-14","last_updated":"2025-05-14","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"cost":{"input":3,"output":15}},"llama-3.3-70b-versatile":{"id":"llama-3.3-70b-versatile","name":"Llama 3.3 70B Versatile","family":"llama","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2024-12-06","last_updated":"2024-12-06","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":32768},"cost":{"input":0.59,"output":0.79}},"claude-opus-4-6":{"id":"claude-opus-4-6","name":"Claude Opus 4.6","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-05-31","release_date":"2026-02-05","last_updated":"2026-02-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":128000},"cost":{"input":5,"output":25}},"gpt-5.1-chat-latest":{"id":"gpt-5.1-chat-latest","name":"GPT-5.1 Chat Latest","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-11-13","last_updated":"2025-11-13","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"output":128000},"cost":{"input":1.25,"output":10}},"kimi-k2.5":{"id":"kimi-k2.5","name":"Kimi K2.5","family":"kimi","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-01","last_updated":"2026-01","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":32768},"cost":{"input":0.6,"output":3}},"gpt-5.3-codex-xhigh":{"id":"gpt-5.3-codex-xhigh","name":"GPT-5.3 Codex XHigh","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-02-05","last_updated":"2026-02-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":1.75,"output":14}},"grok-code-fast-1":{"id":"grok-code-fast-1","name":"Grok Code Fast 1","family":"grok","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2025-09-01","last_updated":"2025-09-01","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":16384},"cost":{"input":0.2,"output":1.5}},"gpt-4.1-nano":{"id":"gpt-4.1-nano","name":"GPT-4.1 Nano","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-04","release_date":"2025-04-14","last_updated":"2025-04-14","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1047576,"output":32768},"cost":{"input":0.1,"output":0.4}},"deepseek/deepseek-v3.1":{"id":"deepseek/deepseek-v3.1","name":"DeepSeek V3.1","family":"deepseek","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-01-20","last_updated":"2025-01-20","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":8192},"cost":{"input":0.55,"output":1.66}},"zai-org/glm-4.6":{"id":"zai-org/glm-4.6","name":"GLM-4.6","family":"glm","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2025-03-01","last_updated":"2025-03-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":8192},"cost":{"input":0.6,"output":2.2}},"zai-org/glm-4.7":{"id":"zai-org/glm-4.7","name":"GLM-4.7","family":"glm","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2025-06-01","last_updated":"2025-06-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":8192},"cost":{"input":0.6,"output":2.2}},"zai-org/glm-5":{"id":"zai-org/glm-5","name":"GLM-5","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-02-11","last_updated":"2026-02-11","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":1,"output":3.2}},"zai-org/glm-4.5":{"id":"zai-org/glm-4.5","name":"GLM-4.5","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-07-28","last_updated":"2025-07-28","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":8192},"cost":{"input":0.6,"output":2.2}},"meta-llama/Llama-4-Maverick-17B-128E-Instruct-FP8":{"id":"meta-llama/Llama-4-Maverick-17B-128E-Instruct-FP8","name":"Llama 4 Maverick 17B 128E Instruct FP8","family":"llama","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-08","release_date":"2025-04-05","last_updated":"2025-04-05","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":1000000,"output":32768},"cost":{"input":0.14,"output":0.59}},"meta-llama/Meta-Llama-3.1-8B-Instruct":{"id":"meta-llama/Meta-Llama-3.1-8B-Instruct","name":"Llama 3.1 8B Instruct","family":"llama","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2024-07-23","last_updated":"2024-07-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4096},"cost":{"input":0.02,"output":0.05}},"meta-llama/Meta-Llama-3.1-405B-Instruct-Turbo":{"id":"meta-llama/Meta-Llama-3.1-405B-Instruct-Turbo","name":"Llama 3.1 405B Instruct Turbo","family":"llama","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2024-07-23","last_updated":"2024-07-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4096},"cost":{"input":3.5,"output":3.5}},"deepseek-ai/DeepSeek-V3.1-Terminus":{"id":"deepseek-ai/DeepSeek-V3.1-Terminus","name":"DeepSeek V3.1 Terminus","family":"deepseek","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-06-01","last_updated":"2025-06-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":8192},"cost":{"input":0.27,"output":1}},"deepseek-ai/DeepSeek-V3.2":{"id":"deepseek-ai/DeepSeek-V3.2","name":"DeepSeek V3.2","family":"deepseek","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-06-15","last_updated":"2025-06-15","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":8192},"cost":{"input":0.27,"output":0.4}},"deepseek-ai/DeepSeek-R1":{"id":"deepseek-ai/DeepSeek-R1","name":"DeepSeek R1","family":"deepseek-thinking","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-01-20","last_updated":"2025-01-20","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":8192},"cost":{"input":3,"output":7}},"Qwen/QwQ-32B":{"id":"Qwen/QwQ-32B","name":"QwQ 32B","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2024-11-28","last_updated":"2024-11-28","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":32768,"output":32768},"cost":{"input":0.4,"output":0.4}},"Qwen/Qwen2.5-72B-Instruct":{"id":"Qwen/Qwen2.5-72B-Instruct","name":"Qwen 2.5 72B Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2024-09-19","last_updated":"2024-09-19","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":8192},"cost":{"input":0.11,"output":0.38}},"Qwen/qwen3-coder-480b-a35b-instruct":{"id":"Qwen/qwen3-coder-480b-a35b-instruct","name":"Qwen3 Coder 480B A35B Instruct","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-07-22","last_updated":"2025-07-22","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":65536},"cost":{"input":0.29,"output":1.2}},"Qwen/Qwen3-235B-A22B-Instruct-2507":{"id":"Qwen/Qwen3-235B-A22B-Instruct-2507","name":"Qwen3 235B A22B Instruct","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-07-01","last_updated":"2025-07-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":8192},"cost":{"input":0.13,"output":0.6}},"Qwen/Qwen3-32B":{"id":"Qwen/Qwen3-32B","name":"Qwen3 32B","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-04-29","last_updated":"2025-04-29","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":8192},"cost":{"input":0.09,"output":0.29}},"openai/gpt-oss-120b":{"id":"openai/gpt-oss-120b","name":"GPT-OSS 120B","family":"gpt-oss","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":32768},"cost":{"input":0.08,"output":0.44}}}},"drun":{"id":"drun","env":["DRUN_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://chat.d.run/v1","name":"D.Run (China)","doc":"https://www.d.run","models":{"public/deepseek-r1":{"id":"public/deepseek-r1","name":"DeepSeek R1","family":"deepseek-thinking","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2024-12","release_date":"2025-01-20","last_updated":"2025-01-20","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":32000},"cost":{"input":0.55,"output":2.2}},"public/minimax-m25":{"id":"public/minimax-m25","name":"MiniMax M2.5","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_details"},"temperature":true,"release_date":"2025-03-01","last_updated":"2025-03-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":204800,"output":131072},"cost":{"input":0.29,"output":1.16}},"public/deepseek-v3":{"id":"public/deepseek-v3","name":"DeepSeek V3","family":"deepseek","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-07","release_date":"2024-12-26","last_updated":"2024-12-26","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":8192},"cost":{"input":0.28,"output":1.1}}}},"google":{"id":"google","env":["GOOGLE_API_KEY","GOOGLE_GENERATIVE_AI_API_KEY","GEMINI_API_KEY"],"npm":"@ai-sdk/google","name":"Google","doc":"https://ai.google.dev/gemini-api/docs/models","models":{"gemini-2.5-flash-preview-tts":{"id":"gemini-2.5-flash-preview-tts","name":"Gemini 2.5 Flash Preview TTS","family":"gemini-flash","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2025-01","release_date":"2025-05-01","last_updated":"2025-05-01","modalities":{"input":["text"],"output":["audio"]},"open_weights":false,"limit":{"context":8192,"output":16384},"cost":{"input":0.5,"output":10}},"gemini-2.5-flash-tts":{"id":"gemini-2.5-flash-tts","name":"Gemini 2.5 Flash TTS","family":"gemini-flash","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2025-01","release_date":"2025-09-30","last_updated":"2025-12-10","modalities":{"input":["text"],"output":["audio"]},"open_weights":false,"limit":{"context":32768,"output":16384},"cost":{"input":0.5,"output":10}},"gemini-2.5-flash-image":{"id":"gemini-2.5-flash-image","name":"Nano Banana","family":"gemini-flash","attachment":true,"reasoning":true,"tool_call":false,"temperature":true,"knowledge":"2025-06","release_date":"2025-08-26","last_updated":"2025-08-26","modalities":{"input":["text","image"],"output":["text","image"]},"open_weights":false,"limit":{"context":32768,"output":32768},"cost":{"input":0.3,"output":30,"cache_read":0.075}},"gemini-3.1-flash-lite-preview":{"id":"gemini-3.1-flash-lite-preview","name":"Gemini 3.1 Flash Lite Preview","family":"gemini-flash-lite","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-03-03","last_updated":"2026-03-03","modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"status":"deprecated","cost":{"input":0.25,"output":1.5,"cache_read":0.025,"input_audio":0.5}},"gemini-2.0-flash-lite":{"id":"gemini-2.0-flash-lite","name":"Gemini 2.0 Flash-Lite","family":"gemini-flash-lite","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-06","release_date":"2024-12-11","last_updated":"2024-12-11","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":8192},"status":"deprecated","cost":{"input":0.075,"output":0.3}},"gemma-4-31b-it":{"id":"gemma-4-31b-it","name":"Gemma 4 31B IT","family":"gemma","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-04-02","last_updated":"2026-04-02","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":32768}},"gemini-flash-lite-latest":{"id":"gemini-flash-lite-latest","name":"Gemini Flash-Lite Latest","family":"gemini-flash-lite","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-09-25","last_updated":"2025-09-25","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":0.1,"output":0.4,"cache_read":0.025}},"gemini-3-flash-preview":{"id":"gemini-3-flash-preview","name":"Gemini 3 Flash Preview","family":"gemini-flash","attachment":true,"reasoning":true,"reasoning_options":[{"type":"effort","values":["minimal","low","medium","high"]}],"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-12-17","last_updated":"2025-12-17","modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":0.5,"output":3,"cache_read":0.05,"input_audio":1}},"gemini-3.1-pro-preview-customtools":{"id":"gemini-3.1-pro-preview-customtools","name":"Gemini 3.1 Pro Preview Custom Tools","family":"gemini-pro","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-02-19","last_updated":"2026-02-19","modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":2,"output":12,"cache_read":0.2,"tiers":[{"input":4,"output":18,"cache_read":0.4,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":4,"output":18,"cache_read":0.4}}},"gemini-flash-latest":{"id":"gemini-flash-latest","name":"Gemini Flash Latest","family":"gemini-flash","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-09-25","last_updated":"2025-09-25","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":0.3,"output":2.5,"cache_read":0.075,"input_audio":1}},"gemini-2.5-pro":{"id":"gemini-2.5-pro","name":"Gemini 2.5 Pro","family":"gemini-pro","attachment":true,"reasoning":true,"reasoning_options":[{"type":"budget_tokens","min":128,"max":32768}],"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-03-20","last_updated":"2025-06-05","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":1.25,"output":10,"cache_read":0.125,"tiers":[{"input":2.5,"output":15,"cache_read":0.25,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":2.5,"output":15,"cache_read":0.25}}},"gemini-3.1-pro-preview":{"id":"gemini-3.1-pro-preview","name":"Gemini 3.1 Pro Preview","family":"gemini-pro","attachment":true,"reasoning":true,"reasoning_options":[{"type":"effort","values":["low","medium","high"]}],"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-02-19","last_updated":"2026-02-19","modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":2,"output":12,"cache_read":0.2,"tiers":[{"input":4,"output":18,"cache_read":0.4,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":4,"output":18,"cache_read":0.4}}},"gemini-3.1-flash-lite":{"id":"gemini-3.1-flash-lite","name":"Gemini 3.1 Flash Lite","family":"gemini-flash-lite","attachment":true,"reasoning":true,"reasoning_options":[{"type":"effort","values":["minimal","low","medium","high"]}],"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-05-07","last_updated":"2026-05-07","modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":0.25,"output":1.5,"cache_read":0.025,"input_audio":0.5}},"gemini-2.5-flash-lite":{"id":"gemini-2.5-flash-lite","name":"Gemini 2.5 Flash-Lite","family":"gemini-flash-lite","attachment":true,"reasoning":true,"reasoning_options":[{"type":"toggle"},{"type":"budget_tokens","min":512,"max":24576}],"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-06-17","last_updated":"2025-06-17","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":0.1,"output":0.4,"cache_read":0.01,"input_audio":0.3}},"gemini-2.5-flash":{"id":"gemini-2.5-flash","name":"Gemini 2.5 Flash","family":"gemini-flash","attachment":true,"reasoning":true,"reasoning_options":[{"type":"toggle"},{"type":"budget_tokens","min":0,"max":24576}],"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-03-20","last_updated":"2025-06-05","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":0.3,"output":2.5,"cache_read":0.03,"input_audio":1}},"gemma-4-26b-a4b-it":{"id":"gemma-4-26b-a4b-it","name":"Gemma 4 26B A4B IT","family":"gemma","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-04-02","last_updated":"2026-04-02","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":32768}},"gemini-2.0-flash":{"id":"gemini-2.0-flash","name":"Gemini 2.0 Flash","family":"gemini-flash","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-06","release_date":"2024-12-11","last_updated":"2024-12-11","modalities":{"input":["text","image","audio","video","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":8192},"status":"deprecated","cost":{"input":0.1,"output":0.4,"cache_read":0.025}},"gemini-3.5-flash":{"id":"gemini-3.5-flash","name":"Gemini 3.5 Flash","family":"gemini-flash","attachment":true,"reasoning":true,"reasoning_options":[{"type":"effort","values":["minimal","low","medium","high"]}],"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-05-19","last_updated":"2026-05-19","modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"cost":{"input":1.5,"output":9,"cache_read":0.15,"input_audio":1.5}},"gemini-3-pro-preview":{"id":"gemini-3-pro-preview","name":"Gemini 3 Pro Preview","family":"gemini-pro","attachment":true,"reasoning":true,"reasoning_options":[{"type":"effort","values":["low","high"]}],"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-11-18","last_updated":"2025-11-18","modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"status":"deprecated","cost":{"input":2,"output":12,"cache_read":0.2,"tiers":[{"input":4,"output":18,"cache_read":0.4,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":4,"output":18,"cache_read":0.4}}},"gemini-embedding-001":{"id":"gemini-embedding-001","name":"Gemini Embedding 001","family":"gemini","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"knowledge":"2025-05","release_date":"2025-05-20","last_updated":"2025-05-20","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":2048,"output":1},"cost":{"input":0.15,"output":0}},"gemini-2.5-pro-preview-tts":{"id":"gemini-2.5-pro-preview-tts","name":"Gemini 2.5 Pro Preview TTS","family":"gemini-flash","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"knowledge":"2025-01","release_date":"2025-05-01","last_updated":"2025-05-01","modalities":{"input":["text"],"output":["audio"]},"open_weights":false,"limit":{"context":8192,"output":16384},"cost":{"input":1,"output":20}},"gemini-3-pro-image-preview":{"id":"gemini-3-pro-image-preview","name":"Nano Banana Pro","family":"gemini-pro","attachment":true,"reasoning":true,"tool_call":false,"temperature":true,"knowledge":"2025-01","release_date":"2025-11-20","last_updated":"2025-11-20","modalities":{"input":["text","image"],"output":["text","image"]},"open_weights":false,"limit":{"context":65536,"output":32768},"cost":{"input":2,"output":120}},"gemini-3.1-flash-image-preview":{"id":"gemini-3.1-flash-image-preview","name":"Nano Banana 2","family":"gemini-flash","attachment":true,"reasoning":true,"tool_call":false,"temperature":true,"knowledge":"2025-01","release_date":"2026-02-26","last_updated":"2026-02-26","modalities":{"input":["text","image","pdf"],"output":["text","image"]},"open_weights":false,"limit":{"context":65536,"output":65536},"cost":{"input":0.5,"output":60}}}},"wandb":{"id":"wandb","env":["WANDB_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://api.inference.wandb.ai/v1","name":"Weights & Biases","doc":"https://docs.wandb.ai/guides/integrations/inference/","models":{"MiniMaxAI/MiniMax-M2.5":{"id":"MiniMaxAI/MiniMax-M2.5","name":"MiniMax M2.5","family":"minimax","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-02-12","last_updated":"2026-03-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":196608,"output":196608},"cost":{"input":0.3,"output":1.2}},"zai-org/GLM-5.1":{"id":"zai-org/GLM-5.1","name":"GLM-5.1","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-03-27","last_updated":"2026-03-27","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":200000,"output":131072},"cost":{"input":1.4,"output":4.4,"cache_read":0.26,"cache_write":0}},"zai-org/GLM-5-FP8":{"id":"zai-org/GLM-5-FP8","name":"GLM 5","family":"glm","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-02-11","last_updated":"2026-03-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":200000,"output":200000},"cost":{"input":1,"output":3.2}},"OpenPipe/Qwen3-14B-Instruct":{"id":"OpenPipe/Qwen3-14B-Instruct","name":"OpenPipe Qwen3 14B Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-04-29","last_updated":"2026-03-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":32768,"output":32768},"cost":{"input":0.05,"output":0.22}},"moonshotai/Kimi-K2.5":{"id":"moonshotai/Kimi-K2.5","name":"Kimi K2.5","family":"kimi","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-01-27","last_updated":"2026-03-12","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.5,"output":2.85}},"meta-llama/Llama-3.1-70B-Instruct":{"id":"meta-llama/Llama-3.1-70B-Instruct","name":"Llama 3.1 70B","family":"llama","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2024-07-23","last_updated":"2026-03-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":128000},"cost":{"input":0.8,"output":0.8}},"meta-llama/Llama-3.1-8B-Instruct":{"id":"meta-llama/Llama-3.1-8B-Instruct","name":"Meta-Llama-3.1-8B-Instruct","family":"llama","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2023-12","release_date":"2024-07-23","last_updated":"2026-03-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":128000},"cost":{"input":0.22,"output":0.22}},"meta-llama/Llama-3.3-70B-Instruct":{"id":"meta-llama/Llama-3.3-70B-Instruct","name":"Llama-3.3-70B-Instruct","family":"llama","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2023-12","release_date":"2024-12-06","last_updated":"2026-03-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":128000},"cost":{"input":0.71,"output":0.71}},"meta-llama/Llama-4-Scout-17B-16E-Instruct":{"id":"meta-llama/Llama-4-Scout-17B-16E-Instruct","name":"Llama 4 Scout 17B 16E Instruct","family":"llama","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-12","release_date":"2025-01-31","last_updated":"2026-03-12","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":64000,"output":64000},"cost":{"input":0.17,"output":0.66}},"deepseek-ai/DeepSeek-V3.1":{"id":"deepseek-ai/DeepSeek-V3.1","name":"DeepSeek V3.1","family":"deepseek","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-08-21","last_updated":"2026-03-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":161000,"output":161000},"cost":{"input":0.55,"output":1.65}},"nvidia/NVIDIA-Nemotron-3-Super-120B-A12B-FP8":{"id":"nvidia/NVIDIA-Nemotron-3-Super-120B-A12B-FP8","name":"NVIDIA Nemotron 3 Super 120B","family":"nemotron","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-03-11","last_updated":"2026-03-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.2,"output":0.8}},"microsoft/Phi-4-mini-instruct":{"id":"microsoft/Phi-4-mini-instruct","name":"Phi-4-mini-instruct","family":"phi","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2023-10","release_date":"2024-12-11","last_updated":"2026-03-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":128000},"cost":{"input":0.08,"output":0.35}},"Qwen/Qwen3-Coder-480B-A35B-Instruct":{"id":"Qwen/Qwen3-Coder-480B-A35B-Instruct","name":"Qwen3-Coder-480B-A35B-Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-07-23","last_updated":"2026-03-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":1,"output":1.5}},"Qwen/Qwen3-30B-A3B-Instruct-2507":{"id":"Qwen/Qwen3-30B-A3B-Instruct-2507","name":"Qwen3 30B A3B Instruct 2507","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-07-29","last_updated":"2026-03-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.1,"output":0.3}},"Qwen/Qwen3-235B-A22B-Thinking-2507":{"id":"Qwen/Qwen3-235B-A22B-Thinking-2507","name":"Qwen3-235B-A22B-Thinking-2507","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-07-25","last_updated":"2026-03-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.1,"output":0.1}},"Qwen/Qwen3-235B-A22B-Instruct-2507":{"id":"Qwen/Qwen3-235B-A22B-Instruct-2507","name":"Qwen3 235B A22B Instruct 2507","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-04-28","last_updated":"2026-03-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.1,"output":0.1}},"openai/gpt-oss-120b":{"id":"openai/gpt-oss-120b","name":"gpt-oss-120b","family":"gpt-oss","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-08-05","last_updated":"2026-03-12","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":131072},"cost":{"input":0.15,"output":0.6}},"openai/gpt-oss-20b":{"id":"openai/gpt-oss-20b","name":"gpt-oss-20b","family":"gpt-oss","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-08-05","last_updated":"2026-03-12","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131072,"output":131072},"cost":{"input":0.05,"output":0.2}}}},"meganova":{"id":"meganova","env":["MEGANOVA_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://api.meganova.ai/v1","name":"Meganova","doc":"https://docs.meganova.ai","models":{"XiaomiMiMo/MiMo-V2-Flash":{"id":"XiaomiMiMo/MiMo-V2-Flash","name":"MiMo V2 Flash","family":"mimo","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-12-01","release_date":"2025-12-17","last_updated":"2025-12-17","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":32000},"cost":{"input":0.1,"output":0.3}},"mistralai/Mistral-Nemo-Instruct-2407":{"id":"mistralai/Mistral-Nemo-Instruct-2407","name":"Mistral Nemo Instruct 2407","family":"mistral","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2024-07-18","last_updated":"2024-07-18","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":65536},"cost":{"input":0.02,"output":0.04}},"mistralai/Mistral-Small-3.2-24B-Instruct-2506":{"id":"mistralai/Mistral-Small-3.2-24B-Instruct-2506","name":"Mistral Small 3.2 24B Instruct","family":"mistral-small","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-10","release_date":"2025-06-20","last_updated":"2025-06-20","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":32768,"output":8192},"cost":{"input":0,"output":0}},"MiniMaxAI/MiniMax-M2.5":{"id":"MiniMaxAI/MiniMax-M2.5","name":"MiniMax M2.5","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"release_date":"2026-02-12","last_updated":"2026-02-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0.3,"output":1.2}},"MiniMaxAI/MiniMax-M2.1":{"id":"MiniMaxAI/MiniMax-M2.1","name":"MiniMax M2.1","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"release_date":"2025-12-23","last_updated":"2025-12-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":196608,"output":131072},"cost":{"input":0.28,"output":1.2}},"zai-org/GLM-4.7":{"id":"zai-org/GLM-4.7","name":"GLM-4.7","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2025-04","release_date":"2025-12-22","last_updated":"2025-12-22","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":202752,"output":131072},"cost":{"input":0.2,"output":0.8}},"zai-org/GLM-5":{"id":"zai-org/GLM-5","name":"GLM-5","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"release_date":"2026-02-11","last_updated":"2026-02-11","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":202752,"output":131072},"cost":{"input":0.8,"output":2.56}},"zai-org/GLM-4.6":{"id":"zai-org/GLM-4.6","name":"GLM-4.6","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2025-04","release_date":"2025-09-30","last_updated":"2025-09-30","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":202752,"output":131072},"cost":{"input":0.45,"output":1.9}},"moonshotai/Kimi-K2.5":{"id":"moonshotai/Kimi-K2.5","name":"Kimi K2.5","family":"kimi","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2026-01","release_date":"2026-01-27","last_updated":"2026-01-27","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.45,"output":2.8}},"moonshotai/Kimi-K2-Thinking":{"id":"moonshotai/Kimi-K2-Thinking","name":"Kimi K2 Thinking","family":"kimi-thinking","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2024-08","release_date":"2025-11-06","last_updated":"2025-11-06","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.6,"output":2.6}},"meta-llama/Llama-3.3-70B-Instruct":{"id":"meta-llama/Llama-3.3-70B-Instruct","name":"Llama 3.3 70B Instruct","family":"llama","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2024-12-06","last_updated":"2024-12-06","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":16384},"cost":{"input":0.1,"output":0.3}},"deepseek-ai/DeepSeek-V3.1":{"id":"deepseek-ai/DeepSeek-V3.1","name":"DeepSeek V3.1","family":"deepseek","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-08-25","last_updated":"2025-08-25","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":164000,"output":164000},"cost":{"input":0.27,"output":1}},"deepseek-ai/DeepSeek-V3.2":{"id":"deepseek-ai/DeepSeek-V3.2","name":"DeepSeek V3.2","family":"deepseek","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-12-03","last_updated":"2025-12-03","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":164000,"output":164000},"cost":{"input":0.26,"output":0.38}},"deepseek-ai/DeepSeek-V3-0324":{"id":"deepseek-ai/DeepSeek-V3-0324","name":"DeepSeek V3 0324","family":"deepseek","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2025-03-24","last_updated":"2025-03-24","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":163840,"output":163840},"cost":{"input":0.25,"output":0.88}},"deepseek-ai/DeepSeek-V3.2-Exp":{"id":"deepseek-ai/DeepSeek-V3.2-Exp","name":"DeepSeek V3.2 Exp","family":"deepseek","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-10-10","last_updated":"2025-10-10","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":164000,"output":164000},"cost":{"input":0.27,"output":0.4}},"deepseek-ai/DeepSeek-R1-0528":{"id":"deepseek-ai/DeepSeek-R1-0528","name":"DeepSeek R1 0528","family":"deepseek-thinking","attachment":false,"reasoning":true,"tool_call":false,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2024-07","release_date":"2025-05-28","last_updated":"2025-05-28","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":163840,"output":64000},"cost":{"input":0.5,"output":2.15}},"Qwen/Qwen3.5-Plus":{"id":"Qwen/Qwen3.5-Plus","name":"Qwen3.5 Plus","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2026-02","last_updated":"2026-02","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":65536},"cost":{"input":0.4,"output":2.4,"reasoning":2.4}},"Qwen/Qwen3-235B-A22B-Instruct-2507":{"id":"Qwen/Qwen3-235B-A22B-Instruct-2507","name":"Qwen3 235B A22B Instruct 2507","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-07-23","last_updated":"2025-07-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262000,"output":262000},"cost":{"input":0.09,"output":0.6}},"Qwen/Qwen2.5-VL-32B-Instruct":{"id":"Qwen/Qwen2.5-VL-32B-Instruct","name":"Qwen2.5 VL 32B Instruct","family":"qwen","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-03-24","last_updated":"2025-03-24","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":16384,"output":16384},"cost":{"input":0.2,"output":0.6}}}},"opencode":{"id":"opencode","env":["OPENCODE_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://opencode.ai/zen/v1","name":"OpenCode Zen","doc":"https://opencode.ai/docs/zen","models":{"claude-opus-4-5":{"id":"claude-opus-4-5","name":"Claude Opus 4.5","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-11-24","last_updated":"2025-11-24","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"provider":{"npm":"@ai-sdk/anthropic"},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25}},"mimo-v2-flash-free":{"id":"mimo-v2-flash-free","name":"MiMo V2 Flash Free","family":"mimo-flash-free","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2024-12","release_date":"2025-12-16","last_updated":"2025-12-16","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":65536},"status":"deprecated","cost":{"input":0,"output":0,"cache_read":0}},"claude-sonnet-4":{"id":"claude-sonnet-4","name":"Claude Sonnet 4","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-05-22","last_updated":"2025-05-22","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":64000},"provider":{"npm":"@ai-sdk/anthropic"},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75,"tiers":[{"input":6,"output":22.5,"cache_read":0.6,"cache_write":7.5,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":6,"output":22.5,"cache_read":0.6,"cache_write":7.5}}},"claude-sonnet-4-6":{"id":"claude-sonnet-4-6","name":"Claude Sonnet 4.6","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"interleaved":true,"temperature":true,"knowledge":"2025-08-31","release_date":"2026-02-17","last_updated":"2026-02-17","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":64000},"provider":{"npm":"@ai-sdk/anthropic"},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75}},"grok-build-0.1":{"id":"grok-build-0.1","name":"Grok Build 0.1","family":"grok-build","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-05-20","last_updated":"2026-05-20","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":256000},"cost":{"input":1,"output":2,"cache_read":0.2}},"gpt-5.2":{"id":"gpt-5.2","name":"GPT-5.2","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2025-12-11","last_updated":"2025-12-11","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"provider":{"npm":"@ai-sdk/openai"},"cost":{"input":1.75,"output":14,"cache_read":0.175}},"gpt-5-codex":{"id":"gpt-5-codex","name":"GPT-5 Codex","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-09-15","last_updated":"2025-09-15","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"provider":{"npm":"@ai-sdk/openai"},"cost":{"input":1.07,"output":8.5,"cache_read":0.107}},"hy3-preview-free":{"id":"hy3-preview-free","name":"Hy3 preview Free","family":"hy3-free","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-06","release_date":"2026-04-20","last_updated":"2026-04-20","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"output":64000},"status":"deprecated","cost":{"input":0,"output":0,"cache_read":0}},"glm-4.6":{"id":"glm-4.6","name":"GLM-4.6","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-09-30","last_updated":"2025-09-30","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"status":"deprecated","cost":{"input":0.6,"output":2.2,"cache_read":0.1}},"kimi-k2-thinking":{"id":"kimi-k2-thinking","name":"Kimi K2 Thinking","family":"kimi-thinking","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2024-10","release_date":"2025-09-05","last_updated":"2025-09-05","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"status":"deprecated","cost":{"input":0.4,"output":2.5,"cache_read":0.4}},"gemini-3-pro":{"id":"gemini-3-pro","name":"Gemini 3 Pro","family":"gemini-pro","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-11-18","last_updated":"2025-11-18","modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"status":"deprecated","provider":{"npm":"@ai-sdk/google"},"cost":{"input":2,"output":12,"cache_read":0.2,"tiers":[{"input":4,"output":18,"cache_read":0.4,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":4,"output":18,"cache_read":0.4}}},"gpt-5":{"id":"gpt-5","name":"GPT-5","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-08-07","last_updated":"2025-08-07","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"provider":{"npm":"@ai-sdk/openai"},"cost":{"input":1.07,"output":8.5,"cache_read":0.107}},"claude-haiku-4-5":{"id":"claude-haiku-4-5","name":"Claude Haiku 4.5","family":"claude-haiku","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-02-28","release_date":"2025-10-15","last_updated":"2025-10-15","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":64000},"provider":{"npm":"@ai-sdk/anthropic"},"cost":{"input":1,"output":5,"cache_read":0.1,"cache_write":1.25}},"gpt-5.4-pro":{"id":"gpt-5.4-pro","name":"GPT-5.4 Pro","family":"gpt-pro","attachment":true,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-03-05","last_updated":"2026-03-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1050000,"input":922000,"output":128000},"provider":{"npm":"@ai-sdk/openai"},"cost":{"input":30,"output":180,"cache_read":30}},"gpt-5.4":{"id":"gpt-5.4","name":"GPT-5.4","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-03-05","last_updated":"2026-03-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1050000,"input":922000,"output":128000},"provider":{"npm":"@ai-sdk/openai"},"cost":{"input":2.5,"output":15,"cache_read":0.25,"tiers":[{"input":5,"output":22.5,"cache_read":0.5,"tier":{"type":"context","size":272000}}],"context_over_200k":{"input":5,"output":22.5,"cache_read":0.5}}},"qwen3.5-plus":{"id":"qwen3.5-plus","name":"Qwen3.5 Plus","family":"qwen3.5","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2026-02-16","last_updated":"2026-02-16","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"output":65536},"provider":{"npm":"@ai-sdk/anthropic"},"cost":{"input":0.2,"output":1.2,"cache_read":0.02,"cache_write":0.25}},"minimax-m2.1":{"id":"minimax-m2.1","name":"MiniMax M2.1","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2025-01","release_date":"2025-12-23","last_updated":"2025-12-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"status":"deprecated","cost":{"input":0.3,"output":1.2,"cache_read":0.1}},"gpt-5.5":{"id":"gpt-5.5","name":"GPT-5.5","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-12-01","release_date":"2026-04-23","last_updated":"2026-04-23","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1050000,"input":922000,"output":128000},"provider":{"npm":"@ai-sdk/openai"},"cost":{"input":5,"output":30,"cache_read":0.5,"tiers":[{"input":10,"output":45,"cache_read":1,"tier":{"type":"context","size":272000}}],"context_over_200k":{"input":10,"output":45,"cache_read":1}}},"kimi-k2.6":{"id":"kimi-k2.6","name":"Kimi K2.6","family":"kimi","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2024-10","release_date":"2026-04-21","last_updated":"2026-04-21","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":65536},"cost":{"input":0.95,"output":4,"cache_read":0.16}},"glm-4.7":{"id":"glm-4.7","name":"GLM-4.7","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2025-04","release_date":"2025-12-22","last_updated":"2025-12-22","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"status":"deprecated","cost":{"input":0.6,"output":2.2,"cache_read":0.1}},"gpt-5.1":{"id":"gpt-5.1","name":"GPT-5.1","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-11-13","last_updated":"2025-11-13","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"provider":{"npm":"@ai-sdk/openai"},"cost":{"input":1.07,"output":8.5,"cache_read":0.107}},"gpt-5-nano":{"id":"gpt-5-nano","name":"GPT-5 Nano","family":"gpt-nano","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-05-30","release_date":"2025-08-07","last_updated":"2025-08-07","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"provider":{"npm":"@ai-sdk/openai"},"cost":{"input":0.05,"output":0.4,"cache_read":0.005}},"claude-opus-4-1":{"id":"claude-opus-4-1","name":"Claude Opus 4.1","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-03-31","release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":32000},"provider":{"npm":"@ai-sdk/anthropic"},"cost":{"input":15,"output":75,"cache_read":1.5,"cache_write":18.75}},"gpt-5.1-codex-max":{"id":"gpt-5.1-codex-max","name":"GPT-5.1 Codex Max","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-11-13","last_updated":"2025-11-13","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"provider":{"npm":"@ai-sdk/openai"},"cost":{"input":1.25,"output":10,"cache_read":0.125}},"gpt-5.1-codex-mini":{"id":"gpt-5.1-codex-mini","name":"GPT-5.1 Codex Mini","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-11-13","last_updated":"2025-11-13","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"provider":{"npm":"@ai-sdk/openai"},"cost":{"input":0.25,"output":2,"cache_read":0.025}},"mimo-v2-omni-free":{"id":"mimo-v2-omni-free","name":"MiMo V2 Omni Free","family":"mimo-omni-free","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2024-12","release_date":"2026-03-18","last_updated":"2026-03-18","modalities":{"input":["text","image","audio","pdf"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":64000},"status":"deprecated","cost":{"input":0,"output":0,"cache_read":0}},"ring-2.6-1t-free":{"id":"ring-2.6-1t-free","name":"Ring 2.6 1T Free","family":"ring-1t-free","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2025-06","release_date":"2026-05-08","last_updated":"2026-05-08","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262000,"output":66000},"status":"deprecated","cost":{"input":0,"output":0}},"nemotron-3-ultra-free":{"id":"nemotron-3-ultra-free","name":"Nemotron 3 Ultra Free","family":"nemotron-free","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2026-02","release_date":"2026-06-04","last_updated":"2026-06-04","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1000000,"output":128000},"cost":{"input":0,"output":0,"cache_read":0}},"trinity-large-preview-free":{"id":"trinity-large-preview-free","name":"Trinity Large Preview","family":"trinity","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-06","release_date":"2026-01-28","last_updated":"2026-01-28","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":131072},"status":"deprecated","cost":{"input":0,"output":0}},"gemini-3-flash":{"id":"gemini-3-flash","name":"Gemini 3 Flash","family":"gemini-flash","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-12-17","last_updated":"2025-12-17","modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"provider":{"npm":"@ai-sdk/google"},"cost":{"input":0.5,"output":3,"cache_read":0.05}},"qwen3.6-plus":{"id":"qwen3.6-plus","name":"Qwen3.6 Plus","family":"qwen3.6","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2026-04-02","last_updated":"2026-04-02","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"output":65536},"provider":{"npm":"@ai-sdk/anthropic"},"cost":{"input":0.5,"output":3,"cache_read":0.05,"cache_write":0.625}},"mimo-v2.5-free":{"id":"mimo-v2.5-free","name":"MiMo V2.5 Free","family":"mimo-v2.5-free","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2024-12","release_date":"2026-04-24","last_updated":"2026-04-24","modalities":{"input":["text","image","audio","video"],"output":["text"]},"open_weights":true,"limit":{"context":200000,"output":32000},"cost":{"input":0,"output":0,"cache_read":0}},"gpt-5.4-nano":{"id":"gpt-5.4-nano","name":"GPT-5.4 Nano","family":"gpt-nano","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-03-17","last_updated":"2026-03-17","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"provider":{"npm":"@ai-sdk/openai"},"cost":{"input":0.2,"output":1.25,"cache_read":0.02}},"claude-3-5-haiku":{"id":"claude-3-5-haiku","name":"Claude Haiku 3.5","family":"claude-haiku","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-07-31","release_date":"2024-10-22","last_updated":"2024-10-22","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":8192},"status":"deprecated","provider":{"npm":"@ai-sdk/anthropic"},"cost":{"input":0.8,"output":4,"cache_read":0.08,"cache_write":1}},"gpt-5.3-codex":{"id":"gpt-5.3-codex","name":"GPT-5.3 Codex","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-02-24","last_updated":"2026-02-24","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"provider":{"npm":"@ai-sdk/openai"},"cost":{"input":1.75,"output":14,"cache_read":0.175}},"gpt-5.3-codex-spark":{"id":"gpt-5.3-codex-spark","name":"GPT-5.3 Codex Spark","family":"gpt-codex-spark","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-02-12","last_updated":"2026-02-12","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":128000,"output":128000},"provider":{"npm":"@ai-sdk/openai"},"cost":{"input":1.75,"output":14,"cache_read":0.175}},"qwen3.6-plus-free":{"id":"qwen3.6-plus-free","name":"Qwen3.6 Plus Free","family":"qwen-free","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2026-04-02","last_updated":"2026-04-02","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"output":65536},"status":"deprecated","provider":{"npm":"@ai-sdk/anthropic"},"cost":{"input":0,"output":0,"cache_read":0}},"gpt-5.5-pro":{"id":"gpt-5.5-pro","name":"GPT-5.5 Pro","family":"gpt-pro","attachment":true,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":false,"knowledge":"2025-12-01","release_date":"2026-04-24","last_updated":"2026-04-24","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1050000,"input":922000,"output":128000},"provider":{"npm":"@ai-sdk/openai"},"cost":{"input":30,"output":180,"cache_read":30}},"minimax-m2.1-free":{"id":"minimax-m2.1-free","name":"MiniMax M2.1 Free","family":"minimax-free","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-12-23","last_updated":"2025-12-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"status":"deprecated","provider":{"npm":"@ai-sdk/anthropic"},"cost":{"input":0,"output":0,"cache_read":0}},"gemini-3.1-pro":{"id":"gemini-3.1-pro","name":"Gemini 3.1 Pro Preview","family":"gemini-pro","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-02-19","last_updated":"2026-02-19","modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"provider":{"npm":"@ai-sdk/google"},"cost":{"input":2,"output":12,"cache_read":0.2,"tiers":[{"input":4,"output":18,"cache_read":0.4,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":4,"output":18,"cache_read":0.4}}},"gemini-3.5-flash":{"id":"gemini-3.5-flash","name":"Gemini 3.5 Flash","family":"gemini-flash","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-05-19","last_updated":"2026-05-19","modalities":{"input":["text","image","video","audio","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1048576,"output":65536},"provider":{"npm":"@ai-sdk/google"},"cost":{"input":1.5,"output":9,"cache_read":0.15,"input_audio":1.5}},"deepseek-v4-flash-free":{"id":"deepseek-v4-flash-free","name":"DeepSeek V4 Flash Free","family":"deepseek-flash-free","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-05","release_date":"2026-04-24","last_updated":"2026-04-24","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":200000,"output":128000},"cost":{"input":0,"output":0,"cache_read":0}},"gpt-5.2-codex":{"id":"gpt-5.2-codex","name":"GPT-5.2 Codex","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-01-14","last_updated":"2026-01-14","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"provider":{"npm":"@ai-sdk/openai"},"cost":{"input":1.75,"output":14,"cache_read":0.175}},"minimax-m2.7":{"id":"minimax-m2.7","name":"MiniMax M2.7","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2025-01","release_date":"2026-03-18","last_updated":"2026-03-18","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0.3,"output":1.2,"cache_read":0.06}},"deepseek-v4-flash":{"id":"deepseek-v4-flash","name":"DeepSeek V4 Flash","family":"deepseek-flash","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-05","release_date":"2026-04-24","last_updated":"2026-04-24","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1000000,"output":384000},"cost":{"input":0.14,"output":0.28,"cache_read":0.03}},"kimi-k2.5-free":{"id":"kimi-k2.5-free","name":"Kimi K2.5 Free","family":"kimi-free","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2024-10","release_date":"2026-01-27","last_updated":"2026-01-27","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"status":"deprecated","cost":{"input":0,"output":0,"cache_read":0}},"claude-opus-4-8":{"id":"claude-opus-4-8","name":"Claude Opus 4.8","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"release_date":"2026-05-28","last_updated":"2026-05-28","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"provider":{"npm":"@ai-sdk/anthropic"},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25}},"nemotron-3-super-free":{"id":"nemotron-3-super-free","name":"Nemotron 3 Super Free","family":"nemotron-free","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2026-02","release_date":"2026-03-11","last_updated":"2026-03-11","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":128000},"status":"deprecated","cost":{"input":0,"output":0,"cache_read":0}},"glm-5":{"id":"glm-5","name":"GLM-5","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2025-04","release_date":"2026-02-11","last_updated":"2026-02-11","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":1,"output":3.2,"cache_read":0.2}},"gpt-5.1-codex":{"id":"gpt-5.1-codex","name":"GPT-5.1 Codex","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-11-13","last_updated":"2025-11-13","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"provider":{"npm":"@ai-sdk/openai"},"cost":{"input":1.07,"output":8.5,"cache_read":0.107}},"qwen3-coder":{"id":"qwen3-coder","name":"Qwen3 Coder","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-07-23","last_updated":"2025-07-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":65536},"status":"deprecated","cost":{"input":0.45,"output":1.8}},"big-pickle":{"id":"big-pickle","name":"Big Pickle","family":"big-pickle","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-10-17","last_updated":"2025-10-17","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"input":160000,"output":32000},"cost":{"input":0,"output":0,"cache_read":0,"cache_write":0}},"ling-2.6-flash-free":{"id":"ling-2.6-flash-free","name":"Ling 2.6 Flash Free","family":"ling-flash-free","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-06","release_date":"2026-04-21","last_updated":"2026-04-21","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262100,"output":32800},"status":"deprecated","cost":{"input":0,"output":0}},"minimax-m3-free":{"id":"minimax-m3-free","name":"MiniMax M3 Free","family":"minimax-m3-free","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-05-31","last_updated":"2026-05-31","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":200000,"output":32000},"provider":{"npm":"@ai-sdk/anthropic"},"cost":{"input":0,"output":0,"cache_read":0}},"minimax-m2.5":{"id":"minimax-m2.5","name":"MiniMax M2.5","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2025-01","release_date":"2026-02-12","last_updated":"2026-02-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0.3,"output":1.2,"cache_read":0.06}},"glm-4.7-free":{"id":"glm-4.7-free","name":"GLM-4.7 Free","family":"glm-free","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2025-04","release_date":"2025-12-22","last_updated":"2025-12-22","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"status":"deprecated","cost":{"input":0,"output":0,"cache_read":0}},"claude-sonnet-4-5":{"id":"claude-sonnet-4-5","name":"Claude Sonnet 4.5","family":"claude-sonnet","attachment":true,"reasoning":true,"tool_call":true,"interleaved":true,"temperature":true,"knowledge":"2025-07-31","release_date":"2025-09-29","last_updated":"2025-09-29","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":64000},"provider":{"npm":"@ai-sdk/anthropic"},"cost":{"input":3,"output":15,"cache_read":0.3,"cache_write":3.75,"tiers":[{"input":6,"output":22.5,"cache_read":0.6,"cache_write":7.5,"tier":{"type":"context","size":200000}}],"context_over_200k":{"input":6,"output":22.5,"cache_read":0.6,"cache_write":7.5}}},"gpt-5.4-mini":{"id":"gpt-5.4-mini","name":"GPT-5.4 Mini","family":"gpt-mini","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-03-17","last_updated":"2026-03-17","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"provider":{"npm":"@ai-sdk/openai"},"cost":{"input":0.75,"output":4.5,"cache_read":0.075}},"mimo-v2-pro-free":{"id":"mimo-v2-pro-free","name":"MiMo V2 Pro Free","family":"mimo-pro-free","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2024-12","release_date":"2026-03-18","last_updated":"2026-03-18","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1048576,"output":64000},"status":"deprecated","cost":{"input":0,"output":0,"cache_read":0}},"claude-opus-4-6":{"id":"claude-opus-4-6","name":"Claude Opus 4.6","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-05-31","release_date":"2026-02-05","last_updated":"2026-03-13","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"provider":{"npm":"@ai-sdk/anthropic"},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25}},"kimi-k2":{"id":"kimi-k2","name":"Kimi K2","family":"kimi","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-10","release_date":"2025-09-05","last_updated":"2025-09-05","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"status":"deprecated","cost":{"input":0.4,"output":2.5,"cache_read":0.4}},"kimi-k2.5":{"id":"kimi-k2.5","name":"Kimi K2.5","family":"kimi","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2024-10","release_date":"2026-01-27","last_updated":"2026-01-27","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":65536},"cost":{"input":0.6,"output":3,"cache_read":0.08}},"claude-opus-4-7":{"id":"claude-opus-4-7","name":"Claude Opus 4.7","family":"claude-opus","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2026-01-31","release_date":"2026-04-16","last_updated":"2026-04-16","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":128000},"provider":{"npm":"@ai-sdk/anthropic"},"cost":{"input":5,"output":25,"cache_read":0.5,"cache_write":6.25}},"glm-5.1":{"id":"glm-5.1","name":"GLM-5.1","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2025-04","release_date":"2026-04-07","last_updated":"2026-04-07","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":1.4,"output":4.4,"cache_read":0.26}},"grok-code":{"id":"grok-code","name":"Grok Code Fast 1","family":"grok","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-08-20","last_updated":"2025-08-20","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":256000,"output":256000},"status":"deprecated","cost":{"input":0,"output":0,"cache_read":0,"cache_write":0}},"minimax-m2.5-free":{"id":"minimax-m2.5-free","name":"MiniMax M2.5 Free","family":"minimax-free","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-02-12","last_updated":"2026-02-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"status":"deprecated","provider":{"npm":"@ai-sdk/anthropic"},"cost":{"input":0,"output":0,"cache_read":0}},"glm-5-free":{"id":"glm-5-free","name":"GLM-5 Free","family":"glm-free","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2025-04","release_date":"2026-02-11","last_updated":"2026-02-11","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"status":"deprecated","cost":{"input":0,"output":0,"cache_read":0}}}},"openai":{"id":"openai","env":["OPENAI_API_KEY"],"npm":"@ai-sdk/openai","name":"OpenAI","doc":"https://platform.openai.com/docs/models","models":{"gpt-4o-2024-08-06":{"id":"gpt-4o-2024-08-06","name":"GPT-4o (2024-08-06)","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2023-09","release_date":"2024-08-06","last_updated":"2024-08-06","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":2.5,"output":10,"cache_read":1.25}},"gpt-5-pro":{"id":"gpt-5-pro","name":"GPT-5 Pro","family":"gpt-pro","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-10-06","last_updated":"2025-10-06","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":272000},"cost":{"input":15,"output":120}},"gpt-5-mini":{"id":"gpt-5-mini","name":"GPT-5 Mini","family":"gpt-mini","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-05-30","release_date":"2025-08-07","last_updated":"2025-08-07","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":0.25,"output":2,"cache_read":0.025}},"gpt-image-1":{"id":"gpt-image-1","name":"gpt-image-1","family":"gpt-image","attachment":true,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2025-04-24","last_updated":"2025-04-24","modalities":{"input":["text","image"],"output":["image"]},"open_weights":false,"limit":{"context":0,"input":0,"output":0}},"gpt-4o":{"id":"gpt-4o","name":"GPT-4o","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2023-09","release_date":"2024-05-13","last_updated":"2024-08-06","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":2.5,"output":10,"cache_read":1.25}},"gpt-5.2":{"id":"gpt-5.2","name":"GPT-5.2","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2025-12-11","last_updated":"2025-12-11","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":1.75,"output":14,"cache_read":0.175}},"gpt-5-chat-latest":{"id":"gpt-5-chat-latest","name":"GPT-5 Chat (latest)","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":false,"structured_output":true,"temperature":true,"knowledge":"2024-09-30","release_date":"2025-08-07","last_updated":"2025-08-07","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":1.25,"output":10,"cache_read":0.125}},"gpt-5-codex":{"id":"gpt-5-codex","name":"GPT-5-Codex","family":"gpt-codex","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-09-15","last_updated":"2025-09-15","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":1.25,"output":10,"cache_read":0.125}},"o3":{"id":"o3","name":"o3","family":"o","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-05","release_date":"2025-04-16","last_updated":"2025-04-16","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":2,"output":8,"cache_read":0.5}},"gpt-5.3-chat-latest":{"id":"gpt-5.3-chat-latest","name":"GPT-5.3 Chat (latest)","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-08-31","release_date":"2026-03-03","last_updated":"2026-03-03","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":1.75,"output":14,"cache_read":0.175}},"text-embedding-3-small":{"id":"text-embedding-3-small","name":"text-embedding-3-small","family":"text-embedding","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"knowledge":"2024-01","release_date":"2024-01-25","last_updated":"2024-01-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":8191,"output":1536},"cost":{"input":0.02,"output":0}},"gpt-4o-2024-11-20":{"id":"gpt-4o-2024-11-20","name":"GPT-4o (2024-11-20)","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2023-09","release_date":"2024-11-20","last_updated":"2024-11-20","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":2.5,"output":10,"cache_read":1.25}},"gpt-5":{"id":"gpt-5","name":"GPT-5","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-08-07","last_updated":"2025-08-07","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":1.25,"output":10,"cache_read":0.125}},"gpt-image-1-mini":{"id":"gpt-image-1-mini","name":"gpt-image-1-mini","family":"gpt-image","attachment":true,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2025-09-26","last_updated":"2025-09-26","modalities":{"input":["text","image"],"output":["text","image"]},"open_weights":false,"limit":{"context":0,"input":0,"output":0}},"gpt-5.4-pro":{"id":"gpt-5.4-pro","name":"GPT-5.4 Pro","family":"gpt-pro","attachment":true,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-03-05","last_updated":"2026-03-05","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1050000,"input":922000,"output":128000},"cost":{"input":30,"output":180,"tiers":[{"input":60,"output":270,"tier":{"type":"context","size":272000}}],"context_over_200k":{"input":60,"output":270}}},"gpt-4.1-mini":{"id":"gpt-4.1-mini","name":"GPT-4.1 mini","family":"gpt-mini","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-04","release_date":"2025-04-14","last_updated":"2025-04-14","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1047576,"output":32768},"cost":{"input":0.4,"output":1.6,"cache_read":0.1}},"text-embedding-3-large":{"id":"text-embedding-3-large","name":"text-embedding-3-large","family":"text-embedding","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"knowledge":"2024-01","release_date":"2024-01-25","last_updated":"2024-01-25","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":8191,"output":3072},"cost":{"input":0.13,"output":0}},"gpt-5.2-pro":{"id":"gpt-5.2-pro","name":"GPT-5.2 Pro","family":"gpt-pro","attachment":true,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":false,"knowledge":"2025-08-31","release_date":"2025-12-11","last_updated":"2025-12-11","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":21,"output":168}},"o3-pro":{"id":"o3-pro","name":"o3-pro","family":"o-pro","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-05","release_date":"2025-06-10","last_updated":"2025-06-10","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":20,"output":80}},"o4-mini":{"id":"o4-mini","name":"o4-mini","family":"o-mini","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-05","release_date":"2025-04-16","last_updated":"2025-04-16","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":1.1,"output":4.4,"cache_read":0.275}},"gpt-5.4":{"id":"gpt-5.4","name":"GPT-5.4","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-03-05","last_updated":"2026-03-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1050000,"input":922000,"output":128000},"experimental":{"modes":{"fast":{"cost":{"input":5,"output":30,"cache_read":0.5},"provider":{"body":{"service_tier":"priority"}}}}},"cost":{"input":2.5,"output":15,"cache_read":0.25,"tiers":[{"input":5,"output":22.5,"cache_read":0.5,"tier":{"type":"context","size":272000}}],"context_over_200k":{"input":5,"output":22.5,"cache_read":0.5}}},"o3-mini":{"id":"o3-mini","name":"o3-mini","family":"o-mini","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-05","release_date":"2024-12-20","last_updated":"2025-01-29","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":1.1,"output":4.4,"cache_read":0.55}},"gpt-5.5":{"id":"gpt-5.5","name":"GPT-5.5","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-12-01","release_date":"2026-04-23","last_updated":"2026-04-23","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1050000,"input":922000,"output":128000},"experimental":{"modes":{"fast":{"cost":{"input":12.5,"output":75,"cache_read":1.25},"provider":{"body":{"service_tier":"priority"}}}}},"cost":{"input":5,"output":30,"cache_read":0.5,"tiers":[{"input":10,"output":45,"cache_read":1,"tier":{"type":"context","size":272000}}],"context_over_200k":{"input":10,"output":45,"cache_read":1}}},"gpt-5.2-chat-latest":{"id":"gpt-5.2-chat-latest","name":"GPT-5.2 Chat","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2025-12-11","last_updated":"2025-12-11","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":1.75,"output":14,"cache_read":0.175}},"gpt-5.1":{"id":"gpt-5.1","name":"GPT-5.1","family":"gpt","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-11-13","last_updated":"2025-11-13","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":1.25,"output":10,"cache_read":0.125}},"gpt-5-nano":{"id":"gpt-5-nano","name":"GPT-5 Nano","family":"gpt-nano","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-05-30","release_date":"2025-08-07","last_updated":"2025-08-07","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":0.05,"output":0.4,"cache_read":0.005}},"gpt-4o-mini":{"id":"gpt-4o-mini","name":"GPT-4o mini","family":"gpt-mini","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2023-09","release_date":"2024-07-18","last_updated":"2024-07-18","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":0.15,"output":0.6,"cache_read":0.075}},"chatgpt-image-latest":{"id":"chatgpt-image-latest","name":"chatgpt-image-latest","family":"gpt-image","attachment":true,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2025-12-16","last_updated":"2025-12-16","modalities":{"input":["text","image"],"output":["text","image"]},"open_weights":false,"limit":{"context":0,"input":0,"output":0}},"gpt-5.1-codex-max":{"id":"gpt-5.1-codex-max","name":"GPT-5.1 Codex Max","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-11-13","last_updated":"2025-11-13","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":1.25,"output":10,"cache_read":0.125}},"gpt-5.1-codex-mini":{"id":"gpt-5.1-codex-mini","name":"GPT-5.1 Codex mini","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-11-13","last_updated":"2025-11-13","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":0.25,"output":2,"cache_read":0.025}},"o1-pro":{"id":"o1-pro","name":"o1-pro","family":"o-pro","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2023-09","release_date":"2025-03-19","last_updated":"2025-03-19","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":150,"output":600}},"text-embedding-ada-002":{"id":"text-embedding-ada-002","name":"text-embedding-ada-002","family":"text-embedding","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"knowledge":"2022-12","release_date":"2022-12-15","last_updated":"2022-12-15","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":8192,"output":1536},"cost":{"input":0.1,"output":0}},"o3-deep-research":{"id":"o3-deep-research","name":"o3-deep-research","family":"o","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2024-05","release_date":"2024-06-26","last_updated":"2024-06-26","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":10,"output":40,"cache_read":2.5}},"gpt-4.1":{"id":"gpt-4.1","name":"GPT-4.1","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-04","release_date":"2025-04-14","last_updated":"2025-04-14","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1047576,"output":32768},"cost":{"input":2,"output":8,"cache_read":0.5}},"gpt-5.4-nano":{"id":"gpt-5.4-nano","name":"GPT-5.4 nano","family":"gpt-nano","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-03-17","last_updated":"2026-03-17","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":0.2,"output":1.25,"cache_read":0.02}},"gpt-5.3-codex":{"id":"gpt-5.3-codex","name":"GPT-5.3 Codex","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-02-05","last_updated":"2026-02-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":1.75,"output":14,"cache_read":0.175}},"gpt-5.3-codex-spark":{"id":"gpt-5.3-codex-spark","name":"GPT-5.3 Codex Spark","family":"gpt-codex-spark","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-02-05","last_updated":"2026-02-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"input":100000,"output":32000},"cost":{"input":1.75,"output":14,"cache_read":0.175}},"gpt-5.5-pro":{"id":"gpt-5.5-pro","name":"GPT-5.5 Pro","family":"gpt-pro","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-12-01","release_date":"2026-04-23","last_updated":"2026-04-23","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":1050000,"input":922000,"output":128000},"cost":{"input":30,"output":180,"tiers":[{"input":60,"output":270,"tier":{"type":"context","size":272000}}],"context_over_200k":{"input":60,"output":270}}},"o4-mini-deep-research":{"id":"o4-mini-deep-research","name":"o4-mini-deep-research","family":"o-mini","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2024-05","release_date":"2024-06-26","last_updated":"2024-06-26","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":2,"output":8,"cache_read":0.5}},"gpt-3.5-turbo":{"id":"gpt-3.5-turbo","name":"GPT-3.5-turbo","family":"gpt","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":true,"knowledge":"2021-09-01","release_date":"2023-03-01","last_updated":"2023-11-06","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":16385,"output":4096},"cost":{"input":0.5,"output":1.5,"cache_read":0}},"gpt-5.2-codex":{"id":"gpt-5.2-codex","name":"GPT-5.2 Codex","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2025-12-11","last_updated":"2025-12-11","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":1.75,"output":14,"cache_read":0.175}},"o1-mini":{"id":"o1-mini","name":"o1-mini","family":"o-mini","attachment":false,"reasoning":true,"tool_call":false,"structured_output":true,"temperature":false,"knowledge":"2023-09","release_date":"2024-09-12","last_updated":"2024-09-12","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":65536},"status":"deprecated","cost":{"input":1.1,"output":4.4,"cache_read":0.55}},"gpt-5.1-codex":{"id":"gpt-5.1-codex","name":"GPT-5.1 Codex","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-11-13","last_updated":"2025-11-13","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"cost":{"input":1.25,"output":10,"cache_read":0.125}},"gpt-4o-2024-05-13":{"id":"gpt-4o-2024-05-13","name":"GPT-4o (2024-05-13)","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2023-09","release_date":"2024-05-13","last_updated":"2024-05-13","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":4096},"cost":{"input":5,"output":15}},"o1-preview":{"id":"o1-preview","name":"o1-preview","family":"o","attachment":false,"reasoning":true,"tool_call":false,"temperature":true,"knowledge":"2023-09","release_date":"2024-09-12","last_updated":"2024-09-12","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":32768},"status":"deprecated","cost":{"input":15,"output":60,"cache_read":7.5}},"gpt-5.4-mini":{"id":"gpt-5.4-mini","name":"GPT-5.4 mini","family":"gpt-mini","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2025-08-31","release_date":"2026-03-17","last_updated":"2026-03-17","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":400000,"input":272000,"output":128000},"experimental":{"modes":{"fast":{"cost":{"input":1.5,"output":9,"cache_read":0.15},"provider":{"body":{"service_tier":"priority"}}}}},"cost":{"input":0.75,"output":4.5,"cache_read":0.075}},"gpt-4-turbo":{"id":"gpt-4-turbo","name":"GPT-4 Turbo","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"structured_output":false,"temperature":true,"knowledge":"2023-12","release_date":"2023-11-06","last_updated":"2024-04-09","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":4096},"cost":{"input":10,"output":30}},"gpt-5.1-chat-latest":{"id":"gpt-5.1-chat-latest","name":"GPT-5.1 Chat","family":"gpt-codex","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2024-09-30","release_date":"2025-11-13","last_updated":"2025-11-13","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":128000,"output":16384},"cost":{"input":1.25,"output":10,"cache_read":0.125}},"o1":{"id":"o1","name":"o1","family":"o","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":false,"knowledge":"2023-09","release_date":"2024-12-05","last_updated":"2024-12-05","modalities":{"input":["text","image","pdf"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"output":100000},"cost":{"input":15,"output":60,"cache_read":7.5}},"gpt-4":{"id":"gpt-4","name":"GPT-4","family":"gpt","attachment":true,"reasoning":false,"tool_call":true,"structured_output":false,"temperature":true,"knowledge":"2023-11","release_date":"2023-11-06","last_updated":"2024-04-09","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":8192,"output":8192},"cost":{"input":30,"output":60}},"gpt-image-1.5":{"id":"gpt-image-1.5","name":"gpt-image-1.5","family":"gpt-image","attachment":true,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2025-11-25","last_updated":"2025-11-25","modalities":{"input":["text","image"],"output":["text","image"]},"open_weights":false,"limit":{"context":0,"input":0,"output":0}},"gpt-4.1-nano":{"id":"gpt-4.1-nano","name":"GPT-4.1 nano","family":"gpt-nano","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-04","release_date":"2025-04-14","last_updated":"2025-04-14","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1047576,"output":32768},"cost":{"input":0.1,"output":0.4,"cache_read":0.025}}}},"poolside":{"id":"poolside","env":["POOLSIDE_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://inference.poolside.ai/v1","name":"Poolside","doc":"https://platform.poolside.ai","models":{"poolside/laguna-m.1":{"id":"poolside/laguna-m.1","name":"Laguna M.1","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"release_date":"2026-04-28","last_updated":"2026-04-28","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":131040,"output":8192},"cost":{"input":0,"output":0,"cache_read":0,"cache_write":0}},"poolside/laguna-xs.2":{"id":"poolside/laguna-xs.2","name":"Laguna XS.2","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"release_date":"2026-04-28","last_updated":"2026-04-28","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131040,"output":8192},"cost":{"input":0,"output":0,"cache_read":0,"cache_write":0}}}},"sarvam":{"id":"sarvam","env":["SARVAM_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://api.sarvam.ai/v1","name":"Sarvam AI","doc":"https://docs.sarvam.ai/api-reference-docs/getting-started/models","models":{"sarvam-105b":{"id":"sarvam-105b","name":"Sarvam-105B","family":"sarvam","attachment":false,"reasoning":true,"reasoning_options":[{"type":"effort","values":[null,"low","medium","high"]}],"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"release_date":"2026-02-18","last_updated":"2026-03-06","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":131072}},"sarvam-30b":{"id":"sarvam-30b","name":"Sarvam-30B","family":"sarvam","attachment":false,"reasoning":true,"reasoning_options":[{"type":"effort","values":[null,"low","medium","high"]}],"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"release_date":"2026-02-18","last_updated":"2026-03-06","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":65536,"output":65536}}}},"baseten":{"id":"baseten","env":["BASETEN_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://inference.baseten.co/v1","name":"Baseten","doc":"https://docs.baseten.co/development/model-apis/overview","models":{"MiniMaxAI/MiniMax-M2.5":{"id":"MiniMaxAI/MiniMax-M2.5","name":"MiniMax-M2.5","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2026-01","release_date":"2026-02-12","last_updated":"2026-02-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204000,"output":204000},"cost":{"input":0.3,"output":1.2}},"zai-org/GLM-4.7":{"id":"zai-org/GLM-4.7","name":"GLM-4.7","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2025-04","release_date":"2025-12-22","last_updated":"2025-12-22","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0.6,"output":2.2}},"zai-org/GLM-5":{"id":"zai-org/GLM-5","name":"GLM-5","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2026-01","release_date":"2026-02-12","last_updated":"2026-02-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":202752,"output":131072},"cost":{"input":0.95,"output":3.15}},"zai-org/GLM-4.6":{"id":"zai-org/GLM-4.6","name":"GLM 4.6","family":"glm","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-08-31","release_date":"2025-09-16","last_updated":"2025-09-16","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":200000,"output":200000},"cost":{"input":0.6,"output":2.2}},"moonshotai/Kimi-K2.6":{"id":"moonshotai/Kimi-K2.6","name":"Kimi K2.6","family":"kimi-k2.6","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-04-21","last_updated":"2026-04-21","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.95,"output":4,"cache_read":0.16}},"moonshotai/Kimi-K2-Instruct-0905":{"id":"moonshotai/Kimi-K2-Instruct-0905","name":"Kimi K2 Instruct 0905","family":"kimi","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-08","release_date":"2025-09-05","last_updated":"2026-03-06","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"status":"deprecated","cost":{"input":0.6,"output":2.5}},"moonshotai/Kimi-K2.5":{"id":"moonshotai/Kimi-K2.5","name":"Kimi K2.5","family":"kimi","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2025-12","release_date":"2026-01-30","last_updated":"2026-02-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":8192},"cost":{"input":0.6,"output":3}},"moonshotai/Kimi-K2-Thinking":{"id":"moonshotai/Kimi-K2-Thinking","name":"Kimi K2 Thinking","family":"kimi-thinking","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2024-08","release_date":"2025-11-06","last_updated":"2026-03-06","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"status":"deprecated","cost":{"input":0.6,"output":2.5}},"deepseek-ai/DeepSeek-V3.1":{"id":"deepseek-ai/DeepSeek-V3.1","name":"DeepSeek V3.1","family":"deepseek","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-08-25","last_updated":"2025-08-25","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":164000,"output":131000},"cost":{"input":0.5,"output":1.5}},"deepseek-ai/DeepSeek-V4-Pro":{"id":"deepseek-ai/DeepSeek-V4-Pro","name":"DeepSeek V4 Pro","family":"deepseek-thinking","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-05","release_date":"2026-04-24","last_updated":"2026-04-24","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1000000,"output":384000},"cost":{"input":1.74,"output":3.48,"cache_read":0.15}},"deepseek-ai/DeepSeek-V3.2":{"id":"deepseek-ai/DeepSeek-V3.2","name":"DeepSeek V3.2","family":"deepseek","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2025-10","release_date":"2025-12-01","last_updated":"2026-03-06","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":163800,"output":131100},"status":"deprecated","cost":{"input":0.3,"output":0.45}},"deepseek-ai/DeepSeek-V3-0324":{"id":"deepseek-ai/DeepSeek-V3-0324","name":"DeepSeek V3 0324","family":"deepseek","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-12","release_date":"2025-03-24","last_updated":"2025-03-24","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":164000,"output":131000},"cost":{"input":0.77,"output":0.77}},"nvidia/Nemotron-120B-A12B":{"id":"nvidia/Nemotron-120B-A12B","name":"Nemotron 3 Super","family":"nemotron","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2026-02","release_date":"2026-03-11","last_updated":"2026-03-11","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":32678},"cost":{"input":0.3,"output":0.75}},"openai/gpt-oss-120b":{"id":"openai/gpt-oss-120b","name":"GPT OSS 120B","family":"gpt-oss","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-08","release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":128000},"cost":{"input":0.1,"output":0.5}}}},"lucidquery":{"id":"lucidquery","env":["LUCIDQUERY_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://lucidquery.com/api/v1","name":"LucidQuery AI","doc":"https://lucidquery.com/api/docs","models":{"lucidquery-nexus-coder":{"id":"lucidquery-nexus-coder","name":"LucidQuery Nexus Coder","family":"lucid","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2025-08-01","release_date":"2025-09-01","last_updated":"2025-09-01","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":250000,"output":60000},"cost":{"input":2,"output":5}},"lucidnova-rf1-100b":{"id":"lucidnova-rf1-100b","name":"LucidNova RF1 100B","family":"nova","attachment":true,"reasoning":true,"tool_call":true,"temperature":false,"knowledge":"2025-09-16","release_date":"2024-12-28","last_updated":"2025-09-10","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":120000,"output":8000},"cost":{"input":2,"output":5}}}},"scaleway":{"id":"scaleway","env":["SCALEWAY_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://api.scaleway.ai/v1","name":"Scaleway","doc":"https://www.scaleway.com/en/docs/generative-apis/","models":{"bge-multilingual-gemma2":{"id":"bge-multilingual-gemma2","name":"BGE Multilingual Gemma2","family":"gemma","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2024-07-26","last_updated":"2025-06-15","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":8191,"output":3072},"cost":{"input":0.1,"output":0}},"qwen3-coder-30b-a3b-instruct":{"id":"qwen3-coder-30b-a3b-instruct","name":"Qwen3-Coder 30B-A3B Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-04","last_updated":"2026-03-17","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":32768},"cost":{"input":0.2,"output":0.8}},"mistral-small-3.2-24b-instruct-2506":{"id":"mistral-small-3.2-24b-instruct-2506","name":"Mistral Small 3.2 24B Instruct (2506)","family":"mistral-small","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-03","release_date":"2025-06-20","last_updated":"2026-03-17","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":32768},"cost":{"input":0.15,"output":0.35}},"pixtral-12b-2409":{"id":"pixtral-12b-2409","name":"Pixtral 12B 2409","family":"pixtral","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-09","release_date":"2024-09-25","last_updated":"2026-03-17","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4096},"cost":{"input":0.2,"output":0.2}},"gpt-oss-120b":{"id":"gpt-oss-120b","name":"GPT-OSS 120B","family":"gpt-oss","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2024-01-01","last_updated":"2026-03-17","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":32768},"cost":{"input":0.15,"output":0.6}},"gemma-3-27b-it":{"id":"gemma-3-27b-it","name":"Gemma-3-27B-IT","family":"gemma","attachment":true,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2024-12","release_date":"2024-12-01","last_updated":"2026-03-17","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":40000,"output":8192},"cost":{"input":0.25,"output":0.5}},"voxtral-small-24b-2507":{"id":"voxtral-small-24b-2507","name":"Voxtral Small 24B 2507","family":"voxtral","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2025-07-01","last_updated":"2026-03-17","modalities":{"input":["text","audio"],"output":["text"]},"open_weights":true,"limit":{"context":32000,"output":16384},"cost":{"input":0.15,"output":0.35}},"whisper-large-v3":{"id":"whisper-large-v3","name":"Whisper Large v3","family":"whisper","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"knowledge":"2023-09","release_date":"2023-09-01","last_updated":"2026-03-17","modalities":{"input":["audio"],"output":["text"]},"open_weights":true,"limit":{"context":0,"output":8192},"cost":{"input":0.003,"output":0}},"mistral-medium-3.5-128b":{"id":"mistral-medium-3.5-128b","name":"Mistral Medium 3.5 128B","family":"mistral-medium","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-04-29","last_updated":"2026-04-29","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"output":16384},"cost":{"input":1.5,"output":7.5}},"qwen3-embedding-8b":{"id":"qwen3-embedding-8b","name":"Qwen3 Embedding 8B","family":"qwen","attachment":false,"reasoning":false,"tool_call":false,"temperature":false,"release_date":"2025-25-11","last_updated":"2026-03-17","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":32768,"output":4096},"cost":{"input":0.1,"output":0}},"gemma-4-26b-a4b-it":{"id":"gemma-4-26b-a4b-it","name":"Gemma 4 26B A4B IT","family":"gemma","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-04","release_date":"2026-04-01","last_updated":"2026-05-22","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"output":16384},"status":"beta","cost":{"input":0.25,"output":0.5}},"qwen3.6-35b-a3b":{"id":"qwen3.6-35b-a3b","name":"Qwen3.6 35B A3B","family":"qwen","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-04","release_date":"2026-05-01","last_updated":"2026-05-22","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":16384},"status":"beta","cost":{"input":0.25,"output":1.5}},"qwen3-235b-a22b-instruct-2507":{"id":"qwen3-235b-a22b-instruct-2507","name":"Qwen3 235B A22B Instruct 2507","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-07-01","last_updated":"2026-03-17","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":260000,"output":16384},"cost":{"input":0.75,"output":2.25,"reasoning":8.4}},"qwen3.5-397b-a17b":{"id":"qwen3.5-397b-a17b","name":"Qwen3.5 397B A17B","family":"qwen","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-04","release_date":"2026-03-17","last_updated":"2026-03-17","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"output":16384},"cost":{"input":0.6,"output":3.6}},"llama-3.3-70b-instruct":{"id":"llama-3.3-70b-instruct","name":"Llama-3.3-70B-Instruct","family":"llama","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2023-12","release_date":"2024-12-06","last_updated":"2026-03-17","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":100000,"output":16384},"cost":{"input":0.9,"output":0.9}},"devstral-2-123b-instruct-2512":{"id":"devstral-2-123b-instruct-2512","name":"Devstral 2 123B Instruct (2512)","family":"devstral","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-12","release_date":"2026-01-07","last_updated":"2026-03-17","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"output":16384},"status":"deprecated","cost":{"input":0.4,"output":2}}}},"cerebras":{"id":"cerebras","env":["CEREBRAS_API_KEY"],"npm":"@ai-sdk/cerebras","name":"Cerebras","doc":"https://inference-docs.cerebras.ai/models/overview","models":{"zai-glm-4.7":{"id":"zai-glm-4.7","name":"Z.AI GLM-4.7","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"release_date":"2026-01-10","last_updated":"2026-01-10","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":40000},"cost":{"input":2.25,"output":2.75,"cache_read":0,"cache_write":0}},"gpt-oss-120b":{"id":"gpt-oss-120b","name":"GPT OSS 120B","family":"gpt-oss","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":32768},"cost":{"input":0.25,"output":0.69}},"llama3.1-8b":{"id":"llama3.1-8b","name":"Llama 3.1 8B","family":"llama","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2023-12","release_date":"2025-01-01","last_updated":"2025-01-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":32000,"output":8000},"cost":{"input":0.1,"output":0.1}}}},"hpc-ai":{"id":"hpc-ai","env":["HPC_AI_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://api.hpc-ai.com/inference/v1","name":"HPC-AI","doc":"https://www.hpc-ai.com/doc/docs/quickstart/","models":{"zai-org/glm-5.1":{"id":"zai-org/glm-5.1","name":"GLM 5.1","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-04-08","last_updated":"2026-06-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":202000,"output":202000},"cost":{"input":0.615,"output":2.46,"cache_read":0.133}},"moonshotai/kimi-k2.5":{"id":"moonshotai/kimi-k2.5","name":"Kimi K2.5","family":"kimi","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":false,"knowledge":"2025-01-01","release_date":"2026-01-01","last_updated":"2026-06-01","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":262144},"cost":{"input":0.3,"output":1.5,"cache_read":0.05}},"minimax/minimax-m2.5":{"id":"minimax/minimax-m2.5","name":"MiniMax M2.5","family":"minimax-m2.5","attachment":false,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2026-02-12","last_updated":"2026-06-01","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1000000,"output":131072},"cost":{"input":0.3,"output":1.2,"cache_read":0.03}}}},"alibaba-token-plan":{"id":"alibaba-token-plan","env":["ALIBABA_TOKEN_PLAN_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://token-plan.ap-southeast-1.maas.aliyuncs.com/compatible-mode/v1","name":"Alibaba Token Plan","doc":"https://www.alibabacloud.com/help/en/model-studio/token-plan-overview","models":{"MiniMax-M2.5":{"id":"MiniMax-M2.5","name":"MiniMax-M2.5","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"release_date":"2026-02-12","last_updated":"2026-02-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":196608,"input":196601,"output":24576},"cost":{"input":0,"output":0,"cache_read":0,"cache_write":0}},"qwen-image-2.0-pro":{"id":"qwen-image-2.0-pro","name":"Qwen Image 2.0 Pro","family":"qwen","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2026-03-03","last_updated":"2026-03-03","modalities":{"input":["text"],"output":["image"]},"open_weights":false,"limit":{"context":8192,"output":0},"cost":{"input":0,"output":0}},"deepseek-v3.2":{"id":"deepseek-v3.2","name":"DeepSeek V3.2","family":"deepseek","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-12-03","last_updated":"2025-12-05","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":65536},"cost":{"input":0,"output":0}},"wan2.7-image":{"id":"wan2.7-image","name":"Wan2.7 Image","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2026-05-29","last_updated":"2026-05-29","modalities":{"input":["text"],"output":["image"]},"open_weights":false,"limit":{"context":8192,"output":0},"cost":{"input":0,"output":0}},"kimi-k2.6":{"id":"kimi-k2.6","name":"Kimi K2.6","family":"kimi","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2025-01","release_date":"2026-04-21","last_updated":"2026-04-21","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":16384},"cost":{"input":0,"output":0,"cache_read":0,"cache_write":0}},"qwen3.7-max":{"id":"qwen3.7-max","name":"Qwen3.7 Max","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-05-21","last_updated":"2026-05-21","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":65536},"cost":{"input":0,"output":0,"cache_read":0,"cache_write":0}},"wan2.7-image-pro":{"id":"wan2.7-image-pro","name":"Wan2.7 Image Pro","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2026-05-29","last_updated":"2026-05-29","modalities":{"input":["text"],"output":["image"]},"open_weights":false,"limit":{"context":8192,"output":0},"cost":{"input":0,"output":0}},"qwen3.6-plus":{"id":"qwen3.6-plus","name":"Qwen3.6 Plus","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2026-04-02","last_updated":"2026-04-02","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":65536},"cost":{"input":0,"output":0,"cache_read":0,"cache_write":0}},"qwen3.6-flash":{"id":"qwen3.6-flash","name":"Qwen3.6 Flash","family":"qwen3.6","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-04-27","last_updated":"2026-04-27","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":65536},"cost":{"input":0,"output":0,"cache_read":0,"cache_write":0}},"qwen-image-2.0":{"id":"qwen-image-2.0","name":"Qwen Image 2.0","family":"qwen","attachment":false,"reasoning":false,"tool_call":false,"temperature":true,"release_date":"2026-03-03","last_updated":"2026-03-03","modalities":{"input":["text"],"output":["image"]},"open_weights":false,"limit":{"context":8192,"output":0},"cost":{"input":0,"output":0}},"deepseek-v4-flash":{"id":"deepseek-v4-flash","name":"DeepSeek V4 Flash","family":"deepseek-flash","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-05","release_date":"2026-04-24","last_updated":"2026-04-24","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1000000,"output":384000},"cost":{"input":0,"output":0,"cache_read":0}},"glm-5":{"id":"glm-5","name":"GLM-5","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"release_date":"2026-02-11","last_updated":"2026-02-11","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":202752,"output":16384},"cost":{"input":0,"output":0,"cache_read":0,"cache_write":0}},"deepseek-v4-pro":{"id":"deepseek-v4-pro","name":"DeepSeek V4 Pro","family":"deepseek-thinking","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-05","release_date":"2026-04-24","last_updated":"2026-04-24","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1000000,"output":384000},"cost":{"input":0,"output":0,"cache_read":0}},"kimi-k2.5":{"id":"kimi-k2.5","name":"Kimi K2.5","family":"kimi","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2025-01","release_date":"2026-01","last_updated":"2026-01","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":32768},"cost":{"input":0,"output":0,"cache_read":0,"cache_write":0}},"glm-5.1":{"id":"glm-5.1","name":"GLM-5.1","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-03-27","last_updated":"2026-03-27","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":202752,"output":128000},"cost":{"input":0,"output":0,"cache_read":0,"cache_write":0}}}},"tencent-tokenhub":{"id":"tencent-tokenhub","env":["TENCENT_TOKENHUB_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://tokenhub.tencentmaas.com/v1","name":"Tencent TokenHub","doc":"https://cloud.tencent.com/document/product/1823/130050","models":{"hy3-preview":{"id":"hy3-preview","name":"Hy3 preview","family":"Hy","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-04-20","last_updated":"2026-04-20","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"output":64000},"cost":{"input":0,"output":0,"cache_read":0,"cache_write":0}}}},"alibaba-coding-plan-cn":{"id":"alibaba-coding-plan-cn","env":["ALIBABA_CODING_PLAN_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://coding.dashscope.aliyuncs.com/v1","name":"Alibaba Coding Plan (China)","doc":"https://help.aliyun.com/zh/model-studio/coding-plan","models":{"MiniMax-M2.5":{"id":"MiniMax-M2.5","name":"MiniMax-M2.5","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"release_date":"2026-02-12","last_updated":"2026-02-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":196608,"output":24576},"cost":{"input":0,"output":0,"cache_read":0,"cache_write":0}},"qwen3.5-plus":{"id":"qwen3.5-plus","name":"Qwen3.5 Plus","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2026-02-16","last_updated":"2026-02-16","modalities":{"input":["text","image"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":65536},"cost":{"input":0,"output":0,"cache_read":0,"cache_write":0}},"qwen3-coder-plus":{"id":"qwen3-coder-plus","name":"Qwen3 Coder Plus","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2025-07-23","last_updated":"2025-07-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1000000,"output":65536},"cost":{"input":0,"output":0,"cache_read":0,"cache_write":0}},"glm-4.7":{"id":"glm-4.7","name":"GLM-4.7","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2025-04","release_date":"2025-12-22","last_updated":"2025-12-22","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":202752,"output":16384},"cost":{"input":0,"output":0,"cache_read":0,"cache_write":0}},"qwen3-coder-next":{"id":"qwen3-coder-next","name":"Qwen3 Coder Next","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-02-03","last_updated":"2026-02-03","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":65536},"cost":{"input":0,"output":0,"cache_read":0,"cache_write":0}},"qwen3.7-max":{"id":"qwen3.7-max","name":"Qwen3.7 Max","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-05-21","last_updated":"2026-05-21","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":65536},"cost":{"input":2.5,"output":7.5,"cache_read":0.5,"cache_write":3.125}},"qwen3.6-plus":{"id":"qwen3.6-plus","name":"Qwen3.6 Plus","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2026-04-02","last_updated":"2026-04-02","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":65536},"cost":{"input":0,"output":0,"cache_read":0,"cache_write":0}},"qwen3.6-flash":{"id":"qwen3.6-flash","name":"Qwen3.6 Flash","family":"qwen3.6","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-04-27","last_updated":"2026-04-27","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":false,"limit":{"context":1000000,"output":65536},"cost":{"input":0.1875,"output":1.125,"cache_write":0.234375}},"qwen3-max-2026-01-23":{"id":"qwen3-max-2026-01-23","name":"Qwen3 Max","family":"qwen","attachment":false,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-04","release_date":"2026-01-23","last_updated":"2026-01-23","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"output":32768},"cost":{"input":0,"output":0,"cache_read":0,"cache_write":0}},"glm-5":{"id":"glm-5","name":"GLM-5","family":"glm","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"release_date":"2026-02-11","last_updated":"2026-02-11","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":202752,"output":16384},"cost":{"input":0,"output":0,"cache_read":0,"cache_write":0}},"kimi-k2.5":{"id":"kimi-k2.5","name":"Kimi K2.5","family":"kimi","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"temperature":true,"knowledge":"2025-01","release_date":"2026-01-27","last_updated":"2026-01-27","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":32768},"cost":{"input":0,"output":0,"cache_read":0,"cache_write":0}}}},"cloudflare-workers-ai":{"id":"cloudflare-workers-ai","env":["CLOUDFLARE_ACCOUNT_ID","CLOUDFLARE_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://api.cloudflare.com/client/v4/accounts/${CLOUDFLARE_ACCOUNT_ID}/ai/v1","name":"Cloudflare Workers AI","doc":"https://developers.cloudflare.com/workers-ai/models/","models":{"@cf/mistralai/mistral-small-3.1-24b-instruct":{"id":"@cf/mistralai/mistral-small-3.1-24b-instruct","name":"Mistral Small 3.1 24B Instruct","family":"mistral-small","attachment":false,"reasoning":false,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-03-18","last_updated":"2025-03-18","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":128000},"cost":{"input":0.351,"output":0.555}},"@cf/zai-org/glm-4.7-flash":{"id":"@cf/zai-org/glm-4.7-flash","name":"GLM-4.7-Flash","family":"glm-flash","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-04","release_date":"2026-01-19","last_updated":"2026-01-19","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":131072},"cost":{"input":0.0605,"output":0.4}},"@cf/qwen/qwen2.5-coder-32b-instruct":{"id":"@cf/qwen/qwen2.5-coder-32b-instruct","name":"Qwen2.5 Coder 32B Instruct","family":"qwen","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":true,"release_date":"2025-02-27","last_updated":"2025-02-27","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":32768,"output":32768},"cost":{"input":0.66,"output":1}},"@cf/qwen/qwq-32b":{"id":"@cf/qwen/qwq-32b","name":"Qwq 32B","family":"qwen","attachment":false,"reasoning":true,"tool_call":false,"structured_output":false,"temperature":true,"release_date":"2025-03-05","last_updated":"2025-03-05","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":24000,"output":24000},"cost":{"input":0.66,"output":1}},"@cf/qwen/qwen3-30b-a3b-fp8":{"id":"@cf/qwen/qwen3-30b-a3b-fp8","name":"Qwen3 30B A3b fp8","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-04-30","last_updated":"2025-04-30","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":32768,"output":32768},"cost":{"input":0.0509,"output":0.335}},"@cf/moonshotai/kimi-k2.6":{"id":"@cf/moonshotai/kimi-k2.6","name":"Kimi K2.6","family":"kimi-k2.6","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2026-04-21","last_updated":"2026-04-21","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"output":256000},"cost":{"input":0.95,"output":4,"cache_read":0.16}},"@cf/deepseek-ai/deepseek-r1-distill-qwen-32b":{"id":"@cf/deepseek-ai/deepseek-r1-distill-qwen-32b","name":"Deepseek R1 Distill Qwen 32B","family":"deepseek-thinking","attachment":false,"reasoning":true,"tool_call":false,"structured_output":false,"temperature":true,"knowledge":"2024-07","release_date":"2025-01-20","last_updated":"2025-05-29","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":80000,"output":80000},"cost":{"input":0.497,"output":4.881}},"@cf/nvidia/nemotron-3-120b-a12b":{"id":"@cf/nvidia/nemotron-3-120b-a12b","name":"Nemotron 3 Super 120B","family":"nemotron","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"release_date":"2026-03-11","last_updated":"2026-03-11","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"output":256000},"cost":{"input":0.5,"output":1.5}},"@cf/aisingapore/gemma-sea-lion-v4-27b-it":{"id":"@cf/aisingapore/gemma-sea-lion-v4-27b-it","name":"Gemma Sea Lion V4 27B It","family":"gemma","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":true,"release_date":"2025-09-23","last_updated":"2025-09-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":128000},"cost":{"input":0.351,"output":0.555}},"@cf/meta/llama-3.3-70b-instruct-fp8-fast":{"id":"@cf/meta/llama-3.3-70b-instruct-fp8-fast","name":"Llama 3.3 70B Instruct fp8 Fast","family":"llama","attachment":false,"reasoning":false,"tool_call":true,"structured_output":false,"temperature":true,"knowledge":"2023-12","release_date":"2024-12-06","last_updated":"2024-12-06","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":24000,"output":24000},"cost":{"input":0.293,"output":2.253}},"@cf/meta/llama-4-scout-17b-16e-instruct":{"id":"@cf/meta/llama-4-scout-17b-16e-instruct","name":"Llama 4 Scout 17B 16E Instruct","family":"llama","attachment":true,"reasoning":false,"tool_call":true,"structured_output":false,"temperature":true,"knowledge":"2024-08","release_date":"2025-04-05","last_updated":"2025-04-05","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":131000,"output":16384},"cost":{"input":0.27,"output":0.85}},"@cf/meta/llama-3.1-8b-instruct-fp8":{"id":"@cf/meta/llama-3.1-8b-instruct-fp8","name":"Llama 3.1 8B Instruct fp8","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":true,"release_date":"2024-07-25","last_updated":"2024-07-25","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":32000,"output":32000},"cost":{"input":0.152,"output":0.287}},"@cf/meta/llama-3.2-3b-instruct":{"id":"@cf/meta/llama-3.2-3b-instruct","name":"Llama 3.2 3B Instruct","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":true,"release_date":"2024-09-25","last_updated":"2024-09-25","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":80000,"output":80000},"cost":{"input":0.0509,"output":0.335}},"@cf/meta/llama-3.2-11b-vision-instruct":{"id":"@cf/meta/llama-3.2-11b-vision-instruct","name":"Llama 3.2 11B Vision Instruct","family":"llama","attachment":true,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":true,"release_date":"2024-09-25","last_updated":"2024-09-25","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":128000},"cost":{"input":0.0485,"output":0.676}},"@cf/meta/llama-3.2-1b-instruct":{"id":"@cf/meta/llama-3.2-1b-instruct","name":"Llama 3.2 1B Instruct","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":true,"release_date":"2024-09-25","last_updated":"2024-09-25","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":60000,"output":60000},"cost":{"input":0.027,"output":0.201}},"@cf/meta/llama-guard-3-8b":{"id":"@cf/meta/llama-guard-3-8b","name":"Llama Guard 3 8B","family":"llama","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":true,"release_date":"2025-01-22","last_updated":"2025-01-22","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131072,"output":131072},"cost":{"input":0.484,"output":0.03}},"@cf/ibm-granite/granite-4.0-h-micro":{"id":"@cf/ibm-granite/granite-4.0-h-micro","name":"Granite 4.0 H Micro","family":"granite","attachment":false,"reasoning":false,"tool_call":true,"structured_output":false,"temperature":true,"release_date":"2025-10-07","last_updated":"2025-10-07","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":131000,"output":131000},"cost":{"input":0.017,"output":0.112}},"@cf/google/gemma-4-26b-a4b-it":{"id":"@cf/google/gemma-4-26b-a4b-it","name":"Gemma 4 26B A4B IT","family":"gemma","attachment":true,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2026-04-02","last_updated":"2026-04-02","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"output":16384},"cost":{"input":0.1,"output":0.3}},"@cf/openai/gpt-oss-120b":{"id":"@cf/openai/gpt-oss-120b","name":"GPT OSS 120B","family":"gpt-oss","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":16384},"cost":{"input":0.35,"output":0.75}},"@cf/openai/gpt-oss-20b":{"id":"@cf/openai/gpt-oss-20b","name":"GPT OSS 20B","family":"gpt-oss","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"release_date":"2025-08-05","last_updated":"2025-08-05","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":16384},"cost":{"input":0.2,"output":0.3}}}},"nebius":{"id":"nebius","env":["NEBIUS_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://api.tokenfactory.nebius.com/v1","name":"Nebius Token Factory","doc":"https://docs.tokenfactory.nebius.com/","models":{"MiniMaxAI/MiniMax-M2.5":{"id":"MiniMaxAI/MiniMax-M2.5","name":"MiniMax-M2.5","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-01-20","last_updated":"2026-05-07","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":196608,"input":190000,"output":8192},"cost":{"input":0.3,"output":1.2,"cache_read":0.03,"cache_write":0.375}},"MiniMaxAI/MiniMax-M2.5-fast":{"id":"MiniMaxAI/MiniMax-M2.5-fast","name":"MiniMax-M2.5-fast","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-01-20","last_updated":"2026-05-07","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":8000,"input":7000,"output":8192},"cost":{"input":0.3,"output":1.2,"cache_read":0.03,"cache_write":0.375}},"zai-org/GLM-5":{"id":"zai-org/GLM-5","name":"GLM-5","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2026-01","release_date":"2026-03-01","last_updated":"2026-03-10","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":200000,"input":200000,"output":16384},"cost":{"input":1,"output":3.2,"cache_read":0.1,"cache_write":1}},"NousResearch/Hermes-4-405B":{"id":"NousResearch/Hermes-4-405B","name":"Hermes-4-405B","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-11","release_date":"2026-01-30","last_updated":"2026-02-04","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"input":120000,"output":8192},"cost":{"input":1,"output":3,"reasoning":3,"cache_read":0.1,"cache_write":1.25}},"NousResearch/Hermes-4-70B":{"id":"NousResearch/Hermes-4-70B","name":"Hermes-4-70B","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-11","release_date":"2026-01-30","last_updated":"2026-02-04","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"input":120000,"output":8192},"cost":{"input":0.13,"output":0.4,"reasoning":0.4,"cache_read":0.013,"cache_write":0.16}},"moonshotai/Kimi-K2.5":{"id":"moonshotai/Kimi-K2.5","name":"Kimi-K2.5","family":"kimi","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-06","release_date":"2025-12-15","last_updated":"2026-02-04","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"input":256000,"output":8192},"cost":{"input":0.5,"output":2.5,"reasoning":2.5,"cache_read":0.05,"cache_write":0.625}},"moonshotai/Kimi-K2.5-fast":{"id":"moonshotai/Kimi-K2.5-fast","name":"Kimi-K2.5-fast","family":"kimi","attachment":true,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-06","release_date":"2025-12-15","last_updated":"2026-02-04","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"input":256000,"output":8192},"cost":{"input":0.5,"output":2.5,"cache_read":0.05,"cache_write":0.625}},"meta-llama/Meta-Llama-3.1-8B-Instruct":{"id":"meta-llama/Meta-Llama-3.1-8B-Instruct","name":"Meta-Llama-3.1-8B-Instruct","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-12","release_date":"2024-07-23","last_updated":"2026-02-04","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"input":120000,"output":4096},"cost":{"input":0.02,"output":0.06,"cache_read":0.002,"cache_write":0.025}},"meta-llama/Llama-3.3-70B-Instruct":{"id":"meta-llama/Llama-3.3-70B-Instruct","name":"Llama-3.3-70B-Instruct","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-08","release_date":"2025-12-05","last_updated":"2026-02-04","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"input":120000,"output":8192},"cost":{"input":0.13,"output":0.4,"cache_read":0.013,"cache_write":0.16}},"deepseek-ai/DeepSeek-V4-Pro":{"id":"deepseek-ai/DeepSeek-V4-Pro","name":"DeepSeek V4 Pro","family":"deepseek-thinking","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-05","release_date":"2026-04-24","last_updated":"2026-04-24","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":1000000,"output":384000},"cost":{"input":1.75,"output":3.5,"cache_read":0.15}},"deepseek-ai/DeepSeek-V3.2":{"id":"deepseek-ai/DeepSeek-V3.2","name":"DeepSeek-V3.2","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-11","release_date":"2026-01-20","last_updated":"2026-02-04","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":163000,"input":160000,"output":16384},"cost":{"input":0.3,"output":0.45,"reasoning":0.45,"cache_read":0.03,"cache_write":0.375}},"deepseek-ai/DeepSeek-V3.2-fast":{"id":"deepseek-ai/DeepSeek-V3.2-fast","name":"DeepSeek-V3.2-fast","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-01-27","last_updated":"2026-05-07","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":8000,"input":7000,"output":8192},"cost":{"input":0.4,"output":2,"cache_read":0.04,"cache_write":0.5}},"nvidia/Llama-3_1-Nemotron-Ultra-253B-v1":{"id":"nvidia/Llama-3_1-Nemotron-Ultra-253B-v1","name":"Llama-3.1-Nemotron-Ultra-253B-v1","family":"nemotron","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-12","release_date":"2025-01-15","last_updated":"2026-02-04","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"input":120000,"output":4096},"cost":{"input":0.6,"output":1.8,"cache_read":0.06,"cache_write":0.75}},"nvidia/Nemotron-3-Nano-Omni":{"id":"nvidia/Nemotron-3-Nano-Omni","name":"Nemotron-3-Nano-Omni","family":"nemotron","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-01-20","last_updated":"2026-05-07","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":65536,"input":60000,"output":8192},"cost":{"input":0.06,"output":0.24,"cache_read":0.006,"cache_write":0.075}},"nvidia/nemotron-3-super-120b-a12b":{"id":"nvidia/nemotron-3-super-120b-a12b","name":"Nemotron-3-Super-120B-A12B","family":"nemotron","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2026-02","release_date":"2026-03-11","last_updated":"2026-03-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":256000,"input":256000,"output":32768},"cost":{"input":0.3,"output":0.9}},"nvidia/NVIDIA-Nemotron-3-Nano-30B-A3B":{"id":"nvidia/NVIDIA-Nemotron-3-Nano-30B-A3B","name":"Nemotron-3-Nano-30B-A3B","family":"nemotron","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-05","release_date":"2025-08-10","last_updated":"2026-02-04","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":32000,"input":30000,"output":4096},"cost":{"input":0.06,"output":0.24,"cache_read":0.006,"cache_write":0.075}},"PrimeIntellect/INTELLECT-3":{"id":"PrimeIntellect/INTELLECT-3","name":"INTELLECT-3","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-10","release_date":"2026-01-25","last_updated":"2026-02-04","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"input":120000,"output":8192},"cost":{"input":0.2,"output":1.1,"cache_read":0.02,"cache_write":0.25}},"Qwen/Qwen3-Embedding-8B":{"id":"Qwen/Qwen3-Embedding-8B","name":"Qwen3-Embedding-8B","family":"text-embedding","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":false,"knowledge":"2025-10","release_date":"2026-01-10","last_updated":"2026-02-04","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":32768,"input":32768,"output":0},"cost":{"input":0.01,"output":0}},"Qwen/Qwen3-30B-A3B-Instruct-2507":{"id":"Qwen/Qwen3-30B-A3B-Instruct-2507","name":"Qwen3-30B-A3B-Instruct-2507","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-12","release_date":"2026-01-28","last_updated":"2026-02-04","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"input":120000,"output":8192},"cost":{"input":0.1,"output":0.3,"cache_read":0.01,"cache_write":0.125}},"Qwen/Qwen3.5-397B-A17B":{"id":"Qwen/Qwen3.5-397B-A17B","name":"Qwen3.5-397B-A17B","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-07","release_date":"2025-07-15","last_updated":"2026-05-07","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":262144,"input":250000,"output":8192},"cost":{"input":0.6,"output":3.6,"cache_read":0.06,"cache_write":0.75}},"Qwen/Qwen3.5-397B-A17B-fast":{"id":"Qwen/Qwen3.5-397B-A17B-fast","name":"Qwen3.5-397B-A17B-fast","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-07","release_date":"2025-07-15","last_updated":"2026-05-07","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":8000,"input":7000,"output":8192},"cost":{"input":0.6,"output":3.6,"cache_read":0.06,"cache_write":0.75}},"Qwen/Qwen3-235B-A22B-Instruct-2507":{"id":"Qwen/Qwen3-235B-A22B-Instruct-2507","name":"Qwen3 235B A22B Instruct 2507","family":"qwen","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"knowledge":"2025-07","release_date":"2025-07-25","last_updated":"2025-10-04","modalities":{"input":["text"],"output":["text"]},"open_weights":false,"limit":{"context":262144,"output":8192},"cost":{"input":0.2,"output":0.6}},"Qwen/Qwen3-Next-80B-A3B-Thinking-fast":{"id":"Qwen/Qwen3-Next-80B-A3B-Thinking-fast","name":"Qwen3-Next-80B-A3B-Thinking-fast","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-07","release_date":"2025-07-25","last_updated":"2026-05-07","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":8000,"input":7000,"output":8192},"cost":{"input":0.15,"output":1.2,"cache_read":0.015,"cache_write":0.1875}},"Qwen/Qwen2.5-VL-72B-Instruct":{"id":"Qwen/Qwen2.5-VL-72B-Instruct","name":"Qwen2.5-VL-72B-Instruct","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2024-12","release_date":"2025-01-20","last_updated":"2026-02-04","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"input":120000,"output":8192},"cost":{"input":0.25,"output":0.75,"cache_read":0.025,"cache_write":0.31}},"Qwen/Qwen3-32B":{"id":"Qwen/Qwen3-32B","name":"Qwen3-32B","attachment":false,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-12","release_date":"2026-01-28","last_updated":"2026-02-04","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"input":120000,"output":8192},"cost":{"input":0.1,"output":0.3,"cache_read":0.01,"cache_write":0.125}},"Qwen/Qwen3-235B-A22B-Thinking-2507-fast":{"id":"Qwen/Qwen3-235B-A22B-Thinking-2507-fast","name":"Qwen3-235B-A22B-Thinking-2507-fast","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-07","release_date":"2025-07-25","last_updated":"2026-05-07","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":8000,"input":7000,"output":8192},"cost":{"input":0.5,"output":2,"cache_read":0.05,"cache_write":0.625}},"Qwen/Qwen3-Next-80B-A3B-Thinking":{"id":"Qwen/Qwen3-Next-80B-A3B-Thinking","name":"Qwen3-Next-80B-A3B-Thinking","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-12","release_date":"2026-01-28","last_updated":"2026-02-04","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"input":120000,"output":16384},"cost":{"input":0.15,"output":1.2,"reasoning":1.2,"cache_read":0.015,"cache_write":0.18}},"google/gemma-2-2b-it":{"id":"google/gemma-2-2b-it","name":"Gemma-2-2b-it","attachment":false,"reasoning":false,"tool_call":false,"structured_output":false,"temperature":true,"knowledge":"2024-06","release_date":"2024-07-31","last_updated":"2026-02-04","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":8192,"input":8000,"output":4096},"cost":{"input":0.02,"output":0.06,"cache_read":0.002,"cache_write":0.025}},"google/gemma-3-27b-it":{"id":"google/gemma-3-27b-it","name":"Gemma-3-27b-it","attachment":true,"reasoning":false,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-10","release_date":"2026-01-20","last_updated":"2026-02-04","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":110000,"input":100000,"output":8192},"cost":{"input":0.1,"output":0.3,"cache_read":0.01,"cache_write":0.125}},"openai/gpt-oss-120b-fast":{"id":"openai/gpt-oss-120b-fast","name":"gpt-oss-120b-fast","attachment":false,"reasoning":true,"tool_call":true,"structured_output":true,"temperature":true,"knowledge":"2025-06","release_date":"2025-06-10","last_updated":"2026-05-07","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":8000,"input":7000,"output":8192},"cost":{"input":0.1,"output":0.5,"cache_read":0.01,"cache_write":0.125}},"openai/gpt-oss-120b":{"id":"openai/gpt-oss-120b","name":"gpt-oss-120b","attachment":false,"reasoning":true,"tool_call":true,"interleaved":{"field":"reasoning_content"},"structured_output":true,"temperature":true,"knowledge":"2025-09","release_date":"2026-01-10","last_updated":"2026-02-04","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"input":124000,"output":8192},"cost":{"input":0.15,"output":0.6,"reasoning":0.6,"cache_read":0.015,"cache_write":0.18}}}},"minimax":{"id":"minimax","env":["MINIMAX_API_KEY"],"npm":"@ai-sdk/anthropic","api":"https://api.minimax.io/anthropic/v1","name":"MiniMax (minimax.io)","doc":"https://platform.minimax.io/docs/guides/quickstart","models":{"MiniMax-M2.5":{"id":"MiniMax-M2.5","name":"MiniMax-M2.5","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-02-12","last_updated":"2026-02-12","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0.3,"output":1.2,"cache_read":0.03,"cache_write":0.375}},"MiniMax-M3":{"id":"MiniMax-M3","name":"MiniMax-M3","family":"minimax","attachment":true,"reasoning":true,"reasoning_options":[{"type":"toggle"}],"tool_call":true,"temperature":true,"release_date":"2026-06-01","last_updated":"2026-06-01","modalities":{"input":["text","image","video"],"output":["text"]},"open_weights":true,"limit":{"context":512000,"output":128000},"cost":{"input":0.6,"output":2.4,"cache_read":0.12}},"MiniMax-M2.5-highspeed":{"id":"MiniMax-M2.5-highspeed","name":"MiniMax-M2.5-highspeed","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-02-13","last_updated":"2026-02-13","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0.6,"output":2.4,"cache_read":0.06,"cache_write":0.375}},"MiniMax-M2.7":{"id":"MiniMax-M2.7","name":"MiniMax-M2.7","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-03-18","last_updated":"2026-03-18","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0.3,"output":1.2,"cache_read":0.06,"cache_write":0.375}},"MiniMax-M2":{"id":"MiniMax-M2","name":"MiniMax-M2","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-10-27","last_updated":"2025-10-27","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":196608,"output":128000},"cost":{"input":0.3,"output":1.2}},"MiniMax-M2.7-highspeed":{"id":"MiniMax-M2.7-highspeed","name":"MiniMax-M2.7-highspeed","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2026-03-18","last_updated":"2026-03-18","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0.6,"output":2.4,"cache_read":0.06,"cache_write":0.375}},"MiniMax-M2.1":{"id":"MiniMax-M2.1","name":"MiniMax-M2.1","family":"minimax","attachment":false,"reasoning":true,"tool_call":true,"temperature":true,"release_date":"2025-12-23","last_updated":"2025-12-23","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":204800,"output":131072},"cost":{"input":0.3,"output":1.2}}}},"llama":{"id":"llama","env":["LLAMA_API_KEY"],"npm":"@ai-sdk/openai-compatible","api":"https://api.llama.com/compat/v1/","name":"Llama","doc":"https://llama.developer.meta.com/docs/models","models":{"cerebras-llama-4-maverick-17b-128e-instruct":{"id":"cerebras-llama-4-maverick-17b-128e-instruct","name":"Cerebras-Llama-4-Maverick-17B-128E-Instruct","family":"llama","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-04-05","last_updated":"2025-04-05","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4096},"cost":{"input":0,"output":0}},"groq-llama-4-maverick-17b-128e-instruct":{"id":"groq-llama-4-maverick-17b-128e-instruct","name":"Groq-Llama-4-Maverick-17B-128E-Instruct","family":"llama","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-04-05","last_updated":"2025-04-05","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4096},"cost":{"input":0,"output":0}},"llama-4-maverick-17b-128e-instruct-fp8":{"id":"llama-4-maverick-17b-128e-instruct-fp8","name":"Llama-4-Maverick-17B-128E-Instruct-FP8","family":"llama","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-08","release_date":"2025-04-05","last_updated":"2025-04-05","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4096},"cost":{"input":0,"output":0}},"llama-4-scout-17b-16e-instruct-fp8":{"id":"llama-4-scout-17b-16e-instruct-fp8","name":"Llama-4-Scout-17B-16E-Instruct-FP8","family":"llama","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2024-08","release_date":"2025-04-05","last_updated":"2025-04-05","modalities":{"input":["text","image"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4096},"cost":{"input":0,"output":0}},"cerebras-llama-4-scout-17b-16e-instruct":{"id":"cerebras-llama-4-scout-17b-16e-instruct","name":"Cerebras-Llama-4-Scout-17B-16E-Instruct","family":"llama","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2025-01","release_date":"2025-04-05","last_updated":"2025-04-05","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4096},"cost":{"input":0,"output":0}},"llama-3.3-8b-instruct":{"id":"llama-3.3-8b-instruct","name":"Llama-3.3-8B-Instruct","family":"llama","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2023-12","release_date":"2024-12-06","last_updated":"2024-12-06","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4096},"cost":{"input":0,"output":0}},"llama-3.3-70b-instruct":{"id":"llama-3.3-70b-instruct","name":"Llama-3.3-70B-Instruct","family":"llama","attachment":true,"reasoning":false,"tool_call":true,"temperature":true,"knowledge":"2023-12","release_date":"2024-12-06","last_updated":"2024-12-06","modalities":{"input":["text"],"output":["text"]},"open_weights":true,"limit":{"context":128000,"output":4096},"cost":{"input":0,"output":0}}}}} \ No newline at end of file diff --git a/internal/models/modelsdb.go b/internal/models/modelsdb.go index 72322dd0..c8862e27 100644 --- a/internal/models/modelsdb.go +++ b/internal/models/modelsdb.go @@ -62,14 +62,73 @@ const ( ) // npmToWireProtocol maps npm package names from models.dev to the wire -// protocol they speak. Provider-specific bundles (azure, bedrock, vercel, -// openrouter, google-vertex, google-vertex-anthropic) are intentionally -// absent — they have native top-level cases in CreateProvider and never -// reach the auto-router. Providers not in this map but with an api URL -// are auto-routed through the OpenAI-compatible wire. +// protocol they speak. Provider-specific bundles that need bespoke auth or +// URL templating (azure, bedrock, openrouter, google-vertex, google-vertex- +// anthropic, and @ai-sdk/gateway which is the Vercel AI Gateway) are +// intentionally absent — they have native top-level cases in CreateProvider +// and never reach the auto-router. Providers not in this map but with an +// api URL are auto-routed through the OpenAI-compatible wire. +// +// The thin OpenAI-compatible npm wrappers (groq, cerebras, mistral, …) are +// listed explicitly so that auto-routing can recover their hard-coded base +// URL from sdkDefaultBaseURL when the registry entry has no api field. var npmToWireProtocol = map[string]wireProtocol{ + // Native wires. "@ai-sdk/openai": wireOpenAI, "@ai-sdk/openai-compatible": wireOpenAI, "@ai-sdk/anthropic": wireAnthropic, "@ai-sdk/google": wireGoogle, + + // Thin OpenAI-compatible wrappers. Each ships with a hard-coded base URL + // in its JS SDK (see sdkDefaultBaseURL) but speaks the plain OpenAI chat + // completions wire — so we can route them all through fantasy's + // openaicompat provider once we supply the URL. + "@ai-sdk/groq": wireOpenAI, + "@ai-sdk/cerebras": wireOpenAI, + "@ai-sdk/perplexity": wireOpenAI, + "@ai-sdk/togetherai": wireOpenAI, + "@ai-sdk/xai": wireOpenAI, + "@ai-sdk/deepinfra": wireOpenAI, + "@ai-sdk/mistral": wireOpenAI, + "@ai-sdk/cohere": wireOpenAI, + "@ai-sdk/vercel": wireOpenAI, // v0 API (api.v0.dev), distinct from @ai-sdk/gateway + "@aihubmix/ai-sdk-provider": wireOpenAI, + "venice-ai-sdk-provider": wireOpenAI, + "merge-gateway-ai-sdk-provider": wireOpenAI, +} + +// sdkDefaultBaseURL maps an npm package name to the base URL its JavaScript +// SDK uses by default. This lets us recover a working endpoint for providers +// whose models.dev entry omits the `api` field because the JS SDK hard-codes +// the URL (e.g. groq, cerebras, mistral, x.ai…). +// +// Only OpenAI-compatible and native-wire SDKs are listed; providers needing +// bespoke auth or URL templating (bedrock SigV4, azure resource URLs, +// google-vertex project/location, cloudflare gateway account IDs, gitlab, +// sap-ai-core) are handled by native CreateProvider cases or surface a +// targeted error that asks the user to supply --provider-url. +var sdkDefaultBaseURL = map[string]string{ + // Native wires. + "@ai-sdk/openai": "https://api.openai.com/v1", + "@ai-sdk/anthropic": "https://api.anthropic.com/v1", + "@ai-sdk/google": "https://generativelanguage.googleapis.com/v1beta", + + // Thin OpenAI-compatible wrappers. + "@ai-sdk/groq": "https://api.groq.com/openai/v1", + "@ai-sdk/cerebras": "https://api.cerebras.ai/v1", + "@ai-sdk/perplexity": "https://api.perplexity.ai", + "@ai-sdk/togetherai": "https://api.together.xyz/v1", + "@ai-sdk/xai": "https://api.x.ai/v1", + "@ai-sdk/deepinfra": "https://api.deepinfra.com/v1/openai", + "@ai-sdk/mistral": "https://api.mistral.ai/v1", + "@ai-sdk/cohere": "https://api.cohere.com/compatibility/v1", + "@ai-sdk/vercel": "https://api.v0.dev/v1", + "@aihubmix/ai-sdk-provider": "https://aihubmix.com/v1", + "venice-ai-sdk-provider": "https://api.venice.ai/api/v1", + "merge-gateway-ai-sdk-provider": "https://api-gateway.merge.dev/v1/ai-sdk", + + // Native handlers — included for ResolveProviderBaseURL introspection + // even though CreateProvider routes these via dedicated cases. + "@ai-sdk/gateway": "https://ai-gateway.vercel.sh/v1", + "@openrouter/ai-sdk-provider": "https://openrouter.ai/api/v1", } diff --git a/internal/models/providers.go b/internal/models/providers.go index f1d2ef52..da25b3ba 100644 --- a/internal/models/providers.go +++ b/internal/models/providers.go @@ -286,13 +286,15 @@ func CreateProvider(ctx context.Context, config *ProviderConfig) (*ProviderResul result, createErr = createGoogleProvider(ctx, config, modelName) case "ollama": result, createErr = createOllamaProvider(ctx, config, modelName) - case "azure": + case "azure", "azure-cognitive-services": result, createErr = createAzureProvider(ctx, config, modelName) case "google-vertex-anthropic": result, createErr = createVertexAnthropicProvider(ctx, config, modelName) + case "google-vertex": + result, createErr = createGoogleVertexProvider(ctx, config, modelName) case "openrouter": result, createErr = createOpenRouterProvider(ctx, config, modelName) - case "bedrock": + case "bedrock", "amazon-bedrock": result, createErr = createBedrockProvider(ctx, config, modelName) case "vercel": result, createErr = createVercelProvider(ctx, config, modelName) @@ -376,8 +378,27 @@ func autoRouteProvider(ctx context.Context, config *ProviderConfig, provider, mo } // All three wires use the provider's API URL from models.dev as the base. - if config.ProviderURL == "" && providerInfo.API != "" { - config.ProviderURL = providerInfo.API + // When the registry has none, fall back to the SDK's hard-coded default for + // this npm package (covers groq, cerebras, mistral, x.ai, etc. — providers + // whose JS SDK ships a built-in baseURL that models.dev doesn't restate). + if config.ProviderURL == "" { + if providerInfo.API != "" { + config.ProviderURL = providerInfo.API + } else if defaultURL, ok := sdkDefaultBaseURL[npmPackage]; ok { + config.ProviderURL = defaultURL + providerInfo.API = defaultURL // for downstream helpers that read info.API + } + } + + // Provider templates a runtime account/region/deployment segment into the + // URL (cloudflare-ai-gateway, databricks, snowflake-cortex, gitlab, + // sap-ai-core). Resolve via environment variables, or surface a targeted + // error pointing the user at the right knobs. + if resolved, err := resolveTemplatedAPIURL(config.ProviderURL, providerInfo); err != nil { + return nil, err + } else if resolved != "" { + config.ProviderURL = resolved + providerInfo.API = resolved } switch wire { diff --git a/internal/models/sdk_defaults.go b/internal/models/sdk_defaults.go new file mode 100644 index 00000000..1768d682 --- /dev/null +++ b/internal/models/sdk_defaults.go @@ -0,0 +1,170 @@ +package models + +import ( + "context" + "fmt" + "os" + "regexp" + "strings" + + "charm.land/fantasy/providers/google" +) + +// templatePlaceholderRe matches "${NAME}" placeholders in URL templates from +// models.dev (e.g. "https://${DATABRICKS_HOST}/ai-gateway/mlflow/v1"). +var templatePlaceholderRe = regexp.MustCompile(`\$\{([A-Z0-9_]+)\}`) + +// templateEnvVarOverrides supplies fallback environment variable names for +// placeholders that providers commonly use under non-obvious env names. +// The placeholder name itself is always tried first; this map adds extra +// names to try when the placeholder doesn't match the canonical env var. +var templateEnvVarOverrides = map[string][]string{ + "CLOUDFLARE_ACCOUNT_ID": {"CF_ACCOUNT_ID"}, + "CLOUDFLARE_GATEWAY_NAME": {"CF_GATEWAY", "CLOUDFLARE_GATEWAY"}, + "DATABRICKS_HOST": {"DATABRICKS_WORKSPACE_URL"}, + "SNOWFLAKE_ACCOUNT": {"SNOWFLAKE_ACCOUNT_ID"}, +} + +// resolveTemplatedAPIURL substitutes "${VAR}" placeholders in apiURL with the +// values of the named environment variables. Returns: +// - ("", nil) when apiURL contains no placeholders (caller keeps current URL), +// - (resolved, nil) when every placeholder was resolved, +// - ("", error) when one or more placeholders are unset, with a message that +// names the missing env vars and points at the relevant provider. +// +// The info parameter is used purely for error messaging (provider name). +func resolveTemplatedAPIURL(apiURL string, info *ProviderInfo) (string, error) { + if apiURL == "" || !strings.Contains(apiURL, "${") { + return "", nil + } + + var missing []string + resolved := templatePlaceholderRe.ReplaceAllStringFunc(apiURL, func(match string) string { + // match is "${NAME}". Extract NAME. + name := match[2 : len(match)-1] + if v := os.Getenv(name); v != "" { + return v + } + for _, alt := range templateEnvVarOverrides[name] { + if v := os.Getenv(alt); v != "" { + return v + } + } + missing = append(missing, name) + return match + }) + + if len(missing) > 0 { + providerName := info.ID + if info.Name != "" { + providerName = info.Name + } + return "", fmt.Errorf( + "provider %s requires environment variable(s) %s to construct its API URL (%s); "+ + "set them or pass --provider-url to override", + providerName, strings.Join(missing, ", "), apiURL, + ) + } + return resolved, nil +} + +// ResolveProviderBaseURL returns the base API URL kit will use when talking to +// the given provider, applying the same resolution order as CreateProvider: +// +// 1. The provider's `api` field from the models.dev registry. +// 2. The hard-coded default base URL of its npm SDK package (e.g. +// @ai-sdk/groq → https://api.groq.com/openai/v1). +// 3. Template substitution against the current process environment when the +// URL contains "${VAR}" placeholders (e.g. cloudflare-workers-ai needs +// CLOUDFLARE_ACCOUNT_ID). +// +// It returns an error when the provider is unknown, when no URL can be derived, +// or when a templated URL has unset placeholders. The error message is suitable +// for direct display to end users. +// +// Note: providers handled by bespoke auth schemes (amazon-bedrock SigV4, +// azure resource URLs, google-vertex project/location, sap-ai-core customer +// deployments) may return either an empty URL or a regional/templated URL — +// the actual endpoint is finalised inside their native handlers and depends on +// runtime credentials. +func ResolveProviderBaseURL(providerID string) (string, error) { + registry := GetGlobalRegistry() + info := registry.GetProviderInfo(providerID) + if info == nil { + return "", fmt.Errorf("unknown provider: %s", providerID) + } + + apiURL := info.API + if apiURL == "" { + if defaultURL, ok := sdkDefaultBaseURL[info.NPM]; ok { + apiURL = defaultURL + } + } + + if apiURL == "" { + return "", fmt.Errorf( + "provider %s has no default API URL: its npm package %q does not "+ + "ship a built-in baseURL (likely Bedrock SigV4, Azure deployment, "+ + "Vertex project/location, or a customer-hosted endpoint). "+ + "Pass --provider-url or set the provider's URL env var", + providerID, info.NPM, + ) + } + + if strings.Contains(apiURL, "${") { + resolved, err := resolveTemplatedAPIURL(apiURL, info) + if err != nil { + return apiURL, err + } + return resolved, nil + } + return apiURL, nil +} + +// createGoogleVertexProvider creates a Google Gemini provider that targets the +// Vertex AI backend (rather than the public generativelanguage.googleapis.com +// endpoint). It requires the same project/region environment variables as +// google-vertex-anthropic. +func createGoogleVertexProvider(ctx context.Context, config *ProviderConfig, modelName string) (*ProviderResult, error) { + projectID := firstNonEmpty( + os.Getenv("GOOGLE_VERTEX_PROJECT"), + os.Getenv("GOOGLE_CLOUD_PROJECT"), + os.Getenv("GCLOUD_PROJECT"), + os.Getenv("CLOUDSDK_CORE_PROJECT"), + ) + if projectID == "" { + return nil, fmt.Errorf( + "google Vertex project ID not provided, set GOOGLE_VERTEX_PROJECT, " + + "GOOGLE_CLOUD_PROJECT, or GCLOUD_PROJECT environment variable", + ) + } + + region := firstNonEmpty( + os.Getenv("GOOGLE_VERTEX_LOCATION"), + os.Getenv("CLOUD_ML_REGION"), + ) + if region == "" { + region = "global" + } + + opts := []google.Option{ + google.WithVertex(projectID, region), + google.WithName("google-vertex"), + } + + if config.TLSSkipVerify { + opts = append(opts, google.WithHTTPClient(createHTTPClientWithTLSConfig(true))) + } + + provider, err := google.New(opts...) + if err != nil { + return nil, wrapProviderErr("Google Vertex", "provider", err) + } + + model, err := provider.LanguageModel(ctx, modelName) + if err != nil { + return nil, wrapProviderErr("Google Vertex", "model", err) + } + + return &ProviderResult{Model: model}, nil +} diff --git a/internal/models/sdk_defaults_test.go b/internal/models/sdk_defaults_test.go new file mode 100644 index 00000000..659edbe2 --- /dev/null +++ b/internal/models/sdk_defaults_test.go @@ -0,0 +1,214 @@ +package models + +import ( + "context" + "reflect" + "strings" + "testing" +) + +// TestSDKDefaultBaseURL_CoversAllWireMappedPackages enforces the invariant +// that every npm package recognised by the auto-router has a corresponding +// default base URL — otherwise a provider that omits its `api` field in the +// registry would silently fail to route at runtime. +func TestSDKDefaultBaseURL_CoversAllWireMappedPackages(t *testing.T) { + for npm := range npmToWireProtocol { + // @ai-sdk/openai-compatible is a wire family, not a single SDK with + // a default URL — providers using it always supply their own `api`. + if npm == "@ai-sdk/openai-compatible" { + continue + } + if _, ok := sdkDefaultBaseURL[npm]; !ok { + t.Errorf("npm %q is in npmToWireProtocol but has no sdkDefaultBaseURL entry — "+ + "providers using this npm with no `api` field cannot be routed", npm) + } + } +} + +// TestSDKDefaultBaseURL_AllURLsAreAbsolute sanity-checks that every default +// URL is a well-formed absolute https endpoint (catches typos in the table). +func TestSDKDefaultBaseURL_AllURLsAreAbsolute(t *testing.T) { + for npm, url := range sdkDefaultBaseURL { + if !strings.HasPrefix(url, "https://") { + t.Errorf("sdkDefaultBaseURL[%q] = %q is not an absolute https URL", npm, url) + } + } +} + +// TestResolveProviderBaseURL_RegistryFirst verifies that the registry's `api` +// field wins over any SDK default. +func TestResolveProviderBaseURL_RegistryFirst(t *testing.T) { + // xai is in the registry with no `api` field — its URL comes from the + // SDK default. Use a synthetic registry-backed provider to test the + // priority via the public registry instead. + url, err := ResolveProviderBaseURL("openai") + if err != nil { + t.Fatalf("ResolveProviderBaseURL(openai): %v", err) + } + if url != "https://api.openai.com/v1" { + t.Errorf("openai URL = %q, want https://api.openai.com/v1", url) + } +} + +// TestResolveProviderBaseURL_SDKDefaultFallback verifies that providers +// without an `api` field (groq, cerebras, xai, …) resolve to their SDK +// hard-coded default URL. +func TestResolveProviderBaseURL_SDKDefaultFallback(t *testing.T) { + tests := map[string]string{ + "groq": "https://api.groq.com/openai/v1", + "cerebras": "https://api.cerebras.ai/v1", + "xai": "https://api.x.ai/v1", + "mistral": "https://api.mistral.ai/v1", + "perplexity": "https://api.perplexity.ai", + "togetherai": "https://api.together.xyz/v1", + "deepinfra": "https://api.deepinfra.com/v1/openai", + "cohere": "https://api.cohere.com/compatibility/v1", + "v0": "https://api.v0.dev/v1", + "aihubmix": "https://aihubmix.com/v1", + "venice": "https://api.venice.ai/api/v1", + "openrouter": "https://openrouter.ai/api/v1", + } + for providerID, wantURL := range tests { + t.Run(providerID, func(t *testing.T) { + got, err := ResolveProviderBaseURL(providerID) + if err != nil { + t.Fatalf("ResolveProviderBaseURL(%s): %v", providerID, err) + } + if got != wantURL { + t.Errorf("%s URL = %q, want %q", providerID, got, wantURL) + } + }) + } +} + +// TestResolveProviderBaseURL_TemplatedURL_MissingEnv verifies that providers +// whose URL contains "${VAR}" placeholders surface a targeted error when the +// environment variables are unset. +func TestResolveProviderBaseURL_TemplatedURL_MissingEnv(t *testing.T) { + // cloudflare-workers-ai's api URL contains ${CLOUDFLARE_ACCOUNT_ID}. + // Ensure the variable is unset for this test. + t.Setenv("CLOUDFLARE_ACCOUNT_ID", "") + t.Setenv("CF_ACCOUNT_ID", "") + + _, err := ResolveProviderBaseURL("cloudflare-workers-ai") + if err == nil { + t.Fatal("expected error for unset CLOUDFLARE_ACCOUNT_ID, got nil") + } + if !strings.Contains(err.Error(), "CLOUDFLARE_ACCOUNT_ID") { + t.Errorf("error should name the missing env var, got: %v", err) + } + if !strings.Contains(err.Error(), "--provider-url") { + t.Errorf("error should suggest --provider-url override, got: %v", err) + } +} + +// TestResolveProviderBaseURL_TemplatedURL_Resolved verifies env-var +// substitution succeeds when the placeholder is set. +func TestResolveProviderBaseURL_TemplatedURL_Resolved(t *testing.T) { + t.Setenv("CLOUDFLARE_ACCOUNT_ID", "test-acct-123") + got, err := ResolveProviderBaseURL("cloudflare-workers-ai") + if err != nil { + t.Fatalf("ResolveProviderBaseURL: %v", err) + } + if !strings.Contains(got, "test-acct-123") { + t.Errorf("resolved URL %q should contain test-acct-123", got) + } + if strings.Contains(got, "${") { + t.Errorf("resolved URL %q still contains template placeholder", got) + } +} + +// TestResolveProviderBaseURL_UnknownProvider verifies the not-in-registry error. +func TestResolveProviderBaseURL_UnknownProvider(t *testing.T) { + _, err := ResolveProviderBaseURL("does-not-exist") + if err == nil { + t.Fatal("expected error for unknown provider, got nil") + } + if !strings.Contains(err.Error(), "unknown provider") { + t.Errorf("error should say 'unknown provider', got: %v", err) + } +} + +// TestAutoRouteProvider_SDKDefaultURLFallback verifies that providers whose +// registry entry omits the `api` field (groq, mistral, xai, etc.) are still +// auto-routed by falling back to the SDK's hard-coded default URL. +func TestAutoRouteProvider_SDKDefaultURLFallback(t *testing.T) { + tests := []struct { + name string + npmPackage string + wantInURL string + }{ + {"groq", "@ai-sdk/groq", "groq.com"}, + {"cerebras", "@ai-sdk/cerebras", "cerebras.ai"}, + {"xai", "@ai-sdk/xai", "x.ai"}, + {"mistral", "@ai-sdk/mistral", "mistral.ai"}, + {"v0", "@ai-sdk/vercel", "v0.dev"}, + } + for _, tt := range tests { + t.Run(tt.name, func(t *testing.T) { + reg := &ModelsRegistry{ + providers: map[string]ProviderInfo{ + "testfallback": { + ID: "testfallback", + Name: "Test Fallback", + Env: []string{"TESTFALLBACK_API_KEY"}, + NPM: tt.npmPackage, + // API intentionally omitted — must fall back to SDK default. + Models: map[string]ModelInfo{ + "any-model": {ID: "any-model", Name: "any-model"}, + }, + }, + }, + } + config := &ProviderConfig{ProviderAPIKey: "test-key"} + + result, err := autoRouteProvider(context.Background(), config, "testfallback", "any-model", reg) + if err != nil { + t.Fatalf("autoRouteProvider returned error: %v", err) + } + if result == nil || result.Model == nil { + t.Fatal("autoRouteProvider returned nil model") + } + // Verify the SDK default URL was picked up. + if !strings.Contains(config.ProviderURL, tt.wantInURL) { + t.Errorf("config.ProviderURL = %q, want substring %q (SDK default)", + config.ProviderURL, tt.wantInURL) + } + // All these wrappers route through the openai-compat wire. + gotType := reflect.TypeOf(result.Model).String() + if gotType != "openai.languageModel" { + t.Errorf("model type = %q, want openai.languageModel", gotType) + } + }) + } +} + +// TestResolveTemplatedAPIURL_NoPlaceholders verifies that URLs without +// placeholders are returned as-is (the caller keeps using the original). +func TestResolveTemplatedAPIURL_NoPlaceholders(t *testing.T) { + got, err := resolveTemplatedAPIURL("https://api.example.com/v1", &ProviderInfo{ID: "x"}) + if err != nil { + t.Fatalf("unexpected error: %v", err) + } + if got != "" { + t.Errorf("got %q, want empty string for URL with no placeholders", got) + } +} + +// TestResolveTemplatedAPIURL_AltEnvVar verifies that the alternative env-var +// names (e.g. CF_ACCOUNT_ID for CLOUDFLARE_ACCOUNT_ID) are honoured. +func TestResolveTemplatedAPIURL_AltEnvVar(t *testing.T) { + t.Setenv("CLOUDFLARE_ACCOUNT_ID", "") + t.Setenv("CF_ACCOUNT_ID", "alt-name-123") + + got, err := resolveTemplatedAPIURL( + "https://api.cloudflare.com/client/v4/accounts/${CLOUDFLARE_ACCOUNT_ID}/ai/v1", + &ProviderInfo{ID: "cloudflare-workers-ai"}, + ) + if err != nil { + t.Fatalf("unexpected error: %v", err) + } + if !strings.Contains(got, "alt-name-123") { + t.Errorf("resolved URL %q should have picked up CF_ACCOUNT_ID alternative", got) + } +} diff --git a/pkg/kit/models.go b/pkg/kit/models.go index 1848baa0..1526230b 100644 --- a/pkg/kit/models.go +++ b/pkg/kit/models.go @@ -61,3 +61,23 @@ func CheckProviderReady(provider string) error { } return models.GetGlobalRegistry().ValidateEnvironment(provider, "") } + +// ResolveProviderBaseURL returns the base API URL kit will use when talking to +// the given provider, applying the same resolution order that CreateProvider +// uses internally: +// +// 1. The provider's `api` field from the models.dev registry. +// 2. The hard-coded default base URL of its npm SDK package (e.g. +// @ai-sdk/groq → https://api.groq.com/openai/v1). +// 3. Template substitution against the current process environment when the +// URL contains "${VAR}" placeholders. +// +// Returns a non-nil error when the provider is unknown, when no URL can be +// derived, or when a templated URL has unset placeholders. +// +// Use this from your SDK integration to surface the effective endpoint before +// instantiating a Kit, or to validate that a provider is reachable without +// running an actual request. +func ResolveProviderBaseURL(providerID string) (string, error) { + return models.ResolveProviderBaseURL(providerID) +}