@opengsd/gsd-pi 1.2.0-dev.844675c9 → 1.2.0-dev.84c56d87
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-style.d.ts +17 -0
- package/dist/cli-style.js +28 -0
- package/dist/cli-web-branch.d.ts +2 -0
- package/dist/cli-web-branch.js +9 -2
- package/dist/cli.js +1 -1
- package/dist/headless-events.d.ts +4 -2
- package/dist/headless-events.js +7 -29
- package/dist/help-text.js +5 -0
- package/dist/models-resolver.d.ts +3 -13
- package/dist/models-resolver.js +3 -22
- package/dist/resource-loader.js +2 -14
- 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 +5 -2
- package/dist/resources/extensions/browser-tools/engine/managed-gsd-browser.js +209 -88
- package/dist/resources/extensions/browser-tools/engine/selection.js +73 -5
- package/dist/resources/extensions/browser-tools/index.js +69 -12
- package/dist/resources/extensions/claude-code-cli/models.js +9 -0
- package/dist/resources/extensions/claude-code-cli/stream-adapter.js +122 -234
- 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 +23 -11
- package/dist/resources/extensions/gsd/auto-prompts.js +84 -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 +24 -37
- package/dist/resources/extensions/gsd/auto-timers.js +16 -2
- package/dist/resources/extensions/gsd/auto-tool-tracking.js +50 -0
- package/dist/resources/extensions/gsd/auto-unit-tool-scope.js +11 -45
- 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 +53 -368
- package/dist/resources/extensions/gsd/auto.js +19 -27
- package/dist/resources/extensions/gsd/bootstrap/agent-end-recovery.js +3 -2
- 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-extension.js +19 -0
- package/dist/resources/extensions/gsd/bootstrap/register-hooks.js +209 -149
- package/dist/resources/extensions/gsd/bootstrap/write-gate.js +93 -8
- package/dist/resources/extensions/gsd/branch-patterns.js +2 -0
- package/dist/resources/extensions/gsd/browser-evidence.js +8 -2
- package/dist/resources/extensions/gsd/captures.js +5 -15
- 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/crash-recovery.js +4 -12
- 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 +5 -11
- package/dist/resources/extensions/gsd/doctor-format.js +9 -6
- package/dist/resources/extensions/gsd/doctor-git-checks.js +4 -3
- package/dist/resources/extensions/gsd/doctor-runtime-checks.js +21 -16
- package/dist/resources/extensions/gsd/doctor.js +16 -9
- package/dist/resources/extensions/gsd/error-classifier.js +10 -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/guidance.js +98 -0
- package/dist/resources/extensions/gsd/guided-flow.js +83 -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 +4 -20
- package/dist/resources/extensions/gsd/mcp-tool-name.js +18 -0
- package/dist/resources/extensions/gsd/md-importer.js +4 -3
- package/dist/resources/extensions/gsd/memory-consolidation-scanner.js +1 -1
- package/dist/resources/extensions/gsd/migrate/safety.js +22 -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/notification-store.js +11 -4
- 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 +11 -7
- package/dist/resources/extensions/gsd/parallel-orchestrator.js +3 -2
- package/dist/resources/extensions/gsd/paths.js +37 -24
- package/dist/resources/extensions/gsd/pre-execution-checks.js +91 -3
- package/dist/resources/extensions/gsd/preferences-diagnostics.js +67 -0
- package/dist/resources/extensions/gsd/preferences-models.js +12 -46
- 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 +2 -1
- package/dist/resources/extensions/gsd/prompts/refine-slice.md +2 -1
- package/dist/resources/extensions/gsd/prompts/replan-slice.md +1 -1
- package/dist/resources/extensions/gsd/prompts/system.md +1 -1
- package/dist/resources/extensions/gsd/provider-error-guidance.js +1 -5
- package/dist/resources/extensions/gsd/provider-payload-policy.js +83 -0
- package/dist/resources/extensions/gsd/provider-switch-observer.js +1 -1
- package/dist/resources/extensions/gsd/publication.js +87 -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 +41 -87
- 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 +14 -25
- package/dist/resources/extensions/gsd/status-guards.js +56 -8
- package/dist/resources/extensions/gsd/stop-notice.js +57 -0
- 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-readiness.js +56 -0
- 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 -8
- package/dist/resources/extensions/gsd/tools/plan-milestone.js +15 -143
- package/dist/resources/extensions/gsd/tools/plan-slice.js +12 -6
- 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 +17 -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-closeout.js +138 -0
- package/dist/resources/extensions/gsd/unit-context-composer.js +49 -21
- package/dist/resources/extensions/gsd/unit-context-manifest.js +4 -27
- package/dist/resources/extensions/gsd/unit-registry.js +337 -0
- package/dist/resources/extensions/gsd/unit-runtime.js +3 -2
- package/dist/resources/extensions/gsd/unit-tool-contracts.js +9 -181
- 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 +117 -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 +293 -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 +28 -6
- package/dist/resources/extensions/gsd/worktree-safety.js +8 -5
- package/dist/resources/extensions/gsd/worktree-session-state.js +12 -11
- 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/search-the-web/native-search.js +5 -3
- package/dist/resources/extensions/shared/browser-contract.js +59 -0
- package/dist/resources/extensions/shared/gsd-browser-cli.js +72 -4
- package/dist/resources/extensions/shared/interview-ui.js +2 -2
- package/dist/resources/shared/claude-runtime-floor.js +182 -0
- package/dist/resources/skills/create-skill/references/executable-code.md +1 -1
- package/dist/resources/skills/create-skill/workflows/add-reference.md +8 -3
- package/dist/resources/skills/create-skill/workflows/add-script.md +4 -2
- package/dist/resources/skills/create-skill/workflows/add-template.md +3 -1
- package/dist/resources/skills/create-skill/workflows/add-workflow.md +8 -3
- package/dist/resources/skills/create-skill/workflows/upgrade-to-router.md +10 -5
- package/dist/resources/skills/create-skill/workflows/verify-skill.md +9 -4
- package/dist/resources/skills/gsd-browser/SKILL.md +1 -1
- package/dist/resources/skills/spike-wrap-up/SKILL.md +9 -9
- 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 +6 -6
- 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 +6 -6
- package/dist/web/standalone/.next/server/chunks/5124.js +1 -1
- 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/standalone/node_modules/postcss/lib/container.js +18 -26
- package/dist/web/standalone/node_modules/postcss/lib/css-syntax-error.js +14 -47
- package/dist/web/standalone/node_modules/postcss/lib/declaration.js +4 -4
- package/dist/web/standalone/node_modules/postcss/lib/fromJSON.js +3 -3
- package/dist/web/standalone/node_modules/postcss/lib/input.js +29 -54
- package/dist/web/standalone/node_modules/postcss/lib/lazy-result.js +37 -47
- package/dist/web/standalone/node_modules/postcss/lib/map-generator.js +9 -26
- package/dist/web/standalone/node_modules/postcss/lib/no-work-result.js +55 -57
- package/dist/web/standalone/node_modules/postcss/lib/node.js +31 -99
- package/dist/web/standalone/node_modules/postcss/lib/parse.js +1 -1
- package/dist/web/standalone/node_modules/postcss/lib/parser.js +9 -10
- package/dist/web/standalone/node_modules/postcss/lib/postcss.js +12 -12
- package/dist/web/standalone/node_modules/postcss/lib/previous-map.js +11 -30
- package/dist/web/standalone/node_modules/postcss/lib/processor.js +7 -7
- package/dist/web/standalone/node_modules/postcss/lib/result.js +5 -5
- package/dist/web/standalone/node_modules/postcss/lib/rule.js +6 -6
- package/dist/web/standalone/node_modules/postcss/lib/stringifier.js +28 -69
- package/dist/web/standalone/node_modules/postcss/lib/tokenize.js +2 -6
- package/dist/web/standalone/node_modules/postcss/package.json +48 -48
- package/dist/web/standalone/package.json +1 -1
- package/dist/web-mode.d.ts +2 -0
- package/dist/web-mode.js +20 -8
- package/dist/worktree-cli.js +3 -6
- package/dist/worktree-status-banner.js +7 -11
- package/package.json +2 -1
- package/packages/cloud-mcp-gateway/package.json +2 -2
- package/packages/contracts/dist/workflow.d.ts +4 -0
- package/packages/contracts/dist/workflow.d.ts.map +1 -1
- 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/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/cli.js +6 -3
- package/packages/mcp-server/dist/cli.js.map +1 -1
- 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 +49 -0
- package/packages/mcp-server/dist/workflow-tools.d.ts.map +1 -1
- package/packages/mcp-server/dist/workflow-tools.js +48 -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 +455 -546
- package/packages/pi-ai/dist/models.generated.d.ts.map +1 -1
- package/packages/pi-ai/dist/models.generated.js +481 -599
- 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/dist/tui.d.ts.map +1 -1
- package/packages/pi-tui/dist/tui.js +9 -0
- package/packages/pi-tui/dist/tui.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 +5 -2
- package/src/resources/extensions/browser-tools/engine/managed-gsd-browser.ts +265 -98
- package/src/resources/extensions/browser-tools/engine/selection.ts +90 -4
- package/src/resources/extensions/browser-tools/index.ts +71 -13
- package/src/resources/extensions/browser-tools/tests/browser-engine-selection.test.mjs +83 -13
- package/src/resources/extensions/browser-tools/tests/managed-gsd-browser-tools.test.mjs +136 -0
- package/src/resources/extensions/claude-code-cli/models.ts +9 -0
- package/src/resources/extensions/claude-code-cli/stream-adapter.ts +148 -285
- 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 +29 -10
- package/src/resources/extensions/gsd/auto-prompts.ts +110 -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 +29 -35
- package/src/resources/extensions/gsd/auto-timers.ts +16 -2
- package/src/resources/extensions/gsd/auto-tool-tracking.ts +54 -0
- package/src/resources/extensions/gsd/auto-unit-tool-scope.ts +19 -47
- 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 +68 -384
- package/src/resources/extensions/gsd/auto.ts +35 -32
- package/src/resources/extensions/gsd/bootstrap/agent-end-recovery.ts +3 -5
- 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-extension.ts +24 -0
- package/src/resources/extensions/gsd/bootstrap/register-hooks.ts +251 -161
- package/src/resources/extensions/gsd/bootstrap/write-gate.ts +136 -6
- package/src/resources/extensions/gsd/branch-patterns.ts +3 -0
- package/src/resources/extensions/gsd/browser-evidence.ts +18 -2
- package/src/resources/extensions/gsd/captures.ts +5 -16
- 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/crash-recovery.ts +3 -9
- 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 +5 -13
- package/src/resources/extensions/gsd/doctor-format.ts +12 -7
- package/src/resources/extensions/gsd/doctor-git-checks.ts +3 -3
- package/src/resources/extensions/gsd/doctor-runtime-checks.ts +22 -17
- package/src/resources/extensions/gsd/doctor.ts +15 -5
- package/src/resources/extensions/gsd/error-classifier.ts +12 -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/guidance.ts +139 -0
- package/src/resources/extensions/gsd/guided-flow.ts +95 -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 +4 -24
- package/src/resources/extensions/gsd/mcp-tool-name.ts +30 -0
- package/src/resources/extensions/gsd/md-importer.ts +3 -3
- package/src/resources/extensions/gsd/memory-consolidation-scanner.ts +1 -1
- package/src/resources/extensions/gsd/migrate/safety.ts +20 -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/notification-store.ts +26 -3
- 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 +10 -7
- package/src/resources/extensions/gsd/parallel-orchestrator.ts +6 -2
- package/src/resources/extensions/gsd/paths.ts +42 -22
- package/src/resources/extensions/gsd/pre-execution-checks.ts +109 -3
- package/src/resources/extensions/gsd/preferences-diagnostics.ts +98 -0
- package/src/resources/extensions/gsd/preferences-models.ts +10 -46
- 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 +2 -1
- package/src/resources/extensions/gsd/prompts/refine-slice.md +2 -1
- package/src/resources/extensions/gsd/prompts/replan-slice.md +1 -1
- package/src/resources/extensions/gsd/prompts/system.md +1 -1
- package/src/resources/extensions/gsd/provider-error-guidance.ts +4 -9
- package/src/resources/extensions/gsd/provider-payload-policy.ts +140 -0
- package/src/resources/extensions/gsd/provider-switch-observer.ts +1 -1
- package/src/resources/extensions/gsd/publication.ts +122 -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 +47 -88
- 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 +19 -26
- package/src/resources/extensions/gsd/status-guards.ts +59 -8
- package/src/resources/extensions/gsd/stop-notice.ts +75 -0
- 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/browser-automation-contract-fixture.ts +39 -0
- package/src/resources/extensions/gsd/tests/browser-contract.test.ts +44 -0
- package/src/resources/extensions/gsd/tests/canonical-milestone-root.test.ts +20 -0
- package/src/resources/extensions/gsd/tests/checkout-branch-stash-guard.test.ts +66 -1
- package/src/resources/extensions/gsd/tests/clear-stale-autostart.test.ts +44 -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 +46 -8
- 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 +89 -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/extension-bootstrap-isolation.test.ts +35 -1
- 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/guidance.test.ts +125 -0
- package/src/resources/extensions/gsd/tests/integration/auto-worktree-milestone-merge.test.ts +58 -15
- package/src/resources/extensions/gsd/tests/integration/auto-worktree.test.ts +74 -59
- package/src/resources/extensions/gsd/tests/integration/git-service.test.ts +3 -2
- package/src/resources/extensions/gsd/tests/integration/gsd-integration-fixture.ts +80 -0
- 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/notification-store.test.ts +32 -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/pre-execution-checks.test.ts +193 -1
- 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-error-guidance.test.ts +3 -3
- 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/publication.test.ts +120 -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 +342 -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 +26 -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/stop-notice.test.ts +70 -0
- package/src/resources/extensions/gsd/tests/token-tool-gating.test.ts +35 -0
- package/src/resources/extensions/gsd/tests/tool-availability-audit.test.ts +35 -0
- package/src/resources/extensions/gsd/tests/tool-invocation-error-loop-break.test.ts +8 -0
- package/src/resources/extensions/gsd/tests/tool-naming.test.ts +35 -42
- package/src/resources/extensions/gsd/tests/tool-surface-readiness.test.ts +155 -0
- package/src/resources/extensions/gsd/tests/uat-policy.test.ts +24 -6
- package/src/resources/extensions/gsd/tests/unit-closeout.test.ts +209 -0
- package/src/resources/extensions/gsd/tests/unit-context-composer.test.ts +70 -2
- package/src/resources/extensions/gsd/tests/unit-registry.test.ts +163 -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 +193 -0
- package/src/resources/extensions/gsd/tests/workflow-mcp.test.ts +128 -11
- package/src/resources/extensions/gsd/tests/workflow-tool-executors.test.ts +2 -2
- 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-readiness.ts +76 -0
- 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 -8
- package/src/resources/extensions/gsd/tools/plan-milestone.ts +19 -160
- package/src/resources/extensions/gsd/tools/plan-slice.ts +12 -6
- 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 +20 -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-closeout.ts +201 -0
- package/src/resources/extensions/gsd/unit-context-composer.ts +97 -21
- package/src/resources/extensions/gsd/unit-context-manifest.ts +4 -28
- package/src/resources/extensions/gsd/unit-registry.ts +412 -0
- package/src/resources/extensions/gsd/unit-runtime.ts +3 -2
- package/src/resources/extensions/gsd/unit-tool-contracts.ts +27 -191
- 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 +144 -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 +76 -0
- package/src/resources/extensions/gsd/workspace-git-guard.ts +1 -0
- package/src/resources/extensions/gsd/worktree-git-recovery.ts +314 -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 +29 -6
- package/src/resources/extensions/gsd/worktree-safety.ts +8 -5
- package/src/resources/extensions/gsd/worktree-session-state.ts +11 -11
- 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/search-the-web/native-search.ts +5 -3
- package/src/resources/extensions/shared/browser-contract.ts +66 -0
- package/src/resources/extensions/shared/gsd-browser-cli.ts +88 -4
- package/src/resources/extensions/shared/interview-ui.ts +15 -2
- package/src/resources/shared/claude-runtime-floor.ts +248 -0
- package/src/resources/skills/create-skill/references/executable-code.md +1 -1
- package/src/resources/skills/create-skill/workflows/add-reference.md +8 -3
- package/src/resources/skills/create-skill/workflows/add-script.md +4 -2
- package/src/resources/skills/create-skill/workflows/add-template.md +3 -1
- package/src/resources/skills/create-skill/workflows/add-workflow.md +8 -3
- package/src/resources/skills/create-skill/workflows/upgrade-to-router.md +10 -5
- package/src/resources/skills/create-skill/workflows/verify-skill.md +9 -4
- package/src/resources/skills/gsd-browser/SKILL.md +1 -1
- package/src/resources/skills/spike-wrap-up/SKILL.md +9 -9
- 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 → AOpDeK_gJHU8OZjRo31gQ}/_buildManifest.js +0 -0
- /package/dist/web/standalone/.next/static/{Qbr81pQ-pbQXP4bq2VXLv → AOpDeK_gJHU8OZjRo31gQ}/_ssgManifest.js +0 -0
|
@@ -6,7 +6,7 @@ export declare const MODELS: {
|
|
|
6
6
|
api: "bedrock-converse-stream";
|
|
7
7
|
provider: string;
|
|
8
8
|
baseUrl: string;
|
|
9
|
-
reasoning:
|
|
9
|
+
reasoning: true;
|
|
10
10
|
input: ("text" | "image")[];
|
|
11
11
|
cost: {
|
|
12
12
|
input: number;
|
|
@@ -68,6 +68,26 @@ export declare const MODELS: {
|
|
|
68
68
|
contextWindow: number;
|
|
69
69
|
maxTokens: number;
|
|
70
70
|
};
|
|
71
|
+
readonly "anthropic.claude-fable-5": {
|
|
72
|
+
id: string;
|
|
73
|
+
name: string;
|
|
74
|
+
api: "bedrock-converse-stream";
|
|
75
|
+
provider: string;
|
|
76
|
+
baseUrl: string;
|
|
77
|
+
reasoning: true;
|
|
78
|
+
thinkingLevelMap: {
|
|
79
|
+
xhigh: string;
|
|
80
|
+
};
|
|
81
|
+
input: ("text" | "image")[];
|
|
82
|
+
cost: {
|
|
83
|
+
input: number;
|
|
84
|
+
output: number;
|
|
85
|
+
cacheRead: number;
|
|
86
|
+
cacheWrite: number;
|
|
87
|
+
};
|
|
88
|
+
contextWindow: number;
|
|
89
|
+
maxTokens: number;
|
|
90
|
+
};
|
|
71
91
|
readonly "anthropic.claude-haiku-4-5-20251001-v1:0": {
|
|
72
92
|
id: string;
|
|
73
93
|
name: string;
|
|
@@ -355,6 +375,26 @@ export declare const MODELS: {
|
|
|
355
375
|
contextWindow: number;
|
|
356
376
|
maxTokens: number;
|
|
357
377
|
};
|
|
378
|
+
readonly "eu.anthropic.claude-fable-5": {
|
|
379
|
+
id: string;
|
|
380
|
+
name: string;
|
|
381
|
+
api: "bedrock-converse-stream";
|
|
382
|
+
provider: string;
|
|
383
|
+
baseUrl: string;
|
|
384
|
+
reasoning: true;
|
|
385
|
+
thinkingLevelMap: {
|
|
386
|
+
xhigh: string;
|
|
387
|
+
};
|
|
388
|
+
input: ("text" | "image")[];
|
|
389
|
+
cost: {
|
|
390
|
+
input: number;
|
|
391
|
+
output: number;
|
|
392
|
+
cacheRead: number;
|
|
393
|
+
cacheWrite: number;
|
|
394
|
+
};
|
|
395
|
+
contextWindow: number;
|
|
396
|
+
maxTokens: number;
|
|
397
|
+
};
|
|
358
398
|
readonly "eu.anthropic.claude-haiku-4-5-20251001-v1:0": {
|
|
359
399
|
id: string;
|
|
360
400
|
name: string;
|
|
@@ -483,6 +523,26 @@ export declare const MODELS: {
|
|
|
483
523
|
contextWindow: number;
|
|
484
524
|
maxTokens: number;
|
|
485
525
|
};
|
|
526
|
+
readonly "global.anthropic.claude-fable-5": {
|
|
527
|
+
id: string;
|
|
528
|
+
name: string;
|
|
529
|
+
api: "bedrock-converse-stream";
|
|
530
|
+
provider: string;
|
|
531
|
+
baseUrl: string;
|
|
532
|
+
reasoning: true;
|
|
533
|
+
thinkingLevelMap: {
|
|
534
|
+
xhigh: string;
|
|
535
|
+
};
|
|
536
|
+
input: ("text" | "image")[];
|
|
537
|
+
cost: {
|
|
538
|
+
input: number;
|
|
539
|
+
output: number;
|
|
540
|
+
cacheRead: number;
|
|
541
|
+
cacheWrite: number;
|
|
542
|
+
};
|
|
543
|
+
contextWindow: number;
|
|
544
|
+
maxTokens: number;
|
|
545
|
+
};
|
|
486
546
|
readonly "global.anthropic.claude-haiku-4-5-20251001-v1:0": {
|
|
487
547
|
id: string;
|
|
488
548
|
name: string;
|
|
@@ -1156,7 +1216,7 @@ export declare const MODELS: {
|
|
|
1156
1216
|
api: "bedrock-converse-stream";
|
|
1157
1217
|
provider: string;
|
|
1158
1218
|
baseUrl: string;
|
|
1159
|
-
reasoning:
|
|
1219
|
+
reasoning: true;
|
|
1160
1220
|
input: "text"[];
|
|
1161
1221
|
cost: {
|
|
1162
1222
|
input: number;
|
|
@@ -1173,7 +1233,7 @@ export declare const MODELS: {
|
|
|
1173
1233
|
api: "bedrock-converse-stream";
|
|
1174
1234
|
provider: string;
|
|
1175
1235
|
baseUrl: string;
|
|
1176
|
-
reasoning:
|
|
1236
|
+
reasoning: true;
|
|
1177
1237
|
input: "text"[];
|
|
1178
1238
|
cost: {
|
|
1179
1239
|
input: number;
|
|
@@ -1190,7 +1250,7 @@ export declare const MODELS: {
|
|
|
1190
1250
|
api: "bedrock-converse-stream";
|
|
1191
1251
|
provider: string;
|
|
1192
1252
|
baseUrl: string;
|
|
1193
|
-
reasoning:
|
|
1253
|
+
reasoning: true;
|
|
1194
1254
|
input: "text"[];
|
|
1195
1255
|
cost: {
|
|
1196
1256
|
input: number;
|
|
@@ -1207,7 +1267,7 @@ export declare const MODELS: {
|
|
|
1207
1267
|
api: "bedrock-converse-stream";
|
|
1208
1268
|
provider: string;
|
|
1209
1269
|
baseUrl: string;
|
|
1210
|
-
reasoning:
|
|
1270
|
+
reasoning: true;
|
|
1211
1271
|
input: "text"[];
|
|
1212
1272
|
cost: {
|
|
1213
1273
|
input: number;
|
|
@@ -1371,6 +1431,26 @@ export declare const MODELS: {
|
|
|
1371
1431
|
contextWindow: number;
|
|
1372
1432
|
maxTokens: number;
|
|
1373
1433
|
};
|
|
1434
|
+
readonly "us.anthropic.claude-fable-5": {
|
|
1435
|
+
id: string;
|
|
1436
|
+
name: string;
|
|
1437
|
+
api: "bedrock-converse-stream";
|
|
1438
|
+
provider: string;
|
|
1439
|
+
baseUrl: string;
|
|
1440
|
+
reasoning: true;
|
|
1441
|
+
thinkingLevelMap: {
|
|
1442
|
+
xhigh: string;
|
|
1443
|
+
};
|
|
1444
|
+
input: ("text" | "image")[];
|
|
1445
|
+
cost: {
|
|
1446
|
+
input: number;
|
|
1447
|
+
output: number;
|
|
1448
|
+
cacheRead: number;
|
|
1449
|
+
cacheWrite: number;
|
|
1450
|
+
};
|
|
1451
|
+
contextWindow: number;
|
|
1452
|
+
maxTokens: number;
|
|
1453
|
+
};
|
|
1374
1454
|
readonly "us.anthropic.claude-haiku-4-5-20251001-v1:0": {
|
|
1375
1455
|
id: string;
|
|
1376
1456
|
name: string;
|
|
@@ -1790,6 +1870,29 @@ export declare const MODELS: {
|
|
|
1790
1870
|
contextWindow: number;
|
|
1791
1871
|
maxTokens: number;
|
|
1792
1872
|
};
|
|
1873
|
+
readonly "claude-fable-5": {
|
|
1874
|
+
id: string;
|
|
1875
|
+
name: string;
|
|
1876
|
+
api: "anthropic-messages";
|
|
1877
|
+
provider: string;
|
|
1878
|
+
baseUrl: string;
|
|
1879
|
+
compat: {
|
|
1880
|
+
forceAdaptiveThinking: true;
|
|
1881
|
+
};
|
|
1882
|
+
reasoning: true;
|
|
1883
|
+
thinkingLevelMap: {
|
|
1884
|
+
xhigh: string;
|
|
1885
|
+
};
|
|
1886
|
+
input: ("text" | "image")[];
|
|
1887
|
+
cost: {
|
|
1888
|
+
input: number;
|
|
1889
|
+
output: number;
|
|
1890
|
+
cacheRead: number;
|
|
1891
|
+
cacheWrite: number;
|
|
1892
|
+
};
|
|
1893
|
+
contextWindow: number;
|
|
1894
|
+
maxTokens: number;
|
|
1895
|
+
};
|
|
1793
1896
|
readonly "claude-haiku-4-5": {
|
|
1794
1897
|
id: string;
|
|
1795
1898
|
name: string;
|
|
@@ -2102,30 +2205,19 @@ export declare const MODELS: {
|
|
|
2102
2205
|
contextWindow: number;
|
|
2103
2206
|
maxTokens: number;
|
|
2104
2207
|
};
|
|
2105
|
-
readonly "claude-
|
|
2208
|
+
readonly "claude-fable-5": {
|
|
2106
2209
|
id: string;
|
|
2107
2210
|
name: string;
|
|
2108
2211
|
api: "anthropic-vertex";
|
|
2109
2212
|
provider: string;
|
|
2110
2213
|
baseUrl: string;
|
|
2111
|
-
|
|
2112
|
-
|
|
2113
|
-
cost: {
|
|
2114
|
-
input: number;
|
|
2115
|
-
output: number;
|
|
2116
|
-
cacheRead: number;
|
|
2117
|
-
cacheWrite: number;
|
|
2214
|
+
compat: {
|
|
2215
|
+
forceAdaptiveThinking: true;
|
|
2118
2216
|
};
|
|
2119
|
-
contextWindow: number;
|
|
2120
|
-
maxTokens: number;
|
|
2121
|
-
};
|
|
2122
|
-
readonly "claude-3-7-sonnet@20250219": {
|
|
2123
|
-
id: string;
|
|
2124
|
-
name: string;
|
|
2125
|
-
api: "anthropic-vertex";
|
|
2126
|
-
provider: string;
|
|
2127
|
-
baseUrl: string;
|
|
2128
2217
|
reasoning: true;
|
|
2218
|
+
thinkingLevelMap: {
|
|
2219
|
+
xhigh: string;
|
|
2220
|
+
};
|
|
2129
2221
|
input: ("text" | "image")[];
|
|
2130
2222
|
cost: {
|
|
2131
2223
|
input: number;
|
|
@@ -3147,13 +3239,13 @@ export declare const MODELS: {
|
|
|
3147
3239
|
contextWindow: number;
|
|
3148
3240
|
maxTokens: number;
|
|
3149
3241
|
};
|
|
3150
|
-
readonly "
|
|
3242
|
+
readonly "zai-glm-4.7": {
|
|
3151
3243
|
id: string;
|
|
3152
3244
|
name: string;
|
|
3153
3245
|
api: "openai-completions";
|
|
3154
3246
|
provider: string;
|
|
3155
3247
|
baseUrl: string;
|
|
3156
|
-
reasoning:
|
|
3248
|
+
reasoning: true;
|
|
3157
3249
|
input: "text"[];
|
|
3158
3250
|
cost: {
|
|
3159
3251
|
input: number;
|
|
@@ -3164,14 +3256,16 @@ export declare const MODELS: {
|
|
|
3164
3256
|
contextWindow: number;
|
|
3165
3257
|
maxTokens: number;
|
|
3166
3258
|
};
|
|
3167
|
-
|
|
3259
|
+
};
|
|
3260
|
+
readonly "cloudflare-ai-gateway": {
|
|
3261
|
+
readonly "claude-3-5-haiku": {
|
|
3168
3262
|
id: string;
|
|
3169
3263
|
name: string;
|
|
3170
|
-
api: "
|
|
3264
|
+
api: "anthropic-messages";
|
|
3171
3265
|
provider: string;
|
|
3172
3266
|
baseUrl: string;
|
|
3173
3267
|
reasoning: false;
|
|
3174
|
-
input: "text"[];
|
|
3268
|
+
input: ("text" | "image")[];
|
|
3175
3269
|
cost: {
|
|
3176
3270
|
input: number;
|
|
3177
3271
|
output: number;
|
|
@@ -3181,9 +3275,7 @@ export declare const MODELS: {
|
|
|
3181
3275
|
contextWindow: number;
|
|
3182
3276
|
maxTokens: number;
|
|
3183
3277
|
};
|
|
3184
|
-
|
|
3185
|
-
readonly "cloudflare-ai-gateway": {
|
|
3186
|
-
readonly "claude-3-5-haiku": {
|
|
3278
|
+
readonly "claude-3-haiku": {
|
|
3187
3279
|
id: string;
|
|
3188
3280
|
name: string;
|
|
3189
3281
|
api: "anthropic-messages";
|
|
@@ -3200,7 +3292,7 @@ export declare const MODELS: {
|
|
|
3200
3292
|
contextWindow: number;
|
|
3201
3293
|
maxTokens: number;
|
|
3202
3294
|
};
|
|
3203
|
-
readonly "claude-3-
|
|
3295
|
+
readonly "claude-3-opus": {
|
|
3204
3296
|
id: string;
|
|
3205
3297
|
name: string;
|
|
3206
3298
|
api: "anthropic-messages";
|
|
@@ -3217,7 +3309,7 @@ export declare const MODELS: {
|
|
|
3217
3309
|
contextWindow: number;
|
|
3218
3310
|
maxTokens: number;
|
|
3219
3311
|
};
|
|
3220
|
-
readonly "claude-3-
|
|
3312
|
+
readonly "claude-3-sonnet": {
|
|
3221
3313
|
id: string;
|
|
3222
3314
|
name: string;
|
|
3223
3315
|
api: "anthropic-messages";
|
|
@@ -3234,7 +3326,7 @@ export declare const MODELS: {
|
|
|
3234
3326
|
contextWindow: number;
|
|
3235
3327
|
maxTokens: number;
|
|
3236
3328
|
};
|
|
3237
|
-
readonly "claude-3-
|
|
3329
|
+
readonly "claude-3.5-haiku": {
|
|
3238
3330
|
id: string;
|
|
3239
3331
|
name: string;
|
|
3240
3332
|
api: "anthropic-messages";
|
|
@@ -3251,7 +3343,7 @@ export declare const MODELS: {
|
|
|
3251
3343
|
contextWindow: number;
|
|
3252
3344
|
maxTokens: number;
|
|
3253
3345
|
};
|
|
3254
|
-
readonly "claude-3.5-
|
|
3346
|
+
readonly "claude-3.5-sonnet": {
|
|
3255
3347
|
id: string;
|
|
3256
3348
|
name: string;
|
|
3257
3349
|
api: "anthropic-messages";
|
|
@@ -3268,13 +3360,19 @@ export declare const MODELS: {
|
|
|
3268
3360
|
contextWindow: number;
|
|
3269
3361
|
maxTokens: number;
|
|
3270
3362
|
};
|
|
3271
|
-
readonly "claude-
|
|
3363
|
+
readonly "claude-fable-5": {
|
|
3272
3364
|
id: string;
|
|
3273
3365
|
name: string;
|
|
3274
3366
|
api: "anthropic-messages";
|
|
3275
3367
|
provider: string;
|
|
3276
3368
|
baseUrl: string;
|
|
3277
|
-
|
|
3369
|
+
compat: {
|
|
3370
|
+
forceAdaptiveThinking: true;
|
|
3371
|
+
};
|
|
3372
|
+
reasoning: true;
|
|
3373
|
+
thinkingLevelMap: {
|
|
3374
|
+
xhigh: string;
|
|
3375
|
+
};
|
|
3278
3376
|
input: ("text" | "image")[];
|
|
3279
3377
|
cost: {
|
|
3280
3378
|
input: number;
|
|
@@ -4437,6 +4535,37 @@ export declare const MODELS: {
|
|
|
4437
4535
|
};
|
|
4438
4536
|
};
|
|
4439
4537
|
readonly "github-copilot": {
|
|
4538
|
+
readonly "claude-fable-5": {
|
|
4539
|
+
id: string;
|
|
4540
|
+
name: string;
|
|
4541
|
+
api: "openai-completions";
|
|
4542
|
+
provider: string;
|
|
4543
|
+
baseUrl: string;
|
|
4544
|
+
headers: {
|
|
4545
|
+
"User-Agent": string;
|
|
4546
|
+
"Editor-Version": string;
|
|
4547
|
+
"Editor-Plugin-Version": string;
|
|
4548
|
+
"Copilot-Integration-Id": string;
|
|
4549
|
+
};
|
|
4550
|
+
compat: {
|
|
4551
|
+
supportsStore: false;
|
|
4552
|
+
supportsDeveloperRole: false;
|
|
4553
|
+
supportsReasoningEffort: false;
|
|
4554
|
+
};
|
|
4555
|
+
reasoning: true;
|
|
4556
|
+
thinkingLevelMap: {
|
|
4557
|
+
xhigh: string;
|
|
4558
|
+
};
|
|
4559
|
+
input: ("text" | "image")[];
|
|
4560
|
+
cost: {
|
|
4561
|
+
input: number;
|
|
4562
|
+
output: number;
|
|
4563
|
+
cacheRead: number;
|
|
4564
|
+
cacheWrite: number;
|
|
4565
|
+
};
|
|
4566
|
+
contextWindow: number;
|
|
4567
|
+
maxTokens: number;
|
|
4568
|
+
};
|
|
4440
4569
|
readonly "claude-haiku-4.5": {
|
|
4441
4570
|
id: string;
|
|
4442
4571
|
name: string;
|
|
@@ -5612,13 +5741,13 @@ export declare const MODELS: {
|
|
|
5612
5741
|
};
|
|
5613
5742
|
};
|
|
5614
5743
|
readonly groq: {
|
|
5615
|
-
readonly "
|
|
5744
|
+
readonly "llama-3.1-8b-instant": {
|
|
5616
5745
|
id: string;
|
|
5617
5746
|
name: string;
|
|
5618
5747
|
api: "openai-completions";
|
|
5619
5748
|
provider: string;
|
|
5620
5749
|
baseUrl: string;
|
|
5621
|
-
reasoning:
|
|
5750
|
+
reasoning: false;
|
|
5622
5751
|
input: "text"[];
|
|
5623
5752
|
cost: {
|
|
5624
5753
|
input: number;
|
|
@@ -5629,7 +5758,7 @@ export declare const MODELS: {
|
|
|
5629
5758
|
contextWindow: number;
|
|
5630
5759
|
maxTokens: number;
|
|
5631
5760
|
};
|
|
5632
|
-
readonly "
|
|
5761
|
+
readonly "llama-3.3-70b-versatile": {
|
|
5633
5762
|
id: string;
|
|
5634
5763
|
name: string;
|
|
5635
5764
|
api: "openai-completions";
|
|
@@ -5646,14 +5775,14 @@ export declare const MODELS: {
|
|
|
5646
5775
|
contextWindow: number;
|
|
5647
5776
|
maxTokens: number;
|
|
5648
5777
|
};
|
|
5649
|
-
readonly "
|
|
5778
|
+
readonly "meta-llama/llama-4-scout-17b-16e-instruct": {
|
|
5650
5779
|
id: string;
|
|
5651
5780
|
name: string;
|
|
5652
5781
|
api: "openai-completions";
|
|
5653
5782
|
provider: string;
|
|
5654
5783
|
baseUrl: string;
|
|
5655
|
-
reasoning:
|
|
5656
|
-
input: "text"[];
|
|
5784
|
+
reasoning: false;
|
|
5785
|
+
input: ("text" | "image")[];
|
|
5657
5786
|
cost: {
|
|
5658
5787
|
input: number;
|
|
5659
5788
|
output: number;
|
|
@@ -5663,7 +5792,7 @@ export declare const MODELS: {
|
|
|
5663
5792
|
contextWindow: number;
|
|
5664
5793
|
maxTokens: number;
|
|
5665
5794
|
};
|
|
5666
|
-
readonly "
|
|
5795
|
+
readonly "openai/gpt-oss-120b": {
|
|
5667
5796
|
id: string;
|
|
5668
5797
|
name: string;
|
|
5669
5798
|
api: "openai-completions";
|
|
@@ -5680,13 +5809,13 @@ export declare const MODELS: {
|
|
|
5680
5809
|
contextWindow: number;
|
|
5681
5810
|
maxTokens: number;
|
|
5682
5811
|
};
|
|
5683
|
-
readonly "
|
|
5812
|
+
readonly "openai/gpt-oss-20b": {
|
|
5684
5813
|
id: string;
|
|
5685
5814
|
name: string;
|
|
5686
5815
|
api: "openai-completions";
|
|
5687
5816
|
provider: string;
|
|
5688
5817
|
baseUrl: string;
|
|
5689
|
-
reasoning:
|
|
5818
|
+
reasoning: true;
|
|
5690
5819
|
input: "text"[];
|
|
5691
5820
|
cost: {
|
|
5692
5821
|
input: number;
|
|
@@ -5697,13 +5826,13 @@ export declare const MODELS: {
|
|
|
5697
5826
|
contextWindow: number;
|
|
5698
5827
|
maxTokens: number;
|
|
5699
5828
|
};
|
|
5700
|
-
readonly "
|
|
5829
|
+
readonly "openai/gpt-oss-safeguard-20b": {
|
|
5701
5830
|
id: string;
|
|
5702
5831
|
name: string;
|
|
5703
5832
|
api: "openai-completions";
|
|
5704
5833
|
provider: string;
|
|
5705
5834
|
baseUrl: string;
|
|
5706
|
-
reasoning:
|
|
5835
|
+
reasoning: true;
|
|
5707
5836
|
input: "text"[];
|
|
5708
5837
|
cost: {
|
|
5709
5838
|
input: number;
|
|
@@ -5714,13 +5843,19 @@ export declare const MODELS: {
|
|
|
5714
5843
|
contextWindow: number;
|
|
5715
5844
|
maxTokens: number;
|
|
5716
5845
|
};
|
|
5717
|
-
readonly "
|
|
5846
|
+
readonly "qwen/qwen3-32b": {
|
|
5718
5847
|
id: string;
|
|
5719
5848
|
name: string;
|
|
5720
5849
|
api: "openai-completions";
|
|
5721
5850
|
provider: string;
|
|
5722
5851
|
baseUrl: string;
|
|
5723
|
-
reasoning:
|
|
5852
|
+
reasoning: true;
|
|
5853
|
+
thinkingLevelMap: {
|
|
5854
|
+
minimal: null;
|
|
5855
|
+
low: null;
|
|
5856
|
+
medium: null;
|
|
5857
|
+
high: string;
|
|
5858
|
+
};
|
|
5724
5859
|
input: "text"[];
|
|
5725
5860
|
cost: {
|
|
5726
5861
|
input: number;
|
|
@@ -5731,13 +5866,18 @@ export declare const MODELS: {
|
|
|
5731
5866
|
contextWindow: number;
|
|
5732
5867
|
maxTokens: number;
|
|
5733
5868
|
};
|
|
5734
|
-
|
|
5869
|
+
};
|
|
5870
|
+
readonly huggingface: {
|
|
5871
|
+
readonly "MiniMaxAI/MiniMax-M2.1": {
|
|
5735
5872
|
id: string;
|
|
5736
5873
|
name: string;
|
|
5737
5874
|
api: "openai-completions";
|
|
5738
5875
|
provider: string;
|
|
5739
5876
|
baseUrl: string;
|
|
5740
|
-
|
|
5877
|
+
compat: {
|
|
5878
|
+
supportsDeveloperRole: false;
|
|
5879
|
+
};
|
|
5880
|
+
reasoning: true;
|
|
5741
5881
|
input: "text"[];
|
|
5742
5882
|
cost: {
|
|
5743
5883
|
input: number;
|
|
@@ -5748,14 +5888,17 @@ export declare const MODELS: {
|
|
|
5748
5888
|
contextWindow: number;
|
|
5749
5889
|
maxTokens: number;
|
|
5750
5890
|
};
|
|
5751
|
-
readonly "
|
|
5891
|
+
readonly "MiniMaxAI/MiniMax-M2.5": {
|
|
5752
5892
|
id: string;
|
|
5753
5893
|
name: string;
|
|
5754
5894
|
api: "openai-completions";
|
|
5755
5895
|
provider: string;
|
|
5756
5896
|
baseUrl: string;
|
|
5757
|
-
|
|
5758
|
-
|
|
5897
|
+
compat: {
|
|
5898
|
+
supportsDeveloperRole: false;
|
|
5899
|
+
};
|
|
5900
|
+
reasoning: true;
|
|
5901
|
+
input: "text"[];
|
|
5759
5902
|
cost: {
|
|
5760
5903
|
input: number;
|
|
5761
5904
|
output: number;
|
|
@@ -5765,14 +5908,17 @@ export declare const MODELS: {
|
|
|
5765
5908
|
contextWindow: number;
|
|
5766
5909
|
maxTokens: number;
|
|
5767
5910
|
};
|
|
5768
|
-
readonly "
|
|
5911
|
+
readonly "MiniMaxAI/MiniMax-M2.7": {
|
|
5769
5912
|
id: string;
|
|
5770
5913
|
name: string;
|
|
5771
5914
|
api: "openai-completions";
|
|
5772
5915
|
provider: string;
|
|
5773
5916
|
baseUrl: string;
|
|
5774
|
-
|
|
5775
|
-
|
|
5917
|
+
compat: {
|
|
5918
|
+
supportsDeveloperRole: false;
|
|
5919
|
+
};
|
|
5920
|
+
reasoning: true;
|
|
5921
|
+
input: "text"[];
|
|
5776
5922
|
cost: {
|
|
5777
5923
|
input: number;
|
|
5778
5924
|
output: number;
|
|
@@ -5782,13 +5928,16 @@ export declare const MODELS: {
|
|
|
5782
5928
|
contextWindow: number;
|
|
5783
5929
|
maxTokens: number;
|
|
5784
5930
|
};
|
|
5785
|
-
readonly "
|
|
5931
|
+
readonly "Qwen/Qwen3-235B-A22B-Thinking-2507": {
|
|
5786
5932
|
id: string;
|
|
5787
5933
|
name: string;
|
|
5788
5934
|
api: "openai-completions";
|
|
5789
5935
|
provider: string;
|
|
5790
5936
|
baseUrl: string;
|
|
5791
|
-
|
|
5937
|
+
compat: {
|
|
5938
|
+
supportsDeveloperRole: false;
|
|
5939
|
+
};
|
|
5940
|
+
reasoning: true;
|
|
5792
5941
|
input: "text"[];
|
|
5793
5942
|
cost: {
|
|
5794
5943
|
input: number;
|
|
@@ -5799,12 +5948,15 @@ export declare const MODELS: {
|
|
|
5799
5948
|
contextWindow: number;
|
|
5800
5949
|
maxTokens: number;
|
|
5801
5950
|
};
|
|
5802
|
-
readonly "
|
|
5951
|
+
readonly "Qwen/Qwen3-Coder-480B-A35B-Instruct": {
|
|
5803
5952
|
id: string;
|
|
5804
5953
|
name: string;
|
|
5805
5954
|
api: "openai-completions";
|
|
5806
5955
|
provider: string;
|
|
5807
5956
|
baseUrl: string;
|
|
5957
|
+
compat: {
|
|
5958
|
+
supportsDeveloperRole: false;
|
|
5959
|
+
};
|
|
5808
5960
|
reasoning: false;
|
|
5809
5961
|
input: "text"[];
|
|
5810
5962
|
cost: {
|
|
@@ -5816,225 +5968,15 @@ export declare const MODELS: {
|
|
|
5816
5968
|
contextWindow: number;
|
|
5817
5969
|
maxTokens: number;
|
|
5818
5970
|
};
|
|
5819
|
-
readonly "
|
|
5971
|
+
readonly "Qwen/Qwen3-Coder-Next": {
|
|
5820
5972
|
id: string;
|
|
5821
5973
|
name: string;
|
|
5822
5974
|
api: "openai-completions";
|
|
5823
5975
|
provider: string;
|
|
5824
5976
|
baseUrl: string;
|
|
5825
|
-
|
|
5826
|
-
|
|
5827
|
-
|
|
5828
|
-
input: number;
|
|
5829
|
-
output: number;
|
|
5830
|
-
cacheRead: number;
|
|
5831
|
-
cacheWrite: number;
|
|
5832
|
-
};
|
|
5833
|
-
contextWindow: number;
|
|
5834
|
-
maxTokens: number;
|
|
5835
|
-
};
|
|
5836
|
-
readonly "openai/gpt-oss-120b": {
|
|
5837
|
-
id: string;
|
|
5838
|
-
name: string;
|
|
5839
|
-
api: "openai-completions";
|
|
5840
|
-
provider: string;
|
|
5841
|
-
baseUrl: string;
|
|
5842
|
-
reasoning: true;
|
|
5843
|
-
input: "text"[];
|
|
5844
|
-
cost: {
|
|
5845
|
-
input: number;
|
|
5846
|
-
output: number;
|
|
5847
|
-
cacheRead: number;
|
|
5848
|
-
cacheWrite: number;
|
|
5849
|
-
};
|
|
5850
|
-
contextWindow: number;
|
|
5851
|
-
maxTokens: number;
|
|
5852
|
-
};
|
|
5853
|
-
readonly "openai/gpt-oss-20b": {
|
|
5854
|
-
id: string;
|
|
5855
|
-
name: string;
|
|
5856
|
-
api: "openai-completions";
|
|
5857
|
-
provider: string;
|
|
5858
|
-
baseUrl: string;
|
|
5859
|
-
reasoning: true;
|
|
5860
|
-
input: "text"[];
|
|
5861
|
-
cost: {
|
|
5862
|
-
input: number;
|
|
5863
|
-
output: number;
|
|
5864
|
-
cacheRead: number;
|
|
5865
|
-
cacheWrite: number;
|
|
5866
|
-
};
|
|
5867
|
-
contextWindow: number;
|
|
5868
|
-
maxTokens: number;
|
|
5869
|
-
};
|
|
5870
|
-
readonly "openai/gpt-oss-safeguard-20b": {
|
|
5871
|
-
id: string;
|
|
5872
|
-
name: string;
|
|
5873
|
-
api: "openai-completions";
|
|
5874
|
-
provider: string;
|
|
5875
|
-
baseUrl: string;
|
|
5876
|
-
reasoning: true;
|
|
5877
|
-
input: "text"[];
|
|
5878
|
-
cost: {
|
|
5879
|
-
input: number;
|
|
5880
|
-
output: number;
|
|
5881
|
-
cacheRead: number;
|
|
5882
|
-
cacheWrite: number;
|
|
5883
|
-
};
|
|
5884
|
-
contextWindow: number;
|
|
5885
|
-
maxTokens: number;
|
|
5886
|
-
};
|
|
5887
|
-
readonly "qwen-qwq-32b": {
|
|
5888
|
-
id: string;
|
|
5889
|
-
name: string;
|
|
5890
|
-
api: "openai-completions";
|
|
5891
|
-
provider: string;
|
|
5892
|
-
baseUrl: string;
|
|
5893
|
-
reasoning: true;
|
|
5894
|
-
input: "text"[];
|
|
5895
|
-
cost: {
|
|
5896
|
-
input: number;
|
|
5897
|
-
output: number;
|
|
5898
|
-
cacheRead: number;
|
|
5899
|
-
cacheWrite: number;
|
|
5900
|
-
};
|
|
5901
|
-
contextWindow: number;
|
|
5902
|
-
maxTokens: number;
|
|
5903
|
-
};
|
|
5904
|
-
readonly "qwen/qwen3-32b": {
|
|
5905
|
-
id: string;
|
|
5906
|
-
name: string;
|
|
5907
|
-
api: "openai-completions";
|
|
5908
|
-
provider: string;
|
|
5909
|
-
baseUrl: string;
|
|
5910
|
-
reasoning: true;
|
|
5911
|
-
thinkingLevelMap: {
|
|
5912
|
-
minimal: null;
|
|
5913
|
-
low: null;
|
|
5914
|
-
medium: null;
|
|
5915
|
-
high: string;
|
|
5916
|
-
};
|
|
5917
|
-
input: "text"[];
|
|
5918
|
-
cost: {
|
|
5919
|
-
input: number;
|
|
5920
|
-
output: number;
|
|
5921
|
-
cacheRead: number;
|
|
5922
|
-
cacheWrite: number;
|
|
5923
|
-
};
|
|
5924
|
-
contextWindow: number;
|
|
5925
|
-
maxTokens: number;
|
|
5926
|
-
};
|
|
5927
|
-
};
|
|
5928
|
-
readonly huggingface: {
|
|
5929
|
-
readonly "MiniMaxAI/MiniMax-M2.1": {
|
|
5930
|
-
id: string;
|
|
5931
|
-
name: string;
|
|
5932
|
-
api: "openai-completions";
|
|
5933
|
-
provider: string;
|
|
5934
|
-
baseUrl: string;
|
|
5935
|
-
compat: {
|
|
5936
|
-
supportsDeveloperRole: false;
|
|
5937
|
-
};
|
|
5938
|
-
reasoning: true;
|
|
5939
|
-
input: "text"[];
|
|
5940
|
-
cost: {
|
|
5941
|
-
input: number;
|
|
5942
|
-
output: number;
|
|
5943
|
-
cacheRead: number;
|
|
5944
|
-
cacheWrite: number;
|
|
5945
|
-
};
|
|
5946
|
-
contextWindow: number;
|
|
5947
|
-
maxTokens: number;
|
|
5948
|
-
};
|
|
5949
|
-
readonly "MiniMaxAI/MiniMax-M2.5": {
|
|
5950
|
-
id: string;
|
|
5951
|
-
name: string;
|
|
5952
|
-
api: "openai-completions";
|
|
5953
|
-
provider: string;
|
|
5954
|
-
baseUrl: string;
|
|
5955
|
-
compat: {
|
|
5956
|
-
supportsDeveloperRole: false;
|
|
5957
|
-
};
|
|
5958
|
-
reasoning: true;
|
|
5959
|
-
input: "text"[];
|
|
5960
|
-
cost: {
|
|
5961
|
-
input: number;
|
|
5962
|
-
output: number;
|
|
5963
|
-
cacheRead: number;
|
|
5964
|
-
cacheWrite: number;
|
|
5965
|
-
};
|
|
5966
|
-
contextWindow: number;
|
|
5967
|
-
maxTokens: number;
|
|
5968
|
-
};
|
|
5969
|
-
readonly "MiniMaxAI/MiniMax-M2.7": {
|
|
5970
|
-
id: string;
|
|
5971
|
-
name: string;
|
|
5972
|
-
api: "openai-completions";
|
|
5973
|
-
provider: string;
|
|
5974
|
-
baseUrl: string;
|
|
5975
|
-
compat: {
|
|
5976
|
-
supportsDeveloperRole: false;
|
|
5977
|
-
};
|
|
5978
|
-
reasoning: true;
|
|
5979
|
-
input: "text"[];
|
|
5980
|
-
cost: {
|
|
5981
|
-
input: number;
|
|
5982
|
-
output: number;
|
|
5983
|
-
cacheRead: number;
|
|
5984
|
-
cacheWrite: number;
|
|
5985
|
-
};
|
|
5986
|
-
contextWindow: number;
|
|
5987
|
-
maxTokens: number;
|
|
5988
|
-
};
|
|
5989
|
-
readonly "Qwen/Qwen3-235B-A22B-Thinking-2507": {
|
|
5990
|
-
id: string;
|
|
5991
|
-
name: string;
|
|
5992
|
-
api: "openai-completions";
|
|
5993
|
-
provider: string;
|
|
5994
|
-
baseUrl: string;
|
|
5995
|
-
compat: {
|
|
5996
|
-
supportsDeveloperRole: false;
|
|
5997
|
-
};
|
|
5998
|
-
reasoning: true;
|
|
5999
|
-
input: "text"[];
|
|
6000
|
-
cost: {
|
|
6001
|
-
input: number;
|
|
6002
|
-
output: number;
|
|
6003
|
-
cacheRead: number;
|
|
6004
|
-
cacheWrite: number;
|
|
6005
|
-
};
|
|
6006
|
-
contextWindow: number;
|
|
6007
|
-
maxTokens: number;
|
|
6008
|
-
};
|
|
6009
|
-
readonly "Qwen/Qwen3-Coder-480B-A35B-Instruct": {
|
|
6010
|
-
id: string;
|
|
6011
|
-
name: string;
|
|
6012
|
-
api: "openai-completions";
|
|
6013
|
-
provider: string;
|
|
6014
|
-
baseUrl: string;
|
|
6015
|
-
compat: {
|
|
6016
|
-
supportsDeveloperRole: false;
|
|
6017
|
-
};
|
|
6018
|
-
reasoning: false;
|
|
6019
|
-
input: "text"[];
|
|
6020
|
-
cost: {
|
|
6021
|
-
input: number;
|
|
6022
|
-
output: number;
|
|
6023
|
-
cacheRead: number;
|
|
6024
|
-
cacheWrite: number;
|
|
6025
|
-
};
|
|
6026
|
-
contextWindow: number;
|
|
6027
|
-
maxTokens: number;
|
|
6028
|
-
};
|
|
6029
|
-
readonly "Qwen/Qwen3-Coder-Next": {
|
|
6030
|
-
id: string;
|
|
6031
|
-
name: string;
|
|
6032
|
-
api: "openai-completions";
|
|
6033
|
-
provider: string;
|
|
6034
|
-
baseUrl: string;
|
|
6035
|
-
compat: {
|
|
6036
|
-
supportsDeveloperRole: false;
|
|
6037
|
-
};
|
|
5977
|
+
compat: {
|
|
5978
|
+
supportsDeveloperRole: false;
|
|
5979
|
+
};
|
|
6038
5980
|
reasoning: false;
|
|
6039
5981
|
input: "text"[];
|
|
6040
5982
|
cost: {
|
|
@@ -8314,6 +8256,29 @@ export declare const MODELS: {
|
|
|
8314
8256
|
contextWindow: number;
|
|
8315
8257
|
maxTokens: number;
|
|
8316
8258
|
};
|
|
8259
|
+
readonly "claude-fable-5": {
|
|
8260
|
+
id: string;
|
|
8261
|
+
name: string;
|
|
8262
|
+
api: "anthropic-messages";
|
|
8263
|
+
provider: string;
|
|
8264
|
+
baseUrl: string;
|
|
8265
|
+
compat: {
|
|
8266
|
+
forceAdaptiveThinking: true;
|
|
8267
|
+
};
|
|
8268
|
+
reasoning: true;
|
|
8269
|
+
thinkingLevelMap: {
|
|
8270
|
+
xhigh: string;
|
|
8271
|
+
};
|
|
8272
|
+
input: ("text" | "image")[];
|
|
8273
|
+
cost: {
|
|
8274
|
+
input: number;
|
|
8275
|
+
output: number;
|
|
8276
|
+
cacheRead: number;
|
|
8277
|
+
cacheWrite: number;
|
|
8278
|
+
};
|
|
8279
|
+
contextWindow: number;
|
|
8280
|
+
maxTokens: number;
|
|
8281
|
+
};
|
|
8317
8282
|
readonly "claude-haiku-4-5": {
|
|
8318
8283
|
id: string;
|
|
8319
8284
|
name: string;
|
|
@@ -8544,6 +8509,34 @@ export declare const MODELS: {
|
|
|
8544
8509
|
contextWindow: number;
|
|
8545
8510
|
maxTokens: number;
|
|
8546
8511
|
};
|
|
8512
|
+
readonly "deepseek-v4-pro": {
|
|
8513
|
+
id: string;
|
|
8514
|
+
name: string;
|
|
8515
|
+
api: "openai-completions";
|
|
8516
|
+
provider: string;
|
|
8517
|
+
baseUrl: string;
|
|
8518
|
+
compat: {
|
|
8519
|
+
requiresReasoningContentOnAssistantMessages: true;
|
|
8520
|
+
thinkingFormat: "deepseek";
|
|
8521
|
+
};
|
|
8522
|
+
reasoning: true;
|
|
8523
|
+
thinkingLevelMap: {
|
|
8524
|
+
minimal: null;
|
|
8525
|
+
low: null;
|
|
8526
|
+
medium: null;
|
|
8527
|
+
high: string;
|
|
8528
|
+
xhigh: string;
|
|
8529
|
+
};
|
|
8530
|
+
input: "text"[];
|
|
8531
|
+
cost: {
|
|
8532
|
+
input: number;
|
|
8533
|
+
output: number;
|
|
8534
|
+
cacheRead: number;
|
|
8535
|
+
cacheWrite: number;
|
|
8536
|
+
};
|
|
8537
|
+
contextWindow: number;
|
|
8538
|
+
maxTokens: number;
|
|
8539
|
+
};
|
|
8547
8540
|
readonly "gemini-3-flash": {
|
|
8548
8541
|
id: string;
|
|
8549
8542
|
name: string;
|
|
@@ -9073,14 +9066,14 @@ export declare const MODELS: {
|
|
|
9073
9066
|
contextWindow: number;
|
|
9074
9067
|
maxTokens: number;
|
|
9075
9068
|
};
|
|
9076
|
-
readonly "
|
|
9069
|
+
readonly "nemotron-3-ultra-free": {
|
|
9077
9070
|
id: string;
|
|
9078
9071
|
name: string;
|
|
9079
|
-
api: "
|
|
9072
|
+
api: "openai-completions";
|
|
9080
9073
|
provider: string;
|
|
9081
9074
|
baseUrl: string;
|
|
9082
9075
|
reasoning: true;
|
|
9083
|
-
input:
|
|
9076
|
+
input: "text"[];
|
|
9084
9077
|
cost: {
|
|
9085
9078
|
input: number;
|
|
9086
9079
|
output: number;
|
|
@@ -9090,7 +9083,7 @@ export declare const MODELS: {
|
|
|
9090
9083
|
contextWindow: number;
|
|
9091
9084
|
maxTokens: number;
|
|
9092
9085
|
};
|
|
9093
|
-
readonly "
|
|
9086
|
+
readonly "north-mini-code-free": {
|
|
9094
9087
|
id: string;
|
|
9095
9088
|
name: string;
|
|
9096
9089
|
api: "openai-completions";
|
|
@@ -9544,6 +9537,26 @@ export declare const MODELS: {
|
|
|
9544
9537
|
contextWindow: number;
|
|
9545
9538
|
maxTokens: number;
|
|
9546
9539
|
};
|
|
9540
|
+
readonly "anthropic/claude-fable-5": {
|
|
9541
|
+
id: string;
|
|
9542
|
+
name: string;
|
|
9543
|
+
api: "openai-completions";
|
|
9544
|
+
provider: string;
|
|
9545
|
+
baseUrl: string;
|
|
9546
|
+
reasoning: true;
|
|
9547
|
+
thinkingLevelMap: {
|
|
9548
|
+
xhigh: string;
|
|
9549
|
+
};
|
|
9550
|
+
input: ("text" | "image")[];
|
|
9551
|
+
cost: {
|
|
9552
|
+
input: number;
|
|
9553
|
+
output: number;
|
|
9554
|
+
cacheRead: number;
|
|
9555
|
+
cacheWrite: number;
|
|
9556
|
+
};
|
|
9557
|
+
contextWindow: number;
|
|
9558
|
+
maxTokens: number;
|
|
9559
|
+
};
|
|
9547
9560
|
readonly "anthropic/claude-haiku-4.5": {
|
|
9548
9561
|
id: string;
|
|
9549
9562
|
name: string;
|
|
@@ -11151,7 +11164,7 @@ export declare const MODELS: {
|
|
|
11151
11164
|
contextWindow: number;
|
|
11152
11165
|
maxTokens: number;
|
|
11153
11166
|
};
|
|
11154
|
-
readonly "
|
|
11167
|
+
readonly "nex-agi/nex-n2-pro:free": {
|
|
11155
11168
|
id: string;
|
|
11156
11169
|
name: string;
|
|
11157
11170
|
api: "openai-completions";
|
|
@@ -11168,23 +11181,6 @@ export declare const MODELS: {
|
|
|
11168
11181
|
contextWindow: number;
|
|
11169
11182
|
maxTokens: number;
|
|
11170
11183
|
};
|
|
11171
|
-
readonly "nex-agi/deepseek-v3.1-nex-n1": {
|
|
11172
|
-
id: string;
|
|
11173
|
-
name: string;
|
|
11174
|
-
api: "openai-completions";
|
|
11175
|
-
provider: string;
|
|
11176
|
-
baseUrl: string;
|
|
11177
|
-
reasoning: false;
|
|
11178
|
-
input: "text"[];
|
|
11179
|
-
cost: {
|
|
11180
|
-
input: number;
|
|
11181
|
-
output: number;
|
|
11182
|
-
cacheRead: number;
|
|
11183
|
-
cacheWrite: number;
|
|
11184
|
-
};
|
|
11185
|
-
contextWindow: number;
|
|
11186
|
-
maxTokens: number;
|
|
11187
|
-
};
|
|
11188
11184
|
readonly "nvidia/llama-3.3-nemotron-super-49b-v1.5": {
|
|
11189
11185
|
id: string;
|
|
11190
11186
|
name: string;
|
|
@@ -11338,23 +11334,6 @@ export declare const MODELS: {
|
|
|
11338
11334
|
contextWindow: number;
|
|
11339
11335
|
maxTokens: number;
|
|
11340
11336
|
};
|
|
11341
|
-
readonly "nvidia/nemotron-nano-9b-v2": {
|
|
11342
|
-
id: string;
|
|
11343
|
-
name: string;
|
|
11344
|
-
api: "openai-completions";
|
|
11345
|
-
provider: string;
|
|
11346
|
-
baseUrl: string;
|
|
11347
|
-
reasoning: true;
|
|
11348
|
-
input: "text"[];
|
|
11349
|
-
cost: {
|
|
11350
|
-
input: number;
|
|
11351
|
-
output: number;
|
|
11352
|
-
cacheRead: number;
|
|
11353
|
-
cacheWrite: number;
|
|
11354
|
-
};
|
|
11355
|
-
contextWindow: number;
|
|
11356
|
-
maxTokens: number;
|
|
11357
|
-
};
|
|
11358
11337
|
readonly "nvidia/nemotron-nano-9b-v2:free": {
|
|
11359
11338
|
id: string;
|
|
11360
11339
|
name: string;
|
|
@@ -13465,23 +13444,6 @@ export declare const MODELS: {
|
|
|
13465
13444
|
contextWindow: number;
|
|
13466
13445
|
maxTokens: number;
|
|
13467
13446
|
};
|
|
13468
|
-
readonly "z-ai/glm-4-32b": {
|
|
13469
|
-
id: string;
|
|
13470
|
-
name: string;
|
|
13471
|
-
api: "openai-completions";
|
|
13472
|
-
provider: string;
|
|
13473
|
-
baseUrl: string;
|
|
13474
|
-
reasoning: false;
|
|
13475
|
-
input: "text"[];
|
|
13476
|
-
cost: {
|
|
13477
|
-
input: number;
|
|
13478
|
-
output: number;
|
|
13479
|
-
cacheRead: number;
|
|
13480
|
-
cacheWrite: number;
|
|
13481
|
-
};
|
|
13482
|
-
contextWindow: number;
|
|
13483
|
-
maxTokens: number;
|
|
13484
|
-
};
|
|
13485
13447
|
readonly "z-ai/glm-4.5": {
|
|
13486
13448
|
id: string;
|
|
13487
13449
|
name: string;
|
|
@@ -13516,23 +13478,6 @@ export declare const MODELS: {
|
|
|
13516
13478
|
contextWindow: number;
|
|
13517
13479
|
maxTokens: number;
|
|
13518
13480
|
};
|
|
13519
|
-
readonly "z-ai/glm-4.5-air:free": {
|
|
13520
|
-
id: string;
|
|
13521
|
-
name: string;
|
|
13522
|
-
api: "openai-completions";
|
|
13523
|
-
provider: string;
|
|
13524
|
-
baseUrl: string;
|
|
13525
|
-
reasoning: true;
|
|
13526
|
-
input: "text"[];
|
|
13527
|
-
cost: {
|
|
13528
|
-
input: number;
|
|
13529
|
-
output: number;
|
|
13530
|
-
cacheRead: number;
|
|
13531
|
-
cacheWrite: number;
|
|
13532
|
-
};
|
|
13533
|
-
contextWindow: number;
|
|
13534
|
-
maxTokens: number;
|
|
13535
|
-
};
|
|
13536
13481
|
readonly "z-ai/glm-4.5v": {
|
|
13537
13482
|
id: string;
|
|
13538
13483
|
name: string;
|
|
@@ -13669,7 +13614,7 @@ export declare const MODELS: {
|
|
|
13669
13614
|
contextWindow: number;
|
|
13670
13615
|
maxTokens: number;
|
|
13671
13616
|
};
|
|
13672
|
-
readonly "
|
|
13617
|
+
readonly "~anthropic/claude-fable-latest": {
|
|
13673
13618
|
id: string;
|
|
13674
13619
|
name: string;
|
|
13675
13620
|
api: "openai-completions";
|
|
@@ -13824,37 +13769,6 @@ export declare const MODELS: {
|
|
|
13824
13769
|
};
|
|
13825
13770
|
};
|
|
13826
13771
|
readonly together: {
|
|
13827
|
-
readonly "MiniMaxAI/MiniMax-M2.5": {
|
|
13828
|
-
id: string;
|
|
13829
|
-
name: string;
|
|
13830
|
-
api: "openai-completions";
|
|
13831
|
-
provider: string;
|
|
13832
|
-
baseUrl: string;
|
|
13833
|
-
compat: {
|
|
13834
|
-
supportsStore: false;
|
|
13835
|
-
supportsDeveloperRole: false;
|
|
13836
|
-
supportsReasoningEffort: false;
|
|
13837
|
-
maxTokensField: "max_tokens";
|
|
13838
|
-
supportsStrictMode: false;
|
|
13839
|
-
supportsLongCacheRetention: false;
|
|
13840
|
-
};
|
|
13841
|
-
reasoning: true;
|
|
13842
|
-
thinkingLevelMap: {
|
|
13843
|
-
off: null;
|
|
13844
|
-
minimal: null;
|
|
13845
|
-
low: null;
|
|
13846
|
-
medium: null;
|
|
13847
|
-
};
|
|
13848
|
-
input: "text"[];
|
|
13849
|
-
cost: {
|
|
13850
|
-
input: number;
|
|
13851
|
-
output: number;
|
|
13852
|
-
cacheRead: number;
|
|
13853
|
-
cacheWrite: number;
|
|
13854
|
-
};
|
|
13855
|
-
contextWindow: number;
|
|
13856
|
-
maxTokens: number;
|
|
13857
|
-
};
|
|
13858
13772
|
readonly "MiniMaxAI/MiniMax-M2.7": {
|
|
13859
13773
|
id: string;
|
|
13860
13774
|
name: string;
|
|
@@ -13871,67 +13785,11 @@ export declare const MODELS: {
|
|
|
13871
13785
|
};
|
|
13872
13786
|
reasoning: true;
|
|
13873
13787
|
thinkingLevelMap: {
|
|
13874
|
-
off: null;
|
|
13875
|
-
minimal: null;
|
|
13876
|
-
low: null;
|
|
13877
|
-
medium: null;
|
|
13878
|
-
};
|
|
13879
|
-
input: "text"[];
|
|
13880
|
-
cost: {
|
|
13881
|
-
input: number;
|
|
13882
|
-
output: number;
|
|
13883
|
-
cacheRead: number;
|
|
13884
|
-
cacheWrite: number;
|
|
13885
|
-
};
|
|
13886
|
-
contextWindow: number;
|
|
13887
|
-
maxTokens: number;
|
|
13888
|
-
};
|
|
13889
|
-
readonly "Qwen/Qwen3-235B-A22B-Instruct-2507-tput": {
|
|
13890
|
-
id: string;
|
|
13891
|
-
name: string;
|
|
13892
|
-
api: "openai-completions";
|
|
13893
|
-
provider: string;
|
|
13894
|
-
baseUrl: string;
|
|
13895
|
-
compat: {
|
|
13896
|
-
supportsStore: false;
|
|
13897
|
-
supportsDeveloperRole: false;
|
|
13898
|
-
supportsReasoningEffort: false;
|
|
13899
|
-
maxTokensField: "max_tokens";
|
|
13900
|
-
supportsStrictMode: false;
|
|
13901
|
-
supportsLongCacheRetention: false;
|
|
13902
|
-
thinkingFormat: "together";
|
|
13903
|
-
};
|
|
13904
|
-
reasoning: true;
|
|
13905
|
-
thinkingLevelMap: {
|
|
13906
|
-
minimal: null;
|
|
13907
|
-
low: null;
|
|
13908
|
-
medium: null;
|
|
13909
|
-
};
|
|
13910
|
-
input: "text"[];
|
|
13911
|
-
cost: {
|
|
13912
|
-
input: number;
|
|
13913
|
-
output: number;
|
|
13914
|
-
cacheRead: number;
|
|
13915
|
-
cacheWrite: number;
|
|
13916
|
-
};
|
|
13917
|
-
contextWindow: number;
|
|
13918
|
-
maxTokens: number;
|
|
13919
|
-
};
|
|
13920
|
-
readonly "Qwen/Qwen3-Coder-480B-A35B-Instruct-FP8": {
|
|
13921
|
-
id: string;
|
|
13922
|
-
name: string;
|
|
13923
|
-
api: "openai-completions";
|
|
13924
|
-
provider: string;
|
|
13925
|
-
baseUrl: string;
|
|
13926
|
-
compat: {
|
|
13927
|
-
supportsStore: false;
|
|
13928
|
-
supportsDeveloperRole: false;
|
|
13929
|
-
supportsReasoningEffort: false;
|
|
13930
|
-
maxTokensField: "max_tokens";
|
|
13931
|
-
supportsStrictMode: false;
|
|
13932
|
-
supportsLongCacheRetention: false;
|
|
13788
|
+
off: null;
|
|
13789
|
+
minimal: null;
|
|
13790
|
+
low: null;
|
|
13791
|
+
medium: null;
|
|
13933
13792
|
};
|
|
13934
|
-
reasoning: false;
|
|
13935
13793
|
input: "text"[];
|
|
13936
13794
|
cost: {
|
|
13937
13795
|
input: number;
|
|
@@ -13942,7 +13800,7 @@ export declare const MODELS: {
|
|
|
13942
13800
|
contextWindow: number;
|
|
13943
13801
|
maxTokens: number;
|
|
13944
13802
|
};
|
|
13945
|
-
readonly "Qwen/
|
|
13803
|
+
readonly "Qwen/Qwen2.5-7B-Instruct-Turbo": {
|
|
13946
13804
|
id: string;
|
|
13947
13805
|
name: string;
|
|
13948
13806
|
api: "openai-completions";
|
|
@@ -13955,14 +13813,8 @@ export declare const MODELS: {
|
|
|
13955
13813
|
maxTokensField: "max_tokens";
|
|
13956
13814
|
supportsStrictMode: false;
|
|
13957
13815
|
supportsLongCacheRetention: false;
|
|
13958
|
-
thinkingFormat: "together";
|
|
13959
|
-
};
|
|
13960
|
-
reasoning: true;
|
|
13961
|
-
thinkingLevelMap: {
|
|
13962
|
-
minimal: null;
|
|
13963
|
-
low: null;
|
|
13964
|
-
medium: null;
|
|
13965
13816
|
};
|
|
13817
|
+
reasoning: false;
|
|
13966
13818
|
input: "text"[];
|
|
13967
13819
|
cost: {
|
|
13968
13820
|
input: number;
|
|
@@ -13973,7 +13825,7 @@ export declare const MODELS: {
|
|
|
13973
13825
|
contextWindow: number;
|
|
13974
13826
|
maxTokens: number;
|
|
13975
13827
|
};
|
|
13976
|
-
readonly "Qwen/Qwen3
|
|
13828
|
+
readonly "Qwen/Qwen3-235B-A22B-Instruct-2507-tput": {
|
|
13977
13829
|
id: string;
|
|
13978
13830
|
name: string;
|
|
13979
13831
|
api: "openai-completions";
|
|
@@ -13986,15 +13838,9 @@ export declare const MODELS: {
|
|
|
13986
13838
|
maxTokensField: "max_tokens";
|
|
13987
13839
|
supportsStrictMode: false;
|
|
13988
13840
|
supportsLongCacheRetention: false;
|
|
13989
|
-
thinkingFormat: "together";
|
|
13990
13841
|
};
|
|
13991
|
-
reasoning:
|
|
13992
|
-
|
|
13993
|
-
minimal: null;
|
|
13994
|
-
low: null;
|
|
13995
|
-
medium: null;
|
|
13996
|
-
};
|
|
13997
|
-
input: ("text" | "image")[];
|
|
13842
|
+
reasoning: false;
|
|
13843
|
+
input: "text"[];
|
|
13998
13844
|
cost: {
|
|
13999
13845
|
input: number;
|
|
14000
13846
|
output: number;
|
|
@@ -14004,7 +13850,7 @@ export declare const MODELS: {
|
|
|
14004
13850
|
contextWindow: number;
|
|
14005
13851
|
maxTokens: number;
|
|
14006
13852
|
};
|
|
14007
|
-
readonly "Qwen/Qwen3.
|
|
13853
|
+
readonly "Qwen/Qwen3.5-397B-A17B": {
|
|
14008
13854
|
id: string;
|
|
14009
13855
|
name: string;
|
|
14010
13856
|
api: "openai-completions";
|
|
@@ -14025,7 +13871,7 @@ export declare const MODELS: {
|
|
|
14025
13871
|
low: null;
|
|
14026
13872
|
medium: null;
|
|
14027
13873
|
};
|
|
14028
|
-
input: "text"[];
|
|
13874
|
+
input: ("text" | "image")[];
|
|
14029
13875
|
cost: {
|
|
14030
13876
|
input: number;
|
|
14031
13877
|
output: number;
|
|
@@ -14035,7 +13881,7 @@ export declare const MODELS: {
|
|
|
14035
13881
|
contextWindow: number;
|
|
14036
13882
|
maxTokens: number;
|
|
14037
13883
|
};
|
|
14038
|
-
readonly "Qwen/Qwen3.
|
|
13884
|
+
readonly "Qwen/Qwen3.5-9B": {
|
|
14039
13885
|
id: string;
|
|
14040
13886
|
name: string;
|
|
14041
13887
|
api: "openai-completions";
|
|
@@ -14056,7 +13902,7 @@ export declare const MODELS: {
|
|
|
14056
13902
|
low: null;
|
|
14057
13903
|
medium: null;
|
|
14058
13904
|
};
|
|
14059
|
-
input: "text"[];
|
|
13905
|
+
input: ("text" | "image")[];
|
|
14060
13906
|
cost: {
|
|
14061
13907
|
input: number;
|
|
14062
13908
|
output: number;
|
|
@@ -14066,7 +13912,7 @@ export declare const MODELS: {
|
|
|
14066
13912
|
contextWindow: number;
|
|
14067
13913
|
maxTokens: number;
|
|
14068
13914
|
};
|
|
14069
|
-
readonly "
|
|
13915
|
+
readonly "Qwen/Qwen3.6-Plus": {
|
|
14070
13916
|
id: string;
|
|
14071
13917
|
name: string;
|
|
14072
13918
|
api: "openai-completions";
|
|
@@ -14097,7 +13943,7 @@ export declare const MODELS: {
|
|
|
14097
13943
|
contextWindow: number;
|
|
14098
13944
|
maxTokens: number;
|
|
14099
13945
|
};
|
|
14100
|
-
readonly "
|
|
13946
|
+
readonly "Qwen/Qwen3.7-Max": {
|
|
14101
13947
|
id: string;
|
|
14102
13948
|
name: string;
|
|
14103
13949
|
api: "openai-completions";
|
|
@@ -14110,14 +13956,8 @@ export declare const MODELS: {
|
|
|
14110
13956
|
maxTokensField: "max_tokens";
|
|
14111
13957
|
supportsStrictMode: false;
|
|
14112
13958
|
supportsLongCacheRetention: false;
|
|
14113
|
-
thinkingFormat: "together";
|
|
14114
|
-
};
|
|
14115
|
-
reasoning: true;
|
|
14116
|
-
thinkingLevelMap: {
|
|
14117
|
-
minimal: null;
|
|
14118
|
-
low: null;
|
|
14119
|
-
medium: null;
|
|
14120
13959
|
};
|
|
13960
|
+
reasoning: false;
|
|
14121
13961
|
input: "text"[];
|
|
14122
13962
|
cost: {
|
|
14123
13963
|
input: number;
|
|
@@ -14242,7 +14082,7 @@ export declare const MODELS: {
|
|
|
14242
14082
|
contextWindow: number;
|
|
14243
14083
|
maxTokens: number;
|
|
14244
14084
|
};
|
|
14245
|
-
readonly "moonshotai/Kimi-K2.
|
|
14085
|
+
readonly "moonshotai/Kimi-K2.6": {
|
|
14246
14086
|
id: string;
|
|
14247
14087
|
name: string;
|
|
14248
14088
|
api: "openai-completions";
|
|
@@ -14273,7 +14113,7 @@ export declare const MODELS: {
|
|
|
14273
14113
|
contextWindow: number;
|
|
14274
14114
|
maxTokens: number;
|
|
14275
14115
|
};
|
|
14276
|
-
readonly "
|
|
14116
|
+
readonly "nvidia/nemotron-3-ultra-550b-a55b": {
|
|
14277
14117
|
id: string;
|
|
14278
14118
|
name: string;
|
|
14279
14119
|
api: "openai-completions";
|
|
@@ -14294,7 +14134,7 @@ export declare const MODELS: {
|
|
|
14294
14134
|
low: null;
|
|
14295
14135
|
medium: null;
|
|
14296
14136
|
};
|
|
14297
|
-
input:
|
|
14137
|
+
input: "text"[];
|
|
14298
14138
|
cost: {
|
|
14299
14139
|
input: number;
|
|
14300
14140
|
output: number;
|
|
@@ -14304,7 +14144,7 @@ export declare const MODELS: {
|
|
|
14304
14144
|
contextWindow: number;
|
|
14305
14145
|
maxTokens: number;
|
|
14306
14146
|
};
|
|
14307
|
-
readonly "
|
|
14147
|
+
readonly "openai/gpt-oss-120b": {
|
|
14308
14148
|
id: string;
|
|
14309
14149
|
name: string;
|
|
14310
14150
|
api: "openai-completions";
|
|
@@ -14313,17 +14153,16 @@ export declare const MODELS: {
|
|
|
14313
14153
|
compat: {
|
|
14314
14154
|
supportsStore: false;
|
|
14315
14155
|
supportsDeveloperRole: false;
|
|
14316
|
-
supportsReasoningEffort:
|
|
14156
|
+
supportsReasoningEffort: true;
|
|
14317
14157
|
maxTokensField: "max_tokens";
|
|
14318
14158
|
supportsStrictMode: false;
|
|
14319
14159
|
supportsLongCacheRetention: false;
|
|
14320
|
-
thinkingFormat: "
|
|
14160
|
+
thinkingFormat: "openai";
|
|
14321
14161
|
};
|
|
14322
14162
|
reasoning: true;
|
|
14323
14163
|
thinkingLevelMap: {
|
|
14164
|
+
off: null;
|
|
14324
14165
|
minimal: null;
|
|
14325
|
-
low: null;
|
|
14326
|
-
medium: null;
|
|
14327
14166
|
};
|
|
14328
14167
|
input: "text"[];
|
|
14329
14168
|
cost: {
|
|
@@ -14335,7 +14174,7 @@ export declare const MODELS: {
|
|
|
14335
14174
|
contextWindow: number;
|
|
14336
14175
|
maxTokens: number;
|
|
14337
14176
|
};
|
|
14338
|
-
readonly "openai/gpt-oss-
|
|
14177
|
+
readonly "openai/gpt-oss-20b": {
|
|
14339
14178
|
id: string;
|
|
14340
14179
|
name: string;
|
|
14341
14180
|
api: "openai-completions";
|
|
@@ -14365,6 +14204,37 @@ export declare const MODELS: {
|
|
|
14365
14204
|
contextWindow: number;
|
|
14366
14205
|
maxTokens: number;
|
|
14367
14206
|
};
|
|
14207
|
+
readonly "zai-org/GLM-5": {
|
|
14208
|
+
id: string;
|
|
14209
|
+
name: string;
|
|
14210
|
+
api: "openai-completions";
|
|
14211
|
+
provider: string;
|
|
14212
|
+
baseUrl: string;
|
|
14213
|
+
compat: {
|
|
14214
|
+
supportsStore: false;
|
|
14215
|
+
supportsDeveloperRole: false;
|
|
14216
|
+
supportsReasoningEffort: false;
|
|
14217
|
+
maxTokensField: "max_tokens";
|
|
14218
|
+
supportsStrictMode: false;
|
|
14219
|
+
supportsLongCacheRetention: false;
|
|
14220
|
+
thinkingFormat: "together";
|
|
14221
|
+
};
|
|
14222
|
+
reasoning: true;
|
|
14223
|
+
thinkingLevelMap: {
|
|
14224
|
+
minimal: null;
|
|
14225
|
+
low: null;
|
|
14226
|
+
medium: null;
|
|
14227
|
+
};
|
|
14228
|
+
input: "text"[];
|
|
14229
|
+
cost: {
|
|
14230
|
+
input: number;
|
|
14231
|
+
output: number;
|
|
14232
|
+
cacheRead: number;
|
|
14233
|
+
cacheWrite: number;
|
|
14234
|
+
};
|
|
14235
|
+
contextWindow: number;
|
|
14236
|
+
maxTokens: number;
|
|
14237
|
+
};
|
|
14368
14238
|
readonly "zai-org/GLM-5.1": {
|
|
14369
14239
|
id: string;
|
|
14370
14240
|
name: string;
|
|
@@ -14806,6 +14676,29 @@ export declare const MODELS: {
|
|
|
14806
14676
|
contextWindow: number;
|
|
14807
14677
|
maxTokens: number;
|
|
14808
14678
|
};
|
|
14679
|
+
readonly "anthropic/claude-fable-5": {
|
|
14680
|
+
id: string;
|
|
14681
|
+
name: string;
|
|
14682
|
+
api: "anthropic-messages";
|
|
14683
|
+
provider: string;
|
|
14684
|
+
baseUrl: string;
|
|
14685
|
+
compat: {
|
|
14686
|
+
forceAdaptiveThinking: true;
|
|
14687
|
+
};
|
|
14688
|
+
reasoning: true;
|
|
14689
|
+
thinkingLevelMap: {
|
|
14690
|
+
xhigh: string;
|
|
14691
|
+
};
|
|
14692
|
+
input: ("text" | "image")[];
|
|
14693
|
+
cost: {
|
|
14694
|
+
input: number;
|
|
14695
|
+
output: number;
|
|
14696
|
+
cacheRead: number;
|
|
14697
|
+
cacheWrite: number;
|
|
14698
|
+
};
|
|
14699
|
+
contextWindow: number;
|
|
14700
|
+
maxTokens: number;
|
|
14701
|
+
};
|
|
14809
14702
|
readonly "anthropic/claude-haiku-4.5": {
|
|
14810
14703
|
id: string;
|
|
14811
14704
|
name: string;
|
|
@@ -15201,40 +15094,6 @@ export declare const MODELS: {
|
|
|
15201
15094
|
contextWindow: number;
|
|
15202
15095
|
maxTokens: number;
|
|
15203
15096
|
};
|
|
15204
|
-
readonly "google/gemini-2.0-flash": {
|
|
15205
|
-
id: string;
|
|
15206
|
-
name: string;
|
|
15207
|
-
api: "anthropic-messages";
|
|
15208
|
-
provider: string;
|
|
15209
|
-
baseUrl: string;
|
|
15210
|
-
reasoning: false;
|
|
15211
|
-
input: ("text" | "image")[];
|
|
15212
|
-
cost: {
|
|
15213
|
-
input: number;
|
|
15214
|
-
output: number;
|
|
15215
|
-
cacheRead: number;
|
|
15216
|
-
cacheWrite: number;
|
|
15217
|
-
};
|
|
15218
|
-
contextWindow: number;
|
|
15219
|
-
maxTokens: number;
|
|
15220
|
-
};
|
|
15221
|
-
readonly "google/gemini-2.0-flash-lite": {
|
|
15222
|
-
id: string;
|
|
15223
|
-
name: string;
|
|
15224
|
-
api: "anthropic-messages";
|
|
15225
|
-
provider: string;
|
|
15226
|
-
baseUrl: string;
|
|
15227
|
-
reasoning: false;
|
|
15228
|
-
input: ("text" | "image")[];
|
|
15229
|
-
cost: {
|
|
15230
|
-
input: number;
|
|
15231
|
-
output: number;
|
|
15232
|
-
cacheRead: number;
|
|
15233
|
-
cacheWrite: number;
|
|
15234
|
-
};
|
|
15235
|
-
contextWindow: number;
|
|
15236
|
-
maxTokens: number;
|
|
15237
|
-
};
|
|
15238
15097
|
readonly "google/gemini-2.5-flash": {
|
|
15239
15098
|
id: string;
|
|
15240
15099
|
name: string;
|
|
@@ -15983,40 +15842,6 @@ export declare const MODELS: {
|
|
|
15983
15842
|
contextWindow: number;
|
|
15984
15843
|
maxTokens: number;
|
|
15985
15844
|
};
|
|
15986
|
-
readonly "moonshotai/kimi-k2-thinking-turbo": {
|
|
15987
|
-
id: string;
|
|
15988
|
-
name: string;
|
|
15989
|
-
api: "anthropic-messages";
|
|
15990
|
-
provider: string;
|
|
15991
|
-
baseUrl: string;
|
|
15992
|
-
reasoning: true;
|
|
15993
|
-
input: "text"[];
|
|
15994
|
-
cost: {
|
|
15995
|
-
input: number;
|
|
15996
|
-
output: number;
|
|
15997
|
-
cacheRead: number;
|
|
15998
|
-
cacheWrite: number;
|
|
15999
|
-
};
|
|
16000
|
-
contextWindow: number;
|
|
16001
|
-
maxTokens: number;
|
|
16002
|
-
};
|
|
16003
|
-
readonly "moonshotai/kimi-k2-turbo": {
|
|
16004
|
-
id: string;
|
|
16005
|
-
name: string;
|
|
16006
|
-
api: "anthropic-messages";
|
|
16007
|
-
provider: string;
|
|
16008
|
-
baseUrl: string;
|
|
16009
|
-
reasoning: false;
|
|
16010
|
-
input: "text"[];
|
|
16011
|
-
cost: {
|
|
16012
|
-
input: number;
|
|
16013
|
-
output: number;
|
|
16014
|
-
cacheRead: number;
|
|
16015
|
-
cacheWrite: number;
|
|
16016
|
-
};
|
|
16017
|
-
contextWindow: number;
|
|
16018
|
-
maxTokens: number;
|
|
16019
|
-
};
|
|
16020
15845
|
readonly "moonshotai/kimi-k2.5": {
|
|
16021
15846
|
id: string;
|
|
16022
15847
|
name: string;
|
|
@@ -17556,6 +17381,27 @@ export declare const MODELS: {
|
|
|
17556
17381
|
contextWindow: number;
|
|
17557
17382
|
maxTokens: number;
|
|
17558
17383
|
};
|
|
17384
|
+
readonly "mimo-v2.5-pro-ultraspeed": {
|
|
17385
|
+
id: string;
|
|
17386
|
+
name: string;
|
|
17387
|
+
api: "openai-completions";
|
|
17388
|
+
provider: string;
|
|
17389
|
+
baseUrl: string;
|
|
17390
|
+
compat: {
|
|
17391
|
+
requiresReasoningContentOnAssistantMessages: true;
|
|
17392
|
+
thinkingFormat: "deepseek";
|
|
17393
|
+
};
|
|
17394
|
+
reasoning: true;
|
|
17395
|
+
input: "text"[];
|
|
17396
|
+
cost: {
|
|
17397
|
+
input: number;
|
|
17398
|
+
output: number;
|
|
17399
|
+
cacheRead: number;
|
|
17400
|
+
cacheWrite: number;
|
|
17401
|
+
};
|
|
17402
|
+
contextWindow: number;
|
|
17403
|
+
maxTokens: number;
|
|
17404
|
+
};
|
|
17559
17405
|
};
|
|
17560
17406
|
readonly "xiaomi-token-plan-ams": {
|
|
17561
17407
|
readonly "mimo-v2-flash": {
|
|
@@ -17663,6 +17509,27 @@ export declare const MODELS: {
|
|
|
17663
17509
|
contextWindow: number;
|
|
17664
17510
|
maxTokens: number;
|
|
17665
17511
|
};
|
|
17512
|
+
readonly "mimo-v2.5-pro-ultraspeed": {
|
|
17513
|
+
id: string;
|
|
17514
|
+
name: string;
|
|
17515
|
+
api: "openai-completions";
|
|
17516
|
+
provider: string;
|
|
17517
|
+
baseUrl: string;
|
|
17518
|
+
compat: {
|
|
17519
|
+
requiresReasoningContentOnAssistantMessages: true;
|
|
17520
|
+
thinkingFormat: "deepseek";
|
|
17521
|
+
};
|
|
17522
|
+
reasoning: true;
|
|
17523
|
+
input: "text"[];
|
|
17524
|
+
cost: {
|
|
17525
|
+
input: number;
|
|
17526
|
+
output: number;
|
|
17527
|
+
cacheRead: number;
|
|
17528
|
+
cacheWrite: number;
|
|
17529
|
+
};
|
|
17530
|
+
contextWindow: number;
|
|
17531
|
+
maxTokens: number;
|
|
17532
|
+
};
|
|
17666
17533
|
};
|
|
17667
17534
|
readonly "xiaomi-token-plan-cn": {
|
|
17668
17535
|
readonly "mimo-v2-flash": {
|
|
@@ -17770,6 +17637,27 @@ export declare const MODELS: {
|
|
|
17770
17637
|
contextWindow: number;
|
|
17771
17638
|
maxTokens: number;
|
|
17772
17639
|
};
|
|
17640
|
+
readonly "mimo-v2.5-pro-ultraspeed": {
|
|
17641
|
+
id: string;
|
|
17642
|
+
name: string;
|
|
17643
|
+
api: "openai-completions";
|
|
17644
|
+
provider: string;
|
|
17645
|
+
baseUrl: string;
|
|
17646
|
+
compat: {
|
|
17647
|
+
requiresReasoningContentOnAssistantMessages: true;
|
|
17648
|
+
thinkingFormat: "deepseek";
|
|
17649
|
+
};
|
|
17650
|
+
reasoning: true;
|
|
17651
|
+
input: "text"[];
|
|
17652
|
+
cost: {
|
|
17653
|
+
input: number;
|
|
17654
|
+
output: number;
|
|
17655
|
+
cacheRead: number;
|
|
17656
|
+
cacheWrite: number;
|
|
17657
|
+
};
|
|
17658
|
+
contextWindow: number;
|
|
17659
|
+
maxTokens: number;
|
|
17660
|
+
};
|
|
17773
17661
|
};
|
|
17774
17662
|
readonly "xiaomi-token-plan-sgp": {
|
|
17775
17663
|
readonly "mimo-v2-flash": {
|
|
@@ -17877,6 +17765,27 @@ export declare const MODELS: {
|
|
|
17877
17765
|
contextWindow: number;
|
|
17878
17766
|
maxTokens: number;
|
|
17879
17767
|
};
|
|
17768
|
+
readonly "mimo-v2.5-pro-ultraspeed": {
|
|
17769
|
+
id: string;
|
|
17770
|
+
name: string;
|
|
17771
|
+
api: "openai-completions";
|
|
17772
|
+
provider: string;
|
|
17773
|
+
baseUrl: string;
|
|
17774
|
+
compat: {
|
|
17775
|
+
requiresReasoningContentOnAssistantMessages: true;
|
|
17776
|
+
thinkingFormat: "deepseek";
|
|
17777
|
+
};
|
|
17778
|
+
reasoning: true;
|
|
17779
|
+
input: "text"[];
|
|
17780
|
+
cost: {
|
|
17781
|
+
input: number;
|
|
17782
|
+
output: number;
|
|
17783
|
+
cacheRead: number;
|
|
17784
|
+
cacheWrite: number;
|
|
17785
|
+
};
|
|
17786
|
+
contextWindow: number;
|
|
17787
|
+
maxTokens: number;
|
|
17788
|
+
};
|
|
17880
17789
|
};
|
|
17881
17790
|
readonly zai: {
|
|
17882
17791
|
readonly "glm-4.5-air": {
|