@psnext/slingcli 2.4.20260528-1 → 2.5.20260602-1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/node_modules/@aws-sdk/core/package.json +3 -3
- package/node_modules/@aws-sdk/credential-provider-env/package.json +3 -3
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/node-http-handler/LICENSE +201 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/node-http-handler/README.md +9 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/node-http-handler/dist-cjs/index.js +888 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/node-http-handler/dist-es/build-abort-error.js +19 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/node-http-handler/dist-es/constants.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/node-http-handler/dist-es/get-transformed-headers.js +9 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/node-http-handler/dist-es/http2/ClientHttp2SessionRef.js +50 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/node-http-handler/dist-es/index.js +3 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/node-http-handler/dist-es/node-http-handler.js +240 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-manager.js +136 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-pool.js +46 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/node-http-handler/dist-es/node-http2-handler.js +172 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/node-http-handler/dist-es/set-connection-timeout.js +36 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/node-http-handler/dist-es/set-request-timeout.js +21 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/node-http-handler/dist-es/set-socket-keep-alive.js +22 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/node-http-handler/dist-es/set-socket-timeout.js +23 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/node-http-handler/dist-es/stream-collector/collector.js +8 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/node-http-handler/dist-es/stream-collector/index.js +41 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/node-http-handler/dist-es/timing.js +4 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/node-http-handler/dist-es/write-request-body.js +63 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/node-http-handler/dist-types/build-abort-error.d.ts +10 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/node-http-handler/dist-types/constants.d.ts +5 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/node-http-handler/dist-types/get-transformed-headers.d.ts +4 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/node-http-handler/dist-types/http2/ClientHttp2SessionRef.d.ts +46 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/node-http-handler/dist-types/index.d.ts +3 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/node-http-handler/dist-types/node-http-handler.d.ts +47 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-manager.d.ts +46 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-pool.d.ts +36 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/node-http-handler/dist-types/node-http2-handler.d.ts +76 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/node-http-handler/dist-types/set-connection-timeout.d.ts +2 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/node-http-handler/dist-types/set-request-timeout.d.ts +6 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/node-http-handler/dist-types/set-socket-keep-alive.d.ts +6 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/node-http-handler/dist-types/set-socket-timeout.d.ts +2 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/node-http-handler/dist-types/stream-collector/collector.d.ts +5 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/node-http-handler/dist-types/stream-collector/index.d.ts +7 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/node-http-handler/dist-types/timing.d.ts +9 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/node-http-handler/dist-types/write-request-body.d.ts +12 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/node-http-handler/package.json +66 -0
- package/node_modules/@aws-sdk/credential-provider-http/package.json +5 -5
- package/node_modules/@aws-sdk/credential-provider-ini/package.json +11 -11
- package/node_modules/@aws-sdk/credential-provider-login/package.json +4 -4
- package/node_modules/@aws-sdk/credential-provider-node/dist-cjs/index.js +12 -1
- package/node_modules/@aws-sdk/credential-provider-node/dist-es/runtime/memoize-chain.js +12 -1
- package/node_modules/@aws-sdk/credential-provider-node/package.json +9 -9
- package/node_modules/@aws-sdk/credential-provider-process/package.json +3 -3
- package/node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers/package.json +4 -4
- package/node_modules/@aws-sdk/credential-provider-sso/package.json +5 -5
- package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +4 -4
- package/node_modules/@aws-sdk/eventstream-handler-node/package.json +2 -2
- package/node_modules/@aws-sdk/middleware-eventstream/package.json +2 -2
- package/node_modules/@aws-sdk/middleware-websocket/package.json +5 -5
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/index.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/index.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/index.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/index.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/index.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/node_modules/@smithy/node-http-handler/LICENSE +201 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@smithy/node-http-handler/README.md +9 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@smithy/node-http-handler/dist-cjs/index.js +888 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@smithy/node-http-handler/dist-es/build-abort-error.js +19 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@smithy/node-http-handler/dist-es/constants.js +1 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@smithy/node-http-handler/dist-es/get-transformed-headers.js +9 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@smithy/node-http-handler/dist-es/http2/ClientHttp2SessionRef.js +50 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@smithy/node-http-handler/dist-es/index.js +3 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@smithy/node-http-handler/dist-es/node-http-handler.js +240 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-manager.js +136 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-pool.js +46 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@smithy/node-http-handler/dist-es/node-http2-handler.js +172 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@smithy/node-http-handler/dist-es/set-connection-timeout.js +36 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@smithy/node-http-handler/dist-es/set-request-timeout.js +21 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@smithy/node-http-handler/dist-es/set-socket-keep-alive.js +22 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@smithy/node-http-handler/dist-es/set-socket-timeout.js +23 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@smithy/node-http-handler/dist-es/stream-collector/collector.js +8 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@smithy/node-http-handler/dist-es/stream-collector/index.js +41 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@smithy/node-http-handler/dist-es/timing.js +4 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@smithy/node-http-handler/dist-es/write-request-body.js +63 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@smithy/node-http-handler/dist-types/build-abort-error.d.ts +10 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@smithy/node-http-handler/dist-types/constants.d.ts +5 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@smithy/node-http-handler/dist-types/get-transformed-headers.d.ts +4 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@smithy/node-http-handler/dist-types/http2/ClientHttp2SessionRef.d.ts +46 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@smithy/node-http-handler/dist-types/index.d.ts +3 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@smithy/node-http-handler/dist-types/node-http-handler.d.ts +47 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-manager.d.ts +46 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-pool.d.ts +36 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@smithy/node-http-handler/dist-types/node-http2-handler.d.ts +76 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@smithy/node-http-handler/dist-types/set-connection-timeout.d.ts +2 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@smithy/node-http-handler/dist-types/set-request-timeout.d.ts +6 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@smithy/node-http-handler/dist-types/set-socket-keep-alive.d.ts +6 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@smithy/node-http-handler/dist-types/set-socket-timeout.d.ts +2 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@smithy/node-http-handler/dist-types/stream-collector/collector.d.ts +5 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@smithy/node-http-handler/dist-types/stream-collector/index.d.ts +7 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@smithy/node-http-handler/dist-types/timing.d.ts +9 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@smithy/node-http-handler/dist-types/write-request-body.d.ts +12 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@smithy/node-http-handler/package.json +66 -0
- package/node_modules/@aws-sdk/nested-clients/package.json +6 -6
- package/node_modules/@aws-sdk/signature-v4-multi-region/package.json +2 -2
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/agent-harness.js +81 -18
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/compaction/branch-summarization.js +1 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/compaction/compaction.js +1 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/session.js +14 -1
- package/node_modules/@earendil-works/pi-agent-core/package.json +3 -3
- package/node_modules/@earendil-works/pi-ai/dist/models.generated.js +733 -523
- package/node_modules/@earendil-works/pi-ai/dist/providers/amazon-bedrock.js +84 -21
- package/node_modules/@earendil-works/pi-ai/dist/providers/anthropic.js +24 -14
- package/node_modules/@earendil-works/pi-ai/dist/providers/azure-openai-responses.js +5 -9
- package/node_modules/@earendil-works/pi-ai/dist/providers/google-vertex.js +1 -1
- package/node_modules/@earendil-works/pi-ai/dist/providers/google.js +5 -3
- package/node_modules/@earendil-works/pi-ai/dist/providers/images/openrouter.js +2 -3
- package/node_modules/@earendil-works/pi-ai/dist/providers/mistral.js +2 -3
- package/node_modules/@earendil-works/pi-ai/dist/providers/openai-codex-responses.js +130 -62
- package/node_modules/@earendil-works/pi-ai/dist/providers/openai-completions.js +18 -12
- package/node_modules/@earendil-works/pi-ai/dist/providers/openai-responses-shared.js +4 -1
- package/node_modules/@earendil-works/pi-ai/dist/providers/openai-responses.js +5 -9
- package/node_modules/@earendil-works/pi-ai/dist/providers/simple-options.js +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/stream.js +14 -2
- package/node_modules/@earendil-works/pi-ai/dist/utils/abort-signals.js +34 -0
- package/node_modules/@earendil-works/pi-ai/dist/utils/oauth/device-code.js +8 -7
- package/node_modules/@earendil-works/pi-ai/dist/utils/oauth/github-copilot.js +1 -1
- package/node_modules/@earendil-works/pi-ai/dist/utils/oauth/index.js +1 -1
- package/node_modules/@earendil-works/pi-ai/dist/utils/oauth/openai-codex.js +179 -79
- package/node_modules/@earendil-works/pi-ai/package.json +2 -2
- package/node_modules/@earendil-works/pi-coding-agent/dist/cli/args.js +27 -0
- package/node_modules/@earendil-works/pi-coding-agent/dist/config.js +9 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/agent-session-services.js +1 -0
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/agent-session.js +29 -5
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/extensions/runner.js +21 -3
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/footer-data-provider.js +29 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/model-registry.js +65 -13
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/model-resolver.js +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/resolve-config-value.js +134 -11
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/sdk.js +12 -6
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/session-manager.js +167 -96
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/settings-manager.js +14 -9
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/system-prompt.js +0 -3
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/edit.js +7 -10
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/ls.js +5 -7
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/read.js +6 -7
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/render-utils.js +17 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/write.js +5 -6
- package/node_modules/@earendil-works/pi-coding-agent/dist/index.js +2 -0
- package/node_modules/@earendil-works/pi-coding-agent/dist/main.js +69 -16
- package/node_modules/@earendil-works/pi-coding-agent/dist/migrations.js +118 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/config-selector.js +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/login-dialog.js +2 -4
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/interactive-mode.js +61 -6
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/theme/theme.js +10 -0
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/print-mode.js +1 -0
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/rpc/rpc-mode.js +4 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/utils/deprecation.js +13 -0
- package/node_modules/@earendil-works/pi-coding-agent/dist/utils/json.js +7 -0
- package/node_modules/@earendil-works/pi-coding-agent/npm-shrinkwrap.json +71 -56
- package/node_modules/@earendil-works/pi-coding-agent/package.json +7 -7
- package/node_modules/@earendil-works/pi-tui/dist/components/editor.js +9 -53
- package/node_modules/@earendil-works/pi-tui/dist/components/input.js +6 -54
- package/node_modules/@earendil-works/pi-tui/dist/terminal-image.js +34 -7
- package/node_modules/@earendil-works/pi-tui/dist/terminal.js +172 -37
- package/node_modules/@earendil-works/pi-tui/dist/tui.js +166 -22
- package/node_modules/@earendil-works/pi-tui/dist/utils.js +8 -3
- package/node_modules/@earendil-works/pi-tui/dist/word-navigation.js +96 -0
- package/node_modules/@earendil-works/pi-tui/package.json +2 -2
- package/node_modules/@mariozechner/clipboard/Cargo.toml +3 -3
- package/node_modules/@mariozechner/clipboard/index.d.ts +34 -20
- package/node_modules/@mariozechner/clipboard/index.js +546 -257
- package/node_modules/@mariozechner/clipboard/package.json +14 -14
- package/node_modules/@mariozechner/clipboard/src/lib.rs +4 -9
- package/node_modules/@mariozechner/clipboard-linux-x64-gnu/clipboard.linux-x64-gnu.node +0 -0
- package/node_modules/@mariozechner/clipboard-linux-x64-gnu/package.json +2 -2
- package/node_modules/@smithy/core/dist-cjs/submodules/retry/index.browser.js +39 -22
- package/node_modules/@smithy/core/dist-cjs/submodules/retry/index.js +39 -22
- package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/configurations.js +19 -6
- package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/retryMiddleware.js +4 -5
- package/node_modules/@smithy/core/dist-es/submodules/retry/service-error-classification/constants.js +1 -1
- package/node_modules/@smithy/core/dist-es/submodules/retry/util-retry/ConfiguredRetryStrategy.js +4 -5
- package/node_modules/@smithy/core/dist-es/submodules/retry/util-retry/DefaultRetryToken.js +3 -0
- package/node_modules/@smithy/core/dist-es/submodules/retry/util-retry/StandardRetryStrategy.js +9 -5
- package/node_modules/@smithy/core/dist-types/submodules/retry/middleware-retry/configurations.d.ts +4 -1
- package/node_modules/@smithy/core/dist-types/submodules/retry/util-retry/ConfiguredRetryStrategy.d.ts +1 -2
- package/node_modules/@smithy/core/dist-types/submodules/retry/util-retry/DefaultRetryToken.d.ts +3 -0
- package/node_modules/@smithy/core/dist-types/submodules/retry/util-retry/StandardRetryStrategy.d.ts +1 -1
- package/node_modules/@smithy/core/package.json +2 -2
- package/node_modules/@smithy/credential-provider-imds/dist-cjs/index.js +14 -13
- package/node_modules/@smithy/credential-provider-imds/dist-es/fromContainerMetadata.js +14 -13
- package/node_modules/@smithy/credential-provider-imds/package.json +3 -3
- package/node_modules/@smithy/fetch-http-handler/package.json +4 -4
- package/node_modules/@smithy/signature-v4/package.json +3 -3
- package/node_modules/@smithy/types/dist-types/retry.d.ts +25 -0
- package/node_modules/@smithy/types/package.json +1 -1
- package/node_modules/protobufjs/dist/light/protobuf.js +7 -5
- package/node_modules/protobufjs/dist/light/protobuf.js.map +1 -1
- package/node_modules/protobufjs/dist/light/protobuf.min.js +3 -3
- package/node_modules/protobufjs/dist/light/protobuf.min.js.map +1 -1
- package/node_modules/protobufjs/dist/minimal/protobuf.js +3 -3
- package/node_modules/protobufjs/dist/minimal/protobuf.js.map +1 -1
- package/node_modules/protobufjs/dist/minimal/protobuf.min.js +3 -3
- package/node_modules/protobufjs/dist/minimal/protobuf.min.js.map +1 -1
- package/node_modules/protobufjs/dist/protobuf.js +7 -5
- package/node_modules/protobufjs/dist/protobuf.js.map +1 -1
- package/node_modules/protobufjs/dist/protobuf.min.js +3 -3
- package/node_modules/protobufjs/dist/protobuf.min.js.map +1 -1
- package/node_modules/protobufjs/package.json +1 -1
- package/node_modules/protobufjs/src/converter.js +4 -2
- package/node_modules/protobufjs/src/roots.js +1 -1
- package/node_modules/undici/lib/global.js +10 -1
- package/node_modules/undici/package.json +1 -1
- package/package.json +6 -6
- package/slingshot/index.js +248 -247
|
@@ -157,6 +157,24 @@ export const MODELS = {
|
|
|
157
157
|
contextWindow: 1000000,
|
|
158
158
|
maxTokens: 128000,
|
|
159
159
|
},
|
|
160
|
+
"anthropic.claude-opus-4-8": {
|
|
161
|
+
id: "anthropic.claude-opus-4-8",
|
|
162
|
+
name: "Claude Opus 4.8",
|
|
163
|
+
api: "bedrock-converse-stream",
|
|
164
|
+
provider: "amazon-bedrock",
|
|
165
|
+
baseUrl: "https://bedrock-runtime.us-east-1.amazonaws.com",
|
|
166
|
+
reasoning: true,
|
|
167
|
+
thinkingLevelMap: { "xhigh": "xhigh" },
|
|
168
|
+
input: ["text", "image"],
|
|
169
|
+
cost: {
|
|
170
|
+
input: 5,
|
|
171
|
+
output: 25,
|
|
172
|
+
cacheRead: 0.5,
|
|
173
|
+
cacheWrite: 6.25,
|
|
174
|
+
},
|
|
175
|
+
contextWindow: 1000000,
|
|
176
|
+
maxTokens: 128000,
|
|
177
|
+
},
|
|
160
178
|
"anthropic.claude-sonnet-4-5-20250929-v1:0": {
|
|
161
179
|
id: "anthropic.claude-sonnet-4-5-20250929-v1:0",
|
|
162
180
|
name: "Claude Sonnet 4.5",
|
|
@@ -226,6 +244,24 @@ export const MODELS = {
|
|
|
226
244
|
contextWindow: 1000000,
|
|
227
245
|
maxTokens: 128000,
|
|
228
246
|
},
|
|
247
|
+
"au.anthropic.claude-opus-4-8": {
|
|
248
|
+
id: "au.anthropic.claude-opus-4-8",
|
|
249
|
+
name: "Claude Opus 4.8 (AU)",
|
|
250
|
+
api: "bedrock-converse-stream",
|
|
251
|
+
provider: "amazon-bedrock",
|
|
252
|
+
baseUrl: "https://bedrock-runtime.us-east-1.amazonaws.com",
|
|
253
|
+
reasoning: true,
|
|
254
|
+
thinkingLevelMap: { "xhigh": "xhigh" },
|
|
255
|
+
input: ["text", "image"],
|
|
256
|
+
cost: {
|
|
257
|
+
input: 5,
|
|
258
|
+
output: 25,
|
|
259
|
+
cacheRead: 0.5,
|
|
260
|
+
cacheWrite: 6.25,
|
|
261
|
+
},
|
|
262
|
+
contextWindow: 1000000,
|
|
263
|
+
maxTokens: 128000,
|
|
264
|
+
},
|
|
229
265
|
"au.anthropic.claude-sonnet-4-5-20250929-v1:0": {
|
|
230
266
|
id: "au.anthropic.claude-sonnet-4-5-20250929-v1:0",
|
|
231
267
|
name: "Claude Sonnet 4.5 (AU)",
|
|
@@ -355,8 +391,8 @@ export const MODELS = {
|
|
|
355
391
|
thinkingLevelMap: { "xhigh": "max" },
|
|
356
392
|
input: ["text", "image"],
|
|
357
393
|
cost: {
|
|
358
|
-
input: 5,
|
|
359
|
-
output:
|
|
394
|
+
input: 5.5,
|
|
395
|
+
output: 27.5,
|
|
360
396
|
cacheRead: 0.5,
|
|
361
397
|
cacheWrite: 6.25,
|
|
362
398
|
},
|
|
@@ -373,10 +409,28 @@ export const MODELS = {
|
|
|
373
409
|
thinkingLevelMap: { "xhigh": "xhigh" },
|
|
374
410
|
input: ["text", "image"],
|
|
375
411
|
cost: {
|
|
376
|
-
input: 5,
|
|
377
|
-
output:
|
|
378
|
-
cacheRead: 0.
|
|
379
|
-
cacheWrite: 6.
|
|
412
|
+
input: 5.5,
|
|
413
|
+
output: 27.5,
|
|
414
|
+
cacheRead: 0.55,
|
|
415
|
+
cacheWrite: 6.875,
|
|
416
|
+
},
|
|
417
|
+
contextWindow: 1000000,
|
|
418
|
+
maxTokens: 128000,
|
|
419
|
+
},
|
|
420
|
+
"eu.anthropic.claude-opus-4-8": {
|
|
421
|
+
id: "eu.anthropic.claude-opus-4-8",
|
|
422
|
+
name: "Claude Opus 4.8 (EU)",
|
|
423
|
+
api: "bedrock-converse-stream",
|
|
424
|
+
provider: "amazon-bedrock",
|
|
425
|
+
baseUrl: "https://bedrock-runtime.eu-central-1.amazonaws.com",
|
|
426
|
+
reasoning: true,
|
|
427
|
+
thinkingLevelMap: { "xhigh": "xhigh" },
|
|
428
|
+
input: ["text", "image"],
|
|
429
|
+
cost: {
|
|
430
|
+
input: 5.5,
|
|
431
|
+
output: 27.5,
|
|
432
|
+
cacheRead: 0.55,
|
|
433
|
+
cacheWrite: 6.875,
|
|
380
434
|
},
|
|
381
435
|
contextWindow: 1000000,
|
|
382
436
|
maxTokens: 128000,
|
|
@@ -390,10 +444,10 @@ export const MODELS = {
|
|
|
390
444
|
reasoning: true,
|
|
391
445
|
input: ["text", "image"],
|
|
392
446
|
cost: {
|
|
393
|
-
input: 3,
|
|
394
|
-
output:
|
|
395
|
-
cacheRead: 0.
|
|
396
|
-
cacheWrite:
|
|
447
|
+
input: 3.3,
|
|
448
|
+
output: 16.5,
|
|
449
|
+
cacheRead: 0.33,
|
|
450
|
+
cacheWrite: 4.125,
|
|
397
451
|
},
|
|
398
452
|
contextWindow: 200000,
|
|
399
453
|
maxTokens: 64000,
|
|
@@ -407,10 +461,10 @@ export const MODELS = {
|
|
|
407
461
|
reasoning: true,
|
|
408
462
|
input: ["text", "image"],
|
|
409
463
|
cost: {
|
|
410
|
-
input: 3,
|
|
411
|
-
output:
|
|
412
|
-
cacheRead: 0.
|
|
413
|
-
cacheWrite:
|
|
464
|
+
input: 3.3,
|
|
465
|
+
output: 16.5,
|
|
466
|
+
cacheRead: 0.33,
|
|
467
|
+
cacheWrite: 4.125,
|
|
414
468
|
},
|
|
415
469
|
contextWindow: 1000000,
|
|
416
470
|
maxTokens: 64000,
|
|
@@ -485,6 +539,24 @@ export const MODELS = {
|
|
|
485
539
|
contextWindow: 1000000,
|
|
486
540
|
maxTokens: 128000,
|
|
487
541
|
},
|
|
542
|
+
"global.anthropic.claude-opus-4-8": {
|
|
543
|
+
id: "global.anthropic.claude-opus-4-8",
|
|
544
|
+
name: "Claude Opus 4.8 (Global)",
|
|
545
|
+
api: "bedrock-converse-stream",
|
|
546
|
+
provider: "amazon-bedrock",
|
|
547
|
+
baseUrl: "https://bedrock-runtime.us-east-1.amazonaws.com",
|
|
548
|
+
reasoning: true,
|
|
549
|
+
thinkingLevelMap: { "xhigh": "xhigh" },
|
|
550
|
+
input: ["text", "image"],
|
|
551
|
+
cost: {
|
|
552
|
+
input: 5,
|
|
553
|
+
output: 25,
|
|
554
|
+
cacheRead: 0.5,
|
|
555
|
+
cacheWrite: 6.25,
|
|
556
|
+
},
|
|
557
|
+
contextWindow: 1000000,
|
|
558
|
+
maxTokens: 128000,
|
|
559
|
+
},
|
|
488
560
|
"global.anthropic.claude-sonnet-4-5-20250929-v1:0": {
|
|
489
561
|
id: "global.anthropic.claude-sonnet-4-5-20250929-v1:0",
|
|
490
562
|
name: "Claude Sonnet 4.5 (Global)",
|
|
@@ -571,6 +643,24 @@ export const MODELS = {
|
|
|
571
643
|
contextWindow: 1000000,
|
|
572
644
|
maxTokens: 128000,
|
|
573
645
|
},
|
|
646
|
+
"jp.anthropic.claude-opus-4-8": {
|
|
647
|
+
id: "jp.anthropic.claude-opus-4-8",
|
|
648
|
+
name: "Claude Opus 4.8 (JP)",
|
|
649
|
+
api: "bedrock-converse-stream",
|
|
650
|
+
provider: "amazon-bedrock",
|
|
651
|
+
baseUrl: "https://bedrock-runtime.us-east-1.amazonaws.com",
|
|
652
|
+
reasoning: true,
|
|
653
|
+
thinkingLevelMap: { "xhigh": "xhigh" },
|
|
654
|
+
input: ["text", "image"],
|
|
655
|
+
cost: {
|
|
656
|
+
input: 5,
|
|
657
|
+
output: 25,
|
|
658
|
+
cacheRead: 0.5,
|
|
659
|
+
cacheWrite: 6.25,
|
|
660
|
+
},
|
|
661
|
+
contextWindow: 1000000,
|
|
662
|
+
maxTokens: 128000,
|
|
663
|
+
},
|
|
574
664
|
"jp.anthropic.claude-sonnet-4-5-20250929-v1:0": {
|
|
575
665
|
id: "jp.anthropic.claude-sonnet-4-5-20250929-v1:0",
|
|
576
666
|
name: "Claude Sonnet 4.5 (JP)",
|
|
@@ -1270,6 +1360,24 @@ export const MODELS = {
|
|
|
1270
1360
|
contextWindow: 1000000,
|
|
1271
1361
|
maxTokens: 128000,
|
|
1272
1362
|
},
|
|
1363
|
+
"us.anthropic.claude-opus-4-8": {
|
|
1364
|
+
id: "us.anthropic.claude-opus-4-8",
|
|
1365
|
+
name: "Claude Opus 4.8 (US)",
|
|
1366
|
+
api: "bedrock-converse-stream",
|
|
1367
|
+
provider: "amazon-bedrock",
|
|
1368
|
+
baseUrl: "https://bedrock-runtime.us-east-1.amazonaws.com",
|
|
1369
|
+
reasoning: true,
|
|
1370
|
+
thinkingLevelMap: { "xhigh": "xhigh" },
|
|
1371
|
+
input: ["text", "image"],
|
|
1372
|
+
cost: {
|
|
1373
|
+
input: 5,
|
|
1374
|
+
output: 25,
|
|
1375
|
+
cacheRead: 0.5,
|
|
1376
|
+
cacheWrite: 6.25,
|
|
1377
|
+
},
|
|
1378
|
+
contextWindow: 1000000,
|
|
1379
|
+
maxTokens: 128000,
|
|
1380
|
+
},
|
|
1273
1381
|
"us.anthropic.claude-sonnet-4-5-20250929-v1:0": {
|
|
1274
1382
|
id: "us.anthropic.claude-sonnet-4-5-20250929-v1:0",
|
|
1275
1383
|
name: "Claude Sonnet 4.5 (US)",
|
|
@@ -1739,7 +1847,26 @@ export const MODELS = {
|
|
|
1739
1847
|
api: "anthropic-messages",
|
|
1740
1848
|
provider: "anthropic",
|
|
1741
1849
|
baseUrl: "https://api.anthropic.com",
|
|
1742
|
-
compat: { "forceAdaptiveThinking": true },
|
|
1850
|
+
compat: { "forceAdaptiveThinking": true, "supportsTemperature": false },
|
|
1851
|
+
reasoning: true,
|
|
1852
|
+
thinkingLevelMap: { "xhigh": "xhigh" },
|
|
1853
|
+
input: ["text", "image"],
|
|
1854
|
+
cost: {
|
|
1855
|
+
input: 5,
|
|
1856
|
+
output: 25,
|
|
1857
|
+
cacheRead: 0.5,
|
|
1858
|
+
cacheWrite: 6.25,
|
|
1859
|
+
},
|
|
1860
|
+
contextWindow: 1000000,
|
|
1861
|
+
maxTokens: 128000,
|
|
1862
|
+
},
|
|
1863
|
+
"claude-opus-4-8": {
|
|
1864
|
+
id: "claude-opus-4-8",
|
|
1865
|
+
name: "Claude Opus 4.8",
|
|
1866
|
+
api: "anthropic-messages",
|
|
1867
|
+
provider: "anthropic",
|
|
1868
|
+
baseUrl: "https://api.anthropic.com",
|
|
1869
|
+
compat: { "forceAdaptiveThinking": true, "supportsTemperature": false },
|
|
1743
1870
|
reasoning: true,
|
|
1744
1871
|
thinkingLevelMap: { "xhigh": "xhigh" },
|
|
1745
1872
|
input: ["text", "image"],
|
|
@@ -2431,7 +2558,7 @@ export const MODELS = {
|
|
|
2431
2558
|
provider: "azure-openai-responses",
|
|
2432
2559
|
baseUrl: "",
|
|
2433
2560
|
reasoning: true,
|
|
2434
|
-
thinkingLevelMap: { "off": null, "xhigh": "xhigh" },
|
|
2561
|
+
thinkingLevelMap: { "off": null, "xhigh": "xhigh", "minimal": null, "low": null },
|
|
2435
2562
|
input: ["text", "image"],
|
|
2436
2563
|
cost: {
|
|
2437
2564
|
input: 30,
|
|
@@ -2828,7 +2955,26 @@ export const MODELS = {
|
|
|
2828
2955
|
api: "anthropic-messages",
|
|
2829
2956
|
provider: "cloudflare-ai-gateway",
|
|
2830
2957
|
baseUrl: "https://gateway.ai.cloudflare.com/v1/{CLOUDFLARE_ACCOUNT_ID}/{CLOUDFLARE_GATEWAY_ID}/anthropic",
|
|
2831
|
-
compat: { "forceAdaptiveThinking": true },
|
|
2958
|
+
compat: { "forceAdaptiveThinking": true, "supportsTemperature": false },
|
|
2959
|
+
reasoning: true,
|
|
2960
|
+
thinkingLevelMap: { "xhigh": "xhigh" },
|
|
2961
|
+
input: ["text", "image"],
|
|
2962
|
+
cost: {
|
|
2963
|
+
input: 5,
|
|
2964
|
+
output: 25,
|
|
2965
|
+
cacheRead: 0.5,
|
|
2966
|
+
cacheWrite: 6.25,
|
|
2967
|
+
},
|
|
2968
|
+
contextWindow: 1000000,
|
|
2969
|
+
maxTokens: 128000,
|
|
2970
|
+
},
|
|
2971
|
+
"claude-opus-4-8": {
|
|
2972
|
+
id: "claude-opus-4-8",
|
|
2973
|
+
name: "Claude Opus 4.8",
|
|
2974
|
+
api: "anthropic-messages",
|
|
2975
|
+
provider: "cloudflare-ai-gateway",
|
|
2976
|
+
baseUrl: "https://gateway.ai.cloudflare.com/v1/{CLOUDFLARE_ACCOUNT_ID}/{CLOUDFLARE_GATEWAY_ID}/anthropic",
|
|
2977
|
+
compat: { "forceAdaptiveThinking": true, "supportsTemperature": false },
|
|
2832
2978
|
reasoning: true,
|
|
2833
2979
|
thinkingLevelMap: { "xhigh": "xhigh" },
|
|
2834
2980
|
input: ["text", "image"],
|
|
@@ -3336,24 +3482,6 @@ export const MODELS = {
|
|
|
3336
3482
|
contextWindow: 128000,
|
|
3337
3483
|
maxTokens: 128000,
|
|
3338
3484
|
},
|
|
3339
|
-
"@cf/moonshotai/kimi-k2.5": {
|
|
3340
|
-
id: "@cf/moonshotai/kimi-k2.5",
|
|
3341
|
-
name: "Kimi K2.5",
|
|
3342
|
-
api: "openai-completions",
|
|
3343
|
-
provider: "cloudflare-workers-ai",
|
|
3344
|
-
baseUrl: "https://api.cloudflare.com/client/v4/accounts/{CLOUDFLARE_ACCOUNT_ID}/ai/v1",
|
|
3345
|
-
compat: { "sendSessionAffinityHeaders": true },
|
|
3346
|
-
reasoning: true,
|
|
3347
|
-
input: ["text", "image"],
|
|
3348
|
-
cost: {
|
|
3349
|
-
input: 0.6,
|
|
3350
|
-
output: 3,
|
|
3351
|
-
cacheRead: 0.1,
|
|
3352
|
-
cacheWrite: 0,
|
|
3353
|
-
},
|
|
3354
|
-
contextWindow: 256000,
|
|
3355
|
-
maxTokens: 256000,
|
|
3356
|
-
},
|
|
3357
3485
|
"@cf/moonshotai/kimi-k2.6": {
|
|
3358
3486
|
id: "@cf/moonshotai/kimi-k2.6",
|
|
3359
3487
|
name: "Kimi K2.6",
|
|
@@ -3724,7 +3852,7 @@ export const MODELS = {
|
|
|
3724
3852
|
"github-copilot": {
|
|
3725
3853
|
"claude-haiku-4.5": {
|
|
3726
3854
|
id: "claude-haiku-4.5",
|
|
3727
|
-
name: "Claude Haiku 4.5",
|
|
3855
|
+
name: "Claude Haiku 4.5 (latest)",
|
|
3728
3856
|
api: "anthropic-messages",
|
|
3729
3857
|
provider: "github-copilot",
|
|
3730
3858
|
baseUrl: "https://api.individual.githubcopilot.com",
|
|
@@ -3733,17 +3861,17 @@ export const MODELS = {
|
|
|
3733
3861
|
reasoning: true,
|
|
3734
3862
|
input: ["text", "image"],
|
|
3735
3863
|
cost: {
|
|
3736
|
-
input:
|
|
3737
|
-
output:
|
|
3738
|
-
cacheRead: 0,
|
|
3739
|
-
cacheWrite:
|
|
3864
|
+
input: 1,
|
|
3865
|
+
output: 5,
|
|
3866
|
+
cacheRead: 0.1,
|
|
3867
|
+
cacheWrite: 1.25,
|
|
3740
3868
|
},
|
|
3741
|
-
contextWindow:
|
|
3742
|
-
maxTokens:
|
|
3869
|
+
contextWindow: 200000,
|
|
3870
|
+
maxTokens: 64000,
|
|
3743
3871
|
},
|
|
3744
3872
|
"claude-opus-4.5": {
|
|
3745
3873
|
id: "claude-opus-4.5",
|
|
3746
|
-
name: "Claude Opus 4.5",
|
|
3874
|
+
name: "Claude Opus 4.5 (latest)",
|
|
3747
3875
|
api: "anthropic-messages",
|
|
3748
3876
|
provider: "github-copilot",
|
|
3749
3877
|
baseUrl: "https://api.individual.githubcopilot.com",
|
|
@@ -3751,12 +3879,12 @@ export const MODELS = {
|
|
|
3751
3879
|
reasoning: true,
|
|
3752
3880
|
input: ["text", "image"],
|
|
3753
3881
|
cost: {
|
|
3754
|
-
input:
|
|
3755
|
-
output:
|
|
3756
|
-
cacheRead: 0,
|
|
3757
|
-
cacheWrite:
|
|
3882
|
+
input: 5,
|
|
3883
|
+
output: 25,
|
|
3884
|
+
cacheRead: 0.5,
|
|
3885
|
+
cacheWrite: 6.25,
|
|
3758
3886
|
},
|
|
3759
|
-
contextWindow:
|
|
3887
|
+
contextWindow: 200000,
|
|
3760
3888
|
maxTokens: 32000,
|
|
3761
3889
|
},
|
|
3762
3890
|
"claude-opus-4.6": {
|
|
@@ -3771,13 +3899,13 @@ export const MODELS = {
|
|
|
3771
3899
|
thinkingLevelMap: { "xhigh": "max" },
|
|
3772
3900
|
input: ["text", "image"],
|
|
3773
3901
|
cost: {
|
|
3774
|
-
input:
|
|
3775
|
-
output:
|
|
3776
|
-
cacheRead: 0,
|
|
3777
|
-
cacheWrite:
|
|
3902
|
+
input: 5,
|
|
3903
|
+
output: 25,
|
|
3904
|
+
cacheRead: 0.5,
|
|
3905
|
+
cacheWrite: 6.25,
|
|
3778
3906
|
},
|
|
3779
3907
|
contextWindow: 1000000,
|
|
3780
|
-
maxTokens:
|
|
3908
|
+
maxTokens: 32000,
|
|
3781
3909
|
},
|
|
3782
3910
|
"claude-opus-4.7": {
|
|
3783
3911
|
id: "claude-opus-4.7",
|
|
@@ -3786,22 +3914,61 @@ export const MODELS = {
|
|
|
3786
3914
|
provider: "github-copilot",
|
|
3787
3915
|
baseUrl: "https://api.individual.githubcopilot.com",
|
|
3788
3916
|
headers: { "User-Agent": "GitHubCopilotChat/0.35.0", "Editor-Version": "vscode/1.107.0", "Editor-Plugin-Version": "copilot-chat/0.35.0", "Copilot-Integration-Id": "vscode-chat" },
|
|
3789
|
-
compat: { "forceAdaptiveThinking": true },
|
|
3917
|
+
compat: { "forceAdaptiveThinking": true, "supportsTemperature": false },
|
|
3790
3918
|
reasoning: true,
|
|
3791
3919
|
thinkingLevelMap: { "xhigh": "xhigh" },
|
|
3792
3920
|
input: ["text", "image"],
|
|
3793
3921
|
cost: {
|
|
3794
|
-
input:
|
|
3795
|
-
output:
|
|
3796
|
-
cacheRead: 0,
|
|
3797
|
-
cacheWrite:
|
|
3922
|
+
input: 5,
|
|
3923
|
+
output: 25,
|
|
3924
|
+
cacheRead: 0.5,
|
|
3925
|
+
cacheWrite: 6.25,
|
|
3926
|
+
},
|
|
3927
|
+
contextWindow: 200000,
|
|
3928
|
+
maxTokens: 32000,
|
|
3929
|
+
},
|
|
3930
|
+
"claude-opus-4.8": {
|
|
3931
|
+
id: "claude-opus-4.8",
|
|
3932
|
+
name: "Claude Opus 4.8",
|
|
3933
|
+
api: "anthropic-messages",
|
|
3934
|
+
provider: "github-copilot",
|
|
3935
|
+
baseUrl: "https://api.individual.githubcopilot.com",
|
|
3936
|
+
headers: { "User-Agent": "GitHubCopilotChat/0.35.0", "Editor-Version": "vscode/1.107.0", "Editor-Plugin-Version": "copilot-chat/0.35.0", "Copilot-Integration-Id": "vscode-chat" },
|
|
3937
|
+
compat: { "forceAdaptiveThinking": true, "supportsTemperature": false },
|
|
3938
|
+
reasoning: true,
|
|
3939
|
+
thinkingLevelMap: { "xhigh": "xhigh" },
|
|
3940
|
+
input: ["text", "image"],
|
|
3941
|
+
cost: {
|
|
3942
|
+
input: 5,
|
|
3943
|
+
output: 25,
|
|
3944
|
+
cacheRead: 0.5,
|
|
3945
|
+
cacheWrite: 6.25,
|
|
3798
3946
|
},
|
|
3799
|
-
contextWindow:
|
|
3947
|
+
contextWindow: 200000,
|
|
3800
3948
|
maxTokens: 64000,
|
|
3801
3949
|
},
|
|
3950
|
+
"claude-sonnet-4": {
|
|
3951
|
+
id: "claude-sonnet-4",
|
|
3952
|
+
name: "Claude Sonnet 4 (latest)",
|
|
3953
|
+
api: "anthropic-messages",
|
|
3954
|
+
provider: "github-copilot",
|
|
3955
|
+
baseUrl: "https://api.individual.githubcopilot.com",
|
|
3956
|
+
headers: { "User-Agent": "GitHubCopilotChat/0.35.0", "Editor-Version": "vscode/1.107.0", "Editor-Plugin-Version": "copilot-chat/0.35.0", "Copilot-Integration-Id": "vscode-chat" },
|
|
3957
|
+
compat: { "supportsEagerToolInputStreaming": false },
|
|
3958
|
+
reasoning: true,
|
|
3959
|
+
input: ["text", "image"],
|
|
3960
|
+
cost: {
|
|
3961
|
+
input: 3,
|
|
3962
|
+
output: 15,
|
|
3963
|
+
cacheRead: 0.3,
|
|
3964
|
+
cacheWrite: 3.75,
|
|
3965
|
+
},
|
|
3966
|
+
contextWindow: 216000,
|
|
3967
|
+
maxTokens: 16000,
|
|
3968
|
+
},
|
|
3802
3969
|
"claude-sonnet-4.5": {
|
|
3803
3970
|
id: "claude-sonnet-4.5",
|
|
3804
|
-
name: "Claude Sonnet 4.5",
|
|
3971
|
+
name: "Claude Sonnet 4.5 (latest)",
|
|
3805
3972
|
api: "anthropic-messages",
|
|
3806
3973
|
provider: "github-copilot",
|
|
3807
3974
|
baseUrl: "https://api.individual.githubcopilot.com",
|
|
@@ -3810,12 +3977,12 @@ export const MODELS = {
|
|
|
3810
3977
|
reasoning: true,
|
|
3811
3978
|
input: ["text", "image"],
|
|
3812
3979
|
cost: {
|
|
3813
|
-
input:
|
|
3814
|
-
output:
|
|
3815
|
-
cacheRead: 0,
|
|
3816
|
-
cacheWrite:
|
|
3980
|
+
input: 3,
|
|
3981
|
+
output: 15,
|
|
3982
|
+
cacheRead: 0.3,
|
|
3983
|
+
cacheWrite: 3.75,
|
|
3817
3984
|
},
|
|
3818
|
-
contextWindow:
|
|
3985
|
+
contextWindow: 200000,
|
|
3819
3986
|
maxTokens: 32000,
|
|
3820
3987
|
},
|
|
3821
3988
|
"claude-sonnet-4.6": {
|
|
@@ -3829,13 +3996,13 @@ export const MODELS = {
|
|
|
3829
3996
|
reasoning: true,
|
|
3830
3997
|
input: ["text", "image"],
|
|
3831
3998
|
cost: {
|
|
3832
|
-
input:
|
|
3833
|
-
output:
|
|
3834
|
-
cacheRead: 0,
|
|
3835
|
-
cacheWrite:
|
|
3836
|
-
},
|
|
3837
|
-
contextWindow: 1000000,
|
|
3838
|
-
maxTokens: 32000,
|
|
3999
|
+
input: 3,
|
|
4000
|
+
output: 15,
|
|
4001
|
+
cacheRead: 0.3,
|
|
4002
|
+
cacheWrite: 3.75,
|
|
4003
|
+
},
|
|
4004
|
+
contextWindow: 1000000,
|
|
4005
|
+
maxTokens: 32000,
|
|
3839
4006
|
},
|
|
3840
4007
|
"gemini-2.5-pro": {
|
|
3841
4008
|
id: "gemini-2.5-pro",
|
|
@@ -3845,12 +4012,12 @@ export const MODELS = {
|
|
|
3845
4012
|
baseUrl: "https://api.individual.githubcopilot.com",
|
|
3846
4013
|
headers: { "User-Agent": "GitHubCopilotChat/0.35.0", "Editor-Version": "vscode/1.107.0", "Editor-Plugin-Version": "copilot-chat/0.35.0", "Copilot-Integration-Id": "vscode-chat" },
|
|
3847
4014
|
compat: { "supportsStore": false, "supportsDeveloperRole": false, "supportsReasoningEffort": false },
|
|
3848
|
-
reasoning:
|
|
4015
|
+
reasoning: true,
|
|
3849
4016
|
input: ["text", "image"],
|
|
3850
4017
|
cost: {
|
|
3851
|
-
input:
|
|
3852
|
-
output:
|
|
3853
|
-
cacheRead: 0,
|
|
4018
|
+
input: 1.25,
|
|
4019
|
+
output: 10,
|
|
4020
|
+
cacheRead: 0.125,
|
|
3854
4021
|
cacheWrite: 0,
|
|
3855
4022
|
},
|
|
3856
4023
|
contextWindow: 128000,
|
|
@@ -3858,7 +4025,7 @@ export const MODELS = {
|
|
|
3858
4025
|
},
|
|
3859
4026
|
"gemini-3-flash-preview": {
|
|
3860
4027
|
id: "gemini-3-flash-preview",
|
|
3861
|
-
name: "Gemini 3 Flash",
|
|
4028
|
+
name: "Gemini 3 Flash Preview",
|
|
3862
4029
|
api: "openai-completions",
|
|
3863
4030
|
provider: "github-copilot",
|
|
3864
4031
|
baseUrl: "https://api.individual.githubcopilot.com",
|
|
@@ -3867,9 +4034,9 @@ export const MODELS = {
|
|
|
3867
4034
|
reasoning: true,
|
|
3868
4035
|
input: ["text", "image"],
|
|
3869
4036
|
cost: {
|
|
3870
|
-
input: 0,
|
|
3871
|
-
output:
|
|
3872
|
-
cacheRead: 0,
|
|
4037
|
+
input: 0.5,
|
|
4038
|
+
output: 3,
|
|
4039
|
+
cacheRead: 0.05,
|
|
3873
4040
|
cacheWrite: 0,
|
|
3874
4041
|
},
|
|
3875
4042
|
contextWindow: 128000,
|
|
@@ -3886,12 +4053,12 @@ export const MODELS = {
|
|
|
3886
4053
|
reasoning: true,
|
|
3887
4054
|
input: ["text", "image"],
|
|
3888
4055
|
cost: {
|
|
3889
|
-
input:
|
|
3890
|
-
output:
|
|
3891
|
-
cacheRead: 0,
|
|
4056
|
+
input: 2,
|
|
4057
|
+
output: 12,
|
|
4058
|
+
cacheRead: 0.2,
|
|
3892
4059
|
cacheWrite: 0,
|
|
3893
4060
|
},
|
|
3894
|
-
contextWindow:
|
|
4061
|
+
contextWindow: 200000,
|
|
3895
4062
|
maxTokens: 64000,
|
|
3896
4063
|
},
|
|
3897
4064
|
"gemini-3.5-flash": {
|
|
@@ -3905,12 +4072,12 @@ export const MODELS = {
|
|
|
3905
4072
|
reasoning: true,
|
|
3906
4073
|
input: ["text", "image"],
|
|
3907
4074
|
cost: {
|
|
3908
|
-
input:
|
|
3909
|
-
output:
|
|
3910
|
-
cacheRead: 0,
|
|
4075
|
+
input: 1.5,
|
|
4076
|
+
output: 9,
|
|
4077
|
+
cacheRead: 0.15,
|
|
3911
4078
|
cacheWrite: 0,
|
|
3912
4079
|
},
|
|
3913
|
-
contextWindow:
|
|
4080
|
+
contextWindow: 200000,
|
|
3914
4081
|
maxTokens: 64000,
|
|
3915
4082
|
},
|
|
3916
4083
|
"gpt-4.1": {
|
|
@@ -3924,36 +4091,17 @@ export const MODELS = {
|
|
|
3924
4091
|
reasoning: false,
|
|
3925
4092
|
input: ["text", "image"],
|
|
3926
4093
|
cost: {
|
|
3927
|
-
input:
|
|
3928
|
-
output:
|
|
3929
|
-
cacheRead: 0,
|
|
4094
|
+
input: 2,
|
|
4095
|
+
output: 8,
|
|
4096
|
+
cacheRead: 0.5,
|
|
3930
4097
|
cacheWrite: 0,
|
|
3931
4098
|
},
|
|
3932
4099
|
contextWindow: 128000,
|
|
3933
4100
|
maxTokens: 16384,
|
|
3934
4101
|
},
|
|
3935
|
-
"gpt-4o": {
|
|
3936
|
-
id: "gpt-4o",
|
|
3937
|
-
name: "GPT-4o",
|
|
3938
|
-
api: "openai-completions",
|
|
3939
|
-
provider: "github-copilot",
|
|
3940
|
-
baseUrl: "https://api.individual.githubcopilot.com",
|
|
3941
|
-
headers: { "User-Agent": "GitHubCopilotChat/0.35.0", "Editor-Version": "vscode/1.107.0", "Editor-Plugin-Version": "copilot-chat/0.35.0", "Copilot-Integration-Id": "vscode-chat" },
|
|
3942
|
-
compat: { "supportsStore": false, "supportsDeveloperRole": false, "supportsReasoningEffort": false },
|
|
3943
|
-
reasoning: false,
|
|
3944
|
-
input: ["text", "image"],
|
|
3945
|
-
cost: {
|
|
3946
|
-
input: 0,
|
|
3947
|
-
output: 0,
|
|
3948
|
-
cacheRead: 0,
|
|
3949
|
-
cacheWrite: 0,
|
|
3950
|
-
},
|
|
3951
|
-
contextWindow: 128000,
|
|
3952
|
-
maxTokens: 4096,
|
|
3953
|
-
},
|
|
3954
4102
|
"gpt-5-mini": {
|
|
3955
4103
|
id: "gpt-5-mini",
|
|
3956
|
-
name: "GPT-5
|
|
4104
|
+
name: "GPT-5 Mini",
|
|
3957
4105
|
api: "openai-responses",
|
|
3958
4106
|
provider: "github-copilot",
|
|
3959
4107
|
baseUrl: "https://api.individual.githubcopilot.com",
|
|
@@ -3962,9 +4110,9 @@ export const MODELS = {
|
|
|
3962
4110
|
thinkingLevelMap: { "off": null, "minimal": "low" },
|
|
3963
4111
|
input: ["text", "image"],
|
|
3964
4112
|
cost: {
|
|
3965
|
-
input: 0,
|
|
3966
|
-
output:
|
|
3967
|
-
cacheRead: 0,
|
|
4113
|
+
input: 0.25,
|
|
4114
|
+
output: 2,
|
|
4115
|
+
cacheRead: 0.025,
|
|
3968
4116
|
cacheWrite: 0,
|
|
3969
4117
|
},
|
|
3970
4118
|
contextWindow: 264000,
|
|
@@ -3981,17 +4129,17 @@ export const MODELS = {
|
|
|
3981
4129
|
thinkingLevelMap: { "off": null, "minimal": "low", "xhigh": "xhigh" },
|
|
3982
4130
|
input: ["text", "image"],
|
|
3983
4131
|
cost: {
|
|
3984
|
-
input:
|
|
3985
|
-
output:
|
|
3986
|
-
cacheRead: 0,
|
|
4132
|
+
input: 1.75,
|
|
4133
|
+
output: 14,
|
|
4134
|
+
cacheRead: 0.175,
|
|
3987
4135
|
cacheWrite: 0,
|
|
3988
4136
|
},
|
|
3989
|
-
contextWindow:
|
|
3990
|
-
maxTokens:
|
|
4137
|
+
contextWindow: 400000,
|
|
4138
|
+
maxTokens: 128000,
|
|
3991
4139
|
},
|
|
3992
4140
|
"gpt-5.2-codex": {
|
|
3993
4141
|
id: "gpt-5.2-codex",
|
|
3994
|
-
name: "GPT-5.2
|
|
4142
|
+
name: "GPT-5.2 Codex",
|
|
3995
4143
|
api: "openai-responses",
|
|
3996
4144
|
provider: "github-copilot",
|
|
3997
4145
|
baseUrl: "https://api.individual.githubcopilot.com",
|
|
@@ -4000,9 +4148,9 @@ export const MODELS = {
|
|
|
4000
4148
|
thinkingLevelMap: { "off": null, "minimal": "low", "xhigh": "xhigh" },
|
|
4001
4149
|
input: ["text", "image"],
|
|
4002
4150
|
cost: {
|
|
4003
|
-
input:
|
|
4004
|
-
output:
|
|
4005
|
-
cacheRead: 0,
|
|
4151
|
+
input: 1.75,
|
|
4152
|
+
output: 14,
|
|
4153
|
+
cacheRead: 0.175,
|
|
4006
4154
|
cacheWrite: 0,
|
|
4007
4155
|
},
|
|
4008
4156
|
contextWindow: 400000,
|
|
@@ -4010,7 +4158,7 @@ export const MODELS = {
|
|
|
4010
4158
|
},
|
|
4011
4159
|
"gpt-5.3-codex": {
|
|
4012
4160
|
id: "gpt-5.3-codex",
|
|
4013
|
-
name: "GPT-5.3
|
|
4161
|
+
name: "GPT-5.3 Codex",
|
|
4014
4162
|
api: "openai-responses",
|
|
4015
4163
|
provider: "github-copilot",
|
|
4016
4164
|
baseUrl: "https://api.individual.githubcopilot.com",
|
|
@@ -4019,9 +4167,9 @@ export const MODELS = {
|
|
|
4019
4167
|
thinkingLevelMap: { "off": null, "minimal": "low", "xhigh": "xhigh" },
|
|
4020
4168
|
input: ["text", "image"],
|
|
4021
4169
|
cost: {
|
|
4022
|
-
input:
|
|
4023
|
-
output:
|
|
4024
|
-
cacheRead: 0,
|
|
4170
|
+
input: 1.75,
|
|
4171
|
+
output: 14,
|
|
4172
|
+
cacheRead: 0.175,
|
|
4025
4173
|
cacheWrite: 0,
|
|
4026
4174
|
},
|
|
4027
4175
|
contextWindow: 400000,
|
|
@@ -4038,9 +4186,9 @@ export const MODELS = {
|
|
|
4038
4186
|
thinkingLevelMap: { "off": null, "minimal": "low", "xhigh": "xhigh" },
|
|
4039
4187
|
input: ["text", "image"],
|
|
4040
4188
|
cost: {
|
|
4041
|
-
input:
|
|
4042
|
-
output:
|
|
4043
|
-
cacheRead: 0,
|
|
4189
|
+
input: 2.5,
|
|
4190
|
+
output: 15,
|
|
4191
|
+
cacheRead: 0.25,
|
|
4044
4192
|
cacheWrite: 0,
|
|
4045
4193
|
},
|
|
4046
4194
|
contextWindow: 400000,
|
|
@@ -4048,7 +4196,7 @@ export const MODELS = {
|
|
|
4048
4196
|
},
|
|
4049
4197
|
"gpt-5.4-mini": {
|
|
4050
4198
|
id: "gpt-5.4-mini",
|
|
4051
|
-
name: "GPT-5.4
|
|
4199
|
+
name: "GPT-5.4 mini",
|
|
4052
4200
|
api: "openai-responses",
|
|
4053
4201
|
provider: "github-copilot",
|
|
4054
4202
|
baseUrl: "https://api.individual.githubcopilot.com",
|
|
@@ -4057,9 +4205,28 @@ export const MODELS = {
|
|
|
4057
4205
|
thinkingLevelMap: { "off": null, "minimal": "low", "xhigh": "xhigh" },
|
|
4058
4206
|
input: ["text", "image"],
|
|
4059
4207
|
cost: {
|
|
4060
|
-
input: 0,
|
|
4061
|
-
output:
|
|
4062
|
-
cacheRead: 0,
|
|
4208
|
+
input: 0.75,
|
|
4209
|
+
output: 4.5,
|
|
4210
|
+
cacheRead: 0.075,
|
|
4211
|
+
cacheWrite: 0,
|
|
4212
|
+
},
|
|
4213
|
+
contextWindow: 400000,
|
|
4214
|
+
maxTokens: 128000,
|
|
4215
|
+
},
|
|
4216
|
+
"gpt-5.4-nano": {
|
|
4217
|
+
id: "gpt-5.4-nano",
|
|
4218
|
+
name: "GPT-5.4 nano",
|
|
4219
|
+
api: "openai-responses",
|
|
4220
|
+
provider: "github-copilot",
|
|
4221
|
+
baseUrl: "https://api.individual.githubcopilot.com",
|
|
4222
|
+
headers: { "User-Agent": "GitHubCopilotChat/0.35.0", "Editor-Version": "vscode/1.107.0", "Editor-Plugin-Version": "copilot-chat/0.35.0", "Copilot-Integration-Id": "vscode-chat" },
|
|
4223
|
+
reasoning: true,
|
|
4224
|
+
thinkingLevelMap: { "off": null, "minimal": "low", "xhigh": "xhigh" },
|
|
4225
|
+
input: ["text", "image"],
|
|
4226
|
+
cost: {
|
|
4227
|
+
input: 0.2,
|
|
4228
|
+
output: 1.25,
|
|
4229
|
+
cacheRead: 0.02,
|
|
4063
4230
|
cacheWrite: 0,
|
|
4064
4231
|
},
|
|
4065
4232
|
contextWindow: 400000,
|
|
@@ -4076,32 +4243,32 @@ export const MODELS = {
|
|
|
4076
4243
|
thinkingLevelMap: { "off": null, "minimal": "low", "xhigh": "xhigh" },
|
|
4077
4244
|
input: ["text", "image"],
|
|
4078
4245
|
cost: {
|
|
4079
|
-
input:
|
|
4080
|
-
output:
|
|
4081
|
-
cacheRead: 0,
|
|
4246
|
+
input: 5,
|
|
4247
|
+
output: 30,
|
|
4248
|
+
cacheRead: 0.5,
|
|
4082
4249
|
cacheWrite: 0,
|
|
4083
4250
|
},
|
|
4084
4251
|
contextWindow: 400000,
|
|
4085
4252
|
maxTokens: 128000,
|
|
4086
4253
|
},
|
|
4087
|
-
"
|
|
4088
|
-
id: "
|
|
4089
|
-
name: "
|
|
4254
|
+
"raptor-mini": {
|
|
4255
|
+
id: "raptor-mini",
|
|
4256
|
+
name: "Raptor mini",
|
|
4090
4257
|
api: "openai-completions",
|
|
4091
4258
|
provider: "github-copilot",
|
|
4092
4259
|
baseUrl: "https://api.individual.githubcopilot.com",
|
|
4093
4260
|
headers: { "User-Agent": "GitHubCopilotChat/0.35.0", "Editor-Version": "vscode/1.107.0", "Editor-Plugin-Version": "copilot-chat/0.35.0", "Copilot-Integration-Id": "vscode-chat" },
|
|
4094
4261
|
compat: { "supportsStore": false, "supportsDeveloperRole": false, "supportsReasoningEffort": false },
|
|
4095
4262
|
reasoning: true,
|
|
4096
|
-
input: ["text"],
|
|
4263
|
+
input: ["text", "image"],
|
|
4097
4264
|
cost: {
|
|
4098
|
-
input: 0,
|
|
4099
|
-
output:
|
|
4100
|
-
cacheRead: 0,
|
|
4265
|
+
input: 0.25,
|
|
4266
|
+
output: 2,
|
|
4267
|
+
cacheRead: 0.025,
|
|
4101
4268
|
cacheWrite: 0,
|
|
4102
4269
|
},
|
|
4103
|
-
contextWindow:
|
|
4104
|
-
maxTokens:
|
|
4270
|
+
contextWindow: 400000,
|
|
4271
|
+
maxTokens: 128000,
|
|
4105
4272
|
},
|
|
4106
4273
|
},
|
|
4107
4274
|
"google": {
|
|
@@ -6739,7 +6906,7 @@ export const MODELS = {
|
|
|
6739
6906
|
provider: "openai",
|
|
6740
6907
|
baseUrl: "https://api.openai.com/v1",
|
|
6741
6908
|
reasoning: true,
|
|
6742
|
-
thinkingLevelMap: { "off": "none", "xhigh": "xhigh" },
|
|
6909
|
+
thinkingLevelMap: { "off": "none", "xhigh": "xhigh", "minimal": null },
|
|
6743
6910
|
input: ["text", "image"],
|
|
6744
6911
|
cost: {
|
|
6745
6912
|
input: 5,
|
|
@@ -6757,7 +6924,7 @@ export const MODELS = {
|
|
|
6757
6924
|
provider: "openai",
|
|
6758
6925
|
baseUrl: "https://api.openai.com/v1",
|
|
6759
6926
|
reasoning: true,
|
|
6760
|
-
thinkingLevelMap: { "off": null, "xhigh": "xhigh" },
|
|
6927
|
+
thinkingLevelMap: { "off": null, "xhigh": "xhigh", "minimal": null, "low": null },
|
|
6761
6928
|
input: ["text", "image"],
|
|
6762
6929
|
cost: {
|
|
6763
6930
|
input: 30,
|
|
@@ -7109,7 +7276,26 @@ export const MODELS = {
|
|
|
7109
7276
|
api: "anthropic-messages",
|
|
7110
7277
|
provider: "opencode",
|
|
7111
7278
|
baseUrl: "https://opencode.ai/zen",
|
|
7112
|
-
compat: { "forceAdaptiveThinking": true },
|
|
7279
|
+
compat: { "forceAdaptiveThinking": true, "supportsTemperature": false },
|
|
7280
|
+
reasoning: true,
|
|
7281
|
+
thinkingLevelMap: { "xhigh": "xhigh" },
|
|
7282
|
+
input: ["text", "image"],
|
|
7283
|
+
cost: {
|
|
7284
|
+
input: 5,
|
|
7285
|
+
output: 25,
|
|
7286
|
+
cacheRead: 0.5,
|
|
7287
|
+
cacheWrite: 6.25,
|
|
7288
|
+
},
|
|
7289
|
+
contextWindow: 1000000,
|
|
7290
|
+
maxTokens: 128000,
|
|
7291
|
+
},
|
|
7292
|
+
"claude-opus-4-8": {
|
|
7293
|
+
id: "claude-opus-4-8",
|
|
7294
|
+
name: "Claude Opus 4.8",
|
|
7295
|
+
api: "anthropic-messages",
|
|
7296
|
+
provider: "opencode",
|
|
7297
|
+
baseUrl: "https://opencode.ai/zen",
|
|
7298
|
+
compat: { "forceAdaptiveThinking": true, "supportsTemperature": false },
|
|
7113
7299
|
reasoning: true,
|
|
7114
7300
|
thinkingLevelMap: { "xhigh": "xhigh" },
|
|
7115
7301
|
input: ["text", "image"],
|
|
@@ -7174,6 +7360,25 @@ export const MODELS = {
|
|
|
7174
7360
|
contextWindow: 1000000,
|
|
7175
7361
|
maxTokens: 64000,
|
|
7176
7362
|
},
|
|
7363
|
+
"deepseek-v4-flash": {
|
|
7364
|
+
id: "deepseek-v4-flash",
|
|
7365
|
+
name: "DeepSeek V4 Flash",
|
|
7366
|
+
api: "openai-completions",
|
|
7367
|
+
provider: "opencode",
|
|
7368
|
+
baseUrl: "https://opencode.ai/zen/v1",
|
|
7369
|
+
compat: { "requiresReasoningContentOnAssistantMessages": true, "thinkingFormat": "deepseek" },
|
|
7370
|
+
reasoning: true,
|
|
7371
|
+
thinkingLevelMap: { "minimal": null, "low": null, "medium": null, "high": "high", "xhigh": "max" },
|
|
7372
|
+
input: ["text"],
|
|
7373
|
+
cost: {
|
|
7374
|
+
input: 0.14,
|
|
7375
|
+
output: 0.28,
|
|
7376
|
+
cacheRead: 0.03,
|
|
7377
|
+
cacheWrite: 0,
|
|
7378
|
+
},
|
|
7379
|
+
contextWindow: 1000000,
|
|
7380
|
+
maxTokens: 384000,
|
|
7381
|
+
},
|
|
7177
7382
|
"deepseek-v4-flash-free": {
|
|
7178
7383
|
id: "deepseek-v4-flash-free",
|
|
7179
7384
|
name: "DeepSeek V4 Flash Free",
|
|
@@ -7558,7 +7763,7 @@ export const MODELS = {
|
|
|
7558
7763
|
provider: "opencode",
|
|
7559
7764
|
baseUrl: "https://opencode.ai/zen/v1",
|
|
7560
7765
|
reasoning: true,
|
|
7561
|
-
thinkingLevelMap: { "off": null, "xhigh": "xhigh" },
|
|
7766
|
+
thinkingLevelMap: { "off": null, "xhigh": "xhigh", "minimal": null, "low": null },
|
|
7562
7767
|
input: ["text", "image"],
|
|
7563
7768
|
cost: {
|
|
7564
7769
|
input: 30,
|
|
@@ -7575,7 +7780,9 @@ export const MODELS = {
|
|
|
7575
7780
|
api: "openai-completions",
|
|
7576
7781
|
provider: "opencode",
|
|
7577
7782
|
baseUrl: "https://opencode.ai/zen/v1",
|
|
7783
|
+
compat: { "supportsReasoningEffort": false },
|
|
7578
7784
|
reasoning: true,
|
|
7785
|
+
thinkingLevelMap: { "off": null, "minimal": null, "low": null, "medium": null },
|
|
7579
7786
|
input: ["text", "image"],
|
|
7580
7787
|
cost: {
|
|
7581
7788
|
input: 1,
|
|
@@ -7609,6 +7816,7 @@ export const MODELS = {
|
|
|
7609
7816
|
api: "openai-completions",
|
|
7610
7817
|
provider: "opencode",
|
|
7611
7818
|
baseUrl: "https://opencode.ai/zen/v1",
|
|
7819
|
+
compat: { "thinkingFormat": "deepseek", "supportsReasoningEffort": false },
|
|
7612
7820
|
reasoning: true,
|
|
7613
7821
|
input: ["text", "image"],
|
|
7614
7822
|
cost: {
|
|
@@ -7634,8 +7842,8 @@ export const MODELS = {
|
|
|
7634
7842
|
cacheRead: 0,
|
|
7635
7843
|
cacheWrite: 0,
|
|
7636
7844
|
},
|
|
7637
|
-
contextWindow:
|
|
7638
|
-
maxTokens:
|
|
7845
|
+
contextWindow: 200000,
|
|
7846
|
+
maxTokens: 32000,
|
|
7639
7847
|
},
|
|
7640
7848
|
"minimax-m2.5": {
|
|
7641
7849
|
id: "minimax-m2.5",
|
|
@@ -7671,6 +7879,23 @@ export const MODELS = {
|
|
|
7671
7879
|
contextWindow: 204800,
|
|
7672
7880
|
maxTokens: 131072,
|
|
7673
7881
|
},
|
|
7882
|
+
"minimax-m3-free": {
|
|
7883
|
+
id: "minimax-m3-free",
|
|
7884
|
+
name: "MiniMax M3 Free",
|
|
7885
|
+
api: "anthropic-messages",
|
|
7886
|
+
provider: "opencode",
|
|
7887
|
+
baseUrl: "https://opencode.ai/zen",
|
|
7888
|
+
reasoning: true,
|
|
7889
|
+
input: ["text", "image"],
|
|
7890
|
+
cost: {
|
|
7891
|
+
input: 0,
|
|
7892
|
+
output: 0,
|
|
7893
|
+
cacheRead: 0,
|
|
7894
|
+
cacheWrite: 0,
|
|
7895
|
+
},
|
|
7896
|
+
contextWindow: 200000,
|
|
7897
|
+
maxTokens: 32000,
|
|
7898
|
+
},
|
|
7674
7899
|
"nemotron-3-super-free": {
|
|
7675
7900
|
id: "nemotron-3-super-free",
|
|
7676
7901
|
name: "Nemotron 3 Super Free",
|
|
@@ -7819,7 +8044,9 @@ export const MODELS = {
|
|
|
7819
8044
|
api: "openai-completions",
|
|
7820
8045
|
provider: "opencode-go",
|
|
7821
8046
|
baseUrl: "https://opencode.ai/zen/go/v1",
|
|
8047
|
+
compat: { "thinkingFormat": "deepseek", "supportsReasoningEffort": false },
|
|
7822
8048
|
reasoning: true,
|
|
8049
|
+
thinkingLevelMap: { "minimal": null, "low": null, "medium": null },
|
|
7823
8050
|
input: ["text", "image"],
|
|
7824
8051
|
cost: {
|
|
7825
8052
|
input: 0.95,
|
|
@@ -7898,23 +8125,22 @@ export const MODELS = {
|
|
|
7898
8125
|
contextWindow: 204800,
|
|
7899
8126
|
maxTokens: 131072,
|
|
7900
8127
|
},
|
|
7901
|
-
"
|
|
7902
|
-
id: "
|
|
7903
|
-
name: "
|
|
7904
|
-
api: "
|
|
8128
|
+
"minimax-m3": {
|
|
8129
|
+
id: "minimax-m3",
|
|
8130
|
+
name: "MiniMax M3",
|
|
8131
|
+
api: "anthropic-messages",
|
|
7905
8132
|
provider: "opencode-go",
|
|
7906
|
-
baseUrl: "https://opencode.ai/zen/go
|
|
7907
|
-
compat: { "thinkingFormat": "qwen" },
|
|
8133
|
+
baseUrl: "https://opencode.ai/zen/go",
|
|
7908
8134
|
reasoning: true,
|
|
7909
8135
|
input: ["text", "image"],
|
|
7910
8136
|
cost: {
|
|
7911
|
-
input: 0.
|
|
7912
|
-
output:
|
|
7913
|
-
cacheRead: 0.
|
|
7914
|
-
cacheWrite: 0
|
|
8137
|
+
input: 0.6,
|
|
8138
|
+
output: 2.4,
|
|
8139
|
+
cacheRead: 0.12,
|
|
8140
|
+
cacheWrite: 0,
|
|
7915
8141
|
},
|
|
7916
|
-
contextWindow:
|
|
7917
|
-
maxTokens:
|
|
8142
|
+
contextWindow: 512000,
|
|
8143
|
+
maxTokens: 131072,
|
|
7918
8144
|
},
|
|
7919
8145
|
"qwen3.6-plus": {
|
|
7920
8146
|
id: "qwen3.6-plus",
|
|
@@ -8229,6 +8455,42 @@ export const MODELS = {
|
|
|
8229
8455
|
contextWindow: 1000000,
|
|
8230
8456
|
maxTokens: 128000,
|
|
8231
8457
|
},
|
|
8458
|
+
"anthropic/claude-opus-4.8": {
|
|
8459
|
+
id: "anthropic/claude-opus-4.8",
|
|
8460
|
+
name: "Anthropic: Claude Opus 4.8",
|
|
8461
|
+
api: "openai-completions",
|
|
8462
|
+
provider: "openrouter",
|
|
8463
|
+
baseUrl: "https://openrouter.ai/api/v1",
|
|
8464
|
+
reasoning: true,
|
|
8465
|
+
thinkingLevelMap: { "xhigh": "xhigh" },
|
|
8466
|
+
input: ["text", "image"],
|
|
8467
|
+
cost: {
|
|
8468
|
+
input: 5,
|
|
8469
|
+
output: 25,
|
|
8470
|
+
cacheRead: 0.5,
|
|
8471
|
+
cacheWrite: 6.25,
|
|
8472
|
+
},
|
|
8473
|
+
contextWindow: 1000000,
|
|
8474
|
+
maxTokens: 128000,
|
|
8475
|
+
},
|
|
8476
|
+
"anthropic/claude-opus-4.8-fast": {
|
|
8477
|
+
id: "anthropic/claude-opus-4.8-fast",
|
|
8478
|
+
name: "Anthropic: Claude Opus 4.8 (Fast)",
|
|
8479
|
+
api: "openai-completions",
|
|
8480
|
+
provider: "openrouter",
|
|
8481
|
+
baseUrl: "https://openrouter.ai/api/v1",
|
|
8482
|
+
reasoning: true,
|
|
8483
|
+
thinkingLevelMap: { "xhigh": "xhigh" },
|
|
8484
|
+
input: ["text", "image"],
|
|
8485
|
+
cost: {
|
|
8486
|
+
input: 10,
|
|
8487
|
+
output: 50,
|
|
8488
|
+
cacheRead: 1,
|
|
8489
|
+
cacheWrite: 12.5,
|
|
8490
|
+
},
|
|
8491
|
+
contextWindow: 1000000,
|
|
8492
|
+
maxTokens: 128000,
|
|
8493
|
+
},
|
|
8232
8494
|
"anthropic/claude-sonnet-4": {
|
|
8233
8495
|
id: "anthropic/claude-sonnet-4",
|
|
8234
8496
|
name: "Anthropic: Claude Sonnet 4",
|
|
@@ -8348,26 +8610,9 @@ export const MODELS = {
|
|
|
8348
8610
|
contextWindow: 2000000,
|
|
8349
8611
|
maxTokens: 30000,
|
|
8350
8612
|
},
|
|
8351
|
-
"baidu/ernie-4.5-
|
|
8352
|
-
id: "baidu/ernie-4.5-
|
|
8353
|
-
name: "Baidu: ERNIE 4.5
|
|
8354
|
-
api: "openai-completions",
|
|
8355
|
-
provider: "openrouter",
|
|
8356
|
-
baseUrl: "https://openrouter.ai/api/v1",
|
|
8357
|
-
reasoning: false,
|
|
8358
|
-
input: ["text"],
|
|
8359
|
-
cost: {
|
|
8360
|
-
input: 0.07,
|
|
8361
|
-
output: 0.28,
|
|
8362
|
-
cacheRead: 0,
|
|
8363
|
-
cacheWrite: 0,
|
|
8364
|
-
},
|
|
8365
|
-
contextWindow: 131072,
|
|
8366
|
-
maxTokens: 8000,
|
|
8367
|
-
},
|
|
8368
|
-
"baidu/ernie-4.5-vl-28b-a3b": {
|
|
8369
|
-
id: "baidu/ernie-4.5-vl-28b-a3b",
|
|
8370
|
-
name: "Baidu: ERNIE 4.5 VL 28B A3B",
|
|
8613
|
+
"baidu/ernie-4.5-vl-28b-a3b": {
|
|
8614
|
+
id: "baidu/ernie-4.5-vl-28b-a3b",
|
|
8615
|
+
name: "Baidu: ERNIE 4.5 VL 28B A3B",
|
|
8371
8616
|
api: "openai-completions",
|
|
8372
8617
|
provider: "openrouter",
|
|
8373
8618
|
baseUrl: "https://openrouter.ai/api/v1",
|
|
@@ -8493,8 +8738,8 @@ export const MODELS = {
|
|
|
8493
8738
|
reasoning: false,
|
|
8494
8739
|
input: ["text"],
|
|
8495
8740
|
cost: {
|
|
8496
|
-
input: 0.
|
|
8497
|
-
output: 0.
|
|
8741
|
+
input: 0.20020000000000002,
|
|
8742
|
+
output: 0.8000999999999999,
|
|
8498
8743
|
cacheRead: 0,
|
|
8499
8744
|
cacheWrite: 0,
|
|
8500
8745
|
},
|
|
@@ -8595,13 +8840,13 @@ export const MODELS = {
|
|
|
8595
8840
|
reasoning: true,
|
|
8596
8841
|
input: ["text"],
|
|
8597
8842
|
cost: {
|
|
8598
|
-
input: 0.
|
|
8599
|
-
output: 0.
|
|
8600
|
-
cacheRead: 0
|
|
8843
|
+
input: 0.2288,
|
|
8844
|
+
output: 0.3432,
|
|
8845
|
+
cacheRead: 0,
|
|
8601
8846
|
cacheWrite: 0,
|
|
8602
8847
|
},
|
|
8603
8848
|
contextWindow: 131072,
|
|
8604
|
-
maxTokens:
|
|
8849
|
+
maxTokens: 64000,
|
|
8605
8850
|
},
|
|
8606
8851
|
"deepseek/deepseek-v3.2-exp": {
|
|
8607
8852
|
id: "deepseek/deepseek-v3.2-exp",
|
|
@@ -8626,37 +8871,18 @@ export const MODELS = {
|
|
|
8626
8871
|
api: "openai-completions",
|
|
8627
8872
|
provider: "openrouter",
|
|
8628
8873
|
baseUrl: "https://openrouter.ai/api/v1",
|
|
8629
|
-
compat: { "requiresReasoningContentOnAssistantMessages": true
|
|
8630
|
-
reasoning: true,
|
|
8631
|
-
thinkingLevelMap: { "minimal": null, "low": null, "medium": null, "high": "high", "xhigh": "max" },
|
|
8632
|
-
input: ["text"],
|
|
8633
|
-
cost: {
|
|
8634
|
-
input: 0.09999999999999999,
|
|
8635
|
-
output: 0.19999999999999998,
|
|
8636
|
-
cacheRead: 0.02,
|
|
8637
|
-
cacheWrite: 0,
|
|
8638
|
-
},
|
|
8639
|
-
contextWindow: 1048576,
|
|
8640
|
-
maxTokens: 16384,
|
|
8641
|
-
},
|
|
8642
|
-
"deepseek/deepseek-v4-flash:free": {
|
|
8643
|
-
id: "deepseek/deepseek-v4-flash:free",
|
|
8644
|
-
name: "DeepSeek: DeepSeek V4 Flash (free)",
|
|
8645
|
-
api: "openai-completions",
|
|
8646
|
-
provider: "openrouter",
|
|
8647
|
-
baseUrl: "https://openrouter.ai/api/v1",
|
|
8648
|
-
compat: { "requiresReasoningContentOnAssistantMessages": true, "thinkingFormat": "deepseek" },
|
|
8874
|
+
compat: { "requiresReasoningContentOnAssistantMessages": true },
|
|
8649
8875
|
reasoning: true,
|
|
8650
|
-
thinkingLevelMap: { "minimal": null, "low": null, "medium": null, "high": "high", "xhigh": "
|
|
8876
|
+
thinkingLevelMap: { "minimal": null, "low": null, "medium": null, "high": "high", "xhigh": "xhigh" },
|
|
8651
8877
|
input: ["text"],
|
|
8652
8878
|
cost: {
|
|
8653
|
-
input: 0,
|
|
8654
|
-
output: 0,
|
|
8655
|
-
cacheRead: 0,
|
|
8879
|
+
input: 0.0983,
|
|
8880
|
+
output: 0.1966,
|
|
8881
|
+
cacheRead: 0.019700000000000002,
|
|
8656
8882
|
cacheWrite: 0,
|
|
8657
8883
|
},
|
|
8658
8884
|
contextWindow: 1048576,
|
|
8659
|
-
maxTokens:
|
|
8885
|
+
maxTokens: 131072,
|
|
8660
8886
|
},
|
|
8661
8887
|
"deepseek/deepseek-v4-pro": {
|
|
8662
8888
|
id: "deepseek/deepseek-v4-pro",
|
|
@@ -8664,9 +8890,9 @@ export const MODELS = {
|
|
|
8664
8890
|
api: "openai-completions",
|
|
8665
8891
|
provider: "openrouter",
|
|
8666
8892
|
baseUrl: "https://openrouter.ai/api/v1",
|
|
8667
|
-
compat: { "requiresReasoningContentOnAssistantMessages": true
|
|
8893
|
+
compat: { "requiresReasoningContentOnAssistantMessages": true },
|
|
8668
8894
|
reasoning: true,
|
|
8669
|
-
thinkingLevelMap: { "minimal": null, "low": null, "medium": null, "high": "high", "xhigh": "
|
|
8895
|
+
thinkingLevelMap: { "minimal": null, "low": null, "medium": null, "high": "high", "xhigh": "xhigh" },
|
|
8670
8896
|
input: ["text"],
|
|
8671
8897
|
cost: {
|
|
8672
8898
|
input: 0.435,
|
|
@@ -8694,40 +8920,6 @@ export const MODELS = {
|
|
|
8694
8920
|
contextWindow: 32768,
|
|
8695
8921
|
maxTokens: 4096,
|
|
8696
8922
|
},
|
|
8697
|
-
"google/gemini-2.0-flash-001": {
|
|
8698
|
-
id: "google/gemini-2.0-flash-001",
|
|
8699
|
-
name: "Google: Gemini 2.0 Flash",
|
|
8700
|
-
api: "openai-completions",
|
|
8701
|
-
provider: "openrouter",
|
|
8702
|
-
baseUrl: "https://openrouter.ai/api/v1",
|
|
8703
|
-
reasoning: false,
|
|
8704
|
-
input: ["text", "image"],
|
|
8705
|
-
cost: {
|
|
8706
|
-
input: 0.09999999999999999,
|
|
8707
|
-
output: 0.39999999999999997,
|
|
8708
|
-
cacheRead: 0.024999999999999998,
|
|
8709
|
-
cacheWrite: 0.08333333333333334,
|
|
8710
|
-
},
|
|
8711
|
-
contextWindow: 1000000,
|
|
8712
|
-
maxTokens: 8192,
|
|
8713
|
-
},
|
|
8714
|
-
"google/gemini-2.0-flash-lite-001": {
|
|
8715
|
-
id: "google/gemini-2.0-flash-lite-001",
|
|
8716
|
-
name: "Google: Gemini 2.0 Flash Lite",
|
|
8717
|
-
api: "openai-completions",
|
|
8718
|
-
provider: "openrouter",
|
|
8719
|
-
baseUrl: "https://openrouter.ai/api/v1",
|
|
8720
|
-
reasoning: false,
|
|
8721
|
-
input: ["text", "image"],
|
|
8722
|
-
cost: {
|
|
8723
|
-
input: 0.075,
|
|
8724
|
-
output: 0.3,
|
|
8725
|
-
cacheRead: 0,
|
|
8726
|
-
cacheWrite: 0,
|
|
8727
|
-
},
|
|
8728
|
-
contextWindow: 1048576,
|
|
8729
|
-
maxTokens: 8192,
|
|
8730
|
-
},
|
|
8731
8923
|
"google/gemini-2.5-flash": {
|
|
8732
8924
|
id: "google/gemini-2.5-flash",
|
|
8733
8925
|
name: "Google: Gemini 2.5 Flash",
|
|
@@ -9112,9 +9304,9 @@ export const MODELS = {
|
|
|
9112
9304
|
reasoning: true,
|
|
9113
9305
|
input: ["text"],
|
|
9114
9306
|
cost: {
|
|
9115
|
-
input: 0.
|
|
9116
|
-
output:
|
|
9117
|
-
cacheRead: 0.
|
|
9307
|
+
input: 0.3,
|
|
9308
|
+
output: 2.5,
|
|
9309
|
+
cacheRead: 0.06,
|
|
9118
9310
|
cacheWrite: 0,
|
|
9119
9311
|
},
|
|
9120
9312
|
contextWindow: 262144,
|
|
@@ -9205,6 +9397,23 @@ export const MODELS = {
|
|
|
9205
9397
|
contextWindow: 131072,
|
|
9206
9398
|
maxTokens: 4096,
|
|
9207
9399
|
},
|
|
9400
|
+
"meta-llama/llama-4-maverick": {
|
|
9401
|
+
id: "meta-llama/llama-4-maverick",
|
|
9402
|
+
name: "Meta: Llama 4 Maverick",
|
|
9403
|
+
api: "openai-completions",
|
|
9404
|
+
provider: "openrouter",
|
|
9405
|
+
baseUrl: "https://openrouter.ai/api/v1",
|
|
9406
|
+
reasoning: false,
|
|
9407
|
+
input: ["text", "image"],
|
|
9408
|
+
cost: {
|
|
9409
|
+
input: 0.15,
|
|
9410
|
+
output: 0.6,
|
|
9411
|
+
cacheRead: 0,
|
|
9412
|
+
cacheWrite: 0,
|
|
9413
|
+
},
|
|
9414
|
+
contextWindow: 1048576,
|
|
9415
|
+
maxTokens: 16384,
|
|
9416
|
+
},
|
|
9208
9417
|
"meta-llama/llama-4-scout": {
|
|
9209
9418
|
id: "meta-llama/llama-4-scout",
|
|
9210
9419
|
name: "Meta: Llama 4 Scout",
|
|
@@ -9290,39 +9499,39 @@ export const MODELS = {
|
|
|
9290
9499
|
contextWindow: 204800,
|
|
9291
9500
|
maxTokens: 196608,
|
|
9292
9501
|
},
|
|
9293
|
-
"minimax/minimax-m2.
|
|
9294
|
-
id: "minimax/minimax-m2.
|
|
9295
|
-
name: "MiniMax: MiniMax M2.
|
|
9502
|
+
"minimax/minimax-m2.7": {
|
|
9503
|
+
id: "minimax/minimax-m2.7",
|
|
9504
|
+
name: "MiniMax: MiniMax M2.7",
|
|
9296
9505
|
api: "openai-completions",
|
|
9297
9506
|
provider: "openrouter",
|
|
9298
9507
|
baseUrl: "https://openrouter.ai/api/v1",
|
|
9299
9508
|
reasoning: true,
|
|
9300
9509
|
input: ["text"],
|
|
9301
9510
|
cost: {
|
|
9302
|
-
input: 0,
|
|
9303
|
-
output:
|
|
9511
|
+
input: 0.27899999999999997,
|
|
9512
|
+
output: 1.2,
|
|
9304
9513
|
cacheRead: 0,
|
|
9305
9514
|
cacheWrite: 0,
|
|
9306
9515
|
},
|
|
9307
|
-
contextWindow:
|
|
9308
|
-
maxTokens:
|
|
9516
|
+
contextWindow: 204800,
|
|
9517
|
+
maxTokens: 131072,
|
|
9309
9518
|
},
|
|
9310
|
-
"minimax/minimax-
|
|
9311
|
-
id: "minimax/minimax-
|
|
9312
|
-
name: "MiniMax: MiniMax
|
|
9519
|
+
"minimax/minimax-m3": {
|
|
9520
|
+
id: "minimax/minimax-m3",
|
|
9521
|
+
name: "MiniMax: MiniMax M3",
|
|
9313
9522
|
api: "openai-completions",
|
|
9314
9523
|
provider: "openrouter",
|
|
9315
9524
|
baseUrl: "https://openrouter.ai/api/v1",
|
|
9316
9525
|
reasoning: true,
|
|
9317
|
-
input: ["text"],
|
|
9526
|
+
input: ["text", "image"],
|
|
9318
9527
|
cost: {
|
|
9319
|
-
input: 0.
|
|
9528
|
+
input: 0.3,
|
|
9320
9529
|
output: 1.2,
|
|
9321
|
-
cacheRead: 0,
|
|
9530
|
+
cacheRead: 0.06,
|
|
9322
9531
|
cacheWrite: 0,
|
|
9323
9532
|
},
|
|
9324
|
-
contextWindow:
|
|
9325
|
-
maxTokens:
|
|
9533
|
+
contextWindow: 1048576,
|
|
9534
|
+
maxTokens: 512000,
|
|
9326
9535
|
},
|
|
9327
9536
|
"mistralai/codestral-2508": {
|
|
9328
9537
|
id: "mistralai/codestral-2508",
|
|
@@ -9358,40 +9567,6 @@ export const MODELS = {
|
|
|
9358
9567
|
contextWindow: 262144,
|
|
9359
9568
|
maxTokens: 4096,
|
|
9360
9569
|
},
|
|
9361
|
-
"mistralai/devstral-medium": {
|
|
9362
|
-
id: "mistralai/devstral-medium",
|
|
9363
|
-
name: "Mistral: Devstral Medium",
|
|
9364
|
-
api: "openai-completions",
|
|
9365
|
-
provider: "openrouter",
|
|
9366
|
-
baseUrl: "https://openrouter.ai/api/v1",
|
|
9367
|
-
reasoning: false,
|
|
9368
|
-
input: ["text"],
|
|
9369
|
-
cost: {
|
|
9370
|
-
input: 0.39999999999999997,
|
|
9371
|
-
output: 2,
|
|
9372
|
-
cacheRead: 0.04,
|
|
9373
|
-
cacheWrite: 0,
|
|
9374
|
-
},
|
|
9375
|
-
contextWindow: 131072,
|
|
9376
|
-
maxTokens: 4096,
|
|
9377
|
-
},
|
|
9378
|
-
"mistralai/devstral-small": {
|
|
9379
|
-
id: "mistralai/devstral-small",
|
|
9380
|
-
name: "Mistral: Devstral Small 1.1",
|
|
9381
|
-
api: "openai-completions",
|
|
9382
|
-
provider: "openrouter",
|
|
9383
|
-
baseUrl: "https://openrouter.ai/api/v1",
|
|
9384
|
-
reasoning: false,
|
|
9385
|
-
input: ["text"],
|
|
9386
|
-
cost: {
|
|
9387
|
-
input: 0.09999999999999999,
|
|
9388
|
-
output: 0.3,
|
|
9389
|
-
cacheRead: 0.01,
|
|
9390
|
-
cacheWrite: 0,
|
|
9391
|
-
},
|
|
9392
|
-
contextWindow: 131072,
|
|
9393
|
-
maxTokens: 4096,
|
|
9394
|
-
},
|
|
9395
9570
|
"mistralai/ministral-14b-2512": {
|
|
9396
9571
|
id: "mistralai/ministral-14b-2512",
|
|
9397
9572
|
name: "Mistral: Ministral 3 14B 2512",
|
|
@@ -9477,23 +9652,6 @@ export const MODELS = {
|
|
|
9477
9652
|
contextWindow: 131072,
|
|
9478
9653
|
maxTokens: 4096,
|
|
9479
9654
|
},
|
|
9480
|
-
"mistralai/mistral-large-2411": {
|
|
9481
|
-
id: "mistralai/mistral-large-2411",
|
|
9482
|
-
name: "Mistral Large 2411",
|
|
9483
|
-
api: "openai-completions",
|
|
9484
|
-
provider: "openrouter",
|
|
9485
|
-
baseUrl: "https://openrouter.ai/api/v1",
|
|
9486
|
-
reasoning: false,
|
|
9487
|
-
input: ["text"],
|
|
9488
|
-
cost: {
|
|
9489
|
-
input: 2,
|
|
9490
|
-
output: 6,
|
|
9491
|
-
cacheRead: 0.19999999999999998,
|
|
9492
|
-
cacheWrite: 0,
|
|
9493
|
-
},
|
|
9494
|
-
contextWindow: 131072,
|
|
9495
|
-
maxTokens: 4096,
|
|
9496
|
-
},
|
|
9497
9655
|
"mistralai/mistral-large-2512": {
|
|
9498
9656
|
id: "mistralai/mistral-large-2512",
|
|
9499
9657
|
name: "Mistral: Mistral Large 3 2512",
|
|
@@ -9647,23 +9805,6 @@ export const MODELS = {
|
|
|
9647
9805
|
contextWindow: 65536,
|
|
9648
9806
|
maxTokens: 4096,
|
|
9649
9807
|
},
|
|
9650
|
-
"mistralai/pixtral-large-2411": {
|
|
9651
|
-
id: "mistralai/pixtral-large-2411",
|
|
9652
|
-
name: "Mistral: Pixtral Large 2411",
|
|
9653
|
-
api: "openai-completions",
|
|
9654
|
-
provider: "openrouter",
|
|
9655
|
-
baseUrl: "https://openrouter.ai/api/v1",
|
|
9656
|
-
reasoning: false,
|
|
9657
|
-
input: ["text", "image"],
|
|
9658
|
-
cost: {
|
|
9659
|
-
input: 2,
|
|
9660
|
-
output: 6,
|
|
9661
|
-
cacheRead: 0.19999999999999998,
|
|
9662
|
-
cacheWrite: 0,
|
|
9663
|
-
},
|
|
9664
|
-
contextWindow: 131072,
|
|
9665
|
-
maxTokens: 4096,
|
|
9666
|
-
},
|
|
9667
9808
|
"mistralai/voxtral-small-24b-2507": {
|
|
9668
9809
|
id: "mistralai/voxtral-small-24b-2507",
|
|
9669
9810
|
name: "Mistral: Voxtral Small 24B 2507",
|
|
@@ -9755,16 +9896,17 @@ export const MODELS = {
|
|
|
9755
9896
|
api: "openai-completions",
|
|
9756
9897
|
provider: "openrouter",
|
|
9757
9898
|
baseUrl: "https://openrouter.ai/api/v1",
|
|
9899
|
+
compat: { "supportsDeveloperRole": false },
|
|
9758
9900
|
reasoning: true,
|
|
9759
9901
|
input: ["text", "image"],
|
|
9760
9902
|
cost: {
|
|
9761
|
-
input: 0.
|
|
9762
|
-
output: 3.
|
|
9763
|
-
cacheRead: 0.
|
|
9903
|
+
input: 0.684,
|
|
9904
|
+
output: 3.42,
|
|
9905
|
+
cacheRead: 0.144,
|
|
9764
9906
|
cacheWrite: 0,
|
|
9765
9907
|
},
|
|
9766
9908
|
contextWindow: 262144,
|
|
9767
|
-
maxTokens:
|
|
9909
|
+
maxTokens: 262144,
|
|
9768
9910
|
},
|
|
9769
9911
|
"moonshotai/kimi-k2.6:free": {
|
|
9770
9912
|
id: "moonshotai/kimi-k2.6:free",
|
|
@@ -9772,6 +9914,7 @@ export const MODELS = {
|
|
|
9772
9914
|
api: "openai-completions",
|
|
9773
9915
|
provider: "openrouter",
|
|
9774
9916
|
baseUrl: "https://openrouter.ai/api/v1",
|
|
9917
|
+
compat: { "supportsDeveloperRole": false },
|
|
9775
9918
|
reasoning: true,
|
|
9776
9919
|
input: ["text", "image"],
|
|
9777
9920
|
cost: {
|
|
@@ -10208,23 +10351,6 @@ export const MODELS = {
|
|
|
10208
10351
|
contextWindow: 128000,
|
|
10209
10352
|
maxTokens: 16384,
|
|
10210
10353
|
},
|
|
10211
|
-
"openai/gpt-4o-audio-preview": {
|
|
10212
|
-
id: "openai/gpt-4o-audio-preview",
|
|
10213
|
-
name: "OpenAI: GPT-4o Audio",
|
|
10214
|
-
api: "openai-completions",
|
|
10215
|
-
provider: "openrouter",
|
|
10216
|
-
baseUrl: "https://openrouter.ai/api/v1",
|
|
10217
|
-
reasoning: false,
|
|
10218
|
-
input: ["text"],
|
|
10219
|
-
cost: {
|
|
10220
|
-
input: 2.5,
|
|
10221
|
-
output: 10,
|
|
10222
|
-
cacheRead: 0,
|
|
10223
|
-
cacheWrite: 0,
|
|
10224
|
-
},
|
|
10225
|
-
contextWindow: 128000,
|
|
10226
|
-
maxTokens: 16384,
|
|
10227
|
-
},
|
|
10228
10354
|
"openai/gpt-4o-mini": {
|
|
10229
10355
|
id: "openai/gpt-4o-mini",
|
|
10230
10356
|
name: "OpenAI: GPT-4o-mini",
|
|
@@ -10634,7 +10760,7 @@ export const MODELS = {
|
|
|
10634
10760
|
provider: "openrouter",
|
|
10635
10761
|
baseUrl: "https://openrouter.ai/api/v1",
|
|
10636
10762
|
reasoning: true,
|
|
10637
|
-
thinkingLevelMap: { "xhigh": "xhigh" },
|
|
10763
|
+
thinkingLevelMap: { "xhigh": "xhigh", "off": null, "minimal": null, "low": null },
|
|
10638
10764
|
input: ["text", "image"],
|
|
10639
10765
|
cost: {
|
|
10640
10766
|
input: 30,
|
|
@@ -10739,13 +10865,13 @@ export const MODELS = {
|
|
|
10739
10865
|
reasoning: true,
|
|
10740
10866
|
input: ["text"],
|
|
10741
10867
|
cost: {
|
|
10742
|
-
input: 0.
|
|
10868
|
+
input: 0.029,
|
|
10743
10869
|
output: 0.14,
|
|
10744
10870
|
cacheRead: 0,
|
|
10745
10871
|
cacheWrite: 0,
|
|
10746
10872
|
},
|
|
10747
10873
|
contextWindow: 131072,
|
|
10748
|
-
maxTokens:
|
|
10874
|
+
maxTokens: 4096,
|
|
10749
10875
|
},
|
|
10750
10876
|
"openai/gpt-oss-20b:free": {
|
|
10751
10877
|
id: "openai/gpt-oss-20b:free",
|
|
@@ -11053,23 +11179,6 @@ export const MODELS = {
|
|
|
11053
11179
|
contextWindow: 131072,
|
|
11054
11180
|
maxTokens: 16384,
|
|
11055
11181
|
},
|
|
11056
|
-
"qwen/qwen-2.5-7b-instruct": {
|
|
11057
|
-
id: "qwen/qwen-2.5-7b-instruct",
|
|
11058
|
-
name: "Qwen: Qwen2.5 7B Instruct",
|
|
11059
|
-
api: "openai-completions",
|
|
11060
|
-
provider: "openrouter",
|
|
11061
|
-
baseUrl: "https://openrouter.ai/api/v1",
|
|
11062
|
-
reasoning: false,
|
|
11063
|
-
input: ["text"],
|
|
11064
|
-
cost: {
|
|
11065
|
-
input: 0.04,
|
|
11066
|
-
output: 0.09999999999999999,
|
|
11067
|
-
cacheRead: 0,
|
|
11068
|
-
cacheWrite: 0,
|
|
11069
|
-
},
|
|
11070
|
-
contextWindow: 131072,
|
|
11071
|
-
maxTokens: 32768,
|
|
11072
|
-
},
|
|
11073
11182
|
"qwen/qwen-plus": {
|
|
11074
11183
|
id: "qwen/qwen-plus",
|
|
11075
11184
|
name: "Qwen: Qwen-Plus",
|
|
@@ -11181,13 +11290,13 @@ export const MODELS = {
|
|
|
11181
11290
|
reasoning: true,
|
|
11182
11291
|
input: ["text"],
|
|
11183
11292
|
cost: {
|
|
11184
|
-
input: 0.
|
|
11185
|
-
output:
|
|
11186
|
-
cacheRead: 0,
|
|
11293
|
+
input: 0.09999999999999999,
|
|
11294
|
+
output: 0.09999999999999999,
|
|
11295
|
+
cacheRead: 0.09999999999999999,
|
|
11187
11296
|
cacheWrite: 0,
|
|
11188
11297
|
},
|
|
11189
11298
|
contextWindow: 262144,
|
|
11190
|
-
maxTokens:
|
|
11299
|
+
maxTokens: 262144,
|
|
11191
11300
|
},
|
|
11192
11301
|
"qwen/qwen3-30b-a3b": {
|
|
11193
11302
|
id: "qwen/qwen3-30b-a3b",
|
|
@@ -11215,13 +11324,13 @@ export const MODELS = {
|
|
|
11215
11324
|
reasoning: false,
|
|
11216
11325
|
input: ["text"],
|
|
11217
11326
|
cost: {
|
|
11218
|
-
input: 0.
|
|
11219
|
-
output: 0.
|
|
11327
|
+
input: 0.0428,
|
|
11328
|
+
output: 0.1716,
|
|
11220
11329
|
cacheRead: 0,
|
|
11221
11330
|
cacheWrite: 0,
|
|
11222
11331
|
},
|
|
11223
|
-
contextWindow:
|
|
11224
|
-
maxTokens:
|
|
11332
|
+
contextWindow: 131072,
|
|
11333
|
+
maxTokens: 32000,
|
|
11225
11334
|
},
|
|
11226
11335
|
"qwen/qwen3-30b-a3b-thinking-2507": {
|
|
11227
11336
|
id: "qwen/qwen3-30b-a3b-thinking-2507",
|
|
@@ -11623,13 +11732,13 @@ export const MODELS = {
|
|
|
11623
11732
|
reasoning: true,
|
|
11624
11733
|
input: ["text", "image"],
|
|
11625
11734
|
cost: {
|
|
11626
|
-
input: 0.
|
|
11735
|
+
input: 0.14,
|
|
11627
11736
|
output: 1,
|
|
11628
|
-
cacheRead: 0,
|
|
11737
|
+
cacheRead: 0.049999999999999996,
|
|
11629
11738
|
cacheWrite: 0,
|
|
11630
11739
|
},
|
|
11631
11740
|
contextWindow: 262144,
|
|
11632
|
-
maxTokens:
|
|
11741
|
+
maxTokens: 262144,
|
|
11633
11742
|
},
|
|
11634
11743
|
"qwen/qwen3.5-397b-a17b": {
|
|
11635
11744
|
id: "qwen/qwen3.5-397b-a17b",
|
|
@@ -11903,6 +12012,23 @@ export const MODELS = {
|
|
|
11903
12012
|
contextWindow: 262144,
|
|
11904
12013
|
maxTokens: 16384,
|
|
11905
12014
|
},
|
|
12015
|
+
"stepfun/step-3.7-flash": {
|
|
12016
|
+
id: "stepfun/step-3.7-flash",
|
|
12017
|
+
name: "StepFun: Step 3.7 Flash",
|
|
12018
|
+
api: "openai-completions",
|
|
12019
|
+
provider: "openrouter",
|
|
12020
|
+
baseUrl: "https://openrouter.ai/api/v1",
|
|
12021
|
+
reasoning: true,
|
|
12022
|
+
input: ["text", "image"],
|
|
12023
|
+
cost: {
|
|
12024
|
+
input: 0.19999999999999998,
|
|
12025
|
+
output: 1.15,
|
|
12026
|
+
cacheRead: 0.04,
|
|
12027
|
+
cacheWrite: 0,
|
|
12028
|
+
},
|
|
12029
|
+
contextWindow: 256000,
|
|
12030
|
+
maxTokens: 256000,
|
|
12031
|
+
},
|
|
11906
12032
|
"tencent/hy3-preview": {
|
|
11907
12033
|
id: "tencent/hy3-preview",
|
|
11908
12034
|
name: "Tencent: Hy3 preview",
|
|
@@ -12039,56 +12165,22 @@ export const MODELS = {
|
|
|
12039
12165
|
contextWindow: 262144,
|
|
12040
12166
|
maxTokens: 65536,
|
|
12041
12167
|
},
|
|
12042
|
-
"xiaomi/mimo-v2
|
|
12043
|
-
id: "xiaomi/mimo-v2
|
|
12044
|
-
name: "Xiaomi: MiMo-V2
|
|
12168
|
+
"xiaomi/mimo-v2.5": {
|
|
12169
|
+
id: "xiaomi/mimo-v2.5",
|
|
12170
|
+
name: "Xiaomi: MiMo-V2.5",
|
|
12045
12171
|
api: "openai-completions",
|
|
12046
12172
|
provider: "openrouter",
|
|
12047
12173
|
baseUrl: "https://openrouter.ai/api/v1",
|
|
12048
12174
|
reasoning: true,
|
|
12049
12175
|
input: ["text", "image"],
|
|
12050
12176
|
cost: {
|
|
12051
|
-
input: 0.
|
|
12052
|
-
output:
|
|
12053
|
-
cacheRead: 0.
|
|
12177
|
+
input: 0.14,
|
|
12178
|
+
output: 0.28,
|
|
12179
|
+
cacheRead: 0.0028,
|
|
12054
12180
|
cacheWrite: 0,
|
|
12055
12181
|
},
|
|
12056
|
-
contextWindow:
|
|
12057
|
-
maxTokens:
|
|
12058
|
-
},
|
|
12059
|
-
"xiaomi/mimo-v2-pro": {
|
|
12060
|
-
id: "xiaomi/mimo-v2-pro",
|
|
12061
|
-
name: "Xiaomi: MiMo-V2-Pro",
|
|
12062
|
-
api: "openai-completions",
|
|
12063
|
-
provider: "openrouter",
|
|
12064
|
-
baseUrl: "https://openrouter.ai/api/v1",
|
|
12065
|
-
reasoning: true,
|
|
12066
|
-
input: ["text"],
|
|
12067
|
-
cost: {
|
|
12068
|
-
input: 1,
|
|
12069
|
-
output: 3,
|
|
12070
|
-
cacheRead: 0.19999999999999998,
|
|
12071
|
-
cacheWrite: 0,
|
|
12072
|
-
},
|
|
12073
|
-
contextWindow: 1048576,
|
|
12074
|
-
maxTokens: 131072,
|
|
12075
|
-
},
|
|
12076
|
-
"xiaomi/mimo-v2.5": {
|
|
12077
|
-
id: "xiaomi/mimo-v2.5",
|
|
12078
|
-
name: "Xiaomi: MiMo-V2.5",
|
|
12079
|
-
api: "openai-completions",
|
|
12080
|
-
provider: "openrouter",
|
|
12081
|
-
baseUrl: "https://openrouter.ai/api/v1",
|
|
12082
|
-
reasoning: true,
|
|
12083
|
-
input: ["text", "image"],
|
|
12084
|
-
cost: {
|
|
12085
|
-
input: 0.14,
|
|
12086
|
-
output: 0.28,
|
|
12087
|
-
cacheRead: 0.0028,
|
|
12088
|
-
cacheWrite: 0,
|
|
12089
|
-
},
|
|
12090
|
-
contextWindow: 1048576,
|
|
12091
|
-
maxTokens: 131072,
|
|
12182
|
+
contextWindow: 1048576,
|
|
12183
|
+
maxTokens: 131072,
|
|
12092
12184
|
},
|
|
12093
12185
|
"xiaomi/mimo-v2.5-pro": {
|
|
12094
12186
|
id: "xiaomi/mimo-v2.5-pro",
|
|
@@ -12151,8 +12243,8 @@ export const MODELS = {
|
|
|
12151
12243
|
input: ["text"],
|
|
12152
12244
|
cost: {
|
|
12153
12245
|
input: 0.125,
|
|
12154
|
-
output: 0.
|
|
12155
|
-
cacheRead: 0,
|
|
12246
|
+
output: 0.85,
|
|
12247
|
+
cacheRead: 0.06,
|
|
12156
12248
|
cacheWrite: 0,
|
|
12157
12249
|
},
|
|
12158
12250
|
contextWindow: 131072,
|
|
@@ -12275,7 +12367,7 @@ export const MODELS = {
|
|
|
12275
12367
|
cacheWrite: 0,
|
|
12276
12368
|
},
|
|
12277
12369
|
contextWindow: 202752,
|
|
12278
|
-
maxTokens:
|
|
12370
|
+
maxTokens: 16384,
|
|
12279
12371
|
},
|
|
12280
12372
|
"z-ai/glm-5-turbo": {
|
|
12281
12373
|
id: "z-ai/glm-5-turbo",
|
|
@@ -12309,7 +12401,7 @@ export const MODELS = {
|
|
|
12309
12401
|
cacheWrite: 0,
|
|
12310
12402
|
},
|
|
12311
12403
|
contextWindow: 202752,
|
|
12312
|
-
maxTokens:
|
|
12404
|
+
maxTokens: 131072,
|
|
12313
12405
|
},
|
|
12314
12406
|
"z-ai/glm-5v-turbo": {
|
|
12315
12407
|
id: "z-ai/glm-5v-turbo",
|
|
@@ -12422,13 +12514,13 @@ export const MODELS = {
|
|
|
12422
12514
|
reasoning: true,
|
|
12423
12515
|
input: ["text", "image"],
|
|
12424
12516
|
cost: {
|
|
12425
|
-
input: 0.
|
|
12426
|
-
output: 3.
|
|
12427
|
-
cacheRead: 0.
|
|
12517
|
+
input: 0.684,
|
|
12518
|
+
output: 3.42,
|
|
12519
|
+
cacheRead: 0.144,
|
|
12428
12520
|
cacheWrite: 0,
|
|
12429
12521
|
},
|
|
12430
12522
|
contextWindow: 262144,
|
|
12431
|
-
maxTokens:
|
|
12523
|
+
maxTokens: 262144,
|
|
12432
12524
|
},
|
|
12433
12525
|
"~openai/gpt-latest": {
|
|
12434
12526
|
id: "~openai/gpt-latest",
|
|
@@ -12826,20 +12918,20 @@ export const MODELS = {
|
|
|
12826
12918
|
},
|
|
12827
12919
|
"alibaba/qwen-3-235b": {
|
|
12828
12920
|
id: "alibaba/qwen-3-235b",
|
|
12829
|
-
name: "Qwen3 235B
|
|
12921
|
+
name: "Qwen3 235B A22B",
|
|
12830
12922
|
api: "anthropic-messages",
|
|
12831
12923
|
provider: "vercel-ai-gateway",
|
|
12832
12924
|
baseUrl: "https://ai-gateway.vercel.sh",
|
|
12833
|
-
reasoning:
|
|
12925
|
+
reasoning: true,
|
|
12834
12926
|
input: ["text"],
|
|
12835
12927
|
cost: {
|
|
12836
|
-
input: 0.
|
|
12837
|
-
output:
|
|
12838
|
-
cacheRead: 0
|
|
12928
|
+
input: 0.22,
|
|
12929
|
+
output: 0.88,
|
|
12930
|
+
cacheRead: 0,
|
|
12839
12931
|
cacheWrite: 0,
|
|
12840
12932
|
},
|
|
12841
|
-
contextWindow:
|
|
12842
|
-
maxTokens:
|
|
12933
|
+
contextWindow: 262144,
|
|
12934
|
+
maxTokens: 16384,
|
|
12843
12935
|
},
|
|
12844
12936
|
"alibaba/qwen-3-30b": {
|
|
12845
12937
|
id: "alibaba/qwen-3-30b",
|
|
@@ -12915,7 +13007,7 @@ export const MODELS = {
|
|
|
12915
13007
|
api: "anthropic-messages",
|
|
12916
13008
|
provider: "vercel-ai-gateway",
|
|
12917
13009
|
baseUrl: "https://ai-gateway.vercel.sh",
|
|
12918
|
-
reasoning:
|
|
13010
|
+
reasoning: true,
|
|
12919
13011
|
input: ["text"],
|
|
12920
13012
|
cost: {
|
|
12921
13013
|
input: 1.5,
|
|
@@ -12949,7 +13041,7 @@ export const MODELS = {
|
|
|
12949
13041
|
api: "anthropic-messages",
|
|
12950
13042
|
provider: "vercel-ai-gateway",
|
|
12951
13043
|
baseUrl: "https://ai-gateway.vercel.sh",
|
|
12952
|
-
reasoning:
|
|
13044
|
+
reasoning: true,
|
|
12953
13045
|
input: ["text"],
|
|
12954
13046
|
cost: {
|
|
12955
13047
|
input: 0.5,
|
|
@@ -13028,6 +13120,40 @@ export const MODELS = {
|
|
|
13028
13120
|
contextWindow: 256000,
|
|
13029
13121
|
maxTokens: 65536,
|
|
13030
13122
|
},
|
|
13123
|
+
"alibaba/qwen3-next-80b-a3b-instruct": {
|
|
13124
|
+
id: "alibaba/qwen3-next-80b-a3b-instruct",
|
|
13125
|
+
name: "Qwen3 Next 80B A3B Instruct",
|
|
13126
|
+
api: "anthropic-messages",
|
|
13127
|
+
provider: "vercel-ai-gateway",
|
|
13128
|
+
baseUrl: "https://ai-gateway.vercel.sh",
|
|
13129
|
+
reasoning: false,
|
|
13130
|
+
input: ["text"],
|
|
13131
|
+
cost: {
|
|
13132
|
+
input: 0.15,
|
|
13133
|
+
output: 1.2,
|
|
13134
|
+
cacheRead: 0,
|
|
13135
|
+
cacheWrite: 0,
|
|
13136
|
+
},
|
|
13137
|
+
contextWindow: 131072,
|
|
13138
|
+
maxTokens: 32768,
|
|
13139
|
+
},
|
|
13140
|
+
"alibaba/qwen3-next-80b-a3b-thinking": {
|
|
13141
|
+
id: "alibaba/qwen3-next-80b-a3b-thinking",
|
|
13142
|
+
name: "Qwen3 Next 80B A3B Thinking",
|
|
13143
|
+
api: "anthropic-messages",
|
|
13144
|
+
provider: "vercel-ai-gateway",
|
|
13145
|
+
baseUrl: "https://ai-gateway.vercel.sh",
|
|
13146
|
+
reasoning: true,
|
|
13147
|
+
input: ["text"],
|
|
13148
|
+
cost: {
|
|
13149
|
+
input: 0.15,
|
|
13150
|
+
output: 1.2,
|
|
13151
|
+
cacheRead: 0,
|
|
13152
|
+
cacheWrite: 0,
|
|
13153
|
+
},
|
|
13154
|
+
contextWindow: 131072,
|
|
13155
|
+
maxTokens: 32768,
|
|
13156
|
+
},
|
|
13031
13157
|
"alibaba/qwen3-vl-thinking": {
|
|
13032
13158
|
id: "alibaba/qwen3-vl-thinking",
|
|
13033
13159
|
name: "Qwen3 VL 235B A22B Thinking",
|
|
@@ -13130,6 +13256,23 @@ export const MODELS = {
|
|
|
13130
13256
|
contextWindow: 991000,
|
|
13131
13257
|
maxTokens: 64000,
|
|
13132
13258
|
},
|
|
13259
|
+
"alibaba/qwen3.7-plus": {
|
|
13260
|
+
id: "alibaba/qwen3.7-plus",
|
|
13261
|
+
name: "Qwen 3.7 Plus",
|
|
13262
|
+
api: "anthropic-messages",
|
|
13263
|
+
provider: "vercel-ai-gateway",
|
|
13264
|
+
baseUrl: "https://ai-gateway.vercel.sh",
|
|
13265
|
+
reasoning: true,
|
|
13266
|
+
input: ["text", "image"],
|
|
13267
|
+
cost: {
|
|
13268
|
+
input: 0.39999999999999997,
|
|
13269
|
+
output: 1.5999999999999999,
|
|
13270
|
+
cacheRead: 0.08,
|
|
13271
|
+
cacheWrite: 0.5,
|
|
13272
|
+
},
|
|
13273
|
+
contextWindow: 1000000,
|
|
13274
|
+
maxTokens: 64000,
|
|
13275
|
+
},
|
|
13133
13276
|
"anthropic/claude-3-haiku": {
|
|
13134
13277
|
id: "anthropic/claude-3-haiku",
|
|
13135
13278
|
name: "Claude 3 Haiku",
|
|
@@ -13257,7 +13400,26 @@ export const MODELS = {
|
|
|
13257
13400
|
api: "anthropic-messages",
|
|
13258
13401
|
provider: "vercel-ai-gateway",
|
|
13259
13402
|
baseUrl: "https://ai-gateway.vercel.sh",
|
|
13260
|
-
compat: { "forceAdaptiveThinking": true },
|
|
13403
|
+
compat: { "forceAdaptiveThinking": true, "supportsTemperature": false },
|
|
13404
|
+
reasoning: true,
|
|
13405
|
+
thinkingLevelMap: { "xhigh": "xhigh" },
|
|
13406
|
+
input: ["text", "image"],
|
|
13407
|
+
cost: {
|
|
13408
|
+
input: 5,
|
|
13409
|
+
output: 25,
|
|
13410
|
+
cacheRead: 0.5,
|
|
13411
|
+
cacheWrite: 6.25,
|
|
13412
|
+
},
|
|
13413
|
+
contextWindow: 1000000,
|
|
13414
|
+
maxTokens: 128000,
|
|
13415
|
+
},
|
|
13416
|
+
"anthropic/claude-opus-4.8": {
|
|
13417
|
+
id: "anthropic/claude-opus-4.8",
|
|
13418
|
+
name: "Claude Opus 4.8",
|
|
13419
|
+
api: "anthropic-messages",
|
|
13420
|
+
provider: "vercel-ai-gateway",
|
|
13421
|
+
baseUrl: "https://ai-gateway.vercel.sh",
|
|
13422
|
+
compat: { "forceAdaptiveThinking": true, "supportsTemperature": false },
|
|
13261
13423
|
reasoning: true,
|
|
13262
13424
|
thinkingLevelMap: { "xhigh": "xhigh" },
|
|
13263
13425
|
input: ["text", "image"],
|
|
@@ -13416,17 +13578,17 @@ export const MODELS = {
|
|
|
13416
13578
|
reasoning: false,
|
|
13417
13579
|
input: ["text"],
|
|
13418
13580
|
cost: {
|
|
13419
|
-
input: 0.
|
|
13420
|
-
output:
|
|
13421
|
-
cacheRead: 0,
|
|
13581
|
+
input: 0.27,
|
|
13582
|
+
output: 1.12,
|
|
13583
|
+
cacheRead: 0.135,
|
|
13422
13584
|
cacheWrite: 0,
|
|
13423
13585
|
},
|
|
13424
13586
|
contextWindow: 163840,
|
|
13425
|
-
maxTokens:
|
|
13587
|
+
maxTokens: 163840,
|
|
13426
13588
|
},
|
|
13427
13589
|
"deepseek/deepseek-v3.1": {
|
|
13428
13590
|
id: "deepseek/deepseek-v3.1",
|
|
13429
|
-
name: "DeepSeek
|
|
13591
|
+
name: "DeepSeek V3.1",
|
|
13430
13592
|
api: "anthropic-messages",
|
|
13431
13593
|
provider: "vercel-ai-gateway",
|
|
13432
13594
|
baseUrl: "https://ai-gateway.vercel.sh",
|
|
@@ -13464,8 +13626,8 @@ export const MODELS = {
|
|
|
13464
13626
|
api: "anthropic-messages",
|
|
13465
13627
|
provider: "vercel-ai-gateway",
|
|
13466
13628
|
baseUrl: "https://ai-gateway.vercel.sh",
|
|
13467
|
-
reasoning:
|
|
13468
|
-
input: ["text"],
|
|
13629
|
+
reasoning: true,
|
|
13630
|
+
input: ["text", "image"],
|
|
13469
13631
|
cost: {
|
|
13470
13632
|
input: 0.28,
|
|
13471
13633
|
output: 0.42,
|
|
@@ -13481,8 +13643,8 @@ export const MODELS = {
|
|
|
13481
13643
|
api: "anthropic-messages",
|
|
13482
13644
|
provider: "vercel-ai-gateway",
|
|
13483
13645
|
baseUrl: "https://ai-gateway.vercel.sh",
|
|
13484
|
-
reasoning:
|
|
13485
|
-
input: ["text"],
|
|
13646
|
+
reasoning: true,
|
|
13647
|
+
input: ["text", "image"],
|
|
13486
13648
|
cost: {
|
|
13487
13649
|
input: 0.62,
|
|
13488
13650
|
output: 1.85,
|
|
@@ -13499,7 +13661,7 @@ export const MODELS = {
|
|
|
13499
13661
|
provider: "vercel-ai-gateway",
|
|
13500
13662
|
baseUrl: "https://ai-gateway.vercel.sh",
|
|
13501
13663
|
reasoning: true,
|
|
13502
|
-
input: ["text"],
|
|
13664
|
+
input: ["text", "image"],
|
|
13503
13665
|
cost: {
|
|
13504
13666
|
input: 0.14,
|
|
13505
13667
|
output: 0.28,
|
|
@@ -13516,7 +13678,7 @@ export const MODELS = {
|
|
|
13516
13678
|
provider: "vercel-ai-gateway",
|
|
13517
13679
|
baseUrl: "https://ai-gateway.vercel.sh",
|
|
13518
13680
|
reasoning: true,
|
|
13519
|
-
input: ["text"],
|
|
13681
|
+
input: ["text", "image"],
|
|
13520
13682
|
cost: {
|
|
13521
13683
|
input: 0.435,
|
|
13522
13684
|
output: 0.87,
|
|
@@ -13719,12 +13881,12 @@ export const MODELS = {
|
|
|
13719
13881
|
api: "anthropic-messages",
|
|
13720
13882
|
provider: "vercel-ai-gateway",
|
|
13721
13883
|
baseUrl: "https://ai-gateway.vercel.sh",
|
|
13722
|
-
reasoning:
|
|
13884
|
+
reasoning: true,
|
|
13723
13885
|
input: ["text", "image"],
|
|
13724
13886
|
cost: {
|
|
13725
|
-
input: 0.
|
|
13726
|
-
output: 0.
|
|
13727
|
-
cacheRead: 0,
|
|
13887
|
+
input: 0.15,
|
|
13888
|
+
output: 0.6,
|
|
13889
|
+
cacheRead: 0.015,
|
|
13728
13890
|
cacheWrite: 0,
|
|
13729
13891
|
},
|
|
13730
13892
|
contextWindow: 262144,
|
|
@@ -14009,7 +14171,7 @@ export const MODELS = {
|
|
|
14009
14171
|
provider: "vercel-ai-gateway",
|
|
14010
14172
|
baseUrl: "https://ai-gateway.vercel.sh",
|
|
14011
14173
|
reasoning: true,
|
|
14012
|
-
input: ["text"],
|
|
14174
|
+
input: ["text", "image"],
|
|
14013
14175
|
cost: {
|
|
14014
14176
|
input: 0.6,
|
|
14015
14177
|
output: 2.4,
|
|
@@ -14053,6 +14215,23 @@ export const MODELS = {
|
|
|
14053
14215
|
contextWindow: 204800,
|
|
14054
14216
|
maxTokens: 131100,
|
|
14055
14217
|
},
|
|
14218
|
+
"minimax/minimax-m3": {
|
|
14219
|
+
id: "minimax/minimax-m3",
|
|
14220
|
+
name: "MiniMax M3",
|
|
14221
|
+
api: "anthropic-messages",
|
|
14222
|
+
provider: "vercel-ai-gateway",
|
|
14223
|
+
baseUrl: "https://ai-gateway.vercel.sh",
|
|
14224
|
+
reasoning: true,
|
|
14225
|
+
input: ["text", "image"],
|
|
14226
|
+
cost: {
|
|
14227
|
+
input: 0.3,
|
|
14228
|
+
output: 1.2,
|
|
14229
|
+
cacheRead: 0.06,
|
|
14230
|
+
cacheWrite: 0,
|
|
14231
|
+
},
|
|
14232
|
+
contextWindow: 1000000,
|
|
14233
|
+
maxTokens: 1000000,
|
|
14234
|
+
},
|
|
14056
14235
|
"mistral/codestral": {
|
|
14057
14236
|
id: "mistral/codestral",
|
|
14058
14237
|
name: "Mistral Codestral",
|
|
@@ -14189,6 +14368,23 @@ export const MODELS = {
|
|
|
14189
14368
|
contextWindow: 256000,
|
|
14190
14369
|
maxTokens: 256000,
|
|
14191
14370
|
},
|
|
14371
|
+
"mistral/mistral-nemo": {
|
|
14372
|
+
id: "mistral/mistral-nemo",
|
|
14373
|
+
name: "Mistral Nemo 12B",
|
|
14374
|
+
api: "anthropic-messages",
|
|
14375
|
+
provider: "vercel-ai-gateway",
|
|
14376
|
+
baseUrl: "https://ai-gateway.vercel.sh",
|
|
14377
|
+
reasoning: false,
|
|
14378
|
+
input: ["text"],
|
|
14379
|
+
cost: {
|
|
14380
|
+
input: 0.02,
|
|
14381
|
+
output: 0.04,
|
|
14382
|
+
cacheRead: 0,
|
|
14383
|
+
cacheWrite: 0,
|
|
14384
|
+
},
|
|
14385
|
+
contextWindow: 131072,
|
|
14386
|
+
maxTokens: 131072,
|
|
14387
|
+
},
|
|
14192
14388
|
"mistral/mistral-small": {
|
|
14193
14389
|
id: "mistral/mistral-small",
|
|
14194
14390
|
name: "Mistral Small",
|
|
@@ -14342,6 +14538,23 @@ export const MODELS = {
|
|
|
14342
14538
|
contextWindow: 262000,
|
|
14343
14539
|
maxTokens: 262000,
|
|
14344
14540
|
},
|
|
14541
|
+
"nvidia/nemotron-3-super-120b-a12b": {
|
|
14542
|
+
id: "nvidia/nemotron-3-super-120b-a12b",
|
|
14543
|
+
name: "NVIDIA Nemotron 3 Super 120B A12B",
|
|
14544
|
+
api: "anthropic-messages",
|
|
14545
|
+
provider: "vercel-ai-gateway",
|
|
14546
|
+
baseUrl: "https://ai-gateway.vercel.sh",
|
|
14547
|
+
reasoning: true,
|
|
14548
|
+
input: ["text"],
|
|
14549
|
+
cost: {
|
|
14550
|
+
input: 0.15,
|
|
14551
|
+
output: 0.65,
|
|
14552
|
+
cacheRead: 0,
|
|
14553
|
+
cacheWrite: 0,
|
|
14554
|
+
},
|
|
14555
|
+
contextWindow: 256000,
|
|
14556
|
+
maxTokens: 32000,
|
|
14557
|
+
},
|
|
14345
14558
|
"nvidia/nemotron-nano-12b-v2-vl": {
|
|
14346
14559
|
id: "nvidia/nemotron-nano-12b-v2-vl",
|
|
14347
14560
|
name: "Nvidia Nemotron Nano 12B V2 VL",
|
|
@@ -14519,7 +14732,7 @@ export const MODELS = {
|
|
|
14519
14732
|
provider: "vercel-ai-gateway",
|
|
14520
14733
|
baseUrl: "https://ai-gateway.vercel.sh",
|
|
14521
14734
|
reasoning: true,
|
|
14522
|
-
input: ["text"],
|
|
14735
|
+
input: ["text", "image"],
|
|
14523
14736
|
cost: {
|
|
14524
14737
|
input: 1.25,
|
|
14525
14738
|
output: 10,
|
|
@@ -14870,7 +15083,7 @@ export const MODELS = {
|
|
|
14870
15083
|
provider: "vercel-ai-gateway",
|
|
14871
15084
|
baseUrl: "https://ai-gateway.vercel.sh",
|
|
14872
15085
|
reasoning: true,
|
|
14873
|
-
thinkingLevelMap: { "xhigh": "xhigh" },
|
|
15086
|
+
thinkingLevelMap: { "xhigh": "xhigh", "off": null, "minimal": null, "low": null },
|
|
14874
15087
|
input: ["text", "image"],
|
|
14875
15088
|
cost: {
|
|
14876
15089
|
input: 30,
|
|
@@ -14881,6 +15094,23 @@ export const MODELS = {
|
|
|
14881
15094
|
contextWindow: 1000000,
|
|
14882
15095
|
maxTokens: 128000,
|
|
14883
15096
|
},
|
|
15097
|
+
"openai/gpt-oss-120b": {
|
|
15098
|
+
id: "openai/gpt-oss-120b",
|
|
15099
|
+
name: "GPT OSS 120B",
|
|
15100
|
+
api: "anthropic-messages",
|
|
15101
|
+
provider: "vercel-ai-gateway",
|
|
15102
|
+
baseUrl: "https://ai-gateway.vercel.sh",
|
|
15103
|
+
reasoning: true,
|
|
15104
|
+
input: ["text"],
|
|
15105
|
+
cost: {
|
|
15106
|
+
input: 0.35,
|
|
15107
|
+
output: 0.75,
|
|
15108
|
+
cacheRead: 0.25,
|
|
15109
|
+
cacheWrite: 0,
|
|
15110
|
+
},
|
|
15111
|
+
contextWindow: 131072,
|
|
15112
|
+
maxTokens: 131000,
|
|
15113
|
+
},
|
|
14884
15114
|
"openai/gpt-oss-20b": {
|
|
14885
15115
|
id: "openai/gpt-oss-20b",
|
|
14886
15116
|
name: "GPT OSS 20B",
|
|
@@ -15051,6 +15281,40 @@ export const MODELS = {
|
|
|
15051
15281
|
contextWindow: 200000,
|
|
15052
15282
|
maxTokens: 8000,
|
|
15053
15283
|
},
|
|
15284
|
+
"stepfun/step-3.5-flash": {
|
|
15285
|
+
id: "stepfun/step-3.5-flash",
|
|
15286
|
+
name: "StepFun 3.5 Flash",
|
|
15287
|
+
api: "anthropic-messages",
|
|
15288
|
+
provider: "vercel-ai-gateway",
|
|
15289
|
+
baseUrl: "https://ai-gateway.vercel.sh",
|
|
15290
|
+
reasoning: true,
|
|
15291
|
+
input: ["text"],
|
|
15292
|
+
cost: {
|
|
15293
|
+
input: 0.09,
|
|
15294
|
+
output: 0.3,
|
|
15295
|
+
cacheRead: 0,
|
|
15296
|
+
cacheWrite: 0.02,
|
|
15297
|
+
},
|
|
15298
|
+
contextWindow: 262114,
|
|
15299
|
+
maxTokens: 262114,
|
|
15300
|
+
},
|
|
15301
|
+
"stepfun/step-3.7-flash": {
|
|
15302
|
+
id: "stepfun/step-3.7-flash",
|
|
15303
|
+
name: "Step 3.7 Flash",
|
|
15304
|
+
api: "anthropic-messages",
|
|
15305
|
+
provider: "vercel-ai-gateway",
|
|
15306
|
+
baseUrl: "https://ai-gateway.vercel.sh",
|
|
15307
|
+
reasoning: true,
|
|
15308
|
+
input: ["text", "image"],
|
|
15309
|
+
cost: {
|
|
15310
|
+
input: 0.19999999999999998,
|
|
15311
|
+
output: 1.15,
|
|
15312
|
+
cacheRead: 0.04,
|
|
15313
|
+
cacheWrite: 0,
|
|
15314
|
+
},
|
|
15315
|
+
contextWindow: 256000,
|
|
15316
|
+
maxTokens: 256000,
|
|
15317
|
+
},
|
|
15054
15318
|
"xai/grok-4.1-fast-non-reasoning": {
|
|
15055
15319
|
id: "xai/grok-4.1-fast-non-reasoning",
|
|
15056
15320
|
name: "Grok 4.1 Fast Non-Reasoning",
|
|
@@ -15329,7 +15593,7 @@ export const MODELS = {
|
|
|
15329
15593
|
api: "anthropic-messages",
|
|
15330
15594
|
provider: "vercel-ai-gateway",
|
|
15331
15595
|
baseUrl: "https://ai-gateway.vercel.sh",
|
|
15332
|
-
reasoning:
|
|
15596
|
+
reasoning: true,
|
|
15333
15597
|
input: ["text", "image"],
|
|
15334
15598
|
cost: {
|
|
15335
15599
|
input: 0.6,
|
|
@@ -15483,7 +15747,7 @@ export const MODELS = {
|
|
|
15483
15747
|
provider: "vercel-ai-gateway",
|
|
15484
15748
|
baseUrl: "https://ai-gateway.vercel.sh",
|
|
15485
15749
|
reasoning: true,
|
|
15486
|
-
input: ["text"],
|
|
15750
|
+
input: ["text", "image"],
|
|
15487
15751
|
cost: {
|
|
15488
15752
|
input: 1.4,
|
|
15489
15753
|
output: 4.4,
|
|
@@ -15725,24 +15989,6 @@ export const MODELS = {
|
|
|
15725
15989
|
},
|
|
15726
15990
|
},
|
|
15727
15991
|
"xiaomi-token-plan-ams": {
|
|
15728
|
-
"mimo-v2-flash": {
|
|
15729
|
-
id: "mimo-v2-flash",
|
|
15730
|
-
name: "MiMo-V2-Flash",
|
|
15731
|
-
api: "openai-completions",
|
|
15732
|
-
provider: "xiaomi-token-plan-ams",
|
|
15733
|
-
baseUrl: "https://token-plan-ams.xiaomimimo.com/v1",
|
|
15734
|
-
compat: { "requiresReasoningContentOnAssistantMessages": true, "thinkingFormat": "deepseek" },
|
|
15735
|
-
reasoning: true,
|
|
15736
|
-
input: ["text"],
|
|
15737
|
-
cost: {
|
|
15738
|
-
input: 0.1,
|
|
15739
|
-
output: 0.3,
|
|
15740
|
-
cacheRead: 0.01,
|
|
15741
|
-
cacheWrite: 0,
|
|
15742
|
-
},
|
|
15743
|
-
contextWindow: 262144,
|
|
15744
|
-
maxTokens: 65536,
|
|
15745
|
-
},
|
|
15746
15992
|
"mimo-v2-omni": {
|
|
15747
15993
|
id: "mimo-v2-omni",
|
|
15748
15994
|
name: "MiMo-V2-Omni",
|
|
@@ -15817,24 +16063,6 @@ export const MODELS = {
|
|
|
15817
16063
|
},
|
|
15818
16064
|
},
|
|
15819
16065
|
"xiaomi-token-plan-cn": {
|
|
15820
|
-
"mimo-v2-flash": {
|
|
15821
|
-
id: "mimo-v2-flash",
|
|
15822
|
-
name: "MiMo-V2-Flash",
|
|
15823
|
-
api: "openai-completions",
|
|
15824
|
-
provider: "xiaomi-token-plan-cn",
|
|
15825
|
-
baseUrl: "https://token-plan-cn.xiaomimimo.com/v1",
|
|
15826
|
-
compat: { "requiresReasoningContentOnAssistantMessages": true, "thinkingFormat": "deepseek" },
|
|
15827
|
-
reasoning: true,
|
|
15828
|
-
input: ["text"],
|
|
15829
|
-
cost: {
|
|
15830
|
-
input: 0.1,
|
|
15831
|
-
output: 0.3,
|
|
15832
|
-
cacheRead: 0.01,
|
|
15833
|
-
cacheWrite: 0,
|
|
15834
|
-
},
|
|
15835
|
-
contextWindow: 262144,
|
|
15836
|
-
maxTokens: 65536,
|
|
15837
|
-
},
|
|
15838
16066
|
"mimo-v2-omni": {
|
|
15839
16067
|
id: "mimo-v2-omni",
|
|
15840
16068
|
name: "MiMo-V2-Omni",
|
|
@@ -15909,24 +16137,6 @@ export const MODELS = {
|
|
|
15909
16137
|
},
|
|
15910
16138
|
},
|
|
15911
16139
|
"xiaomi-token-plan-sgp": {
|
|
15912
|
-
"mimo-v2-flash": {
|
|
15913
|
-
id: "mimo-v2-flash",
|
|
15914
|
-
name: "MiMo-V2-Flash",
|
|
15915
|
-
api: "openai-completions",
|
|
15916
|
-
provider: "xiaomi-token-plan-sgp",
|
|
15917
|
-
baseUrl: "https://token-plan-sgp.xiaomimimo.com/v1",
|
|
15918
|
-
compat: { "requiresReasoningContentOnAssistantMessages": true, "thinkingFormat": "deepseek" },
|
|
15919
|
-
reasoning: true,
|
|
15920
|
-
input: ["text"],
|
|
15921
|
-
cost: {
|
|
15922
|
-
input: 0.1,
|
|
15923
|
-
output: 0.3,
|
|
15924
|
-
cacheRead: 0.01,
|
|
15925
|
-
cacheWrite: 0,
|
|
15926
|
-
},
|
|
15927
|
-
contextWindow: 262144,
|
|
15928
|
-
maxTokens: 65536,
|
|
15929
|
-
},
|
|
15930
16140
|
"mimo-v2-omni": {
|
|
15931
16141
|
id: "mimo-v2-omni",
|
|
15932
16142
|
name: "MiMo-V2-Omni",
|