@opengsd/gsd-pi 1.2.0-dev.844675c9 → 1.2.0-dev.955e4da0
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-web-branch.d.ts +2 -0
- package/dist/cli-web-branch.js +9 -2
- package/dist/help-text.js +5 -0
- package/dist/resources/.managed-resources-content-hash +1 -1
- package/dist/resources/extensions/ask-user-questions.js +78 -23
- package/dist/resources/extensions/bg-shell/utilities.js +2 -2
- package/dist/resources/extensions/claude-code-cli/models.js +9 -0
- package/dist/resources/extensions/claude-code-cli/stream-adapter.js +92 -230
- package/dist/resources/extensions/claude-code-cli/turn-assembler.js +224 -0
- package/dist/resources/extensions/github-sync/templates.js +3 -3
- package/dist/resources/extensions/gsd/artifact-projection.js +14 -0
- package/dist/resources/extensions/gsd/auto/loop.js +74 -56
- package/dist/resources/extensions/gsd/auto/orchestrator.js +142 -15
- package/dist/resources/extensions/gsd/auto/phases.js +34 -4
- package/dist/resources/extensions/gsd/auto/run-unit.js +2 -1
- package/dist/resources/extensions/gsd/auto/session.js +3 -0
- package/dist/resources/extensions/gsd/auto-dashboard.js +16 -4
- package/dist/resources/extensions/gsd/auto-dispatch.js +6 -5
- package/dist/resources/extensions/gsd/auto-model-selection.js +8 -0
- package/dist/resources/extensions/gsd/auto-post-unit.js +12 -9
- package/dist/resources/extensions/gsd/auto-prompts.js +81 -8
- package/dist/resources/extensions/gsd/auto-recovery.js +48 -49
- package/dist/resources/extensions/gsd/auto-runtime-state.js +14 -0
- package/dist/resources/extensions/gsd/auto-start.js +20 -36
- package/dist/resources/extensions/gsd/auto-timers.js +16 -2
- package/dist/resources/extensions/gsd/auto-tool-tracking.js +32 -0
- package/dist/resources/extensions/gsd/auto-unit-tool-scope.js +4 -29
- package/dist/resources/extensions/gsd/auto-verification.js +7 -7
- package/dist/resources/extensions/gsd/auto-worktree-repair.js +10 -2
- package/dist/resources/extensions/gsd/auto-worktree.js +34 -289
- package/dist/resources/extensions/gsd/auto.js +15 -14
- package/dist/resources/extensions/gsd/bootstrap/db-tools.js +28 -37
- package/dist/resources/extensions/gsd/bootstrap/dynamic-tools.js +20 -43
- package/dist/resources/extensions/gsd/bootstrap/query-tools.js +2 -2
- package/dist/resources/extensions/gsd/bootstrap/register-hooks.js +131 -140
- package/dist/resources/extensions/gsd/bootstrap/write-gate.js +89 -8
- package/dist/resources/extensions/gsd/captures.js +5 -13
- package/dist/resources/extensions/gsd/closeout-consistency-gate.js +21 -4
- package/dist/resources/extensions/gsd/closeout-recovery.js +3 -2
- package/dist/resources/extensions/gsd/codebase-generator.js +8 -4
- package/dist/resources/extensions/gsd/commands/catalog.js +6 -62
- package/dist/resources/extensions/gsd/commands/handlers/auto.js +3 -0
- package/dist/resources/extensions/gsd/commands-handlers.js +20 -0
- package/dist/resources/extensions/gsd/commands-inspect.js +4 -8
- package/dist/resources/extensions/gsd/commands-maintenance.js +61 -41
- package/dist/resources/extensions/gsd/commands-ship.js +2 -2
- package/dist/resources/extensions/gsd/commands-verdict.js +12 -2
- package/dist/resources/extensions/gsd/db/engine.js +755 -0
- package/dist/resources/extensions/gsd/db/queries.js +372 -0
- package/dist/resources/extensions/gsd/db/sql-constants.js +11 -0
- package/dist/resources/extensions/gsd/db/writers/cascades.js +194 -0
- package/dist/resources/extensions/gsd/db/writers/import-restore.js +182 -0
- package/dist/resources/extensions/gsd/db/writers/memory.js +149 -0
- package/dist/resources/extensions/gsd/db/writers/reconcile.js +458 -0
- package/dist/resources/extensions/gsd/db/writers/status.js +70 -0
- package/dist/resources/extensions/gsd/db-workspace.js +103 -0
- package/dist/resources/extensions/gsd/delegation-policy.js +2 -10
- package/dist/resources/extensions/gsd/discussion-handoff.js +218 -0
- package/dist/resources/extensions/gsd/docs/preferences-reference.md +9 -0
- package/dist/resources/extensions/gsd/doctor-environment.js +8 -10
- package/dist/resources/extensions/gsd/doctor-git-checks.js +4 -3
- package/dist/resources/extensions/gsd/doctor-runtime-checks.js +9 -2
- package/dist/resources/extensions/gsd/doctor.js +16 -9
- package/dist/resources/extensions/gsd/error-classifier.js +1 -1
- package/dist/resources/extensions/gsd/git-conflict-state.js +16 -1
- package/dist/resources/extensions/gsd/git-service.js +1 -0
- package/dist/resources/extensions/gsd/gitignore.js +3 -0
- package/dist/resources/extensions/gsd/gsd-db.js +183 -2048
- package/dist/resources/extensions/gsd/guided-flow.js +68 -471
- package/dist/resources/extensions/gsd/guided-unit-completion.js +225 -0
- package/dist/resources/extensions/gsd/markdown-renderer.js +2 -1
- package/dist/resources/extensions/gsd/mcp-filter.js +2 -1
- package/dist/resources/extensions/gsd/mcp-tool-name.js +26 -0
- package/dist/resources/extensions/gsd/md-importer.js +4 -3
- package/dist/resources/extensions/gsd/migrate/safety.js +19 -11
- package/dist/resources/extensions/gsd/migration-auto-check.js +27 -5
- package/dist/resources/extensions/gsd/milestone-closeout-proof.js +72 -0
- package/dist/resources/extensions/gsd/milestone-closeout.js +12 -4
- package/dist/resources/extensions/gsd/milestone-merge-transaction.js +10 -0
- package/dist/resources/extensions/gsd/milestone-planning-persistence.js +156 -0
- package/dist/resources/extensions/gsd/milestone-readiness.js +77 -0
- package/dist/resources/extensions/gsd/milestone-settlement.js +50 -0
- package/dist/resources/extensions/gsd/milestone-validation-evidence.js +73 -0
- package/dist/resources/extensions/gsd/milestone-validation-verdict.js +57 -0
- package/dist/resources/extensions/gsd/model-cost-table.js +1 -0
- package/dist/resources/extensions/gsd/model-router.js +3 -0
- package/dist/resources/extensions/gsd/parallel-eligibility.js +3 -6
- package/dist/resources/extensions/gsd/parallel-merge.js +14 -11
- package/dist/resources/extensions/gsd/parallel-monitor-overlay.js +7 -5
- package/dist/resources/extensions/gsd/parallel-orchestrator.js +3 -2
- package/dist/resources/extensions/gsd/paths.js +10 -24
- package/dist/resources/extensions/gsd/preferences-diagnostics.js +67 -0
- package/dist/resources/extensions/gsd/preferences.js +161 -29
- package/dist/resources/extensions/gsd/prompts/complete-slice.md +1 -0
- package/dist/resources/extensions/gsd/prompts/execute-task.md +2 -0
- package/dist/resources/extensions/gsd/prompts/guided-discuss-project.md +3 -1
- package/dist/resources/extensions/gsd/prompts/plan-milestone.md +2 -0
- package/dist/resources/extensions/gsd/prompts/plan-slice.md +1 -0
- package/dist/resources/extensions/gsd/prompts/refine-slice.md +1 -0
- package/dist/resources/extensions/gsd/prompts/system.md +1 -1
- package/dist/resources/extensions/gsd/provider-payload-policy.js +83 -0
- package/dist/resources/extensions/gsd/pull-request-process.js +13 -0
- package/dist/resources/extensions/gsd/quality-gate-closure.js +109 -0
- package/dist/resources/extensions/gsd/question-transport.js +86 -0
- package/dist/resources/extensions/gsd/recovery-classification.js +12 -1
- package/dist/resources/extensions/gsd/roadmap-slices.js +8 -2
- package/dist/resources/extensions/gsd/safety/evidence-collector.js +37 -4
- package/dist/resources/extensions/gsd/safety/evidence-cross-ref.js +7 -2
- package/dist/resources/extensions/gsd/safety/file-change-validator.js +10 -0
- package/dist/resources/extensions/gsd/slice-parallel-orchestrator.js +3 -2
- package/dist/resources/extensions/gsd/state-transition-matrix.js +38 -0
- package/dist/resources/extensions/gsd/state.js +13 -5
- package/dist/resources/extensions/gsd/status-guards.js +56 -8
- package/dist/resources/extensions/gsd/templates/plan.md +7 -0
- package/dist/resources/extensions/gsd/templates/project.md +1 -0
- package/dist/resources/extensions/gsd/templates/roadmap.md +1 -1
- package/dist/resources/extensions/gsd/templates/uat.md +5 -1
- package/dist/resources/extensions/gsd/tool-contract.js +52 -8
- package/dist/resources/extensions/gsd/tool-presentation-plan.js +15 -34
- package/dist/resources/extensions/gsd/tool-surface-snapshot.js +17 -0
- package/dist/resources/extensions/gsd/tools/complete-slice.js +24 -43
- package/dist/resources/extensions/gsd/tools/exec-tool.js +5 -5
- package/dist/resources/extensions/gsd/tools/plan-milestone.js +15 -143
- package/dist/resources/extensions/gsd/tools/reassess-roadmap.js +39 -0
- package/dist/resources/extensions/gsd/tools/reopen-milestone.js +11 -29
- package/dist/resources/extensions/gsd/tools/reopen-slice.js +14 -33
- package/dist/resources/extensions/gsd/tools/skip-slice.js +18 -36
- package/dist/resources/extensions/gsd/tools/validate-milestone.js +15 -78
- package/dist/resources/extensions/gsd/uat-policy.js +16 -10
- package/dist/resources/extensions/gsd/uat-run.js +9 -14
- package/dist/resources/extensions/gsd/undo.js +8 -7
- package/dist/resources/extensions/gsd/unit-context-composer.js +40 -20
- package/dist/resources/extensions/gsd/unit-runtime.js +3 -2
- package/dist/resources/extensions/gsd/unit-tool-contracts.js +2 -1
- package/dist/resources/extensions/gsd/user-input-boundary.js +23 -0
- package/dist/resources/extensions/gsd/validation-block-guard.js +2 -0
- package/dist/resources/extensions/gsd/web-app-uat.js +80 -0
- package/dist/resources/extensions/gsd/workflow-mcp.js +15 -102
- package/dist/resources/extensions/gsd/workflow-reconcile.js +4 -3
- package/dist/resources/extensions/gsd/workflow-tool-surface.js +46 -0
- package/dist/resources/extensions/gsd/workspace-git-guard.js +2 -0
- package/dist/resources/extensions/gsd/worktree-git-recovery.js +287 -0
- package/dist/resources/extensions/gsd/worktree-lifecycle.js +9 -1
- package/dist/resources/extensions/gsd/worktree-manager.js +45 -28
- package/dist/resources/extensions/gsd/worktree-placement.js +59 -0
- package/dist/resources/extensions/gsd/worktree-reentry.js +12 -8
- package/dist/resources/extensions/gsd/worktree-root.js +17 -6
- package/dist/resources/extensions/gsd/worktree-safety.js +8 -5
- package/dist/resources/extensions/gsd/worktree-session-state.js +12 -10
- package/dist/resources/extensions/gsd/worktree-state-projection.js +33 -4
- package/dist/resources/extensions/gsd/worktree-telemetry.js +12 -0
- package/dist/resources/extensions/shared/interview-ui.js +2 -2
- package/dist/resources/shared/claude-runtime-floor.js +182 -0
- package/dist/resources/skills/gsd-browser/SKILL.md +1 -1
- package/dist/tsconfig.extensions.tsbuildinfo +1 -1
- package/dist/update-cmd.js +20 -0
- package/dist/web/standalone/.next/BUILD_ID +1 -1
- package/dist/web/standalone/.next/app-path-routes-manifest.json +12 -12
- package/dist/web/standalone/.next/build-manifest.json +3 -3
- package/dist/web/standalone/.next/prerender-manifest.json +3 -3
- package/dist/web/standalone/.next/react-loadable-manifest.json +8 -8
- 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/boot/route.js.nft.json +1 -1
- package/dist/web/standalone/.next/server/app/api/bridge-terminal/input/route.js.nft.json +1 -1
- package/dist/web/standalone/.next/server/app/api/bridge-terminal/resize/route.js.nft.json +1 -1
- package/dist/web/standalone/.next/server/app/api/bridge-terminal/stream/route.js.nft.json +1 -1
- package/dist/web/standalone/.next/server/app/api/captures/route.js.nft.json +1 -1
- package/dist/web/standalone/.next/server/app/api/cleanup/route.js.nft.json +1 -1
- package/dist/web/standalone/.next/server/app/api/doctor/route.js.nft.json +1 -1
- package/dist/web/standalone/.next/server/app/api/export-data/route.js.nft.json +1 -1
- package/dist/web/standalone/.next/server/app/api/files/route.js.nft.json +1 -1
- package/dist/web/standalone/.next/server/app/api/forensics/route.js.nft.json +1 -1
- package/dist/web/standalone/.next/server/app/api/git/route.js.nft.json +1 -1
- package/dist/web/standalone/.next/server/app/api/history/route.js.nft.json +1 -1
- package/dist/web/standalone/.next/server/app/api/hooks/route.js.nft.json +1 -1
- package/dist/web/standalone/.next/server/app/api/inspect/route.js.nft.json +1 -1
- package/dist/web/standalone/.next/server/app/api/knowledge/route.js.nft.json +1 -1
- package/dist/web/standalone/.next/server/app/api/live-state/route.js.nft.json +1 -1
- package/dist/web/standalone/.next/server/app/api/mcp-connections/route.js.nft.json +1 -1
- package/dist/web/standalone/.next/server/app/api/notifications/route.js.nft.json +1 -1
- package/dist/web/standalone/.next/server/app/api/onboarding/route.js.nft.json +1 -1
- package/dist/web/standalone/.next/server/app/api/projects/route.js.nft.json +1 -1
- package/dist/web/standalone/.next/server/app/api/recovery/route.js.nft.json +1 -1
- package/dist/web/standalone/.next/server/app/api/session/browser/route.js.nft.json +1 -1
- package/dist/web/standalone/.next/server/app/api/session/command/route.js.nft.json +1 -1
- package/dist/web/standalone/.next/server/app/api/session/events/route.js.nft.json +1 -1
- package/dist/web/standalone/.next/server/app/api/session/manage/route.js.nft.json +1 -1
- package/dist/web/standalone/.next/server/app/api/settings-data/route.js.nft.json +1 -1
- package/dist/web/standalone/.next/server/app/api/shutdown/route.js.nft.json +1 -1
- package/dist/web/standalone/.next/server/app/api/skill-health/route.js.nft.json +1 -1
- package/dist/web/standalone/.next/server/app/api/steer/route.js.nft.json +1 -1
- package/dist/web/standalone/.next/server/app/api/switch-root/route.js.nft.json +1 -1
- package/dist/web/standalone/.next/server/app/api/terminal/sessions/route.js.nft.json +1 -1
- package/dist/web/standalone/.next/server/app/api/terminal/stream/route.js.nft.json +1 -1
- package/dist/web/standalone/.next/server/app/api/undo/route.js.nft.json +1 -1
- package/dist/web/standalone/.next/server/app/api/visualizer/route.js.nft.json +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 +12 -12
- package/dist/web/standalone/.next/server/chunks/{5047.js → 5942.js} +2 -2
- 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/middleware-react-loadable-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/dist/web/standalone/.next/static/chunks/2659.b7b129ee6a769448.js +1 -0
- package/dist/web/standalone/.next/static/chunks/2772.bfa657f49f955239.js +1 -0
- package/dist/web/standalone/.next/static/chunks/{3616.4113d484a994e411.js → 3616.3c60753b8ffcbd2e.js} +1 -1
- package/dist/web/standalone/.next/static/chunks/4283.e4873b058df143a1.js +2 -0
- package/dist/web/standalone/.next/static/chunks/5826.a46ecdd1cfe8dabc.js +1 -0
- package/dist/web/standalone/.next/static/chunks/796.cf859a427a2cb2ac.js +10 -0
- package/dist/web/standalone/.next/static/chunks/8785.2e5a118797fb2dd2.js +1 -0
- package/dist/web/standalone/.next/static/chunks/{webpack-dda80a1ef5587410.js → webpack-fbea77b5f9953368.js} +1 -1
- package/dist/web/standalone/node_modules/node-pty/build/Makefile +1 -1
- package/dist/web-mode.d.ts +2 -0
- package/dist/web-mode.js +20 -8
- package/dist/worktree-status-banner.js +7 -3
- package/package.json +2 -1
- package/packages/cloud-mcp-gateway/package.json +2 -2
- package/packages/contracts/package.json +1 -1
- package/packages/daemon/package.json +4 -4
- package/packages/gsd-agent-core/dist/session/agent-session-extensions.d.ts +2 -0
- package/packages/gsd-agent-core/dist/session/agent-session-extensions.d.ts.map +1 -1
- package/packages/gsd-agent-core/dist/session/agent-session-extensions.js +14 -0
- package/packages/gsd-agent-core/dist/session/agent-session-extensions.js.map +1 -1
- package/packages/gsd-agent-core/package.json +5 -5
- package/packages/gsd-agent-modes/dist/modes/interactive/components/tool-execution.d.ts.map +1 -1
- package/packages/gsd-agent-modes/dist/modes/interactive/components/tool-execution.js +3 -0
- package/packages/gsd-agent-modes/dist/modes/interactive/components/tool-execution.js.map +1 -1
- 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 +106 -40
- package/packages/gsd-agent-modes/dist/modes/interactive/controllers/chat-controller.js.map +1 -1
- package/packages/gsd-agent-modes/dist/modes/interactive/interactive-extension-widgets.d.ts.map +1 -1
- package/packages/gsd-agent-modes/dist/modes/interactive/interactive-extension-widgets.js +6 -0
- package/packages/gsd-agent-modes/dist/modes/interactive/interactive-extension-widgets.js.map +1 -1
- package/packages/gsd-agent-modes/package.json +7 -7
- package/packages/mcp-server/dist/server.d.ts +10 -0
- package/packages/mcp-server/dist/server.d.ts.map +1 -1
- package/packages/mcp-server/dist/server.js +8 -0
- package/packages/mcp-server/dist/server.js.map +1 -1
- package/packages/mcp-server/dist/workflow-tools.d.ts +41 -0
- package/packages/mcp-server/dist/workflow-tools.d.ts.map +1 -1
- package/packages/mcp-server/dist/workflow-tools.js +32 -22
- 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/package.json +1 -1
- package/packages/pi-ai/dist/image-models.generated.d.ts +2 -2
- package/packages/pi-ai/dist/image-models.generated.js +6 -6
- package/packages/pi-ai/dist/image-models.generated.js.map +1 -1
- package/packages/pi-ai/dist/models.generated.d.ts +295 -98
- package/packages/pi-ai/dist/models.generated.d.ts.map +1 -1
- package/packages/pi-ai/dist/models.generated.js +309 -154
- package/packages/pi-ai/dist/models.generated.js.map +1 -1
- package/packages/pi-ai/package.json +1 -1
- package/packages/pi-coding-agent/dist/core/capability-patches.d.ts.map +1 -1
- package/packages/pi-coding-agent/dist/core/capability-patches.js +3 -1
- package/packages/pi-coding-agent/dist/core/capability-patches.js.map +1 -1
- package/packages/pi-coding-agent/package.json +7 -7
- package/packages/pi-tui/dist/components/input.js +1 -1
- package/packages/pi-tui/dist/components/input.js.map +1 -1
- package/packages/pi-tui/dist/keys.d.ts.map +1 -1
- package/packages/pi-tui/dist/keys.js +39 -30
- package/packages/pi-tui/dist/keys.js.map +1 -1
- package/packages/pi-tui/dist/stdin-buffer.d.ts.map +1 -1
- package/packages/pi-tui/dist/stdin-buffer.js +22 -0
- package/packages/pi-tui/dist/stdin-buffer.js.map +1 -1
- package/packages/pi-tui/package.json +2 -2
- package/packages/rpc-client/package.json +2 -2
- package/pkg/package.json +1 -1
- package/src/resources/extensions/ask-user-questions.ts +87 -24
- package/src/resources/extensions/bg-shell/utilities.ts +2 -2
- package/src/resources/extensions/claude-code-cli/models.ts +9 -0
- package/src/resources/extensions/claude-code-cli/stream-adapter.ts +114 -281
- package/src/resources/extensions/claude-code-cli/tests/stream-adapter.test.ts +268 -0
- package/src/resources/extensions/claude-code-cli/turn-assembler.ts +287 -0
- package/src/resources/extensions/github-sync/templates.ts +3 -3
- package/src/resources/extensions/github-sync/tests/templates.test.ts +2 -2
- package/src/resources/extensions/gsd/artifact-projection.ts +31 -0
- package/src/resources/extensions/gsd/auto/contracts.ts +32 -2
- package/src/resources/extensions/gsd/auto/loop-deps.ts +3 -1
- package/src/resources/extensions/gsd/auto/loop.ts +83 -61
- package/src/resources/extensions/gsd/auto/orchestrator.ts +164 -17
- package/src/resources/extensions/gsd/auto/phases.ts +45 -4
- package/src/resources/extensions/gsd/auto/run-unit.ts +2 -1
- package/src/resources/extensions/gsd/auto/session.ts +4 -0
- package/src/resources/extensions/gsd/auto-dashboard.ts +18 -4
- package/src/resources/extensions/gsd/auto-dispatch.ts +20 -7
- package/src/resources/extensions/gsd/auto-model-selection.ts +8 -0
- package/src/resources/extensions/gsd/auto-post-unit.ts +16 -8
- package/src/resources/extensions/gsd/auto-prompts.ts +107 -9
- package/src/resources/extensions/gsd/auto-recovery.ts +50 -50
- package/src/resources/extensions/gsd/auto-runtime-state.ts +26 -0
- package/src/resources/extensions/gsd/auto-start.ts +25 -34
- package/src/resources/extensions/gsd/auto-timers.ts +16 -2
- package/src/resources/extensions/gsd/auto-tool-tracking.ts +35 -0
- package/src/resources/extensions/gsd/auto-unit-tool-scope.ts +9 -30
- package/src/resources/extensions/gsd/auto-verification.ts +7 -8
- package/src/resources/extensions/gsd/auto-worktree-repair.ts +13 -2
- package/src/resources/extensions/gsd/auto-worktree.ts +53 -306
- package/src/resources/extensions/gsd/auto.ts +27 -17
- package/src/resources/extensions/gsd/bootstrap/db-tools.ts +29 -37
- package/src/resources/extensions/gsd/bootstrap/dynamic-tools.ts +20 -43
- package/src/resources/extensions/gsd/bootstrap/query-tools.ts +2 -2
- package/src/resources/extensions/gsd/bootstrap/register-hooks.ts +147 -153
- package/src/resources/extensions/gsd/bootstrap/write-gate.ts +132 -6
- package/src/resources/extensions/gsd/captures.ts +5 -14
- package/src/resources/extensions/gsd/closeout-consistency-gate.ts +27 -5
- package/src/resources/extensions/gsd/closeout-recovery.ts +2 -1
- package/src/resources/extensions/gsd/codebase-generator.ts +9 -5
- package/src/resources/extensions/gsd/commands/catalog.ts +6 -68
- package/src/resources/extensions/gsd/commands/handlers/auto.ts +3 -0
- package/src/resources/extensions/gsd/commands-handlers.ts +18 -0
- package/src/resources/extensions/gsd/commands-inspect.ts +7 -8
- package/src/resources/extensions/gsd/commands-maintenance.ts +74 -40
- package/src/resources/extensions/gsd/commands-ship.ts +2 -2
- package/src/resources/extensions/gsd/commands-verdict.ts +19 -2
- package/src/resources/extensions/gsd/db/engine.ts +809 -0
- package/src/resources/extensions/gsd/db/queries.ts +453 -0
- package/src/resources/extensions/gsd/db/sql-constants.ts +12 -0
- package/src/resources/extensions/gsd/db/writers/cascades.ts +237 -0
- package/src/resources/extensions/gsd/db/writers/import-restore.ts +310 -0
- package/src/resources/extensions/gsd/db/writers/memory.ts +220 -0
- package/src/resources/extensions/gsd/db/writers/reconcile.ts +500 -0
- package/src/resources/extensions/gsd/db/writers/status.ts +88 -0
- package/src/resources/extensions/gsd/db-workspace.ts +170 -0
- package/src/resources/extensions/gsd/delegation-policy.ts +3 -11
- package/src/resources/extensions/gsd/discussion-handoff.ts +276 -0
- package/src/resources/extensions/gsd/docs/preferences-reference.md +9 -0
- package/src/resources/extensions/gsd/doctor-environment.ts +8 -11
- package/src/resources/extensions/gsd/doctor-git-checks.ts +3 -3
- package/src/resources/extensions/gsd/doctor-runtime-checks.ts +10 -3
- package/src/resources/extensions/gsd/doctor.ts +15 -5
- package/src/resources/extensions/gsd/error-classifier.ts +1 -1
- package/src/resources/extensions/gsd/git-conflict-state.ts +17 -1
- package/src/resources/extensions/gsd/git-service.ts +1 -0
- package/src/resources/extensions/gsd/gitignore.ts +3 -0
- package/src/resources/extensions/gsd/gsd-db.ts +185 -2373
- package/src/resources/extensions/gsd/guided-flow.ts +81 -561
- package/src/resources/extensions/gsd/guided-unit-completion.ts +275 -0
- package/src/resources/extensions/gsd/markdown-renderer.ts +2 -1
- package/src/resources/extensions/gsd/mcp-filter.ts +2 -1
- package/src/resources/extensions/gsd/mcp-tool-name.ts +35 -0
- package/src/resources/extensions/gsd/md-importer.ts +3 -3
- package/src/resources/extensions/gsd/migrate/safety.ts +17 -9
- package/src/resources/extensions/gsd/migration-auto-check.ts +30 -5
- package/src/resources/extensions/gsd/milestone-closeout-proof.ts +131 -0
- package/src/resources/extensions/gsd/milestone-closeout.ts +12 -4
- package/src/resources/extensions/gsd/milestone-merge-transaction.ts +47 -0
- package/src/resources/extensions/gsd/milestone-planning-persistence.ts +224 -0
- package/src/resources/extensions/gsd/milestone-readiness.ts +125 -0
- package/src/resources/extensions/gsd/milestone-settlement.ts +81 -0
- package/src/resources/extensions/gsd/milestone-validation-evidence.ts +95 -0
- package/src/resources/extensions/gsd/milestone-validation-verdict.ts +80 -0
- package/src/resources/extensions/gsd/model-cost-table.ts +1 -0
- package/src/resources/extensions/gsd/model-router.ts +3 -0
- package/src/resources/extensions/gsd/parallel-eligibility.ts +4 -5
- package/src/resources/extensions/gsd/parallel-merge.ts +12 -9
- package/src/resources/extensions/gsd/parallel-monitor-overlay.ts +6 -5
- package/src/resources/extensions/gsd/parallel-orchestrator.ts +6 -2
- package/src/resources/extensions/gsd/paths.ts +9 -22
- package/src/resources/extensions/gsd/preferences-diagnostics.ts +98 -0
- package/src/resources/extensions/gsd/preferences-types.ts +16 -0
- package/src/resources/extensions/gsd/preferences.ts +191 -28
- package/src/resources/extensions/gsd/prompts/complete-slice.md +1 -0
- package/src/resources/extensions/gsd/prompts/execute-task.md +2 -0
- package/src/resources/extensions/gsd/prompts/guided-discuss-project.md +3 -1
- package/src/resources/extensions/gsd/prompts/plan-milestone.md +2 -0
- package/src/resources/extensions/gsd/prompts/plan-slice.md +1 -0
- package/src/resources/extensions/gsd/prompts/refine-slice.md +1 -0
- package/src/resources/extensions/gsd/prompts/system.md +1 -1
- package/src/resources/extensions/gsd/provider-payload-policy.ts +140 -0
- package/src/resources/extensions/gsd/pull-request-process.ts +41 -0
- package/src/resources/extensions/gsd/quality-gate-closure.ts +140 -0
- package/src/resources/extensions/gsd/question-transport.ts +138 -0
- package/src/resources/extensions/gsd/recovery-classification.ts +14 -1
- package/src/resources/extensions/gsd/roadmap-slices.ts +8 -2
- package/src/resources/extensions/gsd/safety/evidence-collector.ts +36 -4
- package/src/resources/extensions/gsd/safety/evidence-cross-ref.ts +7 -2
- package/src/resources/extensions/gsd/safety/file-change-validator.ts +14 -0
- package/src/resources/extensions/gsd/slice-parallel-orchestrator.ts +6 -2
- package/src/resources/extensions/gsd/state-transition-matrix.ts +42 -0
- package/src/resources/extensions/gsd/state.ts +15 -5
- package/src/resources/extensions/gsd/status-guards.ts +59 -8
- package/src/resources/extensions/gsd/templates/plan.md +7 -0
- package/src/resources/extensions/gsd/templates/project.md +1 -0
- package/src/resources/extensions/gsd/templates/roadmap.md +1 -1
- package/src/resources/extensions/gsd/templates/uat.md +5 -1
- package/src/resources/extensions/gsd/tests/ask-user-questions-render.test.ts +92 -0
- package/src/resources/extensions/gsd/tests/auto-dashboard.test.ts +29 -1
- package/src/resources/extensions/gsd/tests/auto-loop.test.ts +444 -5
- package/src/resources/extensions/gsd/tests/auto-milestone-target.test.ts +23 -0
- package/src/resources/extensions/gsd/tests/auto-model-selection-tool-poisoning.test.ts +18 -0
- package/src/resources/extensions/gsd/tests/auto-orchestrator.test.ts +133 -4
- package/src/resources/extensions/gsd/tests/auto-paused-ui-cleanup.test.ts +3 -1
- package/src/resources/extensions/gsd/tests/auto-post-unit-evidence-crossref-4909.test.ts +46 -0
- package/src/resources/extensions/gsd/tests/auto-runtime-state.test.ts +34 -0
- package/src/resources/extensions/gsd/tests/auto-worktree-registry.test.ts +2 -2
- package/src/resources/extensions/gsd/tests/auto-worktree-repair.test.ts +4 -2
- package/src/resources/extensions/gsd/tests/canonical-milestone-root.test.ts +20 -0
- package/src/resources/extensions/gsd/tests/clear-stale-autostart.test.ts +22 -0
- package/src/resources/extensions/gsd/tests/codebase-generator.test.ts +22 -0
- package/src/resources/extensions/gsd/tests/commands-dispatcher-workspace-git.test.ts +11 -0
- package/src/resources/extensions/gsd/tests/commands-verdict.test.ts +38 -1
- package/src/resources/extensions/gsd/tests/dispatch-complete-milestone-guard.test.ts +34 -3
- package/src/resources/extensions/gsd/tests/dispatch-run-uat-browser-tools.test.ts +88 -0
- package/src/resources/extensions/gsd/tests/doctor-scope-db-unavailable.test.ts +18 -0
- package/src/resources/extensions/gsd/tests/evidence-xref-gsd-exec.test.ts +157 -0
- package/src/resources/extensions/gsd/tests/execute-task-rendering.test.ts +1 -0
- package/src/resources/extensions/gsd/tests/file-change-validator.test.ts +33 -1
- package/src/resources/extensions/gsd/tests/fixtures/pr-body/swarm-lane-no-blockers.md +1 -5
- package/src/resources/extensions/gsd/tests/fixtures/pr-body/swarm-lane-with-blockers.md +1 -5
- package/src/resources/extensions/gsd/tests/gate-state-canonicalization.test.ts +48 -1
- package/src/resources/extensions/gsd/tests/integration/auto-worktree-milestone-merge.test.ts +5 -4
- package/src/resources/extensions/gsd/tests/integration/auto-worktree.test.ts +1 -1
- package/src/resources/extensions/gsd/tests/integration/git-service.test.ts +3 -2
- package/src/resources/extensions/gsd/tests/mcp-tool-name.test.ts +34 -0
- package/src/resources/extensions/gsd/tests/migration-auto-check.test.ts +143 -1
- package/src/resources/extensions/gsd/tests/milestone-closeout-proof.test.ts +99 -0
- package/src/resources/extensions/gsd/tests/milestone-closeout.test.ts +25 -0
- package/src/resources/extensions/gsd/tests/milestone-merge-transaction.test.ts +46 -0
- package/src/resources/extensions/gsd/tests/milestone-readiness.test.ts +65 -0
- package/src/resources/extensions/gsd/tests/milestone-validation-evidence.test.ts +41 -0
- package/src/resources/extensions/gsd/tests/milestone-validation-verdict.test.ts +55 -0
- package/src/resources/extensions/gsd/tests/plan-milestone.test.ts +45 -0
- package/src/resources/extensions/gsd/tests/plan-slice-prompt.test.ts +2 -0
- package/src/resources/extensions/gsd/tests/planning-crossval.test.ts +45 -0
- package/src/resources/extensions/gsd/tests/preferences-diagnostics.test.ts +67 -0
- package/src/resources/extensions/gsd/tests/preferences.test.ts +183 -0
- package/src/resources/extensions/gsd/tests/prompt-contracts.test.ts +46 -0
- package/src/resources/extensions/gsd/tests/provider-errors.test.ts +9 -0
- package/src/resources/extensions/gsd/tests/provider-payload-policy.test.ts +165 -0
- package/src/resources/extensions/gsd/tests/pull-request-process.test.ts +47 -0
- package/src/resources/extensions/gsd/tests/recovery-classification-illegal-transition.test.ts +30 -0
- package/src/resources/extensions/gsd/tests/register-hooks-depth-verification.test.ts +185 -1
- package/src/resources/extensions/gsd/tests/roadmap-parse-regression.test.ts +40 -0
- package/src/resources/extensions/gsd/tests/runtime-invariant-modules.test.ts +25 -1
- package/src/resources/extensions/gsd/tests/safety-harness-false-positives.test.ts +38 -0
- package/src/resources/extensions/gsd/tests/session-start-footer.test.ts +80 -0
- package/src/resources/extensions/gsd/tests/session-switch-clears-pending-autostart.test.ts +108 -0
- package/src/resources/extensions/gsd/tests/single-writer-invariant.test.ts +144 -7
- package/src/resources/extensions/gsd/tests/stale-queued-milestone.test.ts +27 -0
- package/src/resources/extensions/gsd/tests/start-auto-detached.test.ts +2 -1
- package/src/resources/extensions/gsd/tests/state-transition-matrix.test.ts +36 -0
- package/src/resources/extensions/gsd/tests/status-guards.test.ts +38 -0
- package/src/resources/extensions/gsd/tests/tool-availability-audit.test.ts +35 -0
- package/src/resources/extensions/gsd/tests/tool-naming.test.ts +35 -42
- package/src/resources/extensions/gsd/tests/uat-policy.test.ts +23 -0
- package/src/resources/extensions/gsd/tests/unit-context-composer.test.ts +47 -0
- package/src/resources/extensions/gsd/tests/user-input-boundary.test.ts +86 -1
- package/src/resources/extensions/gsd/tests/validate-milestone-stuck-guard.test.ts +39 -0
- package/src/resources/extensions/gsd/tests/web-app-uat.test.ts +150 -0
- package/src/resources/extensions/gsd/tests/workflow-mcp.test.ts +126 -9
- package/src/resources/extensions/gsd/tests/workspace-git-preflight.test.ts +15 -0
- package/src/resources/extensions/gsd/tests/worktree-lifecycle.test.ts +41 -4
- package/src/resources/extensions/gsd/tests/worktree-manager.test.ts +43 -1
- package/src/resources/extensions/gsd/tests/worktree-placement.test.ts +113 -0
- package/src/resources/extensions/gsd/tests/worktree-projection-writers.test.ts +1 -1
- package/src/resources/extensions/gsd/tests/worktree-reentry.test.ts +1 -1
- package/src/resources/extensions/gsd/tests/worktree-safety.test.ts +3 -1
- package/src/resources/extensions/gsd/tests/worktree-symlink-removal.test.ts +12 -6
- package/src/resources/extensions/gsd/tests/worktree-teardown-safety.test.ts +2 -2
- package/src/resources/extensions/gsd/tests/worktree-telemetry.test.ts +22 -0
- package/src/resources/extensions/gsd/tests/write-gate.test.ts +121 -0
- package/src/resources/extensions/gsd/tool-contract.ts +86 -8
- package/src/resources/extensions/gsd/tool-presentation-plan.ts +16 -33
- package/src/resources/extensions/gsd/tool-surface-snapshot.ts +47 -0
- package/src/resources/extensions/gsd/tools/complete-slice.ts +23 -58
- package/src/resources/extensions/gsd/tools/exec-tool.ts +5 -5
- package/src/resources/extensions/gsd/tools/plan-milestone.ts +19 -160
- package/src/resources/extensions/gsd/tools/reassess-roadmap.ts +43 -0
- package/src/resources/extensions/gsd/tools/reopen-milestone.ts +11 -38
- package/src/resources/extensions/gsd/tools/reopen-slice.ts +14 -42
- package/src/resources/extensions/gsd/tools/skip-slice.ts +18 -44
- package/src/resources/extensions/gsd/tools/validate-milestone.ts +25 -84
- package/src/resources/extensions/gsd/uat-policy.ts +19 -10
- package/src/resources/extensions/gsd/uat-run.ts +10 -14
- package/src/resources/extensions/gsd/undo.ts +9 -8
- package/src/resources/extensions/gsd/unit-context-composer.ts +85 -20
- package/src/resources/extensions/gsd/unit-runtime.ts +3 -2
- package/src/resources/extensions/gsd/unit-tool-contracts.ts +2 -1
- package/src/resources/extensions/gsd/user-input-boundary.ts +18 -0
- package/src/resources/extensions/gsd/validation-block-guard.ts +2 -0
- package/src/resources/extensions/gsd/web-app-uat.ts +101 -0
- package/src/resources/extensions/gsd/workflow-mcp.ts +22 -110
- package/src/resources/extensions/gsd/workflow-reconcile.ts +3 -3
- package/src/resources/extensions/gsd/workflow-tool-surface.ts +73 -0
- package/src/resources/extensions/gsd/workspace-git-guard.ts +1 -0
- package/src/resources/extensions/gsd/worktree-git-recovery.ts +308 -0
- package/src/resources/extensions/gsd/worktree-lifecycle.ts +17 -17
- package/src/resources/extensions/gsd/worktree-manager.ts +47 -28
- package/src/resources/extensions/gsd/worktree-placement.ts +63 -0
- package/src/resources/extensions/gsd/worktree-reentry.ts +10 -7
- package/src/resources/extensions/gsd/worktree-root.ts +17 -6
- package/src/resources/extensions/gsd/worktree-safety.ts +8 -5
- package/src/resources/extensions/gsd/worktree-session-state.ts +12 -10
- package/src/resources/extensions/gsd/worktree-state-projection.ts +55 -7
- package/src/resources/extensions/gsd/worktree-telemetry.ts +16 -0
- package/src/resources/extensions/shared/interview-ui.ts +15 -2
- package/src/resources/shared/claude-runtime-floor.ts +248 -0
- package/src/resources/skills/gsd-browser/SKILL.md +1 -1
- package/dist/web/standalone/.next/static/chunks/2659.feb6499ca863ebfc.js +0 -1
- package/dist/web/standalone/.next/static/chunks/2772.151789db0edea835.js +0 -1
- package/dist/web/standalone/.next/static/chunks/4283.10a065467b5340d8.js +0 -2
- package/dist/web/standalone/.next/static/chunks/5826.960dc4634cc9b0d3.js +0 -1
- package/dist/web/standalone/.next/static/chunks/796.46f811c0fac23aab.js +0 -10
- package/dist/web/standalone/.next/static/chunks/8785.d32f7a61f55c1600.js +0 -1
- /package/dist/web/standalone/.next/static/{Qbr81pQ-pbQXP4bq2VXLv → C24pqUd-aru-l0Dp0gLZP}/_buildManifest.js +0 -0
- /package/dist/web/standalone/.next/static/{Qbr81pQ-pbQXP4bq2VXLv → C24pqUd-aru-l0Dp0gLZP}/_ssgManifest.js +0 -0
|
@@ -8,7 +8,7 @@ export const MODELS = {
|
|
|
8
8
|
api: "bedrock-converse-stream",
|
|
9
9
|
provider: "amazon-bedrock",
|
|
10
10
|
baseUrl: "https://bedrock-runtime.us-east-1.amazonaws.com",
|
|
11
|
-
reasoning:
|
|
11
|
+
reasoning: true,
|
|
12
12
|
input: ["text", "image"],
|
|
13
13
|
cost: {
|
|
14
14
|
input: 0.33,
|
|
@@ -70,6 +70,24 @@ export const MODELS = {
|
|
|
70
70
|
contextWindow: 300000,
|
|
71
71
|
maxTokens: 8192,
|
|
72
72
|
},
|
|
73
|
+
"anthropic.claude-fable-5": {
|
|
74
|
+
id: "anthropic.claude-fable-5",
|
|
75
|
+
name: "Claude Fable 5",
|
|
76
|
+
api: "bedrock-converse-stream",
|
|
77
|
+
provider: "amazon-bedrock",
|
|
78
|
+
baseUrl: "https://bedrock-runtime.us-east-1.amazonaws.com",
|
|
79
|
+
reasoning: true,
|
|
80
|
+
thinkingLevelMap: { "xhigh": "xhigh" },
|
|
81
|
+
input: ["text", "image"],
|
|
82
|
+
cost: {
|
|
83
|
+
input: 10,
|
|
84
|
+
output: 50,
|
|
85
|
+
cacheRead: 1,
|
|
86
|
+
cacheWrite: 12.5,
|
|
87
|
+
},
|
|
88
|
+
contextWindow: 1000000,
|
|
89
|
+
maxTokens: 128000,
|
|
90
|
+
},
|
|
73
91
|
"anthropic.claude-haiku-4-5-20251001-v1:0": {
|
|
74
92
|
id: "anthropic.claude-haiku-4-5-20251001-v1:0",
|
|
75
93
|
name: "Claude Haiku 4.5",
|
|
@@ -347,6 +365,24 @@ export const MODELS = {
|
|
|
347
365
|
contextWindow: 163840,
|
|
348
366
|
maxTokens: 81920,
|
|
349
367
|
},
|
|
368
|
+
"eu.anthropic.claude-fable-5": {
|
|
369
|
+
id: "eu.anthropic.claude-fable-5",
|
|
370
|
+
name: "Claude Fable 5 (EU)",
|
|
371
|
+
api: "bedrock-converse-stream",
|
|
372
|
+
provider: "amazon-bedrock",
|
|
373
|
+
baseUrl: "https://bedrock-runtime.eu-central-1.amazonaws.com",
|
|
374
|
+
reasoning: true,
|
|
375
|
+
thinkingLevelMap: { "xhigh": "xhigh" },
|
|
376
|
+
input: ["text", "image"],
|
|
377
|
+
cost: {
|
|
378
|
+
input: 11,
|
|
379
|
+
output: 55,
|
|
380
|
+
cacheRead: 1.1,
|
|
381
|
+
cacheWrite: 13.75,
|
|
382
|
+
},
|
|
383
|
+
contextWindow: 1000000,
|
|
384
|
+
maxTokens: 128000,
|
|
385
|
+
},
|
|
350
386
|
"eu.anthropic.claude-haiku-4-5-20251001-v1:0": {
|
|
351
387
|
id: "eu.anthropic.claude-haiku-4-5-20251001-v1:0",
|
|
352
388
|
name: "Claude Haiku 4.5 (EU)",
|
|
@@ -469,6 +505,24 @@ export const MODELS = {
|
|
|
469
505
|
contextWindow: 1000000,
|
|
470
506
|
maxTokens: 64000,
|
|
471
507
|
},
|
|
508
|
+
"global.anthropic.claude-fable-5": {
|
|
509
|
+
id: "global.anthropic.claude-fable-5",
|
|
510
|
+
name: "Claude Fable 5 (Global)",
|
|
511
|
+
api: "bedrock-converse-stream",
|
|
512
|
+
provider: "amazon-bedrock",
|
|
513
|
+
baseUrl: "https://bedrock-runtime.us-east-1.amazonaws.com",
|
|
514
|
+
reasoning: true,
|
|
515
|
+
thinkingLevelMap: { "xhigh": "xhigh" },
|
|
516
|
+
input: ["text", "image"],
|
|
517
|
+
cost: {
|
|
518
|
+
input: 10,
|
|
519
|
+
output: 50,
|
|
520
|
+
cacheRead: 1,
|
|
521
|
+
cacheWrite: 12.5,
|
|
522
|
+
},
|
|
523
|
+
contextWindow: 1000000,
|
|
524
|
+
maxTokens: 128000,
|
|
525
|
+
},
|
|
472
526
|
"global.anthropic.claude-haiku-4-5-20251001-v1:0": {
|
|
473
527
|
id: "global.anthropic.claude-haiku-4-5-20251001-v1:0",
|
|
474
528
|
name: "Claude Haiku 4.5 (Global)",
|
|
@@ -1128,7 +1182,7 @@ export const MODELS = {
|
|
|
1128
1182
|
api: "bedrock-converse-stream",
|
|
1129
1183
|
provider: "amazon-bedrock",
|
|
1130
1184
|
baseUrl: "https://bedrock-runtime.us-east-1.amazonaws.com",
|
|
1131
|
-
reasoning:
|
|
1185
|
+
reasoning: true,
|
|
1132
1186
|
input: ["text"],
|
|
1133
1187
|
cost: {
|
|
1134
1188
|
input: 0.15,
|
|
@@ -1145,7 +1199,7 @@ export const MODELS = {
|
|
|
1145
1199
|
api: "bedrock-converse-stream",
|
|
1146
1200
|
provider: "amazon-bedrock",
|
|
1147
1201
|
baseUrl: "https://bedrock-runtime.us-east-1.amazonaws.com",
|
|
1148
|
-
reasoning:
|
|
1202
|
+
reasoning: true,
|
|
1149
1203
|
input: ["text"],
|
|
1150
1204
|
cost: {
|
|
1151
1205
|
input: 0.15,
|
|
@@ -1162,7 +1216,7 @@ export const MODELS = {
|
|
|
1162
1216
|
api: "bedrock-converse-stream",
|
|
1163
1217
|
provider: "amazon-bedrock",
|
|
1164
1218
|
baseUrl: "https://bedrock-runtime.us-east-1.amazonaws.com",
|
|
1165
|
-
reasoning:
|
|
1219
|
+
reasoning: true,
|
|
1166
1220
|
input: ["text"],
|
|
1167
1221
|
cost: {
|
|
1168
1222
|
input: 0.07,
|
|
@@ -1179,7 +1233,7 @@ export const MODELS = {
|
|
|
1179
1233
|
api: "bedrock-converse-stream",
|
|
1180
1234
|
provider: "amazon-bedrock",
|
|
1181
1235
|
baseUrl: "https://bedrock-runtime.us-east-1.amazonaws.com",
|
|
1182
|
-
reasoning:
|
|
1236
|
+
reasoning: true,
|
|
1183
1237
|
input: ["text"],
|
|
1184
1238
|
cost: {
|
|
1185
1239
|
input: 0.07,
|
|
@@ -1343,6 +1397,24 @@ export const MODELS = {
|
|
|
1343
1397
|
contextWindow: 262000,
|
|
1344
1398
|
maxTokens: 262000,
|
|
1345
1399
|
},
|
|
1400
|
+
"us.anthropic.claude-fable-5": {
|
|
1401
|
+
id: "us.anthropic.claude-fable-5",
|
|
1402
|
+
name: "Claude Fable 5 (US)",
|
|
1403
|
+
api: "bedrock-converse-stream",
|
|
1404
|
+
provider: "amazon-bedrock",
|
|
1405
|
+
baseUrl: "https://bedrock-runtime.us-east-1.amazonaws.com",
|
|
1406
|
+
reasoning: true,
|
|
1407
|
+
thinkingLevelMap: { "xhigh": "xhigh" },
|
|
1408
|
+
input: ["text", "image"],
|
|
1409
|
+
cost: {
|
|
1410
|
+
input: 10,
|
|
1411
|
+
output: 50,
|
|
1412
|
+
cacheRead: 1,
|
|
1413
|
+
cacheWrite: 12.5,
|
|
1414
|
+
},
|
|
1415
|
+
contextWindow: 1000000,
|
|
1416
|
+
maxTokens: 128000,
|
|
1417
|
+
},
|
|
1346
1418
|
"us.anthropic.claude-haiku-4-5-20251001-v1:0": {
|
|
1347
1419
|
id: "us.anthropic.claude-haiku-4-5-20251001-v1:0",
|
|
1348
1420
|
name: "Claude Haiku 4.5 (US)",
|
|
@@ -1756,6 +1828,25 @@ export const MODELS = {
|
|
|
1756
1828
|
contextWindow: 200000,
|
|
1757
1829
|
maxTokens: 4096,
|
|
1758
1830
|
},
|
|
1831
|
+
"claude-fable-5": {
|
|
1832
|
+
id: "claude-fable-5",
|
|
1833
|
+
name: "Claude Fable 5",
|
|
1834
|
+
api: "anthropic-messages",
|
|
1835
|
+
provider: "anthropic",
|
|
1836
|
+
baseUrl: "https://api.anthropic.com",
|
|
1837
|
+
compat: { "forceAdaptiveThinking": true },
|
|
1838
|
+
reasoning: true,
|
|
1839
|
+
thinkingLevelMap: { "xhigh": "xhigh" },
|
|
1840
|
+
input: ["text", "image"],
|
|
1841
|
+
cost: {
|
|
1842
|
+
input: 10,
|
|
1843
|
+
output: 50,
|
|
1844
|
+
cacheRead: 1,
|
|
1845
|
+
cacheWrite: 12.5,
|
|
1846
|
+
},
|
|
1847
|
+
contextWindow: 1000000,
|
|
1848
|
+
maxTokens: 128000,
|
|
1849
|
+
},
|
|
1759
1850
|
"claude-haiku-4-5": {
|
|
1760
1851
|
id: "claude-haiku-4-5",
|
|
1761
1852
|
name: "Claude Haiku 4.5 (latest)",
|
|
@@ -2054,39 +2145,24 @@ export const MODELS = {
|
|
|
2054
2145
|
contextWindow: 200000,
|
|
2055
2146
|
maxTokens: 8192,
|
|
2056
2147
|
},
|
|
2057
|
-
"claude-
|
|
2058
|
-
id: "claude-
|
|
2059
|
-
name: "Claude
|
|
2060
|
-
api: "anthropic-vertex",
|
|
2061
|
-
provider: "anthropic-vertex",
|
|
2062
|
-
baseUrl: "https://{location}-aiplatform.googleapis.com",
|
|
2063
|
-
reasoning: false,
|
|
2064
|
-
input: ["text", "image"],
|
|
2065
|
-
cost: {
|
|
2066
|
-
input: 3,
|
|
2067
|
-
output: 15,
|
|
2068
|
-
cacheRead: 0.3,
|
|
2069
|
-
cacheWrite: 3.75,
|
|
2070
|
-
},
|
|
2071
|
-
contextWindow: 200000,
|
|
2072
|
-
maxTokens: 8192,
|
|
2073
|
-
},
|
|
2074
|
-
"claude-3-7-sonnet@20250219": {
|
|
2075
|
-
id: "claude-3-7-sonnet@20250219",
|
|
2076
|
-
name: "Claude Sonnet 3.7 (Vertex)",
|
|
2148
|
+
"claude-fable-5": {
|
|
2149
|
+
id: "claude-fable-5",
|
|
2150
|
+
name: "Claude Fable 5 (Vertex)",
|
|
2077
2151
|
api: "anthropic-vertex",
|
|
2078
2152
|
provider: "anthropic-vertex",
|
|
2079
2153
|
baseUrl: "https://{location}-aiplatform.googleapis.com",
|
|
2154
|
+
compat: { "forceAdaptiveThinking": true },
|
|
2080
2155
|
reasoning: true,
|
|
2156
|
+
thinkingLevelMap: { "xhigh": "xhigh" },
|
|
2081
2157
|
input: ["text", "image"],
|
|
2082
2158
|
cost: {
|
|
2083
|
-
input:
|
|
2084
|
-
output:
|
|
2085
|
-
cacheRead:
|
|
2086
|
-
cacheWrite:
|
|
2159
|
+
input: 10,
|
|
2160
|
+
output: 50,
|
|
2161
|
+
cacheRead: 1,
|
|
2162
|
+
cacheWrite: 12.5,
|
|
2087
2163
|
},
|
|
2088
|
-
contextWindow:
|
|
2089
|
-
maxTokens:
|
|
2164
|
+
contextWindow: 1000000,
|
|
2165
|
+
maxTokens: 128000,
|
|
2090
2166
|
},
|
|
2091
2167
|
"claude-haiku-4-5@20251001": {
|
|
2092
2168
|
id: "claude-haiku-4-5@20251001",
|
|
@@ -3162,6 +3238,25 @@ export const MODELS = {
|
|
|
3162
3238
|
contextWindow: 200000,
|
|
3163
3239
|
maxTokens: 8192,
|
|
3164
3240
|
},
|
|
3241
|
+
"claude-fable-5": {
|
|
3242
|
+
id: "claude-fable-5",
|
|
3243
|
+
name: "Claude Fable 5",
|
|
3244
|
+
api: "anthropic-messages",
|
|
3245
|
+
provider: "cloudflare-ai-gateway",
|
|
3246
|
+
baseUrl: "https://gateway.ai.cloudflare.com/v1/{CLOUDFLARE_ACCOUNT_ID}/{CLOUDFLARE_GATEWAY_ID}/anthropic",
|
|
3247
|
+
compat: { "forceAdaptiveThinking": true },
|
|
3248
|
+
reasoning: true,
|
|
3249
|
+
thinkingLevelMap: { "xhigh": "xhigh" },
|
|
3250
|
+
input: ["text", "image"],
|
|
3251
|
+
cost: {
|
|
3252
|
+
input: 10,
|
|
3253
|
+
output: 50,
|
|
3254
|
+
cacheRead: 1,
|
|
3255
|
+
cacheWrite: 12.5,
|
|
3256
|
+
},
|
|
3257
|
+
contextWindow: 1000000,
|
|
3258
|
+
maxTokens: 128000,
|
|
3259
|
+
},
|
|
3165
3260
|
"claude-haiku-4-5": {
|
|
3166
3261
|
id: "claude-haiku-4-5",
|
|
3167
3262
|
name: "Claude Haiku 4.5 (latest)",
|
|
@@ -7586,6 +7681,25 @@ export const MODELS = {
|
|
|
7586
7681
|
contextWindow: 200000,
|
|
7587
7682
|
maxTokens: 32000,
|
|
7588
7683
|
},
|
|
7684
|
+
"claude-fable-5": {
|
|
7685
|
+
id: "claude-fable-5",
|
|
7686
|
+
name: "Claude Fable 5",
|
|
7687
|
+
api: "anthropic-messages",
|
|
7688
|
+
provider: "opencode",
|
|
7689
|
+
baseUrl: "https://opencode.ai/zen",
|
|
7690
|
+
compat: { "forceAdaptiveThinking": true },
|
|
7691
|
+
reasoning: true,
|
|
7692
|
+
thinkingLevelMap: { "xhigh": "xhigh" },
|
|
7693
|
+
input: ["text", "image"],
|
|
7694
|
+
cost: {
|
|
7695
|
+
input: 10,
|
|
7696
|
+
output: 50,
|
|
7697
|
+
cacheRead: 1,
|
|
7698
|
+
cacheWrite: 12.5,
|
|
7699
|
+
},
|
|
7700
|
+
contextWindow: 1000000,
|
|
7701
|
+
maxTokens: 128000,
|
|
7702
|
+
},
|
|
7589
7703
|
"claude-haiku-4-5": {
|
|
7590
7704
|
id: "claude-haiku-4-5",
|
|
7591
7705
|
name: "Claude Haiku 4.5",
|
|
@@ -8262,26 +8376,26 @@ export const MODELS = {
|
|
|
8262
8376
|
contextWindow: 204800,
|
|
8263
8377
|
maxTokens: 131072,
|
|
8264
8378
|
},
|
|
8265
|
-
"
|
|
8266
|
-
id: "
|
|
8267
|
-
name: "
|
|
8268
|
-
api: "
|
|
8379
|
+
"nemotron-3-ultra-free": {
|
|
8380
|
+
id: "nemotron-3-ultra-free",
|
|
8381
|
+
name: "Nemotron 3 Ultra Free",
|
|
8382
|
+
api: "openai-completions",
|
|
8269
8383
|
provider: "opencode",
|
|
8270
|
-
baseUrl: "https://opencode.ai/zen",
|
|
8384
|
+
baseUrl: "https://opencode.ai/zen/v1",
|
|
8271
8385
|
reasoning: true,
|
|
8272
|
-
input: ["text"
|
|
8386
|
+
input: ["text"],
|
|
8273
8387
|
cost: {
|
|
8274
8388
|
input: 0,
|
|
8275
8389
|
output: 0,
|
|
8276
8390
|
cacheRead: 0,
|
|
8277
8391
|
cacheWrite: 0,
|
|
8278
8392
|
},
|
|
8279
|
-
contextWindow:
|
|
8280
|
-
maxTokens:
|
|
8393
|
+
contextWindow: 1000000,
|
|
8394
|
+
maxTokens: 128000,
|
|
8281
8395
|
},
|
|
8282
|
-
"
|
|
8283
|
-
id: "
|
|
8284
|
-
name: "
|
|
8396
|
+
"north-mini-code-free": {
|
|
8397
|
+
id: "north-mini-code-free",
|
|
8398
|
+
name: "North Mini Code Free",
|
|
8285
8399
|
api: "openai-completions",
|
|
8286
8400
|
provider: "opencode",
|
|
8287
8401
|
baseUrl: "https://opencode.ai/zen/v1",
|
|
@@ -8293,8 +8407,8 @@ export const MODELS = {
|
|
|
8293
8407
|
cacheRead: 0,
|
|
8294
8408
|
cacheWrite: 0,
|
|
8295
8409
|
},
|
|
8296
|
-
contextWindow:
|
|
8297
|
-
maxTokens:
|
|
8410
|
+
contextWindow: 256000,
|
|
8411
|
+
maxTokens: 64000,
|
|
8298
8412
|
},
|
|
8299
8413
|
"qwen3.5-plus": {
|
|
8300
8414
|
id: "qwen3.5-plus",
|
|
@@ -8515,9 +8629,9 @@ export const MODELS = {
|
|
|
8515
8629
|
reasoning: true,
|
|
8516
8630
|
input: ["text", "image"],
|
|
8517
8631
|
cost: {
|
|
8518
|
-
input: 0.
|
|
8519
|
-
output: 2
|
|
8520
|
-
cacheRead: 0.
|
|
8632
|
+
input: 0.3,
|
|
8633
|
+
output: 1.2,
|
|
8634
|
+
cacheRead: 0.06,
|
|
8521
8635
|
cacheWrite: 0,
|
|
8522
8636
|
},
|
|
8523
8637
|
contextWindow: 512000,
|
|
@@ -8713,6 +8827,24 @@ export const MODELS = {
|
|
|
8713
8827
|
contextWindow: 200000,
|
|
8714
8828
|
maxTokens: 8192,
|
|
8715
8829
|
},
|
|
8830
|
+
"anthropic/claude-fable-5": {
|
|
8831
|
+
id: "anthropic/claude-fable-5",
|
|
8832
|
+
name: "Anthropic: Claude Fable 5",
|
|
8833
|
+
api: "openai-completions",
|
|
8834
|
+
provider: "openrouter",
|
|
8835
|
+
baseUrl: "https://openrouter.ai/api/v1",
|
|
8836
|
+
reasoning: true,
|
|
8837
|
+
thinkingLevelMap: { "xhigh": "xhigh" },
|
|
8838
|
+
input: ["text", "image"],
|
|
8839
|
+
cost: {
|
|
8840
|
+
input: 10,
|
|
8841
|
+
output: 50,
|
|
8842
|
+
cacheRead: 1,
|
|
8843
|
+
cacheWrite: 12.5,
|
|
8844
|
+
},
|
|
8845
|
+
contextWindow: 1000000,
|
|
8846
|
+
maxTokens: 128000,
|
|
8847
|
+
},
|
|
8716
8848
|
"anthropic/claude-haiku-4.5": {
|
|
8717
8849
|
id: "anthropic/claude-haiku-4.5",
|
|
8718
8850
|
name: "Anthropic: Claude Haiku 4.5",
|
|
@@ -9873,8 +10005,8 @@ export const MODELS = {
|
|
|
9873
10005
|
input: ["text"],
|
|
9874
10006
|
cost: {
|
|
9875
10007
|
input: 0.15,
|
|
9876
|
-
output:
|
|
9877
|
-
cacheRead: 0,
|
|
10008
|
+
output: 0.9,
|
|
10009
|
+
cacheRead: 0.05,
|
|
9878
10010
|
cacheWrite: 0,
|
|
9879
10011
|
},
|
|
9880
10012
|
contextWindow: 204800,
|
|
@@ -9889,13 +10021,13 @@ export const MODELS = {
|
|
|
9889
10021
|
reasoning: true,
|
|
9890
10022
|
input: ["text"],
|
|
9891
10023
|
cost: {
|
|
9892
|
-
input: 0.
|
|
9893
|
-
output: 1.
|
|
9894
|
-
cacheRead: 0,
|
|
10024
|
+
input: 0.27,
|
|
10025
|
+
output: 1.08,
|
|
10026
|
+
cacheRead: 0.054,
|
|
9895
10027
|
cacheWrite: 0,
|
|
9896
10028
|
},
|
|
9897
10029
|
contextWindow: 204800,
|
|
9898
|
-
maxTokens:
|
|
10030
|
+
maxTokens: 131072,
|
|
9899
10031
|
},
|
|
9900
10032
|
"minimax/minimax-m3": {
|
|
9901
10033
|
id: "minimax/minimax-m3",
|
|
@@ -10280,13 +10412,13 @@ export const MODELS = {
|
|
|
10280
10412
|
reasoning: true,
|
|
10281
10413
|
input: ["text", "image"],
|
|
10282
10414
|
cost: {
|
|
10283
|
-
input: 0.
|
|
10284
|
-
output: 3.
|
|
10285
|
-
cacheRead: 0.
|
|
10415
|
+
input: 0.68,
|
|
10416
|
+
output: 3.41,
|
|
10417
|
+
cacheRead: 0.34,
|
|
10286
10418
|
cacheWrite: 0,
|
|
10287
10419
|
},
|
|
10288
10420
|
contextWindow: 262144,
|
|
10289
|
-
maxTokens:
|
|
10421
|
+
maxTokens: 262142,
|
|
10290
10422
|
},
|
|
10291
10423
|
"moonshotai/kimi-k2.6:free": {
|
|
10292
10424
|
id: "moonshotai/kimi-k2.6:free",
|
|
@@ -10305,22 +10437,22 @@ export const MODELS = {
|
|
|
10305
10437
|
contextWindow: 262144,
|
|
10306
10438
|
maxTokens: 4096,
|
|
10307
10439
|
},
|
|
10308
|
-
"nex-agi/
|
|
10309
|
-
id: "nex-agi/
|
|
10310
|
-
name: "Nex AGI:
|
|
10440
|
+
"nex-agi/nex-n2-pro:free": {
|
|
10441
|
+
id: "nex-agi/nex-n2-pro:free",
|
|
10442
|
+
name: "Nex AGI: Nex-N2-Pro (free)",
|
|
10311
10443
|
api: "openai-completions",
|
|
10312
10444
|
provider: "openrouter",
|
|
10313
10445
|
baseUrl: "https://openrouter.ai/api/v1",
|
|
10314
|
-
reasoning:
|
|
10315
|
-
input: ["text"],
|
|
10446
|
+
reasoning: true,
|
|
10447
|
+
input: ["text", "image"],
|
|
10316
10448
|
cost: {
|
|
10317
|
-
input: 0
|
|
10318
|
-
output: 0
|
|
10449
|
+
input: 0,
|
|
10450
|
+
output: 0,
|
|
10319
10451
|
cacheRead: 0,
|
|
10320
10452
|
cacheWrite: 0,
|
|
10321
10453
|
},
|
|
10322
|
-
contextWindow:
|
|
10323
|
-
maxTokens:
|
|
10454
|
+
contextWindow: 262144,
|
|
10455
|
+
maxTokens: 262144,
|
|
10324
10456
|
},
|
|
10325
10457
|
"nvidia/llama-3.3-nemotron-super-49b-v1.5": {
|
|
10326
10458
|
id: "nvidia/llama-3.3-nemotron-super-49b-v1.5",
|
|
@@ -12578,23 +12710,6 @@ export const MODELS = {
|
|
|
12578
12710
|
contextWindow: 1048576,
|
|
12579
12711
|
maxTokens: 131072,
|
|
12580
12712
|
},
|
|
12581
|
-
"z-ai/glm-4-32b": {
|
|
12582
|
-
id: "z-ai/glm-4-32b",
|
|
12583
|
-
name: "Z.ai: GLM 4 32B ",
|
|
12584
|
-
api: "openai-completions",
|
|
12585
|
-
provider: "openrouter",
|
|
12586
|
-
baseUrl: "https://openrouter.ai/api/v1",
|
|
12587
|
-
reasoning: false,
|
|
12588
|
-
input: ["text"],
|
|
12589
|
-
cost: {
|
|
12590
|
-
input: 0.1,
|
|
12591
|
-
output: 0.1,
|
|
12592
|
-
cacheRead: 0,
|
|
12593
|
-
cacheWrite: 0,
|
|
12594
|
-
},
|
|
12595
|
-
contextWindow: 128000,
|
|
12596
|
-
maxTokens: 4096,
|
|
12597
|
-
},
|
|
12598
12713
|
"z-ai/glm-4.5": {
|
|
12599
12714
|
id: "z-ai/glm-4.5",
|
|
12600
12715
|
name: "Z.ai: GLM 4.5",
|
|
@@ -12629,23 +12744,6 @@ export const MODELS = {
|
|
|
12629
12744
|
contextWindow: 131072,
|
|
12630
12745
|
maxTokens: 131070,
|
|
12631
12746
|
},
|
|
12632
|
-
"z-ai/glm-4.5-air:free": {
|
|
12633
|
-
id: "z-ai/glm-4.5-air:free",
|
|
12634
|
-
name: "Z.ai: GLM 4.5 Air (free)",
|
|
12635
|
-
api: "openai-completions",
|
|
12636
|
-
provider: "openrouter",
|
|
12637
|
-
baseUrl: "https://openrouter.ai/api/v1",
|
|
12638
|
-
reasoning: true,
|
|
12639
|
-
input: ["text"],
|
|
12640
|
-
cost: {
|
|
12641
|
-
input: 0,
|
|
12642
|
-
output: 0,
|
|
12643
|
-
cacheRead: 0,
|
|
12644
|
-
cacheWrite: 0,
|
|
12645
|
-
},
|
|
12646
|
-
contextWindow: 131072,
|
|
12647
|
-
maxTokens: 96000,
|
|
12648
|
-
},
|
|
12649
12747
|
"z-ai/glm-4.5v": {
|
|
12650
12748
|
id: "z-ai/glm-4.5v",
|
|
12651
12749
|
name: "Z.ai: GLM 4.5V",
|
|
@@ -12691,11 +12789,11 @@ export const MODELS = {
|
|
|
12691
12789
|
cost: {
|
|
12692
12790
|
input: 0.3,
|
|
12693
12791
|
output: 0.9,
|
|
12694
|
-
cacheRead: 0.
|
|
12792
|
+
cacheRead: 0.055,
|
|
12695
12793
|
cacheWrite: 0,
|
|
12696
12794
|
},
|
|
12697
12795
|
contextWindow: 131072,
|
|
12698
|
-
maxTokens:
|
|
12796
|
+
maxTokens: 32768,
|
|
12699
12797
|
},
|
|
12700
12798
|
"z-ai/glm-4.7": {
|
|
12701
12799
|
id: "z-ai/glm-4.7",
|
|
@@ -12762,7 +12860,7 @@ export const MODELS = {
|
|
|
12762
12860
|
cacheRead: 0.24,
|
|
12763
12861
|
cacheWrite: 0,
|
|
12764
12862
|
},
|
|
12765
|
-
contextWindow:
|
|
12863
|
+
contextWindow: 262144,
|
|
12766
12864
|
maxTokens: 131072,
|
|
12767
12865
|
},
|
|
12768
12866
|
"z-ai/glm-5.1": {
|
|
@@ -12782,22 +12880,22 @@ export const MODELS = {
|
|
|
12782
12880
|
contextWindow: 202752,
|
|
12783
12881
|
maxTokens: 4096,
|
|
12784
12882
|
},
|
|
12785
|
-
"
|
|
12786
|
-
id: "
|
|
12787
|
-
name: "
|
|
12883
|
+
"~anthropic/claude-fable-latest": {
|
|
12884
|
+
id: "~anthropic/claude-fable-latest",
|
|
12885
|
+
name: "Anthropic: Claude Fable Latest",
|
|
12788
12886
|
api: "openai-completions",
|
|
12789
12887
|
provider: "openrouter",
|
|
12790
12888
|
baseUrl: "https://openrouter.ai/api/v1",
|
|
12791
12889
|
reasoning: true,
|
|
12792
12890
|
input: ["text", "image"],
|
|
12793
12891
|
cost: {
|
|
12794
|
-
input:
|
|
12795
|
-
output:
|
|
12796
|
-
cacheRead:
|
|
12797
|
-
cacheWrite:
|
|
12892
|
+
input: 10,
|
|
12893
|
+
output: 50,
|
|
12894
|
+
cacheRead: 1,
|
|
12895
|
+
cacheWrite: 12.5,
|
|
12798
12896
|
},
|
|
12799
|
-
contextWindow:
|
|
12800
|
-
maxTokens:
|
|
12897
|
+
contextWindow: 1000000,
|
|
12898
|
+
maxTokens: 128000,
|
|
12801
12899
|
},
|
|
12802
12900
|
"~anthropic/claude-haiku-latest": {
|
|
12803
12901
|
id: "~anthropic/claude-haiku-latest",
|
|
@@ -12893,13 +12991,13 @@ export const MODELS = {
|
|
|
12893
12991
|
reasoning: true,
|
|
12894
12992
|
input: ["text", "image"],
|
|
12895
12993
|
cost: {
|
|
12896
|
-
input: 0.
|
|
12897
|
-
output: 3.
|
|
12898
|
-
cacheRead: 0.
|
|
12994
|
+
input: 0.68,
|
|
12995
|
+
output: 3.41,
|
|
12996
|
+
cacheRead: 0.34,
|
|
12899
12997
|
cacheWrite: 0,
|
|
12900
12998
|
},
|
|
12901
12999
|
contextWindow: 262144,
|
|
12902
|
-
maxTokens:
|
|
13000
|
+
maxTokens: 262142,
|
|
12903
13001
|
},
|
|
12904
13002
|
"~openai/gpt-latest": {
|
|
12905
13003
|
id: "~openai/gpt-latest",
|
|
@@ -13340,8 +13438,8 @@ export const MODELS = {
|
|
|
13340
13438
|
reasoning: true,
|
|
13341
13439
|
input: ["text"],
|
|
13342
13440
|
cost: {
|
|
13343
|
-
input: 0.
|
|
13344
|
-
output: 0.
|
|
13441
|
+
input: 0.12,
|
|
13442
|
+
output: 0.5,
|
|
13345
13443
|
cacheRead: 0,
|
|
13346
13444
|
cacheWrite: 0,
|
|
13347
13445
|
},
|
|
@@ -13705,6 +13803,25 @@ export const MODELS = {
|
|
|
13705
13803
|
contextWindow: 200000,
|
|
13706
13804
|
maxTokens: 8192,
|
|
13707
13805
|
},
|
|
13806
|
+
"anthropic/claude-fable-5": {
|
|
13807
|
+
id: "anthropic/claude-fable-5",
|
|
13808
|
+
name: "Claude Fable 5",
|
|
13809
|
+
api: "anthropic-messages",
|
|
13810
|
+
provider: "vercel-ai-gateway",
|
|
13811
|
+
baseUrl: "https://ai-gateway.vercel.sh",
|
|
13812
|
+
compat: { "forceAdaptiveThinking": true },
|
|
13813
|
+
reasoning: true,
|
|
13814
|
+
thinkingLevelMap: { "xhigh": "xhigh" },
|
|
13815
|
+
input: ["text", "image"],
|
|
13816
|
+
cost: {
|
|
13817
|
+
input: 10,
|
|
13818
|
+
output: 50,
|
|
13819
|
+
cacheRead: 1,
|
|
13820
|
+
cacheWrite: 12.5,
|
|
13821
|
+
},
|
|
13822
|
+
contextWindow: 1000000,
|
|
13823
|
+
maxTokens: 128000,
|
|
13824
|
+
},
|
|
13708
13825
|
"anthropic/claude-haiku-4.5": {
|
|
13709
13826
|
id: "anthropic/claude-haiku-4.5",
|
|
13710
13827
|
name: "Claude Haiku 4.5",
|
|
@@ -14086,40 +14203,6 @@ export const MODELS = {
|
|
|
14086
14203
|
contextWindow: 1000000,
|
|
14087
14204
|
maxTokens: 384000,
|
|
14088
14205
|
},
|
|
14089
|
-
"google/gemini-2.0-flash": {
|
|
14090
|
-
id: "google/gemini-2.0-flash",
|
|
14091
|
-
name: "Gemini 2.0 Flash",
|
|
14092
|
-
api: "anthropic-messages",
|
|
14093
|
-
provider: "vercel-ai-gateway",
|
|
14094
|
-
baseUrl: "https://ai-gateway.vercel.sh",
|
|
14095
|
-
reasoning: false,
|
|
14096
|
-
input: ["text", "image"],
|
|
14097
|
-
cost: {
|
|
14098
|
-
input: 0.15,
|
|
14099
|
-
output: 0.6,
|
|
14100
|
-
cacheRead: 0.025,
|
|
14101
|
-
cacheWrite: 0,
|
|
14102
|
-
},
|
|
14103
|
-
contextWindow: 1048576,
|
|
14104
|
-
maxTokens: 8192,
|
|
14105
|
-
},
|
|
14106
|
-
"google/gemini-2.0-flash-lite": {
|
|
14107
|
-
id: "google/gemini-2.0-flash-lite",
|
|
14108
|
-
name: "Gemini 2.0 Flash Lite",
|
|
14109
|
-
api: "anthropic-messages",
|
|
14110
|
-
provider: "vercel-ai-gateway",
|
|
14111
|
-
baseUrl: "https://ai-gateway.vercel.sh",
|
|
14112
|
-
reasoning: false,
|
|
14113
|
-
input: ["text", "image"],
|
|
14114
|
-
cost: {
|
|
14115
|
-
input: 0.075,
|
|
14116
|
-
output: 0.3,
|
|
14117
|
-
cacheRead: 0.02,
|
|
14118
|
-
cacheWrite: 0,
|
|
14119
|
-
},
|
|
14120
|
-
contextWindow: 1048576,
|
|
14121
|
-
maxTokens: 8192,
|
|
14122
|
-
},
|
|
14123
14206
|
"google/gemini-2.5-flash": {
|
|
14124
14207
|
id: "google/gemini-2.5-flash",
|
|
14125
14208
|
name: "Gemini 2.5 Flash",
|
|
@@ -16239,7 +16322,7 @@ export const MODELS = {
|
|
|
16239
16322
|
cacheRead: 0.2,
|
|
16240
16323
|
cacheWrite: 0,
|
|
16241
16324
|
},
|
|
16242
|
-
contextWindow:
|
|
16325
|
+
contextWindow: 1000000,
|
|
16243
16326
|
maxTokens: 30000,
|
|
16244
16327
|
},
|
|
16245
16328
|
"grok-4.20-0309-reasoning": {
|
|
@@ -16256,7 +16339,7 @@ export const MODELS = {
|
|
|
16256
16339
|
cacheRead: 0.2,
|
|
16257
16340
|
cacheWrite: 0,
|
|
16258
16341
|
},
|
|
16259
|
-
contextWindow:
|
|
16342
|
+
contextWindow: 1000000,
|
|
16260
16343
|
maxTokens: 30000,
|
|
16261
16344
|
},
|
|
16262
16345
|
"grok-4.3": {
|
|
@@ -16402,6 +16485,24 @@ export const MODELS = {
|
|
|
16402
16485
|
contextWindow: 1048576,
|
|
16403
16486
|
maxTokens: 131072,
|
|
16404
16487
|
},
|
|
16488
|
+
"mimo-v2.5-pro-ultraspeed": {
|
|
16489
|
+
id: "mimo-v2.5-pro-ultraspeed",
|
|
16490
|
+
name: "MiMo-V2.5-Pro-UltraSpeed",
|
|
16491
|
+
api: "openai-completions",
|
|
16492
|
+
provider: "xiaomi",
|
|
16493
|
+
baseUrl: "https://api.xiaomimimo.com/v1",
|
|
16494
|
+
compat: { "requiresReasoningContentOnAssistantMessages": true, "thinkingFormat": "deepseek" },
|
|
16495
|
+
reasoning: true,
|
|
16496
|
+
input: ["text"],
|
|
16497
|
+
cost: {
|
|
16498
|
+
input: 1.305,
|
|
16499
|
+
output: 2.61,
|
|
16500
|
+
cacheRead: 0.0108,
|
|
16501
|
+
cacheWrite: 0,
|
|
16502
|
+
},
|
|
16503
|
+
contextWindow: 1048576,
|
|
16504
|
+
maxTokens: 131072,
|
|
16505
|
+
},
|
|
16405
16506
|
},
|
|
16406
16507
|
"xiaomi-token-plan-ams": {
|
|
16407
16508
|
"mimo-v2-flash": {
|
|
@@ -16494,6 +16595,24 @@ export const MODELS = {
|
|
|
16494
16595
|
contextWindow: 1048576,
|
|
16495
16596
|
maxTokens: 131072,
|
|
16496
16597
|
},
|
|
16598
|
+
"mimo-v2.5-pro-ultraspeed": {
|
|
16599
|
+
id: "mimo-v2.5-pro-ultraspeed",
|
|
16600
|
+
name: "MiMo-V2.5-Pro-UltraSpeed",
|
|
16601
|
+
api: "openai-completions",
|
|
16602
|
+
provider: "xiaomi-token-plan-ams",
|
|
16603
|
+
baseUrl: "https://token-plan-ams.xiaomimimo.com/v1",
|
|
16604
|
+
compat: { "requiresReasoningContentOnAssistantMessages": true, "thinkingFormat": "deepseek" },
|
|
16605
|
+
reasoning: true,
|
|
16606
|
+
input: ["text"],
|
|
16607
|
+
cost: {
|
|
16608
|
+
input: 1.305,
|
|
16609
|
+
output: 2.61,
|
|
16610
|
+
cacheRead: 0.0108,
|
|
16611
|
+
cacheWrite: 0,
|
|
16612
|
+
},
|
|
16613
|
+
contextWindow: 1048576,
|
|
16614
|
+
maxTokens: 131072,
|
|
16615
|
+
},
|
|
16497
16616
|
},
|
|
16498
16617
|
"xiaomi-token-plan-cn": {
|
|
16499
16618
|
"mimo-v2-flash": {
|
|
@@ -16586,6 +16705,24 @@ export const MODELS = {
|
|
|
16586
16705
|
contextWindow: 1048576,
|
|
16587
16706
|
maxTokens: 131072,
|
|
16588
16707
|
},
|
|
16708
|
+
"mimo-v2.5-pro-ultraspeed": {
|
|
16709
|
+
id: "mimo-v2.5-pro-ultraspeed",
|
|
16710
|
+
name: "MiMo-V2.5-Pro-UltraSpeed",
|
|
16711
|
+
api: "openai-completions",
|
|
16712
|
+
provider: "xiaomi-token-plan-cn",
|
|
16713
|
+
baseUrl: "https://token-plan-cn.xiaomimimo.com/v1",
|
|
16714
|
+
compat: { "requiresReasoningContentOnAssistantMessages": true, "thinkingFormat": "deepseek" },
|
|
16715
|
+
reasoning: true,
|
|
16716
|
+
input: ["text"],
|
|
16717
|
+
cost: {
|
|
16718
|
+
input: 1.305,
|
|
16719
|
+
output: 2.61,
|
|
16720
|
+
cacheRead: 0.0108,
|
|
16721
|
+
cacheWrite: 0,
|
|
16722
|
+
},
|
|
16723
|
+
contextWindow: 1048576,
|
|
16724
|
+
maxTokens: 131072,
|
|
16725
|
+
},
|
|
16589
16726
|
},
|
|
16590
16727
|
"xiaomi-token-plan-sgp": {
|
|
16591
16728
|
"mimo-v2-flash": {
|
|
@@ -16678,6 +16815,24 @@ export const MODELS = {
|
|
|
16678
16815
|
contextWindow: 1048576,
|
|
16679
16816
|
maxTokens: 131072,
|
|
16680
16817
|
},
|
|
16818
|
+
"mimo-v2.5-pro-ultraspeed": {
|
|
16819
|
+
id: "mimo-v2.5-pro-ultraspeed",
|
|
16820
|
+
name: "MiMo-V2.5-Pro-UltraSpeed",
|
|
16821
|
+
api: "openai-completions",
|
|
16822
|
+
provider: "xiaomi-token-plan-sgp",
|
|
16823
|
+
baseUrl: "https://token-plan-sgp.xiaomimimo.com/v1",
|
|
16824
|
+
compat: { "requiresReasoningContentOnAssistantMessages": true, "thinkingFormat": "deepseek" },
|
|
16825
|
+
reasoning: true,
|
|
16826
|
+
input: ["text"],
|
|
16827
|
+
cost: {
|
|
16828
|
+
input: 1.305,
|
|
16829
|
+
output: 2.61,
|
|
16830
|
+
cacheRead: 0.0108,
|
|
16831
|
+
cacheWrite: 0,
|
|
16832
|
+
},
|
|
16833
|
+
contextWindow: 1048576,
|
|
16834
|
+
maxTokens: 131072,
|
|
16835
|
+
},
|
|
16681
16836
|
},
|
|
16682
16837
|
"zai": {
|
|
16683
16838
|
"glm-4.5-air": {
|