@entelligentsia/forgecli 1.0.25 → 1.0.40
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/CHANGELOG.md +341 -0
- package/README.md +2 -0
- package/dist/CHANGELOG-forge-plugin.md +264 -0
- package/dist/CHANGELOG-pi.md +143 -0
- package/dist/bin/argv.d.ts +2 -2
- package/dist/bin/argv.js +37 -0
- package/dist/bin/argv.js.map +1 -1
- package/dist/bin/forge.js +30 -16
- package/dist/bin/forge.js.map +1 -1
- package/dist/bin/init.d.ts +23 -0
- package/dist/bin/init.js +123 -0
- package/dist/bin/init.js.map +1 -0
- package/dist/bin/reset.d.ts +39 -0
- package/dist/bin/reset.js +101 -0
- package/dist/bin/reset.js.map +1 -0
- package/dist/bin/uninstall.d.ts +20 -0
- package/dist/bin/uninstall.js +141 -0
- package/dist/bin/uninstall.js.map +1 -0
- package/dist/extensions/forgecli/claude-bootstrap/bootstrap.d.ts +40 -0
- package/dist/extensions/forgecli/claude-bootstrap/bootstrap.js +384 -0
- package/dist/extensions/forgecli/claude-bootstrap/bootstrap.js.map +1 -0
- package/dist/extensions/forgecli/claude-bootstrap/settings-merge.d.ts +46 -0
- package/dist/extensions/forgecli/claude-bootstrap/settings-merge.js +245 -0
- package/dist/extensions/forgecli/claude-bootstrap/settings-merge.js.map +1 -0
- package/dist/extensions/forgecli/claude-bootstrap/uninstall.d.ts +23 -0
- package/dist/extensions/forgecli/claude-bootstrap/uninstall.js +235 -0
- package/dist/extensions/forgecli/claude-bootstrap/uninstall.js.map +1 -0
- package/dist/extensions/forgecli/commands/reset.d.ts +16 -0
- package/dist/extensions/forgecli/commands/reset.js +83 -0
- package/dist/extensions/forgecli/commands/reset.js.map +1 -0
- package/dist/extensions/forgecli/dashboard/component.js +10 -7
- package/dist/extensions/forgecli/dashboard/component.js.map +1 -1
- package/dist/extensions/forgecli/forge-commands.d.ts +7 -2
- package/dist/extensions/forgecli/forge-commands.js +19 -5
- package/dist/extensions/forgecli/forge-commands.js.map +1 -1
- package/dist/extensions/forgecli/forge-subagent.d.ts +4 -4
- package/dist/extensions/forgecli/hooks/forge-permissions.js +20 -6
- package/dist/extensions/forgecli/hooks/forge-permissions.js.map +1 -1
- package/dist/extensions/forgecli/index.js +6 -3
- package/dist/extensions/forgecli/index.js.map +1 -1
- package/dist/extensions/forgecli/lib/forge-root.d.ts +6 -0
- package/dist/extensions/forgecli/lib/forge-root.js +52 -0
- package/dist/extensions/forgecli/lib/forge-root.js.map +1 -1
- package/dist/extensions/forgecli/lib/payload-manifest.d.ts +62 -0
- package/dist/extensions/forgecli/lib/payload-manifest.js +151 -0
- package/dist/extensions/forgecli/lib/payload-manifest.js.map +1 -0
- package/dist/extensions/forgecli/orchestrators/advisory-render.d.ts +9 -0
- package/dist/extensions/forgecli/orchestrators/advisory-render.js +107 -0
- package/dist/extensions/forgecli/orchestrators/advisory-render.js.map +1 -0
- package/dist/extensions/forgecli/orchestrators/bug/bug-body.d.ts +1 -0
- package/dist/extensions/forgecli/orchestrators/bug/bug-body.js +65 -0
- package/dist/extensions/forgecli/orchestrators/bug/bug-body.js.map +1 -0
- package/dist/extensions/forgecli/orchestrators/bug/bug-id.d.ts +23 -0
- package/dist/extensions/forgecli/orchestrators/bug/bug-id.js +140 -0
- package/dist/extensions/forgecli/orchestrators/bug/bug-id.js.map +1 -0
- package/dist/extensions/forgecli/orchestrators/bug/bug-phase-dispatch.d.ts +54 -0
- package/dist/extensions/forgecli/orchestrators/bug/bug-phase-dispatch.js +349 -0
- package/dist/extensions/forgecli/orchestrators/bug/bug-phase-dispatch.js.map +1 -0
- package/dist/extensions/forgecli/orchestrators/bug/bug-phases.d.ts +11 -0
- package/dist/extensions/forgecli/orchestrators/bug/bug-phases.js +82 -0
- package/dist/extensions/forgecli/orchestrators/bug/bug-phases.js.map +1 -0
- package/dist/extensions/forgecli/orchestrators/bug/bug-state.d.ts +14 -0
- package/dist/extensions/forgecli/orchestrators/bug/bug-state.js +100 -0
- package/dist/extensions/forgecli/orchestrators/bug/bug-state.js.map +1 -0
- package/dist/extensions/forgecli/orchestrators/bug/bug-triage-routing.d.ts +72 -0
- package/dist/extensions/forgecli/orchestrators/bug/bug-triage-routing.js +204 -0
- package/dist/extensions/forgecli/orchestrators/bug/bug-triage-routing.js.map +1 -0
- package/dist/extensions/forgecli/orchestrators/bug/bug-verdict-loop.d.ts +38 -0
- package/dist/extensions/forgecli/orchestrators/bug/bug-verdict-loop.js +198 -0
- package/dist/extensions/forgecli/orchestrators/bug/bug-verdict-loop.js.map +1 -0
- package/dist/extensions/forgecli/orchestrators/bug/bug-verdict.d.ts +3 -0
- package/dist/extensions/forgecli/orchestrators/bug/bug-verdict.js +55 -0
- package/dist/extensions/forgecli/orchestrators/bug/bug-verdict.js.map +1 -0
- package/dist/extensions/forgecli/orchestrators/bug/run-bug-command.d.ts +7 -0
- package/dist/extensions/forgecli/orchestrators/bug/run-bug-command.js +293 -0
- package/dist/extensions/forgecli/orchestrators/bug/run-bug-command.js.map +1 -0
- package/dist/extensions/forgecli/orchestrators/bug/run-bug-pipeline.d.ts +2 -0
- package/dist/extensions/forgecli/orchestrators/bug/run-bug-pipeline.js +501 -0
- package/dist/extensions/forgecli/orchestrators/bug/run-bug-pipeline.js.map +1 -0
- package/dist/extensions/forgecli/orchestrators/bug/run-bug-types.d.ts +41 -0
- package/dist/extensions/forgecli/orchestrators/bug/run-bug-types.js +5 -0
- package/dist/extensions/forgecli/orchestrators/bug/run-bug-types.js.map +1 -0
- package/dist/extensions/forgecli/orchestrators/common/orchestrator-entry.d.ts +43 -0
- package/dist/extensions/forgecli/orchestrators/common/orchestrator-entry.js +85 -0
- package/dist/extensions/forgecli/orchestrators/common/orchestrator-entry.js.map +1 -0
- package/dist/extensions/forgecli/orchestrators/common/orchestrator-misc.d.ts +8 -0
- package/dist/extensions/forgecli/orchestrators/common/orchestrator-misc.js +37 -0
- package/dist/extensions/forgecli/orchestrators/common/orchestrator-misc.js.map +1 -0
- package/dist/extensions/forgecli/orchestrators/common/orchestrator-notify.d.ts +28 -0
- package/dist/extensions/forgecli/orchestrators/common/orchestrator-notify.js +45 -0
- package/dist/extensions/forgecli/orchestrators/common/orchestrator-notify.js.map +1 -0
- package/dist/extensions/forgecli/orchestrators/common/orchestrator-transcript-session.d.ts +26 -0
- package/dist/extensions/forgecli/orchestrators/common/orchestrator-transcript-session.js +75 -0
- package/dist/extensions/forgecli/orchestrators/common/orchestrator-transcript-session.js.map +1 -0
- package/dist/extensions/forgecli/orchestrators/common/recovery-menu.d.ts +24 -0
- package/dist/extensions/forgecli/orchestrators/common/recovery-menu.js +58 -0
- package/dist/extensions/forgecli/orchestrators/common/recovery-menu.js.map +1 -0
- package/dist/extensions/forgecli/orchestrators/common/reset-pipeline.d.ts +53 -0
- package/dist/extensions/forgecli/orchestrators/common/reset-pipeline.js +131 -0
- package/dist/extensions/forgecli/orchestrators/common/reset-pipeline.js.map +1 -0
- package/dist/extensions/forgecli/orchestrators/common/summary-recovery.d.ts +24 -0
- package/dist/extensions/forgecli/orchestrators/common/summary-recovery.js +37 -0
- package/dist/extensions/forgecli/orchestrators/common/summary-recovery.js.map +1 -0
- package/dist/extensions/forgecli/orchestrators/fix-bug.d.ts +9 -93
- package/dist/extensions/forgecli/orchestrators/fix-bug.js +23 -1721
- package/dist/extensions/forgecli/orchestrators/fix-bug.js.map +1 -1
- package/dist/extensions/forgecli/orchestrators/halt-advisor.js +25 -3
- package/dist/extensions/forgecli/orchestrators/halt-advisor.js.map +1 -1
- package/dist/extensions/forgecli/orchestrators/run-sprint.d.ts +3 -12
- package/dist/extensions/forgecli/orchestrators/run-sprint.js +48 -270
- package/dist/extensions/forgecli/orchestrators/run-sprint.js.map +1 -1
- package/dist/extensions/forgecli/orchestrators/run-task.d.ts +10 -214
- package/dist/extensions/forgecli/orchestrators/run-task.js +31 -1481
- package/dist/extensions/forgecli/orchestrators/run-task.js.map +1 -1
- package/dist/extensions/forgecli/orchestrators/sprint/sprint-ceremony.d.ts +33 -0
- package/dist/extensions/forgecli/orchestrators/sprint/sprint-ceremony.js +135 -0
- package/dist/extensions/forgecli/orchestrators/sprint/sprint-ceremony.js.map +1 -0
- package/dist/extensions/forgecli/orchestrators/sprint/sprint-state.d.ts +18 -0
- package/dist/extensions/forgecli/orchestrators/sprint/sprint-state.js +55 -0
- package/dist/extensions/forgecli/orchestrators/sprint/sprint-state.js.map +1 -0
- package/dist/extensions/forgecli/orchestrators/task/run-task-command.d.ts +9 -0
- package/dist/extensions/forgecli/orchestrators/task/run-task-command.js +174 -0
- package/dist/extensions/forgecli/orchestrators/task/run-task-command.js.map +1 -0
- package/dist/extensions/forgecli/orchestrators/task/run-task-pipeline.d.ts +2 -0
- package/dist/extensions/forgecli/orchestrators/task/run-task-pipeline.js +494 -0
- package/dist/extensions/forgecli/orchestrators/task/run-task-pipeline.js.map +1 -0
- package/dist/extensions/forgecli/orchestrators/task/run-task-types.d.ts +62 -0
- package/dist/extensions/forgecli/orchestrators/task/run-task-types.js +5 -0
- package/dist/extensions/forgecli/orchestrators/task/run-task-types.js.map +1 -0
- package/dist/extensions/forgecli/orchestrators/task/task-body.d.ts +4 -0
- package/dist/extensions/forgecli/orchestrators/task/task-body.js +48 -0
- package/dist/extensions/forgecli/orchestrators/task/task-body.js.map +1 -0
- package/dist/extensions/forgecli/orchestrators/task/task-events.d.ts +63 -0
- package/dist/extensions/forgecli/orchestrators/task/task-events.js +185 -0
- package/dist/extensions/forgecli/orchestrators/task/task-events.js.map +1 -0
- package/dist/extensions/forgecli/orchestrators/task/task-gates.d.ts +34 -0
- package/dist/extensions/forgecli/orchestrators/task/task-gates.js +78 -0
- package/dist/extensions/forgecli/orchestrators/task/task-gates.js.map +1 -0
- package/dist/extensions/forgecli/orchestrators/task/task-phase-dispatch.d.ts +42 -0
- package/dist/extensions/forgecli/orchestrators/task/task-phase-dispatch.js +370 -0
- package/dist/extensions/forgecli/orchestrators/task/task-phase-dispatch.js.map +1 -0
- package/dist/extensions/forgecli/orchestrators/task/task-phases.d.ts +17 -0
- package/dist/extensions/forgecli/orchestrators/task/task-phases.js +48 -0
- package/dist/extensions/forgecli/orchestrators/task/task-phases.js.map +1 -0
- package/dist/extensions/forgecli/orchestrators/task/task-record.d.ts +9 -0
- package/dist/extensions/forgecli/orchestrators/task/task-record.js +58 -0
- package/dist/extensions/forgecli/orchestrators/task/task-record.js.map +1 -0
- package/dist/extensions/forgecli/orchestrators/task/task-state.d.ts +14 -0
- package/dist/extensions/forgecli/orchestrators/task/task-state.js +35 -0
- package/dist/extensions/forgecli/orchestrators/task/task-state.js.map +1 -0
- package/dist/extensions/forgecli/orchestrators/task/task-verdict-loop.d.ts +36 -0
- package/dist/extensions/forgecli/orchestrators/task/task-verdict-loop.js +187 -0
- package/dist/extensions/forgecli/orchestrators/task/task-verdict-loop.js.map +1 -0
- package/dist/extensions/forgecli/store/store-resolver.d.ts +15 -0
- package/dist/extensions/forgecli/store/store-resolver.js +118 -18
- package/dist/extensions/forgecli/store/store-resolver.js.map +1 -1
- package/dist/extensions/forgecli/update/forge-update-command.js +10 -7
- package/dist/extensions/forgecli/update/forge-update-command.js.map +1 -1
- package/dist/forge-payload/.base-pack/workflows/collator_agent.md +5 -6
- package/dist/forge-payload/.base-pack/workflows/migrate_structural.md +1 -1
- package/dist/forge-payload/.base-pack/workflows-js/wfl-init.js +449 -0
- package/dist/forge-payload/.claude-plugin/plugin.json +1 -1
- package/dist/forge-payload/.schemas/enum-catalog.json +2 -2
- package/dist/forge-payload/.schemas/migrations.json +170 -0
- package/dist/forge-payload/.schemas/payload-manifest.schema.json +100 -0
- package/dist/forge-payload/commands/add-pipeline.md +1 -1
- package/dist/forge-payload/commands/add-task.md +3 -3
- package/dist/forge-payload/{.base-pack/commands → commands}/approve.md +2 -2
- package/dist/forge-payload/commands/ask.md +1 -1
- package/dist/forge-payload/commands/check-agent.md +8 -24
- package/dist/forge-payload/{.base-pack/commands → commands}/collate.md +2 -2
- package/dist/forge-payload/{.base-pack/commands → commands}/commit.md +2 -2
- package/dist/forge-payload/commands/config.md +1 -1
- package/dist/forge-payload/commands/enhance.md +31 -5
- package/dist/forge-payload/{.base-pack/commands → commands}/fix-bug.md +2 -2
- package/dist/forge-payload/commands/health.md +1 -1
- package/dist/forge-payload/{.base-pack/commands → commands}/implement.md +2 -2
- package/dist/forge-payload/commands/init.md +186 -67
- package/dist/forge-payload/{.base-pack/commands → commands}/new-sprint.md +2 -2
- package/dist/forge-payload/{.base-pack/commands → commands}/plan-sprint.md +2 -2
- package/dist/forge-payload/{.base-pack/commands → commands}/plan.md +2 -2
- package/dist/forge-payload/commands/rebuild.md +3 -3
- package/dist/forge-payload/commands/remove.md +1 -1
- package/dist/forge-payload/commands/repair.md +1 -1
- package/dist/forge-payload/commands/report-bug.md +1 -1
- package/dist/forge-payload/commands/reset.md +117 -0
- package/dist/forge-payload/{.base-pack/commands → commands}/retro.md +2 -2
- package/dist/forge-payload/{.base-pack/commands → commands}/review-code.md +2 -2
- package/dist/forge-payload/{.base-pack/commands → commands}/review-plan.md +2 -2
- package/dist/forge-payload/{.base-pack/commands → commands}/run-sprint.md +2 -2
- package/dist/forge-payload/{.base-pack/commands → commands}/run-task.md +2 -2
- package/dist/forge-payload/commands/status.md +1 -1
- package/dist/forge-payload/commands/update.md +3 -3
- package/dist/forge-payload/{.base-pack/commands → commands}/validate.md +2 -2
- package/dist/forge-payload/hooks/forge-permissions.cjs +29 -6
- package/dist/forge-payload/hooks/lib/common.cjs +228 -0
- package/dist/forge-payload/hooks/lib/plugin-detection.cjs +106 -0
- package/dist/forge-payload/hooks/lib/update-msg.cjs +23 -0
- package/dist/forge-payload/hooks/lib/update-url.cjs +46 -0
- package/dist/forge-payload/hooks/lib/write-registry.js +53 -0
- package/dist/forge-payload/init/discovery/discover-database.md +32 -0
- package/dist/forge-payload/init/discovery/discover-processes.md +31 -0
- package/dist/forge-payload/init/discovery/discover-routing.md +31 -0
- package/dist/forge-payload/init/discovery/discover-stack.md +33 -0
- package/dist/forge-payload/init/discovery/discover-testing.md +34 -0
- package/dist/forge-payload/init/generation/generate-commands.md +171 -0
- package/dist/forge-payload/init/generation/generate-kb-doc.md +60 -0
- package/dist/forge-payload/init/generation/generate-persona.md +73 -0
- package/dist/forge-payload/init/generation/generate-skill.md +66 -0
- package/dist/forge-payload/init/generation/generate-template.md +60 -0
- package/dist/forge-payload/init/generation/generate-tools.md +133 -0
- package/dist/forge-payload/init/generation/generate-workflows.md +78 -0
- package/dist/forge-payload/init/phases/phase-1-collect.md +10 -2
- package/dist/forge-payload/init/phases/phase-3-materialize.md +5 -1
- package/dist/forge-payload/init/phases/phase-4-register.md +8 -0
- package/dist/forge-payload/init/workflow-gen-plan.json +17 -0
- package/dist/forge-payload/integrity.json +33 -18
- package/dist/forge-payload/meta/workflows/meta-collate.md +5 -6
- package/dist/forge-payload/meta/workflows/meta-migrate.md +1 -1
- package/dist/forge-payload/payload-manifest.json +314 -0
- package/dist/forge-payload/schemas/enum-catalog.json +2 -2
- package/dist/forge-payload/schemas/payload-manifest.schema.json +100 -0
- package/dist/forge-payload/schemas/structure-manifest.json +5 -12
- package/dist/forge-payload/tools/forge-preflight.cjs +268 -0
- package/dist/forge-payload/tools/lib/paths.cjs +12 -11
- package/dist/forge-payload/tools/lib/pricing.cjs +31 -11
- package/dist/forge-payload/tools/query-logger.cjs +34 -0
- package/dist/forge-payload/tools/reset-plan.cjs +210 -0
- package/dist/forge-payload/tools/store.cjs +4 -1
- package/dist/forge-payload/tools/substitute-placeholders.cjs +14 -7
- package/node_modules/@earendil-works/pi-agent-core/dist/agent-loop.d.ts.map +1 -1
- package/node_modules/@earendil-works/pi-agent-core/dist/agent-loop.js +8 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/agent-loop.js.map +1 -1
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/compaction/compaction.d.ts +1 -1
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/compaction/compaction.d.ts.map +1 -1
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/compaction/compaction.js +1 -1
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/compaction/compaction.js.map +1 -1
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/execution-env.d.ts +4 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/execution-env.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/execution-env.js +3 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/execution-env.js.map +1 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/repo/jsonl.d.ts +20 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/repo/jsonl.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/repo/jsonl.js +92 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/repo/jsonl.js.map +1 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/repo/memory.d.ts +18 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/repo/memory.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/repo/memory.js +42 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/repo/memory.js.map +1 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/repo/shared.d.ts +10 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/repo/shared.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/repo/shared.js +31 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/repo/shared.js.map +1 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/storage/jsonl.d.ts +30 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/storage/jsonl.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/storage/jsonl.js +170 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/storage/jsonl.js.map +1 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/storage/memory.d.ts +26 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/storage/memory.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/storage/memory.js +90 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/storage/memory.js.map +1 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/types.d.ts +6 -1
- package/node_modules/@earendil-works/pi-agent-core/dist/types.d.ts.map +1 -1
- package/node_modules/@earendil-works/pi-agent-core/dist/types.js.map +1 -1
- package/node_modules/@earendil-works/pi-agent-core/package.json +2 -2
- package/node_modules/@earendil-works/pi-ai/README.md +12 -4
- package/node_modules/@earendil-works/pi-ai/dist/env-api-keys.d.ts.map +1 -1
- package/node_modules/@earendil-works/pi-ai/dist/env-api-keys.js +3 -0
- package/node_modules/@earendil-works/pi-ai/dist/env-api-keys.js.map +1 -1
- package/node_modules/@earendil-works/pi-ai/dist/image-models.generated.d.ts +45 -0
- package/node_modules/@earendil-works/pi-ai/dist/image-models.generated.d.ts.map +1 -1
- package/node_modules/@earendil-works/pi-ai/dist/image-models.generated.js +45 -0
- package/node_modules/@earendil-works/pi-ai/dist/image-models.generated.js.map +1 -1
- package/node_modules/@earendil-works/pi-ai/dist/models.generated.d.ts +1804 -815
- package/node_modules/@earendil-works/pi-ai/dist/models.generated.d.ts.map +1 -1
- package/node_modules/@earendil-works/pi-ai/dist/models.generated.js +2031 -1384
- package/node_modules/@earendil-works/pi-ai/dist/models.generated.js.map +1 -1
- package/node_modules/@earendil-works/pi-ai/dist/providers/amazon-bedrock.d.ts.map +1 -1
- package/node_modules/@earendil-works/pi-ai/dist/providers/amazon-bedrock.js +71 -27
- package/node_modules/@earendil-works/pi-ai/dist/providers/amazon-bedrock.js.map +1 -1
- package/node_modules/@earendil-works/pi-ai/dist/providers/anthropic.d.ts +1 -1
- package/node_modules/@earendil-works/pi-ai/dist/providers/anthropic.d.ts.map +1 -1
- package/node_modules/@earendil-works/pi-ai/dist/providers/anthropic.js +24 -16
- package/node_modules/@earendil-works/pi-ai/dist/providers/anthropic.js.map +1 -1
- package/node_modules/@earendil-works/pi-ai/dist/providers/azure-openai-responses.d.ts.map +1 -1
- package/node_modules/@earendil-works/pi-ai/dist/providers/azure-openai-responses.js +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/azure-openai-responses.js.map +1 -1
- package/node_modules/@earendil-works/pi-ai/dist/providers/openai-codex-responses.d.ts.map +1 -1
- package/node_modules/@earendil-works/pi-ai/dist/providers/openai-codex-responses.js +3 -1
- package/node_modules/@earendil-works/pi-ai/dist/providers/openai-codex-responses.js.map +1 -1
- package/node_modules/@earendil-works/pi-ai/dist/providers/openai-completions.d.ts.map +1 -1
- package/node_modules/@earendil-works/pi-ai/dist/providers/openai-completions.js +35 -13
- package/node_modules/@earendil-works/pi-ai/dist/providers/openai-completions.js.map +1 -1
- package/node_modules/@earendil-works/pi-ai/dist/providers/openai-responses-shared.d.ts.map +1 -1
- package/node_modules/@earendil-works/pi-ai/dist/providers/openai-responses-shared.js +2 -1
- package/node_modules/@earendil-works/pi-ai/dist/providers/openai-responses-shared.js.map +1 -1
- package/node_modules/@earendil-works/pi-ai/dist/providers/openai-responses.d.ts.map +1 -1
- package/node_modules/@earendil-works/pi-ai/dist/providers/openai-responses.js +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/openai-responses.js.map +1 -1
- package/node_modules/@earendil-works/pi-ai/dist/types.d.ts +12 -4
- package/node_modules/@earendil-works/pi-ai/dist/types.d.ts.map +1 -1
- package/node_modules/@earendil-works/pi-ai/dist/types.js.map +1 -1
- package/node_modules/@earendil-works/pi-ai/dist/utils/oauth/github-copilot.d.ts.map +1 -1
- package/node_modules/@earendil-works/pi-ai/dist/utils/oauth/github-copilot.js +13 -1
- package/node_modules/@earendil-works/pi-ai/dist/utils/oauth/github-copilot.js.map +1 -1
- package/node_modules/@earendil-works/pi-ai/dist/utils/oauth/openai-codex.d.ts.map +1 -1
- package/node_modules/@earendil-works/pi-ai/dist/utils/oauth/openai-codex.js +4 -2
- package/node_modules/@earendil-works/pi-ai/dist/utils/oauth/openai-codex.js.map +1 -1
- package/node_modules/@earendil-works/pi-ai/dist/utils/overflow.d.ts +1 -1
- package/node_modules/@earendil-works/pi-ai/dist/utils/overflow.d.ts.map +1 -1
- package/node_modules/@earendil-works/pi-ai/dist/utils/overflow.js +3 -2
- package/node_modules/@earendil-works/pi-ai/dist/utils/overflow.js.map +1 -1
- package/node_modules/@earendil-works/pi-ai/package.json +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/CHANGELOG.md +143 -0
- package/node_modules/@earendil-works/pi-coding-agent/README.md +26 -4
- package/node_modules/@earendil-works/pi-coding-agent/dist/cli/args.d.ts +1 -0
- package/node_modules/@earendil-works/pi-coding-agent/dist/cli/args.d.ts.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/cli/args.js +11 -0
- package/node_modules/@earendil-works/pi-coding-agent/dist/cli/args.js.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/cli/project-trust.d.ts +10 -0
- package/node_modules/@earendil-works/pi-coding-agent/dist/cli/project-trust.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-coding-agent/dist/cli/project-trust.js +48 -0
- package/node_modules/@earendil-works/pi-coding-agent/dist/cli/project-trust.js.map +1 -0
- package/node_modules/@earendil-works/pi-coding-agent/dist/cli/startup-ui.d.ts +17 -0
- package/node_modules/@earendil-works/pi-coding-agent/dist/cli/startup-ui.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-coding-agent/dist/cli/startup-ui.js +128 -0
- package/node_modules/@earendil-works/pi-coding-agent/dist/cli/startup-ui.js.map +1 -0
- package/node_modules/@earendil-works/pi-coding-agent/dist/config.d.ts.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/config.js +9 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/config.js.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/agent-session-runtime.d.ts +3 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/agent-session-runtime.d.ts.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/agent-session-runtime.js +4 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/agent-session-runtime.js.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/agent-session-services.d.ts +2 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/agent-session-services.d.ts.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/agent-session-services.js +2 -2
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/agent-session-services.js.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/agent-session.d.ts +4 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/agent-session.d.ts.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/agent-session.js +16 -3
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/agent-session.js.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/auth-storage.d.ts.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/auth-storage.js +4 -3
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/auth-storage.js.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/compaction/branch-summarization.d.ts +3 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/compaction/branch-summarization.d.ts.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/compaction/branch-summarization.js +9 -3
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/compaction/branch-summarization.js.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/compaction/utils.d.ts +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/compaction/utils.d.ts.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/compaction/utils.js +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/compaction/utils.js.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/experimental.d.ts +2 -0
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/experimental.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/experimental.js +4 -0
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/experimental.js.map +1 -0
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/export-html/template.js +19 -6
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/extensions/index.d.ts +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/extensions/index.d.ts.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/extensions/index.js.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/extensions/loader.d.ts +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/extensions/loader.d.ts.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/extensions/loader.js +4 -4
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/extensions/loader.js.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/extensions/runner.d.ts +10 -3
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/extensions/runner.d.ts.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/extensions/runner.js +47 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/extensions/runner.js.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/extensions/types.d.ts +28 -2
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/extensions/types.d.ts.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/extensions/types.js.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/footer-data-provider.d.ts +2 -0
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/footer-data-provider.d.ts.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/footer-data-provider.js +29 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/footer-data-provider.js.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/index.d.ts +1 -0
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/index.d.ts.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/index.js +1 -0
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/index.js.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/model-registry.d.ts.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/model-registry.js +1 -0
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/model-registry.js.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/model-resolver.d.ts +1 -0
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/model-resolver.d.ts.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/model-resolver.js +44 -5
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/model-resolver.js.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/package-manager.d.ts +3 -0
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/package-manager.d.ts.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/package-manager.js +47 -13
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/package-manager.js.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/project-trust.d.ts +15 -0
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/project-trust.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/project-trust.js +58 -0
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/project-trust.js.map +1 -0
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/prompt-templates.d.ts +2 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/prompt-templates.d.ts.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/prompt-templates.js +24 -26
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/prompt-templates.js.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/provider-attribution.d.ts +4 -0
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/provider-attribution.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/provider-attribution.js +72 -0
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/provider-attribution.js.map +1 -0
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/provider-display-names.d.ts.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/provider-display-names.js +3 -0
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/provider-display-names.js.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/resource-loader.d.ts +13 -2
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/resource-loader.d.ts.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/resource-loader.js +112 -37
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/resource-loader.js.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/sdk.d.ts.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/sdk.js +7 -33
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/sdk.js.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/session-manager.d.ts.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/session-manager.js +103 -70
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/session-manager.js.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/settings-manager.d.ts +20 -2
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/settings-manager.d.ts.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/settings-manager.js +97 -30
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/settings-manager.js.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/slash-commands.d.ts.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/slash-commands.js +1 -0
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/slash-commands.js.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/bash.d.ts.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/bash.js +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/bash.js.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/find.d.ts.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/find.js +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/find.js.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/grep.d.ts.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/grep.js +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/grep.js.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/ls.d.ts.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/ls.js +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/ls.js.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/read.d.ts.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/read.js +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/read.js.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/write.d.ts.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/write.js +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/write.js.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/trust-manager.d.ts +36 -0
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/trust-manager.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/trust-manager.js +202 -0
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/trust-manager.js.map +1 -0
- package/node_modules/@earendil-works/pi-coding-agent/dist/index.d.ts +5 -4
- package/node_modules/@earendil-works/pi-coding-agent/dist/index.d.ts.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/index.js +2 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/index.js.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/main.d.ts.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/main.js +72 -32
- package/node_modules/@earendil-works/pi-coding-agent/dist/main.js.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/migrations.d.ts.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/migrations.js +39 -34
- package/node_modules/@earendil-works/pi-coding-agent/dist/migrations.js.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/index.d.ts +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/index.d.ts.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/index.js.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/bash-execution.d.ts.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/bash-execution.js +2 -2
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/bash-execution.js.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/first-time-setup.d.ts +25 -0
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/first-time-setup.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/first-time-setup.js +103 -0
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/first-time-setup.js.map +1 -0
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/footer.d.ts.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/footer.js +7 -0
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/footer.js.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/index.d.ts +2 -0
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/index.d.ts.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/index.js +2 -0
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/index.js.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/login-dialog.d.ts +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/login-dialog.d.ts.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/login-dialog.js +10 -13
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/login-dialog.js.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/settings-selector.d.ts +3 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/settings-selector.d.ts.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/settings-selector.js +20 -0
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/settings-selector.js.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/tool-execution.d.ts.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/tool-execution.js +22 -0
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/tool-execution.js.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/trust-selector.d.ts +23 -0
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/trust-selector.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/trust-selector.js +91 -0
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/trust-selector.js.map +1 -0
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/interactive-mode.d.ts +7 -0
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/interactive-mode.d.ts.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/interactive-mode.js +101 -5
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/interactive-mode.js.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/print-mode.d.ts.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/print-mode.js +1 -0
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/print-mode.js.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/rpc/rpc-mode.d.ts.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/rpc/rpc-mode.js +1 -0
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/rpc/rpc-mode.js.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/package-manager-cli.d.ts +6 -2
- package/node_modules/@earendil-works/pi-coding-agent/dist/package-manager-cli.d.ts.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/package-manager-cli.js +111 -10
- package/node_modules/@earendil-works/pi-coding-agent/dist/package-manager-cli.js.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/utils/changelog.d.ts +1 -0
- package/node_modules/@earendil-works/pi-coding-agent/dist/utils/changelog.d.ts.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/utils/changelog.js +78 -0
- package/node_modules/@earendil-works/pi-coding-agent/dist/utils/changelog.js.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/utils/git.d.ts.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/utils/git.js +54 -22
- package/node_modules/@earendil-works/pi-coding-agent/dist/utils/git.js.map +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/utils/open-browser.d.ts +9 -0
- package/node_modules/@earendil-works/pi-coding-agent/dist/utils/open-browser.d.ts.map +1 -0
- package/node_modules/@earendil-works/pi-coding-agent/dist/utils/open-browser.js +22 -0
- package/node_modules/@earendil-works/pi-coding-agent/dist/utils/open-browser.js.map +1 -0
- package/node_modules/@earendil-works/pi-coding-agent/docs/containerization.md +111 -0
- package/node_modules/@earendil-works/pi-coding-agent/docs/docs.json +8 -0
- package/node_modules/@earendil-works/pi-coding-agent/docs/extensions.md +67 -13
- package/node_modules/@earendil-works/pi-coding-agent/docs/index.md +2 -0
- package/node_modules/@earendil-works/pi-coding-agent/docs/models.md +4 -3
- package/node_modules/@earendil-works/pi-coding-agent/docs/packages.md +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/docs/prompt-templates.md +9 -2
- package/node_modules/@earendil-works/pi-coding-agent/docs/providers.md +5 -0
- package/node_modules/@earendil-works/pi-coding-agent/docs/rpc.md +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/docs/sdk.md +5 -0
- package/node_modules/@earendil-works/pi-coding-agent/docs/security.md +59 -0
- package/node_modules/@earendil-works/pi-coding-agent/docs/settings.md +15 -0
- package/node_modules/@earendil-works/pi-coding-agent/docs/skills.md +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/docs/terminal-setup.md +36 -2
- package/node_modules/@earendil-works/pi-coding-agent/docs/themes.md +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/docs/tmux.md +4 -2
- package/node_modules/@earendil-works/pi-coding-agent/docs/tui.md +10 -1
- package/node_modules/@earendil-works/pi-coding-agent/docs/usage.md +19 -2
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/README.md +2 -0
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/custom-header.ts +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/custom-provider-anthropic/package.json +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/custom-provider-gitlab-duo/package.json +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/doom-overlay/index.ts +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/gondolin/index.ts +531 -0
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/gondolin/package-lock.json +185 -0
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/gondolin/package.json +19 -0
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/handoff.ts +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/interactive-shell.ts +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/overlay-qa-tests.ts +152 -81
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/project-trust.ts +64 -0
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/qna.ts +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/question.ts +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/questionnaire.ts +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/sandbox/package.json +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/snake.ts +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/space-invaders.ts +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/summarize.ts +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/tic-tac-toe.ts +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/todo.ts +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/tools.ts +5 -0
- package/node_modules/@earendil-works/pi-coding-agent/examples/extensions/with-deps/package.json +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/npm-shrinkwrap.json +12 -419
- package/node_modules/@earendil-works/pi-coding-agent/package.json +5 -8
- package/node_modules/@earendil-works/pi-tui/README.md +13 -1
- package/node_modules/@earendil-works/pi-tui/dist/autocomplete.d.ts +2 -0
- package/node_modules/@earendil-works/pi-tui/dist/autocomplete.d.ts.map +1 -1
- package/node_modules/@earendil-works/pi-tui/dist/autocomplete.js.map +1 -1
- package/node_modules/@earendil-works/pi-tui/dist/components/editor.d.ts +6 -1
- package/node_modules/@earendil-works/pi-tui/dist/components/editor.d.ts.map +1 -1
- package/node_modules/@earendil-works/pi-tui/dist/components/editor.js +102 -43
- package/node_modules/@earendil-works/pi-tui/dist/components/editor.js.map +1 -1
- package/node_modules/@earendil-works/pi-tui/dist/components/markdown.d.ts +2 -1
- package/node_modules/@earendil-works/pi-tui/dist/components/markdown.d.ts.map +1 -1
- package/node_modules/@earendil-works/pi-tui/dist/components/markdown.js +11 -1
- package/node_modules/@earendil-works/pi-tui/dist/components/markdown.js.map +1 -1
- package/node_modules/@earendil-works/pi-tui/dist/fuzzy.d.ts +1 -1
- package/node_modules/@earendil-works/pi-tui/dist/fuzzy.d.ts.map +1 -1
- package/node_modules/@earendil-works/pi-tui/dist/fuzzy.js +2 -2
- package/node_modules/@earendil-works/pi-tui/dist/fuzzy.js.map +1 -1
- package/node_modules/@earendil-works/pi-tui/dist/index.d.ts +1 -1
- package/node_modules/@earendil-works/pi-tui/dist/index.d.ts.map +1 -1
- package/node_modules/@earendil-works/pi-tui/dist/index.js.map +1 -1
- package/node_modules/@earendil-works/pi-tui/dist/terminal.d.ts +4 -7
- package/node_modules/@earendil-works/pi-tui/dist/terminal.d.ts.map +1 -1
- package/node_modules/@earendil-works/pi-tui/dist/terminal.js +38 -77
- package/node_modules/@earendil-works/pi-tui/dist/terminal.js.map +1 -1
- package/node_modules/@earendil-works/pi-tui/dist/tui.d.ts +20 -4
- package/node_modules/@earendil-works/pi-tui/dist/tui.d.ts.map +1 -1
- package/node_modules/@earendil-works/pi-tui/dist/tui.js +244 -42
- package/node_modules/@earendil-works/pi-tui/dist/tui.js.map +1 -1
- package/node_modules/@earendil-works/pi-tui/dist/utils.d.ts +1 -0
- package/node_modules/@earendil-works/pi-tui/dist/utils.d.ts.map +1 -1
- package/node_modules/@earendil-works/pi-tui/dist/utils.js +46 -15
- package/node_modules/@earendil-works/pi-tui/dist/utils.js.map +1 -1
- package/node_modules/@earendil-works/pi-tui/package.json +1 -1
- package/package.json +8 -7
- package/dist/forge-payload/.base-pack/commands/check-agent.md +0 -22
- package/dist/forge-payload/.base-pack/commands/enhance.md +0 -37
|
@@ -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: ("image" | "text")[];
|
|
11
11
|
cost: {
|
|
12
12
|
input: number;
|
|
@@ -355,6 +355,27 @@ export declare const MODELS: {
|
|
|
355
355
|
contextWindow: number;
|
|
356
356
|
maxTokens: number;
|
|
357
357
|
};
|
|
358
|
+
readonly "eu.anthropic.claude-fable-5": {
|
|
359
|
+
id: string;
|
|
360
|
+
name: string;
|
|
361
|
+
api: "bedrock-converse-stream";
|
|
362
|
+
provider: string;
|
|
363
|
+
baseUrl: string;
|
|
364
|
+
reasoning: true;
|
|
365
|
+
thinkingLevelMap: {
|
|
366
|
+
off: null;
|
|
367
|
+
xhigh: string;
|
|
368
|
+
};
|
|
369
|
+
input: ("image" | "text")[];
|
|
370
|
+
cost: {
|
|
371
|
+
input: number;
|
|
372
|
+
output: number;
|
|
373
|
+
cacheRead: number;
|
|
374
|
+
cacheWrite: number;
|
|
375
|
+
};
|
|
376
|
+
contextWindow: number;
|
|
377
|
+
maxTokens: number;
|
|
378
|
+
};
|
|
358
379
|
readonly "eu.anthropic.claude-haiku-4-5-20251001-v1:0": {
|
|
359
380
|
id: string;
|
|
360
381
|
name: string;
|
|
@@ -483,6 +504,27 @@ export declare const MODELS: {
|
|
|
483
504
|
contextWindow: number;
|
|
484
505
|
maxTokens: number;
|
|
485
506
|
};
|
|
507
|
+
readonly "global.anthropic.claude-fable-5": {
|
|
508
|
+
id: string;
|
|
509
|
+
name: string;
|
|
510
|
+
api: "bedrock-converse-stream";
|
|
511
|
+
provider: string;
|
|
512
|
+
baseUrl: string;
|
|
513
|
+
reasoning: true;
|
|
514
|
+
thinkingLevelMap: {
|
|
515
|
+
off: null;
|
|
516
|
+
xhigh: string;
|
|
517
|
+
};
|
|
518
|
+
input: ("image" | "text")[];
|
|
519
|
+
cost: {
|
|
520
|
+
input: number;
|
|
521
|
+
output: number;
|
|
522
|
+
cacheRead: number;
|
|
523
|
+
cacheWrite: number;
|
|
524
|
+
};
|
|
525
|
+
contextWindow: number;
|
|
526
|
+
maxTokens: number;
|
|
527
|
+
};
|
|
486
528
|
readonly "global.anthropic.claude-haiku-4-5-20251001-v1:0": {
|
|
487
529
|
id: string;
|
|
488
530
|
name: string;
|
|
@@ -1110,13 +1152,87 @@ export declare const MODELS: {
|
|
|
1110
1152
|
contextWindow: number;
|
|
1111
1153
|
maxTokens: number;
|
|
1112
1154
|
};
|
|
1155
|
+
readonly "openai.gpt-5.4": {
|
|
1156
|
+
id: string;
|
|
1157
|
+
name: string;
|
|
1158
|
+
api: "bedrock-converse-stream";
|
|
1159
|
+
provider: string;
|
|
1160
|
+
baseUrl: string;
|
|
1161
|
+
reasoning: true;
|
|
1162
|
+
thinkingLevelMap: {
|
|
1163
|
+
xhigh: string;
|
|
1164
|
+
};
|
|
1165
|
+
input: ("image" | "text")[];
|
|
1166
|
+
cost: {
|
|
1167
|
+
input: number;
|
|
1168
|
+
output: number;
|
|
1169
|
+
cacheRead: number;
|
|
1170
|
+
cacheWrite: number;
|
|
1171
|
+
};
|
|
1172
|
+
contextWindow: number;
|
|
1173
|
+
maxTokens: number;
|
|
1174
|
+
};
|
|
1175
|
+
readonly "openai.gpt-5.5": {
|
|
1176
|
+
id: string;
|
|
1177
|
+
name: string;
|
|
1178
|
+
api: "bedrock-converse-stream";
|
|
1179
|
+
provider: string;
|
|
1180
|
+
baseUrl: string;
|
|
1181
|
+
reasoning: true;
|
|
1182
|
+
thinkingLevelMap: {
|
|
1183
|
+
xhigh: string;
|
|
1184
|
+
};
|
|
1185
|
+
input: ("image" | "text")[];
|
|
1186
|
+
cost: {
|
|
1187
|
+
input: number;
|
|
1188
|
+
output: number;
|
|
1189
|
+
cacheRead: number;
|
|
1190
|
+
cacheWrite: number;
|
|
1191
|
+
};
|
|
1192
|
+
contextWindow: number;
|
|
1193
|
+
maxTokens: number;
|
|
1194
|
+
};
|
|
1195
|
+
readonly "openai.gpt-oss-120b": {
|
|
1196
|
+
id: string;
|
|
1197
|
+
name: string;
|
|
1198
|
+
api: "bedrock-converse-stream";
|
|
1199
|
+
provider: string;
|
|
1200
|
+
baseUrl: string;
|
|
1201
|
+
reasoning: true;
|
|
1202
|
+
input: "text"[];
|
|
1203
|
+
cost: {
|
|
1204
|
+
input: number;
|
|
1205
|
+
output: number;
|
|
1206
|
+
cacheRead: number;
|
|
1207
|
+
cacheWrite: number;
|
|
1208
|
+
};
|
|
1209
|
+
contextWindow: number;
|
|
1210
|
+
maxTokens: number;
|
|
1211
|
+
};
|
|
1113
1212
|
readonly "openai.gpt-oss-120b-1:0": {
|
|
1114
1213
|
id: string;
|
|
1115
1214
|
name: string;
|
|
1116
1215
|
api: "bedrock-converse-stream";
|
|
1117
1216
|
provider: string;
|
|
1118
1217
|
baseUrl: string;
|
|
1119
|
-
reasoning:
|
|
1218
|
+
reasoning: true;
|
|
1219
|
+
input: "text"[];
|
|
1220
|
+
cost: {
|
|
1221
|
+
input: number;
|
|
1222
|
+
output: number;
|
|
1223
|
+
cacheRead: number;
|
|
1224
|
+
cacheWrite: number;
|
|
1225
|
+
};
|
|
1226
|
+
contextWindow: number;
|
|
1227
|
+
maxTokens: number;
|
|
1228
|
+
};
|
|
1229
|
+
readonly "openai.gpt-oss-20b": {
|
|
1230
|
+
id: string;
|
|
1231
|
+
name: string;
|
|
1232
|
+
api: "bedrock-converse-stream";
|
|
1233
|
+
provider: string;
|
|
1234
|
+
baseUrl: string;
|
|
1235
|
+
reasoning: true;
|
|
1120
1236
|
input: "text"[];
|
|
1121
1237
|
cost: {
|
|
1122
1238
|
input: number;
|
|
@@ -1133,7 +1249,7 @@ export declare const MODELS: {
|
|
|
1133
1249
|
api: "bedrock-converse-stream";
|
|
1134
1250
|
provider: string;
|
|
1135
1251
|
baseUrl: string;
|
|
1136
|
-
reasoning:
|
|
1252
|
+
reasoning: true;
|
|
1137
1253
|
input: "text"[];
|
|
1138
1254
|
cost: {
|
|
1139
1255
|
input: number;
|
|
@@ -1297,6 +1413,27 @@ export declare const MODELS: {
|
|
|
1297
1413
|
contextWindow: number;
|
|
1298
1414
|
maxTokens: number;
|
|
1299
1415
|
};
|
|
1416
|
+
readonly "us.anthropic.claude-fable-5": {
|
|
1417
|
+
id: string;
|
|
1418
|
+
name: string;
|
|
1419
|
+
api: "bedrock-converse-stream";
|
|
1420
|
+
provider: string;
|
|
1421
|
+
baseUrl: string;
|
|
1422
|
+
reasoning: true;
|
|
1423
|
+
thinkingLevelMap: {
|
|
1424
|
+
off: null;
|
|
1425
|
+
xhigh: string;
|
|
1426
|
+
};
|
|
1427
|
+
input: ("image" | "text")[];
|
|
1428
|
+
cost: {
|
|
1429
|
+
input: number;
|
|
1430
|
+
output: number;
|
|
1431
|
+
cacheRead: number;
|
|
1432
|
+
cacheWrite: number;
|
|
1433
|
+
};
|
|
1434
|
+
contextWindow: number;
|
|
1435
|
+
maxTokens: number;
|
|
1436
|
+
};
|
|
1300
1437
|
readonly "us.anthropic.claude-haiku-4-5-20251001-v1:0": {
|
|
1301
1438
|
id: string;
|
|
1302
1439
|
name: string;
|
|
@@ -1579,6 +1716,89 @@ export declare const MODELS: {
|
|
|
1579
1716
|
maxTokens: number;
|
|
1580
1717
|
};
|
|
1581
1718
|
};
|
|
1719
|
+
readonly "ant-ling": {
|
|
1720
|
+
readonly "Ling-2.6-1T": {
|
|
1721
|
+
id: string;
|
|
1722
|
+
name: string;
|
|
1723
|
+
api: "openai-completions";
|
|
1724
|
+
provider: string;
|
|
1725
|
+
baseUrl: string;
|
|
1726
|
+
compat: {
|
|
1727
|
+
supportsStore: false;
|
|
1728
|
+
supportsDeveloperRole: false;
|
|
1729
|
+
supportsReasoningEffort: false;
|
|
1730
|
+
maxTokensField: "max_tokens";
|
|
1731
|
+
supportsLongCacheRetention: false;
|
|
1732
|
+
};
|
|
1733
|
+
reasoning: false;
|
|
1734
|
+
input: "text"[];
|
|
1735
|
+
cost: {
|
|
1736
|
+
input: number;
|
|
1737
|
+
output: number;
|
|
1738
|
+
cacheRead: number;
|
|
1739
|
+
cacheWrite: number;
|
|
1740
|
+
};
|
|
1741
|
+
contextWindow: number;
|
|
1742
|
+
maxTokens: number;
|
|
1743
|
+
};
|
|
1744
|
+
readonly "Ling-2.6-flash": {
|
|
1745
|
+
id: string;
|
|
1746
|
+
name: string;
|
|
1747
|
+
api: "openai-completions";
|
|
1748
|
+
provider: string;
|
|
1749
|
+
baseUrl: string;
|
|
1750
|
+
compat: {
|
|
1751
|
+
supportsStore: false;
|
|
1752
|
+
supportsDeveloperRole: false;
|
|
1753
|
+
supportsReasoningEffort: false;
|
|
1754
|
+
maxTokensField: "max_tokens";
|
|
1755
|
+
supportsLongCacheRetention: false;
|
|
1756
|
+
};
|
|
1757
|
+
reasoning: false;
|
|
1758
|
+
input: "text"[];
|
|
1759
|
+
cost: {
|
|
1760
|
+
input: number;
|
|
1761
|
+
output: number;
|
|
1762
|
+
cacheRead: number;
|
|
1763
|
+
cacheWrite: number;
|
|
1764
|
+
};
|
|
1765
|
+
contextWindow: number;
|
|
1766
|
+
maxTokens: number;
|
|
1767
|
+
};
|
|
1768
|
+
readonly "Ring-2.6-1T": {
|
|
1769
|
+
id: string;
|
|
1770
|
+
name: string;
|
|
1771
|
+
api: "openai-completions";
|
|
1772
|
+
provider: string;
|
|
1773
|
+
baseUrl: string;
|
|
1774
|
+
compat: {
|
|
1775
|
+
supportsStore: false;
|
|
1776
|
+
supportsDeveloperRole: false;
|
|
1777
|
+
supportsReasoningEffort: false;
|
|
1778
|
+
maxTokensField: "max_tokens";
|
|
1779
|
+
supportsLongCacheRetention: false;
|
|
1780
|
+
thinkingFormat: "ant-ling";
|
|
1781
|
+
};
|
|
1782
|
+
reasoning: true;
|
|
1783
|
+
thinkingLevelMap: {
|
|
1784
|
+
off: null;
|
|
1785
|
+
minimal: null;
|
|
1786
|
+
low: null;
|
|
1787
|
+
medium: null;
|
|
1788
|
+
high: string;
|
|
1789
|
+
xhigh: string;
|
|
1790
|
+
};
|
|
1791
|
+
input: "text"[];
|
|
1792
|
+
cost: {
|
|
1793
|
+
input: number;
|
|
1794
|
+
output: number;
|
|
1795
|
+
cacheRead: number;
|
|
1796
|
+
cacheWrite: number;
|
|
1797
|
+
};
|
|
1798
|
+
contextWindow: number;
|
|
1799
|
+
maxTokens: number;
|
|
1800
|
+
};
|
|
1801
|
+
};
|
|
1582
1802
|
readonly anthropic: {
|
|
1583
1803
|
readonly "claude-3-5-haiku-20241022": {
|
|
1584
1804
|
id: string;
|
|
@@ -1716,6 +1936,30 @@ export declare const MODELS: {
|
|
|
1716
1936
|
contextWindow: number;
|
|
1717
1937
|
maxTokens: number;
|
|
1718
1938
|
};
|
|
1939
|
+
readonly "claude-fable-5": {
|
|
1940
|
+
id: string;
|
|
1941
|
+
name: string;
|
|
1942
|
+
api: "anthropic-messages";
|
|
1943
|
+
provider: string;
|
|
1944
|
+
baseUrl: string;
|
|
1945
|
+
compat: {
|
|
1946
|
+
forceAdaptiveThinking: true;
|
|
1947
|
+
};
|
|
1948
|
+
reasoning: true;
|
|
1949
|
+
thinkingLevelMap: {
|
|
1950
|
+
off: null;
|
|
1951
|
+
xhigh: string;
|
|
1952
|
+
};
|
|
1953
|
+
input: ("image" | "text")[];
|
|
1954
|
+
cost: {
|
|
1955
|
+
input: number;
|
|
1956
|
+
output: number;
|
|
1957
|
+
cacheRead: number;
|
|
1958
|
+
cacheWrite: number;
|
|
1959
|
+
};
|
|
1960
|
+
contextWindow: number;
|
|
1961
|
+
maxTokens: number;
|
|
1962
|
+
};
|
|
1719
1963
|
readonly "claude-haiku-4-5": {
|
|
1720
1964
|
id: string;
|
|
1721
1965
|
name: string;
|
|
@@ -1883,6 +2127,7 @@ export declare const MODELS: {
|
|
|
1883
2127
|
baseUrl: string;
|
|
1884
2128
|
compat: {
|
|
1885
2129
|
forceAdaptiveThinking: true;
|
|
2130
|
+
supportsTemperature: false;
|
|
1886
2131
|
};
|
|
1887
2132
|
reasoning: true;
|
|
1888
2133
|
thinkingLevelMap: {
|
|
@@ -1906,6 +2151,7 @@ export declare const MODELS: {
|
|
|
1906
2151
|
baseUrl: string;
|
|
1907
2152
|
compat: {
|
|
1908
2153
|
forceAdaptiveThinking: true;
|
|
2154
|
+
supportsTemperature: false;
|
|
1909
2155
|
};
|
|
1910
2156
|
reasoning: true;
|
|
1911
2157
|
thinkingLevelMap: {
|
|
@@ -2831,30 +3077,13 @@ export declare const MODELS: {
|
|
|
2831
3077
|
contextWindow: number;
|
|
2832
3078
|
maxTokens: number;
|
|
2833
3079
|
};
|
|
2834
|
-
readonly "llama3.1-8b": {
|
|
2835
|
-
id: string;
|
|
2836
|
-
name: string;
|
|
2837
|
-
api: "openai-completions";
|
|
2838
|
-
provider: string;
|
|
2839
|
-
baseUrl: string;
|
|
2840
|
-
reasoning: false;
|
|
2841
|
-
input: "text"[];
|
|
2842
|
-
cost: {
|
|
2843
|
-
input: number;
|
|
2844
|
-
output: number;
|
|
2845
|
-
cacheRead: number;
|
|
2846
|
-
cacheWrite: number;
|
|
2847
|
-
};
|
|
2848
|
-
contextWindow: number;
|
|
2849
|
-
maxTokens: number;
|
|
2850
|
-
};
|
|
2851
3080
|
readonly "zai-glm-4.7": {
|
|
2852
3081
|
id: string;
|
|
2853
3082
|
name: string;
|
|
2854
3083
|
api: "openai-completions";
|
|
2855
3084
|
provider: string;
|
|
2856
3085
|
baseUrl: string;
|
|
2857
|
-
reasoning:
|
|
3086
|
+
reasoning: true;
|
|
2858
3087
|
input: "text"[];
|
|
2859
3088
|
cost: {
|
|
2860
3089
|
input: number;
|
|
@@ -2969,7 +3198,31 @@ export declare const MODELS: {
|
|
|
2969
3198
|
contextWindow: number;
|
|
2970
3199
|
maxTokens: number;
|
|
2971
3200
|
};
|
|
2972
|
-
readonly "claude-
|
|
3201
|
+
readonly "claude-fable-5": {
|
|
3202
|
+
id: string;
|
|
3203
|
+
name: string;
|
|
3204
|
+
api: "anthropic-messages";
|
|
3205
|
+
provider: string;
|
|
3206
|
+
baseUrl: string;
|
|
3207
|
+
compat: {
|
|
3208
|
+
forceAdaptiveThinking: true;
|
|
3209
|
+
};
|
|
3210
|
+
reasoning: true;
|
|
3211
|
+
thinkingLevelMap: {
|
|
3212
|
+
off: null;
|
|
3213
|
+
xhigh: string;
|
|
3214
|
+
};
|
|
3215
|
+
input: ("image" | "text")[];
|
|
3216
|
+
cost: {
|
|
3217
|
+
input: number;
|
|
3218
|
+
output: number;
|
|
3219
|
+
cacheRead: number;
|
|
3220
|
+
cacheWrite: number;
|
|
3221
|
+
};
|
|
3222
|
+
contextWindow: number;
|
|
3223
|
+
maxTokens: number;
|
|
3224
|
+
};
|
|
3225
|
+
readonly "claude-haiku-4-5": {
|
|
2973
3226
|
id: string;
|
|
2974
3227
|
name: string;
|
|
2975
3228
|
api: "anthropic-messages";
|
|
@@ -3068,6 +3321,7 @@ export declare const MODELS: {
|
|
|
3068
3321
|
baseUrl: string;
|
|
3069
3322
|
compat: {
|
|
3070
3323
|
forceAdaptiveThinking: true;
|
|
3324
|
+
supportsTemperature: false;
|
|
3071
3325
|
};
|
|
3072
3326
|
reasoning: true;
|
|
3073
3327
|
thinkingLevelMap: {
|
|
@@ -3091,6 +3345,7 @@ export declare const MODELS: {
|
|
|
3091
3345
|
baseUrl: string;
|
|
3092
3346
|
compat: {
|
|
3093
3347
|
forceAdaptiveThinking: true;
|
|
3348
|
+
supportsTemperature: false;
|
|
3094
3349
|
};
|
|
3095
3350
|
reasoning: true;
|
|
3096
3351
|
thinkingLevelMap: {
|
|
@@ -3640,7 +3895,7 @@ export declare const MODELS: {
|
|
|
3640
3895
|
contextWindow: number;
|
|
3641
3896
|
maxTokens: number;
|
|
3642
3897
|
};
|
|
3643
|
-
readonly "@cf/moonshotai/kimi-k2.
|
|
3898
|
+
readonly "@cf/moonshotai/kimi-k2.6": {
|
|
3644
3899
|
id: string;
|
|
3645
3900
|
name: string;
|
|
3646
3901
|
api: "openai-completions";
|
|
@@ -3660,7 +3915,7 @@ export declare const MODELS: {
|
|
|
3660
3915
|
contextWindow: number;
|
|
3661
3916
|
maxTokens: number;
|
|
3662
3917
|
};
|
|
3663
|
-
readonly "@cf/moonshotai/kimi-k2.
|
|
3918
|
+
readonly "@cf/moonshotai/kimi-k2.7-code": {
|
|
3664
3919
|
id: string;
|
|
3665
3920
|
name: string;
|
|
3666
3921
|
api: "openai-completions";
|
|
@@ -3955,7 +4210,7 @@ export declare const MODELS: {
|
|
|
3955
4210
|
contextWindow: number;
|
|
3956
4211
|
maxTokens: number;
|
|
3957
4212
|
};
|
|
3958
|
-
readonly "accounts/fireworks/models/kimi-
|
|
4213
|
+
readonly "accounts/fireworks/models/kimi-k2p6": {
|
|
3959
4214
|
id: string;
|
|
3960
4215
|
name: string;
|
|
3961
4216
|
api: "anthropic-messages";
|
|
@@ -3978,7 +4233,7 @@ export declare const MODELS: {
|
|
|
3978
4233
|
contextWindow: number;
|
|
3979
4234
|
maxTokens: number;
|
|
3980
4235
|
};
|
|
3981
|
-
readonly "accounts/fireworks/models/kimi-
|
|
4236
|
+
readonly "accounts/fireworks/models/kimi-k2p7-code": {
|
|
3982
4237
|
id: string;
|
|
3983
4238
|
name: string;
|
|
3984
4239
|
api: "anthropic-messages";
|
|
@@ -4001,7 +4256,7 @@ export declare const MODELS: {
|
|
|
4001
4256
|
contextWindow: number;
|
|
4002
4257
|
maxTokens: number;
|
|
4003
4258
|
};
|
|
4004
|
-
readonly "accounts/fireworks/models/minimax-
|
|
4259
|
+
readonly "accounts/fireworks/models/minimax-m2p7": {
|
|
4005
4260
|
id: string;
|
|
4006
4261
|
name: string;
|
|
4007
4262
|
api: "anthropic-messages";
|
|
@@ -4024,7 +4279,7 @@ export declare const MODELS: {
|
|
|
4024
4279
|
contextWindow: number;
|
|
4025
4280
|
maxTokens: number;
|
|
4026
4281
|
};
|
|
4027
|
-
readonly "accounts/fireworks/models/minimax-
|
|
4282
|
+
readonly "accounts/fireworks/models/minimax-m3": {
|
|
4028
4283
|
id: string;
|
|
4029
4284
|
name: string;
|
|
4030
4285
|
api: "anthropic-messages";
|
|
@@ -4047,7 +4302,7 @@ export declare const MODELS: {
|
|
|
4047
4302
|
contextWindow: number;
|
|
4048
4303
|
maxTokens: number;
|
|
4049
4304
|
};
|
|
4050
|
-
readonly "accounts/fireworks/models/
|
|
4305
|
+
readonly "accounts/fireworks/models/qwen3p7-plus": {
|
|
4051
4306
|
id: string;
|
|
4052
4307
|
name: string;
|
|
4053
4308
|
api: "anthropic-messages";
|
|
@@ -4093,6 +4348,29 @@ export declare const MODELS: {
|
|
|
4093
4348
|
contextWindow: number;
|
|
4094
4349
|
maxTokens: number;
|
|
4095
4350
|
};
|
|
4351
|
+
readonly "accounts/fireworks/routers/kimi-k2p6-fast": {
|
|
4352
|
+
id: string;
|
|
4353
|
+
name: string;
|
|
4354
|
+
api: "anthropic-messages";
|
|
4355
|
+
provider: string;
|
|
4356
|
+
baseUrl: string;
|
|
4357
|
+
compat: {
|
|
4358
|
+
sendSessionAffinityHeaders: true;
|
|
4359
|
+
supportsEagerToolInputStreaming: false;
|
|
4360
|
+
supportsCacheControlOnTools: false;
|
|
4361
|
+
supportsLongCacheRetention: false;
|
|
4362
|
+
};
|
|
4363
|
+
reasoning: true;
|
|
4364
|
+
input: ("image" | "text")[];
|
|
4365
|
+
cost: {
|
|
4366
|
+
input: number;
|
|
4367
|
+
output: number;
|
|
4368
|
+
cacheRead: number;
|
|
4369
|
+
cacheWrite: number;
|
|
4370
|
+
};
|
|
4371
|
+
contextWindow: number;
|
|
4372
|
+
maxTokens: number;
|
|
4373
|
+
};
|
|
4096
4374
|
readonly "accounts/fireworks/routers/kimi-k2p6-turbo": {
|
|
4097
4375
|
id: string;
|
|
4098
4376
|
name: string;
|
|
@@ -4116,8 +4394,59 @@ export declare const MODELS: {
|
|
|
4116
4394
|
contextWindow: number;
|
|
4117
4395
|
maxTokens: number;
|
|
4118
4396
|
};
|
|
4397
|
+
readonly "accounts/fireworks/routers/kimi-k2p7-code-fast": {
|
|
4398
|
+
id: string;
|
|
4399
|
+
name: string;
|
|
4400
|
+
api: "anthropic-messages";
|
|
4401
|
+
provider: string;
|
|
4402
|
+
baseUrl: string;
|
|
4403
|
+
compat: {
|
|
4404
|
+
sendSessionAffinityHeaders: true;
|
|
4405
|
+
supportsEagerToolInputStreaming: false;
|
|
4406
|
+
supportsCacheControlOnTools: false;
|
|
4407
|
+
supportsLongCacheRetention: false;
|
|
4408
|
+
};
|
|
4409
|
+
reasoning: true;
|
|
4410
|
+
input: ("image" | "text")[];
|
|
4411
|
+
cost: {
|
|
4412
|
+
input: number;
|
|
4413
|
+
output: number;
|
|
4414
|
+
cacheRead: number;
|
|
4415
|
+
cacheWrite: number;
|
|
4416
|
+
};
|
|
4417
|
+
contextWindow: number;
|
|
4418
|
+
maxTokens: number;
|
|
4419
|
+
};
|
|
4119
4420
|
};
|
|
4120
4421
|
readonly "github-copilot": {
|
|
4422
|
+
readonly "claude-fable-5": {
|
|
4423
|
+
id: string;
|
|
4424
|
+
name: string;
|
|
4425
|
+
api: "openai-completions";
|
|
4426
|
+
provider: string;
|
|
4427
|
+
baseUrl: string;
|
|
4428
|
+
headers: {
|
|
4429
|
+
"User-Agent": string;
|
|
4430
|
+
"Editor-Version": string;
|
|
4431
|
+
"Editor-Plugin-Version": string;
|
|
4432
|
+
"Copilot-Integration-Id": string;
|
|
4433
|
+
};
|
|
4434
|
+
compat: {
|
|
4435
|
+
supportsStore: false;
|
|
4436
|
+
supportsDeveloperRole: false;
|
|
4437
|
+
supportsReasoningEffort: false;
|
|
4438
|
+
};
|
|
4439
|
+
reasoning: true;
|
|
4440
|
+
input: ("image" | "text")[];
|
|
4441
|
+
cost: {
|
|
4442
|
+
input: number;
|
|
4443
|
+
output: number;
|
|
4444
|
+
cacheRead: number;
|
|
4445
|
+
cacheWrite: number;
|
|
4446
|
+
};
|
|
4447
|
+
contextWindow: number;
|
|
4448
|
+
maxTokens: number;
|
|
4449
|
+
};
|
|
4121
4450
|
readonly "claude-haiku-4.5": {
|
|
4122
4451
|
id: string;
|
|
4123
4452
|
name: string;
|
|
@@ -4210,6 +4539,7 @@ export declare const MODELS: {
|
|
|
4210
4539
|
};
|
|
4211
4540
|
compat: {
|
|
4212
4541
|
forceAdaptiveThinking: true;
|
|
4542
|
+
supportsTemperature: false;
|
|
4213
4543
|
};
|
|
4214
4544
|
reasoning: true;
|
|
4215
4545
|
thinkingLevelMap: {
|
|
@@ -4239,6 +4569,7 @@ export declare const MODELS: {
|
|
|
4239
4569
|
};
|
|
4240
4570
|
compat: {
|
|
4241
4571
|
forceAdaptiveThinking: true;
|
|
4572
|
+
supportsTemperature: false;
|
|
4242
4573
|
};
|
|
4243
4574
|
reasoning: true;
|
|
4244
4575
|
thinkingLevelMap: {
|
|
@@ -4254,6 +4585,32 @@ export declare const MODELS: {
|
|
|
4254
4585
|
contextWindow: number;
|
|
4255
4586
|
maxTokens: number;
|
|
4256
4587
|
};
|
|
4588
|
+
readonly "claude-sonnet-4": {
|
|
4589
|
+
id: string;
|
|
4590
|
+
name: string;
|
|
4591
|
+
api: "anthropic-messages";
|
|
4592
|
+
provider: string;
|
|
4593
|
+
baseUrl: string;
|
|
4594
|
+
headers: {
|
|
4595
|
+
"User-Agent": string;
|
|
4596
|
+
"Editor-Version": string;
|
|
4597
|
+
"Editor-Plugin-Version": string;
|
|
4598
|
+
"Copilot-Integration-Id": string;
|
|
4599
|
+
};
|
|
4600
|
+
compat: {
|
|
4601
|
+
supportsEagerToolInputStreaming: false;
|
|
4602
|
+
};
|
|
4603
|
+
reasoning: true;
|
|
4604
|
+
input: ("image" | "text")[];
|
|
4605
|
+
cost: {
|
|
4606
|
+
input: number;
|
|
4607
|
+
output: number;
|
|
4608
|
+
cacheRead: number;
|
|
4609
|
+
cacheWrite: number;
|
|
4610
|
+
};
|
|
4611
|
+
contextWindow: number;
|
|
4612
|
+
maxTokens: number;
|
|
4613
|
+
};
|
|
4257
4614
|
readonly "claude-sonnet-4.5": {
|
|
4258
4615
|
id: string;
|
|
4259
4616
|
name: string;
|
|
@@ -4323,7 +4680,7 @@ export declare const MODELS: {
|
|
|
4323
4680
|
supportsDeveloperRole: false;
|
|
4324
4681
|
supportsReasoningEffort: false;
|
|
4325
4682
|
};
|
|
4326
|
-
reasoning:
|
|
4683
|
+
reasoning: true;
|
|
4327
4684
|
input: ("image" | "text")[];
|
|
4328
4685
|
cost: {
|
|
4329
4686
|
input: number;
|
|
@@ -4446,10 +4803,10 @@ export declare const MODELS: {
|
|
|
4446
4803
|
contextWindow: number;
|
|
4447
4804
|
maxTokens: number;
|
|
4448
4805
|
};
|
|
4449
|
-
readonly "gpt-
|
|
4806
|
+
readonly "gpt-5-mini": {
|
|
4450
4807
|
id: string;
|
|
4451
4808
|
name: string;
|
|
4452
|
-
api: "openai-
|
|
4809
|
+
api: "openai-responses";
|
|
4453
4810
|
provider: string;
|
|
4454
4811
|
baseUrl: string;
|
|
4455
4812
|
headers: {
|
|
@@ -4458,12 +4815,11 @@ export declare const MODELS: {
|
|
|
4458
4815
|
"Editor-Plugin-Version": string;
|
|
4459
4816
|
"Copilot-Integration-Id": string;
|
|
4460
4817
|
};
|
|
4461
|
-
|
|
4462
|
-
|
|
4463
|
-
|
|
4464
|
-
|
|
4818
|
+
reasoning: true;
|
|
4819
|
+
thinkingLevelMap: {
|
|
4820
|
+
off: null;
|
|
4821
|
+
minimal: string;
|
|
4465
4822
|
};
|
|
4466
|
-
reasoning: false;
|
|
4467
4823
|
input: ("image" | "text")[];
|
|
4468
4824
|
cost: {
|
|
4469
4825
|
input: number;
|
|
@@ -4474,7 +4830,7 @@ export declare const MODELS: {
|
|
|
4474
4830
|
contextWindow: number;
|
|
4475
4831
|
maxTokens: number;
|
|
4476
4832
|
};
|
|
4477
|
-
readonly "gpt-5
|
|
4833
|
+
readonly "gpt-5.2": {
|
|
4478
4834
|
id: string;
|
|
4479
4835
|
name: string;
|
|
4480
4836
|
api: "openai-responses";
|
|
@@ -4490,6 +4846,7 @@ export declare const MODELS: {
|
|
|
4490
4846
|
thinkingLevelMap: {
|
|
4491
4847
|
off: null;
|
|
4492
4848
|
minimal: string;
|
|
4849
|
+
xhigh: string;
|
|
4493
4850
|
};
|
|
4494
4851
|
input: ("image" | "text")[];
|
|
4495
4852
|
cost: {
|
|
@@ -4501,7 +4858,7 @@ export declare const MODELS: {
|
|
|
4501
4858
|
contextWindow: number;
|
|
4502
4859
|
maxTokens: number;
|
|
4503
4860
|
};
|
|
4504
|
-
readonly "gpt-5.2": {
|
|
4861
|
+
readonly "gpt-5.2-codex": {
|
|
4505
4862
|
id: string;
|
|
4506
4863
|
name: string;
|
|
4507
4864
|
api: "openai-responses";
|
|
@@ -4529,7 +4886,7 @@ export declare const MODELS: {
|
|
|
4529
4886
|
contextWindow: number;
|
|
4530
4887
|
maxTokens: number;
|
|
4531
4888
|
};
|
|
4532
|
-
readonly "gpt-5.
|
|
4889
|
+
readonly "gpt-5.3-codex": {
|
|
4533
4890
|
id: string;
|
|
4534
4891
|
name: string;
|
|
4535
4892
|
api: "openai-responses";
|
|
@@ -4557,7 +4914,7 @@ export declare const MODELS: {
|
|
|
4557
4914
|
contextWindow: number;
|
|
4558
4915
|
maxTokens: number;
|
|
4559
4916
|
};
|
|
4560
|
-
readonly "gpt-5.
|
|
4917
|
+
readonly "gpt-5.4": {
|
|
4561
4918
|
id: string;
|
|
4562
4919
|
name: string;
|
|
4563
4920
|
api: "openai-responses";
|
|
@@ -4585,7 +4942,7 @@ export declare const MODELS: {
|
|
|
4585
4942
|
contextWindow: number;
|
|
4586
4943
|
maxTokens: number;
|
|
4587
4944
|
};
|
|
4588
|
-
readonly "gpt-5.4": {
|
|
4945
|
+
readonly "gpt-5.4-mini": {
|
|
4589
4946
|
id: string;
|
|
4590
4947
|
name: string;
|
|
4591
4948
|
api: "openai-responses";
|
|
@@ -4613,7 +4970,7 @@ export declare const MODELS: {
|
|
|
4613
4970
|
contextWindow: number;
|
|
4614
4971
|
maxTokens: number;
|
|
4615
4972
|
};
|
|
4616
|
-
readonly "gpt-5.4-
|
|
4973
|
+
readonly "gpt-5.4-nano": {
|
|
4617
4974
|
id: string;
|
|
4618
4975
|
name: string;
|
|
4619
4976
|
api: "openai-responses";
|
|
@@ -4669,7 +5026,7 @@ export declare const MODELS: {
|
|
|
4669
5026
|
contextWindow: number;
|
|
4670
5027
|
maxTokens: number;
|
|
4671
5028
|
};
|
|
4672
|
-
readonly "
|
|
5029
|
+
readonly "raptor-mini": {
|
|
4673
5030
|
id: string;
|
|
4674
5031
|
name: string;
|
|
4675
5032
|
api: "openai-completions";
|
|
@@ -4687,7 +5044,7 @@ export declare const MODELS: {
|
|
|
4687
5044
|
supportsReasoningEffort: false;
|
|
4688
5045
|
};
|
|
4689
5046
|
reasoning: true;
|
|
4690
|
-
input: "text"[];
|
|
5047
|
+
input: ("image" | "text")[];
|
|
4691
5048
|
cost: {
|
|
4692
5049
|
input: number;
|
|
4693
5050
|
output: number;
|
|
@@ -5267,13 +5624,13 @@ export declare const MODELS: {
|
|
|
5267
5624
|
};
|
|
5268
5625
|
};
|
|
5269
5626
|
readonly groq: {
|
|
5270
|
-
readonly "
|
|
5627
|
+
readonly "llama-3.1-8b-instant": {
|
|
5271
5628
|
id: string;
|
|
5272
5629
|
name: string;
|
|
5273
5630
|
api: "openai-completions";
|
|
5274
5631
|
provider: string;
|
|
5275
5632
|
baseUrl: string;
|
|
5276
|
-
reasoning:
|
|
5633
|
+
reasoning: false;
|
|
5277
5634
|
input: "text"[];
|
|
5278
5635
|
cost: {
|
|
5279
5636
|
input: number;
|
|
@@ -5284,7 +5641,7 @@ export declare const MODELS: {
|
|
|
5284
5641
|
contextWindow: number;
|
|
5285
5642
|
maxTokens: number;
|
|
5286
5643
|
};
|
|
5287
|
-
readonly "
|
|
5644
|
+
readonly "llama-3.3-70b-versatile": {
|
|
5288
5645
|
id: string;
|
|
5289
5646
|
name: string;
|
|
5290
5647
|
api: "openai-completions";
|
|
@@ -5301,14 +5658,14 @@ export declare const MODELS: {
|
|
|
5301
5658
|
contextWindow: number;
|
|
5302
5659
|
maxTokens: number;
|
|
5303
5660
|
};
|
|
5304
|
-
readonly "
|
|
5661
|
+
readonly "meta-llama/llama-4-scout-17b-16e-instruct": {
|
|
5305
5662
|
id: string;
|
|
5306
5663
|
name: string;
|
|
5307
5664
|
api: "openai-completions";
|
|
5308
5665
|
provider: string;
|
|
5309
5666
|
baseUrl: string;
|
|
5310
|
-
reasoning:
|
|
5311
|
-
input: "text"[];
|
|
5667
|
+
reasoning: false;
|
|
5668
|
+
input: ("image" | "text")[];
|
|
5312
5669
|
cost: {
|
|
5313
5670
|
input: number;
|
|
5314
5671
|
output: number;
|
|
@@ -5318,7 +5675,7 @@ export declare const MODELS: {
|
|
|
5318
5675
|
contextWindow: number;
|
|
5319
5676
|
maxTokens: number;
|
|
5320
5677
|
};
|
|
5321
|
-
readonly "
|
|
5678
|
+
readonly "openai/gpt-oss-120b": {
|
|
5322
5679
|
id: string;
|
|
5323
5680
|
name: string;
|
|
5324
5681
|
api: "openai-completions";
|
|
@@ -5335,13 +5692,13 @@ export declare const MODELS: {
|
|
|
5335
5692
|
contextWindow: number;
|
|
5336
5693
|
maxTokens: number;
|
|
5337
5694
|
};
|
|
5338
|
-
readonly "
|
|
5695
|
+
readonly "openai/gpt-oss-20b": {
|
|
5339
5696
|
id: string;
|
|
5340
5697
|
name: string;
|
|
5341
5698
|
api: "openai-completions";
|
|
5342
5699
|
provider: string;
|
|
5343
5700
|
baseUrl: string;
|
|
5344
|
-
reasoning:
|
|
5701
|
+
reasoning: true;
|
|
5345
5702
|
input: "text"[];
|
|
5346
5703
|
cost: {
|
|
5347
5704
|
input: number;
|
|
@@ -5352,13 +5709,13 @@ export declare const MODELS: {
|
|
|
5352
5709
|
contextWindow: number;
|
|
5353
5710
|
maxTokens: number;
|
|
5354
5711
|
};
|
|
5355
|
-
readonly "
|
|
5712
|
+
readonly "openai/gpt-oss-safeguard-20b": {
|
|
5356
5713
|
id: string;
|
|
5357
5714
|
name: string;
|
|
5358
5715
|
api: "openai-completions";
|
|
5359
5716
|
provider: string;
|
|
5360
5717
|
baseUrl: string;
|
|
5361
|
-
reasoning:
|
|
5718
|
+
reasoning: true;
|
|
5362
5719
|
input: "text"[];
|
|
5363
5720
|
cost: {
|
|
5364
5721
|
input: number;
|
|
@@ -5369,13 +5726,19 @@ export declare const MODELS: {
|
|
|
5369
5726
|
contextWindow: number;
|
|
5370
5727
|
maxTokens: number;
|
|
5371
5728
|
};
|
|
5372
|
-
readonly "
|
|
5729
|
+
readonly "qwen/qwen3-32b": {
|
|
5373
5730
|
id: string;
|
|
5374
5731
|
name: string;
|
|
5375
5732
|
api: "openai-completions";
|
|
5376
5733
|
provider: string;
|
|
5377
5734
|
baseUrl: string;
|
|
5378
|
-
reasoning:
|
|
5735
|
+
reasoning: true;
|
|
5736
|
+
thinkingLevelMap: {
|
|
5737
|
+
minimal: null;
|
|
5738
|
+
low: null;
|
|
5739
|
+
medium: null;
|
|
5740
|
+
high: string;
|
|
5741
|
+
};
|
|
5379
5742
|
input: "text"[];
|
|
5380
5743
|
cost: {
|
|
5381
5744
|
input: number;
|
|
@@ -5386,13 +5749,18 @@ export declare const MODELS: {
|
|
|
5386
5749
|
contextWindow: number;
|
|
5387
5750
|
maxTokens: number;
|
|
5388
5751
|
};
|
|
5389
|
-
|
|
5752
|
+
};
|
|
5753
|
+
readonly huggingface: {
|
|
5754
|
+
readonly "MiniMaxAI/MiniMax-M2.1": {
|
|
5390
5755
|
id: string;
|
|
5391
5756
|
name: string;
|
|
5392
5757
|
api: "openai-completions";
|
|
5393
5758
|
provider: string;
|
|
5394
5759
|
baseUrl: string;
|
|
5395
|
-
|
|
5760
|
+
compat: {
|
|
5761
|
+
supportsDeveloperRole: false;
|
|
5762
|
+
};
|
|
5763
|
+
reasoning: true;
|
|
5396
5764
|
input: "text"[];
|
|
5397
5765
|
cost: {
|
|
5398
5766
|
input: number;
|
|
@@ -5403,14 +5771,17 @@ export declare const MODELS: {
|
|
|
5403
5771
|
contextWindow: number;
|
|
5404
5772
|
maxTokens: number;
|
|
5405
5773
|
};
|
|
5406
|
-
readonly "
|
|
5774
|
+
readonly "MiniMaxAI/MiniMax-M2.5": {
|
|
5407
5775
|
id: string;
|
|
5408
5776
|
name: string;
|
|
5409
5777
|
api: "openai-completions";
|
|
5410
5778
|
provider: string;
|
|
5411
5779
|
baseUrl: string;
|
|
5412
|
-
|
|
5413
|
-
|
|
5780
|
+
compat: {
|
|
5781
|
+
supportsDeveloperRole: false;
|
|
5782
|
+
};
|
|
5783
|
+
reasoning: true;
|
|
5784
|
+
input: "text"[];
|
|
5414
5785
|
cost: {
|
|
5415
5786
|
input: number;
|
|
5416
5787
|
output: number;
|
|
@@ -5420,14 +5791,17 @@ export declare const MODELS: {
|
|
|
5420
5791
|
contextWindow: number;
|
|
5421
5792
|
maxTokens: number;
|
|
5422
5793
|
};
|
|
5423
|
-
readonly "
|
|
5794
|
+
readonly "MiniMaxAI/MiniMax-M2.7": {
|
|
5424
5795
|
id: string;
|
|
5425
5796
|
name: string;
|
|
5426
5797
|
api: "openai-completions";
|
|
5427
5798
|
provider: string;
|
|
5428
5799
|
baseUrl: string;
|
|
5429
|
-
|
|
5430
|
-
|
|
5800
|
+
compat: {
|
|
5801
|
+
supportsDeveloperRole: false;
|
|
5802
|
+
};
|
|
5803
|
+
reasoning: true;
|
|
5804
|
+
input: "text"[];
|
|
5431
5805
|
cost: {
|
|
5432
5806
|
input: number;
|
|
5433
5807
|
output: number;
|
|
@@ -5437,13 +5811,16 @@ export declare const MODELS: {
|
|
|
5437
5811
|
contextWindow: number;
|
|
5438
5812
|
maxTokens: number;
|
|
5439
5813
|
};
|
|
5440
|
-
readonly "
|
|
5814
|
+
readonly "Qwen/Qwen3-235B-A22B-Thinking-2507": {
|
|
5441
5815
|
id: string;
|
|
5442
5816
|
name: string;
|
|
5443
5817
|
api: "openai-completions";
|
|
5444
5818
|
provider: string;
|
|
5445
5819
|
baseUrl: string;
|
|
5446
|
-
|
|
5820
|
+
compat: {
|
|
5821
|
+
supportsDeveloperRole: false;
|
|
5822
|
+
};
|
|
5823
|
+
reasoning: true;
|
|
5447
5824
|
input: "text"[];
|
|
5448
5825
|
cost: {
|
|
5449
5826
|
input: number;
|
|
@@ -5454,12 +5831,15 @@ export declare const MODELS: {
|
|
|
5454
5831
|
contextWindow: number;
|
|
5455
5832
|
maxTokens: number;
|
|
5456
5833
|
};
|
|
5457
|
-
readonly "
|
|
5834
|
+
readonly "Qwen/Qwen3-Coder-480B-A35B-Instruct": {
|
|
5458
5835
|
id: string;
|
|
5459
5836
|
name: string;
|
|
5460
5837
|
api: "openai-completions";
|
|
5461
5838
|
provider: string;
|
|
5462
5839
|
baseUrl: string;
|
|
5840
|
+
compat: {
|
|
5841
|
+
supportsDeveloperRole: false;
|
|
5842
|
+
};
|
|
5463
5843
|
reasoning: false;
|
|
5464
5844
|
input: "text"[];
|
|
5465
5845
|
cost: {
|
|
@@ -5471,12 +5851,15 @@ export declare const MODELS: {
|
|
|
5471
5851
|
contextWindow: number;
|
|
5472
5852
|
maxTokens: number;
|
|
5473
5853
|
};
|
|
5474
|
-
readonly "
|
|
5854
|
+
readonly "Qwen/Qwen3-Coder-Next": {
|
|
5475
5855
|
id: string;
|
|
5476
5856
|
name: string;
|
|
5477
5857
|
api: "openai-completions";
|
|
5478
5858
|
provider: string;
|
|
5479
5859
|
baseUrl: string;
|
|
5860
|
+
compat: {
|
|
5861
|
+
supportsDeveloperRole: false;
|
|
5862
|
+
};
|
|
5480
5863
|
reasoning: false;
|
|
5481
5864
|
input: "text"[];
|
|
5482
5865
|
cost: {
|
|
@@ -5488,13 +5871,16 @@ export declare const MODELS: {
|
|
|
5488
5871
|
contextWindow: number;
|
|
5489
5872
|
maxTokens: number;
|
|
5490
5873
|
};
|
|
5491
|
-
readonly "
|
|
5874
|
+
readonly "Qwen/Qwen3-Next-80B-A3B-Instruct": {
|
|
5492
5875
|
id: string;
|
|
5493
5876
|
name: string;
|
|
5494
5877
|
api: "openai-completions";
|
|
5495
5878
|
provider: string;
|
|
5496
5879
|
baseUrl: string;
|
|
5497
|
-
|
|
5880
|
+
compat: {
|
|
5881
|
+
supportsDeveloperRole: false;
|
|
5882
|
+
};
|
|
5883
|
+
reasoning: false;
|
|
5498
5884
|
input: "text"[];
|
|
5499
5885
|
cost: {
|
|
5500
5886
|
input: number;
|
|
@@ -5505,13 +5891,16 @@ export declare const MODELS: {
|
|
|
5505
5891
|
contextWindow: number;
|
|
5506
5892
|
maxTokens: number;
|
|
5507
5893
|
};
|
|
5508
|
-
readonly "
|
|
5894
|
+
readonly "Qwen/Qwen3-Next-80B-A3B-Thinking": {
|
|
5509
5895
|
id: string;
|
|
5510
5896
|
name: string;
|
|
5511
5897
|
api: "openai-completions";
|
|
5512
5898
|
provider: string;
|
|
5513
5899
|
baseUrl: string;
|
|
5514
|
-
|
|
5900
|
+
compat: {
|
|
5901
|
+
supportsDeveloperRole: false;
|
|
5902
|
+
};
|
|
5903
|
+
reasoning: false;
|
|
5515
5904
|
input: "text"[];
|
|
5516
5905
|
cost: {
|
|
5517
5906
|
input: number;
|
|
@@ -5522,14 +5911,17 @@ export declare const MODELS: {
|
|
|
5522
5911
|
contextWindow: number;
|
|
5523
5912
|
maxTokens: number;
|
|
5524
5913
|
};
|
|
5525
|
-
readonly "
|
|
5914
|
+
readonly "Qwen/Qwen3.5-397B-A17B": {
|
|
5526
5915
|
id: string;
|
|
5527
5916
|
name: string;
|
|
5528
5917
|
api: "openai-completions";
|
|
5529
5918
|
provider: string;
|
|
5530
5919
|
baseUrl: string;
|
|
5920
|
+
compat: {
|
|
5921
|
+
supportsDeveloperRole: false;
|
|
5922
|
+
};
|
|
5531
5923
|
reasoning: true;
|
|
5532
|
-
input: "text"[];
|
|
5924
|
+
input: ("image" | "text")[];
|
|
5533
5925
|
cost: {
|
|
5534
5926
|
input: number;
|
|
5535
5927
|
output: number;
|
|
@@ -5539,12 +5931,15 @@ export declare const MODELS: {
|
|
|
5539
5931
|
contextWindow: number;
|
|
5540
5932
|
maxTokens: number;
|
|
5541
5933
|
};
|
|
5542
|
-
readonly "
|
|
5934
|
+
readonly "XiaomiMiMo/MiMo-V2-Flash": {
|
|
5543
5935
|
id: string;
|
|
5544
5936
|
name: string;
|
|
5545
5937
|
api: "openai-completions";
|
|
5546
5938
|
provider: string;
|
|
5547
5939
|
baseUrl: string;
|
|
5940
|
+
compat: {
|
|
5941
|
+
supportsDeveloperRole: false;
|
|
5942
|
+
};
|
|
5548
5943
|
reasoning: true;
|
|
5549
5944
|
input: "text"[];
|
|
5550
5945
|
cost: {
|
|
@@ -5556,60 +5951,15 @@ export declare const MODELS: {
|
|
|
5556
5951
|
contextWindow: number;
|
|
5557
5952
|
maxTokens: number;
|
|
5558
5953
|
};
|
|
5559
|
-
readonly "
|
|
5954
|
+
readonly "deepseek-ai/DeepSeek-R1-0528": {
|
|
5560
5955
|
id: string;
|
|
5561
5956
|
name: string;
|
|
5562
5957
|
api: "openai-completions";
|
|
5563
5958
|
provider: string;
|
|
5564
5959
|
baseUrl: string;
|
|
5565
|
-
|
|
5566
|
-
|
|
5567
|
-
|
|
5568
|
-
low: null;
|
|
5569
|
-
medium: null;
|
|
5570
|
-
high: string;
|
|
5571
|
-
};
|
|
5572
|
-
input: "text"[];
|
|
5573
|
-
cost: {
|
|
5574
|
-
input: number;
|
|
5575
|
-
output: number;
|
|
5576
|
-
cacheRead: number;
|
|
5577
|
-
cacheWrite: number;
|
|
5578
|
-
};
|
|
5579
|
-
contextWindow: number;
|
|
5580
|
-
maxTokens: number;
|
|
5581
|
-
};
|
|
5582
|
-
};
|
|
5583
|
-
readonly huggingface: {
|
|
5584
|
-
readonly "MiniMaxAI/MiniMax-M2.1": {
|
|
5585
|
-
id: string;
|
|
5586
|
-
name: string;
|
|
5587
|
-
api: "openai-completions";
|
|
5588
|
-
provider: string;
|
|
5589
|
-
baseUrl: string;
|
|
5590
|
-
compat: {
|
|
5591
|
-
supportsDeveloperRole: false;
|
|
5592
|
-
};
|
|
5593
|
-
reasoning: true;
|
|
5594
|
-
input: "text"[];
|
|
5595
|
-
cost: {
|
|
5596
|
-
input: number;
|
|
5597
|
-
output: number;
|
|
5598
|
-
cacheRead: number;
|
|
5599
|
-
cacheWrite: number;
|
|
5600
|
-
};
|
|
5601
|
-
contextWindow: number;
|
|
5602
|
-
maxTokens: number;
|
|
5603
|
-
};
|
|
5604
|
-
readonly "MiniMaxAI/MiniMax-M2.5": {
|
|
5605
|
-
id: string;
|
|
5606
|
-
name: string;
|
|
5607
|
-
api: "openai-completions";
|
|
5608
|
-
provider: string;
|
|
5609
|
-
baseUrl: string;
|
|
5610
|
-
compat: {
|
|
5611
|
-
supportsDeveloperRole: false;
|
|
5612
|
-
};
|
|
5960
|
+
compat: {
|
|
5961
|
+
supportsDeveloperRole: false;
|
|
5962
|
+
};
|
|
5613
5963
|
reasoning: true;
|
|
5614
5964
|
input: "text"[];
|
|
5615
5965
|
cost: {
|
|
@@ -5621,7 +5971,7 @@ export declare const MODELS: {
|
|
|
5621
5971
|
contextWindow: number;
|
|
5622
5972
|
maxTokens: number;
|
|
5623
5973
|
};
|
|
5624
|
-
readonly "
|
|
5974
|
+
readonly "deepseek-ai/DeepSeek-V3.2": {
|
|
5625
5975
|
id: string;
|
|
5626
5976
|
name: string;
|
|
5627
5977
|
api: "openai-completions";
|
|
@@ -5641,7 +5991,7 @@ export declare const MODELS: {
|
|
|
5641
5991
|
contextWindow: number;
|
|
5642
5992
|
maxTokens: number;
|
|
5643
5993
|
};
|
|
5644
|
-
readonly "
|
|
5994
|
+
readonly "deepseek-ai/DeepSeek-V4-Pro": {
|
|
5645
5995
|
id: string;
|
|
5646
5996
|
name: string;
|
|
5647
5997
|
api: "openai-completions";
|
|
@@ -5661,27 +6011,7 @@ export declare const MODELS: {
|
|
|
5661
6011
|
contextWindow: number;
|
|
5662
6012
|
maxTokens: number;
|
|
5663
6013
|
};
|
|
5664
|
-
readonly "
|
|
5665
|
-
id: string;
|
|
5666
|
-
name: string;
|
|
5667
|
-
api: "openai-completions";
|
|
5668
|
-
provider: string;
|
|
5669
|
-
baseUrl: string;
|
|
5670
|
-
compat: {
|
|
5671
|
-
supportsDeveloperRole: false;
|
|
5672
|
-
};
|
|
5673
|
-
reasoning: false;
|
|
5674
|
-
input: "text"[];
|
|
5675
|
-
cost: {
|
|
5676
|
-
input: number;
|
|
5677
|
-
output: number;
|
|
5678
|
-
cacheRead: number;
|
|
5679
|
-
cacheWrite: number;
|
|
5680
|
-
};
|
|
5681
|
-
contextWindow: number;
|
|
5682
|
-
maxTokens: number;
|
|
5683
|
-
};
|
|
5684
|
-
readonly "Qwen/Qwen3-Coder-Next": {
|
|
6014
|
+
readonly "moonshotai/Kimi-K2-Instruct": {
|
|
5685
6015
|
id: string;
|
|
5686
6016
|
name: string;
|
|
5687
6017
|
api: "openai-completions";
|
|
@@ -5701,7 +6031,7 @@ export declare const MODELS: {
|
|
|
5701
6031
|
contextWindow: number;
|
|
5702
6032
|
maxTokens: number;
|
|
5703
6033
|
};
|
|
5704
|
-
readonly "
|
|
6034
|
+
readonly "moonshotai/Kimi-K2-Instruct-0905": {
|
|
5705
6035
|
id: string;
|
|
5706
6036
|
name: string;
|
|
5707
6037
|
api: "openai-completions";
|
|
@@ -5721,7 +6051,7 @@ export declare const MODELS: {
|
|
|
5721
6051
|
contextWindow: number;
|
|
5722
6052
|
maxTokens: number;
|
|
5723
6053
|
};
|
|
5724
|
-
readonly "
|
|
6054
|
+
readonly "moonshotai/Kimi-K2-Thinking": {
|
|
5725
6055
|
id: string;
|
|
5726
6056
|
name: string;
|
|
5727
6057
|
api: "openai-completions";
|
|
@@ -5730,7 +6060,7 @@ export declare const MODELS: {
|
|
|
5730
6060
|
compat: {
|
|
5731
6061
|
supportsDeveloperRole: false;
|
|
5732
6062
|
};
|
|
5733
|
-
reasoning:
|
|
6063
|
+
reasoning: true;
|
|
5734
6064
|
input: "text"[];
|
|
5735
6065
|
cost: {
|
|
5736
6066
|
input: number;
|
|
@@ -5741,7 +6071,7 @@ export declare const MODELS: {
|
|
|
5741
6071
|
contextWindow: number;
|
|
5742
6072
|
maxTokens: number;
|
|
5743
6073
|
};
|
|
5744
|
-
readonly "
|
|
6074
|
+
readonly "moonshotai/Kimi-K2.5": {
|
|
5745
6075
|
id: string;
|
|
5746
6076
|
name: string;
|
|
5747
6077
|
api: "openai-completions";
|
|
@@ -5761,7 +6091,7 @@ export declare const MODELS: {
|
|
|
5761
6091
|
contextWindow: number;
|
|
5762
6092
|
maxTokens: number;
|
|
5763
6093
|
};
|
|
5764
|
-
readonly "
|
|
6094
|
+
readonly "moonshotai/Kimi-K2.6": {
|
|
5765
6095
|
id: string;
|
|
5766
6096
|
name: string;
|
|
5767
6097
|
api: "openai-completions";
|
|
@@ -5771,7 +6101,7 @@ export declare const MODELS: {
|
|
|
5771
6101
|
supportsDeveloperRole: false;
|
|
5772
6102
|
};
|
|
5773
6103
|
reasoning: true;
|
|
5774
|
-
input: "text"[];
|
|
6104
|
+
input: ("image" | "text")[];
|
|
5775
6105
|
cost: {
|
|
5776
6106
|
input: number;
|
|
5777
6107
|
output: number;
|
|
@@ -5781,7 +6111,7 @@ export declare const MODELS: {
|
|
|
5781
6111
|
contextWindow: number;
|
|
5782
6112
|
maxTokens: number;
|
|
5783
6113
|
};
|
|
5784
|
-
readonly "
|
|
6114
|
+
readonly "zai-org/GLM-4.7": {
|
|
5785
6115
|
id: string;
|
|
5786
6116
|
name: string;
|
|
5787
6117
|
api: "openai-completions";
|
|
@@ -5801,7 +6131,7 @@ export declare const MODELS: {
|
|
|
5801
6131
|
contextWindow: number;
|
|
5802
6132
|
maxTokens: number;
|
|
5803
6133
|
};
|
|
5804
|
-
readonly "
|
|
6134
|
+
readonly "zai-org/GLM-4.7-Flash": {
|
|
5805
6135
|
id: string;
|
|
5806
6136
|
name: string;
|
|
5807
6137
|
api: "openai-completions";
|
|
@@ -5821,7 +6151,7 @@ export declare const MODELS: {
|
|
|
5821
6151
|
contextWindow: number;
|
|
5822
6152
|
maxTokens: number;
|
|
5823
6153
|
};
|
|
5824
|
-
readonly "
|
|
6154
|
+
readonly "zai-org/GLM-5": {
|
|
5825
6155
|
id: string;
|
|
5826
6156
|
name: string;
|
|
5827
6157
|
api: "openai-completions";
|
|
@@ -5841,47 +6171,7 @@ export declare const MODELS: {
|
|
|
5841
6171
|
contextWindow: number;
|
|
5842
6172
|
maxTokens: number;
|
|
5843
6173
|
};
|
|
5844
|
-
readonly "
|
|
5845
|
-
id: string;
|
|
5846
|
-
name: string;
|
|
5847
|
-
api: "openai-completions";
|
|
5848
|
-
provider: string;
|
|
5849
|
-
baseUrl: string;
|
|
5850
|
-
compat: {
|
|
5851
|
-
supportsDeveloperRole: false;
|
|
5852
|
-
};
|
|
5853
|
-
reasoning: false;
|
|
5854
|
-
input: "text"[];
|
|
5855
|
-
cost: {
|
|
5856
|
-
input: number;
|
|
5857
|
-
output: number;
|
|
5858
|
-
cacheRead: number;
|
|
5859
|
-
cacheWrite: number;
|
|
5860
|
-
};
|
|
5861
|
-
contextWindow: number;
|
|
5862
|
-
maxTokens: number;
|
|
5863
|
-
};
|
|
5864
|
-
readonly "moonshotai/Kimi-K2-Instruct-0905": {
|
|
5865
|
-
id: string;
|
|
5866
|
-
name: string;
|
|
5867
|
-
api: "openai-completions";
|
|
5868
|
-
provider: string;
|
|
5869
|
-
baseUrl: string;
|
|
5870
|
-
compat: {
|
|
5871
|
-
supportsDeveloperRole: false;
|
|
5872
|
-
};
|
|
5873
|
-
reasoning: false;
|
|
5874
|
-
input: "text"[];
|
|
5875
|
-
cost: {
|
|
5876
|
-
input: number;
|
|
5877
|
-
output: number;
|
|
5878
|
-
cacheRead: number;
|
|
5879
|
-
cacheWrite: number;
|
|
5880
|
-
};
|
|
5881
|
-
contextWindow: number;
|
|
5882
|
-
maxTokens: number;
|
|
5883
|
-
};
|
|
5884
|
-
readonly "moonshotai/Kimi-K2-Thinking": {
|
|
6174
|
+
readonly "zai-org/GLM-5.1": {
|
|
5885
6175
|
id: string;
|
|
5886
6176
|
name: string;
|
|
5887
6177
|
api: "openai-completions";
|
|
@@ -5901,14 +6191,16 @@ export declare const MODELS: {
|
|
|
5901
6191
|
contextWindow: number;
|
|
5902
6192
|
maxTokens: number;
|
|
5903
6193
|
};
|
|
5904
|
-
|
|
6194
|
+
};
|
|
6195
|
+
readonly "kimi-coding": {
|
|
6196
|
+
readonly k2p7: {
|
|
5905
6197
|
id: string;
|
|
5906
6198
|
name: string;
|
|
5907
|
-
api: "
|
|
6199
|
+
api: "anthropic-messages";
|
|
5908
6200
|
provider: string;
|
|
5909
6201
|
baseUrl: string;
|
|
5910
|
-
|
|
5911
|
-
|
|
6202
|
+
headers: {
|
|
6203
|
+
"User-Agent": string;
|
|
5912
6204
|
};
|
|
5913
6205
|
reasoning: true;
|
|
5914
6206
|
input: ("image" | "text")[];
|
|
@@ -5921,14 +6213,14 @@ export declare const MODELS: {
|
|
|
5921
6213
|
contextWindow: number;
|
|
5922
6214
|
maxTokens: number;
|
|
5923
6215
|
};
|
|
5924
|
-
readonly "
|
|
6216
|
+
readonly "kimi-for-coding": {
|
|
5925
6217
|
id: string;
|
|
5926
6218
|
name: string;
|
|
5927
|
-
api: "
|
|
6219
|
+
api: "anthropic-messages";
|
|
5928
6220
|
provider: string;
|
|
5929
6221
|
baseUrl: string;
|
|
5930
|
-
|
|
5931
|
-
|
|
6222
|
+
headers: {
|
|
6223
|
+
"User-Agent": string;
|
|
5932
6224
|
};
|
|
5933
6225
|
reasoning: true;
|
|
5934
6226
|
input: ("image" | "text")[];
|
|
@@ -5941,34 +6233,14 @@ export declare const MODELS: {
|
|
|
5941
6233
|
contextWindow: number;
|
|
5942
6234
|
maxTokens: number;
|
|
5943
6235
|
};
|
|
5944
|
-
readonly "
|
|
5945
|
-
id: string;
|
|
5946
|
-
name: string;
|
|
5947
|
-
api: "openai-completions";
|
|
5948
|
-
provider: string;
|
|
5949
|
-
baseUrl: string;
|
|
5950
|
-
compat: {
|
|
5951
|
-
supportsDeveloperRole: false;
|
|
5952
|
-
};
|
|
5953
|
-
reasoning: true;
|
|
5954
|
-
input: "text"[];
|
|
5955
|
-
cost: {
|
|
5956
|
-
input: number;
|
|
5957
|
-
output: number;
|
|
5958
|
-
cacheRead: number;
|
|
5959
|
-
cacheWrite: number;
|
|
5960
|
-
};
|
|
5961
|
-
contextWindow: number;
|
|
5962
|
-
maxTokens: number;
|
|
5963
|
-
};
|
|
5964
|
-
readonly "zai-org/GLM-4.7-Flash": {
|
|
6236
|
+
readonly "kimi-k2-thinking": {
|
|
5965
6237
|
id: string;
|
|
5966
6238
|
name: string;
|
|
5967
|
-
api: "
|
|
6239
|
+
api: "anthropic-messages";
|
|
5968
6240
|
provider: string;
|
|
5969
6241
|
baseUrl: string;
|
|
5970
|
-
|
|
5971
|
-
|
|
6242
|
+
headers: {
|
|
6243
|
+
"User-Agent": string;
|
|
5972
6244
|
};
|
|
5973
6245
|
reasoning: true;
|
|
5974
6246
|
input: "text"[];
|
|
@@ -5981,15 +6253,14 @@ export declare const MODELS: {
|
|
|
5981
6253
|
contextWindow: number;
|
|
5982
6254
|
maxTokens: number;
|
|
5983
6255
|
};
|
|
5984
|
-
|
|
6256
|
+
};
|
|
6257
|
+
readonly minimax: {
|
|
6258
|
+
readonly "MiniMax-M2.7": {
|
|
5985
6259
|
id: string;
|
|
5986
6260
|
name: string;
|
|
5987
|
-
api: "
|
|
6261
|
+
api: "anthropic-messages";
|
|
5988
6262
|
provider: string;
|
|
5989
6263
|
baseUrl: string;
|
|
5990
|
-
compat: {
|
|
5991
|
-
supportsDeveloperRole: false;
|
|
5992
|
-
};
|
|
5993
6264
|
reasoning: true;
|
|
5994
6265
|
input: "text"[];
|
|
5995
6266
|
cost: {
|
|
@@ -6001,15 +6272,12 @@ export declare const MODELS: {
|
|
|
6001
6272
|
contextWindow: number;
|
|
6002
6273
|
maxTokens: number;
|
|
6003
6274
|
};
|
|
6004
|
-
readonly "
|
|
6275
|
+
readonly "MiniMax-M2.7-highspeed": {
|
|
6005
6276
|
id: string;
|
|
6006
6277
|
name: string;
|
|
6007
|
-
api: "
|
|
6278
|
+
api: "anthropic-messages";
|
|
6008
6279
|
provider: string;
|
|
6009
6280
|
baseUrl: string;
|
|
6010
|
-
compat: {
|
|
6011
|
-
supportsDeveloperRole: false;
|
|
6012
|
-
};
|
|
6013
6281
|
reasoning: true;
|
|
6014
6282
|
input: "text"[];
|
|
6015
6283
|
cost: {
|
|
@@ -6021,17 +6289,12 @@ export declare const MODELS: {
|
|
|
6021
6289
|
contextWindow: number;
|
|
6022
6290
|
maxTokens: number;
|
|
6023
6291
|
};
|
|
6024
|
-
|
|
6025
|
-
readonly "kimi-coding": {
|
|
6026
|
-
readonly "kimi-for-coding": {
|
|
6292
|
+
readonly "MiniMax-M3": {
|
|
6027
6293
|
id: string;
|
|
6028
6294
|
name: string;
|
|
6029
6295
|
api: "anthropic-messages";
|
|
6030
6296
|
provider: string;
|
|
6031
6297
|
baseUrl: string;
|
|
6032
|
-
headers: {
|
|
6033
|
-
"User-Agent": string;
|
|
6034
|
-
};
|
|
6035
6298
|
reasoning: true;
|
|
6036
6299
|
input: ("image" | "text")[];
|
|
6037
6300
|
cost: {
|
|
@@ -6043,28 +6306,8 @@ export declare const MODELS: {
|
|
|
6043
6306
|
contextWindow: number;
|
|
6044
6307
|
maxTokens: number;
|
|
6045
6308
|
};
|
|
6046
|
-
readonly "kimi-k2-thinking": {
|
|
6047
|
-
id: string;
|
|
6048
|
-
name: string;
|
|
6049
|
-
api: "anthropic-messages";
|
|
6050
|
-
provider: string;
|
|
6051
|
-
baseUrl: string;
|
|
6052
|
-
headers: {
|
|
6053
|
-
"User-Agent": string;
|
|
6054
|
-
};
|
|
6055
|
-
reasoning: true;
|
|
6056
|
-
input: "text"[];
|
|
6057
|
-
cost: {
|
|
6058
|
-
input: number;
|
|
6059
|
-
output: number;
|
|
6060
|
-
cacheRead: number;
|
|
6061
|
-
cacheWrite: number;
|
|
6062
|
-
};
|
|
6063
|
-
contextWindow: number;
|
|
6064
|
-
maxTokens: number;
|
|
6065
|
-
};
|
|
6066
6309
|
};
|
|
6067
|
-
readonly minimax: {
|
|
6310
|
+
readonly "minimax-cn": {
|
|
6068
6311
|
readonly "MiniMax-M2.7": {
|
|
6069
6312
|
id: string;
|
|
6070
6313
|
name: string;
|
|
@@ -6099,16 +6342,14 @@ export declare const MODELS: {
|
|
|
6099
6342
|
contextWindow: number;
|
|
6100
6343
|
maxTokens: number;
|
|
6101
6344
|
};
|
|
6102
|
-
|
|
6103
|
-
readonly "minimax-cn": {
|
|
6104
|
-
readonly "MiniMax-M2.7": {
|
|
6345
|
+
readonly "MiniMax-M3": {
|
|
6105
6346
|
id: string;
|
|
6106
6347
|
name: string;
|
|
6107
6348
|
api: "anthropic-messages";
|
|
6108
6349
|
provider: string;
|
|
6109
6350
|
baseUrl: string;
|
|
6110
6351
|
reasoning: true;
|
|
6111
|
-
input: "text"[];
|
|
6352
|
+
input: ("image" | "text")[];
|
|
6112
6353
|
cost: {
|
|
6113
6354
|
input: number;
|
|
6114
6355
|
output: number;
|
|
@@ -6118,13 +6359,15 @@ export declare const MODELS: {
|
|
|
6118
6359
|
contextWindow: number;
|
|
6119
6360
|
maxTokens: number;
|
|
6120
6361
|
};
|
|
6121
|
-
|
|
6362
|
+
};
|
|
6363
|
+
readonly mistral: {
|
|
6364
|
+
readonly "codestral-latest": {
|
|
6122
6365
|
id: string;
|
|
6123
6366
|
name: string;
|
|
6124
|
-
api: "
|
|
6367
|
+
api: "mistral-conversations";
|
|
6125
6368
|
provider: string;
|
|
6126
6369
|
baseUrl: string;
|
|
6127
|
-
reasoning:
|
|
6370
|
+
reasoning: false;
|
|
6128
6371
|
input: "text"[];
|
|
6129
6372
|
cost: {
|
|
6130
6373
|
input: number;
|
|
@@ -6135,9 +6378,7 @@ export declare const MODELS: {
|
|
|
6135
6378
|
contextWindow: number;
|
|
6136
6379
|
maxTokens: number;
|
|
6137
6380
|
};
|
|
6138
|
-
|
|
6139
|
-
readonly mistral: {
|
|
6140
|
-
readonly "codestral-latest": {
|
|
6381
|
+
readonly "devstral-2512": {
|
|
6141
6382
|
id: string;
|
|
6142
6383
|
name: string;
|
|
6143
6384
|
api: "mistral-conversations";
|
|
@@ -6154,7 +6395,7 @@ export declare const MODELS: {
|
|
|
6154
6395
|
contextWindow: number;
|
|
6155
6396
|
maxTokens: number;
|
|
6156
6397
|
};
|
|
6157
|
-
readonly "devstral-
|
|
6398
|
+
readonly "devstral-latest": {
|
|
6158
6399
|
id: string;
|
|
6159
6400
|
name: string;
|
|
6160
6401
|
api: "mistral-conversations";
|
|
@@ -6449,8 +6690,457 @@ export declare const MODELS: {
|
|
|
6449
6690
|
api: "mistral-conversations";
|
|
6450
6691
|
provider: string;
|
|
6451
6692
|
baseUrl: string;
|
|
6693
|
+
reasoning: false;
|
|
6694
|
+
input: ("image" | "text")[];
|
|
6695
|
+
cost: {
|
|
6696
|
+
input: number;
|
|
6697
|
+
output: number;
|
|
6698
|
+
cacheRead: number;
|
|
6699
|
+
cacheWrite: number;
|
|
6700
|
+
};
|
|
6701
|
+
contextWindow: number;
|
|
6702
|
+
maxTokens: number;
|
|
6703
|
+
};
|
|
6704
|
+
readonly "mistral-nemo": {
|
|
6705
|
+
id: string;
|
|
6706
|
+
name: string;
|
|
6707
|
+
api: "mistral-conversations";
|
|
6708
|
+
provider: string;
|
|
6709
|
+
baseUrl: string;
|
|
6710
|
+
reasoning: false;
|
|
6711
|
+
input: "text"[];
|
|
6712
|
+
cost: {
|
|
6713
|
+
input: number;
|
|
6714
|
+
output: number;
|
|
6715
|
+
cacheRead: number;
|
|
6716
|
+
cacheWrite: number;
|
|
6717
|
+
};
|
|
6718
|
+
contextWindow: number;
|
|
6719
|
+
maxTokens: number;
|
|
6720
|
+
};
|
|
6721
|
+
readonly "mistral-small-2506": {
|
|
6722
|
+
id: string;
|
|
6723
|
+
name: string;
|
|
6724
|
+
api: "mistral-conversations";
|
|
6725
|
+
provider: string;
|
|
6726
|
+
baseUrl: string;
|
|
6727
|
+
reasoning: false;
|
|
6728
|
+
input: ("image" | "text")[];
|
|
6729
|
+
cost: {
|
|
6730
|
+
input: number;
|
|
6731
|
+
output: number;
|
|
6732
|
+
cacheRead: number;
|
|
6733
|
+
cacheWrite: number;
|
|
6734
|
+
};
|
|
6735
|
+
contextWindow: number;
|
|
6736
|
+
maxTokens: number;
|
|
6737
|
+
};
|
|
6738
|
+
readonly "mistral-small-2603": {
|
|
6739
|
+
id: string;
|
|
6740
|
+
name: string;
|
|
6741
|
+
api: "mistral-conversations";
|
|
6742
|
+
provider: string;
|
|
6743
|
+
baseUrl: string;
|
|
6744
|
+
reasoning: true;
|
|
6745
|
+
input: ("image" | "text")[];
|
|
6746
|
+
cost: {
|
|
6747
|
+
input: number;
|
|
6748
|
+
output: number;
|
|
6749
|
+
cacheRead: number;
|
|
6750
|
+
cacheWrite: number;
|
|
6751
|
+
};
|
|
6752
|
+
contextWindow: number;
|
|
6753
|
+
maxTokens: number;
|
|
6754
|
+
};
|
|
6755
|
+
readonly "mistral-small-latest": {
|
|
6756
|
+
id: string;
|
|
6757
|
+
name: string;
|
|
6758
|
+
api: "mistral-conversations";
|
|
6759
|
+
provider: string;
|
|
6760
|
+
baseUrl: string;
|
|
6761
|
+
reasoning: true;
|
|
6762
|
+
input: ("image" | "text")[];
|
|
6763
|
+
cost: {
|
|
6764
|
+
input: number;
|
|
6765
|
+
output: number;
|
|
6766
|
+
cacheRead: number;
|
|
6767
|
+
cacheWrite: number;
|
|
6768
|
+
};
|
|
6769
|
+
contextWindow: number;
|
|
6770
|
+
maxTokens: number;
|
|
6771
|
+
};
|
|
6772
|
+
readonly "open-mistral-7b": {
|
|
6773
|
+
id: string;
|
|
6774
|
+
name: string;
|
|
6775
|
+
api: "mistral-conversations";
|
|
6776
|
+
provider: string;
|
|
6777
|
+
baseUrl: string;
|
|
6778
|
+
reasoning: false;
|
|
6779
|
+
input: "text"[];
|
|
6780
|
+
cost: {
|
|
6781
|
+
input: number;
|
|
6782
|
+
output: number;
|
|
6783
|
+
cacheRead: number;
|
|
6784
|
+
cacheWrite: number;
|
|
6785
|
+
};
|
|
6786
|
+
contextWindow: number;
|
|
6787
|
+
maxTokens: number;
|
|
6788
|
+
};
|
|
6789
|
+
readonly "open-mistral-nemo": {
|
|
6790
|
+
id: string;
|
|
6791
|
+
name: string;
|
|
6792
|
+
api: "mistral-conversations";
|
|
6793
|
+
provider: string;
|
|
6794
|
+
baseUrl: string;
|
|
6795
|
+
reasoning: false;
|
|
6796
|
+
input: "text"[];
|
|
6797
|
+
cost: {
|
|
6798
|
+
input: number;
|
|
6799
|
+
output: number;
|
|
6800
|
+
cacheRead: number;
|
|
6801
|
+
cacheWrite: number;
|
|
6802
|
+
};
|
|
6803
|
+
contextWindow: number;
|
|
6804
|
+
maxTokens: number;
|
|
6805
|
+
};
|
|
6806
|
+
readonly "open-mixtral-8x22b": {
|
|
6807
|
+
id: string;
|
|
6808
|
+
name: string;
|
|
6809
|
+
api: "mistral-conversations";
|
|
6810
|
+
provider: string;
|
|
6811
|
+
baseUrl: string;
|
|
6812
|
+
reasoning: false;
|
|
6813
|
+
input: "text"[];
|
|
6814
|
+
cost: {
|
|
6815
|
+
input: number;
|
|
6816
|
+
output: number;
|
|
6817
|
+
cacheRead: number;
|
|
6818
|
+
cacheWrite: number;
|
|
6819
|
+
};
|
|
6820
|
+
contextWindow: number;
|
|
6821
|
+
maxTokens: number;
|
|
6822
|
+
};
|
|
6823
|
+
readonly "open-mixtral-8x7b": {
|
|
6824
|
+
id: string;
|
|
6825
|
+
name: string;
|
|
6826
|
+
api: "mistral-conversations";
|
|
6827
|
+
provider: string;
|
|
6828
|
+
baseUrl: string;
|
|
6829
|
+
reasoning: false;
|
|
6830
|
+
input: "text"[];
|
|
6831
|
+
cost: {
|
|
6832
|
+
input: number;
|
|
6833
|
+
output: number;
|
|
6834
|
+
cacheRead: number;
|
|
6835
|
+
cacheWrite: number;
|
|
6836
|
+
};
|
|
6837
|
+
contextWindow: number;
|
|
6838
|
+
maxTokens: number;
|
|
6839
|
+
};
|
|
6840
|
+
readonly "pixtral-12b": {
|
|
6841
|
+
id: string;
|
|
6842
|
+
name: string;
|
|
6843
|
+
api: "mistral-conversations";
|
|
6844
|
+
provider: string;
|
|
6845
|
+
baseUrl: string;
|
|
6846
|
+
reasoning: false;
|
|
6847
|
+
input: ("image" | "text")[];
|
|
6848
|
+
cost: {
|
|
6849
|
+
input: number;
|
|
6850
|
+
output: number;
|
|
6851
|
+
cacheRead: number;
|
|
6852
|
+
cacheWrite: number;
|
|
6853
|
+
};
|
|
6854
|
+
contextWindow: number;
|
|
6855
|
+
maxTokens: number;
|
|
6856
|
+
};
|
|
6857
|
+
readonly "pixtral-large-latest": {
|
|
6858
|
+
id: string;
|
|
6859
|
+
name: string;
|
|
6860
|
+
api: "mistral-conversations";
|
|
6861
|
+
provider: string;
|
|
6862
|
+
baseUrl: string;
|
|
6863
|
+
reasoning: false;
|
|
6864
|
+
input: ("image" | "text")[];
|
|
6865
|
+
cost: {
|
|
6866
|
+
input: number;
|
|
6867
|
+
output: number;
|
|
6868
|
+
cacheRead: number;
|
|
6869
|
+
cacheWrite: number;
|
|
6870
|
+
};
|
|
6871
|
+
contextWindow: number;
|
|
6872
|
+
maxTokens: number;
|
|
6873
|
+
};
|
|
6874
|
+
};
|
|
6875
|
+
readonly moonshotai: {
|
|
6876
|
+
readonly "kimi-k2-0711-preview": {
|
|
6877
|
+
id: string;
|
|
6878
|
+
name: string;
|
|
6879
|
+
api: "openai-completions";
|
|
6880
|
+
provider: string;
|
|
6881
|
+
baseUrl: string;
|
|
6882
|
+
compat: {
|
|
6883
|
+
supportsStore: false;
|
|
6884
|
+
supportsDeveloperRole: false;
|
|
6885
|
+
supportsReasoningEffort: false;
|
|
6886
|
+
maxTokensField: "max_tokens";
|
|
6887
|
+
supportsStrictMode: false;
|
|
6888
|
+
thinkingFormat: "deepseek";
|
|
6889
|
+
};
|
|
6890
|
+
reasoning: false;
|
|
6891
|
+
input: "text"[];
|
|
6892
|
+
cost: {
|
|
6893
|
+
input: number;
|
|
6894
|
+
output: number;
|
|
6895
|
+
cacheRead: number;
|
|
6896
|
+
cacheWrite: number;
|
|
6897
|
+
};
|
|
6898
|
+
contextWindow: number;
|
|
6899
|
+
maxTokens: number;
|
|
6900
|
+
};
|
|
6901
|
+
readonly "kimi-k2-0905-preview": {
|
|
6902
|
+
id: string;
|
|
6903
|
+
name: string;
|
|
6904
|
+
api: "openai-completions";
|
|
6905
|
+
provider: string;
|
|
6906
|
+
baseUrl: string;
|
|
6907
|
+
compat: {
|
|
6908
|
+
supportsStore: false;
|
|
6909
|
+
supportsDeveloperRole: false;
|
|
6910
|
+
supportsReasoningEffort: false;
|
|
6911
|
+
maxTokensField: "max_tokens";
|
|
6912
|
+
supportsStrictMode: false;
|
|
6913
|
+
thinkingFormat: "deepseek";
|
|
6914
|
+
};
|
|
6915
|
+
reasoning: false;
|
|
6916
|
+
input: "text"[];
|
|
6917
|
+
cost: {
|
|
6918
|
+
input: number;
|
|
6919
|
+
output: number;
|
|
6920
|
+
cacheRead: number;
|
|
6921
|
+
cacheWrite: number;
|
|
6922
|
+
};
|
|
6923
|
+
contextWindow: number;
|
|
6924
|
+
maxTokens: number;
|
|
6925
|
+
};
|
|
6926
|
+
readonly "kimi-k2-thinking": {
|
|
6927
|
+
id: string;
|
|
6928
|
+
name: string;
|
|
6929
|
+
api: "openai-completions";
|
|
6930
|
+
provider: string;
|
|
6931
|
+
baseUrl: string;
|
|
6932
|
+
compat: {
|
|
6933
|
+
supportsStore: false;
|
|
6934
|
+
supportsDeveloperRole: false;
|
|
6935
|
+
supportsReasoningEffort: false;
|
|
6936
|
+
maxTokensField: "max_tokens";
|
|
6937
|
+
supportsStrictMode: false;
|
|
6938
|
+
thinkingFormat: "deepseek";
|
|
6939
|
+
};
|
|
6940
|
+
reasoning: true;
|
|
6941
|
+
input: "text"[];
|
|
6942
|
+
cost: {
|
|
6943
|
+
input: number;
|
|
6944
|
+
output: number;
|
|
6945
|
+
cacheRead: number;
|
|
6946
|
+
cacheWrite: number;
|
|
6947
|
+
};
|
|
6948
|
+
contextWindow: number;
|
|
6949
|
+
maxTokens: number;
|
|
6950
|
+
};
|
|
6951
|
+
readonly "kimi-k2-thinking-turbo": {
|
|
6952
|
+
id: string;
|
|
6953
|
+
name: string;
|
|
6954
|
+
api: "openai-completions";
|
|
6955
|
+
provider: string;
|
|
6956
|
+
baseUrl: string;
|
|
6957
|
+
compat: {
|
|
6958
|
+
supportsStore: false;
|
|
6959
|
+
supportsDeveloperRole: false;
|
|
6960
|
+
supportsReasoningEffort: false;
|
|
6961
|
+
maxTokensField: "max_tokens";
|
|
6962
|
+
supportsStrictMode: false;
|
|
6963
|
+
thinkingFormat: "deepseek";
|
|
6964
|
+
};
|
|
6965
|
+
reasoning: true;
|
|
6966
|
+
input: "text"[];
|
|
6967
|
+
cost: {
|
|
6968
|
+
input: number;
|
|
6969
|
+
output: number;
|
|
6970
|
+
cacheRead: number;
|
|
6971
|
+
cacheWrite: number;
|
|
6972
|
+
};
|
|
6973
|
+
contextWindow: number;
|
|
6974
|
+
maxTokens: number;
|
|
6975
|
+
};
|
|
6976
|
+
readonly "kimi-k2-turbo-preview": {
|
|
6977
|
+
id: string;
|
|
6978
|
+
name: string;
|
|
6979
|
+
api: "openai-completions";
|
|
6980
|
+
provider: string;
|
|
6981
|
+
baseUrl: string;
|
|
6982
|
+
compat: {
|
|
6983
|
+
supportsStore: false;
|
|
6984
|
+
supportsDeveloperRole: false;
|
|
6985
|
+
supportsReasoningEffort: false;
|
|
6986
|
+
maxTokensField: "max_tokens";
|
|
6987
|
+
supportsStrictMode: false;
|
|
6988
|
+
thinkingFormat: "deepseek";
|
|
6989
|
+
};
|
|
6990
|
+
reasoning: false;
|
|
6991
|
+
input: "text"[];
|
|
6992
|
+
cost: {
|
|
6993
|
+
input: number;
|
|
6994
|
+
output: number;
|
|
6995
|
+
cacheRead: number;
|
|
6996
|
+
cacheWrite: number;
|
|
6997
|
+
};
|
|
6998
|
+
contextWindow: number;
|
|
6999
|
+
maxTokens: number;
|
|
7000
|
+
};
|
|
7001
|
+
readonly "kimi-k2.5": {
|
|
7002
|
+
id: string;
|
|
7003
|
+
name: string;
|
|
7004
|
+
api: "openai-completions";
|
|
7005
|
+
provider: string;
|
|
7006
|
+
baseUrl: string;
|
|
7007
|
+
compat: {
|
|
7008
|
+
supportsStore: false;
|
|
7009
|
+
supportsDeveloperRole: false;
|
|
7010
|
+
supportsReasoningEffort: false;
|
|
7011
|
+
maxTokensField: "max_tokens";
|
|
7012
|
+
supportsStrictMode: false;
|
|
7013
|
+
thinkingFormat: "deepseek";
|
|
7014
|
+
};
|
|
7015
|
+
reasoning: true;
|
|
7016
|
+
input: ("image" | "text")[];
|
|
7017
|
+
cost: {
|
|
7018
|
+
input: number;
|
|
7019
|
+
output: number;
|
|
7020
|
+
cacheRead: number;
|
|
7021
|
+
cacheWrite: number;
|
|
7022
|
+
};
|
|
7023
|
+
contextWindow: number;
|
|
7024
|
+
maxTokens: number;
|
|
7025
|
+
};
|
|
7026
|
+
readonly "kimi-k2.6": {
|
|
7027
|
+
id: string;
|
|
7028
|
+
name: string;
|
|
7029
|
+
api: "openai-completions";
|
|
7030
|
+
provider: string;
|
|
7031
|
+
baseUrl: string;
|
|
7032
|
+
compat: {
|
|
7033
|
+
supportsStore: false;
|
|
7034
|
+
supportsDeveloperRole: false;
|
|
7035
|
+
supportsReasoningEffort: false;
|
|
7036
|
+
maxTokensField: "max_tokens";
|
|
7037
|
+
supportsStrictMode: false;
|
|
7038
|
+
thinkingFormat: "deepseek";
|
|
7039
|
+
};
|
|
7040
|
+
reasoning: true;
|
|
7041
|
+
input: ("image" | "text")[];
|
|
7042
|
+
cost: {
|
|
7043
|
+
input: number;
|
|
7044
|
+
output: number;
|
|
7045
|
+
cacheRead: number;
|
|
7046
|
+
cacheWrite: number;
|
|
7047
|
+
};
|
|
7048
|
+
contextWindow: number;
|
|
7049
|
+
maxTokens: number;
|
|
7050
|
+
};
|
|
7051
|
+
readonly "kimi-k2.7-code": {
|
|
7052
|
+
id: string;
|
|
7053
|
+
name: string;
|
|
7054
|
+
api: "openai-completions";
|
|
7055
|
+
provider: string;
|
|
7056
|
+
baseUrl: string;
|
|
7057
|
+
compat: {
|
|
7058
|
+
supportsStore: false;
|
|
7059
|
+
supportsDeveloperRole: false;
|
|
7060
|
+
supportsReasoningEffort: false;
|
|
7061
|
+
maxTokensField: "max_tokens";
|
|
7062
|
+
supportsStrictMode: false;
|
|
7063
|
+
thinkingFormat: "deepseek";
|
|
7064
|
+
};
|
|
7065
|
+
reasoning: true;
|
|
7066
|
+
input: ("image" | "text")[];
|
|
7067
|
+
cost: {
|
|
7068
|
+
input: number;
|
|
7069
|
+
output: number;
|
|
7070
|
+
cacheRead: number;
|
|
7071
|
+
cacheWrite: number;
|
|
7072
|
+
};
|
|
7073
|
+
contextWindow: number;
|
|
7074
|
+
maxTokens: number;
|
|
7075
|
+
};
|
|
7076
|
+
};
|
|
7077
|
+
readonly "moonshotai-cn": {
|
|
7078
|
+
readonly "kimi-k2-0711-preview": {
|
|
7079
|
+
id: string;
|
|
7080
|
+
name: string;
|
|
7081
|
+
api: "openai-completions";
|
|
7082
|
+
provider: string;
|
|
7083
|
+
baseUrl: string;
|
|
7084
|
+
compat: {
|
|
7085
|
+
supportsStore: false;
|
|
7086
|
+
supportsDeveloperRole: false;
|
|
7087
|
+
supportsReasoningEffort: false;
|
|
7088
|
+
maxTokensField: "max_tokens";
|
|
7089
|
+
supportsStrictMode: false;
|
|
7090
|
+
thinkingFormat: "deepseek";
|
|
7091
|
+
};
|
|
7092
|
+
reasoning: false;
|
|
7093
|
+
input: "text"[];
|
|
7094
|
+
cost: {
|
|
7095
|
+
input: number;
|
|
7096
|
+
output: number;
|
|
7097
|
+
cacheRead: number;
|
|
7098
|
+
cacheWrite: number;
|
|
7099
|
+
};
|
|
7100
|
+
contextWindow: number;
|
|
7101
|
+
maxTokens: number;
|
|
7102
|
+
};
|
|
7103
|
+
readonly "kimi-k2-0905-preview": {
|
|
7104
|
+
id: string;
|
|
7105
|
+
name: string;
|
|
7106
|
+
api: "openai-completions";
|
|
7107
|
+
provider: string;
|
|
7108
|
+
baseUrl: string;
|
|
7109
|
+
compat: {
|
|
7110
|
+
supportsStore: false;
|
|
7111
|
+
supportsDeveloperRole: false;
|
|
7112
|
+
supportsReasoningEffort: false;
|
|
7113
|
+
maxTokensField: "max_tokens";
|
|
7114
|
+
supportsStrictMode: false;
|
|
7115
|
+
thinkingFormat: "deepseek";
|
|
7116
|
+
};
|
|
7117
|
+
reasoning: false;
|
|
7118
|
+
input: "text"[];
|
|
7119
|
+
cost: {
|
|
7120
|
+
input: number;
|
|
7121
|
+
output: number;
|
|
7122
|
+
cacheRead: number;
|
|
7123
|
+
cacheWrite: number;
|
|
7124
|
+
};
|
|
7125
|
+
contextWindow: number;
|
|
7126
|
+
maxTokens: number;
|
|
7127
|
+
};
|
|
7128
|
+
readonly "kimi-k2-thinking": {
|
|
7129
|
+
id: string;
|
|
7130
|
+
name: string;
|
|
7131
|
+
api: "openai-completions";
|
|
7132
|
+
provider: string;
|
|
7133
|
+
baseUrl: string;
|
|
7134
|
+
compat: {
|
|
7135
|
+
supportsStore: false;
|
|
7136
|
+
supportsDeveloperRole: false;
|
|
7137
|
+
supportsReasoningEffort: false;
|
|
7138
|
+
maxTokensField: "max_tokens";
|
|
7139
|
+
supportsStrictMode: false;
|
|
7140
|
+
thinkingFormat: "deepseek";
|
|
7141
|
+
};
|
|
6452
7142
|
reasoning: true;
|
|
6453
|
-
input:
|
|
7143
|
+
input: "text"[];
|
|
6454
7144
|
cost: {
|
|
6455
7145
|
input: number;
|
|
6456
7146
|
output: number;
|
|
@@ -6460,13 +7150,21 @@ export declare const MODELS: {
|
|
|
6460
7150
|
contextWindow: number;
|
|
6461
7151
|
maxTokens: number;
|
|
6462
7152
|
};
|
|
6463
|
-
readonly "
|
|
7153
|
+
readonly "kimi-k2-thinking-turbo": {
|
|
6464
7154
|
id: string;
|
|
6465
7155
|
name: string;
|
|
6466
|
-
api: "
|
|
7156
|
+
api: "openai-completions";
|
|
6467
7157
|
provider: string;
|
|
6468
7158
|
baseUrl: string;
|
|
6469
|
-
|
|
7159
|
+
compat: {
|
|
7160
|
+
supportsStore: false;
|
|
7161
|
+
supportsDeveloperRole: false;
|
|
7162
|
+
supportsReasoningEffort: false;
|
|
7163
|
+
maxTokensField: "max_tokens";
|
|
7164
|
+
supportsStrictMode: false;
|
|
7165
|
+
thinkingFormat: "deepseek";
|
|
7166
|
+
};
|
|
7167
|
+
reasoning: true;
|
|
6470
7168
|
input: "text"[];
|
|
6471
7169
|
cost: {
|
|
6472
7170
|
input: number;
|
|
@@ -6477,14 +7175,22 @@ export declare const MODELS: {
|
|
|
6477
7175
|
contextWindow: number;
|
|
6478
7176
|
maxTokens: number;
|
|
6479
7177
|
};
|
|
6480
|
-
readonly "
|
|
7178
|
+
readonly "kimi-k2-turbo-preview": {
|
|
6481
7179
|
id: string;
|
|
6482
7180
|
name: string;
|
|
6483
|
-
api: "
|
|
7181
|
+
api: "openai-completions";
|
|
6484
7182
|
provider: string;
|
|
6485
7183
|
baseUrl: string;
|
|
7184
|
+
compat: {
|
|
7185
|
+
supportsStore: false;
|
|
7186
|
+
supportsDeveloperRole: false;
|
|
7187
|
+
supportsReasoningEffort: false;
|
|
7188
|
+
maxTokensField: "max_tokens";
|
|
7189
|
+
supportsStrictMode: false;
|
|
7190
|
+
thinkingFormat: "deepseek";
|
|
7191
|
+
};
|
|
6486
7192
|
reasoning: false;
|
|
6487
|
-
input:
|
|
7193
|
+
input: "text"[];
|
|
6488
7194
|
cost: {
|
|
6489
7195
|
input: number;
|
|
6490
7196
|
output: number;
|
|
@@ -6494,12 +7200,20 @@ export declare const MODELS: {
|
|
|
6494
7200
|
contextWindow: number;
|
|
6495
7201
|
maxTokens: number;
|
|
6496
7202
|
};
|
|
6497
|
-
readonly "
|
|
7203
|
+
readonly "kimi-k2.5": {
|
|
6498
7204
|
id: string;
|
|
6499
7205
|
name: string;
|
|
6500
|
-
api: "
|
|
7206
|
+
api: "openai-completions";
|
|
6501
7207
|
provider: string;
|
|
6502
7208
|
baseUrl: string;
|
|
7209
|
+
compat: {
|
|
7210
|
+
supportsStore: false;
|
|
7211
|
+
supportsDeveloperRole: false;
|
|
7212
|
+
supportsReasoningEffort: false;
|
|
7213
|
+
maxTokensField: "max_tokens";
|
|
7214
|
+
supportsStrictMode: false;
|
|
7215
|
+
thinkingFormat: "deepseek";
|
|
7216
|
+
};
|
|
6503
7217
|
reasoning: true;
|
|
6504
7218
|
input: ("image" | "text")[];
|
|
6505
7219
|
cost: {
|
|
@@ -6511,12 +7225,20 @@ export declare const MODELS: {
|
|
|
6511
7225
|
contextWindow: number;
|
|
6512
7226
|
maxTokens: number;
|
|
6513
7227
|
};
|
|
6514
|
-
readonly "
|
|
7228
|
+
readonly "kimi-k2.6": {
|
|
6515
7229
|
id: string;
|
|
6516
7230
|
name: string;
|
|
6517
|
-
api: "
|
|
7231
|
+
api: "openai-completions";
|
|
6518
7232
|
provider: string;
|
|
6519
7233
|
baseUrl: string;
|
|
7234
|
+
compat: {
|
|
7235
|
+
supportsStore: false;
|
|
7236
|
+
supportsDeveloperRole: false;
|
|
7237
|
+
supportsReasoningEffort: false;
|
|
7238
|
+
maxTokensField: "max_tokens";
|
|
7239
|
+
supportsStrictMode: false;
|
|
7240
|
+
thinkingFormat: "deepseek";
|
|
7241
|
+
};
|
|
6520
7242
|
reasoning: true;
|
|
6521
7243
|
input: ("image" | "text")[];
|
|
6522
7244
|
cost: {
|
|
@@ -6528,12 +7250,25 @@ export declare const MODELS: {
|
|
|
6528
7250
|
contextWindow: number;
|
|
6529
7251
|
maxTokens: number;
|
|
6530
7252
|
};
|
|
6531
|
-
|
|
7253
|
+
};
|
|
7254
|
+
readonly nvidia: {
|
|
7255
|
+
readonly "meta/llama-3.1-70b-instruct": {
|
|
6532
7256
|
id: string;
|
|
6533
7257
|
name: string;
|
|
6534
|
-
api: "
|
|
7258
|
+
api: "openai-completions";
|
|
6535
7259
|
provider: string;
|
|
6536
7260
|
baseUrl: string;
|
|
7261
|
+
headers: {
|
|
7262
|
+
"NVCF-POLL-SECONDS": string;
|
|
7263
|
+
};
|
|
7264
|
+
compat: {
|
|
7265
|
+
supportsStore: false;
|
|
7266
|
+
supportsDeveloperRole: false;
|
|
7267
|
+
supportsReasoningEffort: false;
|
|
7268
|
+
maxTokensField: "max_tokens";
|
|
7269
|
+
supportsStrictMode: false;
|
|
7270
|
+
supportsLongCacheRetention: false;
|
|
7271
|
+
};
|
|
6537
7272
|
reasoning: false;
|
|
6538
7273
|
input: "text"[];
|
|
6539
7274
|
cost: {
|
|
@@ -6545,12 +7280,23 @@ export declare const MODELS: {
|
|
|
6545
7280
|
contextWindow: number;
|
|
6546
7281
|
maxTokens: number;
|
|
6547
7282
|
};
|
|
6548
|
-
readonly "
|
|
7283
|
+
readonly "meta/llama-3.1-8b-instruct": {
|
|
6549
7284
|
id: string;
|
|
6550
7285
|
name: string;
|
|
6551
|
-
api: "
|
|
7286
|
+
api: "openai-completions";
|
|
6552
7287
|
provider: string;
|
|
6553
7288
|
baseUrl: string;
|
|
7289
|
+
headers: {
|
|
7290
|
+
"NVCF-POLL-SECONDS": string;
|
|
7291
|
+
};
|
|
7292
|
+
compat: {
|
|
7293
|
+
supportsStore: false;
|
|
7294
|
+
supportsDeveloperRole: false;
|
|
7295
|
+
supportsReasoningEffort: false;
|
|
7296
|
+
maxTokensField: "max_tokens";
|
|
7297
|
+
supportsStrictMode: false;
|
|
7298
|
+
supportsLongCacheRetention: false;
|
|
7299
|
+
};
|
|
6554
7300
|
reasoning: false;
|
|
6555
7301
|
input: "text"[];
|
|
6556
7302
|
cost: {
|
|
@@ -6562,14 +7308,25 @@ export declare const MODELS: {
|
|
|
6562
7308
|
contextWindow: number;
|
|
6563
7309
|
maxTokens: number;
|
|
6564
7310
|
};
|
|
6565
|
-
readonly "
|
|
7311
|
+
readonly "meta/llama-3.2-11b-vision-instruct": {
|
|
6566
7312
|
id: string;
|
|
6567
7313
|
name: string;
|
|
6568
|
-
api: "
|
|
7314
|
+
api: "openai-completions";
|
|
6569
7315
|
provider: string;
|
|
6570
7316
|
baseUrl: string;
|
|
7317
|
+
headers: {
|
|
7318
|
+
"NVCF-POLL-SECONDS": string;
|
|
7319
|
+
};
|
|
7320
|
+
compat: {
|
|
7321
|
+
supportsStore: false;
|
|
7322
|
+
supportsDeveloperRole: false;
|
|
7323
|
+
supportsReasoningEffort: false;
|
|
7324
|
+
maxTokensField: "max_tokens";
|
|
7325
|
+
supportsStrictMode: false;
|
|
7326
|
+
supportsLongCacheRetention: false;
|
|
7327
|
+
};
|
|
6571
7328
|
reasoning: false;
|
|
6572
|
-
input: "text"[];
|
|
7329
|
+
input: ("image" | "text")[];
|
|
6573
7330
|
cost: {
|
|
6574
7331
|
input: number;
|
|
6575
7332
|
output: number;
|
|
@@ -6579,12 +7336,23 @@ export declare const MODELS: {
|
|
|
6579
7336
|
contextWindow: number;
|
|
6580
7337
|
maxTokens: number;
|
|
6581
7338
|
};
|
|
6582
|
-
readonly "
|
|
7339
|
+
readonly "meta/llama-3.2-90b-vision-instruct": {
|
|
6583
7340
|
id: string;
|
|
6584
7341
|
name: string;
|
|
6585
|
-
api: "
|
|
7342
|
+
api: "openai-completions";
|
|
6586
7343
|
provider: string;
|
|
6587
7344
|
baseUrl: string;
|
|
7345
|
+
headers: {
|
|
7346
|
+
"NVCF-POLL-SECONDS": string;
|
|
7347
|
+
};
|
|
7348
|
+
compat: {
|
|
7349
|
+
supportsStore: false;
|
|
7350
|
+
supportsDeveloperRole: false;
|
|
7351
|
+
supportsReasoningEffort: false;
|
|
7352
|
+
maxTokensField: "max_tokens";
|
|
7353
|
+
supportsStrictMode: false;
|
|
7354
|
+
supportsLongCacheRetention: false;
|
|
7355
|
+
};
|
|
6588
7356
|
reasoning: false;
|
|
6589
7357
|
input: ("image" | "text")[];
|
|
6590
7358
|
cost: {
|
|
@@ -6596,14 +7364,25 @@ export declare const MODELS: {
|
|
|
6596
7364
|
contextWindow: number;
|
|
6597
7365
|
maxTokens: number;
|
|
6598
7366
|
};
|
|
6599
|
-
readonly "
|
|
7367
|
+
readonly "meta/llama-3.3-70b-instruct": {
|
|
6600
7368
|
id: string;
|
|
6601
7369
|
name: string;
|
|
6602
|
-
api: "
|
|
7370
|
+
api: "openai-completions";
|
|
6603
7371
|
provider: string;
|
|
6604
7372
|
baseUrl: string;
|
|
7373
|
+
headers: {
|
|
7374
|
+
"NVCF-POLL-SECONDS": string;
|
|
7375
|
+
};
|
|
7376
|
+
compat: {
|
|
7377
|
+
supportsStore: false;
|
|
7378
|
+
supportsDeveloperRole: false;
|
|
7379
|
+
supportsReasoningEffort: false;
|
|
7380
|
+
maxTokensField: "max_tokens";
|
|
7381
|
+
supportsStrictMode: false;
|
|
7382
|
+
supportsLongCacheRetention: false;
|
|
7383
|
+
};
|
|
6605
7384
|
reasoning: false;
|
|
6606
|
-
input:
|
|
7385
|
+
input: "text"[];
|
|
6607
7386
|
cost: {
|
|
6608
7387
|
input: number;
|
|
6609
7388
|
output: number;
|
|
@@ -6613,23 +7392,25 @@ export declare const MODELS: {
|
|
|
6613
7392
|
contextWindow: number;
|
|
6614
7393
|
maxTokens: number;
|
|
6615
7394
|
};
|
|
6616
|
-
|
|
6617
|
-
readonly moonshotai: {
|
|
6618
|
-
readonly "kimi-k2-0711-preview": {
|
|
7395
|
+
readonly "mistralai/mistral-large-3-675b-instruct-2512": {
|
|
6619
7396
|
id: string;
|
|
6620
7397
|
name: string;
|
|
6621
7398
|
api: "openai-completions";
|
|
6622
7399
|
provider: string;
|
|
6623
7400
|
baseUrl: string;
|
|
7401
|
+
headers: {
|
|
7402
|
+
"NVCF-POLL-SECONDS": string;
|
|
7403
|
+
};
|
|
6624
7404
|
compat: {
|
|
6625
7405
|
supportsStore: false;
|
|
6626
7406
|
supportsDeveloperRole: false;
|
|
6627
7407
|
supportsReasoningEffort: false;
|
|
6628
7408
|
maxTokensField: "max_tokens";
|
|
6629
7409
|
supportsStrictMode: false;
|
|
7410
|
+
supportsLongCacheRetention: false;
|
|
6630
7411
|
};
|
|
6631
7412
|
reasoning: false;
|
|
6632
|
-
input: "text"[];
|
|
7413
|
+
input: ("image" | "text")[];
|
|
6633
7414
|
cost: {
|
|
6634
7415
|
input: number;
|
|
6635
7416
|
output: number;
|
|
@@ -6639,21 +7420,25 @@ export declare const MODELS: {
|
|
|
6639
7420
|
contextWindow: number;
|
|
6640
7421
|
maxTokens: number;
|
|
6641
7422
|
};
|
|
6642
|
-
readonly "
|
|
7423
|
+
readonly "mistralai/mistral-small-4-119b-2603": {
|
|
6643
7424
|
id: string;
|
|
6644
7425
|
name: string;
|
|
6645
7426
|
api: "openai-completions";
|
|
6646
7427
|
provider: string;
|
|
6647
7428
|
baseUrl: string;
|
|
7429
|
+
headers: {
|
|
7430
|
+
"NVCF-POLL-SECONDS": string;
|
|
7431
|
+
};
|
|
6648
7432
|
compat: {
|
|
6649
7433
|
supportsStore: false;
|
|
6650
7434
|
supportsDeveloperRole: false;
|
|
6651
7435
|
supportsReasoningEffort: false;
|
|
6652
7436
|
maxTokensField: "max_tokens";
|
|
6653
7437
|
supportsStrictMode: false;
|
|
7438
|
+
supportsLongCacheRetention: false;
|
|
6654
7439
|
};
|
|
6655
|
-
reasoning:
|
|
6656
|
-
input: "text"[];
|
|
7440
|
+
reasoning: true;
|
|
7441
|
+
input: ("image" | "text")[];
|
|
6657
7442
|
cost: {
|
|
6658
7443
|
input: number;
|
|
6659
7444
|
output: number;
|
|
@@ -6663,21 +7448,25 @@ export declare const MODELS: {
|
|
|
6663
7448
|
contextWindow: number;
|
|
6664
7449
|
maxTokens: number;
|
|
6665
7450
|
};
|
|
6666
|
-
readonly "kimi-k2
|
|
7451
|
+
readonly "moonshotai/kimi-k2.6": {
|
|
6667
7452
|
id: string;
|
|
6668
7453
|
name: string;
|
|
6669
7454
|
api: "openai-completions";
|
|
6670
7455
|
provider: string;
|
|
6671
7456
|
baseUrl: string;
|
|
7457
|
+
headers: {
|
|
7458
|
+
"NVCF-POLL-SECONDS": string;
|
|
7459
|
+
};
|
|
6672
7460
|
compat: {
|
|
6673
7461
|
supportsStore: false;
|
|
6674
7462
|
supportsDeveloperRole: false;
|
|
6675
7463
|
supportsReasoningEffort: false;
|
|
6676
7464
|
maxTokensField: "max_tokens";
|
|
6677
7465
|
supportsStrictMode: false;
|
|
7466
|
+
supportsLongCacheRetention: false;
|
|
6678
7467
|
};
|
|
6679
7468
|
reasoning: true;
|
|
6680
|
-
input: "text"[];
|
|
7469
|
+
input: ("image" | "text")[];
|
|
6681
7470
|
cost: {
|
|
6682
7471
|
input: number;
|
|
6683
7472
|
output: number;
|
|
@@ -6687,18 +7476,22 @@ export declare const MODELS: {
|
|
|
6687
7476
|
contextWindow: number;
|
|
6688
7477
|
maxTokens: number;
|
|
6689
7478
|
};
|
|
6690
|
-
readonly "
|
|
7479
|
+
readonly "nvidia/nemotron-3-nano-30b-a3b": {
|
|
6691
7480
|
id: string;
|
|
6692
7481
|
name: string;
|
|
6693
7482
|
api: "openai-completions";
|
|
6694
7483
|
provider: string;
|
|
6695
7484
|
baseUrl: string;
|
|
7485
|
+
headers: {
|
|
7486
|
+
"NVCF-POLL-SECONDS": string;
|
|
7487
|
+
};
|
|
6696
7488
|
compat: {
|
|
6697
7489
|
supportsStore: false;
|
|
6698
7490
|
supportsDeveloperRole: false;
|
|
6699
7491
|
supportsReasoningEffort: false;
|
|
6700
7492
|
maxTokensField: "max_tokens";
|
|
6701
7493
|
supportsStrictMode: false;
|
|
7494
|
+
supportsLongCacheRetention: false;
|
|
6702
7495
|
};
|
|
6703
7496
|
reasoning: true;
|
|
6704
7497
|
input: "text"[];
|
|
@@ -6711,21 +7504,25 @@ export declare const MODELS: {
|
|
|
6711
7504
|
contextWindow: number;
|
|
6712
7505
|
maxTokens: number;
|
|
6713
7506
|
};
|
|
6714
|
-
readonly "
|
|
7507
|
+
readonly "nvidia/nemotron-3-nano-omni-30b-a3b-reasoning": {
|
|
6715
7508
|
id: string;
|
|
6716
7509
|
name: string;
|
|
6717
7510
|
api: "openai-completions";
|
|
6718
7511
|
provider: string;
|
|
6719
7512
|
baseUrl: string;
|
|
7513
|
+
headers: {
|
|
7514
|
+
"NVCF-POLL-SECONDS": string;
|
|
7515
|
+
};
|
|
6720
7516
|
compat: {
|
|
6721
7517
|
supportsStore: false;
|
|
6722
7518
|
supportsDeveloperRole: false;
|
|
6723
7519
|
supportsReasoningEffort: false;
|
|
6724
7520
|
maxTokensField: "max_tokens";
|
|
6725
7521
|
supportsStrictMode: false;
|
|
7522
|
+
supportsLongCacheRetention: false;
|
|
6726
7523
|
};
|
|
6727
|
-
reasoning:
|
|
6728
|
-
input: "text"[];
|
|
7524
|
+
reasoning: true;
|
|
7525
|
+
input: ("image" | "text")[];
|
|
6729
7526
|
cost: {
|
|
6730
7527
|
input: number;
|
|
6731
7528
|
output: number;
|
|
@@ -6735,21 +7532,25 @@ export declare const MODELS: {
|
|
|
6735
7532
|
contextWindow: number;
|
|
6736
7533
|
maxTokens: number;
|
|
6737
7534
|
};
|
|
6738
|
-
readonly "
|
|
7535
|
+
readonly "nvidia/nemotron-3-super-120b-a12b": {
|
|
6739
7536
|
id: string;
|
|
6740
7537
|
name: string;
|
|
6741
7538
|
api: "openai-completions";
|
|
6742
7539
|
provider: string;
|
|
6743
7540
|
baseUrl: string;
|
|
7541
|
+
headers: {
|
|
7542
|
+
"NVCF-POLL-SECONDS": string;
|
|
7543
|
+
};
|
|
6744
7544
|
compat: {
|
|
6745
7545
|
supportsStore: false;
|
|
6746
7546
|
supportsDeveloperRole: false;
|
|
6747
7547
|
supportsReasoningEffort: false;
|
|
6748
7548
|
maxTokensField: "max_tokens";
|
|
6749
7549
|
supportsStrictMode: false;
|
|
7550
|
+
supportsLongCacheRetention: false;
|
|
6750
7551
|
};
|
|
6751
7552
|
reasoning: true;
|
|
6752
|
-
input:
|
|
7553
|
+
input: "text"[];
|
|
6753
7554
|
cost: {
|
|
6754
7555
|
input: number;
|
|
6755
7556
|
output: number;
|
|
@@ -6759,21 +7560,25 @@ export declare const MODELS: {
|
|
|
6759
7560
|
contextWindow: number;
|
|
6760
7561
|
maxTokens: number;
|
|
6761
7562
|
};
|
|
6762
|
-
readonly "
|
|
7563
|
+
readonly "nvidia/nemotron-3-ultra-550b-a55b": {
|
|
6763
7564
|
id: string;
|
|
6764
7565
|
name: string;
|
|
6765
7566
|
api: "openai-completions";
|
|
6766
7567
|
provider: string;
|
|
6767
7568
|
baseUrl: string;
|
|
7569
|
+
headers: {
|
|
7570
|
+
"NVCF-POLL-SECONDS": string;
|
|
7571
|
+
};
|
|
6768
7572
|
compat: {
|
|
6769
7573
|
supportsStore: false;
|
|
6770
7574
|
supportsDeveloperRole: false;
|
|
6771
7575
|
supportsReasoningEffort: false;
|
|
6772
7576
|
maxTokensField: "max_tokens";
|
|
6773
7577
|
supportsStrictMode: false;
|
|
7578
|
+
supportsLongCacheRetention: false;
|
|
6774
7579
|
};
|
|
6775
7580
|
reasoning: true;
|
|
6776
|
-
input:
|
|
7581
|
+
input: "text"[];
|
|
6777
7582
|
cost: {
|
|
6778
7583
|
input: number;
|
|
6779
7584
|
output: number;
|
|
@@ -6783,22 +7588,24 @@ export declare const MODELS: {
|
|
|
6783
7588
|
contextWindow: number;
|
|
6784
7589
|
maxTokens: number;
|
|
6785
7590
|
};
|
|
6786
|
-
|
|
6787
|
-
readonly "moonshotai-cn": {
|
|
6788
|
-
readonly "kimi-k2-0711-preview": {
|
|
7591
|
+
readonly "nvidia/nvidia-nemotron-nano-9b-v2": {
|
|
6789
7592
|
id: string;
|
|
6790
7593
|
name: string;
|
|
6791
7594
|
api: "openai-completions";
|
|
6792
7595
|
provider: string;
|
|
6793
7596
|
baseUrl: string;
|
|
7597
|
+
headers: {
|
|
7598
|
+
"NVCF-POLL-SECONDS": string;
|
|
7599
|
+
};
|
|
6794
7600
|
compat: {
|
|
6795
7601
|
supportsStore: false;
|
|
6796
7602
|
supportsDeveloperRole: false;
|
|
6797
7603
|
supportsReasoningEffort: false;
|
|
6798
7604
|
maxTokensField: "max_tokens";
|
|
6799
7605
|
supportsStrictMode: false;
|
|
7606
|
+
supportsLongCacheRetention: false;
|
|
6800
7607
|
};
|
|
6801
|
-
reasoning:
|
|
7608
|
+
reasoning: true;
|
|
6802
7609
|
input: "text"[];
|
|
6803
7610
|
cost: {
|
|
6804
7611
|
input: number;
|
|
@@ -6809,20 +7616,24 @@ export declare const MODELS: {
|
|
|
6809
7616
|
contextWindow: number;
|
|
6810
7617
|
maxTokens: number;
|
|
6811
7618
|
};
|
|
6812
|
-
readonly "
|
|
7619
|
+
readonly "openai/gpt-oss-120b": {
|
|
6813
7620
|
id: string;
|
|
6814
7621
|
name: string;
|
|
6815
7622
|
api: "openai-completions";
|
|
6816
7623
|
provider: string;
|
|
6817
7624
|
baseUrl: string;
|
|
7625
|
+
headers: {
|
|
7626
|
+
"NVCF-POLL-SECONDS": string;
|
|
7627
|
+
};
|
|
6818
7628
|
compat: {
|
|
6819
7629
|
supportsStore: false;
|
|
6820
7630
|
supportsDeveloperRole: false;
|
|
6821
7631
|
supportsReasoningEffort: false;
|
|
6822
7632
|
maxTokensField: "max_tokens";
|
|
6823
7633
|
supportsStrictMode: false;
|
|
7634
|
+
supportsLongCacheRetention: false;
|
|
6824
7635
|
};
|
|
6825
|
-
reasoning:
|
|
7636
|
+
reasoning: true;
|
|
6826
7637
|
input: "text"[];
|
|
6827
7638
|
cost: {
|
|
6828
7639
|
input: number;
|
|
@@ -6833,18 +7644,22 @@ export declare const MODELS: {
|
|
|
6833
7644
|
contextWindow: number;
|
|
6834
7645
|
maxTokens: number;
|
|
6835
7646
|
};
|
|
6836
|
-
readonly "
|
|
7647
|
+
readonly "openai/gpt-oss-20b": {
|
|
6837
7648
|
id: string;
|
|
6838
7649
|
name: string;
|
|
6839
7650
|
api: "openai-completions";
|
|
6840
7651
|
provider: string;
|
|
6841
7652
|
baseUrl: string;
|
|
7653
|
+
headers: {
|
|
7654
|
+
"NVCF-POLL-SECONDS": string;
|
|
7655
|
+
};
|
|
6842
7656
|
compat: {
|
|
6843
7657
|
supportsStore: false;
|
|
6844
7658
|
supportsDeveloperRole: false;
|
|
6845
7659
|
supportsReasoningEffort: false;
|
|
6846
7660
|
maxTokensField: "max_tokens";
|
|
6847
7661
|
supportsStrictMode: false;
|
|
7662
|
+
supportsLongCacheRetention: false;
|
|
6848
7663
|
};
|
|
6849
7664
|
reasoning: true;
|
|
6850
7665
|
input: "text"[];
|
|
@@ -6857,21 +7672,25 @@ export declare const MODELS: {
|
|
|
6857
7672
|
contextWindow: number;
|
|
6858
7673
|
maxTokens: number;
|
|
6859
7674
|
};
|
|
6860
|
-
readonly "
|
|
7675
|
+
readonly "qwen/qwen3.5-122b-a10b": {
|
|
6861
7676
|
id: string;
|
|
6862
7677
|
name: string;
|
|
6863
7678
|
api: "openai-completions";
|
|
6864
7679
|
provider: string;
|
|
6865
7680
|
baseUrl: string;
|
|
7681
|
+
headers: {
|
|
7682
|
+
"NVCF-POLL-SECONDS": string;
|
|
7683
|
+
};
|
|
6866
7684
|
compat: {
|
|
6867
7685
|
supportsStore: false;
|
|
6868
7686
|
supportsDeveloperRole: false;
|
|
6869
7687
|
supportsReasoningEffort: false;
|
|
6870
7688
|
maxTokensField: "max_tokens";
|
|
6871
7689
|
supportsStrictMode: false;
|
|
7690
|
+
supportsLongCacheRetention: false;
|
|
6872
7691
|
};
|
|
6873
7692
|
reasoning: true;
|
|
6874
|
-
input: "text"[];
|
|
7693
|
+
input: ("image" | "text")[];
|
|
6875
7694
|
cost: {
|
|
6876
7695
|
input: number;
|
|
6877
7696
|
output: number;
|
|
@@ -6881,20 +7700,24 @@ export declare const MODELS: {
|
|
|
6881
7700
|
contextWindow: number;
|
|
6882
7701
|
maxTokens: number;
|
|
6883
7702
|
};
|
|
6884
|
-
readonly "
|
|
7703
|
+
readonly "stepfun-ai/step-3.5-flash": {
|
|
6885
7704
|
id: string;
|
|
6886
7705
|
name: string;
|
|
6887
7706
|
api: "openai-completions";
|
|
6888
7707
|
provider: string;
|
|
6889
7708
|
baseUrl: string;
|
|
7709
|
+
headers: {
|
|
7710
|
+
"NVCF-POLL-SECONDS": string;
|
|
7711
|
+
};
|
|
6890
7712
|
compat: {
|
|
6891
7713
|
supportsStore: false;
|
|
6892
7714
|
supportsDeveloperRole: false;
|
|
6893
7715
|
supportsReasoningEffort: false;
|
|
6894
7716
|
maxTokensField: "max_tokens";
|
|
6895
7717
|
supportsStrictMode: false;
|
|
7718
|
+
supportsLongCacheRetention: false;
|
|
6896
7719
|
};
|
|
6897
|
-
reasoning:
|
|
7720
|
+
reasoning: true;
|
|
6898
7721
|
input: "text"[];
|
|
6899
7722
|
cost: {
|
|
6900
7723
|
input: number;
|
|
@@ -6905,18 +7728,22 @@ export declare const MODELS: {
|
|
|
6905
7728
|
contextWindow: number;
|
|
6906
7729
|
maxTokens: number;
|
|
6907
7730
|
};
|
|
6908
|
-
readonly "
|
|
7731
|
+
readonly "stepfun-ai/step-3.7-flash": {
|
|
6909
7732
|
id: string;
|
|
6910
7733
|
name: string;
|
|
6911
7734
|
api: "openai-completions";
|
|
6912
7735
|
provider: string;
|
|
6913
7736
|
baseUrl: string;
|
|
7737
|
+
headers: {
|
|
7738
|
+
"NVCF-POLL-SECONDS": string;
|
|
7739
|
+
};
|
|
6914
7740
|
compat: {
|
|
6915
7741
|
supportsStore: false;
|
|
6916
7742
|
supportsDeveloperRole: false;
|
|
6917
7743
|
supportsReasoningEffort: false;
|
|
6918
7744
|
maxTokensField: "max_tokens";
|
|
6919
7745
|
supportsStrictMode: false;
|
|
7746
|
+
supportsLongCacheRetention: false;
|
|
6920
7747
|
};
|
|
6921
7748
|
reasoning: true;
|
|
6922
7749
|
input: ("image" | "text")[];
|
|
@@ -6929,21 +7756,25 @@ export declare const MODELS: {
|
|
|
6929
7756
|
contextWindow: number;
|
|
6930
7757
|
maxTokens: number;
|
|
6931
7758
|
};
|
|
6932
|
-
readonly "
|
|
7759
|
+
readonly "z-ai/glm-5.1": {
|
|
6933
7760
|
id: string;
|
|
6934
7761
|
name: string;
|
|
6935
7762
|
api: "openai-completions";
|
|
6936
7763
|
provider: string;
|
|
6937
7764
|
baseUrl: string;
|
|
7765
|
+
headers: {
|
|
7766
|
+
"NVCF-POLL-SECONDS": string;
|
|
7767
|
+
};
|
|
6938
7768
|
compat: {
|
|
6939
7769
|
supportsStore: false;
|
|
6940
7770
|
supportsDeveloperRole: false;
|
|
6941
7771
|
supportsReasoningEffort: false;
|
|
6942
7772
|
maxTokensField: "max_tokens";
|
|
6943
7773
|
supportsStrictMode: false;
|
|
7774
|
+
supportsLongCacheRetention: false;
|
|
6944
7775
|
};
|
|
6945
7776
|
reasoning: true;
|
|
6946
|
-
input:
|
|
7777
|
+
input: "text"[];
|
|
6947
7778
|
cost: {
|
|
6948
7779
|
input: number;
|
|
6949
7780
|
output: number;
|
|
@@ -7586,6 +8417,7 @@ export declare const MODELS: {
|
|
|
7586
8417
|
thinkingLevelMap: {
|
|
7587
8418
|
off: string;
|
|
7588
8419
|
xhigh: string;
|
|
8420
|
+
minimal: null;
|
|
7589
8421
|
};
|
|
7590
8422
|
input: ("image" | "text")[];
|
|
7591
8423
|
cost: {
|
|
@@ -7705,41 +8537,7 @@ export declare const MODELS: {
|
|
|
7705
8537
|
contextWindow: number;
|
|
7706
8538
|
maxTokens: number;
|
|
7707
8539
|
};
|
|
7708
|
-
readonly "o3-pro": {
|
|
7709
|
-
id: string;
|
|
7710
|
-
name: string;
|
|
7711
|
-
api: "openai-responses";
|
|
7712
|
-
provider: string;
|
|
7713
|
-
baseUrl: string;
|
|
7714
|
-
reasoning: true;
|
|
7715
|
-
input: ("image" | "text")[];
|
|
7716
|
-
cost: {
|
|
7717
|
-
input: number;
|
|
7718
|
-
output: number;
|
|
7719
|
-
cacheRead: number;
|
|
7720
|
-
cacheWrite: number;
|
|
7721
|
-
};
|
|
7722
|
-
contextWindow: number;
|
|
7723
|
-
maxTokens: number;
|
|
7724
|
-
};
|
|
7725
|
-
readonly "o4-mini": {
|
|
7726
|
-
id: string;
|
|
7727
|
-
name: string;
|
|
7728
|
-
api: "openai-responses";
|
|
7729
|
-
provider: string;
|
|
7730
|
-
baseUrl: string;
|
|
7731
|
-
reasoning: true;
|
|
7732
|
-
input: ("image" | "text")[];
|
|
7733
|
-
cost: {
|
|
7734
|
-
input: number;
|
|
7735
|
-
output: number;
|
|
7736
|
-
cacheRead: number;
|
|
7737
|
-
cacheWrite: number;
|
|
7738
|
-
};
|
|
7739
|
-
contextWindow: number;
|
|
7740
|
-
maxTokens: number;
|
|
7741
|
-
};
|
|
7742
|
-
readonly "o4-mini-deep-research": {
|
|
8540
|
+
readonly "o3-pro": {
|
|
7743
8541
|
id: string;
|
|
7744
8542
|
name: string;
|
|
7745
8543
|
api: "openai-responses";
|
|
@@ -7756,19 +8554,13 @@ export declare const MODELS: {
|
|
|
7756
8554
|
contextWindow: number;
|
|
7757
8555
|
maxTokens: number;
|
|
7758
8556
|
};
|
|
7759
|
-
|
|
7760
|
-
readonly "openai-codex": {
|
|
7761
|
-
readonly "gpt-5.2": {
|
|
8557
|
+
readonly "o4-mini": {
|
|
7762
8558
|
id: string;
|
|
7763
8559
|
name: string;
|
|
7764
|
-
api: "openai-
|
|
8560
|
+
api: "openai-responses";
|
|
7765
8561
|
provider: string;
|
|
7766
8562
|
baseUrl: string;
|
|
7767
8563
|
reasoning: true;
|
|
7768
|
-
thinkingLevelMap: {
|
|
7769
|
-
xhigh: string;
|
|
7770
|
-
minimal: string;
|
|
7771
|
-
};
|
|
7772
8564
|
input: ("image" | "text")[];
|
|
7773
8565
|
cost: {
|
|
7774
8566
|
input: number;
|
|
@@ -7779,17 +8571,13 @@ export declare const MODELS: {
|
|
|
7779
8571
|
contextWindow: number;
|
|
7780
8572
|
maxTokens: number;
|
|
7781
8573
|
};
|
|
7782
|
-
readonly "
|
|
8574
|
+
readonly "o4-mini-deep-research": {
|
|
7783
8575
|
id: string;
|
|
7784
8576
|
name: string;
|
|
7785
|
-
api: "openai-
|
|
8577
|
+
api: "openai-responses";
|
|
7786
8578
|
provider: string;
|
|
7787
8579
|
baseUrl: string;
|
|
7788
8580
|
reasoning: true;
|
|
7789
|
-
thinkingLevelMap: {
|
|
7790
|
-
xhigh: string;
|
|
7791
|
-
minimal: string;
|
|
7792
|
-
};
|
|
7793
8581
|
input: ("image" | "text")[];
|
|
7794
8582
|
cost: {
|
|
7795
8583
|
input: number;
|
|
@@ -7800,6 +8588,8 @@ export declare const MODELS: {
|
|
|
7800
8588
|
contextWindow: number;
|
|
7801
8589
|
maxTokens: number;
|
|
7802
8590
|
};
|
|
8591
|
+
};
|
|
8592
|
+
readonly "openai-codex": {
|
|
7803
8593
|
readonly "gpt-5.3-codex-spark": {
|
|
7804
8594
|
id: string;
|
|
7805
8595
|
name: string;
|
|
@@ -7892,6 +8682,9 @@ export declare const MODELS: {
|
|
|
7892
8682
|
api: "openai-completions";
|
|
7893
8683
|
provider: string;
|
|
7894
8684
|
baseUrl: string;
|
|
8685
|
+
compat: {
|
|
8686
|
+
maxTokensField: "max_tokens";
|
|
8687
|
+
};
|
|
7895
8688
|
reasoning: true;
|
|
7896
8689
|
input: "text"[];
|
|
7897
8690
|
cost: {
|
|
@@ -7985,6 +8778,7 @@ export declare const MODELS: {
|
|
|
7985
8778
|
baseUrl: string;
|
|
7986
8779
|
compat: {
|
|
7987
8780
|
forceAdaptiveThinking: true;
|
|
8781
|
+
supportsTemperature: false;
|
|
7988
8782
|
};
|
|
7989
8783
|
reasoning: true;
|
|
7990
8784
|
thinkingLevelMap: {
|
|
@@ -8008,6 +8802,7 @@ export declare const MODELS: {
|
|
|
8008
8802
|
baseUrl: string;
|
|
8009
8803
|
compat: {
|
|
8010
8804
|
forceAdaptiveThinking: true;
|
|
8805
|
+
supportsTemperature: false;
|
|
8011
8806
|
};
|
|
8012
8807
|
reasoning: true;
|
|
8013
8808
|
thinkingLevelMap: {
|
|
@@ -8077,6 +8872,35 @@ export declare const MODELS: {
|
|
|
8077
8872
|
contextWindow: number;
|
|
8078
8873
|
maxTokens: number;
|
|
8079
8874
|
};
|
|
8875
|
+
readonly "deepseek-v4-flash": {
|
|
8876
|
+
id: string;
|
|
8877
|
+
name: string;
|
|
8878
|
+
api: "openai-completions";
|
|
8879
|
+
provider: string;
|
|
8880
|
+
baseUrl: string;
|
|
8881
|
+
compat: {
|
|
8882
|
+
maxTokensField: "max_tokens";
|
|
8883
|
+
requiresReasoningContentOnAssistantMessages: true;
|
|
8884
|
+
thinkingFormat: "deepseek";
|
|
8885
|
+
};
|
|
8886
|
+
reasoning: true;
|
|
8887
|
+
thinkingLevelMap: {
|
|
8888
|
+
minimal: null;
|
|
8889
|
+
low: null;
|
|
8890
|
+
medium: null;
|
|
8891
|
+
high: string;
|
|
8892
|
+
xhigh: string;
|
|
8893
|
+
};
|
|
8894
|
+
input: "text"[];
|
|
8895
|
+
cost: {
|
|
8896
|
+
input: number;
|
|
8897
|
+
output: number;
|
|
8898
|
+
cacheRead: number;
|
|
8899
|
+
cacheWrite: number;
|
|
8900
|
+
};
|
|
8901
|
+
contextWindow: number;
|
|
8902
|
+
maxTokens: number;
|
|
8903
|
+
};
|
|
8080
8904
|
readonly "deepseek-v4-flash-free": {
|
|
8081
8905
|
id: string;
|
|
8082
8906
|
name: string;
|
|
@@ -8084,6 +8908,36 @@ export declare const MODELS: {
|
|
|
8084
8908
|
provider: string;
|
|
8085
8909
|
baseUrl: string;
|
|
8086
8910
|
compat: {
|
|
8911
|
+
maxTokensField: "max_tokens";
|
|
8912
|
+
requiresReasoningContentOnAssistantMessages: true;
|
|
8913
|
+
thinkingFormat: "deepseek";
|
|
8914
|
+
};
|
|
8915
|
+
reasoning: true;
|
|
8916
|
+
thinkingLevelMap: {
|
|
8917
|
+
minimal: null;
|
|
8918
|
+
low: null;
|
|
8919
|
+
medium: null;
|
|
8920
|
+
high: string;
|
|
8921
|
+
xhigh: string;
|
|
8922
|
+
};
|
|
8923
|
+
input: "text"[];
|
|
8924
|
+
cost: {
|
|
8925
|
+
input: number;
|
|
8926
|
+
output: number;
|
|
8927
|
+
cacheRead: number;
|
|
8928
|
+
cacheWrite: number;
|
|
8929
|
+
};
|
|
8930
|
+
contextWindow: number;
|
|
8931
|
+
maxTokens: number;
|
|
8932
|
+
};
|
|
8933
|
+
readonly "deepseek-v4-pro": {
|
|
8934
|
+
id: string;
|
|
8935
|
+
name: string;
|
|
8936
|
+
api: "openai-completions";
|
|
8937
|
+
provider: string;
|
|
8938
|
+
baseUrl: string;
|
|
8939
|
+
compat: {
|
|
8940
|
+
maxTokensField: "max_tokens";
|
|
8087
8941
|
requiresReasoningContentOnAssistantMessages: true;
|
|
8088
8942
|
thinkingFormat: "deepseek";
|
|
8089
8943
|
};
|
|
@@ -8175,6 +9029,9 @@ export declare const MODELS: {
|
|
|
8175
9029
|
api: "openai-completions";
|
|
8176
9030
|
provider: string;
|
|
8177
9031
|
baseUrl: string;
|
|
9032
|
+
compat: {
|
|
9033
|
+
maxTokensField: "max_tokens";
|
|
9034
|
+
};
|
|
8178
9035
|
reasoning: true;
|
|
8179
9036
|
input: "text"[];
|
|
8180
9037
|
cost: {
|
|
@@ -8192,6 +9049,9 @@ export declare const MODELS: {
|
|
|
8192
9049
|
api: "openai-completions";
|
|
8193
9050
|
provider: string;
|
|
8194
9051
|
baseUrl: string;
|
|
9052
|
+
compat: {
|
|
9053
|
+
maxTokensField: "max_tokens";
|
|
9054
|
+
};
|
|
8195
9055
|
reasoning: true;
|
|
8196
9056
|
input: "text"[];
|
|
8197
9057
|
cost: {
|
|
@@ -8542,6 +9402,7 @@ export declare const MODELS: {
|
|
|
8542
9402
|
baseUrl: string;
|
|
8543
9403
|
compat: {
|
|
8544
9404
|
supportsReasoningEffort: false;
|
|
9405
|
+
maxTokensField: "max_tokens";
|
|
8545
9406
|
};
|
|
8546
9407
|
reasoning: true;
|
|
8547
9408
|
thinkingLevelMap: {
|
|
@@ -8566,6 +9427,9 @@ export declare const MODELS: {
|
|
|
8566
9427
|
api: "openai-completions";
|
|
8567
9428
|
provider: string;
|
|
8568
9429
|
baseUrl: string;
|
|
9430
|
+
compat: {
|
|
9431
|
+
maxTokensField: "max_tokens";
|
|
9432
|
+
};
|
|
8569
9433
|
reasoning: true;
|
|
8570
9434
|
input: ("image" | "text")[];
|
|
8571
9435
|
cost: {
|
|
@@ -8586,6 +9450,7 @@ export declare const MODELS: {
|
|
|
8586
9450
|
compat: {
|
|
8587
9451
|
thinkingFormat: "deepseek";
|
|
8588
9452
|
supportsReasoningEffort: false;
|
|
9453
|
+
maxTokensField: "max_tokens";
|
|
8589
9454
|
};
|
|
8590
9455
|
reasoning: true;
|
|
8591
9456
|
input: ("image" | "text")[];
|
|
@@ -8604,6 +9469,9 @@ export declare const MODELS: {
|
|
|
8604
9469
|
api: "openai-completions";
|
|
8605
9470
|
provider: string;
|
|
8606
9471
|
baseUrl: string;
|
|
9472
|
+
compat: {
|
|
9473
|
+
maxTokensField: "max_tokens";
|
|
9474
|
+
};
|
|
8607
9475
|
reasoning: true;
|
|
8608
9476
|
input: ("image" | "text")[];
|
|
8609
9477
|
cost: {
|
|
@@ -8621,6 +9489,9 @@ export declare const MODELS: {
|
|
|
8621
9489
|
api: "openai-completions";
|
|
8622
9490
|
provider: string;
|
|
8623
9491
|
baseUrl: string;
|
|
9492
|
+
compat: {
|
|
9493
|
+
maxTokensField: "max_tokens";
|
|
9494
|
+
};
|
|
8624
9495
|
reasoning: true;
|
|
8625
9496
|
input: "text"[];
|
|
8626
9497
|
cost: {
|
|
@@ -8638,6 +9509,29 @@ export declare const MODELS: {
|
|
|
8638
9509
|
api: "openai-completions";
|
|
8639
9510
|
provider: string;
|
|
8640
9511
|
baseUrl: string;
|
|
9512
|
+
compat: {
|
|
9513
|
+
maxTokensField: "max_tokens";
|
|
9514
|
+
};
|
|
9515
|
+
reasoning: true;
|
|
9516
|
+
input: "text"[];
|
|
9517
|
+
cost: {
|
|
9518
|
+
input: number;
|
|
9519
|
+
output: number;
|
|
9520
|
+
cacheRead: number;
|
|
9521
|
+
cacheWrite: number;
|
|
9522
|
+
};
|
|
9523
|
+
contextWindow: number;
|
|
9524
|
+
maxTokens: number;
|
|
9525
|
+
};
|
|
9526
|
+
readonly "nemotron-3-ultra-free": {
|
|
9527
|
+
id: string;
|
|
9528
|
+
name: string;
|
|
9529
|
+
api: "openai-completions";
|
|
9530
|
+
provider: string;
|
|
9531
|
+
baseUrl: string;
|
|
9532
|
+
compat: {
|
|
9533
|
+
maxTokensField: "max_tokens";
|
|
9534
|
+
};
|
|
8641
9535
|
reasoning: true;
|
|
8642
9536
|
input: "text"[];
|
|
8643
9537
|
cost: {
|
|
@@ -8649,12 +9543,15 @@ export declare const MODELS: {
|
|
|
8649
9543
|
contextWindow: number;
|
|
8650
9544
|
maxTokens: number;
|
|
8651
9545
|
};
|
|
8652
|
-
readonly "
|
|
9546
|
+
readonly "north-mini-code-free": {
|
|
8653
9547
|
id: string;
|
|
8654
9548
|
name: string;
|
|
8655
9549
|
api: "openai-completions";
|
|
8656
9550
|
provider: string;
|
|
8657
9551
|
baseUrl: string;
|
|
9552
|
+
compat: {
|
|
9553
|
+
maxTokensField: "max_tokens";
|
|
9554
|
+
};
|
|
8658
9555
|
reasoning: true;
|
|
8659
9556
|
input: "text"[];
|
|
8660
9557
|
cost: {
|
|
@@ -8709,6 +9606,7 @@ export declare const MODELS: {
|
|
|
8709
9606
|
provider: string;
|
|
8710
9607
|
baseUrl: string;
|
|
8711
9608
|
compat: {
|
|
9609
|
+
maxTokensField: "max_tokens";
|
|
8712
9610
|
requiresReasoningContentOnAssistantMessages: true;
|
|
8713
9611
|
thinkingFormat: "deepseek";
|
|
8714
9612
|
};
|
|
@@ -8737,6 +9635,7 @@ export declare const MODELS: {
|
|
|
8737
9635
|
provider: string;
|
|
8738
9636
|
baseUrl: string;
|
|
8739
9637
|
compat: {
|
|
9638
|
+
maxTokensField: "max_tokens";
|
|
8740
9639
|
requiresReasoningContentOnAssistantMessages: true;
|
|
8741
9640
|
thinkingFormat: "deepseek";
|
|
8742
9641
|
};
|
|
@@ -8764,6 +9663,9 @@ export declare const MODELS: {
|
|
|
8764
9663
|
api: "openai-completions";
|
|
8765
9664
|
provider: string;
|
|
8766
9665
|
baseUrl: string;
|
|
9666
|
+
compat: {
|
|
9667
|
+
maxTokensField: "max_tokens";
|
|
9668
|
+
};
|
|
8767
9669
|
reasoning: true;
|
|
8768
9670
|
input: "text"[];
|
|
8769
9671
|
cost: {
|
|
@@ -8781,6 +9683,9 @@ export declare const MODELS: {
|
|
|
8781
9683
|
api: "openai-completions";
|
|
8782
9684
|
provider: string;
|
|
8783
9685
|
baseUrl: string;
|
|
9686
|
+
compat: {
|
|
9687
|
+
maxTokensField: "max_tokens";
|
|
9688
|
+
};
|
|
8784
9689
|
reasoning: true;
|
|
8785
9690
|
input: "text"[];
|
|
8786
9691
|
cost: {
|
|
@@ -8792,13 +9697,23 @@ export declare const MODELS: {
|
|
|
8792
9697
|
contextWindow: number;
|
|
8793
9698
|
maxTokens: number;
|
|
8794
9699
|
};
|
|
8795
|
-
readonly "kimi-k2.
|
|
9700
|
+
readonly "kimi-k2.6": {
|
|
8796
9701
|
id: string;
|
|
8797
9702
|
name: string;
|
|
8798
9703
|
api: "openai-completions";
|
|
8799
9704
|
provider: string;
|
|
8800
9705
|
baseUrl: string;
|
|
9706
|
+
compat: {
|
|
9707
|
+
thinkingFormat: "deepseek";
|
|
9708
|
+
supportsReasoningEffort: false;
|
|
9709
|
+
maxTokensField: "max_tokens";
|
|
9710
|
+
};
|
|
8801
9711
|
reasoning: true;
|
|
9712
|
+
thinkingLevelMap: {
|
|
9713
|
+
minimal: null;
|
|
9714
|
+
low: null;
|
|
9715
|
+
medium: null;
|
|
9716
|
+
};
|
|
8802
9717
|
input: ("image" | "text")[];
|
|
8803
9718
|
cost: {
|
|
8804
9719
|
input: number;
|
|
@@ -8809,22 +9724,16 @@ export declare const MODELS: {
|
|
|
8809
9724
|
contextWindow: number;
|
|
8810
9725
|
maxTokens: number;
|
|
8811
9726
|
};
|
|
8812
|
-
readonly "kimi-k2.
|
|
9727
|
+
readonly "kimi-k2.7-code": {
|
|
8813
9728
|
id: string;
|
|
8814
9729
|
name: string;
|
|
8815
9730
|
api: "openai-completions";
|
|
8816
9731
|
provider: string;
|
|
8817
9732
|
baseUrl: string;
|
|
8818
9733
|
compat: {
|
|
8819
|
-
|
|
8820
|
-
supportsReasoningEffort: false;
|
|
9734
|
+
maxTokensField: "max_tokens";
|
|
8821
9735
|
};
|
|
8822
9736
|
reasoning: true;
|
|
8823
|
-
thinkingLevelMap: {
|
|
8824
|
-
minimal: null;
|
|
8825
|
-
low: null;
|
|
8826
|
-
medium: null;
|
|
8827
|
-
};
|
|
8828
9737
|
input: ("image" | "text")[];
|
|
8829
9738
|
cost: {
|
|
8830
9739
|
input: number;
|
|
@@ -8841,6 +9750,9 @@ export declare const MODELS: {
|
|
|
8841
9750
|
api: "openai-completions";
|
|
8842
9751
|
provider: string;
|
|
8843
9752
|
baseUrl: string;
|
|
9753
|
+
compat: {
|
|
9754
|
+
maxTokensField: "max_tokens";
|
|
9755
|
+
};
|
|
8844
9756
|
reasoning: true;
|
|
8845
9757
|
input: ("image" | "text")[];
|
|
8846
9758
|
cost: {
|
|
@@ -8858,6 +9770,9 @@ export declare const MODELS: {
|
|
|
8858
9770
|
api: "openai-completions";
|
|
8859
9771
|
provider: string;
|
|
8860
9772
|
baseUrl: string;
|
|
9773
|
+
compat: {
|
|
9774
|
+
maxTokensField: "max_tokens";
|
|
9775
|
+
};
|
|
8861
9776
|
reasoning: true;
|
|
8862
9777
|
input: "text"[];
|
|
8863
9778
|
cost: {
|
|
@@ -8869,12 +9784,15 @@ export declare const MODELS: {
|
|
|
8869
9784
|
contextWindow: number;
|
|
8870
9785
|
maxTokens: number;
|
|
8871
9786
|
};
|
|
8872
|
-
readonly "minimax-m2.
|
|
9787
|
+
readonly "minimax-m2.7": {
|
|
8873
9788
|
id: string;
|
|
8874
9789
|
name: string;
|
|
8875
|
-
api: "
|
|
9790
|
+
api: "openai-completions";
|
|
8876
9791
|
provider: string;
|
|
8877
9792
|
baseUrl: string;
|
|
9793
|
+
compat: {
|
|
9794
|
+
maxTokensField: "max_tokens";
|
|
9795
|
+
};
|
|
8878
9796
|
reasoning: true;
|
|
8879
9797
|
input: "text"[];
|
|
8880
9798
|
cost: {
|
|
@@ -8886,14 +9804,14 @@ export declare const MODELS: {
|
|
|
8886
9804
|
contextWindow: number;
|
|
8887
9805
|
maxTokens: number;
|
|
8888
9806
|
};
|
|
8889
|
-
readonly "minimax-
|
|
9807
|
+
readonly "minimax-m3": {
|
|
8890
9808
|
id: string;
|
|
8891
9809
|
name: string;
|
|
8892
|
-
api: "
|
|
9810
|
+
api: "anthropic-messages";
|
|
8893
9811
|
provider: string;
|
|
8894
9812
|
baseUrl: string;
|
|
8895
9813
|
reasoning: true;
|
|
8896
|
-
input: "text"[];
|
|
9814
|
+
input: ("image" | "text")[];
|
|
8897
9815
|
cost: {
|
|
8898
9816
|
input: number;
|
|
8899
9817
|
output: number;
|
|
@@ -8911,6 +9829,7 @@ export declare const MODELS: {
|
|
|
8911
9829
|
baseUrl: string;
|
|
8912
9830
|
compat: {
|
|
8913
9831
|
thinkingFormat: "qwen";
|
|
9832
|
+
maxTokensField: "max_tokens";
|
|
8914
9833
|
};
|
|
8915
9834
|
reasoning: true;
|
|
8916
9835
|
input: ("image" | "text")[];
|
|
@@ -8940,6 +9859,23 @@ export declare const MODELS: {
|
|
|
8940
9859
|
contextWindow: number;
|
|
8941
9860
|
maxTokens: number;
|
|
8942
9861
|
};
|
|
9862
|
+
readonly "qwen3.7-plus": {
|
|
9863
|
+
id: string;
|
|
9864
|
+
name: string;
|
|
9865
|
+
api: "anthropic-messages";
|
|
9866
|
+
provider: string;
|
|
9867
|
+
baseUrl: string;
|
|
9868
|
+
reasoning: true;
|
|
9869
|
+
input: ("image" | "text")[];
|
|
9870
|
+
cost: {
|
|
9871
|
+
input: number;
|
|
9872
|
+
output: number;
|
|
9873
|
+
cacheRead: number;
|
|
9874
|
+
cacheWrite: number;
|
|
9875
|
+
};
|
|
9876
|
+
contextWindow: number;
|
|
9877
|
+
maxTokens: number;
|
|
9878
|
+
};
|
|
8943
9879
|
};
|
|
8944
9880
|
readonly openrouter: {
|
|
8945
9881
|
readonly "ai21/jamba-large-1.7": {
|
|
@@ -9078,6 +10014,23 @@ export declare const MODELS: {
|
|
|
9078
10014
|
contextWindow: number;
|
|
9079
10015
|
maxTokens: number;
|
|
9080
10016
|
};
|
|
10017
|
+
readonly "anthropic/claude-fable-5": {
|
|
10018
|
+
id: string;
|
|
10019
|
+
name: string;
|
|
10020
|
+
api: "openai-completions";
|
|
10021
|
+
provider: string;
|
|
10022
|
+
baseUrl: string;
|
|
10023
|
+
reasoning: true;
|
|
10024
|
+
input: ("image" | "text")[];
|
|
10025
|
+
cost: {
|
|
10026
|
+
input: number;
|
|
10027
|
+
output: number;
|
|
10028
|
+
cacheRead: number;
|
|
10029
|
+
cacheWrite: number;
|
|
10030
|
+
};
|
|
10031
|
+
contextWindow: number;
|
|
10032
|
+
maxTokens: number;
|
|
10033
|
+
};
|
|
9081
10034
|
readonly "anthropic/claude-haiku-4.5": {
|
|
9082
10035
|
id: string;
|
|
9083
10036
|
name: string;
|
|
@@ -9385,40 +10338,6 @@ export declare const MODELS: {
|
|
|
9385
10338
|
contextWindow: number;
|
|
9386
10339
|
maxTokens: number;
|
|
9387
10340
|
};
|
|
9388
|
-
readonly "baidu/ernie-4.5-21b-a3b": {
|
|
9389
|
-
id: string;
|
|
9390
|
-
name: string;
|
|
9391
|
-
api: "openai-completions";
|
|
9392
|
-
provider: string;
|
|
9393
|
-
baseUrl: string;
|
|
9394
|
-
reasoning: false;
|
|
9395
|
-
input: "text"[];
|
|
9396
|
-
cost: {
|
|
9397
|
-
input: number;
|
|
9398
|
-
output: number;
|
|
9399
|
-
cacheRead: number;
|
|
9400
|
-
cacheWrite: number;
|
|
9401
|
-
};
|
|
9402
|
-
contextWindow: number;
|
|
9403
|
-
maxTokens: number;
|
|
9404
|
-
};
|
|
9405
|
-
readonly "baidu/ernie-4.5-vl-28b-a3b": {
|
|
9406
|
-
id: string;
|
|
9407
|
-
name: string;
|
|
9408
|
-
api: "openai-completions";
|
|
9409
|
-
provider: string;
|
|
9410
|
-
baseUrl: string;
|
|
9411
|
-
reasoning: true;
|
|
9412
|
-
input: ("image" | "text")[];
|
|
9413
|
-
cost: {
|
|
9414
|
-
input: number;
|
|
9415
|
-
output: number;
|
|
9416
|
-
cacheRead: number;
|
|
9417
|
-
cacheWrite: number;
|
|
9418
|
-
};
|
|
9419
|
-
contextWindow: number;
|
|
9420
|
-
maxTokens: number;
|
|
9421
|
-
};
|
|
9422
10341
|
readonly "bytedance-seed/seed-1.6": {
|
|
9423
10342
|
id: string;
|
|
9424
10343
|
name: string;
|
|
@@ -9572,24 +10491,7 @@ export declare const MODELS: {
|
|
|
9572
10491
|
contextWindow: number;
|
|
9573
10492
|
maxTokens: number;
|
|
9574
10493
|
};
|
|
9575
|
-
readonly "deepseek/deepseek-r1": {
|
|
9576
|
-
id: string;
|
|
9577
|
-
name: string;
|
|
9578
|
-
api: "openai-completions";
|
|
9579
|
-
provider: string;
|
|
9580
|
-
baseUrl: string;
|
|
9581
|
-
reasoning: true;
|
|
9582
|
-
input: "text"[];
|
|
9583
|
-
cost: {
|
|
9584
|
-
input: number;
|
|
9585
|
-
output: number;
|
|
9586
|
-
cacheRead: number;
|
|
9587
|
-
cacheWrite: number;
|
|
9588
|
-
};
|
|
9589
|
-
contextWindow: number;
|
|
9590
|
-
maxTokens: number;
|
|
9591
|
-
};
|
|
9592
|
-
readonly "deepseek/deepseek-r1-0528": {
|
|
10494
|
+
readonly "deepseek/deepseek-r1": {
|
|
9593
10495
|
id: string;
|
|
9594
10496
|
name: string;
|
|
9595
10497
|
api: "openai-completions";
|
|
@@ -9606,7 +10508,7 @@ export declare const MODELS: {
|
|
|
9606
10508
|
contextWindow: number;
|
|
9607
10509
|
maxTokens: number;
|
|
9608
10510
|
};
|
|
9609
|
-
readonly "deepseek/deepseek-
|
|
10511
|
+
readonly "deepseek/deepseek-r1-0528": {
|
|
9610
10512
|
id: string;
|
|
9611
10513
|
name: string;
|
|
9612
10514
|
api: "openai-completions";
|
|
@@ -9623,7 +10525,7 @@ export declare const MODELS: {
|
|
|
9623
10525
|
contextWindow: number;
|
|
9624
10526
|
maxTokens: number;
|
|
9625
10527
|
};
|
|
9626
|
-
readonly "deepseek/deepseek-v3.
|
|
10528
|
+
readonly "deepseek/deepseek-v3.1-terminus": {
|
|
9627
10529
|
id: string;
|
|
9628
10530
|
name: string;
|
|
9629
10531
|
api: "openai-completions";
|
|
@@ -9640,7 +10542,7 @@ export declare const MODELS: {
|
|
|
9640
10542
|
contextWindow: number;
|
|
9641
10543
|
maxTokens: number;
|
|
9642
10544
|
};
|
|
9643
|
-
readonly "deepseek/deepseek-v3.2
|
|
10545
|
+
readonly "deepseek/deepseek-v3.2": {
|
|
9644
10546
|
id: string;
|
|
9645
10547
|
name: string;
|
|
9646
10548
|
api: "openai-completions";
|
|
@@ -9657,23 +10559,13 @@ export declare const MODELS: {
|
|
|
9657
10559
|
contextWindow: number;
|
|
9658
10560
|
maxTokens: number;
|
|
9659
10561
|
};
|
|
9660
|
-
readonly "deepseek/deepseek-
|
|
10562
|
+
readonly "deepseek/deepseek-v3.2-exp": {
|
|
9661
10563
|
id: string;
|
|
9662
10564
|
name: string;
|
|
9663
10565
|
api: "openai-completions";
|
|
9664
10566
|
provider: string;
|
|
9665
10567
|
baseUrl: string;
|
|
9666
|
-
compat: {
|
|
9667
|
-
requiresReasoningContentOnAssistantMessages: true;
|
|
9668
|
-
};
|
|
9669
10568
|
reasoning: true;
|
|
9670
|
-
thinkingLevelMap: {
|
|
9671
|
-
minimal: null;
|
|
9672
|
-
low: null;
|
|
9673
|
-
medium: null;
|
|
9674
|
-
high: string;
|
|
9675
|
-
xhigh: string;
|
|
9676
|
-
};
|
|
9677
10569
|
input: "text"[];
|
|
9678
10570
|
cost: {
|
|
9679
10571
|
input: number;
|
|
@@ -9684,7 +10576,7 @@ export declare const MODELS: {
|
|
|
9684
10576
|
contextWindow: number;
|
|
9685
10577
|
maxTokens: number;
|
|
9686
10578
|
};
|
|
9687
|
-
readonly "deepseek/deepseek-v4-flash
|
|
10579
|
+
readonly "deepseek/deepseek-v4-flash": {
|
|
9688
10580
|
id: string;
|
|
9689
10581
|
name: string;
|
|
9690
10582
|
api: "openai-completions";
|
|
@@ -9755,40 +10647,6 @@ export declare const MODELS: {
|
|
|
9755
10647
|
contextWindow: number;
|
|
9756
10648
|
maxTokens: number;
|
|
9757
10649
|
};
|
|
9758
|
-
readonly "google/gemini-2.0-flash-001": {
|
|
9759
|
-
id: string;
|
|
9760
|
-
name: string;
|
|
9761
|
-
api: "openai-completions";
|
|
9762
|
-
provider: string;
|
|
9763
|
-
baseUrl: string;
|
|
9764
|
-
reasoning: false;
|
|
9765
|
-
input: ("image" | "text")[];
|
|
9766
|
-
cost: {
|
|
9767
|
-
input: number;
|
|
9768
|
-
output: number;
|
|
9769
|
-
cacheRead: number;
|
|
9770
|
-
cacheWrite: number;
|
|
9771
|
-
};
|
|
9772
|
-
contextWindow: number;
|
|
9773
|
-
maxTokens: number;
|
|
9774
|
-
};
|
|
9775
|
-
readonly "google/gemini-2.0-flash-lite-001": {
|
|
9776
|
-
id: string;
|
|
9777
|
-
name: string;
|
|
9778
|
-
api: "openai-completions";
|
|
9779
|
-
provider: string;
|
|
9780
|
-
baseUrl: string;
|
|
9781
|
-
reasoning: false;
|
|
9782
|
-
input: ("image" | "text")[];
|
|
9783
|
-
cost: {
|
|
9784
|
-
input: number;
|
|
9785
|
-
output: number;
|
|
9786
|
-
cacheRead: number;
|
|
9787
|
-
cacheWrite: number;
|
|
9788
|
-
};
|
|
9789
|
-
contextWindow: number;
|
|
9790
|
-
maxTokens: number;
|
|
9791
|
-
};
|
|
9792
10650
|
readonly "google/gemini-2.5-flash": {
|
|
9793
10651
|
id: string;
|
|
9794
10652
|
name: string;
|
|
@@ -10268,7 +11126,7 @@ export declare const MODELS: {
|
|
|
10268
11126
|
contextWindow: number;
|
|
10269
11127
|
maxTokens: number;
|
|
10270
11128
|
};
|
|
10271
|
-
readonly "meta-llama/llama-4-
|
|
11129
|
+
readonly "meta-llama/llama-4-maverick": {
|
|
10272
11130
|
id: string;
|
|
10273
11131
|
name: string;
|
|
10274
11132
|
api: "openai-completions";
|
|
@@ -10285,14 +11143,14 @@ export declare const MODELS: {
|
|
|
10285
11143
|
contextWindow: number;
|
|
10286
11144
|
maxTokens: number;
|
|
10287
11145
|
};
|
|
10288
|
-
readonly "
|
|
11146
|
+
readonly "meta-llama/llama-4-scout": {
|
|
10289
11147
|
id: string;
|
|
10290
11148
|
name: string;
|
|
10291
11149
|
api: "openai-completions";
|
|
10292
11150
|
provider: string;
|
|
10293
11151
|
baseUrl: string;
|
|
10294
|
-
reasoning:
|
|
10295
|
-
input: "text"[];
|
|
11152
|
+
reasoning: false;
|
|
11153
|
+
input: ("image" | "text")[];
|
|
10296
11154
|
cost: {
|
|
10297
11155
|
input: number;
|
|
10298
11156
|
output: number;
|
|
@@ -10302,7 +11160,7 @@ export declare const MODELS: {
|
|
|
10302
11160
|
contextWindow: number;
|
|
10303
11161
|
maxTokens: number;
|
|
10304
11162
|
};
|
|
10305
|
-
readonly "minimax/minimax-
|
|
11163
|
+
readonly "minimax/minimax-m1": {
|
|
10306
11164
|
id: string;
|
|
10307
11165
|
name: string;
|
|
10308
11166
|
api: "openai-completions";
|
|
@@ -10319,7 +11177,7 @@ export declare const MODELS: {
|
|
|
10319
11177
|
contextWindow: number;
|
|
10320
11178
|
maxTokens: number;
|
|
10321
11179
|
};
|
|
10322
|
-
readonly "minimax/minimax-m2
|
|
11180
|
+
readonly "minimax/minimax-m2": {
|
|
10323
11181
|
id: string;
|
|
10324
11182
|
name: string;
|
|
10325
11183
|
api: "openai-completions";
|
|
@@ -10336,7 +11194,7 @@ export declare const MODELS: {
|
|
|
10336
11194
|
contextWindow: number;
|
|
10337
11195
|
maxTokens: number;
|
|
10338
11196
|
};
|
|
10339
|
-
readonly "minimax/minimax-m2.
|
|
11197
|
+
readonly "minimax/minimax-m2.1": {
|
|
10340
11198
|
id: string;
|
|
10341
11199
|
name: string;
|
|
10342
11200
|
api: "openai-completions";
|
|
@@ -10353,7 +11211,7 @@ export declare const MODELS: {
|
|
|
10353
11211
|
contextWindow: number;
|
|
10354
11212
|
maxTokens: number;
|
|
10355
11213
|
};
|
|
10356
|
-
readonly "minimax/minimax-m2.5
|
|
11214
|
+
readonly "minimax/minimax-m2.5": {
|
|
10357
11215
|
id: string;
|
|
10358
11216
|
name: string;
|
|
10359
11217
|
api: "openai-completions";
|
|
@@ -10387,31 +11245,14 @@ export declare const MODELS: {
|
|
|
10387
11245
|
contextWindow: number;
|
|
10388
11246
|
maxTokens: number;
|
|
10389
11247
|
};
|
|
10390
|
-
readonly "
|
|
10391
|
-
id: string;
|
|
10392
|
-
name: string;
|
|
10393
|
-
api: "openai-completions";
|
|
10394
|
-
provider: string;
|
|
10395
|
-
baseUrl: string;
|
|
10396
|
-
reasoning: false;
|
|
10397
|
-
input: "text"[];
|
|
10398
|
-
cost: {
|
|
10399
|
-
input: number;
|
|
10400
|
-
output: number;
|
|
10401
|
-
cacheRead: number;
|
|
10402
|
-
cacheWrite: number;
|
|
10403
|
-
};
|
|
10404
|
-
contextWindow: number;
|
|
10405
|
-
maxTokens: number;
|
|
10406
|
-
};
|
|
10407
|
-
readonly "mistralai/devstral-2512": {
|
|
11248
|
+
readonly "minimax/minimax-m3": {
|
|
10408
11249
|
id: string;
|
|
10409
11250
|
name: string;
|
|
10410
11251
|
api: "openai-completions";
|
|
10411
11252
|
provider: string;
|
|
10412
11253
|
baseUrl: string;
|
|
10413
|
-
reasoning:
|
|
10414
|
-
input: "text"[];
|
|
11254
|
+
reasoning: true;
|
|
11255
|
+
input: ("image" | "text")[];
|
|
10415
11256
|
cost: {
|
|
10416
11257
|
input: number;
|
|
10417
11258
|
output: number;
|
|
@@ -10421,7 +11262,7 @@ export declare const MODELS: {
|
|
|
10421
11262
|
contextWindow: number;
|
|
10422
11263
|
maxTokens: number;
|
|
10423
11264
|
};
|
|
10424
|
-
readonly "mistralai/
|
|
11265
|
+
readonly "mistralai/codestral-2508": {
|
|
10425
11266
|
id: string;
|
|
10426
11267
|
name: string;
|
|
10427
11268
|
api: "openai-completions";
|
|
@@ -10438,7 +11279,7 @@ export declare const MODELS: {
|
|
|
10438
11279
|
contextWindow: number;
|
|
10439
11280
|
maxTokens: number;
|
|
10440
11281
|
};
|
|
10441
|
-
readonly "mistralai/devstral-
|
|
11282
|
+
readonly "mistralai/devstral-2512": {
|
|
10442
11283
|
id: string;
|
|
10443
11284
|
name: string;
|
|
10444
11285
|
api: "openai-completions";
|
|
@@ -10540,23 +11381,6 @@ export declare const MODELS: {
|
|
|
10540
11381
|
contextWindow: number;
|
|
10541
11382
|
maxTokens: number;
|
|
10542
11383
|
};
|
|
10543
|
-
readonly "mistralai/mistral-large-2411": {
|
|
10544
|
-
id: string;
|
|
10545
|
-
name: string;
|
|
10546
|
-
api: "openai-completions";
|
|
10547
|
-
provider: string;
|
|
10548
|
-
baseUrl: string;
|
|
10549
|
-
reasoning: false;
|
|
10550
|
-
input: "text"[];
|
|
10551
|
-
cost: {
|
|
10552
|
-
input: number;
|
|
10553
|
-
output: number;
|
|
10554
|
-
cacheRead: number;
|
|
10555
|
-
cacheWrite: number;
|
|
10556
|
-
};
|
|
10557
|
-
contextWindow: number;
|
|
10558
|
-
maxTokens: number;
|
|
10559
|
-
};
|
|
10560
11384
|
readonly "mistralai/mistral-large-2512": {
|
|
10561
11385
|
id: string;
|
|
10562
11386
|
name: string;
|
|
@@ -10710,23 +11534,6 @@ export declare const MODELS: {
|
|
|
10710
11534
|
contextWindow: number;
|
|
10711
11535
|
maxTokens: number;
|
|
10712
11536
|
};
|
|
10713
|
-
readonly "mistralai/pixtral-large-2411": {
|
|
10714
|
-
id: string;
|
|
10715
|
-
name: string;
|
|
10716
|
-
api: "openai-completions";
|
|
10717
|
-
provider: string;
|
|
10718
|
-
baseUrl: string;
|
|
10719
|
-
reasoning: false;
|
|
10720
|
-
input: ("image" | "text")[];
|
|
10721
|
-
cost: {
|
|
10722
|
-
input: number;
|
|
10723
|
-
output: number;
|
|
10724
|
-
cacheRead: number;
|
|
10725
|
-
cacheWrite: number;
|
|
10726
|
-
};
|
|
10727
|
-
contextWindow: number;
|
|
10728
|
-
maxTokens: number;
|
|
10729
|
-
};
|
|
10730
11537
|
readonly "mistralai/voxtral-small-24b-2507": {
|
|
10731
11538
|
id: string;
|
|
10732
11539
|
name: string;
|
|
@@ -10820,6 +11627,7 @@ export declare const MODELS: {
|
|
|
10820
11627
|
baseUrl: string;
|
|
10821
11628
|
compat: {
|
|
10822
11629
|
supportsDeveloperRole: false;
|
|
11630
|
+
requiresReasoningContentOnAssistantMessages: true;
|
|
10823
11631
|
};
|
|
10824
11632
|
reasoning: true;
|
|
10825
11633
|
input: ("image" | "text")[];
|
|
@@ -10832,15 +11640,12 @@ export declare const MODELS: {
|
|
|
10832
11640
|
contextWindow: number;
|
|
10833
11641
|
maxTokens: number;
|
|
10834
11642
|
};
|
|
10835
|
-
readonly "moonshotai/kimi-k2.
|
|
11643
|
+
readonly "moonshotai/kimi-k2.7-code": {
|
|
10836
11644
|
id: string;
|
|
10837
11645
|
name: string;
|
|
10838
11646
|
api: "openai-completions";
|
|
10839
11647
|
provider: string;
|
|
10840
11648
|
baseUrl: string;
|
|
10841
|
-
compat: {
|
|
10842
|
-
supportsDeveloperRole: false;
|
|
10843
|
-
};
|
|
10844
11649
|
reasoning: true;
|
|
10845
11650
|
input: ("image" | "text")[];
|
|
10846
11651
|
cost: {
|
|
@@ -10852,14 +11657,14 @@ export declare const MODELS: {
|
|
|
10852
11657
|
contextWindow: number;
|
|
10853
11658
|
maxTokens: number;
|
|
10854
11659
|
};
|
|
10855
|
-
readonly "nex-agi/
|
|
11660
|
+
readonly "nex-agi/nex-n2-pro:free": {
|
|
10856
11661
|
id: string;
|
|
10857
11662
|
name: string;
|
|
10858
11663
|
api: "openai-completions";
|
|
10859
11664
|
provider: string;
|
|
10860
11665
|
baseUrl: string;
|
|
10861
|
-
reasoning:
|
|
10862
|
-
input: "text"[];
|
|
11666
|
+
reasoning: true;
|
|
11667
|
+
input: ("image" | "text")[];
|
|
10863
11668
|
cost: {
|
|
10864
11669
|
input: number;
|
|
10865
11670
|
output: number;
|
|
@@ -10971,24 +11776,7 @@ export declare const MODELS: {
|
|
|
10971
11776
|
contextWindow: number;
|
|
10972
11777
|
maxTokens: number;
|
|
10973
11778
|
};
|
|
10974
|
-
readonly "nvidia/nemotron-
|
|
10975
|
-
id: string;
|
|
10976
|
-
name: string;
|
|
10977
|
-
api: "openai-completions";
|
|
10978
|
-
provider: string;
|
|
10979
|
-
baseUrl: string;
|
|
10980
|
-
reasoning: true;
|
|
10981
|
-
input: ("image" | "text")[];
|
|
10982
|
-
cost: {
|
|
10983
|
-
input: number;
|
|
10984
|
-
output: number;
|
|
10985
|
-
cacheRead: number;
|
|
10986
|
-
cacheWrite: number;
|
|
10987
|
-
};
|
|
10988
|
-
contextWindow: number;
|
|
10989
|
-
maxTokens: number;
|
|
10990
|
-
};
|
|
10991
|
-
readonly "nvidia/nemotron-nano-9b-v2": {
|
|
11779
|
+
readonly "nvidia/nemotron-3-ultra-550b-a55b": {
|
|
10992
11780
|
id: string;
|
|
10993
11781
|
name: string;
|
|
10994
11782
|
api: "openai-completions";
|
|
@@ -11005,7 +11793,7 @@ export declare const MODELS: {
|
|
|
11005
11793
|
contextWindow: number;
|
|
11006
11794
|
maxTokens: number;
|
|
11007
11795
|
};
|
|
11008
|
-
readonly "nvidia/nemotron-
|
|
11796
|
+
readonly "nvidia/nemotron-3-ultra-550b-a55b:free": {
|
|
11009
11797
|
id: string;
|
|
11010
11798
|
name: string;
|
|
11011
11799
|
api: "openai-completions";
|
|
@@ -11022,14 +11810,14 @@ export declare const MODELS: {
|
|
|
11022
11810
|
contextWindow: number;
|
|
11023
11811
|
maxTokens: number;
|
|
11024
11812
|
};
|
|
11025
|
-
readonly "
|
|
11813
|
+
readonly "nvidia/nemotron-nano-12b-v2-vl:free": {
|
|
11026
11814
|
id: string;
|
|
11027
11815
|
name: string;
|
|
11028
11816
|
api: "openai-completions";
|
|
11029
11817
|
provider: string;
|
|
11030
11818
|
baseUrl: string;
|
|
11031
|
-
reasoning:
|
|
11032
|
-
input: "text"[];
|
|
11819
|
+
reasoning: true;
|
|
11820
|
+
input: ("image" | "text")[];
|
|
11033
11821
|
cost: {
|
|
11034
11822
|
input: number;
|
|
11035
11823
|
output: number;
|
|
@@ -11039,13 +11827,13 @@ export declare const MODELS: {
|
|
|
11039
11827
|
contextWindow: number;
|
|
11040
11828
|
maxTokens: number;
|
|
11041
11829
|
};
|
|
11042
|
-
readonly "
|
|
11830
|
+
readonly "nvidia/nemotron-nano-9b-v2:free": {
|
|
11043
11831
|
id: string;
|
|
11044
11832
|
name: string;
|
|
11045
11833
|
api: "openai-completions";
|
|
11046
11834
|
provider: string;
|
|
11047
11835
|
baseUrl: string;
|
|
11048
|
-
reasoning:
|
|
11836
|
+
reasoning: true;
|
|
11049
11837
|
input: "text"[];
|
|
11050
11838
|
cost: {
|
|
11051
11839
|
input: number;
|
|
@@ -11056,7 +11844,7 @@ export declare const MODELS: {
|
|
|
11056
11844
|
contextWindow: number;
|
|
11057
11845
|
maxTokens: number;
|
|
11058
11846
|
};
|
|
11059
|
-
readonly "openai/gpt-3.5-turbo
|
|
11847
|
+
readonly "openai/gpt-3.5-turbo": {
|
|
11060
11848
|
id: string;
|
|
11061
11849
|
name: string;
|
|
11062
11850
|
api: "openai-completions";
|
|
@@ -11073,7 +11861,7 @@ export declare const MODELS: {
|
|
|
11073
11861
|
contextWindow: number;
|
|
11074
11862
|
maxTokens: number;
|
|
11075
11863
|
};
|
|
11076
|
-
readonly "openai/gpt-
|
|
11864
|
+
readonly "openai/gpt-3.5-turbo-0613": {
|
|
11077
11865
|
id: string;
|
|
11078
11866
|
name: string;
|
|
11079
11867
|
api: "openai-completions";
|
|
@@ -11090,7 +11878,7 @@ export declare const MODELS: {
|
|
|
11090
11878
|
contextWindow: number;
|
|
11091
11879
|
maxTokens: number;
|
|
11092
11880
|
};
|
|
11093
|
-
readonly "openai/gpt-
|
|
11881
|
+
readonly "openai/gpt-3.5-turbo-16k": {
|
|
11094
11882
|
id: string;
|
|
11095
11883
|
name: string;
|
|
11096
11884
|
api: "openai-completions";
|
|
@@ -11107,7 +11895,7 @@ export declare const MODELS: {
|
|
|
11107
11895
|
contextWindow: number;
|
|
11108
11896
|
maxTokens: number;
|
|
11109
11897
|
};
|
|
11110
|
-
readonly "openai/gpt-4
|
|
11898
|
+
readonly "openai/gpt-4": {
|
|
11111
11899
|
id: string;
|
|
11112
11900
|
name: string;
|
|
11113
11901
|
api: "openai-completions";
|
|
@@ -12132,23 +12920,6 @@ export declare const MODELS: {
|
|
|
12132
12920
|
contextWindow: number;
|
|
12133
12921
|
maxTokens: number;
|
|
12134
12922
|
};
|
|
12135
|
-
readonly "qwen/qwen-2.5-7b-instruct": {
|
|
12136
|
-
id: string;
|
|
12137
|
-
name: string;
|
|
12138
|
-
api: "openai-completions";
|
|
12139
|
-
provider: string;
|
|
12140
|
-
baseUrl: string;
|
|
12141
|
-
reasoning: false;
|
|
12142
|
-
input: "text"[];
|
|
12143
|
-
cost: {
|
|
12144
|
-
input: number;
|
|
12145
|
-
output: number;
|
|
12146
|
-
cacheRead: number;
|
|
12147
|
-
cacheWrite: number;
|
|
12148
|
-
};
|
|
12149
|
-
contextWindow: number;
|
|
12150
|
-
maxTokens: number;
|
|
12151
|
-
};
|
|
12152
12923
|
readonly "qwen/qwen-plus": {
|
|
12153
12924
|
id: string;
|
|
12154
12925
|
name: string;
|
|
@@ -12897,13 +13668,13 @@ export declare const MODELS: {
|
|
|
12897
13668
|
contextWindow: number;
|
|
12898
13669
|
maxTokens: number;
|
|
12899
13670
|
};
|
|
12900
|
-
readonly "
|
|
13671
|
+
readonly "qwen/qwen3.7-plus": {
|
|
12901
13672
|
id: string;
|
|
12902
13673
|
name: string;
|
|
12903
13674
|
api: "openai-completions";
|
|
12904
13675
|
provider: string;
|
|
12905
13676
|
baseUrl: string;
|
|
12906
|
-
reasoning:
|
|
13677
|
+
reasoning: true;
|
|
12907
13678
|
input: ("image" | "text")[];
|
|
12908
13679
|
cost: {
|
|
12909
13680
|
input: number;
|
|
@@ -12914,14 +13685,14 @@ export declare const MODELS: {
|
|
|
12914
13685
|
contextWindow: number;
|
|
12915
13686
|
maxTokens: number;
|
|
12916
13687
|
};
|
|
12917
|
-
readonly "
|
|
13688
|
+
readonly "rekaai/reka-edge": {
|
|
12918
13689
|
id: string;
|
|
12919
13690
|
name: string;
|
|
12920
13691
|
api: "openai-completions";
|
|
12921
13692
|
provider: string;
|
|
12922
13693
|
baseUrl: string;
|
|
12923
13694
|
reasoning: false;
|
|
12924
|
-
input: "text"[];
|
|
13695
|
+
input: ("image" | "text")[];
|
|
12925
13696
|
cost: {
|
|
12926
13697
|
input: number;
|
|
12927
13698
|
output: number;
|
|
@@ -12931,7 +13702,7 @@ export declare const MODELS: {
|
|
|
12931
13702
|
contextWindow: number;
|
|
12932
13703
|
maxTokens: number;
|
|
12933
13704
|
};
|
|
12934
|
-
readonly "
|
|
13705
|
+
readonly "relace/relace-search": {
|
|
12935
13706
|
id: string;
|
|
12936
13707
|
name: string;
|
|
12937
13708
|
api: "openai-completions";
|
|
@@ -13135,82 +13906,14 @@ export declare const MODELS: {
|
|
|
13135
13906
|
contextWindow: number;
|
|
13136
13907
|
maxTokens: number;
|
|
13137
13908
|
};
|
|
13138
|
-
readonly "xiaomi/mimo-v2
|
|
13139
|
-
id: string;
|
|
13140
|
-
name: string;
|
|
13141
|
-
api: "openai-completions";
|
|
13142
|
-
provider: string;
|
|
13143
|
-
baseUrl: string;
|
|
13144
|
-
reasoning: true;
|
|
13145
|
-
input: ("image" | "text")[];
|
|
13146
|
-
cost: {
|
|
13147
|
-
input: number;
|
|
13148
|
-
output: number;
|
|
13149
|
-
cacheRead: number;
|
|
13150
|
-
cacheWrite: number;
|
|
13151
|
-
};
|
|
13152
|
-
contextWindow: number;
|
|
13153
|
-
maxTokens: number;
|
|
13154
|
-
};
|
|
13155
|
-
readonly "xiaomi/mimo-v2-pro": {
|
|
13156
|
-
id: string;
|
|
13157
|
-
name: string;
|
|
13158
|
-
api: "openai-completions";
|
|
13159
|
-
provider: string;
|
|
13160
|
-
baseUrl: string;
|
|
13161
|
-
reasoning: true;
|
|
13162
|
-
input: "text"[];
|
|
13163
|
-
cost: {
|
|
13164
|
-
input: number;
|
|
13165
|
-
output: number;
|
|
13166
|
-
cacheRead: number;
|
|
13167
|
-
cacheWrite: number;
|
|
13168
|
-
};
|
|
13169
|
-
contextWindow: number;
|
|
13170
|
-
maxTokens: number;
|
|
13171
|
-
};
|
|
13172
|
-
readonly "xiaomi/mimo-v2.5": {
|
|
13173
|
-
id: string;
|
|
13174
|
-
name: string;
|
|
13175
|
-
api: "openai-completions";
|
|
13176
|
-
provider: string;
|
|
13177
|
-
baseUrl: string;
|
|
13178
|
-
reasoning: true;
|
|
13179
|
-
input: ("image" | "text")[];
|
|
13180
|
-
cost: {
|
|
13181
|
-
input: number;
|
|
13182
|
-
output: number;
|
|
13183
|
-
cacheRead: number;
|
|
13184
|
-
cacheWrite: number;
|
|
13185
|
-
};
|
|
13186
|
-
contextWindow: number;
|
|
13187
|
-
maxTokens: number;
|
|
13188
|
-
};
|
|
13189
|
-
readonly "xiaomi/mimo-v2.5-pro": {
|
|
13190
|
-
id: string;
|
|
13191
|
-
name: string;
|
|
13192
|
-
api: "openai-completions";
|
|
13193
|
-
provider: string;
|
|
13194
|
-
baseUrl: string;
|
|
13195
|
-
reasoning: true;
|
|
13196
|
-
input: "text"[];
|
|
13197
|
-
cost: {
|
|
13198
|
-
input: number;
|
|
13199
|
-
output: number;
|
|
13200
|
-
cacheRead: number;
|
|
13201
|
-
cacheWrite: number;
|
|
13202
|
-
};
|
|
13203
|
-
contextWindow: number;
|
|
13204
|
-
maxTokens: number;
|
|
13205
|
-
};
|
|
13206
|
-
readonly "z-ai/glm-4-32b": {
|
|
13909
|
+
readonly "xiaomi/mimo-v2.5": {
|
|
13207
13910
|
id: string;
|
|
13208
13911
|
name: string;
|
|
13209
13912
|
api: "openai-completions";
|
|
13210
13913
|
provider: string;
|
|
13211
13914
|
baseUrl: string;
|
|
13212
|
-
reasoning:
|
|
13213
|
-
input: "text"[];
|
|
13915
|
+
reasoning: true;
|
|
13916
|
+
input: ("image" | "text")[];
|
|
13214
13917
|
cost: {
|
|
13215
13918
|
input: number;
|
|
13216
13919
|
output: number;
|
|
@@ -13220,7 +13923,7 @@ export declare const MODELS: {
|
|
|
13220
13923
|
contextWindow: number;
|
|
13221
13924
|
maxTokens: number;
|
|
13222
13925
|
};
|
|
13223
|
-
readonly "
|
|
13926
|
+
readonly "xiaomi/mimo-v2.5-pro": {
|
|
13224
13927
|
id: string;
|
|
13225
13928
|
name: string;
|
|
13226
13929
|
api: "openai-completions";
|
|
@@ -13237,7 +13940,7 @@ export declare const MODELS: {
|
|
|
13237
13940
|
contextWindow: number;
|
|
13238
13941
|
maxTokens: number;
|
|
13239
13942
|
};
|
|
13240
|
-
readonly "z-ai/glm-4.5
|
|
13943
|
+
readonly "z-ai/glm-4.5": {
|
|
13241
13944
|
id: string;
|
|
13242
13945
|
name: string;
|
|
13243
13946
|
api: "openai-completions";
|
|
@@ -13254,7 +13957,7 @@ export declare const MODELS: {
|
|
|
13254
13957
|
contextWindow: number;
|
|
13255
13958
|
maxTokens: number;
|
|
13256
13959
|
};
|
|
13257
|
-
readonly "z-ai/glm-4.5-air
|
|
13960
|
+
readonly "z-ai/glm-4.5-air": {
|
|
13258
13961
|
id: string;
|
|
13259
13962
|
name: string;
|
|
13260
13963
|
api: "openai-completions";
|
|
@@ -13407,7 +14110,7 @@ export declare const MODELS: {
|
|
|
13407
14110
|
contextWindow: number;
|
|
13408
14111
|
maxTokens: number;
|
|
13409
14112
|
};
|
|
13410
|
-
readonly "
|
|
14113
|
+
readonly "~anthropic/claude-fable-latest": {
|
|
13411
14114
|
id: string;
|
|
13412
14115
|
name: string;
|
|
13413
14116
|
api: "openai-completions";
|
|
@@ -13562,7 +14265,7 @@ export declare const MODELS: {
|
|
|
13562
14265
|
};
|
|
13563
14266
|
};
|
|
13564
14267
|
readonly together: {
|
|
13565
|
-
readonly "MiniMaxAI/MiniMax-M2.
|
|
14268
|
+
readonly "MiniMaxAI/MiniMax-M2.7": {
|
|
13566
14269
|
id: string;
|
|
13567
14270
|
name: string;
|
|
13568
14271
|
api: "openai-completions";
|
|
@@ -13593,7 +14296,7 @@ export declare const MODELS: {
|
|
|
13593
14296
|
contextWindow: number;
|
|
13594
14297
|
maxTokens: number;
|
|
13595
14298
|
};
|
|
13596
|
-
readonly "MiniMaxAI/MiniMax-
|
|
14299
|
+
readonly "MiniMaxAI/MiniMax-M3": {
|
|
13597
14300
|
id: string;
|
|
13598
14301
|
name: string;
|
|
13599
14302
|
api: "openai-completions";
|
|
@@ -13606,15 +14309,15 @@ export declare const MODELS: {
|
|
|
13606
14309
|
maxTokensField: "max_tokens";
|
|
13607
14310
|
supportsStrictMode: false;
|
|
13608
14311
|
supportsLongCacheRetention: false;
|
|
14312
|
+
thinkingFormat: "together";
|
|
13609
14313
|
};
|
|
13610
14314
|
reasoning: true;
|
|
13611
14315
|
thinkingLevelMap: {
|
|
13612
|
-
off: null;
|
|
13613
14316
|
minimal: null;
|
|
13614
14317
|
low: null;
|
|
13615
14318
|
medium: null;
|
|
13616
14319
|
};
|
|
13617
|
-
input: "text"[];
|
|
14320
|
+
input: ("image" | "text")[];
|
|
13618
14321
|
cost: {
|
|
13619
14322
|
input: number;
|
|
13620
14323
|
output: number;
|
|
@@ -13624,7 +14327,7 @@ export declare const MODELS: {
|
|
|
13624
14327
|
contextWindow: number;
|
|
13625
14328
|
maxTokens: number;
|
|
13626
14329
|
};
|
|
13627
|
-
readonly "Qwen/
|
|
14330
|
+
readonly "Qwen/Qwen2.5-7B-Instruct-Turbo": {
|
|
13628
14331
|
id: string;
|
|
13629
14332
|
name: string;
|
|
13630
14333
|
api: "openai-completions";
|
|
@@ -13637,14 +14340,8 @@ export declare const MODELS: {
|
|
|
13637
14340
|
maxTokensField: "max_tokens";
|
|
13638
14341
|
supportsStrictMode: false;
|
|
13639
14342
|
supportsLongCacheRetention: false;
|
|
13640
|
-
thinkingFormat: "together";
|
|
13641
|
-
};
|
|
13642
|
-
reasoning: true;
|
|
13643
|
-
thinkingLevelMap: {
|
|
13644
|
-
minimal: null;
|
|
13645
|
-
low: null;
|
|
13646
|
-
medium: null;
|
|
13647
14343
|
};
|
|
14344
|
+
reasoning: false;
|
|
13648
14345
|
input: "text"[];
|
|
13649
14346
|
cost: {
|
|
13650
14347
|
input: number;
|
|
@@ -13655,7 +14352,7 @@ export declare const MODELS: {
|
|
|
13655
14352
|
contextWindow: number;
|
|
13656
14353
|
maxTokens: number;
|
|
13657
14354
|
};
|
|
13658
|
-
readonly "Qwen/Qwen3-
|
|
14355
|
+
readonly "Qwen/Qwen3-235B-A22B-Instruct-2507-tput": {
|
|
13659
14356
|
id: string;
|
|
13660
14357
|
name: string;
|
|
13661
14358
|
api: "openai-completions";
|
|
@@ -13680,7 +14377,7 @@ export declare const MODELS: {
|
|
|
13680
14377
|
contextWindow: number;
|
|
13681
14378
|
maxTokens: number;
|
|
13682
14379
|
};
|
|
13683
|
-
readonly "Qwen/Qwen3-
|
|
14380
|
+
readonly "Qwen/Qwen3.5-397B-A17B": {
|
|
13684
14381
|
id: string;
|
|
13685
14382
|
name: string;
|
|
13686
14383
|
api: "openai-completions";
|
|
@@ -13701,7 +14398,7 @@ export declare const MODELS: {
|
|
|
13701
14398
|
low: null;
|
|
13702
14399
|
medium: null;
|
|
13703
14400
|
};
|
|
13704
|
-
input: "text"[];
|
|
14401
|
+
input: ("image" | "text")[];
|
|
13705
14402
|
cost: {
|
|
13706
14403
|
input: number;
|
|
13707
14404
|
output: number;
|
|
@@ -13711,7 +14408,7 @@ export declare const MODELS: {
|
|
|
13711
14408
|
contextWindow: number;
|
|
13712
14409
|
maxTokens: number;
|
|
13713
14410
|
};
|
|
13714
|
-
readonly "Qwen/Qwen3.5-
|
|
14411
|
+
readonly "Qwen/Qwen3.5-9B": {
|
|
13715
14412
|
id: string;
|
|
13716
14413
|
name: string;
|
|
13717
14414
|
api: "openai-completions";
|
|
@@ -13786,14 +14483,8 @@ export declare const MODELS: {
|
|
|
13786
14483
|
maxTokensField: "max_tokens";
|
|
13787
14484
|
supportsStrictMode: false;
|
|
13788
14485
|
supportsLongCacheRetention: false;
|
|
13789
|
-
thinkingFormat: "together";
|
|
13790
|
-
};
|
|
13791
|
-
reasoning: true;
|
|
13792
|
-
thinkingLevelMap: {
|
|
13793
|
-
minimal: null;
|
|
13794
|
-
low: null;
|
|
13795
|
-
medium: null;
|
|
13796
14486
|
};
|
|
14487
|
+
reasoning: false;
|
|
13797
14488
|
input: "text"[];
|
|
13798
14489
|
cost: {
|
|
13799
14490
|
input: number;
|
|
@@ -13804,7 +14495,7 @@ export declare const MODELS: {
|
|
|
13804
14495
|
contextWindow: number;
|
|
13805
14496
|
maxTokens: number;
|
|
13806
14497
|
};
|
|
13807
|
-
readonly "deepseek-ai/DeepSeek-
|
|
14498
|
+
readonly "deepseek-ai/DeepSeek-V4-Pro": {
|
|
13808
14499
|
id: string;
|
|
13809
14500
|
name: string;
|
|
13810
14501
|
api: "openai-completions";
|
|
@@ -13813,7 +14504,7 @@ export declare const MODELS: {
|
|
|
13813
14504
|
compat: {
|
|
13814
14505
|
supportsStore: false;
|
|
13815
14506
|
supportsDeveloperRole: false;
|
|
13816
|
-
supportsReasoningEffort:
|
|
14507
|
+
supportsReasoningEffort: true;
|
|
13817
14508
|
maxTokensField: "max_tokens";
|
|
13818
14509
|
supportsStrictMode: false;
|
|
13819
14510
|
supportsLongCacheRetention: false;
|
|
@@ -13824,6 +14515,8 @@ export declare const MODELS: {
|
|
|
13824
14515
|
minimal: null;
|
|
13825
14516
|
low: null;
|
|
13826
14517
|
medium: null;
|
|
14518
|
+
high: string;
|
|
14519
|
+
xhigh: null;
|
|
13827
14520
|
};
|
|
13828
14521
|
input: "text"[];
|
|
13829
14522
|
cost: {
|
|
@@ -13835,7 +14528,7 @@ export declare const MODELS: {
|
|
|
13835
14528
|
contextWindow: number;
|
|
13836
14529
|
maxTokens: number;
|
|
13837
14530
|
};
|
|
13838
|
-
readonly "
|
|
14531
|
+
readonly "essentialai/Rnj-1-Instruct": {
|
|
13839
14532
|
id: string;
|
|
13840
14533
|
name: string;
|
|
13841
14534
|
api: "openai-completions";
|
|
@@ -13848,14 +14541,8 @@ export declare const MODELS: {
|
|
|
13848
14541
|
maxTokensField: "max_tokens";
|
|
13849
14542
|
supportsStrictMode: false;
|
|
13850
14543
|
supportsLongCacheRetention: false;
|
|
13851
|
-
thinkingFormat: "together";
|
|
13852
|
-
};
|
|
13853
|
-
reasoning: true;
|
|
13854
|
-
thinkingLevelMap: {
|
|
13855
|
-
minimal: null;
|
|
13856
|
-
low: null;
|
|
13857
|
-
medium: null;
|
|
13858
14544
|
};
|
|
14545
|
+
reasoning: false;
|
|
13859
14546
|
input: "text"[];
|
|
13860
14547
|
cost: {
|
|
13861
14548
|
input: number;
|
|
@@ -13866,7 +14553,7 @@ export declare const MODELS: {
|
|
|
13866
14553
|
contextWindow: number;
|
|
13867
14554
|
maxTokens: number;
|
|
13868
14555
|
};
|
|
13869
|
-
readonly "
|
|
14556
|
+
readonly "google/gemma-4-31B-it": {
|
|
13870
14557
|
id: string;
|
|
13871
14558
|
name: string;
|
|
13872
14559
|
api: "openai-completions";
|
|
@@ -13875,7 +14562,7 @@ export declare const MODELS: {
|
|
|
13875
14562
|
compat: {
|
|
13876
14563
|
supportsStore: false;
|
|
13877
14564
|
supportsDeveloperRole: false;
|
|
13878
|
-
supportsReasoningEffort:
|
|
14565
|
+
supportsReasoningEffort: false;
|
|
13879
14566
|
maxTokensField: "max_tokens";
|
|
13880
14567
|
supportsStrictMode: false;
|
|
13881
14568
|
supportsLongCacheRetention: false;
|
|
@@ -13886,10 +14573,8 @@ export declare const MODELS: {
|
|
|
13886
14573
|
minimal: null;
|
|
13887
14574
|
low: null;
|
|
13888
14575
|
medium: null;
|
|
13889
|
-
high: string;
|
|
13890
|
-
xhigh: null;
|
|
13891
14576
|
};
|
|
13892
|
-
input: "text"[];
|
|
14577
|
+
input: ("image" | "text")[];
|
|
13893
14578
|
cost: {
|
|
13894
14579
|
input: number;
|
|
13895
14580
|
output: number;
|
|
@@ -13899,7 +14584,7 @@ export declare const MODELS: {
|
|
|
13899
14584
|
contextWindow: number;
|
|
13900
14585
|
maxTokens: number;
|
|
13901
14586
|
};
|
|
13902
|
-
readonly "
|
|
14587
|
+
readonly "meta-llama/Llama-3.3-70B-Instruct-Turbo": {
|
|
13903
14588
|
id: string;
|
|
13904
14589
|
name: string;
|
|
13905
14590
|
api: "openai-completions";
|
|
@@ -13924,7 +14609,7 @@ export declare const MODELS: {
|
|
|
13924
14609
|
contextWindow: number;
|
|
13925
14610
|
maxTokens: number;
|
|
13926
14611
|
};
|
|
13927
|
-
readonly "
|
|
14612
|
+
readonly "moonshotai/Kimi-K2.6": {
|
|
13928
14613
|
id: string;
|
|
13929
14614
|
name: string;
|
|
13930
14615
|
api: "openai-completions";
|
|
@@ -13955,7 +14640,7 @@ export declare const MODELS: {
|
|
|
13955
14640
|
contextWindow: number;
|
|
13956
14641
|
maxTokens: number;
|
|
13957
14642
|
};
|
|
13958
|
-
readonly "
|
|
14643
|
+
readonly "nvidia/nemotron-3-ultra-550b-a55b": {
|
|
13959
14644
|
id: string;
|
|
13960
14645
|
name: string;
|
|
13961
14646
|
api: "openai-completions";
|
|
@@ -13968,8 +14653,14 @@ export declare const MODELS: {
|
|
|
13968
14653
|
maxTokensField: "max_tokens";
|
|
13969
14654
|
supportsStrictMode: false;
|
|
13970
14655
|
supportsLongCacheRetention: false;
|
|
14656
|
+
thinkingFormat: "together";
|
|
14657
|
+
};
|
|
14658
|
+
reasoning: true;
|
|
14659
|
+
thinkingLevelMap: {
|
|
14660
|
+
minimal: null;
|
|
14661
|
+
low: null;
|
|
14662
|
+
medium: null;
|
|
13971
14663
|
};
|
|
13972
|
-
reasoning: false;
|
|
13973
14664
|
input: "text"[];
|
|
13974
14665
|
cost: {
|
|
13975
14666
|
input: number;
|
|
@@ -13980,7 +14671,7 @@ export declare const MODELS: {
|
|
|
13980
14671
|
contextWindow: number;
|
|
13981
14672
|
maxTokens: number;
|
|
13982
14673
|
};
|
|
13983
|
-
readonly "
|
|
14674
|
+
readonly "openai/gpt-oss-120b": {
|
|
13984
14675
|
id: string;
|
|
13985
14676
|
name: string;
|
|
13986
14677
|
api: "openai-completions";
|
|
@@ -13989,19 +14680,18 @@ export declare const MODELS: {
|
|
|
13989
14680
|
compat: {
|
|
13990
14681
|
supportsStore: false;
|
|
13991
14682
|
supportsDeveloperRole: false;
|
|
13992
|
-
supportsReasoningEffort:
|
|
14683
|
+
supportsReasoningEffort: true;
|
|
13993
14684
|
maxTokensField: "max_tokens";
|
|
13994
14685
|
supportsStrictMode: false;
|
|
13995
14686
|
supportsLongCacheRetention: false;
|
|
13996
|
-
thinkingFormat: "
|
|
14687
|
+
thinkingFormat: "openai";
|
|
13997
14688
|
};
|
|
13998
14689
|
reasoning: true;
|
|
13999
14690
|
thinkingLevelMap: {
|
|
14691
|
+
off: null;
|
|
14000
14692
|
minimal: null;
|
|
14001
|
-
low: null;
|
|
14002
|
-
medium: null;
|
|
14003
14693
|
};
|
|
14004
|
-
input:
|
|
14694
|
+
input: "text"[];
|
|
14005
14695
|
cost: {
|
|
14006
14696
|
input: number;
|
|
14007
14697
|
output: number;
|
|
@@ -14011,7 +14701,7 @@ export declare const MODELS: {
|
|
|
14011
14701
|
contextWindow: number;
|
|
14012
14702
|
maxTokens: number;
|
|
14013
14703
|
};
|
|
14014
|
-
readonly "
|
|
14704
|
+
readonly "openai/gpt-oss-20b": {
|
|
14015
14705
|
id: string;
|
|
14016
14706
|
name: string;
|
|
14017
14707
|
api: "openai-completions";
|
|
@@ -14020,19 +14710,18 @@ export declare const MODELS: {
|
|
|
14020
14710
|
compat: {
|
|
14021
14711
|
supportsStore: false;
|
|
14022
14712
|
supportsDeveloperRole: false;
|
|
14023
|
-
supportsReasoningEffort:
|
|
14713
|
+
supportsReasoningEffort: true;
|
|
14024
14714
|
maxTokensField: "max_tokens";
|
|
14025
14715
|
supportsStrictMode: false;
|
|
14026
14716
|
supportsLongCacheRetention: false;
|
|
14027
|
-
thinkingFormat: "
|
|
14717
|
+
thinkingFormat: "openai";
|
|
14028
14718
|
};
|
|
14029
14719
|
reasoning: true;
|
|
14030
14720
|
thinkingLevelMap: {
|
|
14721
|
+
off: null;
|
|
14031
14722
|
minimal: null;
|
|
14032
|
-
low: null;
|
|
14033
|
-
medium: null;
|
|
14034
14723
|
};
|
|
14035
|
-
input:
|
|
14724
|
+
input: "text"[];
|
|
14036
14725
|
cost: {
|
|
14037
14726
|
input: number;
|
|
14038
14727
|
output: number;
|
|
@@ -14042,7 +14731,7 @@ export declare const MODELS: {
|
|
|
14042
14731
|
contextWindow: number;
|
|
14043
14732
|
maxTokens: number;
|
|
14044
14733
|
};
|
|
14045
|
-
readonly "
|
|
14734
|
+
readonly "zai-org/GLM-5": {
|
|
14046
14735
|
id: string;
|
|
14047
14736
|
name: string;
|
|
14048
14737
|
api: "openai-completions";
|
|
@@ -14051,16 +14740,17 @@ export declare const MODELS: {
|
|
|
14051
14740
|
compat: {
|
|
14052
14741
|
supportsStore: false;
|
|
14053
14742
|
supportsDeveloperRole: false;
|
|
14054
|
-
supportsReasoningEffort:
|
|
14743
|
+
supportsReasoningEffort: false;
|
|
14055
14744
|
maxTokensField: "max_tokens";
|
|
14056
14745
|
supportsStrictMode: false;
|
|
14057
14746
|
supportsLongCacheRetention: false;
|
|
14058
|
-
thinkingFormat: "
|
|
14747
|
+
thinkingFormat: "together";
|
|
14059
14748
|
};
|
|
14060
14749
|
reasoning: true;
|
|
14061
14750
|
thinkingLevelMap: {
|
|
14062
|
-
off: null;
|
|
14063
14751
|
minimal: null;
|
|
14752
|
+
low: null;
|
|
14753
|
+
medium: null;
|
|
14064
14754
|
};
|
|
14065
14755
|
input: "text"[];
|
|
14066
14756
|
cost: {
|
|
@@ -14128,7 +14818,7 @@ export declare const MODELS: {
|
|
|
14128
14818
|
api: "anthropic-messages";
|
|
14129
14819
|
provider: string;
|
|
14130
14820
|
baseUrl: string;
|
|
14131
|
-
reasoning:
|
|
14821
|
+
reasoning: true;
|
|
14132
14822
|
input: "text"[];
|
|
14133
14823
|
cost: {
|
|
14134
14824
|
input: number;
|
|
@@ -14180,7 +14870,7 @@ export declare const MODELS: {
|
|
|
14180
14870
|
provider: string;
|
|
14181
14871
|
baseUrl: string;
|
|
14182
14872
|
reasoning: true;
|
|
14183
|
-
input:
|
|
14873
|
+
input: "text"[];
|
|
14184
14874
|
cost: {
|
|
14185
14875
|
input: number;
|
|
14186
14876
|
output: number;
|
|
@@ -14213,7 +14903,7 @@ export declare const MODELS: {
|
|
|
14213
14903
|
api: "anthropic-messages";
|
|
14214
14904
|
provider: string;
|
|
14215
14905
|
baseUrl: string;
|
|
14216
|
-
reasoning:
|
|
14906
|
+
reasoning: true;
|
|
14217
14907
|
input: "text"[];
|
|
14218
14908
|
cost: {
|
|
14219
14909
|
input: number;
|
|
@@ -14247,7 +14937,7 @@ export declare const MODELS: {
|
|
|
14247
14937
|
api: "anthropic-messages";
|
|
14248
14938
|
provider: string;
|
|
14249
14939
|
baseUrl: string;
|
|
14250
|
-
reasoning:
|
|
14940
|
+
reasoning: true;
|
|
14251
14941
|
input: "text"[];
|
|
14252
14942
|
cost: {
|
|
14253
14943
|
input: number;
|
|
@@ -14326,6 +15016,40 @@ export declare const MODELS: {
|
|
|
14326
15016
|
contextWindow: number;
|
|
14327
15017
|
maxTokens: number;
|
|
14328
15018
|
};
|
|
15019
|
+
readonly "alibaba/qwen3-next-80b-a3b-instruct": {
|
|
15020
|
+
id: string;
|
|
15021
|
+
name: string;
|
|
15022
|
+
api: "anthropic-messages";
|
|
15023
|
+
provider: string;
|
|
15024
|
+
baseUrl: string;
|
|
15025
|
+
reasoning: false;
|
|
15026
|
+
input: "text"[];
|
|
15027
|
+
cost: {
|
|
15028
|
+
input: number;
|
|
15029
|
+
output: number;
|
|
15030
|
+
cacheRead: number;
|
|
15031
|
+
cacheWrite: number;
|
|
15032
|
+
};
|
|
15033
|
+
contextWindow: number;
|
|
15034
|
+
maxTokens: number;
|
|
15035
|
+
};
|
|
15036
|
+
readonly "alibaba/qwen3-next-80b-a3b-thinking": {
|
|
15037
|
+
id: string;
|
|
15038
|
+
name: string;
|
|
15039
|
+
api: "anthropic-messages";
|
|
15040
|
+
provider: string;
|
|
15041
|
+
baseUrl: string;
|
|
15042
|
+
reasoning: true;
|
|
15043
|
+
input: "text"[];
|
|
15044
|
+
cost: {
|
|
15045
|
+
input: number;
|
|
15046
|
+
output: number;
|
|
15047
|
+
cacheRead: number;
|
|
15048
|
+
cacheWrite: number;
|
|
15049
|
+
};
|
|
15050
|
+
contextWindow: number;
|
|
15051
|
+
maxTokens: number;
|
|
15052
|
+
};
|
|
14329
15053
|
readonly "alibaba/qwen3-vl-thinking": {
|
|
14330
15054
|
id: string;
|
|
14331
15055
|
name: string;
|
|
@@ -14412,6 +15136,23 @@ export declare const MODELS: {
|
|
|
14412
15136
|
maxTokens: number;
|
|
14413
15137
|
};
|
|
14414
15138
|
readonly "alibaba/qwen3.7-max": {
|
|
15139
|
+
id: string;
|
|
15140
|
+
name: string;
|
|
15141
|
+
api: "anthropic-messages";
|
|
15142
|
+
provider: string;
|
|
15143
|
+
baseUrl: string;
|
|
15144
|
+
reasoning: true;
|
|
15145
|
+
input: "text"[];
|
|
15146
|
+
cost: {
|
|
15147
|
+
input: number;
|
|
15148
|
+
output: number;
|
|
15149
|
+
cacheRead: number;
|
|
15150
|
+
cacheWrite: number;
|
|
15151
|
+
};
|
|
15152
|
+
contextWindow: number;
|
|
15153
|
+
maxTokens: number;
|
|
15154
|
+
};
|
|
15155
|
+
readonly "alibaba/qwen3.7-plus": {
|
|
14415
15156
|
id: string;
|
|
14416
15157
|
name: string;
|
|
14417
15158
|
api: "anthropic-messages";
|
|
@@ -14561,6 +15302,7 @@ export declare const MODELS: {
|
|
|
14561
15302
|
baseUrl: string;
|
|
14562
15303
|
compat: {
|
|
14563
15304
|
forceAdaptiveThinking: true;
|
|
15305
|
+
supportsTemperature: false;
|
|
14564
15306
|
};
|
|
14565
15307
|
reasoning: true;
|
|
14566
15308
|
thinkingLevelMap: {
|
|
@@ -14584,6 +15326,7 @@ export declare const MODELS: {
|
|
|
14584
15326
|
baseUrl: string;
|
|
14585
15327
|
compat: {
|
|
14586
15328
|
forceAdaptiveThinking: true;
|
|
15329
|
+
supportsTemperature: false;
|
|
14587
15330
|
};
|
|
14588
15331
|
reasoning: true;
|
|
14589
15332
|
thinkingLevelMap: {
|
|
@@ -14795,8 +15538,8 @@ export declare const MODELS: {
|
|
|
14795
15538
|
api: "anthropic-messages";
|
|
14796
15539
|
provider: string;
|
|
14797
15540
|
baseUrl: string;
|
|
14798
|
-
reasoning:
|
|
14799
|
-
input: "text"[];
|
|
15541
|
+
reasoning: true;
|
|
15542
|
+
input: ("image" | "text")[];
|
|
14800
15543
|
cost: {
|
|
14801
15544
|
input: number;
|
|
14802
15545
|
output: number;
|
|
@@ -14812,8 +15555,8 @@ export declare const MODELS: {
|
|
|
14812
15555
|
api: "anthropic-messages";
|
|
14813
15556
|
provider: string;
|
|
14814
15557
|
baseUrl: string;
|
|
14815
|
-
reasoning:
|
|
14816
|
-
input: "text"[];
|
|
15558
|
+
reasoning: true;
|
|
15559
|
+
input: ("image" | "text")[];
|
|
14817
15560
|
cost: {
|
|
14818
15561
|
input: number;
|
|
14819
15562
|
output: number;
|
|
@@ -14830,7 +15573,7 @@ export declare const MODELS: {
|
|
|
14830
15573
|
provider: string;
|
|
14831
15574
|
baseUrl: string;
|
|
14832
15575
|
reasoning: true;
|
|
14833
|
-
input: "text"[];
|
|
15576
|
+
input: ("image" | "text")[];
|
|
14834
15577
|
cost: {
|
|
14835
15578
|
input: number;
|
|
14836
15579
|
output: number;
|
|
@@ -14857,40 +15600,6 @@ export declare const MODELS: {
|
|
|
14857
15600
|
contextWindow: number;
|
|
14858
15601
|
maxTokens: number;
|
|
14859
15602
|
};
|
|
14860
|
-
readonly "google/gemini-2.0-flash": {
|
|
14861
|
-
id: string;
|
|
14862
|
-
name: string;
|
|
14863
|
-
api: "anthropic-messages";
|
|
14864
|
-
provider: string;
|
|
14865
|
-
baseUrl: string;
|
|
14866
|
-
reasoning: false;
|
|
14867
|
-
input: ("image" | "text")[];
|
|
14868
|
-
cost: {
|
|
14869
|
-
input: number;
|
|
14870
|
-
output: number;
|
|
14871
|
-
cacheRead: number;
|
|
14872
|
-
cacheWrite: number;
|
|
14873
|
-
};
|
|
14874
|
-
contextWindow: number;
|
|
14875
|
-
maxTokens: number;
|
|
14876
|
-
};
|
|
14877
|
-
readonly "google/gemini-2.0-flash-lite": {
|
|
14878
|
-
id: string;
|
|
14879
|
-
name: string;
|
|
14880
|
-
api: "anthropic-messages";
|
|
14881
|
-
provider: string;
|
|
14882
|
-
baseUrl: string;
|
|
14883
|
-
reasoning: false;
|
|
14884
|
-
input: ("image" | "text")[];
|
|
14885
|
-
cost: {
|
|
14886
|
-
input: number;
|
|
14887
|
-
output: number;
|
|
14888
|
-
cacheRead: number;
|
|
14889
|
-
cacheWrite: number;
|
|
14890
|
-
};
|
|
14891
|
-
contextWindow: number;
|
|
14892
|
-
maxTokens: number;
|
|
14893
|
-
};
|
|
14894
15603
|
readonly "google/gemini-2.5-flash": {
|
|
14895
15604
|
id: string;
|
|
14896
15605
|
name: string;
|
|
@@ -15050,7 +15759,7 @@ export declare const MODELS: {
|
|
|
15050
15759
|
api: "anthropic-messages";
|
|
15051
15760
|
provider: string;
|
|
15052
15761
|
baseUrl: string;
|
|
15053
|
-
reasoning:
|
|
15762
|
+
reasoning: true;
|
|
15054
15763
|
input: ("image" | "text")[];
|
|
15055
15764
|
cost: {
|
|
15056
15765
|
input: number;
|
|
@@ -15357,7 +16066,7 @@ export declare const MODELS: {
|
|
|
15357
16066
|
provider: string;
|
|
15358
16067
|
baseUrl: string;
|
|
15359
16068
|
reasoning: true;
|
|
15360
|
-
input:
|
|
16069
|
+
input: "text"[];
|
|
15361
16070
|
cost: {
|
|
15362
16071
|
input: number;
|
|
15363
16072
|
output: number;
|
|
@@ -15368,6 +16077,23 @@ export declare const MODELS: {
|
|
|
15368
16077
|
maxTokens: number;
|
|
15369
16078
|
};
|
|
15370
16079
|
readonly "minimax/minimax-m2.7-highspeed": {
|
|
16080
|
+
id: string;
|
|
16081
|
+
name: string;
|
|
16082
|
+
api: "anthropic-messages";
|
|
16083
|
+
provider: string;
|
|
16084
|
+
baseUrl: string;
|
|
16085
|
+
reasoning: true;
|
|
16086
|
+
input: "text"[];
|
|
16087
|
+
cost: {
|
|
16088
|
+
input: number;
|
|
16089
|
+
output: number;
|
|
16090
|
+
cacheRead: number;
|
|
16091
|
+
cacheWrite: number;
|
|
16092
|
+
};
|
|
16093
|
+
contextWindow: number;
|
|
16094
|
+
maxTokens: number;
|
|
16095
|
+
};
|
|
16096
|
+
readonly "minimax/minimax-m3": {
|
|
15371
16097
|
id: string;
|
|
15372
16098
|
name: string;
|
|
15373
16099
|
api: "anthropic-messages";
|
|
@@ -15520,6 +16246,23 @@ export declare const MODELS: {
|
|
|
15520
16246
|
contextWindow: number;
|
|
15521
16247
|
maxTokens: number;
|
|
15522
16248
|
};
|
|
16249
|
+
readonly "mistral/mistral-nemo": {
|
|
16250
|
+
id: string;
|
|
16251
|
+
name: string;
|
|
16252
|
+
api: "anthropic-messages";
|
|
16253
|
+
provider: string;
|
|
16254
|
+
baseUrl: string;
|
|
16255
|
+
reasoning: false;
|
|
16256
|
+
input: "text"[];
|
|
16257
|
+
cost: {
|
|
16258
|
+
input: number;
|
|
16259
|
+
output: number;
|
|
16260
|
+
cacheRead: number;
|
|
16261
|
+
cacheWrite: number;
|
|
16262
|
+
};
|
|
16263
|
+
contextWindow: number;
|
|
16264
|
+
maxTokens: number;
|
|
16265
|
+
};
|
|
15523
16266
|
readonly "mistral/mistral-small": {
|
|
15524
16267
|
id: string;
|
|
15525
16268
|
name: string;
|
|
@@ -15554,14 +16297,31 @@ export declare const MODELS: {
|
|
|
15554
16297
|
contextWindow: number;
|
|
15555
16298
|
maxTokens: number;
|
|
15556
16299
|
};
|
|
15557
|
-
readonly "mistral/pixtral-large": {
|
|
16300
|
+
readonly "mistral/pixtral-large": {
|
|
16301
|
+
id: string;
|
|
16302
|
+
name: string;
|
|
16303
|
+
api: "anthropic-messages";
|
|
16304
|
+
provider: string;
|
|
16305
|
+
baseUrl: string;
|
|
16306
|
+
reasoning: false;
|
|
16307
|
+
input: ("image" | "text")[];
|
|
16308
|
+
cost: {
|
|
16309
|
+
input: number;
|
|
16310
|
+
output: number;
|
|
16311
|
+
cacheRead: number;
|
|
16312
|
+
cacheWrite: number;
|
|
16313
|
+
};
|
|
16314
|
+
contextWindow: number;
|
|
16315
|
+
maxTokens: number;
|
|
16316
|
+
};
|
|
16317
|
+
readonly "moonshotai/kimi-k2": {
|
|
15558
16318
|
id: string;
|
|
15559
16319
|
name: string;
|
|
15560
16320
|
api: "anthropic-messages";
|
|
15561
16321
|
provider: string;
|
|
15562
16322
|
baseUrl: string;
|
|
15563
16323
|
reasoning: false;
|
|
15564
|
-
input:
|
|
16324
|
+
input: "text"[];
|
|
15565
16325
|
cost: {
|
|
15566
16326
|
input: number;
|
|
15567
16327
|
output: number;
|
|
@@ -15571,13 +16331,13 @@ export declare const MODELS: {
|
|
|
15571
16331
|
contextWindow: number;
|
|
15572
16332
|
maxTokens: number;
|
|
15573
16333
|
};
|
|
15574
|
-
readonly "moonshotai/kimi-k2": {
|
|
16334
|
+
readonly "moonshotai/kimi-k2-thinking": {
|
|
15575
16335
|
id: string;
|
|
15576
16336
|
name: string;
|
|
15577
16337
|
api: "anthropic-messages";
|
|
15578
16338
|
provider: string;
|
|
15579
16339
|
baseUrl: string;
|
|
15580
|
-
reasoning:
|
|
16340
|
+
reasoning: true;
|
|
15581
16341
|
input: "text"[];
|
|
15582
16342
|
cost: {
|
|
15583
16343
|
input: number;
|
|
@@ -15588,14 +16348,14 @@ export declare const MODELS: {
|
|
|
15588
16348
|
contextWindow: number;
|
|
15589
16349
|
maxTokens: number;
|
|
15590
16350
|
};
|
|
15591
|
-
readonly "moonshotai/kimi-k2
|
|
16351
|
+
readonly "moonshotai/kimi-k2.5": {
|
|
15592
16352
|
id: string;
|
|
15593
16353
|
name: string;
|
|
15594
16354
|
api: "anthropic-messages";
|
|
15595
16355
|
provider: string;
|
|
15596
16356
|
baseUrl: string;
|
|
15597
16357
|
reasoning: true;
|
|
15598
|
-
input: "text"[];
|
|
16358
|
+
input: ("image" | "text")[];
|
|
15599
16359
|
cost: {
|
|
15600
16360
|
input: number;
|
|
15601
16361
|
output: number;
|
|
@@ -15605,14 +16365,14 @@ export declare const MODELS: {
|
|
|
15605
16365
|
contextWindow: number;
|
|
15606
16366
|
maxTokens: number;
|
|
15607
16367
|
};
|
|
15608
|
-
readonly "moonshotai/kimi-k2
|
|
16368
|
+
readonly "moonshotai/kimi-k2.6": {
|
|
15609
16369
|
id: string;
|
|
15610
16370
|
name: string;
|
|
15611
16371
|
api: "anthropic-messages";
|
|
15612
16372
|
provider: string;
|
|
15613
16373
|
baseUrl: string;
|
|
15614
16374
|
reasoning: true;
|
|
15615
|
-
input: "text"[];
|
|
16375
|
+
input: ("image" | "text")[];
|
|
15616
16376
|
cost: {
|
|
15617
16377
|
input: number;
|
|
15618
16378
|
output: number;
|
|
@@ -15622,14 +16382,14 @@ export declare const MODELS: {
|
|
|
15622
16382
|
contextWindow: number;
|
|
15623
16383
|
maxTokens: number;
|
|
15624
16384
|
};
|
|
15625
|
-
readonly "moonshotai/kimi-k2-
|
|
16385
|
+
readonly "moonshotai/kimi-k2.7-code": {
|
|
15626
16386
|
id: string;
|
|
15627
16387
|
name: string;
|
|
15628
16388
|
api: "anthropic-messages";
|
|
15629
16389
|
provider: string;
|
|
15630
16390
|
baseUrl: string;
|
|
15631
|
-
reasoning:
|
|
15632
|
-
input: "text"[];
|
|
16391
|
+
reasoning: true;
|
|
16392
|
+
input: ("image" | "text")[];
|
|
15633
16393
|
cost: {
|
|
15634
16394
|
input: number;
|
|
15635
16395
|
output: number;
|
|
@@ -15639,14 +16399,14 @@ export declare const MODELS: {
|
|
|
15639
16399
|
contextWindow: number;
|
|
15640
16400
|
maxTokens: number;
|
|
15641
16401
|
};
|
|
15642
|
-
readonly "
|
|
16402
|
+
readonly "nvidia/nemotron-3-super-120b-a12b": {
|
|
15643
16403
|
id: string;
|
|
15644
16404
|
name: string;
|
|
15645
16405
|
api: "anthropic-messages";
|
|
15646
16406
|
provider: string;
|
|
15647
16407
|
baseUrl: string;
|
|
15648
16408
|
reasoning: true;
|
|
15649
|
-
input:
|
|
16409
|
+
input: "text"[];
|
|
15650
16410
|
cost: {
|
|
15651
16411
|
input: number;
|
|
15652
16412
|
output: number;
|
|
@@ -15656,14 +16416,14 @@ export declare const MODELS: {
|
|
|
15656
16416
|
contextWindow: number;
|
|
15657
16417
|
maxTokens: number;
|
|
15658
16418
|
};
|
|
15659
|
-
readonly "
|
|
16419
|
+
readonly "nvidia/nemotron-3-ultra-550b-a55b": {
|
|
15660
16420
|
id: string;
|
|
15661
16421
|
name: string;
|
|
15662
16422
|
api: "anthropic-messages";
|
|
15663
16423
|
provider: string;
|
|
15664
16424
|
baseUrl: string;
|
|
15665
16425
|
reasoning: true;
|
|
15666
|
-
input:
|
|
16426
|
+
input: "text"[];
|
|
15667
16427
|
cost: {
|
|
15668
16428
|
input: number;
|
|
15669
16429
|
output: number;
|
|
@@ -15850,7 +16610,7 @@ export declare const MODELS: {
|
|
|
15850
16610
|
provider: string;
|
|
15851
16611
|
baseUrl: string;
|
|
15852
16612
|
reasoning: true;
|
|
15853
|
-
input: "text"[];
|
|
16613
|
+
input: ("image" | "text")[];
|
|
15854
16614
|
cost: {
|
|
15855
16615
|
input: number;
|
|
15856
16616
|
output: number;
|
|
@@ -16239,6 +16999,23 @@ export declare const MODELS: {
|
|
|
16239
16999
|
contextWindow: number;
|
|
16240
17000
|
maxTokens: number;
|
|
16241
17001
|
};
|
|
17002
|
+
readonly "openai/gpt-oss-120b": {
|
|
17003
|
+
id: string;
|
|
17004
|
+
name: string;
|
|
17005
|
+
api: "anthropic-messages";
|
|
17006
|
+
provider: string;
|
|
17007
|
+
baseUrl: string;
|
|
17008
|
+
reasoning: true;
|
|
17009
|
+
input: "text"[];
|
|
17010
|
+
cost: {
|
|
17011
|
+
input: number;
|
|
17012
|
+
output: number;
|
|
17013
|
+
cacheRead: number;
|
|
17014
|
+
cacheWrite: number;
|
|
17015
|
+
};
|
|
17016
|
+
contextWindow: number;
|
|
17017
|
+
maxTokens: number;
|
|
17018
|
+
};
|
|
16242
17019
|
readonly "openai/gpt-oss-20b": {
|
|
16243
17020
|
id: string;
|
|
16244
17021
|
name: string;
|
|
@@ -16409,6 +17186,23 @@ export declare const MODELS: {
|
|
|
16409
17186
|
contextWindow: number;
|
|
16410
17187
|
maxTokens: number;
|
|
16411
17188
|
};
|
|
17189
|
+
readonly "stepfun/step-3.5-flash": {
|
|
17190
|
+
id: string;
|
|
17191
|
+
name: string;
|
|
17192
|
+
api: "anthropic-messages";
|
|
17193
|
+
provider: string;
|
|
17194
|
+
baseUrl: string;
|
|
17195
|
+
reasoning: true;
|
|
17196
|
+
input: "text"[];
|
|
17197
|
+
cost: {
|
|
17198
|
+
input: number;
|
|
17199
|
+
output: number;
|
|
17200
|
+
cacheRead: number;
|
|
17201
|
+
cacheWrite: number;
|
|
17202
|
+
};
|
|
17203
|
+
contextWindow: number;
|
|
17204
|
+
maxTokens: number;
|
|
17205
|
+
};
|
|
16412
17206
|
readonly "stepfun/step-3.7-flash": {
|
|
16413
17207
|
id: string;
|
|
16414
17208
|
name: string;
|
|
@@ -16704,7 +17498,7 @@ export declare const MODELS: {
|
|
|
16704
17498
|
api: "anthropic-messages";
|
|
16705
17499
|
provider: string;
|
|
16706
17500
|
baseUrl: string;
|
|
16707
|
-
reasoning:
|
|
17501
|
+
reasoning: true;
|
|
16708
17502
|
input: ("image" | "text")[];
|
|
16709
17503
|
cost: {
|
|
16710
17504
|
input: number;
|
|
@@ -16858,7 +17652,7 @@ export declare const MODELS: {
|
|
|
16858
17652
|
provider: string;
|
|
16859
17653
|
baseUrl: string;
|
|
16860
17654
|
reasoning: true;
|
|
16861
|
-
input: "text"[];
|
|
17655
|
+
input: ("image" | "text")[];
|
|
16862
17656
|
cost: {
|
|
16863
17657
|
input: number;
|
|
16864
17658
|
output: number;
|
|
@@ -17113,6 +17907,27 @@ export declare const MODELS: {
|
|
|
17113
17907
|
contextWindow: number;
|
|
17114
17908
|
maxTokens: number;
|
|
17115
17909
|
};
|
|
17910
|
+
readonly "mimo-v2.5-pro-ultraspeed": {
|
|
17911
|
+
id: string;
|
|
17912
|
+
name: string;
|
|
17913
|
+
api: "openai-completions";
|
|
17914
|
+
provider: string;
|
|
17915
|
+
baseUrl: string;
|
|
17916
|
+
compat: {
|
|
17917
|
+
requiresReasoningContentOnAssistantMessages: true;
|
|
17918
|
+
thinkingFormat: "deepseek";
|
|
17919
|
+
};
|
|
17920
|
+
reasoning: true;
|
|
17921
|
+
input: "text"[];
|
|
17922
|
+
cost: {
|
|
17923
|
+
input: number;
|
|
17924
|
+
output: number;
|
|
17925
|
+
cacheRead: number;
|
|
17926
|
+
cacheWrite: number;
|
|
17927
|
+
};
|
|
17928
|
+
contextWindow: number;
|
|
17929
|
+
maxTokens: number;
|
|
17930
|
+
};
|
|
17116
17931
|
};
|
|
17117
17932
|
readonly "xiaomi-token-plan-ams": {
|
|
17118
17933
|
readonly "mimo-v2-omni": {
|
|
@@ -17199,6 +18014,27 @@ export declare const MODELS: {
|
|
|
17199
18014
|
contextWindow: number;
|
|
17200
18015
|
maxTokens: number;
|
|
17201
18016
|
};
|
|
18017
|
+
readonly "mimo-v2.5-pro-ultraspeed": {
|
|
18018
|
+
id: string;
|
|
18019
|
+
name: string;
|
|
18020
|
+
api: "openai-completions";
|
|
18021
|
+
provider: string;
|
|
18022
|
+
baseUrl: string;
|
|
18023
|
+
compat: {
|
|
18024
|
+
requiresReasoningContentOnAssistantMessages: true;
|
|
18025
|
+
thinkingFormat: "deepseek";
|
|
18026
|
+
};
|
|
18027
|
+
reasoning: true;
|
|
18028
|
+
input: "text"[];
|
|
18029
|
+
cost: {
|
|
18030
|
+
input: number;
|
|
18031
|
+
output: number;
|
|
18032
|
+
cacheRead: number;
|
|
18033
|
+
cacheWrite: number;
|
|
18034
|
+
};
|
|
18035
|
+
contextWindow: number;
|
|
18036
|
+
maxTokens: number;
|
|
18037
|
+
};
|
|
17202
18038
|
};
|
|
17203
18039
|
readonly "xiaomi-token-plan-cn": {
|
|
17204
18040
|
readonly "mimo-v2-omni": {
|
|
@@ -17285,6 +18121,27 @@ export declare const MODELS: {
|
|
|
17285
18121
|
contextWindow: number;
|
|
17286
18122
|
maxTokens: number;
|
|
17287
18123
|
};
|
|
18124
|
+
readonly "mimo-v2.5-pro-ultraspeed": {
|
|
18125
|
+
id: string;
|
|
18126
|
+
name: string;
|
|
18127
|
+
api: "openai-completions";
|
|
18128
|
+
provider: string;
|
|
18129
|
+
baseUrl: string;
|
|
18130
|
+
compat: {
|
|
18131
|
+
requiresReasoningContentOnAssistantMessages: true;
|
|
18132
|
+
thinkingFormat: "deepseek";
|
|
18133
|
+
};
|
|
18134
|
+
reasoning: true;
|
|
18135
|
+
input: "text"[];
|
|
18136
|
+
cost: {
|
|
18137
|
+
input: number;
|
|
18138
|
+
output: number;
|
|
18139
|
+
cacheRead: number;
|
|
18140
|
+
cacheWrite: number;
|
|
18141
|
+
};
|
|
18142
|
+
contextWindow: number;
|
|
18143
|
+
maxTokens: number;
|
|
18144
|
+
};
|
|
17288
18145
|
};
|
|
17289
18146
|
readonly "xiaomi-token-plan-sgp": {
|
|
17290
18147
|
readonly "mimo-v2-omni": {
|
|
@@ -17371,6 +18228,27 @@ export declare const MODELS: {
|
|
|
17371
18228
|
contextWindow: number;
|
|
17372
18229
|
maxTokens: number;
|
|
17373
18230
|
};
|
|
18231
|
+
readonly "mimo-v2.5-pro-ultraspeed": {
|
|
18232
|
+
id: string;
|
|
18233
|
+
name: string;
|
|
18234
|
+
api: "openai-completions";
|
|
18235
|
+
provider: string;
|
|
18236
|
+
baseUrl: string;
|
|
18237
|
+
compat: {
|
|
18238
|
+
requiresReasoningContentOnAssistantMessages: true;
|
|
18239
|
+
thinkingFormat: "deepseek";
|
|
18240
|
+
};
|
|
18241
|
+
reasoning: true;
|
|
18242
|
+
input: "text"[];
|
|
18243
|
+
cost: {
|
|
18244
|
+
input: number;
|
|
18245
|
+
output: number;
|
|
18246
|
+
cacheRead: number;
|
|
18247
|
+
cacheWrite: number;
|
|
18248
|
+
};
|
|
18249
|
+
contextWindow: number;
|
|
18250
|
+
maxTokens: number;
|
|
18251
|
+
};
|
|
17374
18252
|
};
|
|
17375
18253
|
readonly zai: {
|
|
17376
18254
|
readonly "glm-4.5-air": {
|
|
@@ -17483,5 +18361,116 @@ export declare const MODELS: {
|
|
|
17483
18361
|
maxTokens: number;
|
|
17484
18362
|
};
|
|
17485
18363
|
};
|
|
18364
|
+
readonly "zai-coding-cn": {
|
|
18365
|
+
readonly "glm-4.5-air": {
|
|
18366
|
+
id: string;
|
|
18367
|
+
name: string;
|
|
18368
|
+
api: "openai-completions";
|
|
18369
|
+
provider: string;
|
|
18370
|
+
baseUrl: string;
|
|
18371
|
+
compat: {
|
|
18372
|
+
supportsDeveloperRole: false;
|
|
18373
|
+
thinkingFormat: "zai";
|
|
18374
|
+
};
|
|
18375
|
+
reasoning: true;
|
|
18376
|
+
input: "text"[];
|
|
18377
|
+
cost: {
|
|
18378
|
+
input: number;
|
|
18379
|
+
output: number;
|
|
18380
|
+
cacheRead: number;
|
|
18381
|
+
cacheWrite: number;
|
|
18382
|
+
};
|
|
18383
|
+
contextWindow: number;
|
|
18384
|
+
maxTokens: number;
|
|
18385
|
+
};
|
|
18386
|
+
readonly "glm-4.7": {
|
|
18387
|
+
id: string;
|
|
18388
|
+
name: string;
|
|
18389
|
+
api: "openai-completions";
|
|
18390
|
+
provider: string;
|
|
18391
|
+
baseUrl: string;
|
|
18392
|
+
compat: {
|
|
18393
|
+
supportsDeveloperRole: false;
|
|
18394
|
+
thinkingFormat: "zai";
|
|
18395
|
+
zaiToolStream: true;
|
|
18396
|
+
};
|
|
18397
|
+
reasoning: true;
|
|
18398
|
+
input: "text"[];
|
|
18399
|
+
cost: {
|
|
18400
|
+
input: number;
|
|
18401
|
+
output: number;
|
|
18402
|
+
cacheRead: number;
|
|
18403
|
+
cacheWrite: number;
|
|
18404
|
+
};
|
|
18405
|
+
contextWindow: number;
|
|
18406
|
+
maxTokens: number;
|
|
18407
|
+
};
|
|
18408
|
+
readonly "glm-5-turbo": {
|
|
18409
|
+
id: string;
|
|
18410
|
+
name: string;
|
|
18411
|
+
api: "openai-completions";
|
|
18412
|
+
provider: string;
|
|
18413
|
+
baseUrl: string;
|
|
18414
|
+
compat: {
|
|
18415
|
+
supportsDeveloperRole: false;
|
|
18416
|
+
thinkingFormat: "zai";
|
|
18417
|
+
zaiToolStream: true;
|
|
18418
|
+
};
|
|
18419
|
+
reasoning: true;
|
|
18420
|
+
input: "text"[];
|
|
18421
|
+
cost: {
|
|
18422
|
+
input: number;
|
|
18423
|
+
output: number;
|
|
18424
|
+
cacheRead: number;
|
|
18425
|
+
cacheWrite: number;
|
|
18426
|
+
};
|
|
18427
|
+
contextWindow: number;
|
|
18428
|
+
maxTokens: number;
|
|
18429
|
+
};
|
|
18430
|
+
readonly "glm-5.1": {
|
|
18431
|
+
id: string;
|
|
18432
|
+
name: string;
|
|
18433
|
+
api: "openai-completions";
|
|
18434
|
+
provider: string;
|
|
18435
|
+
baseUrl: string;
|
|
18436
|
+
compat: {
|
|
18437
|
+
supportsDeveloperRole: false;
|
|
18438
|
+
thinkingFormat: "zai";
|
|
18439
|
+
zaiToolStream: true;
|
|
18440
|
+
};
|
|
18441
|
+
reasoning: true;
|
|
18442
|
+
input: "text"[];
|
|
18443
|
+
cost: {
|
|
18444
|
+
input: number;
|
|
18445
|
+
output: number;
|
|
18446
|
+
cacheRead: number;
|
|
18447
|
+
cacheWrite: number;
|
|
18448
|
+
};
|
|
18449
|
+
contextWindow: number;
|
|
18450
|
+
maxTokens: number;
|
|
18451
|
+
};
|
|
18452
|
+
readonly "glm-5v-turbo": {
|
|
18453
|
+
id: string;
|
|
18454
|
+
name: string;
|
|
18455
|
+
api: "openai-completions";
|
|
18456
|
+
provider: string;
|
|
18457
|
+
baseUrl: string;
|
|
18458
|
+
compat: {
|
|
18459
|
+
supportsDeveloperRole: false;
|
|
18460
|
+
thinkingFormat: "zai";
|
|
18461
|
+
zaiToolStream: true;
|
|
18462
|
+
};
|
|
18463
|
+
reasoning: true;
|
|
18464
|
+
input: ("image" | "text")[];
|
|
18465
|
+
cost: {
|
|
18466
|
+
input: number;
|
|
18467
|
+
output: number;
|
|
18468
|
+
cacheRead: number;
|
|
18469
|
+
cacheWrite: number;
|
|
18470
|
+
};
|
|
18471
|
+
contextWindow: number;
|
|
18472
|
+
maxTokens: number;
|
|
18473
|
+
};
|
|
18474
|
+
};
|
|
17486
18475
|
};
|
|
17487
18476
|
//# sourceMappingURL=models.generated.d.ts.map
|