@psnext/slingcli 2.4.20260601-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/credential-provider-http/node_modules/@smithy/node-http-handler/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 +1 -1
- package/node_modules/@aws-sdk/nested-clients/node_modules/@smithy/node-http-handler/package.json +4 -4
- 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 +197 -190
- 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/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/package.json +6 -6
- package/slingshot/index.js +231 -230
|
@@ -164,6 +164,7 @@ export const MODELS = {
|
|
|
164
164
|
provider: "amazon-bedrock",
|
|
165
165
|
baseUrl: "https://bedrock-runtime.us-east-1.amazonaws.com",
|
|
166
166
|
reasoning: true,
|
|
167
|
+
thinkingLevelMap: { "xhigh": "xhigh" },
|
|
167
168
|
input: ["text", "image"],
|
|
168
169
|
cost: {
|
|
169
170
|
input: 5,
|
|
@@ -250,6 +251,7 @@ export const MODELS = {
|
|
|
250
251
|
provider: "amazon-bedrock",
|
|
251
252
|
baseUrl: "https://bedrock-runtime.us-east-1.amazonaws.com",
|
|
252
253
|
reasoning: true,
|
|
254
|
+
thinkingLevelMap: { "xhigh": "xhigh" },
|
|
253
255
|
input: ["text", "image"],
|
|
254
256
|
cost: {
|
|
255
257
|
input: 5,
|
|
@@ -422,6 +424,7 @@ export const MODELS = {
|
|
|
422
424
|
provider: "amazon-bedrock",
|
|
423
425
|
baseUrl: "https://bedrock-runtime.eu-central-1.amazonaws.com",
|
|
424
426
|
reasoning: true,
|
|
427
|
+
thinkingLevelMap: { "xhigh": "xhigh" },
|
|
425
428
|
input: ["text", "image"],
|
|
426
429
|
cost: {
|
|
427
430
|
input: 5.5,
|
|
@@ -543,6 +546,7 @@ export const MODELS = {
|
|
|
543
546
|
provider: "amazon-bedrock",
|
|
544
547
|
baseUrl: "https://bedrock-runtime.us-east-1.amazonaws.com",
|
|
545
548
|
reasoning: true,
|
|
549
|
+
thinkingLevelMap: { "xhigh": "xhigh" },
|
|
546
550
|
input: ["text", "image"],
|
|
547
551
|
cost: {
|
|
548
552
|
input: 5,
|
|
@@ -646,6 +650,7 @@ export const MODELS = {
|
|
|
646
650
|
provider: "amazon-bedrock",
|
|
647
651
|
baseUrl: "https://bedrock-runtime.us-east-1.amazonaws.com",
|
|
648
652
|
reasoning: true,
|
|
653
|
+
thinkingLevelMap: { "xhigh": "xhigh" },
|
|
649
654
|
input: ["text", "image"],
|
|
650
655
|
cost: {
|
|
651
656
|
input: 5,
|
|
@@ -1362,6 +1367,7 @@ export const MODELS = {
|
|
|
1362
1367
|
provider: "amazon-bedrock",
|
|
1363
1368
|
baseUrl: "https://bedrock-runtime.us-east-1.amazonaws.com",
|
|
1364
1369
|
reasoning: true,
|
|
1370
|
+
thinkingLevelMap: { "xhigh": "xhigh" },
|
|
1365
1371
|
input: ["text", "image"],
|
|
1366
1372
|
cost: {
|
|
1367
1373
|
input: 5,
|
|
@@ -1841,7 +1847,7 @@ export const MODELS = {
|
|
|
1841
1847
|
api: "anthropic-messages",
|
|
1842
1848
|
provider: "anthropic",
|
|
1843
1849
|
baseUrl: "https://api.anthropic.com",
|
|
1844
|
-
compat: { "forceAdaptiveThinking": true },
|
|
1850
|
+
compat: { "forceAdaptiveThinking": true, "supportsTemperature": false },
|
|
1845
1851
|
reasoning: true,
|
|
1846
1852
|
thinkingLevelMap: { "xhigh": "xhigh" },
|
|
1847
1853
|
input: ["text", "image"],
|
|
@@ -1860,7 +1866,9 @@ export const MODELS = {
|
|
|
1860
1866
|
api: "anthropic-messages",
|
|
1861
1867
|
provider: "anthropic",
|
|
1862
1868
|
baseUrl: "https://api.anthropic.com",
|
|
1869
|
+
compat: { "forceAdaptiveThinking": true, "supportsTemperature": false },
|
|
1863
1870
|
reasoning: true,
|
|
1871
|
+
thinkingLevelMap: { "xhigh": "xhigh" },
|
|
1864
1872
|
input: ["text", "image"],
|
|
1865
1873
|
cost: {
|
|
1866
1874
|
input: 5,
|
|
@@ -2550,7 +2558,7 @@ export const MODELS = {
|
|
|
2550
2558
|
provider: "azure-openai-responses",
|
|
2551
2559
|
baseUrl: "",
|
|
2552
2560
|
reasoning: true,
|
|
2553
|
-
thinkingLevelMap: { "off": null, "xhigh": "xhigh" },
|
|
2561
|
+
thinkingLevelMap: { "off": null, "xhigh": "xhigh", "minimal": null, "low": null },
|
|
2554
2562
|
input: ["text", "image"],
|
|
2555
2563
|
cost: {
|
|
2556
2564
|
input: 30,
|
|
@@ -2947,7 +2955,7 @@ export const MODELS = {
|
|
|
2947
2955
|
api: "anthropic-messages",
|
|
2948
2956
|
provider: "cloudflare-ai-gateway",
|
|
2949
2957
|
baseUrl: "https://gateway.ai.cloudflare.com/v1/{CLOUDFLARE_ACCOUNT_ID}/{CLOUDFLARE_GATEWAY_ID}/anthropic",
|
|
2950
|
-
compat: { "forceAdaptiveThinking": true },
|
|
2958
|
+
compat: { "forceAdaptiveThinking": true, "supportsTemperature": false },
|
|
2951
2959
|
reasoning: true,
|
|
2952
2960
|
thinkingLevelMap: { "xhigh": "xhigh" },
|
|
2953
2961
|
input: ["text", "image"],
|
|
@@ -2966,7 +2974,9 @@ export const MODELS = {
|
|
|
2966
2974
|
api: "anthropic-messages",
|
|
2967
2975
|
provider: "cloudflare-ai-gateway",
|
|
2968
2976
|
baseUrl: "https://gateway.ai.cloudflare.com/v1/{CLOUDFLARE_ACCOUNT_ID}/{CLOUDFLARE_GATEWAY_ID}/anthropic",
|
|
2977
|
+
compat: { "forceAdaptiveThinking": true, "supportsTemperature": false },
|
|
2969
2978
|
reasoning: true,
|
|
2979
|
+
thinkingLevelMap: { "xhigh": "xhigh" },
|
|
2970
2980
|
input: ["text", "image"],
|
|
2971
2981
|
cost: {
|
|
2972
2982
|
input: 5,
|
|
@@ -3842,7 +3852,7 @@ export const MODELS = {
|
|
|
3842
3852
|
"github-copilot": {
|
|
3843
3853
|
"claude-haiku-4.5": {
|
|
3844
3854
|
id: "claude-haiku-4.5",
|
|
3845
|
-
name: "Claude Haiku 4.5",
|
|
3855
|
+
name: "Claude Haiku 4.5 (latest)",
|
|
3846
3856
|
api: "anthropic-messages",
|
|
3847
3857
|
provider: "github-copilot",
|
|
3848
3858
|
baseUrl: "https://api.individual.githubcopilot.com",
|
|
@@ -3851,17 +3861,17 @@ export const MODELS = {
|
|
|
3851
3861
|
reasoning: true,
|
|
3852
3862
|
input: ["text", "image"],
|
|
3853
3863
|
cost: {
|
|
3854
|
-
input:
|
|
3855
|
-
output:
|
|
3856
|
-
cacheRead: 0,
|
|
3857
|
-
cacheWrite:
|
|
3864
|
+
input: 1,
|
|
3865
|
+
output: 5,
|
|
3866
|
+
cacheRead: 0.1,
|
|
3867
|
+
cacheWrite: 1.25,
|
|
3858
3868
|
},
|
|
3859
3869
|
contextWindow: 200000,
|
|
3860
3870
|
maxTokens: 64000,
|
|
3861
3871
|
},
|
|
3862
3872
|
"claude-opus-4.5": {
|
|
3863
3873
|
id: "claude-opus-4.5",
|
|
3864
|
-
name: "Claude Opus 4.5",
|
|
3874
|
+
name: "Claude Opus 4.5 (latest)",
|
|
3865
3875
|
api: "anthropic-messages",
|
|
3866
3876
|
provider: "github-copilot",
|
|
3867
3877
|
baseUrl: "https://api.individual.githubcopilot.com",
|
|
@@ -3869,10 +3879,10 @@ export const MODELS = {
|
|
|
3869
3879
|
reasoning: true,
|
|
3870
3880
|
input: ["text", "image"],
|
|
3871
3881
|
cost: {
|
|
3872
|
-
input:
|
|
3873
|
-
output:
|
|
3874
|
-
cacheRead: 0,
|
|
3875
|
-
cacheWrite:
|
|
3882
|
+
input: 5,
|
|
3883
|
+
output: 25,
|
|
3884
|
+
cacheRead: 0.5,
|
|
3885
|
+
cacheWrite: 6.25,
|
|
3876
3886
|
},
|
|
3877
3887
|
contextWindow: 200000,
|
|
3878
3888
|
maxTokens: 32000,
|
|
@@ -3889,10 +3899,10 @@ export const MODELS = {
|
|
|
3889
3899
|
thinkingLevelMap: { "xhigh": "max" },
|
|
3890
3900
|
input: ["text", "image"],
|
|
3891
3901
|
cost: {
|
|
3892
|
-
input:
|
|
3893
|
-
output:
|
|
3894
|
-
cacheRead: 0,
|
|
3895
|
-
cacheWrite:
|
|
3902
|
+
input: 5,
|
|
3903
|
+
output: 25,
|
|
3904
|
+
cacheRead: 0.5,
|
|
3905
|
+
cacheWrite: 6.25,
|
|
3896
3906
|
},
|
|
3897
3907
|
contextWindow: 1000000,
|
|
3898
3908
|
maxTokens: 32000,
|
|
@@ -3904,15 +3914,15 @@ export const MODELS = {
|
|
|
3904
3914
|
provider: "github-copilot",
|
|
3905
3915
|
baseUrl: "https://api.individual.githubcopilot.com",
|
|
3906
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" },
|
|
3907
|
-
compat: { "forceAdaptiveThinking": true },
|
|
3917
|
+
compat: { "forceAdaptiveThinking": true, "supportsTemperature": false },
|
|
3908
3918
|
reasoning: true,
|
|
3909
3919
|
thinkingLevelMap: { "xhigh": "xhigh" },
|
|
3910
3920
|
input: ["text", "image"],
|
|
3911
3921
|
cost: {
|
|
3912
|
-
input:
|
|
3913
|
-
output:
|
|
3914
|
-
cacheRead: 0,
|
|
3915
|
-
cacheWrite:
|
|
3922
|
+
input: 5,
|
|
3923
|
+
output: 25,
|
|
3924
|
+
cacheRead: 0.5,
|
|
3925
|
+
cacheWrite: 6.25,
|
|
3916
3926
|
},
|
|
3917
3927
|
contextWindow: 200000,
|
|
3918
3928
|
maxTokens: 32000,
|
|
@@ -3924,20 +3934,41 @@ export const MODELS = {
|
|
|
3924
3934
|
provider: "github-copilot",
|
|
3925
3935
|
baseUrl: "https://api.individual.githubcopilot.com",
|
|
3926
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 },
|
|
3927
3938
|
reasoning: true,
|
|
3939
|
+
thinkingLevelMap: { "xhigh": "xhigh" },
|
|
3928
3940
|
input: ["text", "image"],
|
|
3929
3941
|
cost: {
|
|
3930
|
-
input:
|
|
3931
|
-
output:
|
|
3932
|
-
cacheRead: 0,
|
|
3933
|
-
cacheWrite:
|
|
3942
|
+
input: 5,
|
|
3943
|
+
output: 25,
|
|
3944
|
+
cacheRead: 0.5,
|
|
3945
|
+
cacheWrite: 6.25,
|
|
3934
3946
|
},
|
|
3935
3947
|
contextWindow: 200000,
|
|
3936
3948
|
maxTokens: 64000,
|
|
3937
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
|
+
},
|
|
3938
3969
|
"claude-sonnet-4.5": {
|
|
3939
3970
|
id: "claude-sonnet-4.5",
|
|
3940
|
-
name: "Claude Sonnet 4.5",
|
|
3971
|
+
name: "Claude Sonnet 4.5 (latest)",
|
|
3941
3972
|
api: "anthropic-messages",
|
|
3942
3973
|
provider: "github-copilot",
|
|
3943
3974
|
baseUrl: "https://api.individual.githubcopilot.com",
|
|
@@ -3946,10 +3977,10 @@ export const MODELS = {
|
|
|
3946
3977
|
reasoning: true,
|
|
3947
3978
|
input: ["text", "image"],
|
|
3948
3979
|
cost: {
|
|
3949
|
-
input:
|
|
3950
|
-
output:
|
|
3951
|
-
cacheRead: 0,
|
|
3952
|
-
cacheWrite:
|
|
3980
|
+
input: 3,
|
|
3981
|
+
output: 15,
|
|
3982
|
+
cacheRead: 0.3,
|
|
3983
|
+
cacheWrite: 3.75,
|
|
3953
3984
|
},
|
|
3954
3985
|
contextWindow: 200000,
|
|
3955
3986
|
maxTokens: 32000,
|
|
@@ -3965,10 +3996,10 @@ export const MODELS = {
|
|
|
3965
3996
|
reasoning: true,
|
|
3966
3997
|
input: ["text", "image"],
|
|
3967
3998
|
cost: {
|
|
3968
|
-
input:
|
|
3969
|
-
output:
|
|
3970
|
-
cacheRead: 0,
|
|
3971
|
-
cacheWrite:
|
|
3999
|
+
input: 3,
|
|
4000
|
+
output: 15,
|
|
4001
|
+
cacheRead: 0.3,
|
|
4002
|
+
cacheWrite: 3.75,
|
|
3972
4003
|
},
|
|
3973
4004
|
contextWindow: 1000000,
|
|
3974
4005
|
maxTokens: 32000,
|
|
@@ -3981,12 +4012,12 @@ export const MODELS = {
|
|
|
3981
4012
|
baseUrl: "https://api.individual.githubcopilot.com",
|
|
3982
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" },
|
|
3983
4014
|
compat: { "supportsStore": false, "supportsDeveloperRole": false, "supportsReasoningEffort": false },
|
|
3984
|
-
reasoning:
|
|
4015
|
+
reasoning: true,
|
|
3985
4016
|
input: ["text", "image"],
|
|
3986
4017
|
cost: {
|
|
3987
|
-
input:
|
|
3988
|
-
output:
|
|
3989
|
-
cacheRead: 0,
|
|
4018
|
+
input: 1.25,
|
|
4019
|
+
output: 10,
|
|
4020
|
+
cacheRead: 0.125,
|
|
3990
4021
|
cacheWrite: 0,
|
|
3991
4022
|
},
|
|
3992
4023
|
contextWindow: 128000,
|
|
@@ -3994,7 +4025,7 @@ export const MODELS = {
|
|
|
3994
4025
|
},
|
|
3995
4026
|
"gemini-3-flash-preview": {
|
|
3996
4027
|
id: "gemini-3-flash-preview",
|
|
3997
|
-
name: "Gemini 3 Flash",
|
|
4028
|
+
name: "Gemini 3 Flash Preview",
|
|
3998
4029
|
api: "openai-completions",
|
|
3999
4030
|
provider: "github-copilot",
|
|
4000
4031
|
baseUrl: "https://api.individual.githubcopilot.com",
|
|
@@ -4003,9 +4034,9 @@ export const MODELS = {
|
|
|
4003
4034
|
reasoning: true,
|
|
4004
4035
|
input: ["text", "image"],
|
|
4005
4036
|
cost: {
|
|
4006
|
-
input: 0,
|
|
4007
|
-
output:
|
|
4008
|
-
cacheRead: 0,
|
|
4037
|
+
input: 0.5,
|
|
4038
|
+
output: 3,
|
|
4039
|
+
cacheRead: 0.05,
|
|
4009
4040
|
cacheWrite: 0,
|
|
4010
4041
|
},
|
|
4011
4042
|
contextWindow: 128000,
|
|
@@ -4022,9 +4053,9 @@ export const MODELS = {
|
|
|
4022
4053
|
reasoning: true,
|
|
4023
4054
|
input: ["text", "image"],
|
|
4024
4055
|
cost: {
|
|
4025
|
-
input:
|
|
4026
|
-
output:
|
|
4027
|
-
cacheRead: 0,
|
|
4056
|
+
input: 2,
|
|
4057
|
+
output: 12,
|
|
4058
|
+
cacheRead: 0.2,
|
|
4028
4059
|
cacheWrite: 0,
|
|
4029
4060
|
},
|
|
4030
4061
|
contextWindow: 200000,
|
|
@@ -4041,9 +4072,9 @@ export const MODELS = {
|
|
|
4041
4072
|
reasoning: true,
|
|
4042
4073
|
input: ["text", "image"],
|
|
4043
4074
|
cost: {
|
|
4044
|
-
input:
|
|
4045
|
-
output:
|
|
4046
|
-
cacheRead: 0,
|
|
4075
|
+
input: 1.5,
|
|
4076
|
+
output: 9,
|
|
4077
|
+
cacheRead: 0.15,
|
|
4047
4078
|
cacheWrite: 0,
|
|
4048
4079
|
},
|
|
4049
4080
|
contextWindow: 200000,
|
|
@@ -4060,36 +4091,17 @@ export const MODELS = {
|
|
|
4060
4091
|
reasoning: false,
|
|
4061
4092
|
input: ["text", "image"],
|
|
4062
4093
|
cost: {
|
|
4063
|
-
input:
|
|
4064
|
-
output:
|
|
4065
|
-
cacheRead: 0,
|
|
4094
|
+
input: 2,
|
|
4095
|
+
output: 8,
|
|
4096
|
+
cacheRead: 0.5,
|
|
4066
4097
|
cacheWrite: 0,
|
|
4067
4098
|
},
|
|
4068
4099
|
contextWindow: 128000,
|
|
4069
4100
|
maxTokens: 16384,
|
|
4070
4101
|
},
|
|
4071
|
-
"gpt-4o": {
|
|
4072
|
-
id: "gpt-4o",
|
|
4073
|
-
name: "GPT-4o",
|
|
4074
|
-
api: "openai-completions",
|
|
4075
|
-
provider: "github-copilot",
|
|
4076
|
-
baseUrl: "https://api.individual.githubcopilot.com",
|
|
4077
|
-
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" },
|
|
4078
|
-
compat: { "supportsStore": false, "supportsDeveloperRole": false, "supportsReasoningEffort": false },
|
|
4079
|
-
reasoning: false,
|
|
4080
|
-
input: ["text", "image"],
|
|
4081
|
-
cost: {
|
|
4082
|
-
input: 0,
|
|
4083
|
-
output: 0,
|
|
4084
|
-
cacheRead: 0,
|
|
4085
|
-
cacheWrite: 0,
|
|
4086
|
-
},
|
|
4087
|
-
contextWindow: 128000,
|
|
4088
|
-
maxTokens: 4096,
|
|
4089
|
-
},
|
|
4090
4102
|
"gpt-5-mini": {
|
|
4091
4103
|
id: "gpt-5-mini",
|
|
4092
|
-
name: "GPT-5
|
|
4104
|
+
name: "GPT-5 Mini",
|
|
4093
4105
|
api: "openai-responses",
|
|
4094
4106
|
provider: "github-copilot",
|
|
4095
4107
|
baseUrl: "https://api.individual.githubcopilot.com",
|
|
@@ -4098,9 +4110,9 @@ export const MODELS = {
|
|
|
4098
4110
|
thinkingLevelMap: { "off": null, "minimal": "low" },
|
|
4099
4111
|
input: ["text", "image"],
|
|
4100
4112
|
cost: {
|
|
4101
|
-
input: 0,
|
|
4102
|
-
output:
|
|
4103
|
-
cacheRead: 0,
|
|
4113
|
+
input: 0.25,
|
|
4114
|
+
output: 2,
|
|
4115
|
+
cacheRead: 0.025,
|
|
4104
4116
|
cacheWrite: 0,
|
|
4105
4117
|
},
|
|
4106
4118
|
contextWindow: 264000,
|
|
@@ -4117,9 +4129,9 @@ export const MODELS = {
|
|
|
4117
4129
|
thinkingLevelMap: { "off": null, "minimal": "low", "xhigh": "xhigh" },
|
|
4118
4130
|
input: ["text", "image"],
|
|
4119
4131
|
cost: {
|
|
4120
|
-
input:
|
|
4121
|
-
output:
|
|
4122
|
-
cacheRead: 0,
|
|
4132
|
+
input: 1.75,
|
|
4133
|
+
output: 14,
|
|
4134
|
+
cacheRead: 0.175,
|
|
4123
4135
|
cacheWrite: 0,
|
|
4124
4136
|
},
|
|
4125
4137
|
contextWindow: 400000,
|
|
@@ -4127,7 +4139,7 @@ export const MODELS = {
|
|
|
4127
4139
|
},
|
|
4128
4140
|
"gpt-5.2-codex": {
|
|
4129
4141
|
id: "gpt-5.2-codex",
|
|
4130
|
-
name: "GPT-5.2
|
|
4142
|
+
name: "GPT-5.2 Codex",
|
|
4131
4143
|
api: "openai-responses",
|
|
4132
4144
|
provider: "github-copilot",
|
|
4133
4145
|
baseUrl: "https://api.individual.githubcopilot.com",
|
|
@@ -4136,9 +4148,9 @@ export const MODELS = {
|
|
|
4136
4148
|
thinkingLevelMap: { "off": null, "minimal": "low", "xhigh": "xhigh" },
|
|
4137
4149
|
input: ["text", "image"],
|
|
4138
4150
|
cost: {
|
|
4139
|
-
input:
|
|
4140
|
-
output:
|
|
4141
|
-
cacheRead: 0,
|
|
4151
|
+
input: 1.75,
|
|
4152
|
+
output: 14,
|
|
4153
|
+
cacheRead: 0.175,
|
|
4142
4154
|
cacheWrite: 0,
|
|
4143
4155
|
},
|
|
4144
4156
|
contextWindow: 400000,
|
|
@@ -4146,7 +4158,7 @@ export const MODELS = {
|
|
|
4146
4158
|
},
|
|
4147
4159
|
"gpt-5.3-codex": {
|
|
4148
4160
|
id: "gpt-5.3-codex",
|
|
4149
|
-
name: "GPT-5.3
|
|
4161
|
+
name: "GPT-5.3 Codex",
|
|
4150
4162
|
api: "openai-responses",
|
|
4151
4163
|
provider: "github-copilot",
|
|
4152
4164
|
baseUrl: "https://api.individual.githubcopilot.com",
|
|
@@ -4155,9 +4167,9 @@ export const MODELS = {
|
|
|
4155
4167
|
thinkingLevelMap: { "off": null, "minimal": "low", "xhigh": "xhigh" },
|
|
4156
4168
|
input: ["text", "image"],
|
|
4157
4169
|
cost: {
|
|
4158
|
-
input:
|
|
4159
|
-
output:
|
|
4160
|
-
cacheRead: 0,
|
|
4170
|
+
input: 1.75,
|
|
4171
|
+
output: 14,
|
|
4172
|
+
cacheRead: 0.175,
|
|
4161
4173
|
cacheWrite: 0,
|
|
4162
4174
|
},
|
|
4163
4175
|
contextWindow: 400000,
|
|
@@ -4174,9 +4186,9 @@ export const MODELS = {
|
|
|
4174
4186
|
thinkingLevelMap: { "off": null, "minimal": "low", "xhigh": "xhigh" },
|
|
4175
4187
|
input: ["text", "image"],
|
|
4176
4188
|
cost: {
|
|
4177
|
-
input:
|
|
4178
|
-
output:
|
|
4179
|
-
cacheRead: 0,
|
|
4189
|
+
input: 2.5,
|
|
4190
|
+
output: 15,
|
|
4191
|
+
cacheRead: 0.25,
|
|
4180
4192
|
cacheWrite: 0,
|
|
4181
4193
|
},
|
|
4182
4194
|
contextWindow: 400000,
|
|
@@ -4184,7 +4196,7 @@ export const MODELS = {
|
|
|
4184
4196
|
},
|
|
4185
4197
|
"gpt-5.4-mini": {
|
|
4186
4198
|
id: "gpt-5.4-mini",
|
|
4187
|
-
name: "GPT-5.4
|
|
4199
|
+
name: "GPT-5.4 mini",
|
|
4188
4200
|
api: "openai-responses",
|
|
4189
4201
|
provider: "github-copilot",
|
|
4190
4202
|
baseUrl: "https://api.individual.githubcopilot.com",
|
|
@@ -4193,9 +4205,28 @@ export const MODELS = {
|
|
|
4193
4205
|
thinkingLevelMap: { "off": null, "minimal": "low", "xhigh": "xhigh" },
|
|
4194
4206
|
input: ["text", "image"],
|
|
4195
4207
|
cost: {
|
|
4196
|
-
input: 0,
|
|
4197
|
-
output:
|
|
4198
|
-
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,
|
|
4199
4230
|
cacheWrite: 0,
|
|
4200
4231
|
},
|
|
4201
4232
|
contextWindow: 400000,
|
|
@@ -4212,32 +4243,32 @@ export const MODELS = {
|
|
|
4212
4243
|
thinkingLevelMap: { "off": null, "minimal": "low", "xhigh": "xhigh" },
|
|
4213
4244
|
input: ["text", "image"],
|
|
4214
4245
|
cost: {
|
|
4215
|
-
input:
|
|
4216
|
-
output:
|
|
4217
|
-
cacheRead: 0,
|
|
4246
|
+
input: 5,
|
|
4247
|
+
output: 30,
|
|
4248
|
+
cacheRead: 0.5,
|
|
4218
4249
|
cacheWrite: 0,
|
|
4219
4250
|
},
|
|
4220
4251
|
contextWindow: 400000,
|
|
4221
4252
|
maxTokens: 128000,
|
|
4222
4253
|
},
|
|
4223
|
-
"
|
|
4224
|
-
id: "
|
|
4225
|
-
name: "
|
|
4254
|
+
"raptor-mini": {
|
|
4255
|
+
id: "raptor-mini",
|
|
4256
|
+
name: "Raptor mini",
|
|
4226
4257
|
api: "openai-completions",
|
|
4227
4258
|
provider: "github-copilot",
|
|
4228
4259
|
baseUrl: "https://api.individual.githubcopilot.com",
|
|
4229
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" },
|
|
4230
4261
|
compat: { "supportsStore": false, "supportsDeveloperRole": false, "supportsReasoningEffort": false },
|
|
4231
4262
|
reasoning: true,
|
|
4232
|
-
input: ["text"],
|
|
4263
|
+
input: ["text", "image"],
|
|
4233
4264
|
cost: {
|
|
4234
|
-
input: 0,
|
|
4235
|
-
output:
|
|
4236
|
-
cacheRead: 0,
|
|
4265
|
+
input: 0.25,
|
|
4266
|
+
output: 2,
|
|
4267
|
+
cacheRead: 0.025,
|
|
4237
4268
|
cacheWrite: 0,
|
|
4238
4269
|
},
|
|
4239
|
-
contextWindow:
|
|
4240
|
-
maxTokens:
|
|
4270
|
+
contextWindow: 400000,
|
|
4271
|
+
maxTokens: 128000,
|
|
4241
4272
|
},
|
|
4242
4273
|
},
|
|
4243
4274
|
"google": {
|
|
@@ -6875,7 +6906,7 @@ export const MODELS = {
|
|
|
6875
6906
|
provider: "openai",
|
|
6876
6907
|
baseUrl: "https://api.openai.com/v1",
|
|
6877
6908
|
reasoning: true,
|
|
6878
|
-
thinkingLevelMap: { "off": "none", "xhigh": "xhigh" },
|
|
6909
|
+
thinkingLevelMap: { "off": "none", "xhigh": "xhigh", "minimal": null },
|
|
6879
6910
|
input: ["text", "image"],
|
|
6880
6911
|
cost: {
|
|
6881
6912
|
input: 5,
|
|
@@ -6893,7 +6924,7 @@ export const MODELS = {
|
|
|
6893
6924
|
provider: "openai",
|
|
6894
6925
|
baseUrl: "https://api.openai.com/v1",
|
|
6895
6926
|
reasoning: true,
|
|
6896
|
-
thinkingLevelMap: { "off": null, "xhigh": "xhigh" },
|
|
6927
|
+
thinkingLevelMap: { "off": null, "xhigh": "xhigh", "minimal": null, "low": null },
|
|
6897
6928
|
input: ["text", "image"],
|
|
6898
6929
|
cost: {
|
|
6899
6930
|
input: 30,
|
|
@@ -7245,7 +7276,7 @@ export const MODELS = {
|
|
|
7245
7276
|
api: "anthropic-messages",
|
|
7246
7277
|
provider: "opencode",
|
|
7247
7278
|
baseUrl: "https://opencode.ai/zen",
|
|
7248
|
-
compat: { "forceAdaptiveThinking": true },
|
|
7279
|
+
compat: { "forceAdaptiveThinking": true, "supportsTemperature": false },
|
|
7249
7280
|
reasoning: true,
|
|
7250
7281
|
thinkingLevelMap: { "xhigh": "xhigh" },
|
|
7251
7282
|
input: ["text", "image"],
|
|
@@ -7264,7 +7295,9 @@ export const MODELS = {
|
|
|
7264
7295
|
api: "anthropic-messages",
|
|
7265
7296
|
provider: "opencode",
|
|
7266
7297
|
baseUrl: "https://opencode.ai/zen",
|
|
7298
|
+
compat: { "forceAdaptiveThinking": true, "supportsTemperature": false },
|
|
7267
7299
|
reasoning: true,
|
|
7300
|
+
thinkingLevelMap: { "xhigh": "xhigh" },
|
|
7268
7301
|
input: ["text", "image"],
|
|
7269
7302
|
cost: {
|
|
7270
7303
|
input: 5,
|
|
@@ -7730,7 +7763,7 @@ export const MODELS = {
|
|
|
7730
7763
|
provider: "opencode",
|
|
7731
7764
|
baseUrl: "https://opencode.ai/zen/v1",
|
|
7732
7765
|
reasoning: true,
|
|
7733
|
-
thinkingLevelMap: { "off": null, "xhigh": "xhigh" },
|
|
7766
|
+
thinkingLevelMap: { "off": null, "xhigh": "xhigh", "minimal": null, "low": null },
|
|
7734
7767
|
input: ["text", "image"],
|
|
7735
7768
|
cost: {
|
|
7736
7769
|
input: 30,
|
|
@@ -7747,7 +7780,9 @@ export const MODELS = {
|
|
|
7747
7780
|
api: "openai-completions",
|
|
7748
7781
|
provider: "opencode",
|
|
7749
7782
|
baseUrl: "https://opencode.ai/zen/v1",
|
|
7783
|
+
compat: { "supportsReasoningEffort": false },
|
|
7750
7784
|
reasoning: true,
|
|
7785
|
+
thinkingLevelMap: { "off": null, "minimal": null, "low": null, "medium": null },
|
|
7751
7786
|
input: ["text", "image"],
|
|
7752
7787
|
cost: {
|
|
7753
7788
|
input: 1,
|
|
@@ -7781,6 +7816,7 @@ export const MODELS = {
|
|
|
7781
7816
|
api: "openai-completions",
|
|
7782
7817
|
provider: "opencode",
|
|
7783
7818
|
baseUrl: "https://opencode.ai/zen/v1",
|
|
7819
|
+
compat: { "thinkingFormat": "deepseek", "supportsReasoningEffort": false },
|
|
7784
7820
|
reasoning: true,
|
|
7785
7821
|
input: ["text", "image"],
|
|
7786
7822
|
cost: {
|
|
@@ -8008,7 +8044,9 @@ export const MODELS = {
|
|
|
8008
8044
|
api: "openai-completions",
|
|
8009
8045
|
provider: "opencode-go",
|
|
8010
8046
|
baseUrl: "https://opencode.ai/zen/go/v1",
|
|
8047
|
+
compat: { "thinkingFormat": "deepseek", "supportsReasoningEffort": false },
|
|
8011
8048
|
reasoning: true,
|
|
8049
|
+
thinkingLevelMap: { "minimal": null, "low": null, "medium": null },
|
|
8012
8050
|
input: ["text", "image"],
|
|
8013
8051
|
cost: {
|
|
8014
8052
|
input: 0.95,
|
|
@@ -8424,6 +8462,7 @@ export const MODELS = {
|
|
|
8424
8462
|
provider: "openrouter",
|
|
8425
8463
|
baseUrl: "https://openrouter.ai/api/v1",
|
|
8426
8464
|
reasoning: true,
|
|
8465
|
+
thinkingLevelMap: { "xhigh": "xhigh" },
|
|
8427
8466
|
input: ["text", "image"],
|
|
8428
8467
|
cost: {
|
|
8429
8468
|
input: 5,
|
|
@@ -8441,6 +8480,7 @@ export const MODELS = {
|
|
|
8441
8480
|
provider: "openrouter",
|
|
8442
8481
|
baseUrl: "https://openrouter.ai/api/v1",
|
|
8443
8482
|
reasoning: true,
|
|
8483
|
+
thinkingLevelMap: { "xhigh": "xhigh" },
|
|
8444
8484
|
input: ["text", "image"],
|
|
8445
8485
|
cost: {
|
|
8446
8486
|
input: 10,
|
|
@@ -8698,8 +8738,8 @@ export const MODELS = {
|
|
|
8698
8738
|
reasoning: false,
|
|
8699
8739
|
input: ["text"],
|
|
8700
8740
|
cost: {
|
|
8701
|
-
input: 0.
|
|
8702
|
-
output: 0.
|
|
8741
|
+
input: 0.20020000000000002,
|
|
8742
|
+
output: 0.8000999999999999,
|
|
8703
8743
|
cacheRead: 0,
|
|
8704
8744
|
cacheWrite: 0,
|
|
8705
8745
|
},
|
|
@@ -8800,13 +8840,13 @@ export const MODELS = {
|
|
|
8800
8840
|
reasoning: true,
|
|
8801
8841
|
input: ["text"],
|
|
8802
8842
|
cost: {
|
|
8803
|
-
input: 0.
|
|
8804
|
-
output: 0.
|
|
8805
|
-
cacheRead: 0
|
|
8843
|
+
input: 0.2288,
|
|
8844
|
+
output: 0.3432,
|
|
8845
|
+
cacheRead: 0,
|
|
8806
8846
|
cacheWrite: 0,
|
|
8807
8847
|
},
|
|
8808
8848
|
contextWindow: 131072,
|
|
8809
|
-
maxTokens:
|
|
8849
|
+
maxTokens: 64000,
|
|
8810
8850
|
},
|
|
8811
8851
|
"deepseek/deepseek-v3.2-exp": {
|
|
8812
8852
|
id: "deepseek/deepseek-v3.2-exp",
|
|
@@ -8831,9 +8871,9 @@ export const MODELS = {
|
|
|
8831
8871
|
api: "openai-completions",
|
|
8832
8872
|
provider: "openrouter",
|
|
8833
8873
|
baseUrl: "https://openrouter.ai/api/v1",
|
|
8834
|
-
compat: { "requiresReasoningContentOnAssistantMessages": true
|
|
8874
|
+
compat: { "requiresReasoningContentOnAssistantMessages": true },
|
|
8835
8875
|
reasoning: true,
|
|
8836
|
-
thinkingLevelMap: { "minimal": null, "low": null, "medium": null, "high": "high", "xhigh": "
|
|
8876
|
+
thinkingLevelMap: { "minimal": null, "low": null, "medium": null, "high": "high", "xhigh": "xhigh" },
|
|
8837
8877
|
input: ["text"],
|
|
8838
8878
|
cost: {
|
|
8839
8879
|
input: 0.0983,
|
|
@@ -8850,9 +8890,9 @@ export const MODELS = {
|
|
|
8850
8890
|
api: "openai-completions",
|
|
8851
8891
|
provider: "openrouter",
|
|
8852
8892
|
baseUrl: "https://openrouter.ai/api/v1",
|
|
8853
|
-
compat: { "requiresReasoningContentOnAssistantMessages": true
|
|
8893
|
+
compat: { "requiresReasoningContentOnAssistantMessages": true },
|
|
8854
8894
|
reasoning: true,
|
|
8855
|
-
thinkingLevelMap: { "minimal": null, "low": null, "medium": null, "high": "high", "xhigh": "
|
|
8895
|
+
thinkingLevelMap: { "minimal": null, "low": null, "medium": null, "high": "high", "xhigh": "xhigh" },
|
|
8856
8896
|
input: ["text"],
|
|
8857
8897
|
cost: {
|
|
8858
8898
|
input: 0.435,
|
|
@@ -9468,13 +9508,13 @@ export const MODELS = {
|
|
|
9468
9508
|
reasoning: true,
|
|
9469
9509
|
input: ["text"],
|
|
9470
9510
|
cost: {
|
|
9471
|
-
input: 0.
|
|
9511
|
+
input: 0.27899999999999997,
|
|
9472
9512
|
output: 1.2,
|
|
9473
9513
|
cacheRead: 0,
|
|
9474
9514
|
cacheWrite: 0,
|
|
9475
9515
|
},
|
|
9476
9516
|
contextWindow: 204800,
|
|
9477
|
-
maxTokens:
|
|
9517
|
+
maxTokens: 131072,
|
|
9478
9518
|
},
|
|
9479
9519
|
"minimax/minimax-m3": {
|
|
9480
9520
|
id: "minimax/minimax-m3",
|
|
@@ -9856,6 +9896,7 @@ export const MODELS = {
|
|
|
9856
9896
|
api: "openai-completions",
|
|
9857
9897
|
provider: "openrouter",
|
|
9858
9898
|
baseUrl: "https://openrouter.ai/api/v1",
|
|
9899
|
+
compat: { "supportsDeveloperRole": false },
|
|
9859
9900
|
reasoning: true,
|
|
9860
9901
|
input: ["text", "image"],
|
|
9861
9902
|
cost: {
|
|
@@ -9873,6 +9914,7 @@ export const MODELS = {
|
|
|
9873
9914
|
api: "openai-completions",
|
|
9874
9915
|
provider: "openrouter",
|
|
9875
9916
|
baseUrl: "https://openrouter.ai/api/v1",
|
|
9917
|
+
compat: { "supportsDeveloperRole": false },
|
|
9876
9918
|
reasoning: true,
|
|
9877
9919
|
input: ["text", "image"],
|
|
9878
9920
|
cost: {
|
|
@@ -10718,7 +10760,7 @@ export const MODELS = {
|
|
|
10718
10760
|
provider: "openrouter",
|
|
10719
10761
|
baseUrl: "https://openrouter.ai/api/v1",
|
|
10720
10762
|
reasoning: true,
|
|
10721
|
-
thinkingLevelMap: { "xhigh": "xhigh" },
|
|
10763
|
+
thinkingLevelMap: { "xhigh": "xhigh", "off": null, "minimal": null, "low": null },
|
|
10722
10764
|
input: ["text", "image"],
|
|
10723
10765
|
cost: {
|
|
10724
10766
|
input: 30,
|
|
@@ -11282,13 +11324,13 @@ export const MODELS = {
|
|
|
11282
11324
|
reasoning: false,
|
|
11283
11325
|
input: ["text"],
|
|
11284
11326
|
cost: {
|
|
11285
|
-
input: 0.
|
|
11286
|
-
output: 0.
|
|
11327
|
+
input: 0.0428,
|
|
11328
|
+
output: 0.1716,
|
|
11287
11329
|
cacheRead: 0,
|
|
11288
11330
|
cacheWrite: 0,
|
|
11289
11331
|
},
|
|
11290
|
-
contextWindow:
|
|
11291
|
-
maxTokens:
|
|
11332
|
+
contextWindow: 131072,
|
|
11333
|
+
maxTokens: 32000,
|
|
11292
11334
|
},
|
|
11293
11335
|
"qwen/qwen3-30b-a3b-thinking-2507": {
|
|
11294
11336
|
id: "qwen/qwen3-30b-a3b-thinking-2507",
|
|
@@ -11996,13 +12038,13 @@ export const MODELS = {
|
|
|
11996
12038
|
reasoning: true,
|
|
11997
12039
|
input: ["text"],
|
|
11998
12040
|
cost: {
|
|
11999
|
-
input: 0.
|
|
12000
|
-
output: 0.
|
|
12001
|
-
cacheRead: 0.
|
|
12041
|
+
input: 0.063,
|
|
12042
|
+
output: 0.21,
|
|
12043
|
+
cacheRead: 0.020999999999999998,
|
|
12002
12044
|
cacheWrite: 0,
|
|
12003
12045
|
},
|
|
12004
12046
|
contextWindow: 262144,
|
|
12005
|
-
maxTokens:
|
|
12047
|
+
maxTokens: 4096,
|
|
12006
12048
|
},
|
|
12007
12049
|
"thedrummer/rocinante-12b": {
|
|
12008
12050
|
id: "thedrummer/rocinante-12b",
|
|
@@ -13214,6 +13256,23 @@ export const MODELS = {
|
|
|
13214
13256
|
contextWindow: 991000,
|
|
13215
13257
|
maxTokens: 64000,
|
|
13216
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
|
+
},
|
|
13217
13276
|
"anthropic/claude-3-haiku": {
|
|
13218
13277
|
id: "anthropic/claude-3-haiku",
|
|
13219
13278
|
name: "Claude 3 Haiku",
|
|
@@ -13341,7 +13400,7 @@ export const MODELS = {
|
|
|
13341
13400
|
api: "anthropic-messages",
|
|
13342
13401
|
provider: "vercel-ai-gateway",
|
|
13343
13402
|
baseUrl: "https://ai-gateway.vercel.sh",
|
|
13344
|
-
compat: { "forceAdaptiveThinking": true },
|
|
13403
|
+
compat: { "forceAdaptiveThinking": true, "supportsTemperature": false },
|
|
13345
13404
|
reasoning: true,
|
|
13346
13405
|
thinkingLevelMap: { "xhigh": "xhigh" },
|
|
13347
13406
|
input: ["text", "image"],
|
|
@@ -13360,7 +13419,9 @@ export const MODELS = {
|
|
|
13360
13419
|
api: "anthropic-messages",
|
|
13361
13420
|
provider: "vercel-ai-gateway",
|
|
13362
13421
|
baseUrl: "https://ai-gateway.vercel.sh",
|
|
13422
|
+
compat: { "forceAdaptiveThinking": true, "supportsTemperature": false },
|
|
13363
13423
|
reasoning: true,
|
|
13424
|
+
thinkingLevelMap: { "xhigh": "xhigh" },
|
|
13364
13425
|
input: ["text", "image"],
|
|
13365
13426
|
cost: {
|
|
13366
13427
|
input: 5,
|
|
@@ -13820,12 +13881,12 @@ export const MODELS = {
|
|
|
13820
13881
|
api: "anthropic-messages",
|
|
13821
13882
|
provider: "vercel-ai-gateway",
|
|
13822
13883
|
baseUrl: "https://ai-gateway.vercel.sh",
|
|
13823
|
-
reasoning:
|
|
13884
|
+
reasoning: true,
|
|
13824
13885
|
input: ["text", "image"],
|
|
13825
13886
|
cost: {
|
|
13826
|
-
input: 0.
|
|
13827
|
-
output: 0.
|
|
13828
|
-
cacheRead: 0,
|
|
13887
|
+
input: 0.15,
|
|
13888
|
+
output: 0.6,
|
|
13889
|
+
cacheRead: 0.015,
|
|
13829
13890
|
cacheWrite: 0,
|
|
13830
13891
|
},
|
|
13831
13892
|
contextWindow: 262144,
|
|
@@ -15022,7 +15083,7 @@ export const MODELS = {
|
|
|
15022
15083
|
provider: "vercel-ai-gateway",
|
|
15023
15084
|
baseUrl: "https://ai-gateway.vercel.sh",
|
|
15024
15085
|
reasoning: true,
|
|
15025
|
-
thinkingLevelMap: { "xhigh": "xhigh" },
|
|
15086
|
+
thinkingLevelMap: { "xhigh": "xhigh", "off": null, "minimal": null, "low": null },
|
|
15026
15087
|
input: ["text", "image"],
|
|
15027
15088
|
cost: {
|
|
15028
15089
|
input: 30,
|
|
@@ -15928,24 +15989,6 @@ export const MODELS = {
|
|
|
15928
15989
|
},
|
|
15929
15990
|
},
|
|
15930
15991
|
"xiaomi-token-plan-ams": {
|
|
15931
|
-
"mimo-v2-flash": {
|
|
15932
|
-
id: "mimo-v2-flash",
|
|
15933
|
-
name: "MiMo-V2-Flash",
|
|
15934
|
-
api: "openai-completions",
|
|
15935
|
-
provider: "xiaomi-token-plan-ams",
|
|
15936
|
-
baseUrl: "https://token-plan-ams.xiaomimimo.com/v1",
|
|
15937
|
-
compat: { "requiresReasoningContentOnAssistantMessages": true, "thinkingFormat": "deepseek" },
|
|
15938
|
-
reasoning: true,
|
|
15939
|
-
input: ["text"],
|
|
15940
|
-
cost: {
|
|
15941
|
-
input: 0.1,
|
|
15942
|
-
output: 0.3,
|
|
15943
|
-
cacheRead: 0.01,
|
|
15944
|
-
cacheWrite: 0,
|
|
15945
|
-
},
|
|
15946
|
-
contextWindow: 262144,
|
|
15947
|
-
maxTokens: 65536,
|
|
15948
|
-
},
|
|
15949
15992
|
"mimo-v2-omni": {
|
|
15950
15993
|
id: "mimo-v2-omni",
|
|
15951
15994
|
name: "MiMo-V2-Omni",
|
|
@@ -16020,24 +16063,6 @@ export const MODELS = {
|
|
|
16020
16063
|
},
|
|
16021
16064
|
},
|
|
16022
16065
|
"xiaomi-token-plan-cn": {
|
|
16023
|
-
"mimo-v2-flash": {
|
|
16024
|
-
id: "mimo-v2-flash",
|
|
16025
|
-
name: "MiMo-V2-Flash",
|
|
16026
|
-
api: "openai-completions",
|
|
16027
|
-
provider: "xiaomi-token-plan-cn",
|
|
16028
|
-
baseUrl: "https://token-plan-cn.xiaomimimo.com/v1",
|
|
16029
|
-
compat: { "requiresReasoningContentOnAssistantMessages": true, "thinkingFormat": "deepseek" },
|
|
16030
|
-
reasoning: true,
|
|
16031
|
-
input: ["text"],
|
|
16032
|
-
cost: {
|
|
16033
|
-
input: 0.1,
|
|
16034
|
-
output: 0.3,
|
|
16035
|
-
cacheRead: 0.01,
|
|
16036
|
-
cacheWrite: 0,
|
|
16037
|
-
},
|
|
16038
|
-
contextWindow: 262144,
|
|
16039
|
-
maxTokens: 65536,
|
|
16040
|
-
},
|
|
16041
16066
|
"mimo-v2-omni": {
|
|
16042
16067
|
id: "mimo-v2-omni",
|
|
16043
16068
|
name: "MiMo-V2-Omni",
|
|
@@ -16112,24 +16137,6 @@ export const MODELS = {
|
|
|
16112
16137
|
},
|
|
16113
16138
|
},
|
|
16114
16139
|
"xiaomi-token-plan-sgp": {
|
|
16115
|
-
"mimo-v2-flash": {
|
|
16116
|
-
id: "mimo-v2-flash",
|
|
16117
|
-
name: "MiMo-V2-Flash",
|
|
16118
|
-
api: "openai-completions",
|
|
16119
|
-
provider: "xiaomi-token-plan-sgp",
|
|
16120
|
-
baseUrl: "https://token-plan-sgp.xiaomimimo.com/v1",
|
|
16121
|
-
compat: { "requiresReasoningContentOnAssistantMessages": true, "thinkingFormat": "deepseek" },
|
|
16122
|
-
reasoning: true,
|
|
16123
|
-
input: ["text"],
|
|
16124
|
-
cost: {
|
|
16125
|
-
input: 0.1,
|
|
16126
|
-
output: 0.3,
|
|
16127
|
-
cacheRead: 0.01,
|
|
16128
|
-
cacheWrite: 0,
|
|
16129
|
-
},
|
|
16130
|
-
contextWindow: 262144,
|
|
16131
|
-
maxTokens: 65536,
|
|
16132
|
-
},
|
|
16133
16140
|
"mimo-v2-omni": {
|
|
16134
16141
|
id: "mimo-v2-omni",
|
|
16135
16142
|
name: "MiMo-V2-Omni",
|