@opengsd/gsd-pi 1.1.1-dev.616a1a1 → 1.1.1-dev.9bb7453
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/dist/cli.js +3 -2
- package/dist/help-text.js +10 -6
- package/dist/resources/.managed-resources-content-hash +1 -1
- package/dist/resources/extensions/browser-tools/engine/managed-gsd-browser.js +495 -0
- package/dist/resources/extensions/browser-tools/engine/selection.js +16 -0
- package/dist/resources/extensions/browser-tools/extension-manifest.json +2 -2
- package/dist/resources/extensions/browser-tools/index.js +57 -9
- package/dist/resources/extensions/browser-tools/package.json +5 -1
- package/dist/resources/extensions/claude-code-cli/stream-adapter.js +167 -16
- package/dist/resources/extensions/gsd/auto/orchestrator.js +0 -1
- package/dist/resources/extensions/gsd/auto/phases.js +4 -3
- package/dist/resources/extensions/gsd/auto-dashboard.js +92 -17
- package/dist/resources/extensions/gsd/auto-dispatch.js +44 -0
- package/dist/resources/extensions/gsd/auto-post-unit.js +134 -10
- package/dist/resources/extensions/gsd/auto-prompts.js +68 -22
- package/dist/resources/extensions/gsd/auto-recovery.js +4 -4
- package/dist/resources/extensions/gsd/auto-runtime-state.js +3 -0
- package/dist/resources/extensions/gsd/auto-start.js +94 -15
- package/dist/resources/extensions/gsd/auto-tool-tracking.js +1 -1
- package/dist/resources/extensions/gsd/auto-unit-tool-scope.js +2 -1
- package/dist/resources/extensions/gsd/auto.js +31 -6
- package/dist/resources/extensions/gsd/bootstrap/db-tools.js +83 -4
- package/dist/resources/extensions/gsd/bootstrap/exec-tools.js +43 -0
- package/dist/resources/extensions/gsd/bootstrap/register-hooks.js +39 -14
- package/dist/resources/extensions/gsd/bootstrap/write-gate.js +16 -10
- package/dist/resources/extensions/gsd/browser-evidence.js +29 -2
- package/dist/resources/extensions/gsd/commands/catalog.js +6 -1
- package/dist/resources/extensions/gsd/commands/handlers/core.js +6 -2
- package/dist/resources/extensions/gsd/commands/handlers/ops.js +9 -5
- package/dist/resources/extensions/gsd/commands-handlers.js +76 -11
- package/dist/resources/extensions/gsd/commands-maintenance.js +172 -2
- package/dist/resources/extensions/gsd/commands-mcp-status.js +109 -60
- package/dist/resources/extensions/gsd/commands-prefs-wizard.js +3 -1
- package/dist/resources/extensions/gsd/commands-verdict.js +1 -1
- package/dist/resources/extensions/gsd/config-overlay.js +2 -1
- package/dist/resources/extensions/gsd/dashboard-overlay.js +21 -7
- package/dist/resources/extensions/gsd/docs/preferences-reference.md +8 -0
- package/dist/resources/extensions/gsd/doctor-runtime-checks.js +2 -2
- package/dist/resources/extensions/gsd/error-classifier.js +2 -1
- package/dist/resources/extensions/gsd/escalation.js +4 -4
- package/dist/resources/extensions/gsd/exec-sandbox.js +2 -0
- package/dist/resources/extensions/gsd/forensics.js +74 -2
- package/dist/resources/extensions/gsd/gsd-db.js +42 -6
- package/dist/resources/extensions/gsd/guided-flow.js +30 -69
- package/dist/resources/extensions/gsd/mcp-filter.js +3 -0
- package/dist/resources/extensions/gsd/mcp-project-config.js +76 -84
- package/dist/resources/extensions/gsd/memory-store.js +4 -1
- package/dist/resources/extensions/gsd/migration-auto-check.js +2 -2
- package/dist/resources/extensions/gsd/post-unit-hooks.js +9 -0
- package/dist/resources/extensions/gsd/preferences-validation.js +39 -0
- package/dist/resources/extensions/gsd/prompt-loader.js +7 -0
- package/dist/resources/extensions/gsd/prompts/forensics.md +61 -1
- package/dist/resources/extensions/gsd/prompts/gate-evaluate.md +3 -1
- package/dist/resources/extensions/gsd/prompts/parallel-research-slices.md +3 -1
- package/dist/resources/extensions/gsd/prompts/plan-slice.md +1 -1
- package/dist/resources/extensions/gsd/prompts/reactive-execute.md +3 -1
- package/dist/resources/extensions/gsd/prompts/run-uat.md +48 -24
- package/dist/resources/extensions/gsd/prompts/system.md +3 -1
- package/dist/resources/extensions/gsd/prompts/validate-milestone.md +3 -3
- package/dist/resources/extensions/gsd/rule-registry.js +428 -52
- package/dist/resources/extensions/gsd/safety/destructive-guard.js +3 -0
- package/dist/resources/extensions/gsd/skill-activation.js +20 -3
- package/dist/resources/extensions/gsd/state-reconciliation/drift/artifact-db.js +4 -2
- package/dist/resources/extensions/gsd/state-reconciliation/drift/project-md.js +1 -1
- package/dist/resources/extensions/gsd/state-reconciliation/drift/roadmap.js +18 -1
- package/dist/resources/extensions/gsd/state-reconciliation/index.js +6 -0
- package/dist/resources/extensions/gsd/state.js +17 -14
- package/dist/resources/extensions/gsd/templates/plan.md +3 -1
- package/dist/resources/extensions/gsd/tool-presentation-plan.js +120 -0
- package/dist/resources/extensions/gsd/tools/complete-slice.js +15 -1
- package/dist/resources/extensions/gsd/tools/complete-task.js +11 -1
- package/dist/resources/extensions/gsd/tools/exec-tool.js +109 -0
- package/dist/resources/extensions/gsd/tools/plan-slice.js +14 -9
- package/dist/resources/extensions/gsd/tools/reopen-milestone.js +2 -2
- package/dist/resources/extensions/gsd/tools/validate-milestone.js +46 -16
- package/dist/resources/extensions/gsd/tools/workflow-tool-executors.js +403 -3
- package/dist/resources/extensions/gsd/unit-context-manifest.js +8 -3
- package/dist/resources/extensions/gsd/validation-block-guard.js +2 -0
- package/dist/resources/extensions/gsd/verdict-parser.js +59 -15
- package/dist/resources/extensions/gsd/verification-gate.js +72 -1
- package/dist/resources/extensions/gsd/workflow-mcp-auto-prep.js +3 -1
- package/dist/resources/extensions/gsd/workflow-mcp.js +5 -1
- package/dist/resources/extensions/gsd/worktree-lifecycle.js +24 -0
- package/dist/resources/extensions/mcp-client/manager.js +31 -1
- package/dist/resources/extensions/shared/gsd-browser-cli.js +145 -0
- package/dist/rtk.d.ts +7 -1
- package/dist/rtk.js +27 -11
- package/dist/update-check.d.ts +15 -1
- package/dist/update-check.js +87 -12
- package/dist/update-cmd.d.ts +1 -0
- package/dist/update-cmd.js +53 -2
- package/dist/web/standalone/.next/BUILD_ID +1 -1
- package/dist/web/standalone/.next/app-path-routes-manifest.json +6 -6
- 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.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.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/update/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-paths-manifest.json +6 -6
- package/dist/web/standalone/.next/server/chunks/8357.js +1 -1
- package/dist/web/standalone/.next/server/middleware-build-manifest.js +1 -1
- 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/package.json +5 -3
- package/packages/cloud-mcp-gateway/package.json +2 -2
- package/packages/contracts/dist/workflow.d.ts +14 -0
- package/packages/contracts/dist/workflow.d.ts.map +1 -1
- package/packages/contracts/dist/workflow.js +16 -0
- package/packages/contracts/dist/workflow.js.map +1 -1
- package/packages/contracts/package.json +1 -1
- package/packages/daemon/package.json +4 -4
- package/packages/gsd-agent-core/dist/agent-session.d.ts +9 -0
- package/packages/gsd-agent-core/dist/agent-session.d.ts.map +1 -1
- package/packages/gsd-agent-core/dist/agent-session.js +32 -0
- package/packages/gsd-agent-core/dist/agent-session.js.map +1 -1
- package/packages/gsd-agent-core/dist/index.d.ts +1 -0
- package/packages/gsd-agent-core/dist/index.d.ts.map +1 -1
- package/packages/gsd-agent-core/dist/index.js +1 -0
- package/packages/gsd-agent-core/dist/index.js.map +1 -1
- package/packages/gsd-agent-core/dist/session/agent-session-compaction.d.ts +2 -0
- package/packages/gsd-agent-core/dist/session/agent-session-compaction.d.ts.map +1 -1
- package/packages/gsd-agent-core/dist/session/agent-session-compaction.js +8 -2
- package/packages/gsd-agent-core/dist/session/agent-session-compaction.js.map +1 -1
- package/packages/gsd-agent-core/dist/session/agent-session-host.d.ts +7 -0
- package/packages/gsd-agent-core/dist/session/agent-session-host.d.ts.map +1 -1
- package/packages/gsd-agent-core/dist/session/agent-session-host.js.map +1 -1
- package/packages/gsd-agent-core/dist/session/agent-session-prompt.d.ts.map +1 -1
- package/packages/gsd-agent-core/dist/session/agent-session-prompt.js +69 -1
- package/packages/gsd-agent-core/dist/session/agent-session-prompt.js.map +1 -1
- package/packages/gsd-agent-core/dist/turn-latency.d.ts +47 -0
- package/packages/gsd-agent-core/dist/turn-latency.d.ts.map +1 -0
- package/packages/gsd-agent-core/dist/turn-latency.js +123 -0
- package/packages/gsd-agent-core/dist/turn-latency.js.map +1 -0
- package/packages/gsd-agent-core/package.json +6 -6
- package/packages/gsd-agent-modes/dist/modes/interactive/components/__prototype__/gsd-widget-prototype.d.ts +21 -0
- package/packages/gsd-agent-modes/dist/modes/interactive/components/__prototype__/gsd-widget-prototype.d.ts.map +1 -0
- package/packages/gsd-agent-modes/dist/modes/interactive/components/__prototype__/gsd-widget-prototype.js +213 -0
- package/packages/gsd-agent-modes/dist/modes/interactive/components/__prototype__/gsd-widget-prototype.js.map +1 -0
- package/packages/gsd-agent-modes/dist/modes/interactive/components/settings-selector.d.ts +2 -0
- package/packages/gsd-agent-modes/dist/modes/interactive/components/settings-selector.d.ts.map +1 -1
- package/packages/gsd-agent-modes/dist/modes/interactive/components/settings-selector.js +10 -0
- package/packages/gsd-agent-modes/dist/modes/interactive/components/settings-selector.js.map +1 -1
- package/packages/gsd-agent-modes/dist/modes/interactive/controllers/chat-controller.d.ts +1 -0
- package/packages/gsd-agent-modes/dist/modes/interactive/controllers/chat-controller.d.ts.map +1 -1
- package/packages/gsd-agent-modes/dist/modes/interactive/controllers/chat-controller.js +92 -31
- package/packages/gsd-agent-modes/dist/modes/interactive/controllers/chat-controller.js.map +1 -1
- package/packages/gsd-agent-modes/dist/modes/interactive/controllers/input-controller.d.ts.map +1 -1
- package/packages/gsd-agent-modes/dist/modes/interactive/controllers/input-controller.js +7 -1
- package/packages/gsd-agent-modes/dist/modes/interactive/controllers/input-controller.js.map +1 -1
- package/packages/gsd-agent-modes/dist/modes/interactive/interactive-command-handlers.d.ts.map +1 -1
- package/packages/gsd-agent-modes/dist/modes/interactive/interactive-command-handlers.js +6 -0
- package/packages/gsd-agent-modes/dist/modes/interactive/interactive-command-handlers.js.map +1 -1
- package/packages/gsd-agent-modes/dist/modes/interactive/interactive-extension-dialogs.d.ts.map +1 -1
- package/packages/gsd-agent-modes/dist/modes/interactive/interactive-extension-dialogs.js +2 -0
- package/packages/gsd-agent-modes/dist/modes/interactive/interactive-extension-dialogs.js.map +1 -1
- package/packages/gsd-agent-modes/dist/modes/interactive/interactive-mode-class-constants.d.ts +1 -1
- package/packages/gsd-agent-modes/dist/modes/interactive/interactive-mode-class-constants.d.ts.map +1 -1
- package/packages/gsd-agent-modes/dist/modes/interactive/interactive-mode-class-constants.js +1 -1
- package/packages/gsd-agent-modes/dist/modes/interactive/interactive-mode-class-constants.js.map +1 -1
- package/packages/gsd-agent-modes/dist/modes/interactive/interactive-mode.d.ts.map +1 -1
- package/packages/gsd-agent-modes/dist/modes/interactive/interactive-mode.js +1 -0
- package/packages/gsd-agent-modes/dist/modes/interactive/interactive-mode.js.map +1 -1
- package/packages/gsd-agent-modes/dist/modes/interactive/interactive-selectors-settings.d.ts.map +1 -1
- package/packages/gsd-agent-modes/dist/modes/interactive/interactive-selectors-settings.js +5 -0
- package/packages/gsd-agent-modes/dist/modes/interactive/interactive-selectors-settings.js.map +1 -1
- package/packages/gsd-agent-modes/package.json +7 -7
- package/packages/mcp-server/dist/remote-questions.d.ts.map +1 -1
- package/packages/mcp-server/dist/remote-questions.js +23 -9
- package/packages/mcp-server/dist/remote-questions.js.map +1 -1
- package/packages/mcp-server/dist/workflow-tools.d.ts.map +1 -1
- package/packages/mcp-server/dist/workflow-tools.js +84 -2
- package/packages/mcp-server/dist/workflow-tools.js.map +1 -1
- package/packages/mcp-server/package.json +3 -3
- package/packages/native/package.json +1 -1
- package/packages/pi-agent-core/dist/agent-loop.js +38 -0
- package/packages/pi-agent-core/dist/agent-loop.js.map +1 -1
- package/packages/pi-agent-core/dist/agent.d.ts +5 -1
- package/packages/pi-agent-core/dist/agent.d.ts.map +1 -1
- package/packages/pi-agent-core/dist/agent.js +2 -0
- package/packages/pi-agent-core/dist/agent.js.map +1 -1
- package/packages/pi-agent-core/dist/types.d.ts +3 -0
- package/packages/pi-agent-core/dist/types.d.ts.map +1 -1
- package/packages/pi-agent-core/dist/types.js.map +1 -1
- package/packages/pi-agent-core/package.json +1 -1
- package/packages/pi-ai/dist/api-registry.d.ts +2 -0
- package/packages/pi-ai/dist/api-registry.d.ts.map +1 -1
- package/packages/pi-ai/dist/api-registry.js +23 -0
- package/packages/pi-ai/dist/api-registry.js.map +1 -1
- package/packages/pi-ai/dist/image-models.generated.d.ts +15 -0
- package/packages/pi-ai/dist/image-models.generated.d.ts.map +1 -1
- package/packages/pi-ai/dist/image-models.generated.js +15 -0
- package/packages/pi-ai/dist/image-models.generated.js.map +1 -1
- package/packages/pi-ai/dist/models.generated.d.ts +406 -17
- package/packages/pi-ai/dist/models.generated.d.ts.map +1 -1
- package/packages/pi-ai/dist/models.generated.js +484 -116
- package/packages/pi-ai/dist/models.generated.js.map +1 -1
- package/packages/pi-ai/dist/stream.js +6 -6
- package/packages/pi-ai/dist/stream.js.map +1 -1
- package/packages/pi-ai/package.json +1 -1
- package/packages/pi-coding-agent/dist/core/model-registry.d.ts.map +1 -1
- package/packages/pi-coding-agent/dist/core/model-registry.js +2 -2
- package/packages/pi-coding-agent/dist/core/model-registry.js.map +1 -1
- package/packages/pi-coding-agent/dist/core/settings-manager.d.ts +3 -0
- package/packages/pi-coding-agent/dist/core/settings-manager.d.ts.map +1 -1
- package/packages/pi-coding-agent/dist/core/settings-manager.js +11 -0
- package/packages/pi-coding-agent/dist/core/settings-manager.js.map +1 -1
- package/packages/pi-coding-agent/package.json +7 -7
- package/packages/pi-tui/dist/terminal.d.ts +1 -0
- package/packages/pi-tui/dist/terminal.d.ts.map +1 -1
- package/packages/pi-tui/dist/terminal.js +8 -4
- package/packages/pi-tui/dist/terminal.js.map +1 -1
- package/packages/pi-tui/package.json +1 -1
- package/packages/rpc-client/package.json +2 -2
- package/pkg/package.json +1 -1
- package/src/resources/extensions/browser-tools/engine/managed-gsd-browser.ts +579 -0
- package/src/resources/extensions/browser-tools/engine/selection.ts +19 -0
- package/src/resources/extensions/browser-tools/extension-manifest.json +2 -2
- package/src/resources/extensions/browser-tools/index.ts +60 -9
- package/src/resources/extensions/browser-tools/package.json +5 -1
- package/src/resources/extensions/browser-tools/tests/browser-engine-selection.test.mjs +35 -0
- package/src/resources/extensions/browser-tools/tests/managed-gsd-browser-tools.test.mjs +33 -0
- package/src/resources/extensions/claude-code-cli/stream-adapter.ts +196 -16
- package/src/resources/extensions/claude-code-cli/tests/stream-adapter.test.ts +239 -63
- package/src/resources/extensions/gsd/auto/orchestrator.ts +0 -1
- package/src/resources/extensions/gsd/auto/phases.ts +5 -3
- package/src/resources/extensions/gsd/auto-dashboard.ts +98 -18
- package/src/resources/extensions/gsd/auto-dispatch.ts +53 -0
- package/src/resources/extensions/gsd/auto-post-unit.ts +166 -9
- package/src/resources/extensions/gsd/auto-prompts.ts +102 -15
- package/src/resources/extensions/gsd/auto-recovery.ts +4 -4
- package/src/resources/extensions/gsd/auto-runtime-state.ts +4 -0
- package/src/resources/extensions/gsd/auto-start.ts +112 -17
- package/src/resources/extensions/gsd/auto-tool-tracking.ts +1 -1
- package/src/resources/extensions/gsd/auto-unit-tool-scope.ts +2 -1
- package/src/resources/extensions/gsd/auto.ts +47 -5
- package/src/resources/extensions/gsd/bootstrap/db-tools.ts +90 -4
- package/src/resources/extensions/gsd/bootstrap/exec-tools.ts +51 -0
- package/src/resources/extensions/gsd/bootstrap/register-hooks.ts +60 -19
- package/src/resources/extensions/gsd/bootstrap/write-gate.ts +21 -10
- package/src/resources/extensions/gsd/browser-evidence.ts +26 -2
- package/src/resources/extensions/gsd/commands/catalog.ts +6 -1
- package/src/resources/extensions/gsd/commands/handlers/core.ts +6 -2
- package/src/resources/extensions/gsd/commands/handlers/ops.ts +9 -5
- package/src/resources/extensions/gsd/commands-handlers.ts +76 -11
- package/src/resources/extensions/gsd/commands-maintenance.ts +197 -2
- package/src/resources/extensions/gsd/commands-mcp-status.ts +136 -58
- package/src/resources/extensions/gsd/commands-prefs-wizard.ts +4 -1
- package/src/resources/extensions/gsd/commands-verdict.ts +1 -1
- package/src/resources/extensions/gsd/config-overlay.ts +3 -1
- package/src/resources/extensions/gsd/dashboard-overlay.ts +28 -7
- package/src/resources/extensions/gsd/docs/preferences-reference.md +8 -0
- package/src/resources/extensions/gsd/doctor-runtime-checks.ts +2 -2
- package/src/resources/extensions/gsd/error-classifier.ts +2 -1
- package/src/resources/extensions/gsd/escalation.ts +4 -4
- package/src/resources/extensions/gsd/exec-sandbox.ts +4 -0
- package/src/resources/extensions/gsd/forensics.ts +99 -5
- package/src/resources/extensions/gsd/gsd-db.ts +46 -8
- package/src/resources/extensions/gsd/guided-flow.ts +91 -83
- package/src/resources/extensions/gsd/mcp-filter.ts +3 -0
- package/src/resources/extensions/gsd/mcp-project-config.ts +105 -88
- package/src/resources/extensions/gsd/memory-store.ts +4 -1
- package/src/resources/extensions/gsd/migration-auto-check.ts +2 -2
- package/src/resources/extensions/gsd/post-unit-hooks.ts +14 -1
- package/src/resources/extensions/gsd/preferences-types.ts +1 -1
- package/src/resources/extensions/gsd/preferences-validation.ts +36 -0
- package/src/resources/extensions/gsd/prompt-loader.ts +8 -0
- package/src/resources/extensions/gsd/prompts/forensics.md +61 -1
- package/src/resources/extensions/gsd/prompts/gate-evaluate.md +3 -1
- package/src/resources/extensions/gsd/prompts/parallel-research-slices.md +3 -1
- package/src/resources/extensions/gsd/prompts/plan-slice.md +1 -1
- package/src/resources/extensions/gsd/prompts/reactive-execute.md +3 -1
- package/src/resources/extensions/gsd/prompts/run-uat.md +48 -24
- package/src/resources/extensions/gsd/prompts/system.md +3 -1
- package/src/resources/extensions/gsd/prompts/validate-milestone.md +3 -3
- package/src/resources/extensions/gsd/rule-registry.ts +558 -58
- package/src/resources/extensions/gsd/rule-types.ts +2 -0
- package/src/resources/extensions/gsd/safety/destructive-guard.ts +3 -0
- package/src/resources/extensions/gsd/skill-activation.ts +20 -2
- package/src/resources/extensions/gsd/state-reconciliation/drift/artifact-db.ts +4 -2
- package/src/resources/extensions/gsd/state-reconciliation/drift/project-md.ts +1 -1
- package/src/resources/extensions/gsd/state-reconciliation/drift/roadmap.ts +20 -0
- package/src/resources/extensions/gsd/state-reconciliation/index.ts +6 -0
- package/src/resources/extensions/gsd/state-reconciliation/types.ts +1 -0
- package/src/resources/extensions/gsd/state.ts +18 -14
- package/src/resources/extensions/gsd/templates/plan.md +3 -1
- package/src/resources/extensions/gsd/tests/auto-dashboard.test.ts +156 -4
- package/src/resources/extensions/gsd/tests/auto-orchestrator.test.ts +123 -0
- package/src/resources/extensions/gsd/tests/auto-start-orphan-bootstrap.test.ts +143 -2
- package/src/resources/extensions/gsd/tests/auto-start-project-milestone-reconcile.test.ts +24 -2
- package/src/resources/extensions/gsd/tests/browser-evidence.test.ts +142 -0
- package/src/resources/extensions/gsd/tests/commands-dispatcher-validation-block.test.ts +38 -3
- package/src/resources/extensions/gsd/tests/commands-verdict.test.ts +6 -2
- package/src/resources/extensions/gsd/tests/complete-milestone-excerpt.test.ts +30 -0
- package/src/resources/extensions/gsd/tests/complete-slice-verification-gate.test.ts +42 -0
- package/src/resources/extensions/gsd/tests/dashboard-overlay.test.ts +45 -0
- package/src/resources/extensions/gsd/tests/deep-planning-mode-dispatch.test.ts +53 -0
- package/src/resources/extensions/gsd/tests/derive-state-db.test.ts +8 -0
- package/src/resources/extensions/gsd/tests/derive-state-helpers.test.ts +50 -13
- package/src/resources/extensions/gsd/tests/discuss-milestone-structured-questions.test.ts +31 -0
- package/src/resources/extensions/gsd/tests/dispatch-missing-task-plans.test.ts +60 -0
- package/src/resources/extensions/gsd/tests/doctor-runtime-checks.test.ts +27 -0
- package/src/resources/extensions/gsd/tests/escalation.test.ts +16 -27
- package/src/resources/extensions/gsd/tests/exec-sandbox.test.ts +18 -0
- package/src/resources/extensions/gsd/tests/exec-tool.test.ts +69 -0
- package/src/resources/extensions/gsd/tests/forensics-issue-routing.test.ts +20 -0
- package/src/resources/extensions/gsd/tests/forensics-prompt-rendering.test.ts +3 -0
- package/src/resources/extensions/gsd/tests/forensics-tool-scope.test.ts +69 -0
- package/src/resources/extensions/gsd/tests/gsd-rebuild.test.ts +199 -0
- package/src/resources/extensions/gsd/tests/gsd-recover.test.ts +75 -0
- package/src/resources/extensions/gsd/tests/guided-discuss-milestone-prompt-rendering.test.ts +40 -1
- package/src/resources/extensions/gsd/tests/guided-dispatch-root.test.ts +86 -0
- package/src/resources/extensions/gsd/tests/guided-flow.test.ts +12 -9
- package/src/resources/extensions/gsd/tests/integration/auto-recovery.test.ts +4 -4
- package/src/resources/extensions/gsd/tests/integration/run-uat.test.ts +66 -10
- package/src/resources/extensions/gsd/tests/integration/state-machine-live-validation.test.ts +13 -6
- package/src/resources/extensions/gsd/tests/mcp-filter.test.ts +15 -0
- package/src/resources/extensions/gsd/tests/mcp-project-config.test.ts +100 -0
- package/src/resources/extensions/gsd/tests/mcp-status.test.ts +179 -0
- package/src/resources/extensions/gsd/tests/memory-maintenance.test.ts +39 -8
- package/src/resources/extensions/gsd/tests/migration-auto-check.test.ts +3 -3
- package/src/resources/extensions/gsd/tests/new-milestone-discuss-routing.test.ts +3 -3
- package/src/resources/extensions/gsd/tests/parallel-skill-prompt-integration.test.ts +54 -7
- package/src/resources/extensions/gsd/tests/plan-slice-prompt.test.ts +9 -0
- package/src/resources/extensions/gsd/tests/plan-slice.test.ts +39 -1
- package/src/resources/extensions/gsd/tests/post-unit-hooks.test.ts +157 -0
- package/src/resources/extensions/gsd/tests/post-unit-retry-on-orchestrator-bridge.test.ts +179 -0
- package/src/resources/extensions/gsd/tests/preferences.test.ts +29 -0
- package/src/resources/extensions/gsd/tests/prompt-contracts.test.ts +53 -1
- package/src/resources/extensions/gsd/tests/prompt-loader-extension-dir.test.ts +14 -0
- package/src/resources/extensions/gsd/tests/provider-errors.test.ts +18 -1
- package/src/resources/extensions/gsd/tests/queued-discuss-fast-path.test.ts +7 -8
- package/src/resources/extensions/gsd/tests/reactive-executor.test.ts +36 -0
- package/src/resources/extensions/gsd/tests/register-hooks-depth-verification.test.ts +35 -0
- package/src/resources/extensions/gsd/tests/restore-tools-after-discuss.test.ts +1 -1
- package/src/resources/extensions/gsd/tests/rule-registry.test.ts +75 -0
- package/src/resources/extensions/gsd/tests/session-start-footer.test.ts +100 -0
- package/src/resources/extensions/gsd/tests/skill-activation.test.ts +55 -0
- package/src/resources/extensions/gsd/tests/start-auto-detached.test.ts +6 -2
- package/src/resources/extensions/gsd/tests/state-reconciliation-drift.test.ts +191 -0
- package/src/resources/extensions/gsd/tests/token-tool-gating.test.ts +84 -10
- package/src/resources/extensions/gsd/tests/tool-invocation-error-loop-break.test.ts +19 -0
- package/src/resources/extensions/gsd/tests/tool-naming.test.ts +12 -2
- package/src/resources/extensions/gsd/tests/tool-param-optionality.test.ts +7 -1
- package/src/resources/extensions/gsd/tests/tui-header-lifecycle.test.ts +29 -6
- package/src/resources/extensions/gsd/tests/unit-context-manifest.test.ts +29 -6
- package/src/resources/extensions/gsd/tests/validate-milestone-prompt-verification-classes.test.ts +6 -3
- package/src/resources/extensions/gsd/tests/validate-milestone-write-order.test.ts +133 -0
- package/src/resources/extensions/gsd/tests/validation-block-guard.test.ts +21 -0
- package/src/resources/extensions/gsd/tests/verification-gate.test.ts +51 -0
- package/src/resources/extensions/gsd/tests/workflow-mcp-auto-prep.test.ts +17 -2
- package/src/resources/extensions/gsd/tests/workflow-tool-executors.test.ts +213 -0
- package/src/resources/extensions/gsd/tests/write-gate-planning-unit.test.ts +25 -0
- package/src/resources/extensions/gsd/tool-presentation-plan.ts +167 -0
- package/src/resources/extensions/gsd/tools/complete-slice.ts +14 -1
- package/src/resources/extensions/gsd/tools/complete-task.ts +20 -2
- package/src/resources/extensions/gsd/tools/exec-tool.ts +130 -0
- package/src/resources/extensions/gsd/tools/plan-slice.ts +14 -9
- package/src/resources/extensions/gsd/tools/reopen-milestone.ts +2 -2
- package/src/resources/extensions/gsd/tools/validate-milestone.ts +46 -15
- package/src/resources/extensions/gsd/tools/workflow-tool-executors.ts +489 -3
- package/src/resources/extensions/gsd/types.ts +69 -5
- package/src/resources/extensions/gsd/unit-context-manifest.ts +14 -5
- package/src/resources/extensions/gsd/validation-block-guard.ts +2 -0
- package/src/resources/extensions/gsd/verdict-parser.ts +54 -13
- package/src/resources/extensions/gsd/verification-gate.ts +87 -1
- package/src/resources/extensions/gsd/workflow-mcp-auto-prep.ts +2 -1
- package/src/resources/extensions/gsd/workflow-mcp.ts +5 -1
- package/src/resources/extensions/gsd/worktree-lifecycle.ts +26 -0
- package/src/resources/extensions/mcp-client/manager.ts +33 -1
- package/src/resources/extensions/mcp-client/tests/manager.test.ts +35 -0
- package/src/resources/extensions/shared/gsd-browser-cli.ts +172 -0
- /package/dist/web/standalone/.next/static/{L9N5SPFi7f-Ne4u2uXzCe → jBtwT9v1u2lUA3UEOy_ZH}/_buildManifest.js +0 -0
- /package/dist/web/standalone/.next/static/{L9N5SPFi7f-Ne4u2uXzCe → jBtwT9v1u2lUA3UEOy_ZH}/_ssgManifest.js +0 -0
|
@@ -1966,6 +1966,236 @@ export const MODELS = {
|
|
|
1966
1966
|
maxTokens: 64000,
|
|
1967
1967
|
},
|
|
1968
1968
|
},
|
|
1969
|
+
"anthropic-vertex": {
|
|
1970
|
+
"claude-3-5-haiku@20241022": {
|
|
1971
|
+
id: "claude-3-5-haiku@20241022",
|
|
1972
|
+
name: "Claude Haiku 3.5 (Vertex)",
|
|
1973
|
+
api: "anthropic-vertex",
|
|
1974
|
+
provider: "anthropic-vertex",
|
|
1975
|
+
baseUrl: "https://{location}-aiplatform.googleapis.com",
|
|
1976
|
+
reasoning: false,
|
|
1977
|
+
input: ["text", "image"],
|
|
1978
|
+
cost: {
|
|
1979
|
+
input: 0.8,
|
|
1980
|
+
output: 4,
|
|
1981
|
+
cacheRead: 0.08,
|
|
1982
|
+
cacheWrite: 1,
|
|
1983
|
+
},
|
|
1984
|
+
contextWindow: 200000,
|
|
1985
|
+
maxTokens: 8192,
|
|
1986
|
+
},
|
|
1987
|
+
"claude-3-5-sonnet@20241022": {
|
|
1988
|
+
id: "claude-3-5-sonnet@20241022",
|
|
1989
|
+
name: "Claude Sonnet 3.5 v2 (Vertex)",
|
|
1990
|
+
api: "anthropic-vertex",
|
|
1991
|
+
provider: "anthropic-vertex",
|
|
1992
|
+
baseUrl: "https://{location}-aiplatform.googleapis.com",
|
|
1993
|
+
reasoning: false,
|
|
1994
|
+
input: ["text", "image"],
|
|
1995
|
+
cost: {
|
|
1996
|
+
input: 3,
|
|
1997
|
+
output: 15,
|
|
1998
|
+
cacheRead: 0.3,
|
|
1999
|
+
cacheWrite: 3.75,
|
|
2000
|
+
},
|
|
2001
|
+
contextWindow: 200000,
|
|
2002
|
+
maxTokens: 8192,
|
|
2003
|
+
},
|
|
2004
|
+
"claude-3-7-sonnet@20250219": {
|
|
2005
|
+
id: "claude-3-7-sonnet@20250219",
|
|
2006
|
+
name: "Claude Sonnet 3.7 (Vertex)",
|
|
2007
|
+
api: "anthropic-vertex",
|
|
2008
|
+
provider: "anthropic-vertex",
|
|
2009
|
+
baseUrl: "https://{location}-aiplatform.googleapis.com",
|
|
2010
|
+
reasoning: true,
|
|
2011
|
+
input: ["text", "image"],
|
|
2012
|
+
cost: {
|
|
2013
|
+
input: 3,
|
|
2014
|
+
output: 15,
|
|
2015
|
+
cacheRead: 0.3,
|
|
2016
|
+
cacheWrite: 3.75,
|
|
2017
|
+
},
|
|
2018
|
+
contextWindow: 200000,
|
|
2019
|
+
maxTokens: 64000,
|
|
2020
|
+
},
|
|
2021
|
+
"claude-haiku-4-5@20251001": {
|
|
2022
|
+
id: "claude-haiku-4-5@20251001",
|
|
2023
|
+
name: "Claude Haiku 4.5 (Vertex)",
|
|
2024
|
+
api: "anthropic-vertex",
|
|
2025
|
+
provider: "anthropic-vertex",
|
|
2026
|
+
baseUrl: "https://{location}-aiplatform.googleapis.com",
|
|
2027
|
+
reasoning: true,
|
|
2028
|
+
input: ["text", "image"],
|
|
2029
|
+
cost: {
|
|
2030
|
+
input: 1,
|
|
2031
|
+
output: 5,
|
|
2032
|
+
cacheRead: 0.1,
|
|
2033
|
+
cacheWrite: 1.25,
|
|
2034
|
+
},
|
|
2035
|
+
contextWindow: 200000,
|
|
2036
|
+
maxTokens: 64000,
|
|
2037
|
+
},
|
|
2038
|
+
"claude-opus-4-1@20250805": {
|
|
2039
|
+
id: "claude-opus-4-1@20250805",
|
|
2040
|
+
name: "Claude Opus 4.1 (Vertex)",
|
|
2041
|
+
api: "anthropic-vertex",
|
|
2042
|
+
provider: "anthropic-vertex",
|
|
2043
|
+
baseUrl: "https://{location}-aiplatform.googleapis.com",
|
|
2044
|
+
reasoning: true,
|
|
2045
|
+
input: ["text", "image"],
|
|
2046
|
+
cost: {
|
|
2047
|
+
input: 15,
|
|
2048
|
+
output: 75,
|
|
2049
|
+
cacheRead: 1.5,
|
|
2050
|
+
cacheWrite: 18.75,
|
|
2051
|
+
},
|
|
2052
|
+
contextWindow: 200000,
|
|
2053
|
+
maxTokens: 32000,
|
|
2054
|
+
},
|
|
2055
|
+
"claude-opus-4-5@20251101": {
|
|
2056
|
+
id: "claude-opus-4-5@20251101",
|
|
2057
|
+
name: "Claude Opus 4.5 (Vertex)",
|
|
2058
|
+
api: "anthropic-vertex",
|
|
2059
|
+
provider: "anthropic-vertex",
|
|
2060
|
+
baseUrl: "https://{location}-aiplatform.googleapis.com",
|
|
2061
|
+
reasoning: true,
|
|
2062
|
+
input: ["text", "image"],
|
|
2063
|
+
cost: {
|
|
2064
|
+
input: 5,
|
|
2065
|
+
output: 25,
|
|
2066
|
+
cacheRead: 0.5,
|
|
2067
|
+
cacheWrite: 6.25,
|
|
2068
|
+
},
|
|
2069
|
+
contextWindow: 200000,
|
|
2070
|
+
maxTokens: 64000,
|
|
2071
|
+
},
|
|
2072
|
+
"claude-opus-4-6": {
|
|
2073
|
+
id: "claude-opus-4-6",
|
|
2074
|
+
name: "Claude Opus 4.6 (Vertex)",
|
|
2075
|
+
api: "anthropic-vertex",
|
|
2076
|
+
provider: "anthropic-vertex",
|
|
2077
|
+
baseUrl: "https://{location}-aiplatform.googleapis.com",
|
|
2078
|
+
compat: { "forceAdaptiveThinking": true },
|
|
2079
|
+
reasoning: true,
|
|
2080
|
+
thinkingLevelMap: { "xhigh": "max" },
|
|
2081
|
+
input: ["text", "image"],
|
|
2082
|
+
cost: {
|
|
2083
|
+
input: 5,
|
|
2084
|
+
output: 25,
|
|
2085
|
+
cacheRead: 0.5,
|
|
2086
|
+
cacheWrite: 6.25,
|
|
2087
|
+
},
|
|
2088
|
+
contextWindow: 1000000,
|
|
2089
|
+
maxTokens: 128000,
|
|
2090
|
+
},
|
|
2091
|
+
"claude-opus-4-7": {
|
|
2092
|
+
id: "claude-opus-4-7",
|
|
2093
|
+
name: "Claude Opus 4.7 (Vertex)",
|
|
2094
|
+
api: "anthropic-vertex",
|
|
2095
|
+
provider: "anthropic-vertex",
|
|
2096
|
+
baseUrl: "https://{location}-aiplatform.googleapis.com",
|
|
2097
|
+
compat: { "forceAdaptiveThinking": true },
|
|
2098
|
+
reasoning: true,
|
|
2099
|
+
thinkingLevelMap: { "xhigh": "xhigh" },
|
|
2100
|
+
input: ["text", "image"],
|
|
2101
|
+
cost: {
|
|
2102
|
+
input: 5,
|
|
2103
|
+
output: 25,
|
|
2104
|
+
cacheRead: 0.5,
|
|
2105
|
+
cacheWrite: 6.25,
|
|
2106
|
+
},
|
|
2107
|
+
contextWindow: 1000000,
|
|
2108
|
+
maxTokens: 128000,
|
|
2109
|
+
},
|
|
2110
|
+
"claude-opus-4-8": {
|
|
2111
|
+
id: "claude-opus-4-8",
|
|
2112
|
+
name: "Claude Opus 4.8 (Vertex)",
|
|
2113
|
+
api: "anthropic-vertex",
|
|
2114
|
+
provider: "anthropic-vertex",
|
|
2115
|
+
baseUrl: "https://{location}-aiplatform.googleapis.com",
|
|
2116
|
+
compat: { "forceAdaptiveThinking": true },
|
|
2117
|
+
reasoning: true,
|
|
2118
|
+
thinkingLevelMap: { "xhigh": "xhigh" },
|
|
2119
|
+
input: ["text", "image"],
|
|
2120
|
+
cost: {
|
|
2121
|
+
input: 5,
|
|
2122
|
+
output: 25,
|
|
2123
|
+
cacheRead: 0.5,
|
|
2124
|
+
cacheWrite: 6.25,
|
|
2125
|
+
},
|
|
2126
|
+
contextWindow: 1000000,
|
|
2127
|
+
maxTokens: 128000,
|
|
2128
|
+
},
|
|
2129
|
+
"claude-opus-4@20250514": {
|
|
2130
|
+
id: "claude-opus-4@20250514",
|
|
2131
|
+
name: "Claude Opus 4 (Vertex)",
|
|
2132
|
+
api: "anthropic-vertex",
|
|
2133
|
+
provider: "anthropic-vertex",
|
|
2134
|
+
baseUrl: "https://{location}-aiplatform.googleapis.com",
|
|
2135
|
+
reasoning: true,
|
|
2136
|
+
input: ["text", "image"],
|
|
2137
|
+
cost: {
|
|
2138
|
+
input: 15,
|
|
2139
|
+
output: 75,
|
|
2140
|
+
cacheRead: 1.5,
|
|
2141
|
+
cacheWrite: 18.75,
|
|
2142
|
+
},
|
|
2143
|
+
contextWindow: 200000,
|
|
2144
|
+
maxTokens: 32000,
|
|
2145
|
+
},
|
|
2146
|
+
"claude-sonnet-4-5@20250929": {
|
|
2147
|
+
id: "claude-sonnet-4-5@20250929",
|
|
2148
|
+
name: "Claude Sonnet 4.5 (Vertex)",
|
|
2149
|
+
api: "anthropic-vertex",
|
|
2150
|
+
provider: "anthropic-vertex",
|
|
2151
|
+
baseUrl: "https://{location}-aiplatform.googleapis.com",
|
|
2152
|
+
reasoning: true,
|
|
2153
|
+
input: ["text", "image"],
|
|
2154
|
+
cost: {
|
|
2155
|
+
input: 3,
|
|
2156
|
+
output: 15,
|
|
2157
|
+
cacheRead: 0.3,
|
|
2158
|
+
cacheWrite: 3.75,
|
|
2159
|
+
},
|
|
2160
|
+
contextWindow: 200000,
|
|
2161
|
+
maxTokens: 64000,
|
|
2162
|
+
},
|
|
2163
|
+
"claude-sonnet-4-6": {
|
|
2164
|
+
id: "claude-sonnet-4-6",
|
|
2165
|
+
name: "Claude Sonnet 4.6 (Vertex)",
|
|
2166
|
+
api: "anthropic-vertex",
|
|
2167
|
+
provider: "anthropic-vertex",
|
|
2168
|
+
baseUrl: "https://{location}-aiplatform.googleapis.com",
|
|
2169
|
+
compat: { "forceAdaptiveThinking": true },
|
|
2170
|
+
reasoning: true,
|
|
2171
|
+
input: ["text", "image"],
|
|
2172
|
+
cost: {
|
|
2173
|
+
input: 3,
|
|
2174
|
+
output: 15,
|
|
2175
|
+
cacheRead: 0.3,
|
|
2176
|
+
cacheWrite: 3.75,
|
|
2177
|
+
},
|
|
2178
|
+
contextWindow: 1000000,
|
|
2179
|
+
maxTokens: 128000,
|
|
2180
|
+
},
|
|
2181
|
+
"claude-sonnet-4@20250514": {
|
|
2182
|
+
id: "claude-sonnet-4@20250514",
|
|
2183
|
+
name: "Claude Sonnet 4 (Vertex)",
|
|
2184
|
+
api: "anthropic-vertex",
|
|
2185
|
+
provider: "anthropic-vertex",
|
|
2186
|
+
baseUrl: "https://{location}-aiplatform.googleapis.com",
|
|
2187
|
+
reasoning: true,
|
|
2188
|
+
input: ["text", "image"],
|
|
2189
|
+
cost: {
|
|
2190
|
+
input: 3,
|
|
2191
|
+
output: 15,
|
|
2192
|
+
cacheRead: 0.3,
|
|
2193
|
+
cacheWrite: 3.75,
|
|
2194
|
+
},
|
|
2195
|
+
contextWindow: 200000,
|
|
2196
|
+
maxTokens: 64000,
|
|
2197
|
+
},
|
|
2198
|
+
},
|
|
1969
2199
|
"azure-openai-responses": {
|
|
1970
2200
|
"gpt-4": {
|
|
1971
2201
|
id: "gpt-4",
|
|
@@ -3852,7 +4082,7 @@ export const MODELS = {
|
|
|
3852
4082
|
"github-copilot": {
|
|
3853
4083
|
"claude-haiku-4.5": {
|
|
3854
4084
|
id: "claude-haiku-4.5",
|
|
3855
|
-
name: "Claude Haiku 4.5",
|
|
4085
|
+
name: "Claude Haiku 4.5 (latest)",
|
|
3856
4086
|
api: "anthropic-messages",
|
|
3857
4087
|
provider: "github-copilot",
|
|
3858
4088
|
baseUrl: "https://api.individual.githubcopilot.com",
|
|
@@ -3861,17 +4091,17 @@ export const MODELS = {
|
|
|
3861
4091
|
reasoning: true,
|
|
3862
4092
|
input: ["text", "image"],
|
|
3863
4093
|
cost: {
|
|
3864
|
-
input:
|
|
3865
|
-
output:
|
|
3866
|
-
cacheRead: 0,
|
|
3867
|
-
cacheWrite:
|
|
4094
|
+
input: 1,
|
|
4095
|
+
output: 5,
|
|
4096
|
+
cacheRead: 0.1,
|
|
4097
|
+
cacheWrite: 1.25,
|
|
3868
4098
|
},
|
|
3869
4099
|
contextWindow: 200000,
|
|
3870
4100
|
maxTokens: 64000,
|
|
3871
4101
|
},
|
|
3872
4102
|
"claude-opus-4.5": {
|
|
3873
4103
|
id: "claude-opus-4.5",
|
|
3874
|
-
name: "Claude Opus 4.5",
|
|
4104
|
+
name: "Claude Opus 4.5 (latest)",
|
|
3875
4105
|
api: "anthropic-messages",
|
|
3876
4106
|
provider: "github-copilot",
|
|
3877
4107
|
baseUrl: "https://api.individual.githubcopilot.com",
|
|
@@ -3879,10 +4109,10 @@ export const MODELS = {
|
|
|
3879
4109
|
reasoning: true,
|
|
3880
4110
|
input: ["text", "image"],
|
|
3881
4111
|
cost: {
|
|
3882
|
-
input:
|
|
3883
|
-
output:
|
|
3884
|
-
cacheRead: 0,
|
|
3885
|
-
cacheWrite:
|
|
4112
|
+
input: 5,
|
|
4113
|
+
output: 25,
|
|
4114
|
+
cacheRead: 0.5,
|
|
4115
|
+
cacheWrite: 6.25,
|
|
3886
4116
|
},
|
|
3887
4117
|
contextWindow: 200000,
|
|
3888
4118
|
maxTokens: 32000,
|
|
@@ -3899,12 +4129,12 @@ export const MODELS = {
|
|
|
3899
4129
|
thinkingLevelMap: { "xhigh": "max" },
|
|
3900
4130
|
input: ["text", "image"],
|
|
3901
4131
|
cost: {
|
|
3902
|
-
input:
|
|
3903
|
-
output:
|
|
3904
|
-
cacheRead: 0,
|
|
3905
|
-
cacheWrite:
|
|
4132
|
+
input: 5,
|
|
4133
|
+
output: 25,
|
|
4134
|
+
cacheRead: 0.5,
|
|
4135
|
+
cacheWrite: 6.25,
|
|
3906
4136
|
},
|
|
3907
|
-
contextWindow:
|
|
4137
|
+
contextWindow: 200000,
|
|
3908
4138
|
maxTokens: 32000,
|
|
3909
4139
|
},
|
|
3910
4140
|
"claude-opus-4.7": {
|
|
@@ -3919,10 +4149,10 @@ export const MODELS = {
|
|
|
3919
4149
|
thinkingLevelMap: { "xhigh": "xhigh" },
|
|
3920
4150
|
input: ["text", "image"],
|
|
3921
4151
|
cost: {
|
|
3922
|
-
input:
|
|
3923
|
-
output:
|
|
3924
|
-
cacheRead: 0,
|
|
3925
|
-
cacheWrite:
|
|
4152
|
+
input: 5,
|
|
4153
|
+
output: 25,
|
|
4154
|
+
cacheRead: 0.5,
|
|
4155
|
+
cacheWrite: 6.25,
|
|
3926
4156
|
},
|
|
3927
4157
|
contextWindow: 200000,
|
|
3928
4158
|
maxTokens: 32000,
|
|
@@ -3939,17 +4169,36 @@ export const MODELS = {
|
|
|
3939
4169
|
thinkingLevelMap: { "xhigh": "xhigh" },
|
|
3940
4170
|
input: ["text", "image"],
|
|
3941
4171
|
cost: {
|
|
3942
|
-
input:
|
|
3943
|
-
output:
|
|
3944
|
-
cacheRead: 0,
|
|
3945
|
-
cacheWrite:
|
|
4172
|
+
input: 5,
|
|
4173
|
+
output: 25,
|
|
4174
|
+
cacheRead: 0.5,
|
|
4175
|
+
cacheWrite: 6.25,
|
|
3946
4176
|
},
|
|
3947
4177
|
contextWindow: 200000,
|
|
3948
4178
|
maxTokens: 64000,
|
|
3949
4179
|
},
|
|
4180
|
+
"claude-sonnet-4": {
|
|
4181
|
+
id: "claude-sonnet-4",
|
|
4182
|
+
name: "Claude Sonnet 4 (latest)",
|
|
4183
|
+
api: "anthropic-messages",
|
|
4184
|
+
provider: "github-copilot",
|
|
4185
|
+
baseUrl: "https://api.individual.githubcopilot.com",
|
|
4186
|
+
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" },
|
|
4187
|
+
compat: { "supportsEagerToolInputStreaming": false },
|
|
4188
|
+
reasoning: true,
|
|
4189
|
+
input: ["text", "image"],
|
|
4190
|
+
cost: {
|
|
4191
|
+
input: 3,
|
|
4192
|
+
output: 15,
|
|
4193
|
+
cacheRead: 0.3,
|
|
4194
|
+
cacheWrite: 3.75,
|
|
4195
|
+
},
|
|
4196
|
+
contextWindow: 216000,
|
|
4197
|
+
maxTokens: 16000,
|
|
4198
|
+
},
|
|
3950
4199
|
"claude-sonnet-4.5": {
|
|
3951
4200
|
id: "claude-sonnet-4.5",
|
|
3952
|
-
name: "Claude Sonnet 4.5",
|
|
4201
|
+
name: "Claude Sonnet 4.5 (latest)",
|
|
3953
4202
|
api: "anthropic-messages",
|
|
3954
4203
|
provider: "github-copilot",
|
|
3955
4204
|
baseUrl: "https://api.individual.githubcopilot.com",
|
|
@@ -3958,10 +4207,10 @@ export const MODELS = {
|
|
|
3958
4207
|
reasoning: true,
|
|
3959
4208
|
input: ["text", "image"],
|
|
3960
4209
|
cost: {
|
|
3961
|
-
input:
|
|
3962
|
-
output:
|
|
3963
|
-
cacheRead: 0,
|
|
3964
|
-
cacheWrite:
|
|
4210
|
+
input: 3,
|
|
4211
|
+
output: 15,
|
|
4212
|
+
cacheRead: 0.3,
|
|
4213
|
+
cacheWrite: 3.75,
|
|
3965
4214
|
},
|
|
3966
4215
|
contextWindow: 200000,
|
|
3967
4216
|
maxTokens: 32000,
|
|
@@ -3977,12 +4226,12 @@ export const MODELS = {
|
|
|
3977
4226
|
reasoning: true,
|
|
3978
4227
|
input: ["text", "image"],
|
|
3979
4228
|
cost: {
|
|
3980
|
-
input:
|
|
3981
|
-
output:
|
|
3982
|
-
cacheRead: 0,
|
|
3983
|
-
cacheWrite:
|
|
4229
|
+
input: 3,
|
|
4230
|
+
output: 15,
|
|
4231
|
+
cacheRead: 0.3,
|
|
4232
|
+
cacheWrite: 3.75,
|
|
3984
4233
|
},
|
|
3985
|
-
contextWindow:
|
|
4234
|
+
contextWindow: 200000,
|
|
3986
4235
|
maxTokens: 32000,
|
|
3987
4236
|
},
|
|
3988
4237
|
"gemini-2.5-pro": {
|
|
@@ -3993,12 +4242,12 @@ export const MODELS = {
|
|
|
3993
4242
|
baseUrl: "https://api.individual.githubcopilot.com",
|
|
3994
4243
|
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" },
|
|
3995
4244
|
compat: { "supportsStore": false, "supportsDeveloperRole": false, "supportsReasoningEffort": false },
|
|
3996
|
-
reasoning:
|
|
4245
|
+
reasoning: true,
|
|
3997
4246
|
input: ["text", "image"],
|
|
3998
4247
|
cost: {
|
|
3999
|
-
input:
|
|
4000
|
-
output:
|
|
4001
|
-
cacheRead: 0,
|
|
4248
|
+
input: 1.25,
|
|
4249
|
+
output: 10,
|
|
4250
|
+
cacheRead: 0.125,
|
|
4002
4251
|
cacheWrite: 0,
|
|
4003
4252
|
},
|
|
4004
4253
|
contextWindow: 128000,
|
|
@@ -4006,7 +4255,7 @@ export const MODELS = {
|
|
|
4006
4255
|
},
|
|
4007
4256
|
"gemini-3-flash-preview": {
|
|
4008
4257
|
id: "gemini-3-flash-preview",
|
|
4009
|
-
name: "Gemini 3 Flash",
|
|
4258
|
+
name: "Gemini 3 Flash Preview",
|
|
4010
4259
|
api: "openai-completions",
|
|
4011
4260
|
provider: "github-copilot",
|
|
4012
4261
|
baseUrl: "https://api.individual.githubcopilot.com",
|
|
@@ -4015,9 +4264,9 @@ export const MODELS = {
|
|
|
4015
4264
|
reasoning: true,
|
|
4016
4265
|
input: ["text", "image"],
|
|
4017
4266
|
cost: {
|
|
4018
|
-
input: 0,
|
|
4019
|
-
output:
|
|
4020
|
-
cacheRead: 0,
|
|
4267
|
+
input: 0.5,
|
|
4268
|
+
output: 3,
|
|
4269
|
+
cacheRead: 0.05,
|
|
4021
4270
|
cacheWrite: 0,
|
|
4022
4271
|
},
|
|
4023
4272
|
contextWindow: 128000,
|
|
@@ -4034,9 +4283,9 @@ export const MODELS = {
|
|
|
4034
4283
|
reasoning: true,
|
|
4035
4284
|
input: ["text", "image"],
|
|
4036
4285
|
cost: {
|
|
4037
|
-
input:
|
|
4038
|
-
output:
|
|
4039
|
-
cacheRead: 0,
|
|
4286
|
+
input: 2,
|
|
4287
|
+
output: 12,
|
|
4288
|
+
cacheRead: 0.2,
|
|
4040
4289
|
cacheWrite: 0,
|
|
4041
4290
|
},
|
|
4042
4291
|
contextWindow: 200000,
|
|
@@ -4053,9 +4302,9 @@ export const MODELS = {
|
|
|
4053
4302
|
reasoning: true,
|
|
4054
4303
|
input: ["text", "image"],
|
|
4055
4304
|
cost: {
|
|
4056
|
-
input:
|
|
4057
|
-
output:
|
|
4058
|
-
cacheRead: 0,
|
|
4305
|
+
input: 1.5,
|
|
4306
|
+
output: 9,
|
|
4307
|
+
cacheRead: 0.15,
|
|
4059
4308
|
cacheWrite: 0,
|
|
4060
4309
|
},
|
|
4061
4310
|
contextWindow: 200000,
|
|
@@ -4072,36 +4321,17 @@ export const MODELS = {
|
|
|
4072
4321
|
reasoning: false,
|
|
4073
4322
|
input: ["text", "image"],
|
|
4074
4323
|
cost: {
|
|
4075
|
-
input:
|
|
4076
|
-
output:
|
|
4077
|
-
cacheRead: 0,
|
|
4324
|
+
input: 2,
|
|
4325
|
+
output: 8,
|
|
4326
|
+
cacheRead: 0.5,
|
|
4078
4327
|
cacheWrite: 0,
|
|
4079
4328
|
},
|
|
4080
4329
|
contextWindow: 128000,
|
|
4081
4330
|
maxTokens: 16384,
|
|
4082
4331
|
},
|
|
4083
|
-
"gpt-4o": {
|
|
4084
|
-
id: "gpt-4o",
|
|
4085
|
-
name: "GPT-4o",
|
|
4086
|
-
api: "openai-completions",
|
|
4087
|
-
provider: "github-copilot",
|
|
4088
|
-
baseUrl: "https://api.individual.githubcopilot.com",
|
|
4089
|
-
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" },
|
|
4090
|
-
compat: { "supportsStore": false, "supportsDeveloperRole": false, "supportsReasoningEffort": false },
|
|
4091
|
-
reasoning: false,
|
|
4092
|
-
input: ["text", "image"],
|
|
4093
|
-
cost: {
|
|
4094
|
-
input: 0,
|
|
4095
|
-
output: 0,
|
|
4096
|
-
cacheRead: 0,
|
|
4097
|
-
cacheWrite: 0,
|
|
4098
|
-
},
|
|
4099
|
-
contextWindow: 128000,
|
|
4100
|
-
maxTokens: 4096,
|
|
4101
|
-
},
|
|
4102
4332
|
"gpt-5-mini": {
|
|
4103
4333
|
id: "gpt-5-mini",
|
|
4104
|
-
name: "GPT-5
|
|
4334
|
+
name: "GPT-5 Mini",
|
|
4105
4335
|
api: "openai-responses",
|
|
4106
4336
|
provider: "github-copilot",
|
|
4107
4337
|
baseUrl: "https://api.individual.githubcopilot.com",
|
|
@@ -4110,9 +4340,9 @@ export const MODELS = {
|
|
|
4110
4340
|
thinkingLevelMap: { "off": null, "minimal": "low" },
|
|
4111
4341
|
input: ["text", "image"],
|
|
4112
4342
|
cost: {
|
|
4113
|
-
input: 0,
|
|
4114
|
-
output:
|
|
4115
|
-
cacheRead: 0,
|
|
4343
|
+
input: 0.25,
|
|
4344
|
+
output: 2,
|
|
4345
|
+
cacheRead: 0.025,
|
|
4116
4346
|
cacheWrite: 0,
|
|
4117
4347
|
},
|
|
4118
4348
|
contextWindow: 264000,
|
|
@@ -4129,9 +4359,9 @@ export const MODELS = {
|
|
|
4129
4359
|
thinkingLevelMap: { "off": null, "minimal": "low", "xhigh": "xhigh" },
|
|
4130
4360
|
input: ["text", "image"],
|
|
4131
4361
|
cost: {
|
|
4132
|
-
input:
|
|
4133
|
-
output:
|
|
4134
|
-
cacheRead: 0,
|
|
4362
|
+
input: 1.75,
|
|
4363
|
+
output: 14,
|
|
4364
|
+
cacheRead: 0.175,
|
|
4135
4365
|
cacheWrite: 0,
|
|
4136
4366
|
},
|
|
4137
4367
|
contextWindow: 400000,
|
|
@@ -4139,7 +4369,7 @@ export const MODELS = {
|
|
|
4139
4369
|
},
|
|
4140
4370
|
"gpt-5.2-codex": {
|
|
4141
4371
|
id: "gpt-5.2-codex",
|
|
4142
|
-
name: "GPT-5.2
|
|
4372
|
+
name: "GPT-5.2 Codex",
|
|
4143
4373
|
api: "openai-responses",
|
|
4144
4374
|
provider: "github-copilot",
|
|
4145
4375
|
baseUrl: "https://api.individual.githubcopilot.com",
|
|
@@ -4148,9 +4378,9 @@ export const MODELS = {
|
|
|
4148
4378
|
thinkingLevelMap: { "off": null, "minimal": "low", "xhigh": "xhigh" },
|
|
4149
4379
|
input: ["text", "image"],
|
|
4150
4380
|
cost: {
|
|
4151
|
-
input:
|
|
4152
|
-
output:
|
|
4153
|
-
cacheRead: 0,
|
|
4381
|
+
input: 1.75,
|
|
4382
|
+
output: 14,
|
|
4383
|
+
cacheRead: 0.175,
|
|
4154
4384
|
cacheWrite: 0,
|
|
4155
4385
|
},
|
|
4156
4386
|
contextWindow: 400000,
|
|
@@ -4158,7 +4388,7 @@ export const MODELS = {
|
|
|
4158
4388
|
},
|
|
4159
4389
|
"gpt-5.3-codex": {
|
|
4160
4390
|
id: "gpt-5.3-codex",
|
|
4161
|
-
name: "GPT-5.3
|
|
4391
|
+
name: "GPT-5.3 Codex",
|
|
4162
4392
|
api: "openai-responses",
|
|
4163
4393
|
provider: "github-copilot",
|
|
4164
4394
|
baseUrl: "https://api.individual.githubcopilot.com",
|
|
@@ -4167,9 +4397,9 @@ export const MODELS = {
|
|
|
4167
4397
|
thinkingLevelMap: { "off": null, "minimal": "low", "xhigh": "xhigh" },
|
|
4168
4398
|
input: ["text", "image"],
|
|
4169
4399
|
cost: {
|
|
4170
|
-
input:
|
|
4171
|
-
output:
|
|
4172
|
-
cacheRead: 0,
|
|
4400
|
+
input: 1.75,
|
|
4401
|
+
output: 14,
|
|
4402
|
+
cacheRead: 0.175,
|
|
4173
4403
|
cacheWrite: 0,
|
|
4174
4404
|
},
|
|
4175
4405
|
contextWindow: 400000,
|
|
@@ -4186,9 +4416,9 @@ export const MODELS = {
|
|
|
4186
4416
|
thinkingLevelMap: { "off": null, "minimal": "low", "xhigh": "xhigh" },
|
|
4187
4417
|
input: ["text", "image"],
|
|
4188
4418
|
cost: {
|
|
4189
|
-
input:
|
|
4190
|
-
output:
|
|
4191
|
-
cacheRead: 0,
|
|
4419
|
+
input: 2.5,
|
|
4420
|
+
output: 15,
|
|
4421
|
+
cacheRead: 0.25,
|
|
4192
4422
|
cacheWrite: 0,
|
|
4193
4423
|
},
|
|
4194
4424
|
contextWindow: 400000,
|
|
@@ -4196,7 +4426,7 @@ export const MODELS = {
|
|
|
4196
4426
|
},
|
|
4197
4427
|
"gpt-5.4-mini": {
|
|
4198
4428
|
id: "gpt-5.4-mini",
|
|
4199
|
-
name: "GPT-5.4
|
|
4429
|
+
name: "GPT-5.4 mini",
|
|
4200
4430
|
api: "openai-responses",
|
|
4201
4431
|
provider: "github-copilot",
|
|
4202
4432
|
baseUrl: "https://api.individual.githubcopilot.com",
|
|
@@ -4205,9 +4435,28 @@ export const MODELS = {
|
|
|
4205
4435
|
thinkingLevelMap: { "off": null, "minimal": "low", "xhigh": "xhigh" },
|
|
4206
4436
|
input: ["text", "image"],
|
|
4207
4437
|
cost: {
|
|
4208
|
-
input: 0,
|
|
4209
|
-
output:
|
|
4210
|
-
cacheRead: 0,
|
|
4438
|
+
input: 0.75,
|
|
4439
|
+
output: 4.5,
|
|
4440
|
+
cacheRead: 0.075,
|
|
4441
|
+
cacheWrite: 0,
|
|
4442
|
+
},
|
|
4443
|
+
contextWindow: 400000,
|
|
4444
|
+
maxTokens: 128000,
|
|
4445
|
+
},
|
|
4446
|
+
"gpt-5.4-nano": {
|
|
4447
|
+
id: "gpt-5.4-nano",
|
|
4448
|
+
name: "GPT-5.4 nano",
|
|
4449
|
+
api: "openai-responses",
|
|
4450
|
+
provider: "github-copilot",
|
|
4451
|
+
baseUrl: "https://api.individual.githubcopilot.com",
|
|
4452
|
+
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" },
|
|
4453
|
+
reasoning: true,
|
|
4454
|
+
thinkingLevelMap: { "off": null, "minimal": "low", "xhigh": "xhigh" },
|
|
4455
|
+
input: ["text", "image"],
|
|
4456
|
+
cost: {
|
|
4457
|
+
input: 0.2,
|
|
4458
|
+
output: 1.25,
|
|
4459
|
+
cacheRead: 0.02,
|
|
4211
4460
|
cacheWrite: 0,
|
|
4212
4461
|
},
|
|
4213
4462
|
contextWindow: 400000,
|
|
@@ -4224,32 +4473,32 @@ export const MODELS = {
|
|
|
4224
4473
|
thinkingLevelMap: { "off": null, "minimal": "low", "xhigh": "xhigh" },
|
|
4225
4474
|
input: ["text", "image"],
|
|
4226
4475
|
cost: {
|
|
4227
|
-
input:
|
|
4228
|
-
output:
|
|
4229
|
-
cacheRead: 0,
|
|
4476
|
+
input: 5,
|
|
4477
|
+
output: 30,
|
|
4478
|
+
cacheRead: 0.5,
|
|
4230
4479
|
cacheWrite: 0,
|
|
4231
4480
|
},
|
|
4232
4481
|
contextWindow: 400000,
|
|
4233
4482
|
maxTokens: 128000,
|
|
4234
4483
|
},
|
|
4235
|
-
"
|
|
4236
|
-
id: "
|
|
4237
|
-
name: "
|
|
4484
|
+
"raptor-mini": {
|
|
4485
|
+
id: "raptor-mini",
|
|
4486
|
+
name: "Raptor mini",
|
|
4238
4487
|
api: "openai-completions",
|
|
4239
4488
|
provider: "github-copilot",
|
|
4240
4489
|
baseUrl: "https://api.individual.githubcopilot.com",
|
|
4241
4490
|
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" },
|
|
4242
4491
|
compat: { "supportsStore": false, "supportsDeveloperRole": false, "supportsReasoningEffort": false },
|
|
4243
4492
|
reasoning: true,
|
|
4244
|
-
input: ["text"],
|
|
4493
|
+
input: ["text", "image"],
|
|
4245
4494
|
cost: {
|
|
4246
|
-
input: 0,
|
|
4247
|
-
output:
|
|
4248
|
-
cacheRead: 0,
|
|
4495
|
+
input: 0.25,
|
|
4496
|
+
output: 2,
|
|
4497
|
+
cacheRead: 0.025,
|
|
4249
4498
|
cacheWrite: 0,
|
|
4250
4499
|
},
|
|
4251
|
-
contextWindow:
|
|
4252
|
-
maxTokens:
|
|
4500
|
+
contextWindow: 400000,
|
|
4501
|
+
maxTokens: 128000,
|
|
4253
4502
|
},
|
|
4254
4503
|
},
|
|
4255
4504
|
"google": {
|
|
@@ -5542,6 +5791,23 @@ export const MODELS = {
|
|
|
5542
5791
|
contextWindow: 204800,
|
|
5543
5792
|
maxTokens: 131072,
|
|
5544
5793
|
},
|
|
5794
|
+
"MiniMax-M3": {
|
|
5795
|
+
id: "MiniMax-M3",
|
|
5796
|
+
name: "MiniMax-M3",
|
|
5797
|
+
api: "anthropic-messages",
|
|
5798
|
+
provider: "minimax",
|
|
5799
|
+
baseUrl: "https://api.minimax.io/anthropic",
|
|
5800
|
+
reasoning: true,
|
|
5801
|
+
input: ["text", "image"],
|
|
5802
|
+
cost: {
|
|
5803
|
+
input: 0.6,
|
|
5804
|
+
output: 2.4,
|
|
5805
|
+
cacheRead: 0.12,
|
|
5806
|
+
cacheWrite: 0,
|
|
5807
|
+
},
|
|
5808
|
+
contextWindow: 1000000,
|
|
5809
|
+
maxTokens: 131072,
|
|
5810
|
+
},
|
|
5545
5811
|
},
|
|
5546
5812
|
"minimax-cn": {
|
|
5547
5813
|
"MiniMax-M2.7": {
|
|
@@ -5578,6 +5844,23 @@ export const MODELS = {
|
|
|
5578
5844
|
contextWindow: 204800,
|
|
5579
5845
|
maxTokens: 131072,
|
|
5580
5846
|
},
|
|
5847
|
+
"MiniMax-M3": {
|
|
5848
|
+
id: "MiniMax-M3",
|
|
5849
|
+
name: "MiniMax-M3",
|
|
5850
|
+
api: "anthropic-messages",
|
|
5851
|
+
provider: "minimax-cn",
|
|
5852
|
+
baseUrl: "https://api.minimaxi.com/anthropic",
|
|
5853
|
+
reasoning: true,
|
|
5854
|
+
input: ["text", "image"],
|
|
5855
|
+
cost: {
|
|
5856
|
+
input: 0.6,
|
|
5857
|
+
output: 2.4,
|
|
5858
|
+
cacheRead: 0.12,
|
|
5859
|
+
cacheWrite: 0,
|
|
5860
|
+
},
|
|
5861
|
+
contextWindow: 1000000,
|
|
5862
|
+
maxTokens: 131072,
|
|
5863
|
+
},
|
|
5581
5864
|
},
|
|
5582
5865
|
"mistral": {
|
|
5583
5866
|
"codestral-latest": {
|
|
@@ -5614,6 +5897,23 @@ export const MODELS = {
|
|
|
5614
5897
|
contextWindow: 262144,
|
|
5615
5898
|
maxTokens: 262144,
|
|
5616
5899
|
},
|
|
5900
|
+
"devstral-latest": {
|
|
5901
|
+
id: "devstral-latest",
|
|
5902
|
+
name: "Devstral 2",
|
|
5903
|
+
api: "mistral-conversations",
|
|
5904
|
+
provider: "mistral",
|
|
5905
|
+
baseUrl: "https://api.mistral.ai",
|
|
5906
|
+
reasoning: false,
|
|
5907
|
+
input: ["text"],
|
|
5908
|
+
cost: {
|
|
5909
|
+
input: 0.4,
|
|
5910
|
+
output: 2,
|
|
5911
|
+
cacheRead: 0,
|
|
5912
|
+
cacheWrite: 0,
|
|
5913
|
+
},
|
|
5914
|
+
contextWindow: 262144,
|
|
5915
|
+
maxTokens: 262144,
|
|
5916
|
+
},
|
|
5617
5917
|
"devstral-medium-2507": {
|
|
5618
5918
|
id: "devstral-medium-2507",
|
|
5619
5919
|
name: "Devstral Medium",
|
|
@@ -5988,6 +6288,23 @@ export const MODELS = {
|
|
|
5988
6288
|
contextWindow: 8000,
|
|
5989
6289
|
maxTokens: 8000,
|
|
5990
6290
|
},
|
|
6291
|
+
"open-mistral-nemo": {
|
|
6292
|
+
id: "open-mistral-nemo",
|
|
6293
|
+
name: "Open Mistral Nemo",
|
|
6294
|
+
api: "mistral-conversations",
|
|
6295
|
+
provider: "mistral",
|
|
6296
|
+
baseUrl: "https://api.mistral.ai",
|
|
6297
|
+
reasoning: false,
|
|
6298
|
+
input: ["text"],
|
|
6299
|
+
cost: {
|
|
6300
|
+
input: 0.15,
|
|
6301
|
+
output: 0.15,
|
|
6302
|
+
cacheRead: 0,
|
|
6303
|
+
cacheWrite: 0,
|
|
6304
|
+
},
|
|
6305
|
+
contextWindow: 128000,
|
|
6306
|
+
maxTokens: 128000,
|
|
6307
|
+
},
|
|
5991
6308
|
"open-mixtral-8x22b": {
|
|
5992
6309
|
id: "open-mixtral-8x22b",
|
|
5993
6310
|
name: "Mixtral 8x22B",
|
|
@@ -8153,6 +8470,23 @@ export const MODELS = {
|
|
|
8153
8470
|
contextWindow: 1000000,
|
|
8154
8471
|
maxTokens: 65536,
|
|
8155
8472
|
},
|
|
8473
|
+
"qwen3.7-plus": {
|
|
8474
|
+
id: "qwen3.7-plus",
|
|
8475
|
+
name: "Qwen3.7 Plus",
|
|
8476
|
+
api: "anthropic-messages",
|
|
8477
|
+
provider: "opencode-go",
|
|
8478
|
+
baseUrl: "https://opencode.ai/zen/go",
|
|
8479
|
+
reasoning: true,
|
|
8480
|
+
input: ["text", "image"],
|
|
8481
|
+
cost: {
|
|
8482
|
+
input: 0.4,
|
|
8483
|
+
output: 1.6,
|
|
8484
|
+
cacheRead: 0.04,
|
|
8485
|
+
cacheWrite: 0.5,
|
|
8486
|
+
},
|
|
8487
|
+
contextWindow: 262144,
|
|
8488
|
+
maxTokens: 65536,
|
|
8489
|
+
},
|
|
8156
8490
|
},
|
|
8157
8491
|
"openrouter": {
|
|
8158
8492
|
"ai21/jamba-large-1.7": {
|
|
@@ -9280,9 +9614,9 @@ export const MODELS = {
|
|
|
9280
9614
|
reasoning: true,
|
|
9281
9615
|
input: ["text"],
|
|
9282
9616
|
cost: {
|
|
9283
|
-
input: 0.
|
|
9284
|
-
output:
|
|
9285
|
-
cacheRead: 0.
|
|
9617
|
+
input: 0.075,
|
|
9618
|
+
output: 0.625,
|
|
9619
|
+
cacheRead: 0.015,
|
|
9286
9620
|
cacheWrite: 0,
|
|
9287
9621
|
},
|
|
9288
9622
|
contextWindow: 262144,
|
|
@@ -11901,6 +12235,23 @@ export const MODELS = {
|
|
|
11901
12235
|
contextWindow: 1000000,
|
|
11902
12236
|
maxTokens: 65536,
|
|
11903
12237
|
},
|
|
12238
|
+
"qwen/qwen3.7-plus": {
|
|
12239
|
+
id: "qwen/qwen3.7-plus",
|
|
12240
|
+
name: "Qwen: Qwen3.7 Plus",
|
|
12241
|
+
api: "openai-completions",
|
|
12242
|
+
provider: "openrouter",
|
|
12243
|
+
baseUrl: "https://openrouter.ai/api/v1",
|
|
12244
|
+
reasoning: true,
|
|
12245
|
+
input: ["text", "image"],
|
|
12246
|
+
cost: {
|
|
12247
|
+
input: 0.4,
|
|
12248
|
+
output: 1.6,
|
|
12249
|
+
cacheRead: 0.08,
|
|
12250
|
+
cacheWrite: 0.5,
|
|
12251
|
+
},
|
|
12252
|
+
contextWindow: 1000000,
|
|
12253
|
+
maxTokens: 65536,
|
|
12254
|
+
},
|
|
11904
12255
|
"rekaai/reka-edge": {
|
|
11905
12256
|
id: "rekaai/reka-edge",
|
|
11906
12257
|
name: "Reka Edge",
|
|
@@ -12012,13 +12363,13 @@ export const MODELS = {
|
|
|
12012
12363
|
reasoning: true,
|
|
12013
12364
|
input: ["text"],
|
|
12014
12365
|
cost: {
|
|
12015
|
-
input: 0.
|
|
12016
|
-
output: 0.
|
|
12017
|
-
cacheRead: 0.
|
|
12366
|
+
input: 0.063,
|
|
12367
|
+
output: 0.21,
|
|
12368
|
+
cacheRead: 0.021,
|
|
12018
12369
|
cacheWrite: 0,
|
|
12019
12370
|
},
|
|
12020
12371
|
contextWindow: 262144,
|
|
12021
|
-
maxTokens:
|
|
12372
|
+
maxTokens: 4096,
|
|
12022
12373
|
},
|
|
12023
12374
|
"thedrummer/rocinante-12b": {
|
|
12024
12375
|
id: "thedrummer/rocinante-12b",
|
|
@@ -12341,7 +12692,7 @@ export const MODELS = {
|
|
|
12341
12692
|
cacheWrite: 0,
|
|
12342
12693
|
},
|
|
12343
12694
|
contextWindow: 202752,
|
|
12344
|
-
maxTokens:
|
|
12695
|
+
maxTokens: 4096,
|
|
12345
12696
|
},
|
|
12346
12697
|
"z-ai/glm-5-turbo": {
|
|
12347
12698
|
id: "z-ai/glm-5-turbo",
|
|
@@ -12375,7 +12726,7 @@ export const MODELS = {
|
|
|
12375
12726
|
cacheWrite: 0,
|
|
12376
12727
|
},
|
|
12377
12728
|
contextWindow: 202752,
|
|
12378
|
-
maxTokens:
|
|
12729
|
+
maxTokens: 4096,
|
|
12379
12730
|
},
|
|
12380
12731
|
"z-ai/glm-5v-turbo": {
|
|
12381
12732
|
id: "z-ai/glm-5v-turbo",
|
|
@@ -13230,6 +13581,23 @@ export const MODELS = {
|
|
|
13230
13581
|
contextWindow: 991000,
|
|
13231
13582
|
maxTokens: 64000,
|
|
13232
13583
|
},
|
|
13584
|
+
"alibaba/qwen3.7-plus": {
|
|
13585
|
+
id: "alibaba/qwen3.7-plus",
|
|
13586
|
+
name: "Qwen 3.7 Plus",
|
|
13587
|
+
api: "anthropic-messages",
|
|
13588
|
+
provider: "vercel-ai-gateway",
|
|
13589
|
+
baseUrl: "https://ai-gateway.vercel.sh",
|
|
13590
|
+
reasoning: true,
|
|
13591
|
+
input: ["text", "image"],
|
|
13592
|
+
cost: {
|
|
13593
|
+
input: 0.4,
|
|
13594
|
+
output: 1.6,
|
|
13595
|
+
cacheRead: 0.08,
|
|
13596
|
+
cacheWrite: 0.5,
|
|
13597
|
+
},
|
|
13598
|
+
contextWindow: 1000000,
|
|
13599
|
+
maxTokens: 64000,
|
|
13600
|
+
},
|
|
13233
13601
|
"anthropic/claude-3-haiku": {
|
|
13234
13602
|
id: "anthropic/claude-3-haiku",
|
|
13235
13603
|
name: "Claude 3 Haiku",
|
|
@@ -13838,12 +14206,12 @@ export const MODELS = {
|
|
|
13838
14206
|
api: "anthropic-messages",
|
|
13839
14207
|
provider: "vercel-ai-gateway",
|
|
13840
14208
|
baseUrl: "https://ai-gateway.vercel.sh",
|
|
13841
|
-
reasoning:
|
|
14209
|
+
reasoning: true,
|
|
13842
14210
|
input: ["text", "image"],
|
|
13843
14211
|
cost: {
|
|
13844
|
-
input: 0.
|
|
13845
|
-
output: 0.
|
|
13846
|
-
cacheRead: 0,
|
|
14212
|
+
input: 0.15,
|
|
14213
|
+
output: 0.6,
|
|
14214
|
+
cacheRead: 0.015,
|
|
13847
14215
|
cacheWrite: 0,
|
|
13848
14216
|
},
|
|
13849
14217
|
contextWindow: 262144,
|