gsd-pi 2.72.0-dev.de4c4b3 → 2.73.0-dev.1cfd50c
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/README.md +12 -2
- package/dist/cli.js +59 -3
- package/dist/onboarding.js +10 -0
- package/dist/resources/extensions/async-jobs/await-tool.js +7 -4
- package/dist/resources/extensions/async-jobs/job-manager.js +28 -3
- package/dist/resources/extensions/claude-code-cli/partial-builder.js +40 -12
- package/dist/resources/extensions/claude-code-cli/stream-adapter.js +48 -23
- package/dist/resources/extensions/gsd/auto/loop.js +84 -1
- package/dist/resources/extensions/gsd/auto-post-unit.js +6 -0
- package/dist/resources/extensions/gsd/auto-recovery.js +11 -0
- package/dist/resources/extensions/gsd/auto.js +25 -19
- package/dist/resources/extensions/gsd/bootstrap/register-hooks.js +9 -11
- package/dist/resources/extensions/gsd/commands-handlers.js +4 -1
- package/dist/resources/extensions/gsd/context-injector.js +1 -1
- package/dist/resources/extensions/gsd/custom-workflow-engine.js +3 -7
- package/dist/resources/extensions/gsd/definition-io.js +15 -0
- package/dist/resources/extensions/gsd/dispatch-guard.js +4 -0
- package/dist/resources/extensions/gsd/doctor-runtime-checks.js +6 -3
- package/dist/resources/extensions/gsd/git-service.js +11 -8
- package/dist/resources/extensions/gsd/gitignore.js +12 -6
- package/dist/resources/extensions/gsd/gsd-db.js +49 -6
- package/dist/resources/extensions/gsd/key-manager.js +2 -0
- package/dist/resources/extensions/gsd/preferences-skills.js +2 -34
- package/dist/resources/extensions/gsd/preferences-types.js +15 -0
- package/dist/resources/extensions/gsd/preferences.js +16 -3
- package/dist/resources/extensions/gsd/prompt-loader.js +4 -1
- package/dist/resources/extensions/gsd/prompts/discuss.md +122 -13
- package/dist/resources/extensions/gsd/prompts/system.md +1 -1
- package/dist/resources/extensions/gsd/state.js +21 -1
- package/dist/resources/extensions/gsd/workflow-projections.js +7 -0
- package/dist/resources/extensions/gsd/worktree-manager.js +30 -3
- package/dist/resources/extensions/gsd/write-intercept.js +10 -1
- package/dist/resources/extensions/ollama/index.js +4 -5
- package/dist/resources/extensions/ollama/ollama-client.js +35 -6
- package/dist/resources/extensions/ollama/ollama-discovery.js +32 -6
- package/dist/web/standalone/.next/BUILD_ID +1 -1
- package/dist/web/standalone/.next/app-path-routes-manifest.json +10 -10
- package/dist/web/standalone/.next/build-manifest.json +2 -2
- package/dist/web/standalone/.next/prerender-manifest.json +3 -3
- package/dist/web/standalone/.next/server/app/_global-error/page.js +3 -3
- package/dist/web/standalone/.next/server/app/_global-error/page_client-reference-manifest.js +1 -1
- package/dist/web/standalone/.next/server/app/_global-error.html +1 -1
- package/dist/web/standalone/.next/server/app/_global-error.rsc +1 -1
- package/dist/web/standalone/.next/server/app/_global-error.segments/_full.segment.rsc +1 -1
- package/dist/web/standalone/.next/server/app/_global-error.segments/_global-error/__PAGE__.segment.rsc +1 -1
- package/dist/web/standalone/.next/server/app/_global-error.segments/_global-error.segment.rsc +1 -1
- package/dist/web/standalone/.next/server/app/_global-error.segments/_head.segment.rsc +1 -1
- package/dist/web/standalone/.next/server/app/_global-error.segments/_index.segment.rsc +1 -1
- package/dist/web/standalone/.next/server/app/_global-error.segments/_tree.segment.rsc +1 -1
- package/dist/web/standalone/.next/server/app/_not-found/page.js +2 -2
- package/dist/web/standalone/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
- package/dist/web/standalone/.next/server/app/_not-found.html +1 -1
- package/dist/web/standalone/.next/server/app/_not-found.rsc +1 -1
- package/dist/web/standalone/.next/server/app/_not-found.segments/_full.segment.rsc +1 -1
- package/dist/web/standalone/.next/server/app/_not-found.segments/_head.segment.rsc +1 -1
- package/dist/web/standalone/.next/server/app/_not-found.segments/_index.segment.rsc +1 -1
- package/dist/web/standalone/.next/server/app/_not-found.segments/_not-found/__PAGE__.segment.rsc +1 -1
- package/dist/web/standalone/.next/server/app/_not-found.segments/_not-found.segment.rsc +1 -1
- package/dist/web/standalone/.next/server/app/_not-found.segments/_tree.segment.rsc +1 -1
- package/dist/web/standalone/.next/server/app/api/boot/route.js +1 -1
- package/dist/web/standalone/.next/server/app/api/bridge-terminal/input/route.js +1 -1
- package/dist/web/standalone/.next/server/app/api/bridge-terminal/resize/route.js +1 -1
- package/dist/web/standalone/.next/server/app/api/bridge-terminal/stream/route.js +2 -2
- package/dist/web/standalone/.next/server/app/api/browse-directories/route.js +1 -1
- package/dist/web/standalone/.next/server/app/api/captures/route.js +1 -1
- package/dist/web/standalone/.next/server/app/api/cleanup/route.js +1 -1
- package/dist/web/standalone/.next/server/app/api/dev-mode/route.js +1 -1
- package/dist/web/standalone/.next/server/app/api/doctor/route.js +1 -1
- package/dist/web/standalone/.next/server/app/api/experimental/route.js +2 -2
- package/dist/web/standalone/.next/server/app/api/export-data/route.js +1 -1
- package/dist/web/standalone/.next/server/app/api/files/route.js +1 -1
- package/dist/web/standalone/.next/server/app/api/forensics/route.js +1 -1
- package/dist/web/standalone/.next/server/app/api/git/route.js +1 -1
- package/dist/web/standalone/.next/server/app/api/history/route.js +1 -1
- package/dist/web/standalone/.next/server/app/api/hooks/route.js +1 -1
- package/dist/web/standalone/.next/server/app/api/inspect/route.js +1 -1
- package/dist/web/standalone/.next/server/app/api/knowledge/route.js +1 -1
- package/dist/web/standalone/.next/server/app/api/live-state/route.js +1 -1
- package/dist/web/standalone/.next/server/app/api/notifications/route.js +2 -2
- package/dist/web/standalone/.next/server/app/api/onboarding/route.js +1 -1
- package/dist/web/standalone/.next/server/app/api/preferences/route.js +1 -1
- package/dist/web/standalone/.next/server/app/api/projects/route.js +1 -1
- package/dist/web/standalone/.next/server/app/api/recovery/route.js +1 -1
- package/dist/web/standalone/.next/server/app/api/remote-questions/route.js +2 -2
- package/dist/web/standalone/.next/server/app/api/session/browser/route.js +1 -1
- package/dist/web/standalone/.next/server/app/api/session/command/route.js +1 -1
- package/dist/web/standalone/.next/server/app/api/session/events/route.js +2 -2
- package/dist/web/standalone/.next/server/app/api/session/manage/route.js +1 -1
- package/dist/web/standalone/.next/server/app/api/settings-data/route.js +1 -1
- package/dist/web/standalone/.next/server/app/api/shutdown/route.js +1 -1
- package/dist/web/standalone/.next/server/app/api/skill-health/route.js +1 -1
- package/dist/web/standalone/.next/server/app/api/steer/route.js +1 -1
- package/dist/web/standalone/.next/server/app/api/switch-root/route.js +1 -1
- package/dist/web/standalone/.next/server/app/api/terminal/input/route.js +2 -2
- package/dist/web/standalone/.next/server/app/api/terminal/resize/route.js +2 -2
- package/dist/web/standalone/.next/server/app/api/terminal/sessions/route.js +2 -2
- package/dist/web/standalone/.next/server/app/api/terminal/stream/route.js +3 -3
- package/dist/web/standalone/.next/server/app/api/terminal/upload/route.js +1 -1
- package/dist/web/standalone/.next/server/app/api/undo/route.js +1 -1
- package/dist/web/standalone/.next/server/app/api/update/route.js +1 -1
- package/dist/web/standalone/.next/server/app/api/visualizer/route.js +1 -1
- package/dist/web/standalone/.next/server/app/index.html +1 -1
- package/dist/web/standalone/.next/server/app/index.rsc +1 -1
- package/dist/web/standalone/.next/server/app/index.segments/__PAGE__.segment.rsc +1 -1
- package/dist/web/standalone/.next/server/app/index.segments/_full.segment.rsc +1 -1
- package/dist/web/standalone/.next/server/app/index.segments/_head.segment.rsc +1 -1
- package/dist/web/standalone/.next/server/app/index.segments/_index.segment.rsc +1 -1
- package/dist/web/standalone/.next/server/app/index.segments/_tree.segment.rsc +1 -1
- package/dist/web/standalone/.next/server/app/page.js +2 -2
- package/dist/web/standalone/.next/server/app/page_client-reference-manifest.js +1 -1
- package/dist/web/standalone/.next/server/app-paths-manifest.json +10 -10
- package/dist/web/standalone/.next/server/chunks/2331.js +16 -16
- package/dist/web/standalone/.next/server/chunks/4741.js +12 -12
- package/dist/web/standalone/.next/server/chunks/5822.js +2 -2
- package/dist/web/standalone/.next/server/chunks/63.js +8 -8
- package/dist/web/standalone/.next/server/chunks/6897.js +3 -3
- package/dist/web/standalone/.next/server/edge-runtime-webpack.js +2 -0
- package/dist/web/standalone/.next/server/functions-config-manifest.json +0 -9
- package/dist/web/standalone/.next/server/middleware-build-manifest.js +1 -1
- package/dist/web/standalone/.next/server/middleware-manifest.json +29 -2
- package/dist/web/standalone/.next/server/middleware.js +4 -12
- package/dist/web/standalone/.next/server/pages/404.html +1 -1
- package/dist/web/standalone/.next/server/pages/500.html +1 -1
- package/dist/web/standalone/.next/server/server-reference-manifest.json +1 -1
- package/dist/web/standalone/.next/server/webpack-runtime.js +1 -1
- package/package.json +1 -1
- package/packages/pi-ai/dist/env-api-keys.js +1 -0
- package/packages/pi-ai/dist/env-api-keys.js.map +1 -1
- package/packages/pi-ai/dist/models.custom.d.ts +105 -0
- package/packages/pi-ai/dist/models.custom.d.ts.map +1 -1
- package/packages/pi-ai/dist/models.custom.js +97 -0
- package/packages/pi-ai/dist/models.custom.js.map +1 -1
- package/packages/pi-ai/dist/models.generated.d.ts +648 -140
- package/packages/pi-ai/dist/models.generated.d.ts.map +1 -1
- package/packages/pi-ai/dist/models.generated.js +867 -370
- package/packages/pi-ai/dist/models.generated.js.map +1 -1
- package/packages/pi-ai/dist/models.generated.test.d.ts +2 -0
- package/packages/pi-ai/dist/models.generated.test.d.ts.map +1 -0
- package/packages/pi-ai/dist/models.generated.test.js +334 -0
- package/packages/pi-ai/dist/models.generated.test.js.map +1 -0
- package/packages/pi-ai/dist/models.test.js +105 -0
- package/packages/pi-ai/dist/models.test.js.map +1 -1
- package/packages/pi-ai/dist/types.d.ts +1 -1
- package/packages/pi-ai/dist/types.d.ts.map +1 -1
- package/packages/pi-ai/dist/types.js.map +1 -1
- package/packages/pi-ai/dist/utils/oauth/github-copilot.d.ts.map +1 -1
- package/packages/pi-ai/dist/utils/oauth/github-copilot.js +5 -1
- package/packages/pi-ai/dist/utils/oauth/github-copilot.js.map +1 -1
- package/packages/pi-ai/dist/utils/oauth/github-copilot.test.d.ts +2 -0
- package/packages/pi-ai/dist/utils/oauth/github-copilot.test.d.ts.map +1 -0
- package/packages/pi-ai/dist/utils/oauth/github-copilot.test.js +57 -0
- package/packages/pi-ai/dist/utils/oauth/github-copilot.test.js.map +1 -0
- package/packages/pi-ai/src/env-api-keys.ts +1 -0
- package/packages/pi-ai/src/models.custom.ts +98 -0
- package/packages/pi-ai/src/models.generated.test.ts +373 -0
- package/packages/pi-ai/src/models.generated.ts +867 -370
- package/packages/pi-ai/src/models.test.ts +135 -0
- package/packages/pi-ai/src/types.ts +1 -0
- package/packages/pi-ai/src/utils/oauth/github-copilot.test.ts +71 -0
- package/packages/pi-ai/src/utils/oauth/github-copilot.ts +4 -1
- package/packages/pi-coding-agent/dist/core/model-resolver.d.ts.map +1 -1
- package/packages/pi-coding-agent/dist/core/model-resolver.js +1 -0
- package/packages/pi-coding-agent/dist/core/model-resolver.js.map +1 -1
- package/packages/pi-coding-agent/dist/core/sdk.d.ts.map +1 -1
- package/packages/pi-coding-agent/dist/core/sdk.js +9 -0
- package/packages/pi-coding-agent/dist/core/sdk.js.map +1 -1
- package/packages/pi-coding-agent/dist/modes/interactive/components/__tests__/tool-execution.test.js +36 -0
- package/packages/pi-coding-agent/dist/modes/interactive/components/__tests__/tool-execution.test.js.map +1 -1
- package/packages/pi-coding-agent/dist/modes/interactive/components/tool-execution.d.ts.map +1 -1
- package/packages/pi-coding-agent/dist/modes/interactive/components/tool-execution.js +87 -12
- package/packages/pi-coding-agent/dist/modes/interactive/components/tool-execution.js.map +1 -1
- package/packages/pi-coding-agent/dist/modes/interactive/controllers/chat-controller.d.ts +1 -0
- package/packages/pi-coding-agent/dist/modes/interactive/controllers/chat-controller.d.ts.map +1 -1
- package/packages/pi-coding-agent/dist/modes/interactive/controllers/chat-controller.js +22 -9
- package/packages/pi-coding-agent/dist/modes/interactive/controllers/chat-controller.js.map +1 -1
- package/packages/pi-coding-agent/dist/modes/interactive/controllers/chat-controller.test.d.ts +2 -0
- package/packages/pi-coding-agent/dist/modes/interactive/controllers/chat-controller.test.d.ts.map +1 -0
- package/packages/pi-coding-agent/dist/modes/interactive/controllers/chat-controller.test.js +63 -0
- package/packages/pi-coding-agent/dist/modes/interactive/controllers/chat-controller.test.js.map +1 -0
- package/packages/pi-coding-agent/package.json +1 -1
- package/packages/pi-coding-agent/src/core/model-resolver.ts +1 -0
- package/packages/pi-coding-agent/src/core/sdk.ts +10 -0
- package/packages/pi-coding-agent/src/modes/interactive/components/__tests__/tool-execution.test.ts +72 -0
- package/packages/pi-coding-agent/src/modes/interactive/components/tool-execution.ts +84 -12
- package/packages/pi-coding-agent/src/modes/interactive/controllers/chat-controller.test.ts +71 -0
- package/packages/pi-coding-agent/src/modes/interactive/controllers/chat-controller.ts +23 -9
- package/packages/pi-tui/dist/components/__tests__/editor.test.js +12 -0
- package/packages/pi-tui/dist/components/__tests__/editor.test.js.map +1 -1
- package/packages/pi-tui/dist/components/__tests__/input.test.js +12 -0
- package/packages/pi-tui/dist/components/__tests__/input.test.js.map +1 -1
- package/packages/pi-tui/dist/keys.d.ts.map +1 -1
- package/packages/pi-tui/dist/keys.js +27 -0
- package/packages/pi-tui/dist/keys.js.map +1 -1
- package/packages/pi-tui/src/components/__tests__/editor.test.ts +18 -0
- package/packages/pi-tui/src/components/__tests__/input.test.ts +18 -0
- package/packages/pi-tui/src/keys.ts +32 -0
- package/pkg/package.json +1 -1
- package/src/resources/extensions/async-jobs/await-tool.test.ts +40 -7
- package/src/resources/extensions/async-jobs/await-tool.ts +7 -4
- package/src/resources/extensions/async-jobs/job-manager.ts +33 -3
- package/src/resources/extensions/claude-code-cli/partial-builder.ts +45 -12
- package/src/resources/extensions/claude-code-cli/stream-adapter.ts +49 -24
- package/src/resources/extensions/claude-code-cli/tests/partial-builder.test.ts +91 -2
- package/src/resources/extensions/claude-code-cli/tests/stream-adapter.test.ts +112 -0
- package/src/resources/extensions/gsd/auto/loop.ts +89 -1
- package/src/resources/extensions/gsd/auto-post-unit.ts +7 -0
- package/src/resources/extensions/gsd/auto-recovery.ts +10 -0
- package/src/resources/extensions/gsd/auto.ts +25 -20
- package/src/resources/extensions/gsd/bootstrap/register-hooks.ts +8 -10
- package/src/resources/extensions/gsd/commands-handlers.ts +5 -1
- package/src/resources/extensions/gsd/context-injector.ts +1 -1
- package/src/resources/extensions/gsd/custom-workflow-engine.ts +4 -8
- package/src/resources/extensions/gsd/definition-io.ts +18 -0
- package/src/resources/extensions/gsd/dispatch-guard.ts +5 -0
- package/src/resources/extensions/gsd/doctor-runtime-checks.ts +6 -3
- package/src/resources/extensions/gsd/git-service.ts +11 -8
- package/src/resources/extensions/gsd/gitignore.ts +12 -6
- package/src/resources/extensions/gsd/gsd-db.ts +54 -6
- package/src/resources/extensions/gsd/key-manager.ts +2 -0
- package/src/resources/extensions/gsd/preferences-skills.ts +2 -36
- package/src/resources/extensions/gsd/preferences-types.ts +16 -0
- package/src/resources/extensions/gsd/preferences.ts +19 -6
- package/src/resources/extensions/gsd/prompt-loader.ts +6 -1
- package/src/resources/extensions/gsd/prompts/discuss.md +122 -13
- package/src/resources/extensions/gsd/prompts/system.md +1 -1
- package/src/resources/extensions/gsd/state.ts +20 -0
- package/src/resources/extensions/gsd/tests/auto-paused-ui-cleanup.test.ts +27 -0
- package/src/resources/extensions/gsd/tests/block-db-writes.test.ts +63 -0
- package/src/resources/extensions/gsd/tests/definition-io.test.ts +57 -0
- package/src/resources/extensions/gsd/tests/dispatch-guard.test.ts +26 -0
- package/src/resources/extensions/gsd/tests/doctor-heal-fixable-warnings.test.ts +14 -0
- package/src/resources/extensions/gsd/tests/false-degraded-mode-warning.test.ts +104 -0
- package/src/resources/extensions/gsd/tests/gsd-db.test.ts +107 -5
- package/src/resources/extensions/gsd/tests/integration/git-service.test.ts +8 -6
- package/src/resources/extensions/gsd/tests/key-manager.test.ts +63 -0
- package/src/resources/extensions/gsd/tests/memory-pressure-stuck-state.test.ts +54 -0
- package/src/resources/extensions/gsd/tests/plan-milestone-artifact-verification.test.ts +62 -0
- package/src/resources/extensions/gsd/tests/post-unit-state-rebuild.test.ts +34 -0
- package/src/resources/extensions/gsd/tests/preferences-formatting.test.ts +87 -0
- package/src/resources/extensions/gsd/tests/preferences.test.ts +53 -0
- package/src/resources/extensions/gsd/tests/projection-regression.test.ts +96 -1
- package/src/resources/extensions/gsd/tests/prompt-loader-working-directory.test.ts +19 -0
- package/src/resources/extensions/gsd/tests/register-hooks-depth-verification.test.ts +97 -0
- package/src/resources/extensions/gsd/tests/stale-slice-rows.test.ts +41 -0
- package/src/resources/extensions/gsd/workflow-projections.ts +8 -0
- package/src/resources/extensions/gsd/worktree-manager.ts +29 -3
- package/src/resources/extensions/gsd/write-intercept.ts +10 -1
- package/src/resources/extensions/ollama/index.ts +4 -5
- package/src/resources/extensions/ollama/ollama-client.ts +35 -6
- package/src/resources/extensions/ollama/ollama-discovery.ts +37 -6
- package/src/resources/extensions/ollama/tests/ollama-discovery.test.ts +54 -0
- package/dist/resources/extensions/gsd/auto-observability.js +0 -54
- package/dist/resources/extensions/gsd/file-watcher.js +0 -80
- package/dist/resources/extensions/gsd/rtk-status.js +0 -43
- package/src/resources/extensions/gsd/auto-observability.ts +0 -72
- package/src/resources/extensions/gsd/file-watcher.ts +0 -100
- package/src/resources/extensions/gsd/rtk-status.ts +0 -53
- /package/dist/web/standalone/.next/static/{f-Gremw0nLxxFUySaHRPw → uNGVqSkAnszMl0okA4nnp}/_buildManifest.js +0 -0
- /package/dist/web/standalone/.next/static/{f-Gremw0nLxxFUySaHRPw → uNGVqSkAnszMl0okA4nnp}/_ssgManifest.js +0 -0
|
@@ -799,6 +799,23 @@ export declare const MODELS: {
|
|
|
799
799
|
contextWindow: number;
|
|
800
800
|
maxTokens: number;
|
|
801
801
|
};
|
|
802
|
+
readonly "minimax.minimax-m2.5": {
|
|
803
|
+
id: string;
|
|
804
|
+
name: string;
|
|
805
|
+
api: "bedrock-converse-stream";
|
|
806
|
+
provider: string;
|
|
807
|
+
baseUrl: string;
|
|
808
|
+
reasoning: true;
|
|
809
|
+
input: "text"[];
|
|
810
|
+
cost: {
|
|
811
|
+
input: number;
|
|
812
|
+
output: number;
|
|
813
|
+
cacheRead: number;
|
|
814
|
+
cacheWrite: number;
|
|
815
|
+
};
|
|
816
|
+
contextWindow: number;
|
|
817
|
+
maxTokens: number;
|
|
818
|
+
};
|
|
802
819
|
readonly "mistral.devstral-2-123b": {
|
|
803
820
|
id: string;
|
|
804
821
|
name: string;
|
|
@@ -1037,6 +1054,23 @@ export declare const MODELS: {
|
|
|
1037
1054
|
contextWindow: number;
|
|
1038
1055
|
maxTokens: number;
|
|
1039
1056
|
};
|
|
1057
|
+
readonly "nvidia.nemotron-super-3-120b": {
|
|
1058
|
+
id: string;
|
|
1059
|
+
name: string;
|
|
1060
|
+
api: "bedrock-converse-stream";
|
|
1061
|
+
provider: string;
|
|
1062
|
+
baseUrl: string;
|
|
1063
|
+
reasoning: true;
|
|
1064
|
+
input: "text"[];
|
|
1065
|
+
cost: {
|
|
1066
|
+
input: number;
|
|
1067
|
+
output: number;
|
|
1068
|
+
cacheRead: number;
|
|
1069
|
+
cacheWrite: number;
|
|
1070
|
+
};
|
|
1071
|
+
contextWindow: number;
|
|
1072
|
+
maxTokens: number;
|
|
1073
|
+
};
|
|
1040
1074
|
readonly "openai.gpt-oss-120b-1:0": {
|
|
1041
1075
|
id: string;
|
|
1042
1076
|
name: string;
|
|
@@ -1173,6 +1207,23 @@ export declare const MODELS: {
|
|
|
1173
1207
|
contextWindow: number;
|
|
1174
1208
|
maxTokens: number;
|
|
1175
1209
|
};
|
|
1210
|
+
readonly "qwen.qwen3-coder-next": {
|
|
1211
|
+
id: string;
|
|
1212
|
+
name: string;
|
|
1213
|
+
api: "bedrock-converse-stream";
|
|
1214
|
+
provider: string;
|
|
1215
|
+
baseUrl: string;
|
|
1216
|
+
reasoning: true;
|
|
1217
|
+
input: "text"[];
|
|
1218
|
+
cost: {
|
|
1219
|
+
input: number;
|
|
1220
|
+
output: number;
|
|
1221
|
+
cacheRead: number;
|
|
1222
|
+
cacheWrite: number;
|
|
1223
|
+
};
|
|
1224
|
+
contextWindow: number;
|
|
1225
|
+
maxTokens: number;
|
|
1226
|
+
};
|
|
1176
1227
|
readonly "qwen.qwen3-next-80b-a3b": {
|
|
1177
1228
|
id: string;
|
|
1178
1229
|
name: string;
|
|
@@ -1411,16 +1462,14 @@ export declare const MODELS: {
|
|
|
1411
1462
|
contextWindow: number;
|
|
1412
1463
|
maxTokens: number;
|
|
1413
1464
|
};
|
|
1414
|
-
|
|
1415
|
-
readonly anthropic: {
|
|
1416
|
-
readonly "claude-3-5-haiku-20241022": {
|
|
1465
|
+
readonly "zai.glm-5": {
|
|
1417
1466
|
id: string;
|
|
1418
1467
|
name: string;
|
|
1419
|
-
api: "
|
|
1468
|
+
api: "bedrock-converse-stream";
|
|
1420
1469
|
provider: string;
|
|
1421
1470
|
baseUrl: string;
|
|
1422
|
-
reasoning:
|
|
1423
|
-
input:
|
|
1471
|
+
reasoning: true;
|
|
1472
|
+
input: "text"[];
|
|
1424
1473
|
cost: {
|
|
1425
1474
|
input: number;
|
|
1426
1475
|
output: number;
|
|
@@ -1430,7 +1479,9 @@ export declare const MODELS: {
|
|
|
1430
1479
|
contextWindow: number;
|
|
1431
1480
|
maxTokens: number;
|
|
1432
1481
|
};
|
|
1433
|
-
|
|
1482
|
+
};
|
|
1483
|
+
readonly anthropic: {
|
|
1484
|
+
readonly "claude-3-5-haiku-20241022": {
|
|
1434
1485
|
id: string;
|
|
1435
1486
|
name: string;
|
|
1436
1487
|
api: "anthropic-messages";
|
|
@@ -1447,7 +1498,7 @@ export declare const MODELS: {
|
|
|
1447
1498
|
contextWindow: number;
|
|
1448
1499
|
maxTokens: number;
|
|
1449
1500
|
};
|
|
1450
|
-
readonly "claude-3-5-
|
|
1501
|
+
readonly "claude-3-5-haiku-latest": {
|
|
1451
1502
|
id: string;
|
|
1452
1503
|
name: string;
|
|
1453
1504
|
api: "anthropic-messages";
|
|
@@ -1464,7 +1515,7 @@ export declare const MODELS: {
|
|
|
1464
1515
|
contextWindow: number;
|
|
1465
1516
|
maxTokens: number;
|
|
1466
1517
|
};
|
|
1467
|
-
readonly "claude-3-5-sonnet-
|
|
1518
|
+
readonly "claude-3-5-sonnet-20240620": {
|
|
1468
1519
|
id: string;
|
|
1469
1520
|
name: string;
|
|
1470
1521
|
api: "anthropic-messages";
|
|
@@ -1481,13 +1532,13 @@ export declare const MODELS: {
|
|
|
1481
1532
|
contextWindow: number;
|
|
1482
1533
|
maxTokens: number;
|
|
1483
1534
|
};
|
|
1484
|
-
readonly "claude-3-
|
|
1535
|
+
readonly "claude-3-5-sonnet-20241022": {
|
|
1485
1536
|
id: string;
|
|
1486
1537
|
name: string;
|
|
1487
1538
|
api: "anthropic-messages";
|
|
1488
1539
|
provider: string;
|
|
1489
1540
|
baseUrl: string;
|
|
1490
|
-
reasoning:
|
|
1541
|
+
reasoning: false;
|
|
1491
1542
|
input: ("text" | "image")[];
|
|
1492
1543
|
cost: {
|
|
1493
1544
|
input: number;
|
|
@@ -1498,7 +1549,7 @@ export declare const MODELS: {
|
|
|
1498
1549
|
contextWindow: number;
|
|
1499
1550
|
maxTokens: number;
|
|
1500
1551
|
};
|
|
1501
|
-
readonly "claude-3-7-sonnet-
|
|
1552
|
+
readonly "claude-3-7-sonnet-20250219": {
|
|
1502
1553
|
id: string;
|
|
1503
1554
|
name: string;
|
|
1504
1555
|
api: "anthropic-messages";
|
|
@@ -2248,6 +2299,23 @@ export declare const MODELS: {
|
|
|
2248
2299
|
contextWindow: number;
|
|
2249
2300
|
maxTokens: number;
|
|
2250
2301
|
};
|
|
2302
|
+
readonly "gpt-5.3-chat-latest": {
|
|
2303
|
+
id: string;
|
|
2304
|
+
name: string;
|
|
2305
|
+
api: "azure-openai-responses";
|
|
2306
|
+
provider: string;
|
|
2307
|
+
baseUrl: string;
|
|
2308
|
+
reasoning: false;
|
|
2309
|
+
input: ("text" | "image")[];
|
|
2310
|
+
cost: {
|
|
2311
|
+
input: number;
|
|
2312
|
+
output: number;
|
|
2313
|
+
cacheRead: number;
|
|
2314
|
+
cacheWrite: number;
|
|
2315
|
+
};
|
|
2316
|
+
contextWindow: number;
|
|
2317
|
+
maxTokens: number;
|
|
2318
|
+
};
|
|
2251
2319
|
readonly "gpt-5.3-codex": {
|
|
2252
2320
|
id: string;
|
|
2253
2321
|
name: string;
|
|
@@ -3555,6 +3623,57 @@ export declare const MODELS: {
|
|
|
3555
3623
|
contextWindow: number;
|
|
3556
3624
|
maxTokens: number;
|
|
3557
3625
|
};
|
|
3626
|
+
readonly "gemma-3-27b-it": {
|
|
3627
|
+
id: string;
|
|
3628
|
+
name: string;
|
|
3629
|
+
api: "google-generative-ai";
|
|
3630
|
+
provider: string;
|
|
3631
|
+
baseUrl: string;
|
|
3632
|
+
reasoning: false;
|
|
3633
|
+
input: ("text" | "image")[];
|
|
3634
|
+
cost: {
|
|
3635
|
+
input: number;
|
|
3636
|
+
output: number;
|
|
3637
|
+
cacheRead: number;
|
|
3638
|
+
cacheWrite: number;
|
|
3639
|
+
};
|
|
3640
|
+
contextWindow: number;
|
|
3641
|
+
maxTokens: number;
|
|
3642
|
+
};
|
|
3643
|
+
readonly "gemma-4-26b-it": {
|
|
3644
|
+
id: string;
|
|
3645
|
+
name: string;
|
|
3646
|
+
api: "google-generative-ai";
|
|
3647
|
+
provider: string;
|
|
3648
|
+
baseUrl: string;
|
|
3649
|
+
reasoning: true;
|
|
3650
|
+
input: ("text" | "image")[];
|
|
3651
|
+
cost: {
|
|
3652
|
+
input: number;
|
|
3653
|
+
output: number;
|
|
3654
|
+
cacheRead: number;
|
|
3655
|
+
cacheWrite: number;
|
|
3656
|
+
};
|
|
3657
|
+
contextWindow: number;
|
|
3658
|
+
maxTokens: number;
|
|
3659
|
+
};
|
|
3660
|
+
readonly "gemma-4-31b-it": {
|
|
3661
|
+
id: string;
|
|
3662
|
+
name: string;
|
|
3663
|
+
api: "google-generative-ai";
|
|
3664
|
+
provider: string;
|
|
3665
|
+
baseUrl: string;
|
|
3666
|
+
reasoning: true;
|
|
3667
|
+
input: ("text" | "image")[];
|
|
3668
|
+
cost: {
|
|
3669
|
+
input: number;
|
|
3670
|
+
output: number;
|
|
3671
|
+
cacheRead: number;
|
|
3672
|
+
cacheWrite: number;
|
|
3673
|
+
};
|
|
3674
|
+
contextWindow: number;
|
|
3675
|
+
maxTokens: number;
|
|
3676
|
+
};
|
|
3558
3677
|
};
|
|
3559
3678
|
readonly "google-antigravity": {
|
|
3560
3679
|
readonly "claude-opus-4-5-thinking": {
|
|
@@ -4056,6 +4175,40 @@ export declare const MODELS: {
|
|
|
4056
4175
|
contextWindow: number;
|
|
4057
4176
|
maxTokens: number;
|
|
4058
4177
|
};
|
|
4178
|
+
readonly "groq/compound": {
|
|
4179
|
+
id: string;
|
|
4180
|
+
name: string;
|
|
4181
|
+
api: "openai-completions";
|
|
4182
|
+
provider: string;
|
|
4183
|
+
baseUrl: string;
|
|
4184
|
+
reasoning: true;
|
|
4185
|
+
input: "text"[];
|
|
4186
|
+
cost: {
|
|
4187
|
+
input: number;
|
|
4188
|
+
output: number;
|
|
4189
|
+
cacheRead: number;
|
|
4190
|
+
cacheWrite: number;
|
|
4191
|
+
};
|
|
4192
|
+
contextWindow: number;
|
|
4193
|
+
maxTokens: number;
|
|
4194
|
+
};
|
|
4195
|
+
readonly "groq/compound-mini": {
|
|
4196
|
+
id: string;
|
|
4197
|
+
name: string;
|
|
4198
|
+
api: "openai-completions";
|
|
4199
|
+
provider: string;
|
|
4200
|
+
baseUrl: string;
|
|
4201
|
+
reasoning: true;
|
|
4202
|
+
input: "text"[];
|
|
4203
|
+
cost: {
|
|
4204
|
+
input: number;
|
|
4205
|
+
output: number;
|
|
4206
|
+
cacheRead: number;
|
|
4207
|
+
cacheWrite: number;
|
|
4208
|
+
};
|
|
4209
|
+
contextWindow: number;
|
|
4210
|
+
maxTokens: number;
|
|
4211
|
+
};
|
|
4059
4212
|
readonly "llama-3.1-8b-instant": {
|
|
4060
4213
|
id: string;
|
|
4061
4214
|
name: string;
|
|
@@ -4243,6 +4396,23 @@ export declare const MODELS: {
|
|
|
4243
4396
|
contextWindow: number;
|
|
4244
4397
|
maxTokens: number;
|
|
4245
4398
|
};
|
|
4399
|
+
readonly "openai/gpt-oss-safeguard-20b": {
|
|
4400
|
+
id: string;
|
|
4401
|
+
name: string;
|
|
4402
|
+
api: "openai-completions";
|
|
4403
|
+
provider: string;
|
|
4404
|
+
baseUrl: string;
|
|
4405
|
+
reasoning: true;
|
|
4406
|
+
input: "text"[];
|
|
4407
|
+
cost: {
|
|
4408
|
+
input: number;
|
|
4409
|
+
output: number;
|
|
4410
|
+
cacheRead: number;
|
|
4411
|
+
cacheWrite: number;
|
|
4412
|
+
};
|
|
4413
|
+
contextWindow: number;
|
|
4414
|
+
maxTokens: number;
|
|
4415
|
+
};
|
|
4246
4416
|
readonly "qwen-qwq-32b": {
|
|
4247
4417
|
id: string;
|
|
4248
4418
|
name: string;
|
|
@@ -4639,6 +4809,26 @@ export declare const MODELS: {
|
|
|
4639
4809
|
contextWindow: number;
|
|
4640
4810
|
maxTokens: number;
|
|
4641
4811
|
};
|
|
4812
|
+
readonly "zai-org/GLM-5.1": {
|
|
4813
|
+
id: string;
|
|
4814
|
+
name: string;
|
|
4815
|
+
api: "openai-completions";
|
|
4816
|
+
provider: string;
|
|
4817
|
+
baseUrl: string;
|
|
4818
|
+
compat: {
|
|
4819
|
+
supportsDeveloperRole: false;
|
|
4820
|
+
};
|
|
4821
|
+
reasoning: true;
|
|
4822
|
+
input: "text"[];
|
|
4823
|
+
cost: {
|
|
4824
|
+
input: number;
|
|
4825
|
+
output: number;
|
|
4826
|
+
cacheRead: number;
|
|
4827
|
+
cacheWrite: number;
|
|
4828
|
+
};
|
|
4829
|
+
contextWindow: number;
|
|
4830
|
+
maxTokens: number;
|
|
4831
|
+
};
|
|
4642
4832
|
};
|
|
4643
4833
|
readonly "kimi-coding": {
|
|
4644
4834
|
readonly k2p5: {
|
|
@@ -5208,13 +5398,30 @@ export declare const MODELS: {
|
|
|
5208
5398
|
contextWindow: number;
|
|
5209
5399
|
maxTokens: number;
|
|
5210
5400
|
};
|
|
5401
|
+
readonly "mistral-small-2603": {
|
|
5402
|
+
id: string;
|
|
5403
|
+
name: string;
|
|
5404
|
+
api: "mistral-conversations";
|
|
5405
|
+
provider: string;
|
|
5406
|
+
baseUrl: string;
|
|
5407
|
+
reasoning: true;
|
|
5408
|
+
input: ("text" | "image")[];
|
|
5409
|
+
cost: {
|
|
5410
|
+
input: number;
|
|
5411
|
+
output: number;
|
|
5412
|
+
cacheRead: number;
|
|
5413
|
+
cacheWrite: number;
|
|
5414
|
+
};
|
|
5415
|
+
contextWindow: number;
|
|
5416
|
+
maxTokens: number;
|
|
5417
|
+
};
|
|
5211
5418
|
readonly "mistral-small-latest": {
|
|
5212
5419
|
id: string;
|
|
5213
5420
|
name: string;
|
|
5214
5421
|
api: "mistral-conversations";
|
|
5215
5422
|
provider: string;
|
|
5216
5423
|
baseUrl: string;
|
|
5217
|
-
reasoning:
|
|
5424
|
+
reasoning: true;
|
|
5218
5425
|
input: ("text" | "image")[];
|
|
5219
5426
|
cost: {
|
|
5220
5427
|
input: number;
|
|
@@ -5754,6 +5961,23 @@ export declare const MODELS: {
|
|
|
5754
5961
|
contextWindow: number;
|
|
5755
5962
|
maxTokens: number;
|
|
5756
5963
|
};
|
|
5964
|
+
readonly "gpt-5.3-chat-latest": {
|
|
5965
|
+
id: string;
|
|
5966
|
+
name: string;
|
|
5967
|
+
api: "openai-responses";
|
|
5968
|
+
provider: string;
|
|
5969
|
+
baseUrl: string;
|
|
5970
|
+
reasoning: false;
|
|
5971
|
+
input: ("text" | "image")[];
|
|
5972
|
+
cost: {
|
|
5973
|
+
input: number;
|
|
5974
|
+
output: number;
|
|
5975
|
+
cacheRead: number;
|
|
5976
|
+
cacheWrite: number;
|
|
5977
|
+
};
|
|
5978
|
+
contextWindow: number;
|
|
5979
|
+
maxTokens: number;
|
|
5980
|
+
};
|
|
5757
5981
|
readonly "gpt-5.3-codex": {
|
|
5758
5982
|
id: string;
|
|
5759
5983
|
name: string;
|
|
@@ -6336,6 +6560,23 @@ export declare const MODELS: {
|
|
|
6336
6560
|
contextWindow: number;
|
|
6337
6561
|
maxTokens: number;
|
|
6338
6562
|
};
|
|
6563
|
+
readonly "glm-5.1": {
|
|
6564
|
+
id: string;
|
|
6565
|
+
name: string;
|
|
6566
|
+
api: "openai-completions";
|
|
6567
|
+
provider: string;
|
|
6568
|
+
baseUrl: string;
|
|
6569
|
+
reasoning: true;
|
|
6570
|
+
input: "text"[];
|
|
6571
|
+
cost: {
|
|
6572
|
+
input: number;
|
|
6573
|
+
output: number;
|
|
6574
|
+
cacheRead: number;
|
|
6575
|
+
cacheWrite: number;
|
|
6576
|
+
};
|
|
6577
|
+
contextWindow: number;
|
|
6578
|
+
maxTokens: number;
|
|
6579
|
+
};
|
|
6339
6580
|
readonly "gpt-5": {
|
|
6340
6581
|
id: string;
|
|
6341
6582
|
name: string;
|
|
@@ -6591,14 +6832,14 @@ export declare const MODELS: {
|
|
|
6591
6832
|
contextWindow: number;
|
|
6592
6833
|
maxTokens: number;
|
|
6593
6834
|
};
|
|
6594
|
-
readonly "
|
|
6835
|
+
readonly "minimax-m2.5": {
|
|
6595
6836
|
id: string;
|
|
6596
6837
|
name: string;
|
|
6597
6838
|
api: "openai-completions";
|
|
6598
6839
|
provider: string;
|
|
6599
6840
|
baseUrl: string;
|
|
6600
6841
|
reasoning: true;
|
|
6601
|
-
input:
|
|
6842
|
+
input: "text"[];
|
|
6602
6843
|
cost: {
|
|
6603
6844
|
input: number;
|
|
6604
6845
|
output: number;
|
|
@@ -6608,10 +6849,10 @@ export declare const MODELS: {
|
|
|
6608
6849
|
contextWindow: number;
|
|
6609
6850
|
maxTokens: number;
|
|
6610
6851
|
};
|
|
6611
|
-
readonly "
|
|
6852
|
+
readonly "minimax-m2.5-free": {
|
|
6612
6853
|
id: string;
|
|
6613
6854
|
name: string;
|
|
6614
|
-
api: "
|
|
6855
|
+
api: "anthropic-messages";
|
|
6615
6856
|
provider: string;
|
|
6616
6857
|
baseUrl: string;
|
|
6617
6858
|
reasoning: true;
|
|
@@ -6625,7 +6866,7 @@ export declare const MODELS: {
|
|
|
6625
6866
|
contextWindow: number;
|
|
6626
6867
|
maxTokens: number;
|
|
6627
6868
|
};
|
|
6628
|
-
readonly "
|
|
6869
|
+
readonly "nemotron-3-super-free": {
|
|
6629
6870
|
id: string;
|
|
6630
6871
|
name: string;
|
|
6631
6872
|
api: "openai-completions";
|
|
@@ -6642,10 +6883,12 @@ export declare const MODELS: {
|
|
|
6642
6883
|
contextWindow: number;
|
|
6643
6884
|
maxTokens: number;
|
|
6644
6885
|
};
|
|
6645
|
-
|
|
6886
|
+
};
|
|
6887
|
+
readonly "opencode-go": {
|
|
6888
|
+
readonly "glm-5": {
|
|
6646
6889
|
id: string;
|
|
6647
6890
|
name: string;
|
|
6648
|
-
api: "
|
|
6891
|
+
api: "openai-completions";
|
|
6649
6892
|
provider: string;
|
|
6650
6893
|
baseUrl: string;
|
|
6651
6894
|
reasoning: true;
|
|
@@ -6659,7 +6902,7 @@ export declare const MODELS: {
|
|
|
6659
6902
|
contextWindow: number;
|
|
6660
6903
|
maxTokens: number;
|
|
6661
6904
|
};
|
|
6662
|
-
readonly "
|
|
6905
|
+
readonly "glm-5.1": {
|
|
6663
6906
|
id: string;
|
|
6664
6907
|
name: string;
|
|
6665
6908
|
api: "openai-completions";
|
|
@@ -6676,16 +6919,14 @@ export declare const MODELS: {
|
|
|
6676
6919
|
contextWindow: number;
|
|
6677
6920
|
maxTokens: number;
|
|
6678
6921
|
};
|
|
6679
|
-
|
|
6680
|
-
readonly "opencode-go": {
|
|
6681
|
-
readonly "glm-5": {
|
|
6922
|
+
readonly "kimi-k2.5": {
|
|
6682
6923
|
id: string;
|
|
6683
6924
|
name: string;
|
|
6684
6925
|
api: "openai-completions";
|
|
6685
6926
|
provider: string;
|
|
6686
6927
|
baseUrl: string;
|
|
6687
6928
|
reasoning: true;
|
|
6688
|
-
input: "text"[];
|
|
6929
|
+
input: ("text" | "image")[];
|
|
6689
6930
|
cost: {
|
|
6690
6931
|
input: number;
|
|
6691
6932
|
output: number;
|
|
@@ -6695,7 +6936,7 @@ export declare const MODELS: {
|
|
|
6695
6936
|
contextWindow: number;
|
|
6696
6937
|
maxTokens: number;
|
|
6697
6938
|
};
|
|
6698
|
-
readonly "
|
|
6939
|
+
readonly "mimo-v2-omni": {
|
|
6699
6940
|
id: string;
|
|
6700
6941
|
name: string;
|
|
6701
6942
|
api: "openai-completions";
|
|
@@ -6712,6 +6953,23 @@ export declare const MODELS: {
|
|
|
6712
6953
|
contextWindow: number;
|
|
6713
6954
|
maxTokens: number;
|
|
6714
6955
|
};
|
|
6956
|
+
readonly "mimo-v2-pro": {
|
|
6957
|
+
id: string;
|
|
6958
|
+
name: string;
|
|
6959
|
+
api: "openai-completions";
|
|
6960
|
+
provider: string;
|
|
6961
|
+
baseUrl: string;
|
|
6962
|
+
reasoning: true;
|
|
6963
|
+
input: "text"[];
|
|
6964
|
+
cost: {
|
|
6965
|
+
input: number;
|
|
6966
|
+
output: number;
|
|
6967
|
+
cacheRead: number;
|
|
6968
|
+
cacheWrite: number;
|
|
6969
|
+
};
|
|
6970
|
+
contextWindow: number;
|
|
6971
|
+
maxTokens: number;
|
|
6972
|
+
};
|
|
6715
6973
|
readonly "minimax-m2.5": {
|
|
6716
6974
|
id: string;
|
|
6717
6975
|
name: string;
|
|
@@ -6918,13 +7176,13 @@ export declare const MODELS: {
|
|
|
6918
7176
|
contextWindow: number;
|
|
6919
7177
|
maxTokens: number;
|
|
6920
7178
|
};
|
|
6921
|
-
readonly "anthropic/claude-3.
|
|
7179
|
+
readonly "anthropic/claude-3.7-sonnet": {
|
|
6922
7180
|
id: string;
|
|
6923
7181
|
name: string;
|
|
6924
7182
|
api: "openai-completions";
|
|
6925
7183
|
provider: string;
|
|
6926
7184
|
baseUrl: string;
|
|
6927
|
-
reasoning:
|
|
7185
|
+
reasoning: true;
|
|
6928
7186
|
input: ("text" | "image")[];
|
|
6929
7187
|
cost: {
|
|
6930
7188
|
input: number;
|
|
@@ -6935,7 +7193,7 @@ export declare const MODELS: {
|
|
|
6935
7193
|
contextWindow: number;
|
|
6936
7194
|
maxTokens: number;
|
|
6937
7195
|
};
|
|
6938
|
-
readonly "anthropic/claude-3.7-sonnet": {
|
|
7196
|
+
readonly "anthropic/claude-3.7-sonnet:thinking": {
|
|
6939
7197
|
id: string;
|
|
6940
7198
|
name: string;
|
|
6941
7199
|
api: "openai-completions";
|
|
@@ -6952,7 +7210,7 @@ export declare const MODELS: {
|
|
|
6952
7210
|
contextWindow: number;
|
|
6953
7211
|
maxTokens: number;
|
|
6954
7212
|
};
|
|
6955
|
-
readonly "anthropic/claude-
|
|
7213
|
+
readonly "anthropic/claude-haiku-4.5": {
|
|
6956
7214
|
id: string;
|
|
6957
7215
|
name: string;
|
|
6958
7216
|
api: "openai-completions";
|
|
@@ -6969,7 +7227,7 @@ export declare const MODELS: {
|
|
|
6969
7227
|
contextWindow: number;
|
|
6970
7228
|
maxTokens: number;
|
|
6971
7229
|
};
|
|
6972
|
-
readonly "anthropic/claude-
|
|
7230
|
+
readonly "anthropic/claude-opus-4": {
|
|
6973
7231
|
id: string;
|
|
6974
7232
|
name: string;
|
|
6975
7233
|
api: "openai-completions";
|
|
@@ -6986,7 +7244,7 @@ export declare const MODELS: {
|
|
|
6986
7244
|
contextWindow: number;
|
|
6987
7245
|
maxTokens: number;
|
|
6988
7246
|
};
|
|
6989
|
-
readonly "anthropic/claude-opus-4": {
|
|
7247
|
+
readonly "anthropic/claude-opus-4.1": {
|
|
6990
7248
|
id: string;
|
|
6991
7249
|
name: string;
|
|
6992
7250
|
api: "openai-completions";
|
|
@@ -7003,7 +7261,7 @@ export declare const MODELS: {
|
|
|
7003
7261
|
contextWindow: number;
|
|
7004
7262
|
maxTokens: number;
|
|
7005
7263
|
};
|
|
7006
|
-
readonly "anthropic/claude-opus-4.
|
|
7264
|
+
readonly "anthropic/claude-opus-4.5": {
|
|
7007
7265
|
id: string;
|
|
7008
7266
|
name: string;
|
|
7009
7267
|
api: "openai-completions";
|
|
@@ -7020,7 +7278,7 @@ export declare const MODELS: {
|
|
|
7020
7278
|
contextWindow: number;
|
|
7021
7279
|
maxTokens: number;
|
|
7022
7280
|
};
|
|
7023
|
-
readonly "anthropic/claude-opus-4.
|
|
7281
|
+
readonly "anthropic/claude-opus-4.6": {
|
|
7024
7282
|
id: string;
|
|
7025
7283
|
name: string;
|
|
7026
7284
|
api: "openai-completions";
|
|
@@ -7037,7 +7295,7 @@ export declare const MODELS: {
|
|
|
7037
7295
|
contextWindow: number;
|
|
7038
7296
|
maxTokens: number;
|
|
7039
7297
|
};
|
|
7040
|
-
readonly "anthropic/claude-opus-4.6": {
|
|
7298
|
+
readonly "anthropic/claude-opus-4.6-fast": {
|
|
7041
7299
|
id: string;
|
|
7042
7300
|
name: string;
|
|
7043
7301
|
api: "openai-completions";
|
|
@@ -7122,7 +7380,7 @@ export declare const MODELS: {
|
|
|
7122
7380
|
contextWindow: number;
|
|
7123
7381
|
maxTokens: number;
|
|
7124
7382
|
};
|
|
7125
|
-
readonly "arcee-ai/trinity-
|
|
7383
|
+
readonly "arcee-ai/trinity-large-thinking": {
|
|
7126
7384
|
id: string;
|
|
7127
7385
|
name: string;
|
|
7128
7386
|
api: "openai-completions";
|
|
@@ -7139,7 +7397,7 @@ export declare const MODELS: {
|
|
|
7139
7397
|
contextWindow: number;
|
|
7140
7398
|
maxTokens: number;
|
|
7141
7399
|
};
|
|
7142
|
-
readonly "arcee-ai/trinity-mini
|
|
7400
|
+
readonly "arcee-ai/trinity-mini": {
|
|
7143
7401
|
id: string;
|
|
7144
7402
|
name: string;
|
|
7145
7403
|
api: "openai-completions";
|
|
@@ -7632,7 +7890,7 @@ export declare const MODELS: {
|
|
|
7632
7890
|
contextWindow: number;
|
|
7633
7891
|
maxTokens: number;
|
|
7634
7892
|
};
|
|
7635
|
-
readonly "google/gemini-3-
|
|
7893
|
+
readonly "google/gemini-3.1-flash-lite-preview": {
|
|
7636
7894
|
id: string;
|
|
7637
7895
|
name: string;
|
|
7638
7896
|
api: "openai-completions";
|
|
@@ -7649,7 +7907,7 @@ export declare const MODELS: {
|
|
|
7649
7907
|
contextWindow: number;
|
|
7650
7908
|
maxTokens: number;
|
|
7651
7909
|
};
|
|
7652
|
-
readonly "google/gemini-3.1-
|
|
7910
|
+
readonly "google/gemini-3.1-pro-preview": {
|
|
7653
7911
|
id: string;
|
|
7654
7912
|
name: string;
|
|
7655
7913
|
api: "openai-completions";
|
|
@@ -7666,7 +7924,7 @@ export declare const MODELS: {
|
|
|
7666
7924
|
contextWindow: number;
|
|
7667
7925
|
maxTokens: number;
|
|
7668
7926
|
};
|
|
7669
|
-
readonly "google/gemini-3.1-pro-preview": {
|
|
7927
|
+
readonly "google/gemini-3.1-pro-preview-customtools": {
|
|
7670
7928
|
id: string;
|
|
7671
7929
|
name: string;
|
|
7672
7930
|
api: "openai-completions";
|
|
@@ -7683,7 +7941,58 @@ export declare const MODELS: {
|
|
|
7683
7941
|
contextWindow: number;
|
|
7684
7942
|
maxTokens: number;
|
|
7685
7943
|
};
|
|
7686
|
-
readonly "google/
|
|
7944
|
+
readonly "google/gemma-4-26b-a4b-it": {
|
|
7945
|
+
id: string;
|
|
7946
|
+
name: string;
|
|
7947
|
+
api: "openai-completions";
|
|
7948
|
+
provider: string;
|
|
7949
|
+
baseUrl: string;
|
|
7950
|
+
reasoning: true;
|
|
7951
|
+
input: ("text" | "image")[];
|
|
7952
|
+
cost: {
|
|
7953
|
+
input: number;
|
|
7954
|
+
output: number;
|
|
7955
|
+
cacheRead: number;
|
|
7956
|
+
cacheWrite: number;
|
|
7957
|
+
};
|
|
7958
|
+
contextWindow: number;
|
|
7959
|
+
maxTokens: number;
|
|
7960
|
+
};
|
|
7961
|
+
readonly "google/gemma-4-26b-a4b-it:free": {
|
|
7962
|
+
id: string;
|
|
7963
|
+
name: string;
|
|
7964
|
+
api: "openai-completions";
|
|
7965
|
+
provider: string;
|
|
7966
|
+
baseUrl: string;
|
|
7967
|
+
reasoning: true;
|
|
7968
|
+
input: ("text" | "image")[];
|
|
7969
|
+
cost: {
|
|
7970
|
+
input: number;
|
|
7971
|
+
output: number;
|
|
7972
|
+
cacheRead: number;
|
|
7973
|
+
cacheWrite: number;
|
|
7974
|
+
};
|
|
7975
|
+
contextWindow: number;
|
|
7976
|
+
maxTokens: number;
|
|
7977
|
+
};
|
|
7978
|
+
readonly "google/gemma-4-31b-it": {
|
|
7979
|
+
id: string;
|
|
7980
|
+
name: string;
|
|
7981
|
+
api: "openai-completions";
|
|
7982
|
+
provider: string;
|
|
7983
|
+
baseUrl: string;
|
|
7984
|
+
reasoning: true;
|
|
7985
|
+
input: ("text" | "image")[];
|
|
7986
|
+
cost: {
|
|
7987
|
+
input: number;
|
|
7988
|
+
output: number;
|
|
7989
|
+
cacheRead: number;
|
|
7990
|
+
cacheWrite: number;
|
|
7991
|
+
};
|
|
7992
|
+
contextWindow: number;
|
|
7993
|
+
maxTokens: number;
|
|
7994
|
+
};
|
|
7995
|
+
readonly "google/gemma-4-31b-it:free": {
|
|
7687
7996
|
id: string;
|
|
7688
7997
|
name: string;
|
|
7689
7998
|
api: "openai-completions";
|
|
@@ -7751,7 +8060,7 @@ export declare const MODELS: {
|
|
|
7751
8060
|
contextWindow: number;
|
|
7752
8061
|
maxTokens: number;
|
|
7753
8062
|
};
|
|
7754
|
-
readonly "kwaipilot/kat-coder-pro": {
|
|
8063
|
+
readonly "kwaipilot/kat-coder-pro-v2": {
|
|
7755
8064
|
id: string;
|
|
7756
8065
|
name: string;
|
|
7757
8066
|
api: "openai-completions";
|
|
@@ -8261,23 +8570,6 @@ export declare const MODELS: {
|
|
|
8261
8570
|
contextWindow: number;
|
|
8262
8571
|
maxTokens: number;
|
|
8263
8572
|
};
|
|
8264
|
-
readonly "mistralai/mistral-small-24b-instruct-2501": {
|
|
8265
|
-
id: string;
|
|
8266
|
-
name: string;
|
|
8267
|
-
api: "openai-completions";
|
|
8268
|
-
provider: string;
|
|
8269
|
-
baseUrl: string;
|
|
8270
|
-
reasoning: false;
|
|
8271
|
-
input: "text"[];
|
|
8272
|
-
cost: {
|
|
8273
|
-
input: number;
|
|
8274
|
-
output: number;
|
|
8275
|
-
cacheRead: number;
|
|
8276
|
-
cacheWrite: number;
|
|
8277
|
-
};
|
|
8278
|
-
contextWindow: number;
|
|
8279
|
-
maxTokens: number;
|
|
8280
|
-
};
|
|
8281
8573
|
readonly "mistralai/mistral-small-2603": {
|
|
8282
8574
|
id: string;
|
|
8283
8575
|
name: string;
|
|
@@ -8295,23 +8587,6 @@ export declare const MODELS: {
|
|
|
8295
8587
|
contextWindow: number;
|
|
8296
8588
|
maxTokens: number;
|
|
8297
8589
|
};
|
|
8298
|
-
readonly "mistralai/mistral-small-3.1-24b-instruct:free": {
|
|
8299
|
-
id: string;
|
|
8300
|
-
name: string;
|
|
8301
|
-
api: "openai-completions";
|
|
8302
|
-
provider: string;
|
|
8303
|
-
baseUrl: string;
|
|
8304
|
-
reasoning: false;
|
|
8305
|
-
input: ("text" | "image")[];
|
|
8306
|
-
cost: {
|
|
8307
|
-
input: number;
|
|
8308
|
-
output: number;
|
|
8309
|
-
cacheRead: number;
|
|
8310
|
-
cacheWrite: number;
|
|
8311
|
-
};
|
|
8312
|
-
contextWindow: number;
|
|
8313
|
-
maxTokens: number;
|
|
8314
|
-
};
|
|
8315
8590
|
readonly "mistralai/mistral-small-3.2-24b-instruct": {
|
|
8316
8591
|
id: string;
|
|
8317
8592
|
name: string;
|
|
@@ -9349,6 +9624,40 @@ export declare const MODELS: {
|
|
|
9349
9624
|
contextWindow: number;
|
|
9350
9625
|
maxTokens: number;
|
|
9351
9626
|
};
|
|
9627
|
+
readonly "openai/gpt-audio": {
|
|
9628
|
+
id: string;
|
|
9629
|
+
name: string;
|
|
9630
|
+
api: "openai-completions";
|
|
9631
|
+
provider: string;
|
|
9632
|
+
baseUrl: string;
|
|
9633
|
+
reasoning: false;
|
|
9634
|
+
input: "text"[];
|
|
9635
|
+
cost: {
|
|
9636
|
+
input: number;
|
|
9637
|
+
output: number;
|
|
9638
|
+
cacheRead: number;
|
|
9639
|
+
cacheWrite: number;
|
|
9640
|
+
};
|
|
9641
|
+
contextWindow: number;
|
|
9642
|
+
maxTokens: number;
|
|
9643
|
+
};
|
|
9644
|
+
readonly "openai/gpt-audio-mini": {
|
|
9645
|
+
id: string;
|
|
9646
|
+
name: string;
|
|
9647
|
+
api: "openai-completions";
|
|
9648
|
+
provider: string;
|
|
9649
|
+
baseUrl: string;
|
|
9650
|
+
reasoning: false;
|
|
9651
|
+
input: "text"[];
|
|
9652
|
+
cost: {
|
|
9653
|
+
input: number;
|
|
9654
|
+
output: number;
|
|
9655
|
+
cacheRead: number;
|
|
9656
|
+
cacheWrite: number;
|
|
9657
|
+
};
|
|
9658
|
+
contextWindow: number;
|
|
9659
|
+
maxTokens: number;
|
|
9660
|
+
};
|
|
9352
9661
|
readonly "openai/gpt-oss-120b": {
|
|
9353
9662
|
id: string;
|
|
9354
9663
|
name: string;
|
|
@@ -9910,23 +10219,6 @@ export declare const MODELS: {
|
|
|
9910
10219
|
contextWindow: number;
|
|
9911
10220
|
maxTokens: number;
|
|
9912
10221
|
};
|
|
9913
|
-
readonly "qwen/qwen3-4b:free": {
|
|
9914
|
-
id: string;
|
|
9915
|
-
name: string;
|
|
9916
|
-
api: "openai-completions";
|
|
9917
|
-
provider: string;
|
|
9918
|
-
baseUrl: string;
|
|
9919
|
-
reasoning: true;
|
|
9920
|
-
input: "text"[];
|
|
9921
|
-
cost: {
|
|
9922
|
-
input: number;
|
|
9923
|
-
output: number;
|
|
9924
|
-
cacheRead: number;
|
|
9925
|
-
cacheWrite: number;
|
|
9926
|
-
};
|
|
9927
|
-
contextWindow: number;
|
|
9928
|
-
maxTokens: number;
|
|
9929
|
-
};
|
|
9930
10222
|
readonly "qwen/qwen3-8b": {
|
|
9931
10223
|
id: string;
|
|
9932
10224
|
name: string;
|
|
@@ -10369,6 +10661,23 @@ export declare const MODELS: {
|
|
|
10369
10661
|
contextWindow: number;
|
|
10370
10662
|
maxTokens: number;
|
|
10371
10663
|
};
|
|
10664
|
+
readonly "qwen/qwen3.6-plus": {
|
|
10665
|
+
id: string;
|
|
10666
|
+
name: string;
|
|
10667
|
+
api: "openai-completions";
|
|
10668
|
+
provider: string;
|
|
10669
|
+
baseUrl: string;
|
|
10670
|
+
reasoning: true;
|
|
10671
|
+
input: ("text" | "image")[];
|
|
10672
|
+
cost: {
|
|
10673
|
+
input: number;
|
|
10674
|
+
output: number;
|
|
10675
|
+
cacheRead: number;
|
|
10676
|
+
cacheWrite: number;
|
|
10677
|
+
};
|
|
10678
|
+
contextWindow: number;
|
|
10679
|
+
maxTokens: number;
|
|
10680
|
+
};
|
|
10372
10681
|
readonly "qwen/qwq-32b": {
|
|
10373
10682
|
id: string;
|
|
10374
10683
|
name: string;
|
|
@@ -10386,14 +10695,14 @@ export declare const MODELS: {
|
|
|
10386
10695
|
contextWindow: number;
|
|
10387
10696
|
maxTokens: number;
|
|
10388
10697
|
};
|
|
10389
|
-
readonly "
|
|
10698
|
+
readonly "rekaai/reka-edge": {
|
|
10390
10699
|
id: string;
|
|
10391
10700
|
name: string;
|
|
10392
10701
|
api: "openai-completions";
|
|
10393
10702
|
provider: string;
|
|
10394
10703
|
baseUrl: string;
|
|
10395
10704
|
reasoning: false;
|
|
10396
|
-
input: "text"[];
|
|
10705
|
+
input: ("text" | "image")[];
|
|
10397
10706
|
cost: {
|
|
10398
10707
|
input: number;
|
|
10399
10708
|
output: number;
|
|
@@ -10403,7 +10712,7 @@ export declare const MODELS: {
|
|
|
10403
10712
|
contextWindow: number;
|
|
10404
10713
|
maxTokens: number;
|
|
10405
10714
|
};
|
|
10406
|
-
readonly "
|
|
10715
|
+
readonly "relace/relace-search": {
|
|
10407
10716
|
id: string;
|
|
10408
10717
|
name: string;
|
|
10409
10718
|
api: "openai-completions";
|
|
@@ -10420,7 +10729,7 @@ export declare const MODELS: {
|
|
|
10420
10729
|
contextWindow: number;
|
|
10421
10730
|
maxTokens: number;
|
|
10422
10731
|
};
|
|
10423
|
-
readonly "sao10k/l3
|
|
10732
|
+
readonly "sao10k/l3-euryale-70b": {
|
|
10424
10733
|
id: string;
|
|
10425
10734
|
name: string;
|
|
10426
10735
|
api: "openai-completions";
|
|
@@ -10437,13 +10746,13 @@ export declare const MODELS: {
|
|
|
10437
10746
|
contextWindow: number;
|
|
10438
10747
|
maxTokens: number;
|
|
10439
10748
|
};
|
|
10440
|
-
readonly "
|
|
10749
|
+
readonly "sao10k/l3.1-euryale-70b": {
|
|
10441
10750
|
id: string;
|
|
10442
10751
|
name: string;
|
|
10443
10752
|
api: "openai-completions";
|
|
10444
10753
|
provider: string;
|
|
10445
10754
|
baseUrl: string;
|
|
10446
|
-
reasoning:
|
|
10755
|
+
reasoning: false;
|
|
10447
10756
|
input: "text"[];
|
|
10448
10757
|
cost: {
|
|
10449
10758
|
input: number;
|
|
@@ -10454,7 +10763,7 @@ export declare const MODELS: {
|
|
|
10454
10763
|
contextWindow: number;
|
|
10455
10764
|
maxTokens: number;
|
|
10456
10765
|
};
|
|
10457
|
-
readonly "stepfun/step-3.5-flash
|
|
10766
|
+
readonly "stepfun/step-3.5-flash": {
|
|
10458
10767
|
id: string;
|
|
10459
10768
|
name: string;
|
|
10460
10769
|
api: "openai-completions";
|
|
@@ -10658,7 +10967,7 @@ export declare const MODELS: {
|
|
|
10658
10967
|
contextWindow: number;
|
|
10659
10968
|
maxTokens: number;
|
|
10660
10969
|
};
|
|
10661
|
-
readonly "x-ai/grok-4.20
|
|
10970
|
+
readonly "x-ai/grok-4.20": {
|
|
10662
10971
|
id: string;
|
|
10663
10972
|
name: string;
|
|
10664
10973
|
api: "openai-completions";
|
|
@@ -10930,6 +11239,40 @@ export declare const MODELS: {
|
|
|
10930
11239
|
contextWindow: number;
|
|
10931
11240
|
maxTokens: number;
|
|
10932
11241
|
};
|
|
11242
|
+
readonly "z-ai/glm-5.1": {
|
|
11243
|
+
id: string;
|
|
11244
|
+
name: string;
|
|
11245
|
+
api: "openai-completions";
|
|
11246
|
+
provider: string;
|
|
11247
|
+
baseUrl: string;
|
|
11248
|
+
reasoning: true;
|
|
11249
|
+
input: "text"[];
|
|
11250
|
+
cost: {
|
|
11251
|
+
input: number;
|
|
11252
|
+
output: number;
|
|
11253
|
+
cacheRead: number;
|
|
11254
|
+
cacheWrite: number;
|
|
11255
|
+
};
|
|
11256
|
+
contextWindow: number;
|
|
11257
|
+
maxTokens: number;
|
|
11258
|
+
};
|
|
11259
|
+
readonly "z-ai/glm-5v-turbo": {
|
|
11260
|
+
id: string;
|
|
11261
|
+
name: string;
|
|
11262
|
+
api: "openai-completions";
|
|
11263
|
+
provider: string;
|
|
11264
|
+
baseUrl: string;
|
|
11265
|
+
reasoning: true;
|
|
11266
|
+
input: ("text" | "image")[];
|
|
11267
|
+
cost: {
|
|
11268
|
+
input: number;
|
|
11269
|
+
output: number;
|
|
11270
|
+
cacheRead: number;
|
|
11271
|
+
cacheWrite: number;
|
|
11272
|
+
};
|
|
11273
|
+
contextWindow: number;
|
|
11274
|
+
maxTokens: number;
|
|
11275
|
+
};
|
|
10933
11276
|
};
|
|
10934
11277
|
readonly "vercel-ai-gateway": {
|
|
10935
11278
|
readonly "alibaba/qwen-3-14b": {
|
|
@@ -11187,13 +11530,13 @@ export declare const MODELS: {
|
|
|
11187
11530
|
contextWindow: number;
|
|
11188
11531
|
maxTokens: number;
|
|
11189
11532
|
};
|
|
11190
|
-
readonly "
|
|
11533
|
+
readonly "alibaba/qwen3.6-plus": {
|
|
11191
11534
|
id: string;
|
|
11192
11535
|
name: string;
|
|
11193
11536
|
api: "anthropic-messages";
|
|
11194
11537
|
provider: string;
|
|
11195
11538
|
baseUrl: string;
|
|
11196
|
-
reasoning:
|
|
11539
|
+
reasoning: true;
|
|
11197
11540
|
input: ("text" | "image")[];
|
|
11198
11541
|
cost: {
|
|
11199
11542
|
input: number;
|
|
@@ -11204,7 +11547,7 @@ export declare const MODELS: {
|
|
|
11204
11547
|
contextWindow: number;
|
|
11205
11548
|
maxTokens: number;
|
|
11206
11549
|
};
|
|
11207
|
-
readonly "anthropic/claude-3
|
|
11550
|
+
readonly "anthropic/claude-3-haiku": {
|
|
11208
11551
|
id: string;
|
|
11209
11552
|
name: string;
|
|
11210
11553
|
api: "anthropic-messages";
|
|
@@ -11221,7 +11564,7 @@ export declare const MODELS: {
|
|
|
11221
11564
|
contextWindow: number;
|
|
11222
11565
|
maxTokens: number;
|
|
11223
11566
|
};
|
|
11224
|
-
readonly "anthropic/claude-3.5-
|
|
11567
|
+
readonly "anthropic/claude-3.5-haiku": {
|
|
11225
11568
|
id: string;
|
|
11226
11569
|
name: string;
|
|
11227
11570
|
api: "anthropic-messages";
|
|
@@ -11238,13 +11581,13 @@ export declare const MODELS: {
|
|
|
11238
11581
|
contextWindow: number;
|
|
11239
11582
|
maxTokens: number;
|
|
11240
11583
|
};
|
|
11241
|
-
readonly "anthropic/claude-3.
|
|
11584
|
+
readonly "anthropic/claude-3.7-sonnet": {
|
|
11242
11585
|
id: string;
|
|
11243
11586
|
name: string;
|
|
11244
11587
|
api: "anthropic-messages";
|
|
11245
11588
|
provider: string;
|
|
11246
11589
|
baseUrl: string;
|
|
11247
|
-
reasoning:
|
|
11590
|
+
reasoning: true;
|
|
11248
11591
|
input: ("text" | "image")[];
|
|
11249
11592
|
cost: {
|
|
11250
11593
|
input: number;
|
|
@@ -11255,7 +11598,7 @@ export declare const MODELS: {
|
|
|
11255
11598
|
contextWindow: number;
|
|
11256
11599
|
maxTokens: number;
|
|
11257
11600
|
};
|
|
11258
|
-
readonly "anthropic/claude-
|
|
11601
|
+
readonly "anthropic/claude-haiku-4.5": {
|
|
11259
11602
|
id: string;
|
|
11260
11603
|
name: string;
|
|
11261
11604
|
api: "anthropic-messages";
|
|
@@ -11272,7 +11615,7 @@ export declare const MODELS: {
|
|
|
11272
11615
|
contextWindow: number;
|
|
11273
11616
|
maxTokens: number;
|
|
11274
11617
|
};
|
|
11275
|
-
readonly "anthropic/claude-
|
|
11618
|
+
readonly "anthropic/claude-opus-4": {
|
|
11276
11619
|
id: string;
|
|
11277
11620
|
name: string;
|
|
11278
11621
|
api: "anthropic-messages";
|
|
@@ -11289,7 +11632,7 @@ export declare const MODELS: {
|
|
|
11289
11632
|
contextWindow: number;
|
|
11290
11633
|
maxTokens: number;
|
|
11291
11634
|
};
|
|
11292
|
-
readonly "anthropic/claude-opus-4": {
|
|
11635
|
+
readonly "anthropic/claude-opus-4.1": {
|
|
11293
11636
|
id: string;
|
|
11294
11637
|
name: string;
|
|
11295
11638
|
api: "anthropic-messages";
|
|
@@ -11306,7 +11649,7 @@ export declare const MODELS: {
|
|
|
11306
11649
|
contextWindow: number;
|
|
11307
11650
|
maxTokens: number;
|
|
11308
11651
|
};
|
|
11309
|
-
readonly "anthropic/claude-opus-4.
|
|
11652
|
+
readonly "anthropic/claude-opus-4.5": {
|
|
11310
11653
|
id: string;
|
|
11311
11654
|
name: string;
|
|
11312
11655
|
api: "anthropic-messages";
|
|
@@ -11323,7 +11666,7 @@ export declare const MODELS: {
|
|
|
11323
11666
|
contextWindow: number;
|
|
11324
11667
|
maxTokens: number;
|
|
11325
11668
|
};
|
|
11326
|
-
readonly "anthropic/claude-opus-4.
|
|
11669
|
+
readonly "anthropic/claude-opus-4.6": {
|
|
11327
11670
|
id: string;
|
|
11328
11671
|
name: string;
|
|
11329
11672
|
api: "anthropic-messages";
|
|
@@ -11340,7 +11683,7 @@ export declare const MODELS: {
|
|
|
11340
11683
|
contextWindow: number;
|
|
11341
11684
|
maxTokens: number;
|
|
11342
11685
|
};
|
|
11343
|
-
readonly "anthropic/claude-
|
|
11686
|
+
readonly "anthropic/claude-sonnet-4": {
|
|
11344
11687
|
id: string;
|
|
11345
11688
|
name: string;
|
|
11346
11689
|
api: "anthropic-messages";
|
|
@@ -11357,7 +11700,7 @@ export declare const MODELS: {
|
|
|
11357
11700
|
contextWindow: number;
|
|
11358
11701
|
maxTokens: number;
|
|
11359
11702
|
};
|
|
11360
|
-
readonly "anthropic/claude-sonnet-4": {
|
|
11703
|
+
readonly "anthropic/claude-sonnet-4.5": {
|
|
11361
11704
|
id: string;
|
|
11362
11705
|
name: string;
|
|
11363
11706
|
api: "anthropic-messages";
|
|
@@ -11374,7 +11717,7 @@ export declare const MODELS: {
|
|
|
11374
11717
|
contextWindow: number;
|
|
11375
11718
|
maxTokens: number;
|
|
11376
11719
|
};
|
|
11377
|
-
readonly "anthropic/claude-sonnet-4.
|
|
11720
|
+
readonly "anthropic/claude-sonnet-4.6": {
|
|
11378
11721
|
id: string;
|
|
11379
11722
|
name: string;
|
|
11380
11723
|
api: "anthropic-messages";
|
|
@@ -11391,14 +11734,14 @@ export declare const MODELS: {
|
|
|
11391
11734
|
contextWindow: number;
|
|
11392
11735
|
maxTokens: number;
|
|
11393
11736
|
};
|
|
11394
|
-
readonly "
|
|
11737
|
+
readonly "arcee-ai/trinity-large-preview": {
|
|
11395
11738
|
id: string;
|
|
11396
11739
|
name: string;
|
|
11397
11740
|
api: "anthropic-messages";
|
|
11398
11741
|
provider: string;
|
|
11399
11742
|
baseUrl: string;
|
|
11400
|
-
reasoning:
|
|
11401
|
-
input:
|
|
11743
|
+
reasoning: false;
|
|
11744
|
+
input: "text"[];
|
|
11402
11745
|
cost: {
|
|
11403
11746
|
input: number;
|
|
11404
11747
|
output: number;
|
|
@@ -11408,13 +11751,13 @@ export declare const MODELS: {
|
|
|
11408
11751
|
contextWindow: number;
|
|
11409
11752
|
maxTokens: number;
|
|
11410
11753
|
};
|
|
11411
|
-
readonly "arcee-ai/trinity-large-
|
|
11754
|
+
readonly "arcee-ai/trinity-large-thinking": {
|
|
11412
11755
|
id: string;
|
|
11413
11756
|
name: string;
|
|
11414
11757
|
api: "anthropic-messages";
|
|
11415
11758
|
provider: string;
|
|
11416
11759
|
baseUrl: string;
|
|
11417
|
-
reasoning:
|
|
11760
|
+
reasoning: true;
|
|
11418
11761
|
input: "text"[];
|
|
11419
11762
|
cost: {
|
|
11420
11763
|
input: number;
|
|
@@ -11714,6 +12057,40 @@ export declare const MODELS: {
|
|
|
11714
12057
|
contextWindow: number;
|
|
11715
12058
|
maxTokens: number;
|
|
11716
12059
|
};
|
|
12060
|
+
readonly "google/gemma-4-26b-a4b-it": {
|
|
12061
|
+
id: string;
|
|
12062
|
+
name: string;
|
|
12063
|
+
api: "anthropic-messages";
|
|
12064
|
+
provider: string;
|
|
12065
|
+
baseUrl: string;
|
|
12066
|
+
reasoning: false;
|
|
12067
|
+
input: ("text" | "image")[];
|
|
12068
|
+
cost: {
|
|
12069
|
+
input: number;
|
|
12070
|
+
output: number;
|
|
12071
|
+
cacheRead: number;
|
|
12072
|
+
cacheWrite: number;
|
|
12073
|
+
};
|
|
12074
|
+
contextWindow: number;
|
|
12075
|
+
maxTokens: number;
|
|
12076
|
+
};
|
|
12077
|
+
readonly "google/gemma-4-31b-it": {
|
|
12078
|
+
id: string;
|
|
12079
|
+
name: string;
|
|
12080
|
+
api: "anthropic-messages";
|
|
12081
|
+
provider: string;
|
|
12082
|
+
baseUrl: string;
|
|
12083
|
+
reasoning: false;
|
|
12084
|
+
input: ("text" | "image")[];
|
|
12085
|
+
cost: {
|
|
12086
|
+
input: number;
|
|
12087
|
+
output: number;
|
|
12088
|
+
cacheRead: number;
|
|
12089
|
+
cacheWrite: number;
|
|
12090
|
+
};
|
|
12091
|
+
contextWindow: number;
|
|
12092
|
+
maxTokens: number;
|
|
12093
|
+
};
|
|
11717
12094
|
readonly "inception/mercury-2": {
|
|
11718
12095
|
id: string;
|
|
11719
12096
|
name: string;
|
|
@@ -11748,13 +12125,13 @@ export declare const MODELS: {
|
|
|
11748
12125
|
contextWindow: number;
|
|
11749
12126
|
maxTokens: number;
|
|
11750
12127
|
};
|
|
11751
|
-
readonly "
|
|
12128
|
+
readonly "kwaipilot/kat-coder-pro-v2": {
|
|
11752
12129
|
id: string;
|
|
11753
12130
|
name: string;
|
|
11754
12131
|
api: "anthropic-messages";
|
|
11755
12132
|
provider: string;
|
|
11756
12133
|
baseUrl: string;
|
|
11757
|
-
reasoning:
|
|
12134
|
+
reasoning: true;
|
|
11758
12135
|
input: "text"[];
|
|
11759
12136
|
cost: {
|
|
11760
12137
|
input: number;
|
|
@@ -11765,13 +12142,13 @@ export declare const MODELS: {
|
|
|
11765
12142
|
contextWindow: number;
|
|
11766
12143
|
maxTokens: number;
|
|
11767
12144
|
};
|
|
11768
|
-
readonly "meituan/longcat-flash-
|
|
12145
|
+
readonly "meituan/longcat-flash-chat": {
|
|
11769
12146
|
id: string;
|
|
11770
12147
|
name: string;
|
|
11771
12148
|
api: "anthropic-messages";
|
|
11772
12149
|
provider: string;
|
|
11773
12150
|
baseUrl: string;
|
|
11774
|
-
reasoning:
|
|
12151
|
+
reasoning: false;
|
|
11775
12152
|
input: "text"[];
|
|
11776
12153
|
cost: {
|
|
11777
12154
|
input: number;
|
|
@@ -12972,14 +13349,14 @@ export declare const MODELS: {
|
|
|
12972
13349
|
contextWindow: number;
|
|
12973
13350
|
maxTokens: number;
|
|
12974
13351
|
};
|
|
12975
|
-
readonly "xai/grok-
|
|
13352
|
+
readonly "xai/grok-3": {
|
|
12976
13353
|
id: string;
|
|
12977
13354
|
name: string;
|
|
12978
13355
|
api: "anthropic-messages";
|
|
12979
13356
|
provider: string;
|
|
12980
13357
|
baseUrl: string;
|
|
12981
13358
|
reasoning: false;
|
|
12982
|
-
input:
|
|
13359
|
+
input: "text"[];
|
|
12983
13360
|
cost: {
|
|
12984
13361
|
input: number;
|
|
12985
13362
|
output: number;
|
|
@@ -12989,7 +13366,7 @@ export declare const MODELS: {
|
|
|
12989
13366
|
contextWindow: number;
|
|
12990
13367
|
maxTokens: number;
|
|
12991
13368
|
};
|
|
12992
|
-
readonly "xai/grok-3": {
|
|
13369
|
+
readonly "xai/grok-3-fast": {
|
|
12993
13370
|
id: string;
|
|
12994
13371
|
name: string;
|
|
12995
13372
|
api: "anthropic-messages";
|
|
@@ -13006,7 +13383,7 @@ export declare const MODELS: {
|
|
|
13006
13383
|
contextWindow: number;
|
|
13007
13384
|
maxTokens: number;
|
|
13008
13385
|
};
|
|
13009
|
-
readonly "xai/grok-3-
|
|
13386
|
+
readonly "xai/grok-3-mini": {
|
|
13010
13387
|
id: string;
|
|
13011
13388
|
name: string;
|
|
13012
13389
|
api: "anthropic-messages";
|
|
@@ -13023,7 +13400,7 @@ export declare const MODELS: {
|
|
|
13023
13400
|
contextWindow: number;
|
|
13024
13401
|
maxTokens: number;
|
|
13025
13402
|
};
|
|
13026
|
-
readonly "xai/grok-3-mini": {
|
|
13403
|
+
readonly "xai/grok-3-mini-fast": {
|
|
13027
13404
|
id: string;
|
|
13028
13405
|
name: string;
|
|
13029
13406
|
api: "anthropic-messages";
|
|
@@ -13040,7 +13417,24 @@ export declare const MODELS: {
|
|
|
13040
13417
|
contextWindow: number;
|
|
13041
13418
|
maxTokens: number;
|
|
13042
13419
|
};
|
|
13043
|
-
readonly "xai/grok-
|
|
13420
|
+
readonly "xai/grok-4": {
|
|
13421
|
+
id: string;
|
|
13422
|
+
name: string;
|
|
13423
|
+
api: "anthropic-messages";
|
|
13424
|
+
provider: string;
|
|
13425
|
+
baseUrl: string;
|
|
13426
|
+
reasoning: true;
|
|
13427
|
+
input: ("text" | "image")[];
|
|
13428
|
+
cost: {
|
|
13429
|
+
input: number;
|
|
13430
|
+
output: number;
|
|
13431
|
+
cacheRead: number;
|
|
13432
|
+
cacheWrite: number;
|
|
13433
|
+
};
|
|
13434
|
+
contextWindow: number;
|
|
13435
|
+
maxTokens: number;
|
|
13436
|
+
};
|
|
13437
|
+
readonly "xai/grok-4-fast-non-reasoning": {
|
|
13044
13438
|
id: string;
|
|
13045
13439
|
name: string;
|
|
13046
13440
|
api: "anthropic-messages";
|
|
@@ -13057,14 +13451,14 @@ export declare const MODELS: {
|
|
|
13057
13451
|
contextWindow: number;
|
|
13058
13452
|
maxTokens: number;
|
|
13059
13453
|
};
|
|
13060
|
-
readonly "xai/grok-4": {
|
|
13454
|
+
readonly "xai/grok-4-fast-reasoning": {
|
|
13061
13455
|
id: string;
|
|
13062
13456
|
name: string;
|
|
13063
13457
|
api: "anthropic-messages";
|
|
13064
13458
|
provider: string;
|
|
13065
13459
|
baseUrl: string;
|
|
13066
13460
|
reasoning: true;
|
|
13067
|
-
input:
|
|
13461
|
+
input: "text"[];
|
|
13068
13462
|
cost: {
|
|
13069
13463
|
input: number;
|
|
13070
13464
|
output: number;
|
|
@@ -13074,7 +13468,7 @@ export declare const MODELS: {
|
|
|
13074
13468
|
contextWindow: number;
|
|
13075
13469
|
maxTokens: number;
|
|
13076
13470
|
};
|
|
13077
|
-
readonly "xai/grok-4-fast-non-reasoning": {
|
|
13471
|
+
readonly "xai/grok-4.1-fast-non-reasoning": {
|
|
13078
13472
|
id: string;
|
|
13079
13473
|
name: string;
|
|
13080
13474
|
api: "anthropic-messages";
|
|
@@ -13091,7 +13485,7 @@ export declare const MODELS: {
|
|
|
13091
13485
|
contextWindow: number;
|
|
13092
13486
|
maxTokens: number;
|
|
13093
13487
|
};
|
|
13094
|
-
readonly "xai/grok-4-fast-reasoning": {
|
|
13488
|
+
readonly "xai/grok-4.1-fast-reasoning": {
|
|
13095
13489
|
id: string;
|
|
13096
13490
|
name: string;
|
|
13097
13491
|
api: "anthropic-messages";
|
|
@@ -13108,13 +13502,13 @@ export declare const MODELS: {
|
|
|
13108
13502
|
contextWindow: number;
|
|
13109
13503
|
maxTokens: number;
|
|
13110
13504
|
};
|
|
13111
|
-
readonly "xai/grok-4.
|
|
13505
|
+
readonly "xai/grok-4.20-multi-agent": {
|
|
13112
13506
|
id: string;
|
|
13113
13507
|
name: string;
|
|
13114
13508
|
api: "anthropic-messages";
|
|
13115
13509
|
provider: string;
|
|
13116
13510
|
baseUrl: string;
|
|
13117
|
-
reasoning:
|
|
13511
|
+
reasoning: true;
|
|
13118
13512
|
input: "text"[];
|
|
13119
13513
|
cost: {
|
|
13120
13514
|
input: number;
|
|
@@ -13125,7 +13519,7 @@ export declare const MODELS: {
|
|
|
13125
13519
|
contextWindow: number;
|
|
13126
13520
|
maxTokens: number;
|
|
13127
13521
|
};
|
|
13128
|
-
readonly "xai/grok-4.
|
|
13522
|
+
readonly "xai/grok-4.20-multi-agent-beta": {
|
|
13129
13523
|
id: string;
|
|
13130
13524
|
name: string;
|
|
13131
13525
|
api: "anthropic-messages";
|
|
@@ -13142,14 +13536,14 @@ export declare const MODELS: {
|
|
|
13142
13536
|
contextWindow: number;
|
|
13143
13537
|
maxTokens: number;
|
|
13144
13538
|
};
|
|
13145
|
-
readonly "xai/grok-4.20-
|
|
13539
|
+
readonly "xai/grok-4.20-non-reasoning": {
|
|
13146
13540
|
id: string;
|
|
13147
13541
|
name: string;
|
|
13148
13542
|
api: "anthropic-messages";
|
|
13149
13543
|
provider: string;
|
|
13150
13544
|
baseUrl: string;
|
|
13151
|
-
reasoning:
|
|
13152
|
-
input: "text"[];
|
|
13545
|
+
reasoning: false;
|
|
13546
|
+
input: ("text" | "image")[];
|
|
13153
13547
|
cost: {
|
|
13154
13548
|
input: number;
|
|
13155
13549
|
output: number;
|
|
@@ -13176,6 +13570,23 @@ export declare const MODELS: {
|
|
|
13176
13570
|
contextWindow: number;
|
|
13177
13571
|
maxTokens: number;
|
|
13178
13572
|
};
|
|
13573
|
+
readonly "xai/grok-4.20-reasoning": {
|
|
13574
|
+
id: string;
|
|
13575
|
+
name: string;
|
|
13576
|
+
api: "anthropic-messages";
|
|
13577
|
+
provider: string;
|
|
13578
|
+
baseUrl: string;
|
|
13579
|
+
reasoning: true;
|
|
13580
|
+
input: ("text" | "image")[];
|
|
13581
|
+
cost: {
|
|
13582
|
+
input: number;
|
|
13583
|
+
output: number;
|
|
13584
|
+
cacheRead: number;
|
|
13585
|
+
cacheWrite: number;
|
|
13586
|
+
};
|
|
13587
|
+
contextWindow: number;
|
|
13588
|
+
maxTokens: number;
|
|
13589
|
+
};
|
|
13179
13590
|
readonly "xai/grok-4.20-reasoning-beta": {
|
|
13180
13591
|
id: string;
|
|
13181
13592
|
name: string;
|
|
@@ -13431,6 +13842,40 @@ export declare const MODELS: {
|
|
|
13431
13842
|
contextWindow: number;
|
|
13432
13843
|
maxTokens: number;
|
|
13433
13844
|
};
|
|
13845
|
+
readonly "zai/glm-5.1": {
|
|
13846
|
+
id: string;
|
|
13847
|
+
name: string;
|
|
13848
|
+
api: "anthropic-messages";
|
|
13849
|
+
provider: string;
|
|
13850
|
+
baseUrl: string;
|
|
13851
|
+
reasoning: true;
|
|
13852
|
+
input: "text"[];
|
|
13853
|
+
cost: {
|
|
13854
|
+
input: number;
|
|
13855
|
+
output: number;
|
|
13856
|
+
cacheRead: number;
|
|
13857
|
+
cacheWrite: number;
|
|
13858
|
+
};
|
|
13859
|
+
contextWindow: number;
|
|
13860
|
+
maxTokens: number;
|
|
13861
|
+
};
|
|
13862
|
+
readonly "zai/glm-5v-turbo": {
|
|
13863
|
+
id: string;
|
|
13864
|
+
name: string;
|
|
13865
|
+
api: "anthropic-messages";
|
|
13866
|
+
provider: string;
|
|
13867
|
+
baseUrl: string;
|
|
13868
|
+
reasoning: true;
|
|
13869
|
+
input: ("text" | "image")[];
|
|
13870
|
+
cost: {
|
|
13871
|
+
input: number;
|
|
13872
|
+
output: number;
|
|
13873
|
+
cacheRead: number;
|
|
13874
|
+
cacheWrite: number;
|
|
13875
|
+
};
|
|
13876
|
+
contextWindow: number;
|
|
13877
|
+
maxTokens: number;
|
|
13878
|
+
};
|
|
13434
13879
|
};
|
|
13435
13880
|
readonly xai: {
|
|
13436
13881
|
readonly "grok-2": {
|
|
@@ -14011,6 +14456,27 @@ export declare const MODELS: {
|
|
|
14011
14456
|
contextWindow: number;
|
|
14012
14457
|
maxTokens: number;
|
|
14013
14458
|
};
|
|
14459
|
+
readonly "glm-4.7-flashx": {
|
|
14460
|
+
id: string;
|
|
14461
|
+
name: string;
|
|
14462
|
+
api: "openai-completions";
|
|
14463
|
+
provider: string;
|
|
14464
|
+
baseUrl: string;
|
|
14465
|
+
compat: {
|
|
14466
|
+
supportsDeveloperRole: false;
|
|
14467
|
+
thinkingFormat: "zai";
|
|
14468
|
+
};
|
|
14469
|
+
reasoning: true;
|
|
14470
|
+
input: "text"[];
|
|
14471
|
+
cost: {
|
|
14472
|
+
input: number;
|
|
14473
|
+
output: number;
|
|
14474
|
+
cacheRead: number;
|
|
14475
|
+
cacheWrite: number;
|
|
14476
|
+
};
|
|
14477
|
+
contextWindow: number;
|
|
14478
|
+
maxTokens: number;
|
|
14479
|
+
};
|
|
14014
14480
|
readonly "glm-5": {
|
|
14015
14481
|
id: string;
|
|
14016
14482
|
name: string;
|
|
@@ -14053,6 +14519,48 @@ export declare const MODELS: {
|
|
|
14053
14519
|
contextWindow: number;
|
|
14054
14520
|
maxTokens: number;
|
|
14055
14521
|
};
|
|
14522
|
+
readonly "glm-5.1": {
|
|
14523
|
+
id: string;
|
|
14524
|
+
name: string;
|
|
14525
|
+
api: "openai-completions";
|
|
14526
|
+
provider: string;
|
|
14527
|
+
baseUrl: string;
|
|
14528
|
+
compat: {
|
|
14529
|
+
supportsDeveloperRole: false;
|
|
14530
|
+
thinkingFormat: "zai";
|
|
14531
|
+
};
|
|
14532
|
+
reasoning: true;
|
|
14533
|
+
input: "text"[];
|
|
14534
|
+
cost: {
|
|
14535
|
+
input: number;
|
|
14536
|
+
output: number;
|
|
14537
|
+
cacheRead: number;
|
|
14538
|
+
cacheWrite: number;
|
|
14539
|
+
};
|
|
14540
|
+
contextWindow: number;
|
|
14541
|
+
maxTokens: number;
|
|
14542
|
+
};
|
|
14543
|
+
readonly "glm-5v-turbo": {
|
|
14544
|
+
id: string;
|
|
14545
|
+
name: string;
|
|
14546
|
+
api: "openai-completions";
|
|
14547
|
+
provider: string;
|
|
14548
|
+
baseUrl: string;
|
|
14549
|
+
compat: {
|
|
14550
|
+
supportsDeveloperRole: false;
|
|
14551
|
+
thinkingFormat: "zai";
|
|
14552
|
+
};
|
|
14553
|
+
reasoning: true;
|
|
14554
|
+
input: ("text" | "image")[];
|
|
14555
|
+
cost: {
|
|
14556
|
+
input: number;
|
|
14557
|
+
output: number;
|
|
14558
|
+
cacheRead: number;
|
|
14559
|
+
cacheWrite: number;
|
|
14560
|
+
};
|
|
14561
|
+
contextWindow: number;
|
|
14562
|
+
maxTokens: number;
|
|
14563
|
+
};
|
|
14056
14564
|
};
|
|
14057
14565
|
};
|
|
14058
14566
|
//# sourceMappingURL=models.generated.d.ts.map
|