daycare-cli 0.0.1
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/LICENSE +21 -0
- package/README.md +80 -0
- package/bin/daycare.js +2 -0
- package/dist/auth/store.d.ts +25 -0
- package/dist/auth/store.d.ts.map +1 -0
- package/dist/auth/store.js +80 -0
- package/dist/auth/store.js.map +1 -0
- package/dist/commands/add.d.ts +5 -0
- package/dist/commands/add.d.ts.map +1 -0
- package/dist/commands/add.js +412 -0
- package/dist/commands/add.js.map +1 -0
- package/dist/commands/auth.d.ts +2 -0
- package/dist/commands/auth.d.ts.map +1 -0
- package/dist/commands/auth.js +13 -0
- package/dist/commands/auth.js.map +1 -0
- package/dist/commands/doctor.d.ts +5 -0
- package/dist/commands/doctor.d.ts.map +1 -0
- package/dist/commands/doctor.js +143 -0
- package/dist/commands/doctor.js.map +1 -0
- package/dist/commands/engineReloadRequest.d.ts +6 -0
- package/dist/commands/engineReloadRequest.d.ts.map +1 -0
- package/dist/commands/engineReloadRequest.js +17 -0
- package/dist/commands/engineReloadRequest.js.map +1 -0
- package/dist/commands/event.d.ts +2 -0
- package/dist/commands/event.d.ts.map +1 -0
- package/dist/commands/event.js +32 -0
- package/dist/commands/event.js.map +1 -0
- package/dist/commands/event.spec.d.ts +2 -0
- package/dist/commands/event.spec.d.ts.map +1 -0
- package/dist/commands/event.spec.js +36 -0
- package/dist/commands/event.spec.js.map +1 -0
- package/dist/commands/plugins.d.ts +3 -0
- package/dist/commands/plugins.d.ts.map +1 -0
- package/dist/commands/plugins.js +19 -0
- package/dist/commands/plugins.js.map +1 -0
- package/dist/commands/prompts.d.ts +23 -0
- package/dist/commands/prompts.d.ts.map +1 -0
- package/dist/commands/prompts.js +92 -0
- package/dist/commands/prompts.js.map +1 -0
- package/dist/commands/providers.d.ts +5 -0
- package/dist/commands/providers.d.ts.map +1 -0
- package/dist/commands/providers.js +149 -0
- package/dist/commands/providers.js.map +1 -0
- package/dist/commands/remove.d.ts +5 -0
- package/dist/commands/remove.d.ts.map +1 -0
- package/dist/commands/remove.js +103 -0
- package/dist/commands/remove.js.map +1 -0
- package/dist/commands/start.d.ts +7 -0
- package/dist/commands/start.d.ts.map +1 -0
- package/dist/commands/start.js +173 -0
- package/dist/commands/start.js.map +1 -0
- package/dist/commands/status.d.ts +2 -0
- package/dist/commands/status.d.ts.map +1 -0
- package/dist/commands/status.js +28 -0
- package/dist/commands/status.js.map +1 -0
- package/dist/config/configLoad.d.ts +7 -0
- package/dist/config/configLoad.d.ts.map +1 -0
- package/dist/config/configLoad.js +25 -0
- package/dist/config/configLoad.js.map +1 -0
- package/dist/config/configResolve.d.ts +8 -0
- package/dist/config/configResolve.d.ts.map +1 -0
- package/dist/config/configResolve.js +49 -0
- package/dist/config/configResolve.js.map +1 -0
- package/dist/config/configSettingsParse.d.ts +7 -0
- package/dist/config/configSettingsParse.d.ts.map +1 -0
- package/dist/config/configSettingsParse.js +61 -0
- package/dist/config/configSettingsParse.js.map +1 -0
- package/dist/config/configTypes.d.ts +19 -0
- package/dist/config/configTypes.d.ts.map +1 -0
- package/dist/config/configTypes.js +2 -0
- package/dist/config/configTypes.js.map +1 -0
- package/dist/engine/agents/agent.d.ts +72 -0
- package/dist/engine/agents/agent.d.ts.map +1 -0
- package/dist/engine/agents/agent.js +947 -0
- package/dist/engine/agents/agent.js.map +1 -0
- package/dist/engine/agents/agent.spec.d.ts +2 -0
- package/dist/engine/agents/agent.spec.d.ts.map +1 -0
- package/dist/engine/agents/agent.spec.js +410 -0
- package/dist/engine/agents/agent.spec.js.map +1 -0
- package/dist/engine/agents/agentSystem.d.ts +107 -0
- package/dist/engine/agents/agentSystem.d.ts.map +1 -0
- package/dist/engine/agents/agentSystem.js +554 -0
- package/dist/engine/agents/agentSystem.js.map +1 -0
- package/dist/engine/agents/ops/agentBackgroundList.d.ts +8 -0
- package/dist/engine/agents/ops/agentBackgroundList.d.ts.map +1 -0
- package/dist/engine/agents/ops/agentBackgroundList.js +60 -0
- package/dist/engine/agents/ops/agentBackgroundList.js.map +1 -0
- package/dist/engine/agents/ops/agentDescriptorBuild.d.ts +7 -0
- package/dist/engine/agents/ops/agentDescriptorBuild.d.ts.map +1 -0
- package/dist/engine/agents/ops/agentDescriptorBuild.js +16 -0
- package/dist/engine/agents/ops/agentDescriptorBuild.js.map +1 -0
- package/dist/engine/agents/ops/agentDescriptorIsCron.d.ts +9 -0
- package/dist/engine/agents/ops/agentDescriptorIsCron.d.ts.map +1 -0
- package/dist/engine/agents/ops/agentDescriptorIsCron.js +8 -0
- package/dist/engine/agents/ops/agentDescriptorIsCron.js.map +1 -0
- package/dist/engine/agents/ops/agentDescriptorIsHeartbeat.d.ts +10 -0
- package/dist/engine/agents/ops/agentDescriptorIsHeartbeat.d.ts.map +1 -0
- package/dist/engine/agents/ops/agentDescriptorIsHeartbeat.js +8 -0
- package/dist/engine/agents/ops/agentDescriptorIsHeartbeat.js.map +1 -0
- package/dist/engine/agents/ops/agentDescriptorIsHeartbeat.spec.d.ts +2 -0
- package/dist/engine/agents/ops/agentDescriptorIsHeartbeat.spec.d.ts.map +1 -0
- package/dist/engine/agents/ops/agentDescriptorIsHeartbeat.spec.js +17 -0
- package/dist/engine/agents/ops/agentDescriptorIsHeartbeat.spec.js.map +1 -0
- package/dist/engine/agents/ops/agentDescriptorLabel.d.ts +7 -0
- package/dist/engine/agents/ops/agentDescriptorLabel.d.ts.map +1 -0
- package/dist/engine/agents/ops/agentDescriptorLabel.js +17 -0
- package/dist/engine/agents/ops/agentDescriptorLabel.js.map +1 -0
- package/dist/engine/agents/ops/agentDescriptorLabel.spec.d.ts +2 -0
- package/dist/engine/agents/ops/agentDescriptorLabel.spec.d.ts.map +1 -0
- package/dist/engine/agents/ops/agentDescriptorLabel.spec.js +41 -0
- package/dist/engine/agents/ops/agentDescriptorLabel.spec.js.map +1 -0
- package/dist/engine/agents/ops/agentDescriptorMatchesStrategy.d.ts +7 -0
- package/dist/engine/agents/ops/agentDescriptorMatchesStrategy.d.ts.map +1 -0
- package/dist/engine/agents/ops/agentDescriptorMatchesStrategy.js +15 -0
- package/dist/engine/agents/ops/agentDescriptorMatchesStrategy.js.map +1 -0
- package/dist/engine/agents/ops/agentDescriptorRead.d.ts +8 -0
- package/dist/engine/agents/ops/agentDescriptorRead.d.ts.map +1 -0
- package/dist/engine/agents/ops/agentDescriptorRead.js +66 -0
- package/dist/engine/agents/ops/agentDescriptorRead.js.map +1 -0
- package/dist/engine/agents/ops/agentDescriptorTargetResolve.d.ts +10 -0
- package/dist/engine/agents/ops/agentDescriptorTargetResolve.d.ts.map +1 -0
- package/dist/engine/agents/ops/agentDescriptorTargetResolve.js +11 -0
- package/dist/engine/agents/ops/agentDescriptorTargetResolve.js.map +1 -0
- package/dist/engine/agents/ops/agentDescriptorTargetResolve.spec.d.ts +2 -0
- package/dist/engine/agents/ops/agentDescriptorTargetResolve.spec.d.ts.map +1 -0
- package/dist/engine/agents/ops/agentDescriptorTargetResolve.spec.js +18 -0
- package/dist/engine/agents/ops/agentDescriptorTargetResolve.spec.js.map +1 -0
- package/dist/engine/agents/ops/agentDescriptorTypes.d.ts +27 -0
- package/dist/engine/agents/ops/agentDescriptorTypes.d.ts.map +1 -0
- package/dist/engine/agents/ops/agentDescriptorTypes.js +2 -0
- package/dist/engine/agents/ops/agentDescriptorTypes.js.map +1 -0
- package/dist/engine/agents/ops/agentDescriptorWrite.d.ts +8 -0
- package/dist/engine/agents/ops/agentDescriptorWrite.d.ts.map +1 -0
- package/dist/engine/agents/ops/agentDescriptorWrite.js +16 -0
- package/dist/engine/agents/ops/agentDescriptorWrite.js.map +1 -0
- package/dist/engine/agents/ops/agentHistoryAppend.d.ts +8 -0
- package/dist/engine/agents/ops/agentHistoryAppend.d.ts.map +1 -0
- package/dist/engine/agents/ops/agentHistoryAppend.js +15 -0
- package/dist/engine/agents/ops/agentHistoryAppend.js.map +1 -0
- package/dist/engine/agents/ops/agentHistoryLoad.d.ts +8 -0
- package/dist/engine/agents/ops/agentHistoryLoad.d.ts.map +1 -0
- package/dist/engine/agents/ops/agentHistoryLoad.js +144 -0
- package/dist/engine/agents/ops/agentHistoryLoad.js.map +1 -0
- package/dist/engine/agents/ops/agentHistoryLoad.spec.d.ts +2 -0
- package/dist/engine/agents/ops/agentHistoryLoad.spec.d.ts.map +1 -0
- package/dist/engine/agents/ops/agentHistoryLoad.spec.js +29 -0
- package/dist/engine/agents/ops/agentHistoryLoad.spec.js.map +1 -0
- package/dist/engine/agents/ops/agentHistorySummaryBuild.d.ts +20 -0
- package/dist/engine/agents/ops/agentHistorySummaryBuild.d.ts.map +1 -0
- package/dist/engine/agents/ops/agentHistorySummaryBuild.js +57 -0
- package/dist/engine/agents/ops/agentHistorySummaryBuild.js.map +1 -0
- package/dist/engine/agents/ops/agentHistorySummaryBuild.spec.d.ts +2 -0
- package/dist/engine/agents/ops/agentHistorySummaryBuild.spec.d.ts.map +1 -0
- package/dist/engine/agents/ops/agentHistorySummaryBuild.spec.js +69 -0
- package/dist/engine/agents/ops/agentHistorySummaryBuild.spec.js.map +1 -0
- package/dist/engine/agents/ops/agentInbox.d.ts +20 -0
- package/dist/engine/agents/ops/agentInbox.d.ts.map +1 -0
- package/dist/engine/agents/ops/agentInbox.js +128 -0
- package/dist/engine/agents/ops/agentInbox.js.map +1 -0
- package/dist/engine/agents/ops/agentInbox.spec.d.ts +2 -0
- package/dist/engine/agents/ops/agentInbox.spec.d.ts.map +1 -0
- package/dist/engine/agents/ops/agentInbox.spec.js +74 -0
- package/dist/engine/agents/ops/agentInbox.spec.js.map +1 -0
- package/dist/engine/agents/ops/agentList.d.ts +14 -0
- package/dist/engine/agents/ops/agentList.d.ts.map +1 -0
- package/dist/engine/agents/ops/agentList.js +41 -0
- package/dist/engine/agents/ops/agentList.js.map +1 -0
- package/dist/engine/agents/ops/agentLoopRun.d.ts +58 -0
- package/dist/engine/agents/ops/agentLoopRun.d.ts.map +1 -0
- package/dist/engine/agents/ops/agentLoopRun.js +397 -0
- package/dist/engine/agents/ops/agentLoopRun.js.map +1 -0
- package/dist/engine/agents/ops/agentPathBuild.d.ts +7 -0
- package/dist/engine/agents/ops/agentPathBuild.d.ts.map +1 -0
- package/dist/engine/agents/ops/agentPathBuild.js +9 -0
- package/dist/engine/agents/ops/agentPathBuild.js.map +1 -0
- package/dist/engine/agents/ops/agentPathForDescriptor.d.ts +7 -0
- package/dist/engine/agents/ops/agentPathForDescriptor.d.ts.map +1 -0
- package/dist/engine/agents/ops/agentPathForDescriptor.js +17 -0
- package/dist/engine/agents/ops/agentPathForDescriptor.js.map +1 -0
- package/dist/engine/agents/ops/agentPermanentList.d.ts +8 -0
- package/dist/engine/agents/ops/agentPermanentList.d.ts.map +1 -0
- package/dist/engine/agents/ops/agentPermanentList.js +51 -0
- package/dist/engine/agents/ops/agentPermanentList.js.map +1 -0
- package/dist/engine/agents/ops/agentPermanentPromptBuild.d.ts +7 -0
- package/dist/engine/agents/ops/agentPermanentPromptBuild.d.ts.map +1 -0
- package/dist/engine/agents/ops/agentPermanentPromptBuild.js +42 -0
- package/dist/engine/agents/ops/agentPermanentPromptBuild.js.map +1 -0
- package/dist/engine/agents/ops/agentPermanentPromptBuild.spec.d.ts +2 -0
- package/dist/engine/agents/ops/agentPermanentPromptBuild.spec.d.ts.map +1 -0
- package/dist/engine/agents/ops/agentPermanentPromptBuild.spec.js +47 -0
- package/dist/engine/agents/ops/agentPermanentPromptBuild.spec.js.map +1 -0
- package/dist/engine/agents/ops/agentPermanentTypes.d.ts +10 -0
- package/dist/engine/agents/ops/agentPermanentTypes.d.ts.map +1 -0
- package/dist/engine/agents/ops/agentPermanentTypes.js +2 -0
- package/dist/engine/agents/ops/agentPermanentTypes.js.map +1 -0
- package/dist/engine/agents/ops/agentPromptBundledRead.d.ts +6 -0
- package/dist/engine/agents/ops/agentPromptBundledRead.d.ts.map +1 -0
- package/dist/engine/agents/ops/agentPromptBundledRead.js +10 -0
- package/dist/engine/agents/ops/agentPromptBundledRead.js.map +1 -0
- package/dist/engine/agents/ops/agentPromptFilesEnsure.d.ts +6 -0
- package/dist/engine/agents/ops/agentPromptFilesEnsure.d.ts.map +1 -0
- package/dist/engine/agents/ops/agentPromptFilesEnsure.js +31 -0
- package/dist/engine/agents/ops/agentPromptFilesEnsure.js.map +1 -0
- package/dist/engine/agents/ops/agentStateRead.d.ts +8 -0
- package/dist/engine/agents/ops/agentStateRead.d.ts.map +1 -0
- package/dist/engine/agents/ops/agentStateRead.js +73 -0
- package/dist/engine/agents/ops/agentStateRead.js.map +1 -0
- package/dist/engine/agents/ops/agentStateWrite.d.ts +8 -0
- package/dist/engine/agents/ops/agentStateWrite.d.ts.map +1 -0
- package/dist/engine/agents/ops/agentStateWrite.js +23 -0
- package/dist/engine/agents/ops/agentStateWrite.js.map +1 -0
- package/dist/engine/agents/ops/agentSystemPromptWrite.d.ts +7 -0
- package/dist/engine/agents/ops/agentSystemPromptWrite.d.ts.map +1 -0
- package/dist/engine/agents/ops/agentSystemPromptWrite.js +22 -0
- package/dist/engine/agents/ops/agentSystemPromptWrite.js.map +1 -0
- package/dist/engine/agents/ops/agentSystemPromptWrite.spec.d.ts +2 -0
- package/dist/engine/agents/ops/agentSystemPromptWrite.spec.d.ts.map +1 -0
- package/dist/engine/agents/ops/agentSystemPromptWrite.spec.js +33 -0
- package/dist/engine/agents/ops/agentSystemPromptWrite.spec.js.map +1 -0
- package/dist/engine/agents/ops/agentTimestampGet.d.ts +6 -0
- package/dist/engine/agents/ops/agentTimestampGet.d.ts.map +1 -0
- package/dist/engine/agents/ops/agentTimestampGet.js +15 -0
- package/dist/engine/agents/ops/agentTimestampGet.js.map +1 -0
- package/dist/engine/agents/ops/agentTypes.d.ts +150 -0
- package/dist/engine/agents/ops/agentTypes.d.ts.map +1 -0
- package/dist/engine/agents/ops/agentTypes.js +2 -0
- package/dist/engine/agents/ops/agentTypes.js.map +1 -0
- package/dist/engine/agents/ops/contextCompact.d.ts +17 -0
- package/dist/engine/agents/ops/contextCompact.d.ts.map +1 -0
- package/dist/engine/agents/ops/contextCompact.js +58 -0
- package/dist/engine/agents/ops/contextCompact.js.map +1 -0
- package/dist/engine/agents/ops/contextCompactionStatusBuild.d.ts +19 -0
- package/dist/engine/agents/ops/contextCompactionStatusBuild.d.ts.map +1 -0
- package/dist/engine/agents/ops/contextCompactionStatusBuild.js +30 -0
- package/dist/engine/agents/ops/contextCompactionStatusBuild.js.map +1 -0
- package/dist/engine/agents/ops/contextCompactionStatusBuild.spec.d.ts +2 -0
- package/dist/engine/agents/ops/contextCompactionStatusBuild.spec.d.ts.map +1 -0
- package/dist/engine/agents/ops/contextCompactionStatusBuild.spec.js +34 -0
- package/dist/engine/agents/ops/contextCompactionStatusBuild.spec.js.map +1 -0
- package/dist/engine/agents/ops/contextEstimateTokens.d.ts +7 -0
- package/dist/engine/agents/ops/contextEstimateTokens.d.ts.map +1 -0
- package/dist/engine/agents/ops/contextEstimateTokens.js +114 -0
- package/dist/engine/agents/ops/contextEstimateTokens.js.map +1 -0
- package/dist/engine/agents/ops/contextEstimateTokens.spec.d.ts +2 -0
- package/dist/engine/agents/ops/contextEstimateTokens.spec.d.ts.map +1 -0
- package/dist/engine/agents/ops/contextEstimateTokens.spec.js +88 -0
- package/dist/engine/agents/ops/contextEstimateTokens.spec.js.map +1 -0
- package/dist/engine/agents/ops/contextNeedsEmergencyReset.d.ts +7 -0
- package/dist/engine/agents/ops/contextNeedsEmergencyReset.d.ts.map +1 -0
- package/dist/engine/agents/ops/contextNeedsEmergencyReset.js +10 -0
- package/dist/engine/agents/ops/contextNeedsEmergencyReset.js.map +1 -0
- package/dist/engine/agents/ops/contextNeedsEmergencyReset.spec.d.ts +2 -0
- package/dist/engine/agents/ops/contextNeedsEmergencyReset.spec.d.ts.map +1 -0
- package/dist/engine/agents/ops/contextNeedsEmergencyReset.spec.js +21 -0
- package/dist/engine/agents/ops/contextNeedsEmergencyReset.spec.js.map +1 -0
- package/dist/engine/agents/ops/tokensResolve.d.ts +18 -0
- package/dist/engine/agents/ops/tokensResolve.d.ts.map +1 -0
- package/dist/engine/agents/ops/tokensResolve.js +143 -0
- package/dist/engine/agents/ops/tokensResolve.js.map +1 -0
- package/dist/engine/agents/ops/tokensResolve.spec.d.ts +2 -0
- package/dist/engine/agents/ops/tokensResolve.spec.d.ts.map +1 -0
- package/dist/engine/agents/ops/tokensResolve.spec.js +83 -0
- package/dist/engine/agents/ops/tokensResolve.spec.js.map +1 -0
- package/dist/engine/agents/system/_systemAgents.d.ts +7 -0
- package/dist/engine/agents/system/_systemAgents.d.ts.map +1 -0
- package/dist/engine/agents/system/_systemAgents.js +17 -0
- package/dist/engine/agents/system/_systemAgents.js.map +1 -0
- package/dist/engine/agents/system/systemAgentPromptResolve.d.ts +7 -0
- package/dist/engine/agents/system/systemAgentPromptResolve.d.ts.map +1 -0
- package/dist/engine/agents/system/systemAgentPromptResolve.js +34 -0
- package/dist/engine/agents/system/systemAgentPromptResolve.js.map +1 -0
- package/dist/engine/agents/system/systemAgentPromptResolve.spec.d.ts +2 -0
- package/dist/engine/agents/system/systemAgentPromptResolve.spec.d.ts.map +1 -0
- package/dist/engine/agents/system/systemAgentPromptResolve.spec.js +20 -0
- package/dist/engine/agents/system/systemAgentPromptResolve.spec.js.map +1 -0
- package/dist/engine/agents/system/systemAgentTagIs.d.ts +6 -0
- package/dist/engine/agents/system/systemAgentTagIs.d.ts.map +1 -0
- package/dist/engine/agents/system/systemAgentTagIs.js +9 -0
- package/dist/engine/agents/system/systemAgentTagIs.js.map +1 -0
- package/dist/engine/agents/system/systemAgentTagIs.spec.d.ts +2 -0
- package/dist/engine/agents/system/systemAgentTagIs.spec.d.ts.map +1 -0
- package/dist/engine/agents/system/systemAgentTagIs.spec.js +14 -0
- package/dist/engine/agents/system/systemAgentTagIs.spec.js.map +1 -0
- package/dist/engine/agents/system/systemAgentTypes.d.ts +17 -0
- package/dist/engine/agents/system/systemAgentTypes.d.ts.map +1 -0
- package/dist/engine/agents/system/systemAgentTypes.js +2 -0
- package/dist/engine/agents/system/systemAgentTypes.js.map +1 -0
- package/dist/engine/config/configModule.d.ts +16 -0
- package/dist/engine/config/configModule.d.ts.map +1 -0
- package/dist/engine/config/configModule.js +26 -0
- package/dist/engine/config/configModule.js.map +1 -0
- package/dist/engine/config/configModule.spec.d.ts +2 -0
- package/dist/engine/config/configModule.spec.d.ts.map +1 -0
- package/dist/engine/config/configModule.spec.js +15 -0
- package/dist/engine/config/configModule.spec.js.map +1 -0
- package/dist/engine/cron/cronTypes.d.ts +81 -0
- package/dist/engine/cron/cronTypes.d.ts.map +1 -0
- package/dist/engine/cron/cronTypes.js +2 -0
- package/dist/engine/cron/cronTypes.js.map +1 -0
- package/dist/engine/cron/crons.d.ts +33 -0
- package/dist/engine/cron/crons.d.ts.map +1 -0
- package/dist/engine/cron/crons.js +124 -0
- package/dist/engine/cron/crons.js.map +1 -0
- package/dist/engine/cron/ops/cronExpressionParse.d.ts +9 -0
- package/dist/engine/cron/ops/cronExpressionParse.d.ts.map +1 -0
- package/dist/engine/cron/ops/cronExpressionParse.js +24 -0
- package/dist/engine/cron/ops/cronExpressionParse.js.map +1 -0
- package/dist/engine/cron/ops/cronExpressionParse.spec.d.ts +2 -0
- package/dist/engine/cron/ops/cronExpressionParse.spec.d.ts.map +1 -0
- package/dist/engine/cron/ops/cronExpressionParse.spec.js +73 -0
- package/dist/engine/cron/ops/cronExpressionParse.spec.js.map +1 -0
- package/dist/engine/cron/ops/cronFieldMatch.d.ts +9 -0
- package/dist/engine/cron/ops/cronFieldMatch.d.ts.map +1 -0
- package/dist/engine/cron/ops/cronFieldMatch.js +10 -0
- package/dist/engine/cron/ops/cronFieldMatch.js.map +1 -0
- package/dist/engine/cron/ops/cronFieldMatch.spec.d.ts +2 -0
- package/dist/engine/cron/ops/cronFieldMatch.spec.d.ts.map +1 -0
- package/dist/engine/cron/ops/cronFieldMatch.spec.js +29 -0
- package/dist/engine/cron/ops/cronFieldMatch.spec.js.map +1 -0
- package/dist/engine/cron/ops/cronFieldParse.d.ts +9 -0
- package/dist/engine/cron/ops/cronFieldParse.d.ts.map +1 -0
- package/dist/engine/cron/ops/cronFieldParse.js +48 -0
- package/dist/engine/cron/ops/cronFieldParse.js.map +1 -0
- package/dist/engine/cron/ops/cronFieldParse.spec.d.ts +2 -0
- package/dist/engine/cron/ops/cronFieldParse.spec.d.ts.map +1 -0
- package/dist/engine/cron/ops/cronFieldParse.spec.js +62 -0
- package/dist/engine/cron/ops/cronFieldParse.spec.js.map +1 -0
- package/dist/engine/cron/ops/cronFrontmatterParse.d.ts +9 -0
- package/dist/engine/cron/ops/cronFrontmatterParse.d.ts.map +1 -0
- package/dist/engine/cron/ops/cronFrontmatterParse.js +24 -0
- package/dist/engine/cron/ops/cronFrontmatterParse.js.map +1 -0
- package/dist/engine/cron/ops/cronFrontmatterParse.spec.d.ts +2 -0
- package/dist/engine/cron/ops/cronFrontmatterParse.spec.d.ts.map +1 -0
- package/dist/engine/cron/ops/cronFrontmatterParse.spec.js +82 -0
- package/dist/engine/cron/ops/cronFrontmatterParse.spec.js.map +1 -0
- package/dist/engine/cron/ops/cronFrontmatterSerialize.d.ts +9 -0
- package/dist/engine/cron/ops/cronFrontmatterSerialize.d.ts.map +1 -0
- package/dist/engine/cron/ops/cronFrontmatterSerialize.js +11 -0
- package/dist/engine/cron/ops/cronFrontmatterSerialize.js.map +1 -0
- package/dist/engine/cron/ops/cronFrontmatterSerialize.spec.d.ts +2 -0
- package/dist/engine/cron/ops/cronFrontmatterSerialize.spec.d.ts.map +1 -0
- package/dist/engine/cron/ops/cronFrontmatterSerialize.spec.js +54 -0
- package/dist/engine/cron/ops/cronFrontmatterSerialize.spec.js.map +1 -0
- package/dist/engine/cron/ops/cronScheduler.d.ts +55 -0
- package/dist/engine/cron/ops/cronScheduler.d.ts.map +1 -0
- package/dist/engine/cron/ops/cronScheduler.js +300 -0
- package/dist/engine/cron/ops/cronScheduler.js.map +1 -0
- package/dist/engine/cron/ops/cronScheduler.spec.d.ts +2 -0
- package/dist/engine/cron/ops/cronScheduler.spec.d.ts.map +1 -0
- package/dist/engine/cron/ops/cronScheduler.spec.js +239 -0
- package/dist/engine/cron/ops/cronScheduler.spec.js.map +1 -0
- package/dist/engine/cron/ops/cronStore.d.ts +33 -0
- package/dist/engine/cron/ops/cronStore.d.ts.map +1 -0
- package/dist/engine/cron/ops/cronStore.js +312 -0
- package/dist/engine/cron/ops/cronStore.js.map +1 -0
- package/dist/engine/cron/ops/cronStore.spec.d.ts +2 -0
- package/dist/engine/cron/ops/cronStore.spec.d.ts.map +1 -0
- package/dist/engine/cron/ops/cronStore.spec.js +162 -0
- package/dist/engine/cron/ops/cronStore.spec.js.map +1 -0
- package/dist/engine/cron/ops/cronTaskUidResolve.d.ts +9 -0
- package/dist/engine/cron/ops/cronTaskUidResolve.d.ts.map +1 -0
- package/dist/engine/cron/ops/cronTaskUidResolve.js +14 -0
- package/dist/engine/cron/ops/cronTaskUidResolve.js.map +1 -0
- package/dist/engine/cron/ops/cronTaskUidResolve.spec.d.ts +2 -0
- package/dist/engine/cron/ops/cronTaskUidResolve.spec.d.ts.map +1 -0
- package/dist/engine/cron/ops/cronTaskUidResolve.spec.js +29 -0
- package/dist/engine/cron/ops/cronTaskUidResolve.spec.js.map +1 -0
- package/dist/engine/cron/ops/cronTimeGetNext.d.ts +8 -0
- package/dist/engine/cron/ops/cronTimeGetNext.d.ts.map +1 -0
- package/dist/engine/cron/ops/cronTimeGetNext.js +40 -0
- package/dist/engine/cron/ops/cronTimeGetNext.js.map +1 -0
- package/dist/engine/cron/ops/cronTimeGetNext.spec.d.ts +2 -0
- package/dist/engine/cron/ops/cronTimeGetNext.spec.d.ts.map +1 -0
- package/dist/engine/cron/ops/cronTimeGetNext.spec.js +66 -0
- package/dist/engine/cron/ops/cronTimeGetNext.spec.js.map +1 -0
- package/dist/engine/engine.d.ts +80 -0
- package/dist/engine/engine.d.ts.map +1 -0
- package/dist/engine/engine.js +473 -0
- package/dist/engine/engine.js.map +1 -0
- package/dist/engine/engine.spec.d.ts +2 -0
- package/dist/engine/engine.spec.d.ts.map +1 -0
- package/dist/engine/engine.spec.js +147 -0
- package/dist/engine/engine.spec.js.map +1 -0
- package/dist/engine/heartbeat/heartbeatTypes.d.ts +48 -0
- package/dist/engine/heartbeat/heartbeatTypes.d.ts.map +1 -0
- package/dist/engine/heartbeat/heartbeatTypes.js +5 -0
- package/dist/engine/heartbeat/heartbeatTypes.js.map +1 -0
- package/dist/engine/heartbeat/heartbeats.d.ts +34 -0
- package/dist/engine/heartbeat/heartbeats.d.ts.map +1 -0
- package/dist/engine/heartbeat/heartbeats.js +107 -0
- package/dist/engine/heartbeat/heartbeats.js.map +1 -0
- package/dist/engine/heartbeat/ops/heartbeatParse.d.ts +11 -0
- package/dist/engine/heartbeat/ops/heartbeatParse.d.ts.map +1 -0
- package/dist/engine/heartbeat/ops/heartbeatParse.js +31 -0
- package/dist/engine/heartbeat/ops/heartbeatParse.js.map +1 -0
- package/dist/engine/heartbeat/ops/heartbeatParse.spec.d.ts +2 -0
- package/dist/engine/heartbeat/ops/heartbeatParse.spec.d.ts.map +1 -0
- package/dist/engine/heartbeat/ops/heartbeatParse.spec.js +46 -0
- package/dist/engine/heartbeat/ops/heartbeatParse.spec.js.map +1 -0
- package/dist/engine/heartbeat/ops/heartbeatPromptBuildBatch.d.ts +12 -0
- package/dist/engine/heartbeat/ops/heartbeatPromptBuildBatch.d.ts.map +1 -0
- package/dist/engine/heartbeat/ops/heartbeatPromptBuildBatch.js +34 -0
- package/dist/engine/heartbeat/ops/heartbeatPromptBuildBatch.js.map +1 -0
- package/dist/engine/heartbeat/ops/heartbeatPromptBuildBatch.spec.d.ts +2 -0
- package/dist/engine/heartbeat/ops/heartbeatPromptBuildBatch.spec.d.ts.map +1 -0
- package/dist/engine/heartbeat/ops/heartbeatPromptBuildBatch.spec.js +31 -0
- package/dist/engine/heartbeat/ops/heartbeatPromptBuildBatch.spec.js.map +1 -0
- package/dist/engine/heartbeat/ops/heartbeatScheduler.d.ts +39 -0
- package/dist/engine/heartbeat/ops/heartbeatScheduler.d.ts.map +1 -0
- package/dist/engine/heartbeat/ops/heartbeatScheduler.js +193 -0
- package/dist/engine/heartbeat/ops/heartbeatScheduler.js.map +1 -0
- package/dist/engine/heartbeat/ops/heartbeatScheduler.spec.d.ts +2 -0
- package/dist/engine/heartbeat/ops/heartbeatScheduler.spec.d.ts.map +1 -0
- package/dist/engine/heartbeat/ops/heartbeatScheduler.spec.js +140 -0
- package/dist/engine/heartbeat/ops/heartbeatScheduler.spec.js.map +1 -0
- package/dist/engine/heartbeat/ops/heartbeatStore.d.ts +25 -0
- package/dist/engine/heartbeat/ops/heartbeatStore.d.ts.map +1 -0
- package/dist/engine/heartbeat/ops/heartbeatStore.js +188 -0
- package/dist/engine/heartbeat/ops/heartbeatStore.js.map +1 -0
- package/dist/engine/heartbeat/ops/heartbeatStore.spec.d.ts +2 -0
- package/dist/engine/heartbeat/ops/heartbeatStore.spec.d.ts.map +1 -0
- package/dist/engine/heartbeat/ops/heartbeatStore.spec.js +30 -0
- package/dist/engine/heartbeat/ops/heartbeatStore.spec.js.map +1 -0
- package/dist/engine/ipc/client.d.ts +24 -0
- package/dist/engine/ipc/client.d.ts.map +1 -0
- package/dist/engine/ipc/client.js +92 -0
- package/dist/engine/ipc/client.js.map +1 -0
- package/dist/engine/ipc/events.d.ts +13 -0
- package/dist/engine/ipc/events.d.ts.map +1 -0
- package/dist/engine/ipc/events.js +17 -0
- package/dist/engine/ipc/events.js.map +1 -0
- package/dist/engine/ipc/server.d.ts +14 -0
- package/dist/engine/ipc/server.d.ts.map +1 -0
- package/dist/engine/ipc/server.js +411 -0
- package/dist/engine/ipc/server.js.map +1 -0
- package/dist/engine/ipc/socket.d.ts +4 -0
- package/dist/engine/ipc/socket.d.ts.map +1 -0
- package/dist/engine/ipc/socket.js +15 -0
- package/dist/engine/ipc/socket.js.map +1 -0
- package/dist/engine/messages/incomingMessages.d.ts +31 -0
- package/dist/engine/messages/incomingMessages.d.ts.map +1 -0
- package/dist/engine/messages/incomingMessages.js +130 -0
- package/dist/engine/messages/incomingMessages.js.map +1 -0
- package/dist/engine/messages/incomingMessages.spec.d.ts +2 -0
- package/dist/engine/messages/incomingMessages.spec.d.ts.map +1 -0
- package/dist/engine/messages/incomingMessages.spec.js +87 -0
- package/dist/engine/messages/incomingMessages.spec.js.map +1 -0
- package/dist/engine/messages/messageBuildSystemText.d.ts +2 -0
- package/dist/engine/messages/messageBuildSystemText.d.ts.map +1 -0
- package/dist/engine/messages/messageBuildSystemText.js +6 -0
- package/dist/engine/messages/messageBuildSystemText.js.map +1 -0
- package/dist/engine/messages/messageBuildSystemText.spec.d.ts +2 -0
- package/dist/engine/messages/messageBuildSystemText.spec.d.ts.map +1 -0
- package/dist/engine/messages/messageBuildSystemText.spec.js +11 -0
- package/dist/engine/messages/messageBuildSystemText.spec.js.map +1 -0
- package/dist/engine/messages/messageBuildUser.d.ts +4 -0
- package/dist/engine/messages/messageBuildUser.d.ts.map +1 -0
- package/dist/engine/messages/messageBuildUser.js +38 -0
- package/dist/engine/messages/messageBuildUser.js.map +1 -0
- package/dist/engine/messages/messageBuildUser.spec.d.ts +2 -0
- package/dist/engine/messages/messageBuildUser.spec.d.ts.map +1 -0
- package/dist/engine/messages/messageBuildUser.spec.js +54 -0
- package/dist/engine/messages/messageBuildUser.spec.js.map +1 -0
- package/dist/engine/messages/messageExtractText.d.ts +3 -0
- package/dist/engine/messages/messageExtractText.d.ts.map +1 -0
- package/dist/engine/messages/messageExtractText.js +11 -0
- package/dist/engine/messages/messageExtractText.js.map +1 -0
- package/dist/engine/messages/messageExtractText.spec.d.ts +2 -0
- package/dist/engine/messages/messageExtractText.spec.d.ts.map +1 -0
- package/dist/engine/messages/messageExtractText.spec.js +33 -0
- package/dist/engine/messages/messageExtractText.spec.js.map +1 -0
- package/dist/engine/messages/messageExtractToolCalls.d.ts +3 -0
- package/dist/engine/messages/messageExtractToolCalls.d.ts.map +1 -0
- package/dist/engine/messages/messageExtractToolCalls.js +7 -0
- package/dist/engine/messages/messageExtractToolCalls.js.map +1 -0
- package/dist/engine/messages/messageExtractToolCalls.spec.d.ts +2 -0
- package/dist/engine/messages/messageExtractToolCalls.spec.d.ts.map +1 -0
- package/dist/engine/messages/messageExtractToolCalls.spec.js +39 -0
- package/dist/engine/messages/messageExtractToolCalls.spec.js.map +1 -0
- package/dist/engine/messages/messageFormatIncoming.d.ts +3 -0
- package/dist/engine/messages/messageFormatIncoming.d.ts.map +1 -0
- package/dist/engine/messages/messageFormatIncoming.js +17 -0
- package/dist/engine/messages/messageFormatIncoming.js.map +1 -0
- package/dist/engine/messages/messageFormatIncoming.spec.d.ts +2 -0
- package/dist/engine/messages/messageFormatIncoming.spec.d.ts.map +1 -0
- package/dist/engine/messages/messageFormatIncoming.spec.js +20 -0
- package/dist/engine/messages/messageFormatIncoming.spec.js.map +1 -0
- package/dist/engine/messages/messageIsSystemText.d.ts +2 -0
- package/dist/engine/messages/messageIsSystemText.d.ts.map +1 -0
- package/dist/engine/messages/messageIsSystemText.js +5 -0
- package/dist/engine/messages/messageIsSystemText.js.map +1 -0
- package/dist/engine/messages/messageIsSystemText.spec.d.ts +2 -0
- package/dist/engine/messages/messageIsSystemText.spec.d.ts.map +1 -0
- package/dist/engine/messages/messageIsSystemText.spec.js +12 -0
- package/dist/engine/messages/messageIsSystemText.spec.js.map +1 -0
- package/dist/engine/messages/messageNoMessageIs.d.ts +6 -0
- package/dist/engine/messages/messageNoMessageIs.d.ts.map +1 -0
- package/dist/engine/messages/messageNoMessageIs.js +46 -0
- package/dist/engine/messages/messageNoMessageIs.js.map +1 -0
- package/dist/engine/messages/messageNoMessageIs.spec.d.ts +2 -0
- package/dist/engine/messages/messageNoMessageIs.spec.d.ts.map +1 -0
- package/dist/engine/messages/messageNoMessageIs.spec.js +22 -0
- package/dist/engine/messages/messageNoMessageIs.spec.js.map +1 -0
- package/dist/engine/modules/connectorRegistry.d.ts +40 -0
- package/dist/engine/modules/connectorRegistry.d.ts.map +1 -0
- package/dist/engine/modules/connectorRegistry.js +112 -0
- package/dist/engine/modules/connectorRegistry.js.map +1 -0
- package/dist/engine/modules/connectors/types.d.ts +74 -0
- package/dist/engine/modules/connectors/types.d.ts.map +1 -0
- package/dist/engine/modules/connectors/types.js +2 -0
- package/dist/engine/modules/connectors/types.js.map +1 -0
- package/dist/engine/modules/imageGenerationRegistry.d.ts +11 -0
- package/dist/engine/modules/imageGenerationRegistry.d.ts.map +1 -0
- package/dist/engine/modules/imageGenerationRegistry.js +32 -0
- package/dist/engine/modules/imageGenerationRegistry.js.map +1 -0
- package/dist/engine/modules/images/types.d.ts +25 -0
- package/dist/engine/modules/images/types.d.ts.map +1 -0
- package/dist/engine/modules/images/types.js +2 -0
- package/dist/engine/modules/images/types.js.map +1 -0
- package/dist/engine/modules/inference/router.d.ts +34 -0
- package/dist/engine/modules/inference/router.d.ts.map +1 -0
- package/dist/engine/modules/inference/router.js +81 -0
- package/dist/engine/modules/inference/router.js.map +1 -0
- package/dist/engine/modules/inference/types.d.ts +20 -0
- package/dist/engine/modules/inference/types.d.ts.map +1 -0
- package/dist/engine/modules/inference/types.js +2 -0
- package/dist/engine/modules/inference/types.js.map +1 -0
- package/dist/engine/modules/inferenceRegistry.d.ts +11 -0
- package/dist/engine/modules/inferenceRegistry.d.ts.map +1 -0
- package/dist/engine/modules/inferenceRegistry.js +34 -0
- package/dist/engine/modules/inferenceRegistry.js.map +1 -0
- package/dist/engine/modules/moduleRegistry.d.ts +14 -0
- package/dist/engine/modules/moduleRegistry.d.ts.map +1 -0
- package/dist/engine/modules/moduleRegistry.js +17 -0
- package/dist/engine/modules/moduleRegistry.js.map +1 -0
- package/dist/engine/modules/toolResolver.d.ts +11 -0
- package/dist/engine/modules/toolResolver.d.ts.map +1 -0
- package/dist/engine/modules/toolResolver.js +76 -0
- package/dist/engine/modules/toolResolver.js.map +1 -0
- package/dist/engine/modules/tools/agentListToolBuild.d.ts +7 -0
- package/dist/engine/modules/tools/agentListToolBuild.d.ts.map +1 -0
- package/dist/engine/modules/tools/agentListToolBuild.js +70 -0
- package/dist/engine/modules/tools/agentListToolBuild.js.map +1 -0
- package/dist/engine/modules/tools/agentListToolBuild.spec.d.ts +2 -0
- package/dist/engine/modules/tools/agentListToolBuild.spec.d.ts.map +1 -0
- package/dist/engine/modules/tools/agentListToolBuild.spec.js +94 -0
- package/dist/engine/modules/tools/agentListToolBuild.spec.js.map +1 -0
- package/dist/engine/modules/tools/background.d.ts +4 -0
- package/dist/engine/modules/tools/background.d.ts.map +1 -0
- package/dist/engine/modules/tools/background.js +93 -0
- package/dist/engine/modules/tools/background.js.map +1 -0
- package/dist/engine/modules/tools/background.spec.d.ts +2 -0
- package/dist/engine/modules/tools/background.spec.d.ts.map +1 -0
- package/dist/engine/modules/tools/background.spec.js +88 -0
- package/dist/engine/modules/tools/background.spec.js.map +1 -0
- package/dist/engine/modules/tools/cron.d.ts +8 -0
- package/dist/engine/modules/tools/cron.d.ts.map +1 -0
- package/dist/engine/modules/tools/cron.js +254 -0
- package/dist/engine/modules/tools/cron.js.map +1 -0
- package/dist/engine/modules/tools/heartbeat.d.ts +6 -0
- package/dist/engine/modules/tools/heartbeat.d.ts.map +1 -0
- package/dist/engine/modules/tools/heartbeat.js +172 -0
- package/dist/engine/modules/tools/heartbeat.js.map +1 -0
- package/dist/engine/modules/tools/image-generation.d.ts +4 -0
- package/dist/engine/modules/tools/image-generation.d.ts.map +1 -0
- package/dist/engine/modules/tools/image-generation.js +99 -0
- package/dist/engine/modules/tools/image-generation.js.map +1 -0
- package/dist/engine/modules/tools/mermaid-png.d.ts +14 -0
- package/dist/engine/modules/tools/mermaid-png.d.ts.map +1 -0
- package/dist/engine/modules/tools/mermaid-png.js +96 -0
- package/dist/engine/modules/tools/mermaid-png.js.map +1 -0
- package/dist/engine/modules/tools/mermaid-png.spec.d.ts +2 -0
- package/dist/engine/modules/tools/mermaid-png.spec.d.ts.map +1 -0
- package/dist/engine/modules/tools/mermaid-png.spec.js +81 -0
- package/dist/engine/modules/tools/mermaid-png.spec.js.map +1 -0
- package/dist/engine/modules/tools/permanentAgentToolBuild.d.ts +7 -0
- package/dist/engine/modules/tools/permanentAgentToolBuild.d.ts.map +1 -0
- package/dist/engine/modules/tools/permanentAgentToolBuild.js +163 -0
- package/dist/engine/modules/tools/permanentAgentToolBuild.js.map +1 -0
- package/dist/engine/modules/tools/permanentAgentToolBuild.spec.d.ts +2 -0
- package/dist/engine/modules/tools/permanentAgentToolBuild.spec.d.ts.map +1 -0
- package/dist/engine/modules/tools/permanentAgentToolBuild.spec.js +94 -0
- package/dist/engine/modules/tools/permanentAgentToolBuild.spec.js.map +1 -0
- package/dist/engine/modules/tools/permissions.d.ts +4 -0
- package/dist/engine/modules/tools/permissions.d.ts.map +1 -0
- package/dist/engine/modules/tools/permissions.js +187 -0
- package/dist/engine/modules/tools/permissions.js.map +1 -0
- package/dist/engine/modules/tools/reaction.d.ts +3 -0
- package/dist/engine/modules/tools/reaction.d.ts.map +1 -0
- package/dist/engine/modules/tools/reaction.js +49 -0
- package/dist/engine/modules/tools/reaction.js.map +1 -0
- package/dist/engine/modules/tools/send-file.d.ts +14 -0
- package/dist/engine/modules/tools/send-file.d.ts.map +1 -0
- package/dist/engine/modules/tools/send-file.js +147 -0
- package/dist/engine/modules/tools/send-file.js.map +1 -0
- package/dist/engine/modules/tools/sessionHistoryToolBuild.d.ts +7 -0
- package/dist/engine/modules/tools/sessionHistoryToolBuild.d.ts.map +1 -0
- package/dist/engine/modules/tools/sessionHistoryToolBuild.js +187 -0
- package/dist/engine/modules/tools/sessionHistoryToolBuild.js.map +1 -0
- package/dist/engine/modules/tools/sessionHistoryToolBuild.spec.d.ts +2 -0
- package/dist/engine/modules/tools/sessionHistoryToolBuild.spec.d.ts.map +1 -0
- package/dist/engine/modules/tools/sessionHistoryToolBuild.spec.js +193 -0
- package/dist/engine/modules/tools/sessionHistoryToolBuild.spec.js.map +1 -0
- package/dist/engine/modules/tools/signal.d.ts +4 -0
- package/dist/engine/modules/tools/signal.d.ts.map +1 -0
- package/dist/engine/modules/tools/signal.js +60 -0
- package/dist/engine/modules/tools/signal.js.map +1 -0
- package/dist/engine/modules/tools/signal.spec.d.ts +2 -0
- package/dist/engine/modules/tools/signal.spec.d.ts.map +1 -0
- package/dist/engine/modules/tools/signal.spec.js +58 -0
- package/dist/engine/modules/tools/signal.spec.js.map +1 -0
- package/dist/engine/modules/tools/signalSubscribeToolBuild.d.ts +4 -0
- package/dist/engine/modules/tools/signalSubscribeToolBuild.d.ts.map +1 -0
- package/dist/engine/modules/tools/signalSubscribeToolBuild.js +44 -0
- package/dist/engine/modules/tools/signalSubscribeToolBuild.js.map +1 -0
- package/dist/engine/modules/tools/signalSubscribeToolBuild.spec.d.ts +2 -0
- package/dist/engine/modules/tools/signalSubscribeToolBuild.spec.d.ts.map +1 -0
- package/dist/engine/modules/tools/signalSubscribeToolBuild.spec.js +62 -0
- package/dist/engine/modules/tools/signalSubscribeToolBuild.spec.js.map +1 -0
- package/dist/engine/modules/tools/signalUnsubscribeToolBuild.d.ts +4 -0
- package/dist/engine/modules/tools/signalUnsubscribeToolBuild.d.ts.map +1 -0
- package/dist/engine/modules/tools/signalUnsubscribeToolBuild.js +44 -0
- package/dist/engine/modules/tools/signalUnsubscribeToolBuild.js.map +1 -0
- package/dist/engine/modules/tools/signalUnsubscribeToolBuild.spec.d.ts +2 -0
- package/dist/engine/modules/tools/signalUnsubscribeToolBuild.spec.d.ts.map +1 -0
- package/dist/engine/modules/tools/signalUnsubscribeToolBuild.spec.js +74 -0
- package/dist/engine/modules/tools/signalUnsubscribeToolBuild.spec.js.map +1 -0
- package/dist/engine/modules/tools/toolArgsFormatVerbose.d.ts +6 -0
- package/dist/engine/modules/tools/toolArgsFormatVerbose.d.ts.map +1 -0
- package/dist/engine/modules/tools/toolArgsFormatVerbose.js +19 -0
- package/dist/engine/modules/tools/toolArgsFormatVerbose.js.map +1 -0
- package/dist/engine/modules/tools/toolArgsFormatVerbose.spec.d.ts +2 -0
- package/dist/engine/modules/tools/toolArgsFormatVerbose.spec.d.ts.map +1 -0
- package/dist/engine/modules/tools/toolArgsFormatVerbose.spec.js +14 -0
- package/dist/engine/modules/tools/toolArgsFormatVerbose.spec.js.map +1 -0
- package/dist/engine/modules/tools/toolListContextBuild.d.ts +18 -0
- package/dist/engine/modules/tools/toolListContextBuild.d.ts.map +1 -0
- package/dist/engine/modules/tools/toolListContextBuild.js +49 -0
- package/dist/engine/modules/tools/toolListContextBuild.js.map +1 -0
- package/dist/engine/modules/tools/toolListContextBuild.spec.d.ts +2 -0
- package/dist/engine/modules/tools/toolListContextBuild.spec.d.ts.map +1 -0
- package/dist/engine/modules/tools/toolListContextBuild.spec.js +78 -0
- package/dist/engine/modules/tools/toolListContextBuild.spec.js.map +1 -0
- package/dist/engine/modules/tools/toolResultFormatVerbose.d.ts +7 -0
- package/dist/engine/modules/tools/toolResultFormatVerbose.d.ts.map +1 -0
- package/dist/engine/modules/tools/toolResultFormatVerbose.js +24 -0
- package/dist/engine/modules/tools/toolResultFormatVerbose.js.map +1 -0
- package/dist/engine/modules/tools/toolResultFormatVerbose.spec.d.ts +2 -0
- package/dist/engine/modules/tools/toolResultFormatVerbose.spec.d.ts.map +1 -0
- package/dist/engine/modules/tools/toolResultFormatVerbose.spec.js +30 -0
- package/dist/engine/modules/tools/toolResultFormatVerbose.spec.js.map +1 -0
- package/dist/engine/modules/tools/toolResultTruncate.d.ts +7 -0
- package/dist/engine/modules/tools/toolResultTruncate.d.ts.map +1 -0
- package/dist/engine/modules/tools/toolResultTruncate.js +42 -0
- package/dist/engine/modules/tools/toolResultTruncate.js.map +1 -0
- package/dist/engine/modules/tools/toolResultTruncate.spec.d.ts +2 -0
- package/dist/engine/modules/tools/toolResultTruncate.spec.d.ts.map +1 -0
- package/dist/engine/modules/tools/toolResultTruncate.spec.js +39 -0
- package/dist/engine/modules/tools/toolResultTruncate.spec.js.map +1 -0
- package/dist/engine/modules/tools/types.d.ts +37 -0
- package/dist/engine/modules/tools/types.d.ts.map +1 -0
- package/dist/engine/modules/tools/types.js +2 -0
- package/dist/engine/modules/tools/types.js.map +1 -0
- package/dist/engine/permissions/pathResolveSecure.d.ts +38 -0
- package/dist/engine/permissions/pathResolveSecure.d.ts.map +1 -0
- package/dist/engine/permissions/pathResolveSecure.js +96 -0
- package/dist/engine/permissions/pathResolveSecure.js.map +1 -0
- package/dist/engine/permissions/pathResolveSecure.spec.d.ts +2 -0
- package/dist/engine/permissions/pathResolveSecure.spec.d.ts.map +1 -0
- package/dist/engine/permissions/pathResolveSecure.spec.js +115 -0
- package/dist/engine/permissions/pathResolveSecure.spec.js.map +1 -0
- package/dist/engine/permissions/pathSanitize.d.ts +16 -0
- package/dist/engine/permissions/pathSanitize.d.ts.map +1 -0
- package/dist/engine/permissions/pathSanitize.js +39 -0
- package/dist/engine/permissions/pathSanitize.js.map +1 -0
- package/dist/engine/permissions/pathSanitize.spec.d.ts +2 -0
- package/dist/engine/permissions/pathSanitize.spec.d.ts.map +1 -0
- package/dist/engine/permissions/pathSanitize.spec.js +43 -0
- package/dist/engine/permissions/pathSanitize.spec.js.map +1 -0
- package/dist/engine/permissions/permissionAccessAllows.d.ts +7 -0
- package/dist/engine/permissions/permissionAccessAllows.d.ts.map +1 -0
- package/dist/engine/permissions/permissionAccessAllows.js +35 -0
- package/dist/engine/permissions/permissionAccessAllows.js.map +1 -0
- package/dist/engine/permissions/permissionAccessAllows.spec.d.ts +2 -0
- package/dist/engine/permissions/permissionAccessAllows.spec.d.ts.map +1 -0
- package/dist/engine/permissions/permissionAccessAllows.spec.js +55 -0
- package/dist/engine/permissions/permissionAccessAllows.spec.js.map +1 -0
- package/dist/engine/permissions/permissionAccessApply.d.ts +7 -0
- package/dist/engine/permissions/permissionAccessApply.d.ts.map +1 -0
- package/dist/engine/permissions/permissionAccessApply.js +40 -0
- package/dist/engine/permissions/permissionAccessApply.js.map +1 -0
- package/dist/engine/permissions/permissionAccessApply.spec.d.ts +2 -0
- package/dist/engine/permissions/permissionAccessApply.spec.d.ts.map +1 -0
- package/dist/engine/permissions/permissionAccessApply.spec.js +34 -0
- package/dist/engine/permissions/permissionAccessApply.spec.js.map +1 -0
- package/dist/engine/permissions/permissionAccessParse.d.ts +7 -0
- package/dist/engine/permissions/permissionAccessParse.d.ts.map +1 -0
- package/dist/engine/permissions/permissionAccessParse.js +26 -0
- package/dist/engine/permissions/permissionAccessParse.js.map +1 -0
- package/dist/engine/permissions/permissionAccessParse.spec.d.ts +2 -0
- package/dist/engine/permissions/permissionAccessParse.spec.d.ts.map +1 -0
- package/dist/engine/permissions/permissionAccessParse.spec.js +15 -0
- package/dist/engine/permissions/permissionAccessParse.spec.js.map +1 -0
- package/dist/engine/permissions/permissionApply.d.ts +4 -0
- package/dist/engine/permissions/permissionApply.d.ts.map +1 -0
- package/dist/engine/permissions/permissionApply.js +8 -0
- package/dist/engine/permissions/permissionApply.js.map +1 -0
- package/dist/engine/permissions/permissionApply.spec.d.ts +2 -0
- package/dist/engine/permissions/permissionApply.spec.d.ts.map +1 -0
- package/dist/engine/permissions/permissionApply.spec.js +88 -0
- package/dist/engine/permissions/permissionApply.spec.js.map +1 -0
- package/dist/engine/permissions/permissionBuildCron.d.ts +3 -0
- package/dist/engine/permissions/permissionBuildCron.d.ts.map +1 -0
- package/dist/engine/permissions/permissionBuildCron.js +13 -0
- package/dist/engine/permissions/permissionBuildCron.js.map +1 -0
- package/dist/engine/permissions/permissionBuildCron.spec.d.ts +2 -0
- package/dist/engine/permissions/permissionBuildCron.spec.d.ts.map +1 -0
- package/dist/engine/permissions/permissionBuildCron.spec.js +19 -0
- package/dist/engine/permissions/permissionBuildCron.spec.js.map +1 -0
- package/dist/engine/permissions/permissionBuildDefault.d.ts +3 -0
- package/dist/engine/permissions/permissionBuildDefault.d.ts.map +1 -0
- package/dist/engine/permissions/permissionBuildDefault.js +27 -0
- package/dist/engine/permissions/permissionBuildDefault.js.map +1 -0
- package/dist/engine/permissions/permissionBuildDefault.spec.d.ts +2 -0
- package/dist/engine/permissions/permissionBuildDefault.spec.d.ts.map +1 -0
- package/dist/engine/permissions/permissionBuildDefault.spec.js +23 -0
- package/dist/engine/permissions/permissionBuildDefault.spec.js.map +1 -0
- package/dist/engine/permissions/permissionClone.d.ts +7 -0
- package/dist/engine/permissions/permissionClone.d.ts.map +1 -0
- package/dist/engine/permissions/permissionClone.js +12 -0
- package/dist/engine/permissions/permissionClone.js.map +1 -0
- package/dist/engine/permissions/permissionClone.spec.d.ts +2 -0
- package/dist/engine/permissions/permissionClone.spec.d.ts.map +1 -0
- package/dist/engine/permissions/permissionClone.spec.js +17 -0
- package/dist/engine/permissions/permissionClone.spec.js.map +1 -0
- package/dist/engine/permissions/permissionDescribeDecision.d.ts +3 -0
- package/dist/engine/permissions/permissionDescribeDecision.d.ts.map +1 -0
- package/dist/engine/permissions/permissionDescribeDecision.js +10 -0
- package/dist/engine/permissions/permissionDescribeDecision.js.map +1 -0
- package/dist/engine/permissions/permissionDescribeDecision.spec.d.ts +2 -0
- package/dist/engine/permissions/permissionDescribeDecision.spec.d.ts.map +1 -0
- package/dist/engine/permissions/permissionDescribeDecision.spec.js +11 -0
- package/dist/engine/permissions/permissionDescribeDecision.spec.js.map +1 -0
- package/dist/engine/permissions/permissionEnsureDefaultFile.d.ts +3 -0
- package/dist/engine/permissions/permissionEnsureDefaultFile.d.ts.map +1 -0
- package/dist/engine/permissions/permissionEnsureDefaultFile.js +7 -0
- package/dist/engine/permissions/permissionEnsureDefaultFile.js.map +1 -0
- package/dist/engine/permissions/permissionEnsureDefaultFile.spec.d.ts +2 -0
- package/dist/engine/permissions/permissionEnsureDefaultFile.spec.d.ts.map +1 -0
- package/dist/engine/permissions/permissionEnsureDefaultFile.spec.js +19 -0
- package/dist/engine/permissions/permissionEnsureDefaultFile.spec.js.map +1 -0
- package/dist/engine/permissions/permissionFormatTag.d.ts +3 -0
- package/dist/engine/permissions/permissionFormatTag.d.ts.map +1 -0
- package/dist/engine/permissions/permissionFormatTag.js +7 -0
- package/dist/engine/permissions/permissionFormatTag.js.map +1 -0
- package/dist/engine/permissions/permissionFormatTag.spec.d.ts +2 -0
- package/dist/engine/permissions/permissionFormatTag.spec.d.ts.map +1 -0
- package/dist/engine/permissions/permissionFormatTag.spec.js +11 -0
- package/dist/engine/permissions/permissionFormatTag.spec.js.map +1 -0
- package/dist/engine/permissions/permissionMergeDefault.d.ts +3 -0
- package/dist/engine/permissions/permissionMergeDefault.d.ts.map +1 -0
- package/dist/engine/permissions/permissionMergeDefault.js +12 -0
- package/dist/engine/permissions/permissionMergeDefault.js.map +1 -0
- package/dist/engine/permissions/permissionMergeDefault.spec.d.ts +2 -0
- package/dist/engine/permissions/permissionMergeDefault.spec.d.ts.map +1 -0
- package/dist/engine/permissions/permissionMergeDefault.spec.js +56 -0
- package/dist/engine/permissions/permissionMergeDefault.spec.js.map +1 -0
- package/dist/engine/permissions/permissionTagsApply.d.ts +7 -0
- package/dist/engine/permissions/permissionTagsApply.d.ts.map +1 -0
- package/dist/engine/permissions/permissionTagsApply.js +16 -0
- package/dist/engine/permissions/permissionTagsApply.js.map +1 -0
- package/dist/engine/permissions/permissionTagsApply.spec.d.ts +2 -0
- package/dist/engine/permissions/permissionTagsApply.spec.d.ts.map +1 -0
- package/dist/engine/permissions/permissionTagsApply.spec.js +18 -0
- package/dist/engine/permissions/permissionTagsApply.spec.js.map +1 -0
- package/dist/engine/permissions/permissionTagsNormalize.d.ts +6 -0
- package/dist/engine/permissions/permissionTagsNormalize.d.ts.map +1 -0
- package/dist/engine/permissions/permissionTagsNormalize.js +33 -0
- package/dist/engine/permissions/permissionTagsNormalize.js.map +1 -0
- package/dist/engine/permissions/permissionTagsNormalize.spec.d.ts +2 -0
- package/dist/engine/permissions/permissionTagsNormalize.spec.d.ts.map +1 -0
- package/dist/engine/permissions/permissionTagsNormalize.spec.js +17 -0
- package/dist/engine/permissions/permissionTagsNormalize.spec.js.map +1 -0
- package/dist/engine/permissions/permissionTagsValidate.d.ts +9 -0
- package/dist/engine/permissions/permissionTagsValidate.d.ts.map +1 -0
- package/dist/engine/permissions/permissionTagsValidate.js +18 -0
- package/dist/engine/permissions/permissionTagsValidate.js.map +1 -0
- package/dist/engine/permissions/permissionTagsValidate.spec.d.ts +2 -0
- package/dist/engine/permissions/permissionTagsValidate.spec.d.ts.map +1 -0
- package/dist/engine/permissions/permissionTagsValidate.spec.js +66 -0
- package/dist/engine/permissions/permissionTagsValidate.spec.js.map +1 -0
- package/dist/engine/permissions.d.ts +12 -0
- package/dist/engine/permissions.d.ts.map +1 -0
- package/dist/engine/permissions.js +67 -0
- package/dist/engine/permissions.js.map +1 -0
- package/dist/engine/plugins/builtins.spec.d.ts +2 -0
- package/dist/engine/plugins/builtins.spec.d.ts.map +1 -0
- package/dist/engine/plugins/builtins.spec.js +91 -0
- package/dist/engine/plugins/builtins.spec.js.map +1 -0
- package/dist/engine/plugins/catalog.d.ts +9 -0
- package/dist/engine/plugins/catalog.d.ts.map +1 -0
- package/dist/engine/plugins/catalog.js +37 -0
- package/dist/engine/plugins/catalog.js.map +1 -0
- package/dist/engine/plugins/descriptor.d.ts +22 -0
- package/dist/engine/plugins/descriptor.d.ts.map +1 -0
- package/dist/engine/plugins/descriptor.js +9 -0
- package/dist/engine/plugins/descriptor.js.map +1 -0
- package/dist/engine/plugins/events.d.ts +15 -0
- package/dist/engine/plugins/events.d.ts.map +1 -0
- package/dist/engine/plugins/events.js +2 -0
- package/dist/engine/plugins/events.js.map +1 -0
- package/dist/engine/plugins/exclusive.d.ts +9 -0
- package/dist/engine/plugins/exclusive.d.ts.map +1 -0
- package/dist/engine/plugins/exclusive.js +20 -0
- package/dist/engine/plugins/exclusive.js.map +1 -0
- package/dist/engine/plugins/inference.d.ts +31 -0
- package/dist/engine/plugins/inference.d.ts.map +1 -0
- package/dist/engine/plugins/inference.js +82 -0
- package/dist/engine/plugins/inference.js.map +1 -0
- package/dist/engine/plugins/loader.d.ts +12 -0
- package/dist/engine/plugins/loader.d.ts.map +1 -0
- package/dist/engine/plugins/loader.js +93 -0
- package/dist/engine/plugins/loader.js.map +1 -0
- package/dist/engine/plugins/loader.spec.d.ts +2 -0
- package/dist/engine/plugins/loader.spec.d.ts.map +1 -0
- package/dist/engine/plugins/loader.spec.js +66 -0
- package/dist/engine/plugins/loader.spec.js.map +1 -0
- package/dist/engine/plugins/manager.d.ts +57 -0
- package/dist/engine/plugins/manager.d.ts.map +1 -0
- package/dist/engine/plugins/manager.js +287 -0
- package/dist/engine/plugins/manager.js.map +1 -0
- package/dist/engine/plugins/manager.spec.d.ts +2 -0
- package/dist/engine/plugins/manager.spec.d.ts.map +1 -0
- package/dist/engine/plugins/manager.spec.js +341 -0
- package/dist/engine/plugins/manager.spec.js.map +1 -0
- package/dist/engine/plugins/registry.d.ts +36 -0
- package/dist/engine/plugins/registry.d.ts.map +1 -0
- package/dist/engine/plugins/registry.js +101 -0
- package/dist/engine/plugins/registry.js.map +1 -0
- package/dist/engine/plugins/types.d.ts +73 -0
- package/dist/engine/plugins/types.d.ts.map +1 -0
- package/dist/engine/plugins/types.js +4 -0
- package/dist/engine/plugins/types.js.map +1 -0
- package/dist/engine/processes/processBootTimeRead.d.ts +6 -0
- package/dist/engine/processes/processBootTimeRead.d.ts.map +1 -0
- package/dist/engine/processes/processBootTimeRead.js +56 -0
- package/dist/engine/processes/processBootTimeRead.js.map +1 -0
- package/dist/engine/processes/processes.d.ts +70 -0
- package/dist/engine/processes/processes.d.ts.map +1 -0
- package/dist/engine/processes/processes.js +632 -0
- package/dist/engine/processes/processes.js.map +1 -0
- package/dist/engine/processes/processes.spec.d.ts +2 -0
- package/dist/engine/processes/processes.spec.d.ts.map +1 -0
- package/dist/engine/processes/processes.spec.js +176 -0
- package/dist/engine/processes/processes.spec.js.map +1 -0
- package/dist/engine/scheduling/execGateCheck.d.ts +19 -0
- package/dist/engine/scheduling/execGateCheck.d.ts.map +1 -0
- package/dist/engine/scheduling/execGateCheck.js +136 -0
- package/dist/engine/scheduling/execGateCheck.js.map +1 -0
- package/dist/engine/scheduling/execGateNormalize.d.ts +7 -0
- package/dist/engine/scheduling/execGateNormalize.d.ts.map +1 -0
- package/dist/engine/scheduling/execGateNormalize.js +74 -0
- package/dist/engine/scheduling/execGateNormalize.js.map +1 -0
- package/dist/engine/scheduling/execGateNormalize.spec.d.ts +2 -0
- package/dist/engine/scheduling/execGateNormalize.spec.d.ts.map +1 -0
- package/dist/engine/scheduling/execGateNormalize.spec.js +41 -0
- package/dist/engine/scheduling/execGateNormalize.spec.js.map +1 -0
- package/dist/engine/scheduling/execGateOutputAppend.d.ts +7 -0
- package/dist/engine/scheduling/execGateOutputAppend.d.ts.map +1 -0
- package/dist/engine/scheduling/execGateOutputAppend.js +23 -0
- package/dist/engine/scheduling/execGateOutputAppend.js.map +1 -0
- package/dist/engine/scheduling/execGateOutputAppend.spec.d.ts +2 -0
- package/dist/engine/scheduling/execGateOutputAppend.spec.d.ts.map +1 -0
- package/dist/engine/scheduling/execGateOutputAppend.spec.js +24 -0
- package/dist/engine/scheduling/execGateOutputAppend.spec.js.map +1 -0
- package/dist/engine/scheduling/execGateTypes.d.ts +15 -0
- package/dist/engine/scheduling/execGateTypes.d.ts.map +1 -0
- package/dist/engine/scheduling/execGateTypes.js +2 -0
- package/dist/engine/scheduling/execGateTypes.js.map +1 -0
- package/dist/engine/scheduling/gatePermissionsCheck.d.ts +11 -0
- package/dist/engine/scheduling/gatePermissionsCheck.d.ts.map +1 -0
- package/dist/engine/scheduling/gatePermissionsCheck.js +52 -0
- package/dist/engine/scheduling/gatePermissionsCheck.js.map +1 -0
- package/dist/engine/scheduling/gatePermissionsCheck.spec.d.ts +2 -0
- package/dist/engine/scheduling/gatePermissionsCheck.spec.d.ts.map +1 -0
- package/dist/engine/scheduling/gatePermissionsCheck.spec.js +37 -0
- package/dist/engine/scheduling/gatePermissionsCheck.spec.js.map +1 -0
- package/dist/engine/signals/delayedSignals.d.ts +54 -0
- package/dist/engine/signals/delayedSignals.d.ts.map +1 -0
- package/dist/engine/signals/delayedSignals.js +368 -0
- package/dist/engine/signals/delayedSignals.js.map +1 -0
- package/dist/engine/signals/delayedSignals.spec.d.ts +2 -0
- package/dist/engine/signals/delayedSignals.spec.d.ts.map +1 -0
- package/dist/engine/signals/delayedSignals.spec.js +133 -0
- package/dist/engine/signals/delayedSignals.spec.js.map +1 -0
- package/dist/engine/signals/signalMessageBuild.d.ts +7 -0
- package/dist/engine/signals/signalMessageBuild.d.ts.map +1 -0
- package/dist/engine/signals/signalMessageBuild.js +20 -0
- package/dist/engine/signals/signalMessageBuild.js.map +1 -0
- package/dist/engine/signals/signalTypeMatchesPattern.d.ts +6 -0
- package/dist/engine/signals/signalTypeMatchesPattern.d.ts.map +1 -0
- package/dist/engine/signals/signalTypeMatchesPattern.js +28 -0
- package/dist/engine/signals/signalTypeMatchesPattern.js.map +1 -0
- package/dist/engine/signals/signalTypeMatchesPattern.spec.d.ts +2 -0
- package/dist/engine/signals/signalTypeMatchesPattern.spec.d.ts.map +1 -0
- package/dist/engine/signals/signalTypeMatchesPattern.spec.js +15 -0
- package/dist/engine/signals/signalTypeMatchesPattern.spec.js.map +1 -0
- package/dist/engine/signals/signalTypes.d.ts +62 -0
- package/dist/engine/signals/signalTypes.d.ts.map +1 -0
- package/dist/engine/signals/signalTypes.js +2 -0
- package/dist/engine/signals/signalTypes.js.map +1 -0
- package/dist/engine/signals/signals.d.ts +42 -0
- package/dist/engine/signals/signals.d.ts.map +1 -0
- package/dist/engine/signals/signals.js +215 -0
- package/dist/engine/signals/signals.js.map +1 -0
- package/dist/engine/signals/signals.spec.d.ts +2 -0
- package/dist/engine/signals/signals.spec.d.ts.map +1 -0
- package/dist/engine/signals/signals.spec.js +107 -0
- package/dist/engine/signals/signals.spec.js.map +1 -0
- package/dist/engine/skills/skillConstants.d.ts +5 -0
- package/dist/engine/skills/skillConstants.d.ts.map +1 -0
- package/dist/engine/skills/skillConstants.js +5 -0
- package/dist/engine/skills/skillConstants.js.map +1 -0
- package/dist/engine/skills/skillListConfig.d.ts +8 -0
- package/dist/engine/skills/skillListConfig.d.ts.map +1 -0
- package/dist/engine/skills/skillListConfig.js +10 -0
- package/dist/engine/skills/skillListConfig.js.map +1 -0
- package/dist/engine/skills/skillListCore.d.ts +8 -0
- package/dist/engine/skills/skillListCore.d.ts.map +1 -0
- package/dist/engine/skills/skillListCore.js +12 -0
- package/dist/engine/skills/skillListCore.js.map +1 -0
- package/dist/engine/skills/skillListFromRoot.d.ts +8 -0
- package/dist/engine/skills/skillListFromRoot.d.ts.map +1 -0
- package/dist/engine/skills/skillListFromRoot.js +57 -0
- package/dist/engine/skills/skillListFromRoot.js.map +1 -0
- package/dist/engine/skills/skillListFromRoot.spec.d.ts +2 -0
- package/dist/engine/skills/skillListFromRoot.spec.d.ts.map +1 -0
- package/dist/engine/skills/skillListFromRoot.spec.js +31 -0
- package/dist/engine/skills/skillListFromRoot.spec.js.map +1 -0
- package/dist/engine/skills/skillListRegistered.d.ts +8 -0
- package/dist/engine/skills/skillListRegistered.d.ts.map +1 -0
- package/dist/engine/skills/skillListRegistered.js +29 -0
- package/dist/engine/skills/skillListRegistered.js.map +1 -0
- package/dist/engine/skills/skillListRegistered.spec.d.ts +2 -0
- package/dist/engine/skills/skillListRegistered.spec.d.ts.map +1 -0
- package/dist/engine/skills/skillListRegistered.spec.js +30 -0
- package/dist/engine/skills/skillListRegistered.spec.js.map +1 -0
- package/dist/engine/skills/skillPromptFormat.d.ts +8 -0
- package/dist/engine/skills/skillPromptFormat.d.ts.map +1 -0
- package/dist/engine/skills/skillPromptFormat.js +49 -0
- package/dist/engine/skills/skillPromptFormat.js.map +1 -0
- package/dist/engine/skills/skillPromptFormat.spec.d.ts +2 -0
- package/dist/engine/skills/skillPromptFormat.spec.d.ts.map +1 -0
- package/dist/engine/skills/skillPromptFormat.spec.js +40 -0
- package/dist/engine/skills/skillPromptFormat.spec.js.map +1 -0
- package/dist/engine/skills/skillResolve.d.ts +8 -0
- package/dist/engine/skills/skillResolve.d.ts.map +1 -0
- package/dist/engine/skills/skillResolve.js +194 -0
- package/dist/engine/skills/skillResolve.js.map +1 -0
- package/dist/engine/skills/skillSort.d.ts +8 -0
- package/dist/engine/skills/skillSort.d.ts.map +1 -0
- package/dist/engine/skills/skillSort.js +15 -0
- package/dist/engine/skills/skillSort.js.map +1 -0
- package/dist/engine/skills/skillTypes.d.ts +32 -0
- package/dist/engine/skills/skillTypes.d.ts.map +1 -0
- package/dist/engine/skills/skillTypes.js +2 -0
- package/dist/engine/skills/skillTypes.js.map +1 -0
- package/dist/files/store.d.ts +24 -0
- package/dist/files/store.d.ts.map +1 -0
- package/dist/files/store.js +74 -0
- package/dist/files/store.js.map +1 -0
- package/dist/files/types.d.ts +17 -0
- package/dist/files/types.d.ts.map +1 -0
- package/dist/files/types.js +2 -0
- package/dist/files/types.js.map +1 -0
- package/dist/log.d.ts +15 -0
- package/dist/log.d.ts.map +1 -0
- package/dist/log.js +253 -0
- package/dist/log.js.map +1 -0
- package/dist/main.d.ts +2 -0
- package/dist/main.d.ts.map +1 -0
- package/dist/main.js +83 -0
- package/dist/main.js.map +1 -0
- package/dist/paths.d.ts +8 -0
- package/dist/paths.d.ts.map +1 -0
- package/dist/paths.js +19 -0
- package/dist/paths.js.map +1 -0
- package/dist/plugins/anthropic-fetch/plugin.d.ts +6 -0
- package/dist/plugins/anthropic-fetch/plugin.d.ts.map +1 -0
- package/dist/plugins/anthropic-fetch/plugin.js +209 -0
- package/dist/plugins/anthropic-fetch/plugin.js.map +1 -0
- package/dist/plugins/anthropic-search/plugin.d.ts +6 -0
- package/dist/plugins/anthropic-search/plugin.d.ts.map +1 -0
- package/dist/plugins/anthropic-search/plugin.js +204 -0
- package/dist/plugins/anthropic-search/plugin.js.map +1 -0
- package/dist/plugins/brave-search/plugin.d.ts +5 -0
- package/dist/plugins/brave-search/plugin.d.ts.map +1 -0
- package/dist/plugins/brave-search/plugin.js +130 -0
- package/dist/plugins/brave-search/plugin.js.map +1 -0
- package/dist/plugins/database/__tests__/plugin.spec.d.ts +2 -0
- package/dist/plugins/database/__tests__/plugin.spec.d.ts.map +1 -0
- package/dist/plugins/database/__tests__/plugin.spec.js +110 -0
- package/dist/plugins/database/__tests__/plugin.spec.js.map +1 -0
- package/dist/plugins/database/plugin.d.ts +3 -0
- package/dist/plugins/database/plugin.d.ts.map +1 -0
- package/dist/plugins/database/plugin.js +275 -0
- package/dist/plugins/database/plugin.js.map +1 -0
- package/dist/plugins/exa-ai/plugin.d.ts +5 -0
- package/dist/plugins/exa-ai/plugin.d.ts.map +1 -0
- package/dist/plugins/exa-ai/plugin.js +142 -0
- package/dist/plugins/exa-ai/plugin.js.map +1 -0
- package/dist/plugins/firecrawl/plugin.d.ts +5 -0
- package/dist/plugins/firecrawl/plugin.d.ts.map +1 -0
- package/dist/plugins/firecrawl/plugin.js +140 -0
- package/dist/plugins/firecrawl/plugin.js.map +1 -0
- package/dist/plugins/gemini-search/plugin.d.ts +6 -0
- package/dist/plugins/gemini-search/plugin.d.ts.map +1 -0
- package/dist/plugins/gemini-search/plugin.js +155 -0
- package/dist/plugins/gemini-search/plugin.js.map +1 -0
- package/dist/plugins/memory/plugin.d.ts +3 -0
- package/dist/plugins/memory/plugin.d.ts.map +1 -0
- package/dist/plugins/memory/plugin.js +30 -0
- package/dist/plugins/memory/plugin.js.map +1 -0
- package/dist/plugins/memory/store.d.ts +30 -0
- package/dist/plugins/memory/store.d.ts.map +1 -0
- package/dist/plugins/memory/store.js +266 -0
- package/dist/plugins/memory/store.js.map +1 -0
- package/dist/plugins/memory/tool.d.ts +6 -0
- package/dist/plugins/memory/tool.d.ts.map +1 -0
- package/dist/plugins/memory/tool.js +115 -0
- package/dist/plugins/memory/tool.js.map +1 -0
- package/dist/plugins/monty-python/plugin.d.ts +5 -0
- package/dist/plugins/monty-python/plugin.d.ts.map +1 -0
- package/dist/plugins/monty-python/plugin.js +23 -0
- package/dist/plugins/monty-python/plugin.js.map +1 -0
- package/dist/plugins/monty-python/tool.d.ts +3 -0
- package/dist/plugins/monty-python/tool.d.ts.map +1 -0
- package/dist/plugins/monty-python/tool.js +211 -0
- package/dist/plugins/monty-python/tool.js.map +1 -0
- package/dist/plugins/monty-python/tool.spec.d.ts +2 -0
- package/dist/plugins/monty-python/tool.spec.d.ts.map +1 -0
- package/dist/plugins/monty-python/tool.spec.js +89 -0
- package/dist/plugins/monty-python/tool.spec.js.map +1 -0
- package/dist/plugins/nano-banana-pro/__tests__/plugin.integration.spec.d.ts +2 -0
- package/dist/plugins/nano-banana-pro/__tests__/plugin.integration.spec.d.ts.map +1 -0
- package/dist/plugins/nano-banana-pro/__tests__/plugin.integration.spec.js +98 -0
- package/dist/plugins/nano-banana-pro/__tests__/plugin.integration.spec.js.map +1 -0
- package/dist/plugins/nano-banana-pro/plugin.d.ts +14 -0
- package/dist/plugins/nano-banana-pro/plugin.d.ts.map +1 -0
- package/dist/plugins/nano-banana-pro/plugin.js +240 -0
- package/dist/plugins/nano-banana-pro/plugin.js.map +1 -0
- package/dist/plugins/openai-search/plugin.d.ts +6 -0
- package/dist/plugins/openai-search/plugin.d.ts.map +1 -0
- package/dist/plugins/openai-search/plugin.js +194 -0
- package/dist/plugins/openai-search/plugin.js.map +1 -0
- package/dist/plugins/perplexity-search/plugin.d.ts +6 -0
- package/dist/plugins/perplexity-search/plugin.d.ts.map +1 -0
- package/dist/plugins/perplexity-search/plugin.js +126 -0
- package/dist/plugins/perplexity-search/plugin.js.map +1 -0
- package/dist/plugins/shell/plugin.d.ts +3 -0
- package/dist/plugins/shell/plugin.d.ts.map +1 -0
- package/dist/plugins/shell/plugin.js +36 -0
- package/dist/plugins/shell/plugin.js.map +1 -0
- package/dist/plugins/shell/processTools.d.ts +8 -0
- package/dist/plugins/shell/processTools.d.ts.map +1 -0
- package/dist/plugins/shell/processTools.js +213 -0
- package/dist/plugins/shell/processTools.js.map +1 -0
- package/dist/plugins/shell/processTools.spec.d.ts +2 -0
- package/dist/plugins/shell/processTools.spec.d.ts.map +1 -0
- package/dist/plugins/shell/processTools.spec.js +144 -0
- package/dist/plugins/shell/processTools.spec.js.map +1 -0
- package/dist/plugins/shell/tool.d.ts +6 -0
- package/dist/plugins/shell/tool.d.ts.map +1 -0
- package/dist/plugins/shell/tool.js +398 -0
- package/dist/plugins/shell/tool.js.map +1 -0
- package/dist/plugins/shell/tool.spec.d.ts +2 -0
- package/dist/plugins/shell/tool.spec.d.ts.map +1 -0
- package/dist/plugins/shell/tool.spec.js +234 -0
- package/dist/plugins/shell/tool.spec.js.map +1 -0
- package/dist/plugins/telegram/connector.d.ts +65 -0
- package/dist/plugins/telegram/connector.d.ts.map +1 -0
- package/dist/plugins/telegram/connector.js +760 -0
- package/dist/plugins/telegram/connector.js.map +1 -0
- package/dist/plugins/telegram/connector.spec.d.ts +2 -0
- package/dist/plugins/telegram/connector.spec.d.ts.map +1 -0
- package/dist/plugins/telegram/connector.spec.js +247 -0
- package/dist/plugins/telegram/connector.spec.js.map +1 -0
- package/dist/plugins/telegram/markdownToTelegramHtml.d.ts +11 -0
- package/dist/plugins/telegram/markdownToTelegramHtml.d.ts.map +1 -0
- package/dist/plugins/telegram/markdownToTelegramHtml.js +172 -0
- package/dist/plugins/telegram/markdownToTelegramHtml.js.map +1 -0
- package/dist/plugins/telegram/markdownToTelegramHtml.spec.d.ts +2 -0
- package/dist/plugins/telegram/markdownToTelegramHtml.spec.d.ts.map +1 -0
- package/dist/plugins/telegram/markdownToTelegramHtml.spec.js +97 -0
- package/dist/plugins/telegram/markdownToTelegramHtml.spec.js.map +1 -0
- package/dist/plugins/telegram/plugin.d.ts +8 -0
- package/dist/plugins/telegram/plugin.d.ts.map +1 -0
- package/dist/plugins/telegram/plugin.js +94 -0
- package/dist/plugins/telegram/plugin.js.map +1 -0
- package/dist/plugins/telegram/telegramMessageSplit.d.ts +6 -0
- package/dist/plugins/telegram/telegramMessageSplit.d.ts.map +1 -0
- package/dist/plugins/telegram/telegramMessageSplit.js +33 -0
- package/dist/plugins/telegram/telegramMessageSplit.js.map +1 -0
- package/dist/plugins/telegram/telegramMessageSplit.spec.d.ts +2 -0
- package/dist/plugins/telegram/telegramMessageSplit.spec.d.ts.map +1 -0
- package/dist/plugins/telegram/telegramMessageSplit.spec.js +16 -0
- package/dist/plugins/telegram/telegramMessageSplit.spec.js.map +1 -0
- package/dist/plugins/web-fetch/plugin.d.ts +5 -0
- package/dist/plugins/web-fetch/plugin.d.ts.map +1 -0
- package/dist/plugins/web-fetch/plugin.js +99 -0
- package/dist/plugins/web-fetch/plugin.js.map +1 -0
- package/dist/plugins/whatsapp/authState.d.ts +21 -0
- package/dist/plugins/whatsapp/authState.d.ts.map +1 -0
- package/dist/plugins/whatsapp/authState.js +92 -0
- package/dist/plugins/whatsapp/authState.js.map +1 -0
- package/dist/plugins/whatsapp/authenticate.d.ts +22 -0
- package/dist/plugins/whatsapp/authenticate.d.ts.map +1 -0
- package/dist/plugins/whatsapp/authenticate.js +82 -0
- package/dist/plugins/whatsapp/authenticate.js.map +1 -0
- package/dist/plugins/whatsapp/connector.d.ts +51 -0
- package/dist/plugins/whatsapp/connector.d.ts.map +1 -0
- package/dist/plugins/whatsapp/connector.js +481 -0
- package/dist/plugins/whatsapp/connector.js.map +1 -0
- package/dist/plugins/whatsapp/markdownToWhatsAppText.d.ts +11 -0
- package/dist/plugins/whatsapp/markdownToWhatsAppText.d.ts.map +1 -0
- package/dist/plugins/whatsapp/markdownToWhatsAppText.js +161 -0
- package/dist/plugins/whatsapp/markdownToWhatsAppText.js.map +1 -0
- package/dist/plugins/whatsapp/markdownToWhatsAppText.spec.d.ts +2 -0
- package/dist/plugins/whatsapp/markdownToWhatsAppText.spec.d.ts.map +1 -0
- package/dist/plugins/whatsapp/markdownToWhatsAppText.spec.js +80 -0
- package/dist/plugins/whatsapp/markdownToWhatsAppText.spec.js.map +1 -0
- package/dist/plugins/whatsapp/plugin.d.ts +6 -0
- package/dist/plugins/whatsapp/plugin.d.ts.map +1 -0
- package/dist/plugins/whatsapp/plugin.js +90 -0
- package/dist/plugins/whatsapp/plugin.js.map +1 -0
- package/dist/prompts/ACTORS.md +25 -0
- package/dist/prompts/AGENTIC.md +46 -0
- package/dist/prompts/ARCHITECT.md +36 -0
- package/dist/prompts/COMPACTION.md +20 -0
- package/dist/prompts/HEARTBEAT.md +12 -0
- package/dist/prompts/MEMORY.md +23 -0
- package/dist/prompts/PERMISSIONS.md +56 -0
- package/dist/prompts/SOUL.md +40 -0
- package/dist/prompts/SYSTEM.md +246 -0
- package/dist/prompts/TOOLS.md +13 -0
- package/dist/prompts/USER.md +12 -0
- package/dist/providers/__tests__/inference.integration.spec.d.ts +2 -0
- package/dist/providers/__tests__/inference.integration.spec.d.ts.map +1 -0
- package/dist/providers/__tests__/inference.integration.spec.js +203 -0
- package/dist/providers/__tests__/inference.integration.spec.js.map +1 -0
- package/dist/providers/__tests__/models.spec.d.ts +2 -0
- package/dist/providers/__tests__/models.spec.d.ts.map +1 -0
- package/dist/providers/__tests__/models.spec.js +19 -0
- package/dist/providers/__tests__/models.spec.js.map +1 -0
- package/dist/providers/catalog.d.ts +6 -0
- package/dist/providers/catalog.d.ts.map +1 -0
- package/dist/providers/catalog.js +128 -0
- package/dist/providers/catalog.js.map +1 -0
- package/dist/providers/manager.d.ts +33 -0
- package/dist/providers/manager.d.ts.map +1 -0
- package/dist/providers/manager.js +104 -0
- package/dist/providers/manager.js.map +1 -0
- package/dist/providers/manager.spec.d.ts +2 -0
- package/dist/providers/manager.spec.d.ts.map +1 -0
- package/dist/providers/manager.spec.js +149 -0
- package/dist/providers/manager.spec.js.map +1 -0
- package/dist/providers/models.d.ts +2926 -0
- package/dist/providers/models.d.ts.map +1 -0
- package/dist/providers/models.js +742 -0
- package/dist/providers/models.js.map +1 -0
- package/dist/providers/openai-compatible.d.ts +3 -0
- package/dist/providers/openai-compatible.d.ts.map +1 -0
- package/dist/providers/openai-compatible.js +111 -0
- package/dist/providers/openai-compatible.js.map +1 -0
- package/dist/providers/openai-image.d.ts +4 -0
- package/dist/providers/openai-image.d.ts.map +1 -0
- package/dist/providers/openai-image.js +64 -0
- package/dist/providers/openai-image.js.map +1 -0
- package/dist/providers/pi-ai.d.ts +13 -0
- package/dist/providers/pi-ai.d.ts.map +1 -0
- package/dist/providers/pi-ai.js +219 -0
- package/dist/providers/pi-ai.js.map +1 -0
- package/dist/providers/providerModelSelectBySize.d.ts +7 -0
- package/dist/providers/providerModelSelectBySize.d.ts.map +1 -0
- package/dist/providers/providerModelSelectBySize.js +27 -0
- package/dist/providers/providerModelSelectBySize.js.map +1 -0
- package/dist/providers/types.d.ts +72 -0
- package/dist/providers/types.d.ts.map +1 -0
- package/dist/providers/types.js +2 -0
- package/dist/providers/types.js.map +1 -0
- package/dist/recipe/_recipes.d.ts +13 -0
- package/dist/recipe/_recipes.d.ts.map +1 -0
- package/dist/recipe/_recipes.js +21 -0
- package/dist/recipe/_recipes.js.map +1 -0
- package/dist/recipe/recipePyrepl.d.ts +6 -0
- package/dist/recipe/recipePyrepl.d.ts.map +1 -0
- package/dist/recipe/recipePyrepl.js +208 -0
- package/dist/recipe/recipePyrepl.js.map +1 -0
- package/dist/recipe/recipeRlm.d.ts +6 -0
- package/dist/recipe/recipeRlm.d.ts.map +1 -0
- package/dist/recipe/recipeRlm.js +51 -0
- package/dist/recipe/recipeRlm.js.map +1 -0
- package/dist/recipe/recipeRun.d.ts +6 -0
- package/dist/recipe/recipeRun.d.ts.map +1 -0
- package/dist/recipe/recipeRun.js +31 -0
- package/dist/recipe/recipeRun.js.map +1 -0
- package/dist/recipe/utils/recipeAnthropicApiKeyResolve.d.ts +6 -0
- package/dist/recipe/utils/recipeAnthropicApiKeyResolve.d.ts.map +1 -0
- package/dist/recipe/utils/recipeAnthropicApiKeyResolve.js +25 -0
- package/dist/recipe/utils/recipeAnthropicApiKeyResolve.js.map +1 -0
- package/dist/recipe/utils/recipeAnthropicModelResolve.d.ts +7 -0
- package/dist/recipe/utils/recipeAnthropicModelResolve.d.ts.map +1 -0
- package/dist/recipe/utils/recipeAnthropicModelResolve.js +13 -0
- package/dist/recipe/utils/recipeAnthropicModelResolve.js.map +1 -0
- package/dist/recipe/utils/recipeAnthropicReplyGet.d.ts +17 -0
- package/dist/recipe/utils/recipeAnthropicReplyGet.d.ts.map +1 -0
- package/dist/recipe/utils/recipeAnthropicReplyGet.js +25 -0
- package/dist/recipe/utils/recipeAnthropicReplyGet.js.map +1 -0
- package/dist/recipe/utils/recipeAssistantTextExtract.d.ts +7 -0
- package/dist/recipe/utils/recipeAssistantTextExtract.d.ts.map +1 -0
- package/dist/recipe/utils/recipeAssistantTextExtract.js +14 -0
- package/dist/recipe/utils/recipeAssistantTextExtract.js.map +1 -0
- package/dist/recipe/utils/recipeAuthAnthropicEntryParse.d.ts +7 -0
- package/dist/recipe/utils/recipeAuthAnthropicEntryParse.d.ts.map +1 -0
- package/dist/recipe/utils/recipeAuthAnthropicEntryParse.js +16 -0
- package/dist/recipe/utils/recipeAuthAnthropicEntryParse.js.map +1 -0
- package/dist/recipe/utils/recipeAuthAnthropicEntryParse.spec.d.ts +2 -0
- package/dist/recipe/utils/recipeAuthAnthropicEntryParse.spec.d.ts.map +1 -0
- package/dist/recipe/utils/recipeAuthAnthropicEntryParse.spec.js +19 -0
- package/dist/recipe/utils/recipeAuthAnthropicEntryParse.spec.js.map +1 -0
- package/dist/recipe/utils/recipeAuthConfigRead.d.ts +6 -0
- package/dist/recipe/utils/recipeAuthConfigRead.d.ts.map +1 -0
- package/dist/recipe/utils/recipeAuthConfigRead.js +22 -0
- package/dist/recipe/utils/recipeAuthConfigRead.js.map +1 -0
- package/dist/recipe/utils/recipeAuthPathResolve.d.ts +6 -0
- package/dist/recipe/utils/recipeAuthPathResolve.d.ts.map +1 -0
- package/dist/recipe/utils/recipeAuthPathResolve.js +10 -0
- package/dist/recipe/utils/recipeAuthPathResolve.js.map +1 -0
- package/dist/recipe/utils/recipePythonReplCreate.d.ts +18 -0
- package/dist/recipe/utils/recipePythonReplCreate.d.ts.map +1 -0
- package/dist/recipe/utils/recipePythonReplCreate.js +265 -0
- package/dist/recipe/utils/recipePythonReplCreate.js.map +1 -0
- package/dist/recipe/utils/recipePythonSandboxPathResolve.d.ts +6 -0
- package/dist/recipe/utils/recipePythonSandboxPathResolve.d.ts.map +1 -0
- package/dist/recipe/utils/recipePythonSandboxPathResolve.js +9 -0
- package/dist/recipe/utils/recipePythonSandboxPathResolve.js.map +1 -0
- package/dist/recipe/utils/recipePythonSystemPromptBuild.d.ts +6 -0
- package/dist/recipe/utils/recipePythonSystemPromptBuild.d.ts.map +1 -0
- package/dist/recipe/utils/recipePythonSystemPromptBuild.js +23 -0
- package/dist/recipe/utils/recipePythonSystemPromptBuild.js.map +1 -0
- package/dist/sandbox/runtime.d.ts +16 -0
- package/dist/sandbox/runtime.d.ts.map +1 -0
- package/dist/sandbox/runtime.js +51 -0
- package/dist/sandbox/runtime.js.map +1 -0
- package/dist/sandbox/runtime.spec.d.ts +2 -0
- package/dist/sandbox/runtime.spec.d.ts.map +1 -0
- package/dist/sandbox/runtime.spec.js +84 -0
- package/dist/sandbox/runtime.spec.js.map +1 -0
- package/dist/sandbox/sandboxAllowedDomainsResolve.d.ts +7 -0
- package/dist/sandbox/sandboxAllowedDomainsResolve.d.ts.map +1 -0
- package/dist/sandbox/sandboxAllowedDomainsResolve.js +31 -0
- package/dist/sandbox/sandboxAllowedDomainsResolve.js.map +1 -0
- package/dist/sandbox/sandboxAllowedDomainsResolve.spec.d.ts +2 -0
- package/dist/sandbox/sandboxAllowedDomainsResolve.spec.d.ts.map +1 -0
- package/dist/sandbox/sandboxAllowedDomainsResolve.spec.js +42 -0
- package/dist/sandbox/sandboxAllowedDomainsResolve.spec.js.map +1 -0
- package/dist/sandbox/sandboxAllowedDomainsValidate.d.ts +6 -0
- package/dist/sandbox/sandboxAllowedDomainsValidate.d.ts.map +1 -0
- package/dist/sandbox/sandboxAllowedDomainsValidate.js +15 -0
- package/dist/sandbox/sandboxAllowedDomainsValidate.js.map +1 -0
- package/dist/sandbox/sandboxAllowedDomainsValidate.spec.d.ts +2 -0
- package/dist/sandbox/sandboxAllowedDomainsValidate.spec.d.ts.map +1 -0
- package/dist/sandbox/sandboxAllowedDomainsValidate.spec.js +16 -0
- package/dist/sandbox/sandboxAllowedDomainsValidate.spec.js.map +1 -0
- package/dist/sandbox/sandboxCanRead.d.ts +7 -0
- package/dist/sandbox/sandboxCanRead.d.ts.map +1 -0
- package/dist/sandbox/sandboxCanRead.js +13 -0
- package/dist/sandbox/sandboxCanRead.js.map +1 -0
- package/dist/sandbox/sandboxCanRead.spec.d.ts +2 -0
- package/dist/sandbox/sandboxCanRead.spec.d.ts.map +1 -0
- package/dist/sandbox/sandboxCanRead.spec.js +44 -0
- package/dist/sandbox/sandboxCanRead.spec.js.map +1 -0
- package/dist/sandbox/sandboxCanWrite.d.ts +7 -0
- package/dist/sandbox/sandboxCanWrite.d.ts.map +1 -0
- package/dist/sandbox/sandboxCanWrite.js +11 -0
- package/dist/sandbox/sandboxCanWrite.js.map +1 -0
- package/dist/sandbox/sandboxCanWrite.spec.d.ts +2 -0
- package/dist/sandbox/sandboxCanWrite.spec.d.ts.map +1 -0
- package/dist/sandbox/sandboxCanWrite.spec.js +52 -0
- package/dist/sandbox/sandboxCanWrite.spec.js.map +1 -0
- package/dist/sandbox/sandboxFilesystemPolicyBuild.d.ts +18 -0
- package/dist/sandbox/sandboxFilesystemPolicyBuild.d.ts.map +1 -0
- package/dist/sandbox/sandboxFilesystemPolicyBuild.js +79 -0
- package/dist/sandbox/sandboxFilesystemPolicyBuild.js.map +1 -0
- package/dist/sandbox/sandboxFilesystemPolicyBuild.spec.d.ts +2 -0
- package/dist/sandbox/sandboxFilesystemPolicyBuild.spec.d.ts.map +1 -0
- package/dist/sandbox/sandboxFilesystemPolicyBuild.spec.js +52 -0
- package/dist/sandbox/sandboxFilesystemPolicyBuild.spec.js.map +1 -0
- package/dist/sandbox/sandboxHomeRedefine.d.ts +15 -0
- package/dist/sandbox/sandboxHomeRedefine.d.ts.map +1 -0
- package/dist/sandbox/sandboxHomeRedefine.js +61 -0
- package/dist/sandbox/sandboxHomeRedefine.js.map +1 -0
- package/dist/sandbox/sandboxHomeRedefine.spec.d.ts +2 -0
- package/dist/sandbox/sandboxHomeRedefine.spec.d.ts.map +1 -0
- package/dist/sandbox/sandboxHomeRedefine.spec.js +41 -0
- package/dist/sandbox/sandboxHomeRedefine.spec.js.map +1 -0
- package/dist/sandbox/sandboxPackageManagers.d.ts +4 -0
- package/dist/sandbox/sandboxPackageManagers.d.ts.map +1 -0
- package/dist/sandbox/sandboxPackageManagers.js +39 -0
- package/dist/sandbox/sandboxPackageManagers.js.map +1 -0
- package/dist/settings.d.ts +75 -0
- package/dist/settings.d.ts.map +1 -0
- package/dist/settings.js +91 -0
- package/dist/settings.js.map +1 -0
- package/dist/skills/permanent-agent-creator/SKILL.md +73 -0
- package/dist/skills/scheduling/SKILL.md +131 -0
- package/dist/skills/skill-creator/SKILL.md +372 -0
- package/dist/skills/skill-creator/references/output-patterns.md +82 -0
- package/dist/skills/skill-creator/references/workflows.md +28 -0
- package/dist/skills/skill-creator/scripts/init_skill.py +303 -0
- package/dist/skills/skill-creator/scripts/package_skill.py +110 -0
- package/dist/skills/skill-creator/scripts/quick_validate.py +95 -0
- package/dist/skills/skills/permanent-agent-creator/SKILL.md +73 -0
- package/dist/skills/skills/scheduling/SKILL.md +131 -0
- package/dist/skills/skills/skill-creator/SKILL.md +372 -0
- package/dist/skills/skills/skill-creator/references/output-patterns.md +82 -0
- package/dist/skills/skills/skill-creator/references/workflows.md +28 -0
- package/dist/skills/skills/skill-creator/scripts/init_skill.py +303 -0
- package/dist/skills/skills/skill-creator/scripts/package_skill.py +110 -0
- package/dist/skills/skills/skill-creator/scripts/quick_validate.py +95 -0
- package/dist/types.d.ts +14 -0
- package/dist/types.d.ts.map +1 -0
- package/dist/types.js +4 -0
- package/dist/types.js.map +1 -0
- package/dist/util/atomicWrite.d.ts +6 -0
- package/dist/util/atomicWrite.d.ts.map +1 -0
- package/dist/util/atomicWrite.js +11 -0
- package/dist/util/atomicWrite.js.map +1 -0
- package/dist/util/debounce.d.ts +13 -0
- package/dist/util/debounce.d.ts.map +1 -0
- package/dist/util/debounce.js +81 -0
- package/dist/util/debounce.js.map +1 -0
- package/dist/util/envNormalize.d.ts +7 -0
- package/dist/util/envNormalize.d.ts.map +1 -0
- package/dist/util/envNormalize.js +29 -0
- package/dist/util/envNormalize.js.map +1 -0
- package/dist/util/envNormalize.spec.d.ts +2 -0
- package/dist/util/envNormalize.spec.d.ts.map +1 -0
- package/dist/util/envNormalize.spec.js +26 -0
- package/dist/util/envNormalize.spec.js.map +1 -0
- package/dist/util/filename.d.ts +2 -0
- package/dist/util/filename.d.ts.map +1 -0
- package/dist/util/filename.js +7 -0
- package/dist/util/filename.js.map +1 -0
- package/dist/util/freezeDeep.d.ts +6 -0
- package/dist/util/freezeDeep.d.ts.map +1 -0
- package/dist/util/freezeDeep.js +18 -0
- package/dist/util/freezeDeep.js.map +1 -0
- package/dist/util/isoDate.d.ts +39 -0
- package/dist/util/isoDate.d.ts.map +1 -0
- package/dist/util/isoDate.js +124 -0
- package/dist/util/isoDate.js.map +1 -0
- package/dist/util/isoDate.spec.d.ts +2 -0
- package/dist/util/isoDate.spec.d.ts.map +1 -0
- package/dist/util/isoDate.spec.js +125 -0
- package/dist/util/isoDate.spec.js.map +1 -0
- package/dist/util/lock.d.ts +8 -0
- package/dist/util/lock.d.ts.map +1 -0
- package/dist/util/lock.js +36 -0
- package/dist/util/lock.js.map +1 -0
- package/dist/util/markdownParse.d.ts +34 -0
- package/dist/util/markdownParse.d.ts.map +1 -0
- package/dist/util/markdownParse.js +85 -0
- package/dist/util/markdownParse.js.map +1 -0
- package/dist/util/markdownParse.spec.d.ts +2 -0
- package/dist/util/markdownParse.spec.d.ts.map +1 -0
- package/dist/util/markdownParse.spec.js +76 -0
- package/dist/util/markdownParse.spec.js.map +1 -0
- package/dist/util/readWriteLock.d.ts +17 -0
- package/dist/util/readWriteLock.d.ts.map +1 -0
- package/dist/util/readWriteLock.js +82 -0
- package/dist/util/readWriteLock.js.map +1 -0
- package/dist/util/readWriteLock.spec.d.ts +2 -0
- package/dist/util/readWriteLock.spec.d.ts.map +1 -0
- package/dist/util/readWriteLock.spec.js +99 -0
- package/dist/util/readWriteLock.spec.js.map +1 -0
- package/dist/util/renderToPng.d.ts +10 -0
- package/dist/util/renderToPng.d.ts.map +1 -0
- package/dist/util/renderToPng.js +50 -0
- package/dist/util/renderToPng.js.map +1 -0
- package/dist/util/renderToPng.spec.d.ts +2 -0
- package/dist/util/renderToPng.spec.d.ts.map +1 -0
- package/dist/util/renderToPng.spec.js +61 -0
- package/dist/util/renderToPng.spec.js.map +1 -0
- package/dist/util/shutdown.d.ts +13 -0
- package/dist/util/shutdown.d.ts.map +1 -0
- package/dist/util/shutdown.js +116 -0
- package/dist/util/shutdown.js.map +1 -0
- package/dist/util/stringUtils.d.ts +3 -0
- package/dist/util/stringUtils.d.ts.map +1 -0
- package/dist/util/stringUtils.js +28 -0
- package/dist/util/stringUtils.js.map +1 -0
- package/dist/util/sync.d.ts +30 -0
- package/dist/util/sync.d.ts.map +1 -0
- package/dist/util/sync.js +145 -0
- package/dist/util/sync.js.map +1 -0
- package/dist/util/time.d.ts +11 -0
- package/dist/util/time.d.ts.map +1 -0
- package/dist/util/time.js +36 -0
- package/dist/util/time.js.map +1 -0
- package/dist/util/timeFormat.d.ts +18 -0
- package/dist/util/timeFormat.d.ts.map +1 -0
- package/dist/util/timeFormat.js +153 -0
- package/dist/util/timeFormat.js.map +1 -0
- package/dist/util/timeFormat.spec.d.ts +2 -0
- package/dist/util/timeFormat.spec.d.ts.map +1 -0
- package/dist/util/timeFormat.spec.js +82 -0
- package/dist/util/timeFormat.spec.js.map +1 -0
- package/dist/util/trimIdent.d.ts +2 -0
- package/dist/util/trimIdent.d.ts.map +1 -0
- package/dist/util/trimIdent.js +19 -0
- package/dist/util/trimIdent.js.map +1 -0
- package/dist/util/valueDeepEqual.d.ts +6 -0
- package/dist/util/valueDeepEqual.d.ts.map +1 -0
- package/dist/util/valueDeepEqual.js +51 -0
- package/dist/util/valueDeepEqual.js.map +1 -0
- package/dist/util/valueDeepEqual.spec.d.ts +2 -0
- package/dist/util/valueDeepEqual.spec.d.ts.map +1 -0
- package/dist/util/valueDeepEqual.spec.js +27 -0
- package/dist/util/valueDeepEqual.spec.js.map +1 -0
- package/dist/util/xmlEscape.d.ts +6 -0
- package/dist/util/xmlEscape.d.ts.map +1 -0
- package/dist/util/xmlEscape.js +13 -0
- package/dist/util/xmlEscape.js.map +1 -0
- package/dist/util/xmlEscape.spec.d.ts +2 -0
- package/dist/util/xmlEscape.spec.d.ts.map +1 -0
- package/dist/util/xmlEscape.spec.js +9 -0
- package/dist/util/xmlEscape.spec.js.map +1 -0
- package/dist/utils/cuid2Is.d.ts +2 -0
- package/dist/utils/cuid2Is.d.ts.map +1 -0
- package/dist/utils/cuid2Is.js +4 -0
- package/dist/utils/cuid2Is.js.map +1 -0
- package/dist/utils/cuid2Is.spec.d.ts +2 -0
- package/dist/utils/cuid2Is.spec.d.ts.map +1 -0
- package/dist/utils/cuid2Is.spec.js +15 -0
- package/dist/utils/cuid2Is.spec.js.map +1 -0
- package/dist/utils/stringSlugify.d.ts +9 -0
- package/dist/utils/stringSlugify.d.ts.map +1 -0
- package/dist/utils/stringSlugify.js +15 -0
- package/dist/utils/stringSlugify.js.map +1 -0
- package/dist/utils/stringSlugify.spec.d.ts +2 -0
- package/dist/utils/stringSlugify.spec.d.ts.map +1 -0
- package/dist/utils/stringSlugify.spec.js +24 -0
- package/dist/utils/stringSlugify.spec.js.map +1 -0
- package/dist/utils/stringTruncate.d.ts +2 -0
- package/dist/utils/stringTruncate.d.ts.map +1 -0
- package/dist/utils/stringTruncate.js +7 -0
- package/dist/utils/stringTruncate.js.map +1 -0
- package/dist/utils/stringTruncate.spec.d.ts +2 -0
- package/dist/utils/stringTruncate.spec.d.ts.map +1 -0
- package/dist/utils/stringTruncate.spec.js +12 -0
- package/dist/utils/stringTruncate.spec.js.map +1 -0
- package/dist/utils/taskIdIsSafe.d.ts +8 -0
- package/dist/utils/taskIdIsSafe.d.ts.map +1 -0
- package/dist/utils/taskIdIsSafe.js +10 -0
- package/dist/utils/taskIdIsSafe.js.map +1 -0
- package/dist/utils/taskIdIsSafe.spec.d.ts +2 -0
- package/dist/utils/taskIdIsSafe.spec.d.ts.map +1 -0
- package/dist/utils/taskIdIsSafe.spec.js +28 -0
- package/dist/utils/taskIdIsSafe.spec.js.map +1 -0
- package/package.json +78 -0
|
@@ -0,0 +1,2926 @@
|
|
|
1
|
+
import type { ProviderModelInfo } from "./types.js";
|
|
2
|
+
export declare const PROVIDER_MODELS: {
|
|
3
|
+
readonly "amazon-bedrock": [{
|
|
4
|
+
readonly id: "global.anthropic.claude-opus-4-5-20251101-v1:0";
|
|
5
|
+
readonly name: "Claude Opus 4.5";
|
|
6
|
+
readonly size: "large";
|
|
7
|
+
}, {
|
|
8
|
+
readonly id: "eu.anthropic.claude-opus-4-5-20251101-v1:0";
|
|
9
|
+
readonly name: "Claude Opus 4.5 (EU)";
|
|
10
|
+
readonly size: "large";
|
|
11
|
+
}, {
|
|
12
|
+
readonly id: "global.anthropic.claude-haiku-4-5-20251001-v1:0";
|
|
13
|
+
readonly name: "Claude Haiku 4.5";
|
|
14
|
+
readonly size: "small";
|
|
15
|
+
}, {
|
|
16
|
+
readonly id: "eu.anthropic.claude-haiku-4-5-20251001-v1:0";
|
|
17
|
+
readonly name: "Claude Haiku 4.5 (EU)";
|
|
18
|
+
readonly size: "small";
|
|
19
|
+
}, {
|
|
20
|
+
readonly id: "global.anthropic.claude-sonnet-4-5-20250929-v1:0";
|
|
21
|
+
readonly name: "Claude Sonnet 4.5";
|
|
22
|
+
readonly size: "normal";
|
|
23
|
+
}, {
|
|
24
|
+
readonly id: "eu.anthropic.claude-sonnet-4-5-20250929-v1:0";
|
|
25
|
+
readonly name: "Claude Sonnet 4.5 (EU)";
|
|
26
|
+
readonly size: "normal";
|
|
27
|
+
}, {
|
|
28
|
+
readonly id: "us.anthropic.claude-opus-4-1-20250805-v1:0";
|
|
29
|
+
readonly name: "Claude Opus 4.1";
|
|
30
|
+
readonly size: "large";
|
|
31
|
+
readonly deprecated: true;
|
|
32
|
+
}, {
|
|
33
|
+
readonly id: "qwen.qwen3-235b-a22b-2507-v1:0";
|
|
34
|
+
readonly name: "Qwen3 235B A22B 2507";
|
|
35
|
+
readonly size: "normal";
|
|
36
|
+
}, {
|
|
37
|
+
readonly id: "mistral.voxtral-mini-3b-2507";
|
|
38
|
+
readonly name: "Voxtral Mini 3B 2507";
|
|
39
|
+
readonly size: "normal";
|
|
40
|
+
}, {
|
|
41
|
+
readonly id: "mistral.voxtral-small-24b-2507";
|
|
42
|
+
readonly name: "Voxtral Small 24B 2507";
|
|
43
|
+
readonly size: "normal";
|
|
44
|
+
}, {
|
|
45
|
+
readonly id: "global.anthropic.claude-sonnet-4-20250514-v1:0";
|
|
46
|
+
readonly name: "Claude Sonnet 4";
|
|
47
|
+
readonly size: "normal";
|
|
48
|
+
readonly deprecated: true;
|
|
49
|
+
}, {
|
|
50
|
+
readonly id: "us.anthropic.claude-opus-4-20250514-v1:0";
|
|
51
|
+
readonly name: "Claude Opus 4";
|
|
52
|
+
readonly size: "large";
|
|
53
|
+
readonly deprecated: true;
|
|
54
|
+
}, {
|
|
55
|
+
readonly id: "us.anthropic.claude-3-7-sonnet-20250219-v1:0";
|
|
56
|
+
readonly name: "Claude Sonnet 3.7";
|
|
57
|
+
readonly size: "normal";
|
|
58
|
+
readonly deprecated: true;
|
|
59
|
+
}, {
|
|
60
|
+
readonly id: "anthropic.claude-3-5-sonnet-20241022-v2:0";
|
|
61
|
+
readonly name: "Claude Sonnet 3.5 v2";
|
|
62
|
+
readonly size: "normal";
|
|
63
|
+
readonly deprecated: true;
|
|
64
|
+
}, {
|
|
65
|
+
readonly id: "anthropic.claude-3-5-haiku-20241022-v1:0";
|
|
66
|
+
readonly name: "Claude Haiku 3.5";
|
|
67
|
+
readonly size: "small";
|
|
68
|
+
readonly deprecated: true;
|
|
69
|
+
}, {
|
|
70
|
+
readonly id: "anthropic.claude-3-5-sonnet-20240620-v1:0";
|
|
71
|
+
readonly name: "Claude Sonnet 3.5";
|
|
72
|
+
readonly size: "normal";
|
|
73
|
+
readonly deprecated: true;
|
|
74
|
+
}, {
|
|
75
|
+
readonly id: "anthropic.claude-3-haiku-20240307-v1:0";
|
|
76
|
+
readonly name: "Claude Haiku 3";
|
|
77
|
+
readonly size: "small";
|
|
78
|
+
readonly deprecated: true;
|
|
79
|
+
}, {
|
|
80
|
+
readonly id: "anthropic.claude-3-opus-20240229-v1:0";
|
|
81
|
+
readonly name: "Claude Opus 3";
|
|
82
|
+
readonly size: "large";
|
|
83
|
+
readonly deprecated: true;
|
|
84
|
+
}, {
|
|
85
|
+
readonly id: "anthropic.claude-3-sonnet-20240229-v1:0";
|
|
86
|
+
readonly name: "Claude Sonnet 3";
|
|
87
|
+
readonly size: "normal";
|
|
88
|
+
readonly deprecated: true;
|
|
89
|
+
}, {
|
|
90
|
+
readonly id: "mistral.mistral-large-2402-v1:0";
|
|
91
|
+
readonly name: "Mistral Large (24.02)";
|
|
92
|
+
readonly size: "normal";
|
|
93
|
+
}, {
|
|
94
|
+
readonly id: "openai.gpt-oss-safeguard-120b";
|
|
95
|
+
readonly name: "GPT OSS Safeguard 120B";
|
|
96
|
+
readonly size: "normal";
|
|
97
|
+
}, {
|
|
98
|
+
readonly id: "openai.gpt-oss-120b-1:0";
|
|
99
|
+
readonly name: "gpt-oss-120b";
|
|
100
|
+
readonly size: "normal";
|
|
101
|
+
}, {
|
|
102
|
+
readonly id: "us.meta.llama4-maverick-17b-instruct-v1:0";
|
|
103
|
+
readonly name: "Llama 4 Maverick 17B Instruct";
|
|
104
|
+
readonly size: "normal";
|
|
105
|
+
}, {
|
|
106
|
+
readonly id: "us.meta.llama4-scout-17b-instruct-v1:0";
|
|
107
|
+
readonly name: "Llama 4 Scout 17B Instruct";
|
|
108
|
+
readonly size: "normal";
|
|
109
|
+
}, {
|
|
110
|
+
readonly id: "qwen.qwen3-32b-v1:0";
|
|
111
|
+
readonly name: "Qwen3 32B (dense)";
|
|
112
|
+
readonly size: "normal";
|
|
113
|
+
}, {
|
|
114
|
+
readonly id: "google.gemma-3-27b-it";
|
|
115
|
+
readonly name: "Google Gemma 3 27B Instruct";
|
|
116
|
+
readonly size: "normal";
|
|
117
|
+
}, {
|
|
118
|
+
readonly id: "mistral.ministral-3-14b-instruct";
|
|
119
|
+
readonly name: "Ministral 14B 3.0";
|
|
120
|
+
readonly size: "normal";
|
|
121
|
+
}, {
|
|
122
|
+
readonly id: "mistral.ministral-3-8b-instruct";
|
|
123
|
+
readonly name: "Ministral 3 8B";
|
|
124
|
+
readonly size: "normal";
|
|
125
|
+
}, {
|
|
126
|
+
readonly id: "google.gemma-3-4b-it";
|
|
127
|
+
readonly name: "Gemma 3 4B IT";
|
|
128
|
+
readonly size: "normal";
|
|
129
|
+
}, {
|
|
130
|
+
readonly id: "us.meta.llama3-3-70b-instruct-v1:0";
|
|
131
|
+
readonly name: "Llama 3.3 70B Instruct";
|
|
132
|
+
readonly size: "normal";
|
|
133
|
+
}, {
|
|
134
|
+
readonly id: "us.meta.llama3-2-90b-instruct-v1:0";
|
|
135
|
+
readonly name: "Llama 3.2 90B Instruct";
|
|
136
|
+
readonly size: "normal";
|
|
137
|
+
}, {
|
|
138
|
+
readonly id: "us.meta.llama3-2-11b-instruct-v1:0";
|
|
139
|
+
readonly name: "Llama 3.2 11B Instruct";
|
|
140
|
+
readonly size: "normal";
|
|
141
|
+
}, {
|
|
142
|
+
readonly id: "us.meta.llama3-2-3b-instruct-v1:0";
|
|
143
|
+
readonly name: "Llama 3.2 3B Instruct";
|
|
144
|
+
readonly size: "normal";
|
|
145
|
+
}, {
|
|
146
|
+
readonly id: "us.meta.llama3-2-1b-instruct-v1:0";
|
|
147
|
+
readonly name: "Llama 3.2 1B Instruct";
|
|
148
|
+
readonly size: "normal";
|
|
149
|
+
}, {
|
|
150
|
+
readonly id: "meta.llama3-1-70b-instruct-v1:0";
|
|
151
|
+
readonly name: "Llama 3.1 70B Instruct";
|
|
152
|
+
readonly size: "normal";
|
|
153
|
+
readonly deprecated: true;
|
|
154
|
+
}, {
|
|
155
|
+
readonly id: "meta.llama3-1-8b-instruct-v1:0";
|
|
156
|
+
readonly name: "Llama 3.1 8B Instruct";
|
|
157
|
+
readonly size: "normal";
|
|
158
|
+
}, {
|
|
159
|
+
readonly id: "deepseek.v3-v1:0";
|
|
160
|
+
readonly name: "DeepSeek-V3.1";
|
|
161
|
+
readonly size: "normal";
|
|
162
|
+
}, {
|
|
163
|
+
readonly id: "qwen.qwen3-next-80b-a3b";
|
|
164
|
+
readonly name: "Qwen/Qwen3-Next-80B-A3B-Instruct";
|
|
165
|
+
readonly size: "normal";
|
|
166
|
+
}, {
|
|
167
|
+
readonly id: "qwen.qwen3-vl-235b-a22b";
|
|
168
|
+
readonly name: "Qwen/Qwen3-VL-235B-A22B-Instruct";
|
|
169
|
+
readonly size: "normal";
|
|
170
|
+
}, {
|
|
171
|
+
readonly id: "qwen.qwen3-coder-30b-a3b-v1:0";
|
|
172
|
+
readonly name: "Qwen3 Coder 30B A3B Instruct";
|
|
173
|
+
readonly size: "normal";
|
|
174
|
+
}, {
|
|
175
|
+
readonly id: "qwen.qwen3-coder-480b-a35b-v1:0";
|
|
176
|
+
readonly name: "Qwen3 Coder 480B A35B Instruct";
|
|
177
|
+
readonly size: "normal";
|
|
178
|
+
}, {
|
|
179
|
+
readonly id: "global.amazon.nova-2-lite-v1:0";
|
|
180
|
+
readonly name: "Nova 2 Lite";
|
|
181
|
+
readonly size: "normal";
|
|
182
|
+
}, {
|
|
183
|
+
readonly id: "moonshot.kimi-k2-thinking";
|
|
184
|
+
readonly name: "Kimi K2 Thinking";
|
|
185
|
+
readonly size: "normal";
|
|
186
|
+
}, {
|
|
187
|
+
readonly id: "minimax.minimax-m2";
|
|
188
|
+
readonly name: "MiniMax M2";
|
|
189
|
+
readonly size: "normal";
|
|
190
|
+
}, {
|
|
191
|
+
readonly id: "nvidia.nemotron-nano-12b-v2";
|
|
192
|
+
readonly name: "NVIDIA Nemotron Nano 12B v2 VL BF16";
|
|
193
|
+
readonly size: "normal";
|
|
194
|
+
}, {
|
|
195
|
+
readonly id: "nvidia.nemotron-nano-9b-v2";
|
|
196
|
+
readonly name: "NVIDIA Nemotron Nano 9B v2";
|
|
197
|
+
readonly size: "normal";
|
|
198
|
+
}, {
|
|
199
|
+
readonly id: "us.deepseek.r1-v1:0";
|
|
200
|
+
readonly name: "DeepSeek-R1";
|
|
201
|
+
readonly size: "normal";
|
|
202
|
+
}, {
|
|
203
|
+
readonly id: "us.amazon.nova-lite-v1:0";
|
|
204
|
+
readonly name: "Nova Lite";
|
|
205
|
+
readonly size: "normal";
|
|
206
|
+
readonly deprecated: true;
|
|
207
|
+
}, {
|
|
208
|
+
readonly id: "us.amazon.nova-micro-v1:0";
|
|
209
|
+
readonly name: "Nova Micro";
|
|
210
|
+
readonly size: "normal";
|
|
211
|
+
}, {
|
|
212
|
+
readonly id: "us.amazon.nova-premier-v1:0";
|
|
213
|
+
readonly name: "Nova Premier";
|
|
214
|
+
readonly size: "normal";
|
|
215
|
+
}, {
|
|
216
|
+
readonly id: "us.amazon.nova-pro-v1:0";
|
|
217
|
+
readonly name: "Nova Pro";
|
|
218
|
+
readonly size: "normal";
|
|
219
|
+
}, {
|
|
220
|
+
readonly id: "cohere.command-r-v1:0";
|
|
221
|
+
readonly name: "Command R";
|
|
222
|
+
readonly size: "normal";
|
|
223
|
+
}, {
|
|
224
|
+
readonly id: "cohere.command-r-plus-v1:0";
|
|
225
|
+
readonly name: "Command R+";
|
|
226
|
+
readonly size: "normal";
|
|
227
|
+
}, {
|
|
228
|
+
readonly id: "openai.gpt-oss-20b-1:0";
|
|
229
|
+
readonly name: "gpt-oss-20b";
|
|
230
|
+
readonly size: "normal";
|
|
231
|
+
}, {
|
|
232
|
+
readonly id: "openai.gpt-oss-safeguard-20b";
|
|
233
|
+
readonly name: "GPT OSS Safeguard 20B";
|
|
234
|
+
readonly size: "normal";
|
|
235
|
+
}];
|
|
236
|
+
readonly anthropic: [{
|
|
237
|
+
readonly id: "claude-opus-4-5";
|
|
238
|
+
readonly name: "Claude Opus 4.5 (latest)";
|
|
239
|
+
readonly size: "large";
|
|
240
|
+
}, {
|
|
241
|
+
readonly id: "claude-sonnet-4-5";
|
|
242
|
+
readonly name: "Claude Sonnet 4.5 (latest)";
|
|
243
|
+
readonly size: "normal";
|
|
244
|
+
}, {
|
|
245
|
+
readonly id: "claude-haiku-4-5";
|
|
246
|
+
readonly name: "Claude Haiku 4.5 (latest)";
|
|
247
|
+
readonly size: "small";
|
|
248
|
+
}, {
|
|
249
|
+
readonly id: "claude-opus-4-1";
|
|
250
|
+
readonly name: "Claude Opus 4.1 (latest)";
|
|
251
|
+
readonly size: "large";
|
|
252
|
+
}, {
|
|
253
|
+
readonly id: "claude-opus-4-0";
|
|
254
|
+
readonly name: "Claude Opus 4 (latest)";
|
|
255
|
+
readonly size: "large";
|
|
256
|
+
}, {
|
|
257
|
+
readonly id: "claude-sonnet-4-0";
|
|
258
|
+
readonly name: "Claude Sonnet 4 (latest)";
|
|
259
|
+
readonly size: "normal";
|
|
260
|
+
}, {
|
|
261
|
+
readonly id: "claude-3-7-sonnet-latest";
|
|
262
|
+
readonly name: "Claude Sonnet 3.7 (latest)";
|
|
263
|
+
readonly size: "normal";
|
|
264
|
+
}, {
|
|
265
|
+
readonly id: "claude-3-5-haiku-latest";
|
|
266
|
+
readonly name: "Claude Haiku 3.5 (latest)";
|
|
267
|
+
readonly size: "small";
|
|
268
|
+
}, {
|
|
269
|
+
readonly id: "claude-opus-4-5-20251101";
|
|
270
|
+
readonly name: "Claude Opus 4.5";
|
|
271
|
+
readonly size: "large";
|
|
272
|
+
}, {
|
|
273
|
+
readonly id: "claude-haiku-4-5-20251001";
|
|
274
|
+
readonly name: "Claude Haiku 4.5";
|
|
275
|
+
readonly size: "small";
|
|
276
|
+
}, {
|
|
277
|
+
readonly id: "claude-sonnet-4-5-20250929";
|
|
278
|
+
readonly name: "Claude Sonnet 4.5";
|
|
279
|
+
readonly size: "normal";
|
|
280
|
+
}, {
|
|
281
|
+
readonly id: "claude-opus-4-1-20250805";
|
|
282
|
+
readonly name: "Claude Opus 4.1";
|
|
283
|
+
readonly size: "large";
|
|
284
|
+
readonly deprecated: true;
|
|
285
|
+
}, {
|
|
286
|
+
readonly id: "claude-opus-4-20250514";
|
|
287
|
+
readonly name: "Claude Opus 4";
|
|
288
|
+
readonly size: "large";
|
|
289
|
+
readonly deprecated: true;
|
|
290
|
+
}, {
|
|
291
|
+
readonly id: "claude-sonnet-4-20250514";
|
|
292
|
+
readonly name: "Claude Sonnet 4";
|
|
293
|
+
readonly size: "normal";
|
|
294
|
+
readonly deprecated: true;
|
|
295
|
+
}, {
|
|
296
|
+
readonly id: "claude-3-7-sonnet-20250219";
|
|
297
|
+
readonly name: "Claude Sonnet 3.7";
|
|
298
|
+
readonly size: "normal";
|
|
299
|
+
readonly deprecated: true;
|
|
300
|
+
}, {
|
|
301
|
+
readonly id: "claude-3-5-sonnet-20241022";
|
|
302
|
+
readonly name: "Claude Sonnet 3.5 v2";
|
|
303
|
+
readonly size: "normal";
|
|
304
|
+
readonly deprecated: true;
|
|
305
|
+
}, {
|
|
306
|
+
readonly id: "claude-3-5-haiku-20241022";
|
|
307
|
+
readonly name: "Claude Haiku 3.5";
|
|
308
|
+
readonly size: "small";
|
|
309
|
+
readonly deprecated: true;
|
|
310
|
+
}, {
|
|
311
|
+
readonly id: "claude-3-5-sonnet-20240620";
|
|
312
|
+
readonly name: "Claude Sonnet 3.5";
|
|
313
|
+
readonly size: "normal";
|
|
314
|
+
readonly deprecated: true;
|
|
315
|
+
}, {
|
|
316
|
+
readonly id: "claude-3-haiku-20240307";
|
|
317
|
+
readonly name: "Claude Haiku 3";
|
|
318
|
+
readonly size: "small";
|
|
319
|
+
readonly deprecated: true;
|
|
320
|
+
}, {
|
|
321
|
+
readonly id: "claude-3-opus-20240229";
|
|
322
|
+
readonly name: "Claude Opus 3";
|
|
323
|
+
readonly size: "large";
|
|
324
|
+
readonly deprecated: true;
|
|
325
|
+
}, {
|
|
326
|
+
readonly id: "claude-3-sonnet-20240229";
|
|
327
|
+
readonly name: "Claude Sonnet 3";
|
|
328
|
+
readonly size: "normal";
|
|
329
|
+
readonly deprecated: true;
|
|
330
|
+
}];
|
|
331
|
+
readonly "azure-openai-responses": [{
|
|
332
|
+
readonly id: "gpt-5.2-chat-latest";
|
|
333
|
+
readonly name: "GPT-5.2 Chat";
|
|
334
|
+
readonly size: "normal";
|
|
335
|
+
}, {
|
|
336
|
+
readonly id: "gpt-5.1-chat-latest";
|
|
337
|
+
readonly name: "GPT-5.1 Chat";
|
|
338
|
+
readonly size: "normal";
|
|
339
|
+
}, {
|
|
340
|
+
readonly id: "gpt-5-chat-latest";
|
|
341
|
+
readonly name: "GPT-5 Chat Latest";
|
|
342
|
+
readonly size: "normal";
|
|
343
|
+
}, {
|
|
344
|
+
readonly id: "codex-mini-latest";
|
|
345
|
+
readonly name: "Codex Mini";
|
|
346
|
+
readonly size: "normal";
|
|
347
|
+
}, {
|
|
348
|
+
readonly id: "gpt-4o-2024-11-20";
|
|
349
|
+
readonly name: "GPT-4o (2024-11-20)";
|
|
350
|
+
readonly size: "normal";
|
|
351
|
+
}, {
|
|
352
|
+
readonly id: "gpt-4o-2024-08-06";
|
|
353
|
+
readonly name: "GPT-4o (2024-08-06)";
|
|
354
|
+
readonly size: "normal";
|
|
355
|
+
readonly deprecated: true;
|
|
356
|
+
}, {
|
|
357
|
+
readonly id: "gpt-4o-2024-05-13";
|
|
358
|
+
readonly name: "GPT-4o (2024-05-13)";
|
|
359
|
+
readonly size: "normal";
|
|
360
|
+
readonly deprecated: true;
|
|
361
|
+
}, {
|
|
362
|
+
readonly id: "gpt-5.2";
|
|
363
|
+
readonly name: "GPT-5.2";
|
|
364
|
+
readonly size: "normal";
|
|
365
|
+
}, {
|
|
366
|
+
readonly id: "gpt-5.2-codex";
|
|
367
|
+
readonly name: "GPT-5.2 Codex";
|
|
368
|
+
readonly size: "normal";
|
|
369
|
+
}, {
|
|
370
|
+
readonly id: "gpt-5.2-pro";
|
|
371
|
+
readonly name: "GPT-5.2 Pro";
|
|
372
|
+
readonly size: "normal";
|
|
373
|
+
}, {
|
|
374
|
+
readonly id: "gpt-5.1";
|
|
375
|
+
readonly name: "GPT-5.1";
|
|
376
|
+
readonly size: "normal";
|
|
377
|
+
readonly deprecated: true;
|
|
378
|
+
}, {
|
|
379
|
+
readonly id: "gpt-5.1-codex";
|
|
380
|
+
readonly name: "GPT-5.1 Codex";
|
|
381
|
+
readonly size: "normal";
|
|
382
|
+
readonly deprecated: true;
|
|
383
|
+
}, {
|
|
384
|
+
readonly id: "gpt-5.1-codex-max";
|
|
385
|
+
readonly name: "GPT-5.1 Codex Max";
|
|
386
|
+
readonly size: "normal";
|
|
387
|
+
}, {
|
|
388
|
+
readonly id: "gpt-5.1-codex-mini";
|
|
389
|
+
readonly name: "GPT-5.1 Codex mini";
|
|
390
|
+
readonly size: "normal";
|
|
391
|
+
}, {
|
|
392
|
+
readonly id: "gpt-5";
|
|
393
|
+
readonly name: "GPT-5";
|
|
394
|
+
readonly size: "normal";
|
|
395
|
+
readonly deprecated: true;
|
|
396
|
+
}, {
|
|
397
|
+
readonly id: "gpt-5-mini";
|
|
398
|
+
readonly name: "GPT-5 Mini";
|
|
399
|
+
readonly size: "normal";
|
|
400
|
+
}, {
|
|
401
|
+
readonly id: "gpt-5-nano";
|
|
402
|
+
readonly name: "GPT-5 Nano";
|
|
403
|
+
readonly size: "normal";
|
|
404
|
+
}, {
|
|
405
|
+
readonly id: "gpt-5-pro";
|
|
406
|
+
readonly name: "GPT-5 Pro";
|
|
407
|
+
readonly size: "normal";
|
|
408
|
+
readonly deprecated: true;
|
|
409
|
+
}, {
|
|
410
|
+
readonly id: "gpt-5-codex";
|
|
411
|
+
readonly name: "GPT-5-Codex";
|
|
412
|
+
readonly size: "normal";
|
|
413
|
+
readonly deprecated: true;
|
|
414
|
+
}, {
|
|
415
|
+
readonly id: "gpt-4.1";
|
|
416
|
+
readonly name: "GPT-4.1";
|
|
417
|
+
readonly size: "normal";
|
|
418
|
+
readonly deprecated: true;
|
|
419
|
+
}, {
|
|
420
|
+
readonly id: "gpt-4.1-mini";
|
|
421
|
+
readonly name: "GPT-4.1 mini";
|
|
422
|
+
readonly size: "normal";
|
|
423
|
+
readonly deprecated: true;
|
|
424
|
+
}, {
|
|
425
|
+
readonly id: "gpt-4.1-nano";
|
|
426
|
+
readonly name: "GPT-4.1 nano";
|
|
427
|
+
readonly size: "normal";
|
|
428
|
+
readonly deprecated: true;
|
|
429
|
+
}, {
|
|
430
|
+
readonly id: "gpt-4";
|
|
431
|
+
readonly name: "GPT-4";
|
|
432
|
+
readonly size: "normal";
|
|
433
|
+
readonly deprecated: true;
|
|
434
|
+
}, {
|
|
435
|
+
readonly id: "gpt-4-turbo";
|
|
436
|
+
readonly name: "GPT-4 Turbo";
|
|
437
|
+
readonly size: "normal";
|
|
438
|
+
}, {
|
|
439
|
+
readonly id: "gpt-4o";
|
|
440
|
+
readonly name: "GPT-4o";
|
|
441
|
+
readonly size: "normal";
|
|
442
|
+
}, {
|
|
443
|
+
readonly id: "gpt-4o-mini";
|
|
444
|
+
readonly name: "GPT-4o mini";
|
|
445
|
+
readonly size: "normal";
|
|
446
|
+
}, {
|
|
447
|
+
readonly id: "o4-mini";
|
|
448
|
+
readonly name: "o4-mini";
|
|
449
|
+
readonly size: "normal";
|
|
450
|
+
}, {
|
|
451
|
+
readonly id: "o4-mini-deep-research";
|
|
452
|
+
readonly name: "o4-mini-deep-research";
|
|
453
|
+
readonly size: "normal";
|
|
454
|
+
}, {
|
|
455
|
+
readonly id: "o3";
|
|
456
|
+
readonly name: "o3";
|
|
457
|
+
readonly size: "normal";
|
|
458
|
+
}, {
|
|
459
|
+
readonly id: "o3-deep-research";
|
|
460
|
+
readonly name: "o3-deep-research";
|
|
461
|
+
readonly size: "normal";
|
|
462
|
+
}, {
|
|
463
|
+
readonly id: "o3-mini";
|
|
464
|
+
readonly name: "o3-mini";
|
|
465
|
+
readonly size: "normal";
|
|
466
|
+
}, {
|
|
467
|
+
readonly id: "o3-pro";
|
|
468
|
+
readonly name: "o3-pro";
|
|
469
|
+
readonly size: "normal";
|
|
470
|
+
}, {
|
|
471
|
+
readonly id: "o1";
|
|
472
|
+
readonly name: "o1";
|
|
473
|
+
readonly size: "normal";
|
|
474
|
+
}, {
|
|
475
|
+
readonly id: "o1-pro";
|
|
476
|
+
readonly name: "o1-pro";
|
|
477
|
+
readonly size: "normal";
|
|
478
|
+
}];
|
|
479
|
+
readonly cerebras: [{
|
|
480
|
+
readonly id: "qwen-3-235b-a22b-instruct-2507";
|
|
481
|
+
readonly name: "Qwen 3 235B Instruct";
|
|
482
|
+
readonly size: "normal";
|
|
483
|
+
}, {
|
|
484
|
+
readonly id: "gpt-oss-120b";
|
|
485
|
+
readonly name: "GPT OSS 120B";
|
|
486
|
+
readonly size: "normal";
|
|
487
|
+
}, {
|
|
488
|
+
readonly id: "zai-glm-4.7";
|
|
489
|
+
readonly name: "Z.AI GLM-4.7";
|
|
490
|
+
readonly size: "normal";
|
|
491
|
+
}];
|
|
492
|
+
readonly "github-copilot": [{
|
|
493
|
+
readonly id: "gpt-5.2";
|
|
494
|
+
readonly name: "GPT-5.2";
|
|
495
|
+
readonly size: "normal";
|
|
496
|
+
}, {
|
|
497
|
+
readonly id: "gpt-5.2-codex";
|
|
498
|
+
readonly name: "GPT-5.2-Codex";
|
|
499
|
+
readonly size: "normal";
|
|
500
|
+
}, {
|
|
501
|
+
readonly id: "gpt-5.1";
|
|
502
|
+
readonly name: "GPT-5.1";
|
|
503
|
+
readonly size: "normal";
|
|
504
|
+
readonly deprecated: true;
|
|
505
|
+
}, {
|
|
506
|
+
readonly id: "gpt-5.1-codex";
|
|
507
|
+
readonly name: "GPT-5.1-Codex";
|
|
508
|
+
readonly size: "normal";
|
|
509
|
+
readonly deprecated: true;
|
|
510
|
+
}, {
|
|
511
|
+
readonly id: "gpt-5.1-codex-max";
|
|
512
|
+
readonly name: "GPT-5.1-Codex-max";
|
|
513
|
+
readonly size: "normal";
|
|
514
|
+
}, {
|
|
515
|
+
readonly id: "gpt-5.1-codex-mini";
|
|
516
|
+
readonly name: "GPT-5.1-Codex-mini";
|
|
517
|
+
readonly size: "normal";
|
|
518
|
+
}, {
|
|
519
|
+
readonly id: "gpt-5";
|
|
520
|
+
readonly name: "GPT-5";
|
|
521
|
+
readonly size: "normal";
|
|
522
|
+
readonly deprecated: true;
|
|
523
|
+
}, {
|
|
524
|
+
readonly id: "gpt-5-mini";
|
|
525
|
+
readonly name: "GPT-5-mini";
|
|
526
|
+
readonly size: "normal";
|
|
527
|
+
}, {
|
|
528
|
+
readonly id: "claude-opus-4.5";
|
|
529
|
+
readonly name: "Claude Opus 4.5";
|
|
530
|
+
readonly size: "large";
|
|
531
|
+
}, {
|
|
532
|
+
readonly id: "claude-sonnet-4.5";
|
|
533
|
+
readonly name: "Claude Sonnet 4.5";
|
|
534
|
+
readonly size: "normal";
|
|
535
|
+
}, {
|
|
536
|
+
readonly id: "claude-haiku-4.5";
|
|
537
|
+
readonly name: "Claude Haiku 4.5";
|
|
538
|
+
readonly size: "small";
|
|
539
|
+
}, {
|
|
540
|
+
readonly id: "gpt-4.1";
|
|
541
|
+
readonly name: "GPT-4.1";
|
|
542
|
+
readonly size: "normal";
|
|
543
|
+
readonly deprecated: true;
|
|
544
|
+
}, {
|
|
545
|
+
readonly id: "claude-sonnet-4";
|
|
546
|
+
readonly name: "Claude Sonnet 4";
|
|
547
|
+
readonly size: "normal";
|
|
548
|
+
readonly deprecated: true;
|
|
549
|
+
}, {
|
|
550
|
+
readonly id: "gpt-4o";
|
|
551
|
+
readonly name: "GPT-4o";
|
|
552
|
+
readonly size: "normal";
|
|
553
|
+
}, {
|
|
554
|
+
readonly id: "gemini-3-pro-preview";
|
|
555
|
+
readonly name: "Gemini 3 Pro Preview";
|
|
556
|
+
readonly size: "normal";
|
|
557
|
+
}, {
|
|
558
|
+
readonly id: "gemini-3-flash-preview";
|
|
559
|
+
readonly name: "Gemini 3 Flash";
|
|
560
|
+
readonly size: "small";
|
|
561
|
+
}, {
|
|
562
|
+
readonly id: "gemini-2.5-pro";
|
|
563
|
+
readonly name: "Gemini 2.5 Pro";
|
|
564
|
+
readonly size: "normal";
|
|
565
|
+
}, {
|
|
566
|
+
readonly id: "grok-code-fast-1";
|
|
567
|
+
readonly name: "Grok Code Fast 1";
|
|
568
|
+
readonly size: "normal";
|
|
569
|
+
}];
|
|
570
|
+
readonly google: [{
|
|
571
|
+
readonly id: "gemini-flash-latest";
|
|
572
|
+
readonly name: "Gemini Flash Latest";
|
|
573
|
+
readonly size: "small";
|
|
574
|
+
}, {
|
|
575
|
+
readonly id: "gemini-flash-lite-latest";
|
|
576
|
+
readonly name: "Gemini Flash-Lite Latest";
|
|
577
|
+
readonly size: "small";
|
|
578
|
+
}, {
|
|
579
|
+
readonly id: "gemini-3-pro-preview";
|
|
580
|
+
readonly name: "Gemini 3 Pro Preview";
|
|
581
|
+
readonly size: "normal";
|
|
582
|
+
}, {
|
|
583
|
+
readonly id: "gemini-3-flash-preview";
|
|
584
|
+
readonly name: "Gemini 3 Flash Preview";
|
|
585
|
+
readonly size: "small";
|
|
586
|
+
}, {
|
|
587
|
+
readonly id: "gemini-2.5-pro";
|
|
588
|
+
readonly name: "Gemini 2.5 Pro";
|
|
589
|
+
readonly size: "normal";
|
|
590
|
+
}, {
|
|
591
|
+
readonly id: "gemini-2.5-pro-preview-05-06";
|
|
592
|
+
readonly name: "Gemini 2.5 Pro Preview 05-06";
|
|
593
|
+
readonly size: "normal";
|
|
594
|
+
readonly deprecated: true;
|
|
595
|
+
}, {
|
|
596
|
+
readonly id: "gemini-2.5-pro-preview-06-05";
|
|
597
|
+
readonly name: "Gemini 2.5 Pro Preview 06-05";
|
|
598
|
+
readonly size: "normal";
|
|
599
|
+
readonly deprecated: true;
|
|
600
|
+
}, {
|
|
601
|
+
readonly id: "gemini-2.5-flash";
|
|
602
|
+
readonly name: "Gemini 2.5 Flash";
|
|
603
|
+
readonly size: "small";
|
|
604
|
+
}, {
|
|
605
|
+
readonly id: "gemini-2.5-flash-lite";
|
|
606
|
+
readonly name: "Gemini 2.5 Flash Lite";
|
|
607
|
+
readonly size: "small";
|
|
608
|
+
}, {
|
|
609
|
+
readonly id: "gemini-2.5-flash-lite-preview-06-17";
|
|
610
|
+
readonly name: "Gemini 2.5 Flash Lite Preview 06-17";
|
|
611
|
+
readonly size: "small";
|
|
612
|
+
}, {
|
|
613
|
+
readonly id: "gemini-2.5-flash-lite-preview-09-2025";
|
|
614
|
+
readonly name: "Gemini 2.5 Flash Lite Preview 09-25";
|
|
615
|
+
readonly size: "small";
|
|
616
|
+
}, {
|
|
617
|
+
readonly id: "gemini-2.5-flash-preview-04-17";
|
|
618
|
+
readonly name: "Gemini 2.5 Flash Preview 04-17";
|
|
619
|
+
readonly size: "small";
|
|
620
|
+
readonly deprecated: true;
|
|
621
|
+
}, {
|
|
622
|
+
readonly id: "gemini-2.5-flash-preview-05-20";
|
|
623
|
+
readonly name: "Gemini 2.5 Flash Preview 05-20";
|
|
624
|
+
readonly size: "small";
|
|
625
|
+
readonly deprecated: true;
|
|
626
|
+
}, {
|
|
627
|
+
readonly id: "gemini-2.5-flash-preview-09-2025";
|
|
628
|
+
readonly name: "Gemini 2.5 Flash Preview 09-25";
|
|
629
|
+
readonly size: "small";
|
|
630
|
+
readonly deprecated: true;
|
|
631
|
+
}, {
|
|
632
|
+
readonly id: "gemini-live-2.5-flash";
|
|
633
|
+
readonly name: "Gemini Live 2.5 Flash";
|
|
634
|
+
readonly size: "small";
|
|
635
|
+
}, {
|
|
636
|
+
readonly id: "gemini-live-2.5-flash-preview-native-audio";
|
|
637
|
+
readonly name: "Gemini Live 2.5 Flash Preview Native Audio";
|
|
638
|
+
readonly size: "small";
|
|
639
|
+
}, {
|
|
640
|
+
readonly id: "gemini-2.0-flash";
|
|
641
|
+
readonly name: "Gemini 2.0 Flash";
|
|
642
|
+
readonly size: "small";
|
|
643
|
+
readonly deprecated: true;
|
|
644
|
+
}, {
|
|
645
|
+
readonly id: "gemini-2.0-flash-lite";
|
|
646
|
+
readonly name: "Gemini 2.0 Flash Lite";
|
|
647
|
+
readonly size: "small";
|
|
648
|
+
readonly deprecated: true;
|
|
649
|
+
}, {
|
|
650
|
+
readonly id: "gemini-1.5-pro";
|
|
651
|
+
readonly name: "Gemini 1.5 Pro";
|
|
652
|
+
readonly size: "normal";
|
|
653
|
+
readonly deprecated: true;
|
|
654
|
+
}, {
|
|
655
|
+
readonly id: "gemini-1.5-flash";
|
|
656
|
+
readonly name: "Gemini 1.5 Flash";
|
|
657
|
+
readonly size: "small";
|
|
658
|
+
readonly deprecated: true;
|
|
659
|
+
}, {
|
|
660
|
+
readonly id: "gemini-1.5-flash-8b";
|
|
661
|
+
readonly name: "Gemini 1.5 Flash-8B";
|
|
662
|
+
readonly size: "small";
|
|
663
|
+
}];
|
|
664
|
+
readonly "google-antigravity": [{
|
|
665
|
+
readonly id: "gpt-oss-120b-medium";
|
|
666
|
+
readonly name: "GPT-OSS 120B Medium (Antigravity)";
|
|
667
|
+
readonly size: "normal";
|
|
668
|
+
}, {
|
|
669
|
+
readonly id: "claude-opus-4-5-thinking";
|
|
670
|
+
readonly name: "Claude Opus 4.5 Thinking (Antigravity)";
|
|
671
|
+
readonly size: "large";
|
|
672
|
+
}, {
|
|
673
|
+
readonly id: "claude-sonnet-4-5";
|
|
674
|
+
readonly name: "Claude Sonnet 4.5 (Antigravity)";
|
|
675
|
+
readonly size: "normal";
|
|
676
|
+
}, {
|
|
677
|
+
readonly id: "claude-sonnet-4-5-thinking";
|
|
678
|
+
readonly name: "Claude Sonnet 4.5 Thinking (Antigravity)";
|
|
679
|
+
readonly size: "normal";
|
|
680
|
+
}, {
|
|
681
|
+
readonly id: "gemini-3-pro-high";
|
|
682
|
+
readonly name: "Gemini 3 Pro High (Antigravity)";
|
|
683
|
+
readonly size: "normal";
|
|
684
|
+
}, {
|
|
685
|
+
readonly id: "gemini-3-pro-low";
|
|
686
|
+
readonly name: "Gemini 3 Pro Low (Antigravity)";
|
|
687
|
+
readonly size: "normal";
|
|
688
|
+
}, {
|
|
689
|
+
readonly id: "gemini-3-flash";
|
|
690
|
+
readonly name: "Gemini 3 Flash (Antigravity)";
|
|
691
|
+
readonly size: "small";
|
|
692
|
+
}];
|
|
693
|
+
readonly "google-gemini-cli": [{
|
|
694
|
+
readonly id: "gemini-3-pro-preview";
|
|
695
|
+
readonly name: "Gemini 3 Pro Preview (Cloud Code Assist)";
|
|
696
|
+
readonly size: "normal";
|
|
697
|
+
}, {
|
|
698
|
+
readonly id: "gemini-3-flash-preview";
|
|
699
|
+
readonly name: "Gemini 3 Flash Preview (Cloud Code Assist)";
|
|
700
|
+
readonly size: "small";
|
|
701
|
+
}, {
|
|
702
|
+
readonly id: "gemini-2.5-pro";
|
|
703
|
+
readonly name: "Gemini 2.5 Pro (Cloud Code Assist)";
|
|
704
|
+
readonly size: "normal";
|
|
705
|
+
}, {
|
|
706
|
+
readonly id: "gemini-2.5-flash";
|
|
707
|
+
readonly name: "Gemini 2.5 Flash (Cloud Code Assist)";
|
|
708
|
+
readonly size: "small";
|
|
709
|
+
}, {
|
|
710
|
+
readonly id: "gemini-2.0-flash";
|
|
711
|
+
readonly name: "Gemini 2.0 Flash (Cloud Code Assist)";
|
|
712
|
+
readonly size: "small";
|
|
713
|
+
readonly deprecated: true;
|
|
714
|
+
}];
|
|
715
|
+
readonly "google-vertex": [{
|
|
716
|
+
readonly id: "gemini-3-pro-preview";
|
|
717
|
+
readonly name: "Gemini 3 Pro Preview (Vertex)";
|
|
718
|
+
readonly size: "normal";
|
|
719
|
+
}, {
|
|
720
|
+
readonly id: "gemini-3-flash-preview";
|
|
721
|
+
readonly name: "Gemini 3 Flash Preview (Vertex)";
|
|
722
|
+
readonly size: "small";
|
|
723
|
+
}, {
|
|
724
|
+
readonly id: "gemini-2.5-pro";
|
|
725
|
+
readonly name: "Gemini 2.5 Pro (Vertex)";
|
|
726
|
+
readonly size: "normal";
|
|
727
|
+
}, {
|
|
728
|
+
readonly id: "gemini-2.5-flash";
|
|
729
|
+
readonly name: "Gemini 2.5 Flash (Vertex)";
|
|
730
|
+
readonly size: "small";
|
|
731
|
+
}, {
|
|
732
|
+
readonly id: "gemini-2.5-flash-lite";
|
|
733
|
+
readonly name: "Gemini 2.5 Flash Lite (Vertex)";
|
|
734
|
+
readonly size: "small";
|
|
735
|
+
}, {
|
|
736
|
+
readonly id: "gemini-2.5-flash-lite-preview-09-2025";
|
|
737
|
+
readonly name: "Gemini 2.5 Flash Lite Preview 09-25 (Vertex)";
|
|
738
|
+
readonly size: "small";
|
|
739
|
+
}, {
|
|
740
|
+
readonly id: "gemini-2.0-flash";
|
|
741
|
+
readonly name: "Gemini 2.0 Flash (Vertex)";
|
|
742
|
+
readonly size: "small";
|
|
743
|
+
readonly deprecated: true;
|
|
744
|
+
}, {
|
|
745
|
+
readonly id: "gemini-2.0-flash-lite";
|
|
746
|
+
readonly name: "Gemini 2.0 Flash Lite (Vertex)";
|
|
747
|
+
readonly size: "small";
|
|
748
|
+
readonly deprecated: true;
|
|
749
|
+
}, {
|
|
750
|
+
readonly id: "gemini-1.5-pro";
|
|
751
|
+
readonly name: "Gemini 1.5 Pro (Vertex)";
|
|
752
|
+
readonly size: "normal";
|
|
753
|
+
readonly deprecated: true;
|
|
754
|
+
}, {
|
|
755
|
+
readonly id: "gemini-1.5-flash";
|
|
756
|
+
readonly name: "Gemini 1.5 Flash (Vertex)";
|
|
757
|
+
readonly size: "small";
|
|
758
|
+
readonly deprecated: true;
|
|
759
|
+
}, {
|
|
760
|
+
readonly id: "gemini-1.5-flash-8b";
|
|
761
|
+
readonly name: "Gemini 1.5 Flash-8B (Vertex)";
|
|
762
|
+
readonly size: "small";
|
|
763
|
+
}];
|
|
764
|
+
readonly groq: [{
|
|
765
|
+
readonly id: "moonshotai/kimi-k2-instruct-0905";
|
|
766
|
+
readonly name: "Kimi K2 Instruct 0905";
|
|
767
|
+
readonly size: "normal";
|
|
768
|
+
}, {
|
|
769
|
+
readonly id: "openai/gpt-oss-120b";
|
|
770
|
+
readonly name: "GPT OSS 120B";
|
|
771
|
+
readonly size: "normal";
|
|
772
|
+
}, {
|
|
773
|
+
readonly id: "meta-llama/llama-4-maverick-17b-128e-instruct";
|
|
774
|
+
readonly name: "Llama 4 Maverick 17B";
|
|
775
|
+
readonly size: "normal";
|
|
776
|
+
}, {
|
|
777
|
+
readonly id: "meta-llama/llama-4-scout-17b-16e-instruct";
|
|
778
|
+
readonly name: "Llama 4 Scout 17B";
|
|
779
|
+
readonly size: "normal";
|
|
780
|
+
}, {
|
|
781
|
+
readonly id: "llama3-70b-8192";
|
|
782
|
+
readonly name: "Llama 3 70B";
|
|
783
|
+
readonly size: "normal";
|
|
784
|
+
}, {
|
|
785
|
+
readonly id: "qwen/qwen3-32b";
|
|
786
|
+
readonly name: "Qwen3 32B";
|
|
787
|
+
readonly size: "normal";
|
|
788
|
+
}, {
|
|
789
|
+
readonly id: "llama3-8b-8192";
|
|
790
|
+
readonly name: "Llama 3 8B";
|
|
791
|
+
readonly size: "normal";
|
|
792
|
+
}, {
|
|
793
|
+
readonly id: "llama-3.3-70b-versatile";
|
|
794
|
+
readonly name: "Llama 3.3 70B Versatile";
|
|
795
|
+
readonly size: "normal";
|
|
796
|
+
}, {
|
|
797
|
+
readonly id: "llama-3.1-8b-instant";
|
|
798
|
+
readonly name: "Llama 3.1 8B Instant";
|
|
799
|
+
readonly size: "normal";
|
|
800
|
+
}, {
|
|
801
|
+
readonly id: "gemma2-9b-it";
|
|
802
|
+
readonly name: "Gemma 2 9B";
|
|
803
|
+
readonly size: "normal";
|
|
804
|
+
}, {
|
|
805
|
+
readonly id: "moonshotai/kimi-k2-instruct";
|
|
806
|
+
readonly name: "Kimi K2 Instruct";
|
|
807
|
+
readonly size: "normal";
|
|
808
|
+
}, {
|
|
809
|
+
readonly id: "deepseek-r1-distill-llama-70b";
|
|
810
|
+
readonly name: "DeepSeek R1 Distill Llama 70B";
|
|
811
|
+
readonly size: "normal";
|
|
812
|
+
}, {
|
|
813
|
+
readonly id: "openai/gpt-oss-20b";
|
|
814
|
+
readonly name: "GPT OSS 20B";
|
|
815
|
+
readonly size: "normal";
|
|
816
|
+
}, {
|
|
817
|
+
readonly id: "mistral-saba-24b";
|
|
818
|
+
readonly name: "Mistral Saba 24B";
|
|
819
|
+
readonly size: "normal";
|
|
820
|
+
}, {
|
|
821
|
+
readonly id: "qwen-qwq-32b";
|
|
822
|
+
readonly name: "Qwen QwQ 32B";
|
|
823
|
+
readonly size: "normal";
|
|
824
|
+
}];
|
|
825
|
+
readonly huggingface: [{
|
|
826
|
+
readonly id: "Qwen/Qwen3-235B-A22B-Thinking-2507";
|
|
827
|
+
readonly name: "Qwen3-235B-A22B-Thinking-2507";
|
|
828
|
+
readonly size: "normal";
|
|
829
|
+
}, {
|
|
830
|
+
readonly id: "moonshotai/Kimi-K2-Instruct-0905";
|
|
831
|
+
readonly name: "Kimi-K2-Instruct-0905";
|
|
832
|
+
readonly size: "normal";
|
|
833
|
+
}, {
|
|
834
|
+
readonly id: "zai-org/GLM-4.7";
|
|
835
|
+
readonly name: "GLM-4.7";
|
|
836
|
+
readonly size: "normal";
|
|
837
|
+
}, {
|
|
838
|
+
readonly id: "zai-org/GLM-4.7-Flash";
|
|
839
|
+
readonly name: "GLM-4.7-Flash";
|
|
840
|
+
readonly size: "normal";
|
|
841
|
+
}, {
|
|
842
|
+
readonly id: "deepseek-ai/DeepSeek-V3.2";
|
|
843
|
+
readonly name: "DeepSeek-V3.2";
|
|
844
|
+
readonly size: "normal";
|
|
845
|
+
}, {
|
|
846
|
+
readonly id: "Qwen/Qwen3-Coder-480B-A35B-Instruct";
|
|
847
|
+
readonly name: "Qwen3-Coder-480B-A35B-Instruct";
|
|
848
|
+
readonly size: "normal";
|
|
849
|
+
}, {
|
|
850
|
+
readonly id: "Qwen/Qwen3-Next-80B-A3B-Instruct";
|
|
851
|
+
readonly name: "Qwen3-Next-80B-A3B-Instruct";
|
|
852
|
+
readonly size: "normal";
|
|
853
|
+
}, {
|
|
854
|
+
readonly id: "Qwen/Qwen3-Next-80B-A3B-Thinking";
|
|
855
|
+
readonly name: "Qwen3-Next-80B-A3B-Thinking";
|
|
856
|
+
readonly size: "normal";
|
|
857
|
+
}, {
|
|
858
|
+
readonly id: "moonshotai/Kimi-K2.5";
|
|
859
|
+
readonly name: "Kimi-K2.5";
|
|
860
|
+
readonly size: "normal";
|
|
861
|
+
}, {
|
|
862
|
+
readonly id: "MiniMaxAI/MiniMax-M2.1";
|
|
863
|
+
readonly name: "MiniMax-M2.1";
|
|
864
|
+
readonly size: "normal";
|
|
865
|
+
}, {
|
|
866
|
+
readonly id: "moonshotai/Kimi-K2-Instruct";
|
|
867
|
+
readonly name: "Kimi-K2-Instruct";
|
|
868
|
+
readonly size: "normal";
|
|
869
|
+
}, {
|
|
870
|
+
readonly id: "moonshotai/Kimi-K2-Thinking";
|
|
871
|
+
readonly name: "Kimi-K2-Thinking";
|
|
872
|
+
readonly size: "normal";
|
|
873
|
+
}, {
|
|
874
|
+
readonly id: "XiaomiMiMo/MiMo-V2-Flash";
|
|
875
|
+
readonly name: "MiMo-V2-Flash";
|
|
876
|
+
readonly size: "normal";
|
|
877
|
+
}, {
|
|
878
|
+
readonly id: "deepseek-ai/DeepSeek-R1-0528";
|
|
879
|
+
readonly name: "DeepSeek-R1-0528";
|
|
880
|
+
readonly size: "normal";
|
|
881
|
+
}];
|
|
882
|
+
readonly "kimi-coding": [{
|
|
883
|
+
readonly id: "k2p5";
|
|
884
|
+
readonly name: "Kimi K2.5";
|
|
885
|
+
readonly size: "normal";
|
|
886
|
+
}, {
|
|
887
|
+
readonly id: "kimi-k2-thinking";
|
|
888
|
+
readonly name: "Kimi K2 Thinking";
|
|
889
|
+
readonly size: "normal";
|
|
890
|
+
}];
|
|
891
|
+
readonly minimax: [{
|
|
892
|
+
readonly id: "MiniMax-M2.1";
|
|
893
|
+
readonly name: "MiniMax-M2.1";
|
|
894
|
+
readonly size: "normal";
|
|
895
|
+
}, {
|
|
896
|
+
readonly id: "MiniMax-M2";
|
|
897
|
+
readonly name: "MiniMax-M2";
|
|
898
|
+
readonly size: "normal";
|
|
899
|
+
readonly deprecated: true;
|
|
900
|
+
}];
|
|
901
|
+
readonly "minimax-cn": [{
|
|
902
|
+
readonly id: "MiniMax-M2.1";
|
|
903
|
+
readonly name: "MiniMax-M2.1";
|
|
904
|
+
readonly size: "normal";
|
|
905
|
+
}, {
|
|
906
|
+
readonly id: "MiniMax-M2";
|
|
907
|
+
readonly name: "MiniMax-M2";
|
|
908
|
+
readonly size: "normal";
|
|
909
|
+
readonly deprecated: true;
|
|
910
|
+
}];
|
|
911
|
+
readonly mistral: [{
|
|
912
|
+
readonly id: "devstral-medium-latest";
|
|
913
|
+
readonly name: "Devstral 2";
|
|
914
|
+
readonly size: "normal";
|
|
915
|
+
}, {
|
|
916
|
+
readonly id: "codestral-latest";
|
|
917
|
+
readonly name: "Codestral";
|
|
918
|
+
readonly size: "normal";
|
|
919
|
+
}, {
|
|
920
|
+
readonly id: "magistral-medium-latest";
|
|
921
|
+
readonly name: "Magistral Medium";
|
|
922
|
+
readonly size: "normal";
|
|
923
|
+
}, {
|
|
924
|
+
readonly id: "ministral-3b-latest";
|
|
925
|
+
readonly name: "Ministral 3B";
|
|
926
|
+
readonly size: "normal";
|
|
927
|
+
}, {
|
|
928
|
+
readonly id: "ministral-8b-latest";
|
|
929
|
+
readonly name: "Ministral 8B";
|
|
930
|
+
readonly size: "normal";
|
|
931
|
+
}, {
|
|
932
|
+
readonly id: "mistral-large-latest";
|
|
933
|
+
readonly name: "Mistral Large";
|
|
934
|
+
readonly size: "normal";
|
|
935
|
+
}, {
|
|
936
|
+
readonly id: "mistral-medium-latest";
|
|
937
|
+
readonly name: "Mistral Medium";
|
|
938
|
+
readonly size: "normal";
|
|
939
|
+
}, {
|
|
940
|
+
readonly id: "mistral-small-latest";
|
|
941
|
+
readonly name: "Mistral Small";
|
|
942
|
+
readonly size: "normal";
|
|
943
|
+
}, {
|
|
944
|
+
readonly id: "pixtral-large-latest";
|
|
945
|
+
readonly name: "Pixtral Large";
|
|
946
|
+
readonly size: "normal";
|
|
947
|
+
}, {
|
|
948
|
+
readonly id: "mistral-large-2512";
|
|
949
|
+
readonly name: "Mistral Large 3";
|
|
950
|
+
readonly size: "normal";
|
|
951
|
+
}, {
|
|
952
|
+
readonly id: "devstral-2512";
|
|
953
|
+
readonly name: "Devstral 2";
|
|
954
|
+
readonly size: "normal";
|
|
955
|
+
}, {
|
|
956
|
+
readonly id: "labs-devstral-small-2512";
|
|
957
|
+
readonly name: "Devstral Small 2";
|
|
958
|
+
readonly size: "normal";
|
|
959
|
+
}, {
|
|
960
|
+
readonly id: "mistral-medium-2508";
|
|
961
|
+
readonly name: "Mistral Medium 3.1";
|
|
962
|
+
readonly size: "normal";
|
|
963
|
+
}, {
|
|
964
|
+
readonly id: "devstral-medium-2507";
|
|
965
|
+
readonly name: "Devstral Medium";
|
|
966
|
+
readonly size: "normal";
|
|
967
|
+
}, {
|
|
968
|
+
readonly id: "devstral-small-2507";
|
|
969
|
+
readonly name: "Devstral Small";
|
|
970
|
+
readonly size: "normal";
|
|
971
|
+
readonly deprecated: true;
|
|
972
|
+
}, {
|
|
973
|
+
readonly id: "mistral-small-2506";
|
|
974
|
+
readonly name: "Mistral Small 3.2";
|
|
975
|
+
readonly size: "normal";
|
|
976
|
+
}, {
|
|
977
|
+
readonly id: "mistral-medium-2505";
|
|
978
|
+
readonly name: "Mistral Medium 3";
|
|
979
|
+
readonly size: "normal";
|
|
980
|
+
readonly deprecated: true;
|
|
981
|
+
}, {
|
|
982
|
+
readonly id: "devstral-small-2505";
|
|
983
|
+
readonly name: "Devstral Small 2505";
|
|
984
|
+
readonly size: "normal";
|
|
985
|
+
readonly deprecated: true;
|
|
986
|
+
}, {
|
|
987
|
+
readonly id: "mistral-large-2411";
|
|
988
|
+
readonly name: "Mistral Large 2.1";
|
|
989
|
+
readonly size: "normal";
|
|
990
|
+
readonly deprecated: true;
|
|
991
|
+
}, {
|
|
992
|
+
readonly id: "open-mixtral-8x22b";
|
|
993
|
+
readonly name: "Mixtral 8x22B";
|
|
994
|
+
readonly size: "normal";
|
|
995
|
+
}, {
|
|
996
|
+
readonly id: "open-mixtral-8x7b";
|
|
997
|
+
readonly name: "Mixtral 8x7B";
|
|
998
|
+
readonly size: "normal";
|
|
999
|
+
}, {
|
|
1000
|
+
readonly id: "magistral-small";
|
|
1001
|
+
readonly name: "Magistral Small";
|
|
1002
|
+
readonly size: "normal";
|
|
1003
|
+
}, {
|
|
1004
|
+
readonly id: "open-mistral-7b";
|
|
1005
|
+
readonly name: "Mistral 7B";
|
|
1006
|
+
readonly size: "normal";
|
|
1007
|
+
}, {
|
|
1008
|
+
readonly id: "mistral-nemo";
|
|
1009
|
+
readonly name: "Mistral Nemo";
|
|
1010
|
+
readonly size: "normal";
|
|
1011
|
+
}, {
|
|
1012
|
+
readonly id: "pixtral-12b";
|
|
1013
|
+
readonly name: "Pixtral 12B";
|
|
1014
|
+
readonly size: "normal";
|
|
1015
|
+
}];
|
|
1016
|
+
readonly openai: [{
|
|
1017
|
+
readonly id: "gpt-5.2-chat-latest";
|
|
1018
|
+
readonly name: "GPT-5.2 Chat";
|
|
1019
|
+
readonly size: "normal";
|
|
1020
|
+
}, {
|
|
1021
|
+
readonly id: "gpt-5.1-chat-latest";
|
|
1022
|
+
readonly name: "GPT-5.1 Chat";
|
|
1023
|
+
readonly size: "normal";
|
|
1024
|
+
}, {
|
|
1025
|
+
readonly id: "gpt-5-chat-latest";
|
|
1026
|
+
readonly name: "GPT-5 Chat Latest";
|
|
1027
|
+
readonly size: "normal";
|
|
1028
|
+
}, {
|
|
1029
|
+
readonly id: "codex-mini-latest";
|
|
1030
|
+
readonly name: "Codex Mini";
|
|
1031
|
+
readonly size: "normal";
|
|
1032
|
+
}, {
|
|
1033
|
+
readonly id: "gpt-4o-2024-11-20";
|
|
1034
|
+
readonly name: "GPT-4o (2024-11-20)";
|
|
1035
|
+
readonly size: "normal";
|
|
1036
|
+
}, {
|
|
1037
|
+
readonly id: "gpt-4o-2024-08-06";
|
|
1038
|
+
readonly name: "GPT-4o (2024-08-06)";
|
|
1039
|
+
readonly size: "normal";
|
|
1040
|
+
readonly deprecated: true;
|
|
1041
|
+
}, {
|
|
1042
|
+
readonly id: "gpt-4o-2024-05-13";
|
|
1043
|
+
readonly name: "GPT-4o (2024-05-13)";
|
|
1044
|
+
readonly size: "normal";
|
|
1045
|
+
readonly deprecated: true;
|
|
1046
|
+
}, {
|
|
1047
|
+
readonly id: "gpt-5.2";
|
|
1048
|
+
readonly name: "GPT-5.2";
|
|
1049
|
+
readonly size: "normal";
|
|
1050
|
+
}, {
|
|
1051
|
+
readonly id: "gpt-5.2-codex";
|
|
1052
|
+
readonly name: "GPT-5.2 Codex";
|
|
1053
|
+
readonly size: "normal";
|
|
1054
|
+
}, {
|
|
1055
|
+
readonly id: "gpt-5.2-pro";
|
|
1056
|
+
readonly name: "GPT-5.2 Pro";
|
|
1057
|
+
readonly size: "normal";
|
|
1058
|
+
}, {
|
|
1059
|
+
readonly id: "gpt-5.1";
|
|
1060
|
+
readonly name: "GPT-5.1";
|
|
1061
|
+
readonly size: "normal";
|
|
1062
|
+
readonly deprecated: true;
|
|
1063
|
+
}, {
|
|
1064
|
+
readonly id: "gpt-5.1-codex";
|
|
1065
|
+
readonly name: "GPT-5.1 Codex";
|
|
1066
|
+
readonly size: "normal";
|
|
1067
|
+
readonly deprecated: true;
|
|
1068
|
+
}, {
|
|
1069
|
+
readonly id: "gpt-5.1-codex-max";
|
|
1070
|
+
readonly name: "GPT-5.1 Codex Max";
|
|
1071
|
+
readonly size: "normal";
|
|
1072
|
+
}, {
|
|
1073
|
+
readonly id: "gpt-5.1-codex-mini";
|
|
1074
|
+
readonly name: "GPT-5.1 Codex mini";
|
|
1075
|
+
readonly size: "normal";
|
|
1076
|
+
}, {
|
|
1077
|
+
readonly id: "gpt-5";
|
|
1078
|
+
readonly name: "GPT-5";
|
|
1079
|
+
readonly size: "normal";
|
|
1080
|
+
readonly deprecated: true;
|
|
1081
|
+
}, {
|
|
1082
|
+
readonly id: "gpt-5-mini";
|
|
1083
|
+
readonly name: "GPT-5 Mini";
|
|
1084
|
+
readonly size: "normal";
|
|
1085
|
+
}, {
|
|
1086
|
+
readonly id: "gpt-5-nano";
|
|
1087
|
+
readonly name: "GPT-5 Nano";
|
|
1088
|
+
readonly size: "normal";
|
|
1089
|
+
}, {
|
|
1090
|
+
readonly id: "gpt-5-pro";
|
|
1091
|
+
readonly name: "GPT-5 Pro";
|
|
1092
|
+
readonly size: "normal";
|
|
1093
|
+
readonly deprecated: true;
|
|
1094
|
+
}, {
|
|
1095
|
+
readonly id: "gpt-5-codex";
|
|
1096
|
+
readonly name: "GPT-5-Codex";
|
|
1097
|
+
readonly size: "normal";
|
|
1098
|
+
readonly deprecated: true;
|
|
1099
|
+
}, {
|
|
1100
|
+
readonly id: "gpt-4.1";
|
|
1101
|
+
readonly name: "GPT-4.1";
|
|
1102
|
+
readonly size: "normal";
|
|
1103
|
+
readonly deprecated: true;
|
|
1104
|
+
}, {
|
|
1105
|
+
readonly id: "gpt-4.1-mini";
|
|
1106
|
+
readonly name: "GPT-4.1 mini";
|
|
1107
|
+
readonly size: "normal";
|
|
1108
|
+
readonly deprecated: true;
|
|
1109
|
+
}, {
|
|
1110
|
+
readonly id: "gpt-4.1-nano";
|
|
1111
|
+
readonly name: "GPT-4.1 nano";
|
|
1112
|
+
readonly size: "normal";
|
|
1113
|
+
readonly deprecated: true;
|
|
1114
|
+
}, {
|
|
1115
|
+
readonly id: "gpt-4";
|
|
1116
|
+
readonly name: "GPT-4";
|
|
1117
|
+
readonly size: "normal";
|
|
1118
|
+
readonly deprecated: true;
|
|
1119
|
+
}, {
|
|
1120
|
+
readonly id: "gpt-4-turbo";
|
|
1121
|
+
readonly name: "GPT-4 Turbo";
|
|
1122
|
+
readonly size: "normal";
|
|
1123
|
+
}, {
|
|
1124
|
+
readonly id: "gpt-4o";
|
|
1125
|
+
readonly name: "GPT-4o";
|
|
1126
|
+
readonly size: "normal";
|
|
1127
|
+
}, {
|
|
1128
|
+
readonly id: "gpt-4o-mini";
|
|
1129
|
+
readonly name: "GPT-4o mini";
|
|
1130
|
+
readonly size: "normal";
|
|
1131
|
+
}, {
|
|
1132
|
+
readonly id: "o4-mini";
|
|
1133
|
+
readonly name: "o4-mini";
|
|
1134
|
+
readonly size: "normal";
|
|
1135
|
+
}, {
|
|
1136
|
+
readonly id: "o4-mini-deep-research";
|
|
1137
|
+
readonly name: "o4-mini-deep-research";
|
|
1138
|
+
readonly size: "normal";
|
|
1139
|
+
}, {
|
|
1140
|
+
readonly id: "o3";
|
|
1141
|
+
readonly name: "o3";
|
|
1142
|
+
readonly size: "normal";
|
|
1143
|
+
}, {
|
|
1144
|
+
readonly id: "o3-deep-research";
|
|
1145
|
+
readonly name: "o3-deep-research";
|
|
1146
|
+
readonly size: "normal";
|
|
1147
|
+
}, {
|
|
1148
|
+
readonly id: "o3-mini";
|
|
1149
|
+
readonly name: "o3-mini";
|
|
1150
|
+
readonly size: "normal";
|
|
1151
|
+
}, {
|
|
1152
|
+
readonly id: "o3-pro";
|
|
1153
|
+
readonly name: "o3-pro";
|
|
1154
|
+
readonly size: "normal";
|
|
1155
|
+
}, {
|
|
1156
|
+
readonly id: "o1";
|
|
1157
|
+
readonly name: "o1";
|
|
1158
|
+
readonly size: "normal";
|
|
1159
|
+
}, {
|
|
1160
|
+
readonly id: "o1-pro";
|
|
1161
|
+
readonly name: "o1-pro";
|
|
1162
|
+
readonly size: "normal";
|
|
1163
|
+
}];
|
|
1164
|
+
readonly "openai-codex": [{
|
|
1165
|
+
readonly id: "gpt-5.2";
|
|
1166
|
+
readonly name: "GPT-5.2";
|
|
1167
|
+
readonly size: "normal";
|
|
1168
|
+
}, {
|
|
1169
|
+
readonly id: "gpt-5.2-codex";
|
|
1170
|
+
readonly name: "GPT-5.2 Codex";
|
|
1171
|
+
readonly size: "normal";
|
|
1172
|
+
}, {
|
|
1173
|
+
readonly id: "gpt-5.1";
|
|
1174
|
+
readonly name: "GPT-5.1";
|
|
1175
|
+
readonly size: "normal";
|
|
1176
|
+
readonly deprecated: true;
|
|
1177
|
+
}, {
|
|
1178
|
+
readonly id: "gpt-5.1-codex-max";
|
|
1179
|
+
readonly name: "GPT-5.1 Codex Max";
|
|
1180
|
+
readonly size: "normal";
|
|
1181
|
+
}, {
|
|
1182
|
+
readonly id: "gpt-5.1-codex-mini";
|
|
1183
|
+
readonly name: "GPT-5.1 Codex Mini";
|
|
1184
|
+
readonly size: "normal";
|
|
1185
|
+
}];
|
|
1186
|
+
readonly opencode: [{
|
|
1187
|
+
readonly id: "gpt-5.2";
|
|
1188
|
+
readonly name: "GPT-5.2";
|
|
1189
|
+
readonly size: "normal";
|
|
1190
|
+
}, {
|
|
1191
|
+
readonly id: "gpt-5.2-codex";
|
|
1192
|
+
readonly name: "GPT-5.2 Codex";
|
|
1193
|
+
readonly size: "normal";
|
|
1194
|
+
}, {
|
|
1195
|
+
readonly id: "gpt-5.1";
|
|
1196
|
+
readonly name: "GPT-5.1";
|
|
1197
|
+
readonly size: "normal";
|
|
1198
|
+
readonly deprecated: true;
|
|
1199
|
+
}, {
|
|
1200
|
+
readonly id: "gpt-5.1-codex";
|
|
1201
|
+
readonly name: "GPT-5.1 Codex";
|
|
1202
|
+
readonly size: "normal";
|
|
1203
|
+
readonly deprecated: true;
|
|
1204
|
+
}, {
|
|
1205
|
+
readonly id: "gpt-5.1-codex-max";
|
|
1206
|
+
readonly name: "GPT-5.1 Codex Max";
|
|
1207
|
+
readonly size: "normal";
|
|
1208
|
+
}, {
|
|
1209
|
+
readonly id: "gpt-5.1-codex-mini";
|
|
1210
|
+
readonly name: "GPT-5.1 Codex Mini";
|
|
1211
|
+
readonly size: "normal";
|
|
1212
|
+
}, {
|
|
1213
|
+
readonly id: "gpt-5";
|
|
1214
|
+
readonly name: "GPT-5";
|
|
1215
|
+
readonly size: "normal";
|
|
1216
|
+
readonly deprecated: true;
|
|
1217
|
+
}, {
|
|
1218
|
+
readonly id: "gpt-5-codex";
|
|
1219
|
+
readonly name: "GPT-5 Codex";
|
|
1220
|
+
readonly size: "normal";
|
|
1221
|
+
readonly deprecated: true;
|
|
1222
|
+
}, {
|
|
1223
|
+
readonly id: "gpt-5-nano";
|
|
1224
|
+
readonly name: "GPT-5 Nano";
|
|
1225
|
+
readonly size: "normal";
|
|
1226
|
+
}, {
|
|
1227
|
+
readonly id: "glm-4.7";
|
|
1228
|
+
readonly name: "GLM-4.7";
|
|
1229
|
+
readonly size: "normal";
|
|
1230
|
+
}, {
|
|
1231
|
+
readonly id: "glm-4.6";
|
|
1232
|
+
readonly name: "GLM-4.6";
|
|
1233
|
+
readonly size: "normal";
|
|
1234
|
+
readonly deprecated: true;
|
|
1235
|
+
}, {
|
|
1236
|
+
readonly id: "claude-opus-4-5";
|
|
1237
|
+
readonly name: "Claude Opus 4.5";
|
|
1238
|
+
readonly size: "large";
|
|
1239
|
+
}, {
|
|
1240
|
+
readonly id: "claude-sonnet-4-5";
|
|
1241
|
+
readonly name: "Claude Sonnet 4.5";
|
|
1242
|
+
readonly size: "normal";
|
|
1243
|
+
}, {
|
|
1244
|
+
readonly id: "claude-haiku-4-5";
|
|
1245
|
+
readonly name: "Claude Haiku 4.5";
|
|
1246
|
+
readonly size: "small";
|
|
1247
|
+
}, {
|
|
1248
|
+
readonly id: "claude-opus-4-1";
|
|
1249
|
+
readonly name: "Claude Opus 4.1";
|
|
1250
|
+
readonly size: "large";
|
|
1251
|
+
readonly deprecated: true;
|
|
1252
|
+
}, {
|
|
1253
|
+
readonly id: "claude-sonnet-4";
|
|
1254
|
+
readonly name: "Claude Sonnet 4";
|
|
1255
|
+
readonly size: "normal";
|
|
1256
|
+
readonly deprecated: true;
|
|
1257
|
+
}, {
|
|
1258
|
+
readonly id: "claude-3-5-haiku";
|
|
1259
|
+
readonly name: "Claude Haiku 3.5";
|
|
1260
|
+
readonly size: "small";
|
|
1261
|
+
readonly deprecated: true;
|
|
1262
|
+
}, {
|
|
1263
|
+
readonly id: "gemini-3-pro";
|
|
1264
|
+
readonly name: "Gemini 3 Pro";
|
|
1265
|
+
readonly size: "normal";
|
|
1266
|
+
}, {
|
|
1267
|
+
readonly id: "qwen3-coder";
|
|
1268
|
+
readonly name: "Qwen3 Coder";
|
|
1269
|
+
readonly size: "normal";
|
|
1270
|
+
}, {
|
|
1271
|
+
readonly id: "gemini-3-flash";
|
|
1272
|
+
readonly name: "Gemini 3 Flash";
|
|
1273
|
+
readonly size: "small";
|
|
1274
|
+
}, {
|
|
1275
|
+
readonly id: "kimi-k2.5";
|
|
1276
|
+
readonly name: "Kimi K2.5";
|
|
1277
|
+
readonly size: "normal";
|
|
1278
|
+
}, {
|
|
1279
|
+
readonly id: "minimax-m2.1";
|
|
1280
|
+
readonly name: "MiniMax M2.1";
|
|
1281
|
+
readonly size: "normal";
|
|
1282
|
+
}, {
|
|
1283
|
+
readonly id: "kimi-k2";
|
|
1284
|
+
readonly name: "Kimi K2";
|
|
1285
|
+
readonly size: "normal";
|
|
1286
|
+
readonly deprecated: true;
|
|
1287
|
+
}, {
|
|
1288
|
+
readonly id: "kimi-k2-thinking";
|
|
1289
|
+
readonly name: "Kimi K2 Thinking";
|
|
1290
|
+
readonly size: "normal";
|
|
1291
|
+
}, {
|
|
1292
|
+
readonly id: "big-pickle";
|
|
1293
|
+
readonly name: "Big Pickle";
|
|
1294
|
+
readonly size: "normal";
|
|
1295
|
+
}];
|
|
1296
|
+
readonly openrouter: [{
|
|
1297
|
+
readonly id: "mistralai/ministral-14b-2512";
|
|
1298
|
+
readonly name: "Mistral: Ministral 3 14B 2512";
|
|
1299
|
+
readonly size: "normal";
|
|
1300
|
+
}, {
|
|
1301
|
+
readonly id: "mistralai/ministral-3b-2512";
|
|
1302
|
+
readonly name: "Mistral: Ministral 3 3B 2512";
|
|
1303
|
+
readonly size: "normal";
|
|
1304
|
+
}, {
|
|
1305
|
+
readonly id: "mistralai/ministral-8b-2512";
|
|
1306
|
+
readonly name: "Mistral: Ministral 3 8B 2512";
|
|
1307
|
+
readonly size: "normal";
|
|
1308
|
+
}, {
|
|
1309
|
+
readonly id: "mistralai/mistral-large-2512";
|
|
1310
|
+
readonly name: "Mistral: Mistral Large 3 2512";
|
|
1311
|
+
readonly size: "normal";
|
|
1312
|
+
}, {
|
|
1313
|
+
readonly id: "mistralai/devstral-2512";
|
|
1314
|
+
readonly name: "Mistral: Devstral 2 2512";
|
|
1315
|
+
readonly size: "normal";
|
|
1316
|
+
}, {
|
|
1317
|
+
readonly id: "mistralai/codestral-2508";
|
|
1318
|
+
readonly name: "Mistral: Codestral 2508";
|
|
1319
|
+
readonly size: "normal";
|
|
1320
|
+
}, {
|
|
1321
|
+
readonly id: "qwen/qwen-plus-2025-07-28";
|
|
1322
|
+
readonly name: "Qwen: Qwen Plus 0728";
|
|
1323
|
+
readonly size: "normal";
|
|
1324
|
+
}, {
|
|
1325
|
+
readonly id: "qwen/qwen-plus-2025-07-28:thinking";
|
|
1326
|
+
readonly name: "Qwen: Qwen Plus 0728 (thinking)";
|
|
1327
|
+
readonly size: "normal";
|
|
1328
|
+
}, {
|
|
1329
|
+
readonly id: "qwen/qwen3-30b-a3b-instruct-2507";
|
|
1330
|
+
readonly name: "Qwen: Qwen3 30B A3B Instruct 2507";
|
|
1331
|
+
readonly size: "normal";
|
|
1332
|
+
}, {
|
|
1333
|
+
readonly id: "qwen/qwen3-30b-a3b-thinking-2507";
|
|
1334
|
+
readonly name: "Qwen: Qwen3 30B A3B Thinking 2507";
|
|
1335
|
+
readonly size: "normal";
|
|
1336
|
+
}, {
|
|
1337
|
+
readonly id: "qwen/qwen3-235b-a22b-2507";
|
|
1338
|
+
readonly name: "Qwen: Qwen3 235B A22B Instruct 2507";
|
|
1339
|
+
readonly size: "normal";
|
|
1340
|
+
}, {
|
|
1341
|
+
readonly id: "qwen/qwen3-235b-a22b-thinking-2507";
|
|
1342
|
+
readonly name: "Qwen: Qwen3 235B A22B Thinking 2507";
|
|
1343
|
+
readonly size: "normal";
|
|
1344
|
+
}, {
|
|
1345
|
+
readonly id: "mistralai/voxtral-small-24b-2507";
|
|
1346
|
+
readonly name: "Mistral: Voxtral Small 24B 2507";
|
|
1347
|
+
readonly size: "normal";
|
|
1348
|
+
}, {
|
|
1349
|
+
readonly id: "mistralai/mistral-small-24b-instruct-2501";
|
|
1350
|
+
readonly name: "Mistral: Mistral Small 3";
|
|
1351
|
+
readonly size: "normal";
|
|
1352
|
+
}, {
|
|
1353
|
+
readonly id: "openai/gpt-4o-2024-11-20";
|
|
1354
|
+
readonly name: "OpenAI: GPT-4o (2024-11-20)";
|
|
1355
|
+
readonly size: "normal";
|
|
1356
|
+
}, {
|
|
1357
|
+
readonly id: "mistralai/mistral-large-2411";
|
|
1358
|
+
readonly name: "Mistral Large 2411";
|
|
1359
|
+
readonly size: "normal";
|
|
1360
|
+
}, {
|
|
1361
|
+
readonly id: "mistralai/pixtral-large-2411";
|
|
1362
|
+
readonly name: "Mistral: Pixtral Large 2411";
|
|
1363
|
+
readonly size: "normal";
|
|
1364
|
+
}, {
|
|
1365
|
+
readonly id: "openai/gpt-4o-2024-08-06";
|
|
1366
|
+
readonly name: "OpenAI: GPT-4o (2024-08-06)";
|
|
1367
|
+
readonly size: "normal";
|
|
1368
|
+
readonly deprecated: true;
|
|
1369
|
+
}, {
|
|
1370
|
+
readonly id: "openai/gpt-4o-mini-2024-07-18";
|
|
1371
|
+
readonly name: "OpenAI: GPT-4o-mini (2024-07-18)";
|
|
1372
|
+
readonly size: "normal";
|
|
1373
|
+
}, {
|
|
1374
|
+
readonly id: "mistralai/mistral-large-2407";
|
|
1375
|
+
readonly name: "Mistral Large 2407";
|
|
1376
|
+
readonly size: "normal";
|
|
1377
|
+
readonly deprecated: true;
|
|
1378
|
+
}, {
|
|
1379
|
+
readonly id: "openai/gpt-4o-2024-05-13";
|
|
1380
|
+
readonly name: "OpenAI: GPT-4o (2024-05-13)";
|
|
1381
|
+
readonly size: "normal";
|
|
1382
|
+
readonly deprecated: true;
|
|
1383
|
+
}, {
|
|
1384
|
+
readonly id: "openai/gpt-4-1106-preview";
|
|
1385
|
+
readonly name: "OpenAI: GPT-4 Turbo (older v1106)";
|
|
1386
|
+
readonly size: "normal";
|
|
1387
|
+
}, {
|
|
1388
|
+
readonly id: "moonshotai/kimi-k2-0905";
|
|
1389
|
+
readonly name: "MoonshotAI: Kimi K2 0905";
|
|
1390
|
+
readonly size: "normal";
|
|
1391
|
+
readonly deprecated: true;
|
|
1392
|
+
}, {
|
|
1393
|
+
readonly id: "moonshotai/kimi-k2-0905:exacto";
|
|
1394
|
+
readonly name: "MoonshotAI: Kimi K2 0905 (exacto)";
|
|
1395
|
+
readonly size: "normal";
|
|
1396
|
+
readonly deprecated: true;
|
|
1397
|
+
}, {
|
|
1398
|
+
readonly id: "moonshotai/kimi-k2";
|
|
1399
|
+
readonly name: "MoonshotAI: Kimi K2 0711";
|
|
1400
|
+
readonly size: "normal";
|
|
1401
|
+
readonly deprecated: true;
|
|
1402
|
+
}, {
|
|
1403
|
+
readonly id: "openai/gpt-oss-120b";
|
|
1404
|
+
readonly name: "OpenAI: gpt-oss-120b";
|
|
1405
|
+
readonly size: "normal";
|
|
1406
|
+
}, {
|
|
1407
|
+
readonly id: "openai/gpt-oss-120b:exacto";
|
|
1408
|
+
readonly name: "OpenAI: gpt-oss-120b (exacto)";
|
|
1409
|
+
readonly size: "normal";
|
|
1410
|
+
}, {
|
|
1411
|
+
readonly id: "openai/gpt-oss-120b:free";
|
|
1412
|
+
readonly name: "OpenAI: gpt-oss-120b (free)";
|
|
1413
|
+
readonly size: "normal";
|
|
1414
|
+
}, {
|
|
1415
|
+
readonly id: "cohere/command-r-08-2024";
|
|
1416
|
+
readonly name: "Cohere: Command R (08-2024)";
|
|
1417
|
+
readonly size: "normal";
|
|
1418
|
+
}, {
|
|
1419
|
+
readonly id: "cohere/command-r-plus-08-2024";
|
|
1420
|
+
readonly name: "Cohere: Command R+ (08-2024)";
|
|
1421
|
+
readonly size: "normal";
|
|
1422
|
+
}, {
|
|
1423
|
+
readonly id: "mistralai/mixtral-8x22b-instruct";
|
|
1424
|
+
readonly name: "Mistral: Mixtral 8x22B Instruct";
|
|
1425
|
+
readonly size: "normal";
|
|
1426
|
+
}, {
|
|
1427
|
+
readonly id: "mistralai/mixtral-8x7b-instruct";
|
|
1428
|
+
readonly name: "Mistral: Mixtral 8x7B Instruct";
|
|
1429
|
+
readonly size: "normal";
|
|
1430
|
+
}, {
|
|
1431
|
+
readonly id: "openai/gpt-5.2";
|
|
1432
|
+
readonly name: "OpenAI: GPT-5.2";
|
|
1433
|
+
readonly size: "normal";
|
|
1434
|
+
}, {
|
|
1435
|
+
readonly id: "openai/gpt-5.2-chat";
|
|
1436
|
+
readonly name: "OpenAI: GPT-5.2 Chat";
|
|
1437
|
+
readonly size: "normal";
|
|
1438
|
+
}, {
|
|
1439
|
+
readonly id: "openai/gpt-5.2-pro";
|
|
1440
|
+
readonly name: "OpenAI: GPT-5.2 Pro";
|
|
1441
|
+
readonly size: "normal";
|
|
1442
|
+
}, {
|
|
1443
|
+
readonly id: "openai/gpt-5.2-codex";
|
|
1444
|
+
readonly name: "OpenAI: GPT-5.2-Codex";
|
|
1445
|
+
readonly size: "normal";
|
|
1446
|
+
}, {
|
|
1447
|
+
readonly id: "openai/gpt-5.1";
|
|
1448
|
+
readonly name: "OpenAI: GPT-5.1";
|
|
1449
|
+
readonly size: "normal";
|
|
1450
|
+
readonly deprecated: true;
|
|
1451
|
+
}, {
|
|
1452
|
+
readonly id: "openai/gpt-5.1-chat";
|
|
1453
|
+
readonly name: "OpenAI: GPT-5.1 Chat";
|
|
1454
|
+
readonly size: "normal";
|
|
1455
|
+
readonly deprecated: true;
|
|
1456
|
+
}, {
|
|
1457
|
+
readonly id: "openai/gpt-5.1-codex";
|
|
1458
|
+
readonly name: "OpenAI: GPT-5.1-Codex";
|
|
1459
|
+
readonly size: "normal";
|
|
1460
|
+
readonly deprecated: true;
|
|
1461
|
+
}, {
|
|
1462
|
+
readonly id: "openai/gpt-5.1-codex-max";
|
|
1463
|
+
readonly name: "OpenAI: GPT-5.1-Codex-Max";
|
|
1464
|
+
readonly size: "normal";
|
|
1465
|
+
}, {
|
|
1466
|
+
readonly id: "openai/gpt-5.1-codex-mini";
|
|
1467
|
+
readonly name: "OpenAI: GPT-5.1-Codex-Mini";
|
|
1468
|
+
readonly size: "normal";
|
|
1469
|
+
}, {
|
|
1470
|
+
readonly id: "openai/gpt-5";
|
|
1471
|
+
readonly name: "OpenAI: GPT-5";
|
|
1472
|
+
readonly size: "normal";
|
|
1473
|
+
readonly deprecated: true;
|
|
1474
|
+
}, {
|
|
1475
|
+
readonly id: "openai/gpt-5-codex";
|
|
1476
|
+
readonly name: "OpenAI: GPT-5 Codex";
|
|
1477
|
+
readonly size: "normal";
|
|
1478
|
+
readonly deprecated: true;
|
|
1479
|
+
}, {
|
|
1480
|
+
readonly id: "openai/gpt-5-image";
|
|
1481
|
+
readonly name: "OpenAI: GPT-5 Image";
|
|
1482
|
+
readonly size: "normal";
|
|
1483
|
+
}, {
|
|
1484
|
+
readonly id: "openai/gpt-5-image-mini";
|
|
1485
|
+
readonly name: "OpenAI: GPT-5 Image Mini";
|
|
1486
|
+
readonly size: "normal";
|
|
1487
|
+
}, {
|
|
1488
|
+
readonly id: "openai/gpt-5-mini";
|
|
1489
|
+
readonly name: "OpenAI: GPT-5 Mini";
|
|
1490
|
+
readonly size: "normal";
|
|
1491
|
+
}, {
|
|
1492
|
+
readonly id: "openai/gpt-5-nano";
|
|
1493
|
+
readonly name: "OpenAI: GPT-5 Nano";
|
|
1494
|
+
readonly size: "normal";
|
|
1495
|
+
}, {
|
|
1496
|
+
readonly id: "openai/gpt-5-pro";
|
|
1497
|
+
readonly name: "OpenAI: GPT-5 Pro";
|
|
1498
|
+
readonly size: "normal";
|
|
1499
|
+
readonly deprecated: true;
|
|
1500
|
+
}, {
|
|
1501
|
+
readonly id: "nousresearch/hermes-4-70b";
|
|
1502
|
+
readonly name: "Nous: Hermes 4 70B";
|
|
1503
|
+
readonly size: "normal";
|
|
1504
|
+
}, {
|
|
1505
|
+
readonly id: "z-ai/glm-4-32b";
|
|
1506
|
+
readonly name: "Z.AI: GLM 4 32B ";
|
|
1507
|
+
readonly size: "normal";
|
|
1508
|
+
}, {
|
|
1509
|
+
readonly id: "z-ai/glm-4.7";
|
|
1510
|
+
readonly name: "Z.AI: GLM 4.7";
|
|
1511
|
+
readonly size: "normal";
|
|
1512
|
+
}, {
|
|
1513
|
+
readonly id: "z-ai/glm-4.7-flash";
|
|
1514
|
+
readonly name: "Z.AI: GLM 4.7 Flash";
|
|
1515
|
+
readonly size: "normal";
|
|
1516
|
+
}, {
|
|
1517
|
+
readonly id: "z-ai/glm-4.6";
|
|
1518
|
+
readonly name: "Z.AI: GLM 4.6";
|
|
1519
|
+
readonly size: "normal";
|
|
1520
|
+
readonly deprecated: true;
|
|
1521
|
+
}, {
|
|
1522
|
+
readonly id: "z-ai/glm-4.6:exacto";
|
|
1523
|
+
readonly name: "Z.AI: GLM 4.6 (exacto)";
|
|
1524
|
+
readonly size: "normal";
|
|
1525
|
+
readonly deprecated: true;
|
|
1526
|
+
}, {
|
|
1527
|
+
readonly id: "z-ai/glm-4.6v";
|
|
1528
|
+
readonly name: "Z.AI: GLM 4.6V";
|
|
1529
|
+
readonly size: "normal";
|
|
1530
|
+
}, {
|
|
1531
|
+
readonly id: "baidu/ernie-4.5-21b-a3b";
|
|
1532
|
+
readonly name: "Baidu: ERNIE 4.5 21B A3B";
|
|
1533
|
+
readonly size: "normal";
|
|
1534
|
+
}, {
|
|
1535
|
+
readonly id: "anthropic/claude-opus-4.5";
|
|
1536
|
+
readonly name: "Anthropic: Claude Opus 4.5";
|
|
1537
|
+
readonly size: "large";
|
|
1538
|
+
}, {
|
|
1539
|
+
readonly id: "anthropic/claude-sonnet-4.5";
|
|
1540
|
+
readonly name: "Anthropic: Claude Sonnet 4.5";
|
|
1541
|
+
readonly size: "normal";
|
|
1542
|
+
}, {
|
|
1543
|
+
readonly id: "baidu/ernie-4.5-vl-28b-a3b";
|
|
1544
|
+
readonly name: "Baidu: ERNIE 4.5 VL 28B A3B";
|
|
1545
|
+
readonly size: "normal";
|
|
1546
|
+
}, {
|
|
1547
|
+
readonly id: "z-ai/glm-4.5";
|
|
1548
|
+
readonly name: "Z.AI: GLM 4.5";
|
|
1549
|
+
readonly size: "normal";
|
|
1550
|
+
readonly deprecated: true;
|
|
1551
|
+
}, {
|
|
1552
|
+
readonly id: "z-ai/glm-4.5-air";
|
|
1553
|
+
readonly name: "Z.AI: GLM 4.5 Air";
|
|
1554
|
+
readonly size: "normal";
|
|
1555
|
+
}, {
|
|
1556
|
+
readonly id: "z-ai/glm-4.5-air:free";
|
|
1557
|
+
readonly name: "Z.AI: GLM 4.5 Air (free)";
|
|
1558
|
+
readonly size: "normal";
|
|
1559
|
+
}, {
|
|
1560
|
+
readonly id: "z-ai/glm-4.5v";
|
|
1561
|
+
readonly name: "Z.AI: GLM 4.5V";
|
|
1562
|
+
readonly size: "normal";
|
|
1563
|
+
}, {
|
|
1564
|
+
readonly id: "anthropic/claude-haiku-4.5";
|
|
1565
|
+
readonly name: "Anthropic: Claude Haiku 4.5";
|
|
1566
|
+
readonly size: "small";
|
|
1567
|
+
}, {
|
|
1568
|
+
readonly id: "anthropic/claude-opus-4.1";
|
|
1569
|
+
readonly name: "Anthropic: Claude Opus 4.1";
|
|
1570
|
+
readonly size: "large";
|
|
1571
|
+
readonly deprecated: true;
|
|
1572
|
+
}, {
|
|
1573
|
+
readonly id: "openai/gpt-4.1";
|
|
1574
|
+
readonly name: "OpenAI: GPT-4.1";
|
|
1575
|
+
readonly size: "normal";
|
|
1576
|
+
readonly deprecated: true;
|
|
1577
|
+
}, {
|
|
1578
|
+
readonly id: "openai/gpt-4.1-mini";
|
|
1579
|
+
readonly name: "OpenAI: GPT-4.1 Mini";
|
|
1580
|
+
readonly size: "normal";
|
|
1581
|
+
readonly deprecated: true;
|
|
1582
|
+
}, {
|
|
1583
|
+
readonly id: "openai/gpt-4.1-nano";
|
|
1584
|
+
readonly name: "OpenAI: GPT-4.1 Nano";
|
|
1585
|
+
readonly size: "normal";
|
|
1586
|
+
readonly deprecated: true;
|
|
1587
|
+
}, {
|
|
1588
|
+
readonly id: "x-ai/grok-4.1-fast";
|
|
1589
|
+
readonly name: "xAI: Grok 4.1 Fast";
|
|
1590
|
+
readonly size: "normal";
|
|
1591
|
+
}, {
|
|
1592
|
+
readonly id: "anthropic/claude-opus-4";
|
|
1593
|
+
readonly name: "Anthropic: Claude Opus 4";
|
|
1594
|
+
readonly size: "large";
|
|
1595
|
+
readonly deprecated: true;
|
|
1596
|
+
}, {
|
|
1597
|
+
readonly id: "anthropic/claude-sonnet-4";
|
|
1598
|
+
readonly name: "Anthropic: Claude Sonnet 4";
|
|
1599
|
+
readonly size: "normal";
|
|
1600
|
+
readonly deprecated: true;
|
|
1601
|
+
}, {
|
|
1602
|
+
readonly id: "meta-llama/llama-4-maverick";
|
|
1603
|
+
readonly name: "Meta: Llama 4 Maverick";
|
|
1604
|
+
readonly size: "normal";
|
|
1605
|
+
}, {
|
|
1606
|
+
readonly id: "meta-llama/llama-4-scout";
|
|
1607
|
+
readonly name: "Meta: Llama 4 Scout";
|
|
1608
|
+
readonly size: "normal";
|
|
1609
|
+
}, {
|
|
1610
|
+
readonly id: "openai/gpt-4";
|
|
1611
|
+
readonly name: "OpenAI: GPT-4";
|
|
1612
|
+
readonly size: "normal";
|
|
1613
|
+
readonly deprecated: true;
|
|
1614
|
+
}, {
|
|
1615
|
+
readonly id: "openai/gpt-4-0314";
|
|
1616
|
+
readonly name: "OpenAI: GPT-4 (older v0314)";
|
|
1617
|
+
readonly size: "normal";
|
|
1618
|
+
readonly deprecated: true;
|
|
1619
|
+
}, {
|
|
1620
|
+
readonly id: "openai/gpt-4-turbo";
|
|
1621
|
+
readonly name: "OpenAI: GPT-4 Turbo";
|
|
1622
|
+
readonly size: "normal";
|
|
1623
|
+
}, {
|
|
1624
|
+
readonly id: "openai/gpt-4-turbo-preview";
|
|
1625
|
+
readonly name: "OpenAI: GPT-4 Turbo Preview";
|
|
1626
|
+
readonly size: "normal";
|
|
1627
|
+
}, {
|
|
1628
|
+
readonly id: "openai/gpt-4o";
|
|
1629
|
+
readonly name: "OpenAI: GPT-4o";
|
|
1630
|
+
readonly size: "normal";
|
|
1631
|
+
}, {
|
|
1632
|
+
readonly id: "openai/gpt-4o:extended";
|
|
1633
|
+
readonly name: "OpenAI: GPT-4o (extended)";
|
|
1634
|
+
readonly size: "normal";
|
|
1635
|
+
}, {
|
|
1636
|
+
readonly id: "openai/gpt-4o-audio-preview";
|
|
1637
|
+
readonly name: "OpenAI: GPT-4o Audio";
|
|
1638
|
+
readonly size: "normal";
|
|
1639
|
+
}, {
|
|
1640
|
+
readonly id: "openai/gpt-4o-mini";
|
|
1641
|
+
readonly name: "OpenAI: GPT-4o-mini";
|
|
1642
|
+
readonly size: "normal";
|
|
1643
|
+
}, {
|
|
1644
|
+
readonly id: "openai/o4-mini";
|
|
1645
|
+
readonly name: "OpenAI: o4 Mini";
|
|
1646
|
+
readonly size: "normal";
|
|
1647
|
+
}, {
|
|
1648
|
+
readonly id: "openai/o4-mini-deep-research";
|
|
1649
|
+
readonly name: "OpenAI: o4 Mini Deep Research";
|
|
1650
|
+
readonly size: "normal";
|
|
1651
|
+
}, {
|
|
1652
|
+
readonly id: "openai/o4-mini-high";
|
|
1653
|
+
readonly name: "OpenAI: o4 Mini High";
|
|
1654
|
+
readonly size: "normal";
|
|
1655
|
+
}, {
|
|
1656
|
+
readonly id: "x-ai/grok-4";
|
|
1657
|
+
readonly name: "xAI: Grok 4";
|
|
1658
|
+
readonly size: "normal";
|
|
1659
|
+
}, {
|
|
1660
|
+
readonly id: "x-ai/grok-4-fast";
|
|
1661
|
+
readonly name: "xAI: Grok 4 Fast";
|
|
1662
|
+
readonly size: "normal";
|
|
1663
|
+
readonly deprecated: true;
|
|
1664
|
+
}, {
|
|
1665
|
+
readonly id: "qwen/qwen3-32b";
|
|
1666
|
+
readonly name: "Qwen: Qwen3 32B";
|
|
1667
|
+
readonly size: "normal";
|
|
1668
|
+
}, {
|
|
1669
|
+
readonly id: "qwen/qwen3-30b-a3b";
|
|
1670
|
+
readonly name: "Qwen: Qwen3 30B A3B";
|
|
1671
|
+
readonly size: "normal";
|
|
1672
|
+
}, {
|
|
1673
|
+
readonly id: "google/gemma-3-27b-it";
|
|
1674
|
+
readonly name: "Google: Gemma 3 27B";
|
|
1675
|
+
readonly size: "normal";
|
|
1676
|
+
}, {
|
|
1677
|
+
readonly id: "google/gemma-3-27b-it:free";
|
|
1678
|
+
readonly name: "Google: Gemma 3 27B (free)";
|
|
1679
|
+
readonly size: "normal";
|
|
1680
|
+
}, {
|
|
1681
|
+
readonly id: "qwen/qwen3-235b-a22b";
|
|
1682
|
+
readonly name: "Qwen: Qwen3 235B A22B";
|
|
1683
|
+
readonly size: "normal";
|
|
1684
|
+
}, {
|
|
1685
|
+
readonly id: "qwen/qwen3-14b";
|
|
1686
|
+
readonly name: "Qwen: Qwen3 14B";
|
|
1687
|
+
readonly size: "normal";
|
|
1688
|
+
}, {
|
|
1689
|
+
readonly id: "meta-llama/llama-3-8b-instruct";
|
|
1690
|
+
readonly name: "Meta: Llama 3 8B Instruct";
|
|
1691
|
+
readonly size: "normal";
|
|
1692
|
+
readonly deprecated: true;
|
|
1693
|
+
}, {
|
|
1694
|
+
readonly id: "qwen/qwen3-8b";
|
|
1695
|
+
readonly name: "Qwen: Qwen3 8B";
|
|
1696
|
+
readonly size: "normal";
|
|
1697
|
+
}, {
|
|
1698
|
+
readonly id: "anthropic/claude-3.7-sonnet";
|
|
1699
|
+
readonly name: "Anthropic: Claude 3.7 Sonnet";
|
|
1700
|
+
readonly size: "normal";
|
|
1701
|
+
readonly deprecated: true;
|
|
1702
|
+
}, {
|
|
1703
|
+
readonly id: "anthropic/claude-3.7-sonnet:thinking";
|
|
1704
|
+
readonly name: "Anthropic: Claude 3.7 Sonnet (thinking)";
|
|
1705
|
+
readonly size: "normal";
|
|
1706
|
+
readonly deprecated: true;
|
|
1707
|
+
}, {
|
|
1708
|
+
readonly id: "anthropic/claude-3.5-sonnet";
|
|
1709
|
+
readonly name: "Anthropic: Claude 3.5 Sonnet";
|
|
1710
|
+
readonly size: "normal";
|
|
1711
|
+
readonly deprecated: true;
|
|
1712
|
+
}, {
|
|
1713
|
+
readonly id: "openai/gpt-3.5-turbo";
|
|
1714
|
+
readonly name: "OpenAI: GPT-3.5 Turbo";
|
|
1715
|
+
readonly size: "normal";
|
|
1716
|
+
readonly deprecated: true;
|
|
1717
|
+
}, {
|
|
1718
|
+
readonly id: "openai/gpt-3.5-turbo-0613";
|
|
1719
|
+
readonly name: "OpenAI: GPT-3.5 Turbo (older v0613)";
|
|
1720
|
+
readonly size: "normal";
|
|
1721
|
+
readonly deprecated: true;
|
|
1722
|
+
}, {
|
|
1723
|
+
readonly id: "openai/gpt-3.5-turbo-16k";
|
|
1724
|
+
readonly name: "OpenAI: GPT-3.5 Turbo 16k";
|
|
1725
|
+
readonly size: "normal";
|
|
1726
|
+
}, {
|
|
1727
|
+
readonly id: "anthropic/claude-3.5-haiku";
|
|
1728
|
+
readonly name: "Anthropic: Claude 3.5 Haiku";
|
|
1729
|
+
readonly size: "small";
|
|
1730
|
+
readonly deprecated: true;
|
|
1731
|
+
}, {
|
|
1732
|
+
readonly id: "qwen/qwen3-4b:free";
|
|
1733
|
+
readonly name: "Qwen: Qwen3 4B (free)";
|
|
1734
|
+
readonly size: "normal";
|
|
1735
|
+
}, {
|
|
1736
|
+
readonly id: "meta-llama/llama-3.3-70b-instruct";
|
|
1737
|
+
readonly name: "Meta: Llama 3.3 70B Instruct";
|
|
1738
|
+
readonly size: "normal";
|
|
1739
|
+
}, {
|
|
1740
|
+
readonly id: "meta-llama/llama-3.3-70b-instruct:free";
|
|
1741
|
+
readonly name: "Meta: Llama 3.3 70B Instruct (free)";
|
|
1742
|
+
readonly size: "normal";
|
|
1743
|
+
}, {
|
|
1744
|
+
readonly id: "nvidia/llama-3.3-nemotron-super-49b-v1.5";
|
|
1745
|
+
readonly name: "NVIDIA: Llama 3.3 Nemotron Super 49B V1.5";
|
|
1746
|
+
readonly size: "normal";
|
|
1747
|
+
}, {
|
|
1748
|
+
readonly id: "mistralai/mistral-small-3.2-24b-instruct";
|
|
1749
|
+
readonly name: "Mistral: Mistral Small 3.2 24B";
|
|
1750
|
+
readonly size: "normal";
|
|
1751
|
+
}, {
|
|
1752
|
+
readonly id: "deepseek/deepseek-v3.2";
|
|
1753
|
+
readonly name: "DeepSeek: DeepSeek V3.2";
|
|
1754
|
+
readonly size: "normal";
|
|
1755
|
+
}, {
|
|
1756
|
+
readonly id: "deepseek/deepseek-v3.2-exp";
|
|
1757
|
+
readonly name: "DeepSeek: DeepSeek V3.2 Exp";
|
|
1758
|
+
readonly size: "normal";
|
|
1759
|
+
}, {
|
|
1760
|
+
readonly id: "meta-llama/llama-3.1-70b-instruct";
|
|
1761
|
+
readonly name: "Meta: Llama 3.1 70B Instruct";
|
|
1762
|
+
readonly size: "normal";
|
|
1763
|
+
readonly deprecated: true;
|
|
1764
|
+
}, {
|
|
1765
|
+
readonly id: "meta-llama/llama-3.1-405b-instruct";
|
|
1766
|
+
readonly name: "Meta: Llama 3.1 405B Instruct";
|
|
1767
|
+
readonly size: "normal";
|
|
1768
|
+
}, {
|
|
1769
|
+
readonly id: "allenai/olmo-3.1-32b-instruct";
|
|
1770
|
+
readonly name: "AllenAI: Olmo 3.1 32B Instruct";
|
|
1771
|
+
readonly size: "normal";
|
|
1772
|
+
}, {
|
|
1773
|
+
readonly id: "mistralai/mistral-small-3.1-24b-instruct";
|
|
1774
|
+
readonly name: "Mistral: Mistral Small 3.1 24B";
|
|
1775
|
+
readonly size: "normal";
|
|
1776
|
+
readonly deprecated: true;
|
|
1777
|
+
}, {
|
|
1778
|
+
readonly id: "mistralai/mistral-small-3.1-24b-instruct:free";
|
|
1779
|
+
readonly name: "Mistral: Mistral Small 3.1 24B (free)";
|
|
1780
|
+
readonly size: "normal";
|
|
1781
|
+
readonly deprecated: true;
|
|
1782
|
+
}, {
|
|
1783
|
+
readonly id: "meta-llama/llama-3.1-8b-instruct";
|
|
1784
|
+
readonly name: "Meta: Llama 3.1 8B Instruct";
|
|
1785
|
+
readonly size: "normal";
|
|
1786
|
+
}, {
|
|
1787
|
+
readonly id: "deepseek/deepseek-chat-v3.1";
|
|
1788
|
+
readonly name: "DeepSeek: DeepSeek V3.1";
|
|
1789
|
+
readonly size: "normal";
|
|
1790
|
+
readonly deprecated: true;
|
|
1791
|
+
}, {
|
|
1792
|
+
readonly id: "deepseek/deepseek-v3.1-terminus";
|
|
1793
|
+
readonly name: "DeepSeek: DeepSeek V3.1 Terminus";
|
|
1794
|
+
readonly size: "normal";
|
|
1795
|
+
}, {
|
|
1796
|
+
readonly id: "deepseek/deepseek-v3.1-terminus:exacto";
|
|
1797
|
+
readonly name: "DeepSeek: DeepSeek V3.1 Terminus (exacto)";
|
|
1798
|
+
readonly size: "normal";
|
|
1799
|
+
}, {
|
|
1800
|
+
readonly id: "mistralai/mistral-medium-3.1";
|
|
1801
|
+
readonly name: "Mistral: Mistral Medium 3.1";
|
|
1802
|
+
readonly size: "normal";
|
|
1803
|
+
}, {
|
|
1804
|
+
readonly id: "nvidia/llama-3.1-nemotron-70b-instruct";
|
|
1805
|
+
readonly name: "NVIDIA: Llama 3.1 Nemotron 70B Instruct";
|
|
1806
|
+
readonly size: "normal";
|
|
1807
|
+
}, {
|
|
1808
|
+
readonly id: "nex-agi/deepseek-v3.1-nex-n1";
|
|
1809
|
+
readonly name: "Nex AGI: DeepSeek V3.1 Nex N1";
|
|
1810
|
+
readonly size: "normal";
|
|
1811
|
+
}, {
|
|
1812
|
+
readonly id: "sao10k/l3.1-euryale-70b";
|
|
1813
|
+
readonly name: "Sao10K: Llama 3.1 Euryale 70B v2.2";
|
|
1814
|
+
readonly size: "normal";
|
|
1815
|
+
}, {
|
|
1816
|
+
readonly id: "deepseek/deepseek-chat";
|
|
1817
|
+
readonly name: "DeepSeek: DeepSeek V3";
|
|
1818
|
+
readonly size: "normal";
|
|
1819
|
+
readonly deprecated: true;
|
|
1820
|
+
}, {
|
|
1821
|
+
readonly id: "deepseek/deepseek-chat-v3-0324";
|
|
1822
|
+
readonly name: "DeepSeek: DeepSeek V3 0324";
|
|
1823
|
+
readonly size: "normal";
|
|
1824
|
+
readonly deprecated: true;
|
|
1825
|
+
}, {
|
|
1826
|
+
readonly id: "google/gemini-3-pro-preview";
|
|
1827
|
+
readonly name: "Google: Gemini 3 Pro Preview";
|
|
1828
|
+
readonly size: "normal";
|
|
1829
|
+
}, {
|
|
1830
|
+
readonly id: "mistralai/mistral-medium-3";
|
|
1831
|
+
readonly name: "Mistral: Mistral Medium 3";
|
|
1832
|
+
readonly size: "normal";
|
|
1833
|
+
readonly deprecated: true;
|
|
1834
|
+
}, {
|
|
1835
|
+
readonly id: "nvidia/nemotron-3-nano-30b-a3b";
|
|
1836
|
+
readonly name: "NVIDIA: Nemotron 3 Nano 30B A3B";
|
|
1837
|
+
readonly size: "normal";
|
|
1838
|
+
}, {
|
|
1839
|
+
readonly id: "nvidia/nemotron-3-nano-30b-a3b:free";
|
|
1840
|
+
readonly name: "NVIDIA: Nemotron 3 Nano 30B A3B (free)";
|
|
1841
|
+
readonly size: "normal";
|
|
1842
|
+
}, {
|
|
1843
|
+
readonly id: "nousresearch/deephermes-3-mistral-24b-preview";
|
|
1844
|
+
readonly name: "Nous: DeepHermes 3 Mistral 24B Preview";
|
|
1845
|
+
readonly size: "normal";
|
|
1846
|
+
}, {
|
|
1847
|
+
readonly id: "openai/o3";
|
|
1848
|
+
readonly name: "OpenAI: o3";
|
|
1849
|
+
readonly size: "normal";
|
|
1850
|
+
}, {
|
|
1851
|
+
readonly id: "openai/o3-deep-research";
|
|
1852
|
+
readonly name: "OpenAI: o3 Deep Research";
|
|
1853
|
+
readonly size: "normal";
|
|
1854
|
+
}, {
|
|
1855
|
+
readonly id: "openai/o3-mini";
|
|
1856
|
+
readonly name: "OpenAI: o3 Mini";
|
|
1857
|
+
readonly size: "normal";
|
|
1858
|
+
}, {
|
|
1859
|
+
readonly id: "openai/o3-mini-high";
|
|
1860
|
+
readonly name: "OpenAI: o3 Mini High";
|
|
1861
|
+
readonly size: "normal";
|
|
1862
|
+
}, {
|
|
1863
|
+
readonly id: "openai/o3-pro";
|
|
1864
|
+
readonly name: "OpenAI: o3 Pro";
|
|
1865
|
+
readonly size: "normal";
|
|
1866
|
+
}, {
|
|
1867
|
+
readonly id: "prime-intellect/intellect-3";
|
|
1868
|
+
readonly name: "Prime Intellect: INTELLECT-3";
|
|
1869
|
+
readonly size: "normal";
|
|
1870
|
+
}, {
|
|
1871
|
+
readonly id: "qwen/qwen3-coder-30b-a3b-instruct";
|
|
1872
|
+
readonly name: "Qwen: Qwen3 Coder 30B A3B Instruct";
|
|
1873
|
+
readonly size: "normal";
|
|
1874
|
+
}, {
|
|
1875
|
+
readonly id: "qwen/qwen3-coder";
|
|
1876
|
+
readonly name: "Qwen: Qwen3 Coder 480B A35B";
|
|
1877
|
+
readonly size: "normal";
|
|
1878
|
+
}, {
|
|
1879
|
+
readonly id: "qwen/qwen3-coder:exacto";
|
|
1880
|
+
readonly name: "Qwen: Qwen3 Coder 480B A35B (exacto)";
|
|
1881
|
+
readonly size: "normal";
|
|
1882
|
+
}, {
|
|
1883
|
+
readonly id: "qwen/qwen3-coder:free";
|
|
1884
|
+
readonly name: "Qwen: Qwen3 Coder 480B A35B (free)";
|
|
1885
|
+
readonly size: "normal";
|
|
1886
|
+
}, {
|
|
1887
|
+
readonly id: "qwen/qwen3-coder-flash";
|
|
1888
|
+
readonly name: "Qwen: Qwen3 Coder Flash";
|
|
1889
|
+
readonly size: "normal";
|
|
1890
|
+
}, {
|
|
1891
|
+
readonly id: "qwen/qwen3-coder-plus";
|
|
1892
|
+
readonly name: "Qwen: Qwen3 Coder Plus";
|
|
1893
|
+
readonly size: "normal";
|
|
1894
|
+
}, {
|
|
1895
|
+
readonly id: "qwen/qwen3-max";
|
|
1896
|
+
readonly name: "Qwen: Qwen3 Max";
|
|
1897
|
+
readonly size: "normal";
|
|
1898
|
+
}, {
|
|
1899
|
+
readonly id: "qwen/qwen3-next-80b-a3b-instruct";
|
|
1900
|
+
readonly name: "Qwen: Qwen3 Next 80B A3B Instruct";
|
|
1901
|
+
readonly size: "normal";
|
|
1902
|
+
}, {
|
|
1903
|
+
readonly id: "qwen/qwen3-next-80b-a3b-instruct:free";
|
|
1904
|
+
readonly name: "Qwen: Qwen3 Next 80B A3B Instruct (free)";
|
|
1905
|
+
readonly size: "normal";
|
|
1906
|
+
}, {
|
|
1907
|
+
readonly id: "qwen/qwen3-next-80b-a3b-thinking";
|
|
1908
|
+
readonly name: "Qwen: Qwen3 Next 80B A3B Thinking";
|
|
1909
|
+
readonly size: "normal";
|
|
1910
|
+
}, {
|
|
1911
|
+
readonly id: "qwen/qwen3-vl-235b-a22b-instruct";
|
|
1912
|
+
readonly name: "Qwen: Qwen3 VL 235B A22B Instruct";
|
|
1913
|
+
readonly size: "normal";
|
|
1914
|
+
}, {
|
|
1915
|
+
readonly id: "qwen/qwen3-vl-235b-a22b-thinking";
|
|
1916
|
+
readonly name: "Qwen: Qwen3 VL 235B A22B Thinking";
|
|
1917
|
+
readonly size: "normal";
|
|
1918
|
+
}, {
|
|
1919
|
+
readonly id: "qwen/qwen3-vl-30b-a3b-instruct";
|
|
1920
|
+
readonly name: "Qwen: Qwen3 VL 30B A3B Instruct";
|
|
1921
|
+
readonly size: "normal";
|
|
1922
|
+
}, {
|
|
1923
|
+
readonly id: "qwen/qwen3-vl-30b-a3b-thinking";
|
|
1924
|
+
readonly name: "Qwen: Qwen3 VL 30B A3B Thinking";
|
|
1925
|
+
readonly size: "normal";
|
|
1926
|
+
}, {
|
|
1927
|
+
readonly id: "qwen/qwen3-vl-8b-instruct";
|
|
1928
|
+
readonly name: "Qwen: Qwen3 VL 8B Instruct";
|
|
1929
|
+
readonly size: "normal";
|
|
1930
|
+
}, {
|
|
1931
|
+
readonly id: "qwen/qwen3-vl-8b-thinking";
|
|
1932
|
+
readonly name: "Qwen: Qwen3 VL 8B Thinking";
|
|
1933
|
+
readonly size: "normal";
|
|
1934
|
+
}, {
|
|
1935
|
+
readonly id: "stepfun-ai/step3";
|
|
1936
|
+
readonly name: "StepFun: Step3";
|
|
1937
|
+
readonly size: "normal";
|
|
1938
|
+
}, {
|
|
1939
|
+
readonly id: "upstage/solar-pro-3:free";
|
|
1940
|
+
readonly name: "Upstage: Solar Pro 3 (free)";
|
|
1941
|
+
readonly size: "normal";
|
|
1942
|
+
}, {
|
|
1943
|
+
readonly id: "x-ai/grok-3";
|
|
1944
|
+
readonly name: "xAI: Grok 3";
|
|
1945
|
+
readonly size: "normal";
|
|
1946
|
+
readonly deprecated: true;
|
|
1947
|
+
}, {
|
|
1948
|
+
readonly id: "x-ai/grok-3-beta";
|
|
1949
|
+
readonly name: "xAI: Grok 3 Beta";
|
|
1950
|
+
readonly size: "normal";
|
|
1951
|
+
}, {
|
|
1952
|
+
readonly id: "x-ai/grok-3-mini";
|
|
1953
|
+
readonly name: "xAI: Grok 3 Mini";
|
|
1954
|
+
readonly size: "normal";
|
|
1955
|
+
}, {
|
|
1956
|
+
readonly id: "x-ai/grok-3-mini-beta";
|
|
1957
|
+
readonly name: "xAI: Grok 3 Mini Beta";
|
|
1958
|
+
readonly size: "normal";
|
|
1959
|
+
}, {
|
|
1960
|
+
readonly id: "anthropic/claude-3-haiku";
|
|
1961
|
+
readonly name: "Anthropic: Claude 3 Haiku";
|
|
1962
|
+
readonly size: "small";
|
|
1963
|
+
readonly deprecated: true;
|
|
1964
|
+
}, {
|
|
1965
|
+
readonly id: "google/gemini-3-flash-preview";
|
|
1966
|
+
readonly name: "Google: Gemini 3 Flash Preview";
|
|
1967
|
+
readonly size: "small";
|
|
1968
|
+
}, {
|
|
1969
|
+
readonly id: "qwen/qwen-2.5-72b-instruct";
|
|
1970
|
+
readonly name: "Qwen2.5 72B Instruct";
|
|
1971
|
+
readonly size: "normal";
|
|
1972
|
+
}, {
|
|
1973
|
+
readonly id: "qwen/qwen-2.5-7b-instruct";
|
|
1974
|
+
readonly name: "Qwen: Qwen2.5 7B Instruct";
|
|
1975
|
+
readonly size: "normal";
|
|
1976
|
+
}, {
|
|
1977
|
+
readonly id: "google/gemini-2.5-pro";
|
|
1978
|
+
readonly name: "Google: Gemini 2.5 Pro";
|
|
1979
|
+
readonly size: "normal";
|
|
1980
|
+
}, {
|
|
1981
|
+
readonly id: "google/gemini-2.5-pro-preview-05-06";
|
|
1982
|
+
readonly name: "Google: Gemini 2.5 Pro Preview 05-06";
|
|
1983
|
+
readonly size: "normal";
|
|
1984
|
+
readonly deprecated: true;
|
|
1985
|
+
}, {
|
|
1986
|
+
readonly id: "google/gemini-2.5-pro-preview";
|
|
1987
|
+
readonly name: "Google: Gemini 2.5 Pro Preview 06-05";
|
|
1988
|
+
readonly size: "normal";
|
|
1989
|
+
readonly deprecated: true;
|
|
1990
|
+
}, {
|
|
1991
|
+
readonly id: "moonshotai/kimi-k2.5";
|
|
1992
|
+
readonly name: "MoonshotAI: Kimi K2.5";
|
|
1993
|
+
readonly size: "normal";
|
|
1994
|
+
}, {
|
|
1995
|
+
readonly id: "google/gemini-2.5-flash";
|
|
1996
|
+
readonly name: "Google: Gemini 2.5 Flash";
|
|
1997
|
+
readonly size: "small";
|
|
1998
|
+
}, {
|
|
1999
|
+
readonly id: "google/gemini-2.5-flash-lite";
|
|
2000
|
+
readonly name: "Google: Gemini 2.5 Flash Lite";
|
|
2001
|
+
readonly size: "small";
|
|
2002
|
+
}, {
|
|
2003
|
+
readonly id: "google/gemini-2.5-flash-lite-preview-09-2025";
|
|
2004
|
+
readonly name: "Google: Gemini 2.5 Flash Lite Preview 09-2025";
|
|
2005
|
+
readonly size: "small";
|
|
2006
|
+
}, {
|
|
2007
|
+
readonly id: "google/gemini-2.5-flash-preview-09-2025";
|
|
2008
|
+
readonly name: "Google: Gemini 2.5 Flash Preview 09-2025";
|
|
2009
|
+
readonly size: "small";
|
|
2010
|
+
readonly deprecated: true;
|
|
2011
|
+
}, {
|
|
2012
|
+
readonly id: "minimax/minimax-m2.1";
|
|
2013
|
+
readonly name: "MiniMax: MiniMax M2.1";
|
|
2014
|
+
readonly size: "normal";
|
|
2015
|
+
}, {
|
|
2016
|
+
readonly id: "sao10k/l3-euryale-70b";
|
|
2017
|
+
readonly name: "Sao10k: Llama 3 Euryale 70B v2.1";
|
|
2018
|
+
readonly size: "normal";
|
|
2019
|
+
}, {
|
|
2020
|
+
readonly id: "amazon/nova-2-lite-v1";
|
|
2021
|
+
readonly name: "Amazon: Nova 2 Lite";
|
|
2022
|
+
readonly size: "normal";
|
|
2023
|
+
}, {
|
|
2024
|
+
readonly id: "deepcogito/cogito-v2-preview-llama-109b-moe";
|
|
2025
|
+
readonly name: "Cogito V2 Preview Llama 109B";
|
|
2026
|
+
readonly size: "normal";
|
|
2027
|
+
}, {
|
|
2028
|
+
readonly id: "deepcogito/cogito-v2-preview-llama-405b";
|
|
2029
|
+
readonly name: "Deep Cogito: Cogito V2 Preview Llama 405B";
|
|
2030
|
+
readonly size: "normal";
|
|
2031
|
+
}, {
|
|
2032
|
+
readonly id: "deepcogito/cogito-v2-preview-llama-70b";
|
|
2033
|
+
readonly name: "Deep Cogito: Cogito V2 Preview Llama 70B";
|
|
2034
|
+
readonly size: "normal";
|
|
2035
|
+
}, {
|
|
2036
|
+
readonly id: "minimax/minimax-m2";
|
|
2037
|
+
readonly name: "MiniMax: MiniMax M2";
|
|
2038
|
+
readonly size: "normal";
|
|
2039
|
+
readonly deprecated: true;
|
|
2040
|
+
}, {
|
|
2041
|
+
readonly id: "moonshotai/kimi-k2-thinking";
|
|
2042
|
+
readonly name: "MoonshotAI: Kimi K2 Thinking";
|
|
2043
|
+
readonly size: "normal";
|
|
2044
|
+
}, {
|
|
2045
|
+
readonly id: "nvidia/nemotron-nano-12b-v2-vl:free";
|
|
2046
|
+
readonly name: "NVIDIA: Nemotron Nano 12B 2 VL (free)";
|
|
2047
|
+
readonly size: "normal";
|
|
2048
|
+
}, {
|
|
2049
|
+
readonly id: "nvidia/nemotron-nano-9b-v2";
|
|
2050
|
+
readonly name: "NVIDIA: Nemotron Nano 9B V2";
|
|
2051
|
+
readonly size: "normal";
|
|
2052
|
+
}, {
|
|
2053
|
+
readonly id: "nvidia/nemotron-nano-9b-v2:free";
|
|
2054
|
+
readonly name: "NVIDIA: Nemotron Nano 9B V2 (free)";
|
|
2055
|
+
readonly size: "normal";
|
|
2056
|
+
}, {
|
|
2057
|
+
readonly id: "xiaomi/mimo-v2-flash";
|
|
2058
|
+
readonly name: "Xiaomi: MiMo-V2-Flash";
|
|
2059
|
+
readonly size: "normal";
|
|
2060
|
+
}, {
|
|
2061
|
+
readonly id: "google/gemini-2.0-flash-001";
|
|
2062
|
+
readonly name: "Google: Gemini 2.0 Flash";
|
|
2063
|
+
readonly size: "small";
|
|
2064
|
+
readonly deprecated: true;
|
|
2065
|
+
}, {
|
|
2066
|
+
readonly id: "google/gemini-2.0-flash-exp:free";
|
|
2067
|
+
readonly name: "Google: Gemini 2.0 Flash Experimental (free)";
|
|
2068
|
+
readonly size: "small";
|
|
2069
|
+
}, {
|
|
2070
|
+
readonly id: "google/gemini-2.0-flash-lite-001";
|
|
2071
|
+
readonly name: "Google: Gemini 2.0 Flash Lite";
|
|
2072
|
+
readonly size: "small";
|
|
2073
|
+
readonly deprecated: true;
|
|
2074
|
+
}, {
|
|
2075
|
+
readonly id: "ai21/jamba-large-1.7";
|
|
2076
|
+
readonly name: "AI21: Jamba Large 1.7";
|
|
2077
|
+
readonly size: "normal";
|
|
2078
|
+
}, {
|
|
2079
|
+
readonly id: "ai21/jamba-mini-1.7";
|
|
2080
|
+
readonly name: "AI21: Jamba Mini 1.7";
|
|
2081
|
+
readonly size: "normal";
|
|
2082
|
+
}, {
|
|
2083
|
+
readonly id: "bytedance-seed/seed-1.6";
|
|
2084
|
+
readonly name: "ByteDance Seed: Seed 1.6";
|
|
2085
|
+
readonly size: "normal";
|
|
2086
|
+
}, {
|
|
2087
|
+
readonly id: "bytedance-seed/seed-1.6-flash";
|
|
2088
|
+
readonly name: "ByteDance Seed: Seed 1.6 Flash";
|
|
2089
|
+
readonly size: "normal";
|
|
2090
|
+
}, {
|
|
2091
|
+
readonly id: "mistralai/devstral-small";
|
|
2092
|
+
readonly name: "Mistral: Devstral Small 1.1";
|
|
2093
|
+
readonly size: "normal";
|
|
2094
|
+
}, {
|
|
2095
|
+
readonly id: "amazon/nova-lite-v1";
|
|
2096
|
+
readonly name: "Amazon: Nova Lite 1.0";
|
|
2097
|
+
readonly size: "normal";
|
|
2098
|
+
readonly deprecated: true;
|
|
2099
|
+
}, {
|
|
2100
|
+
readonly id: "amazon/nova-micro-v1";
|
|
2101
|
+
readonly name: "Amazon: Nova Micro 1.0";
|
|
2102
|
+
readonly size: "normal";
|
|
2103
|
+
}, {
|
|
2104
|
+
readonly id: "amazon/nova-premier-v1";
|
|
2105
|
+
readonly name: "Amazon: Nova Premier 1.0";
|
|
2106
|
+
readonly size: "normal";
|
|
2107
|
+
}, {
|
|
2108
|
+
readonly id: "amazon/nova-pro-v1";
|
|
2109
|
+
readonly name: "Amazon: Nova Pro 1.0";
|
|
2110
|
+
readonly size: "normal";
|
|
2111
|
+
}, {
|
|
2112
|
+
readonly id: "deepseek/deepseek-r1";
|
|
2113
|
+
readonly name: "DeepSeek: R1";
|
|
2114
|
+
readonly size: "normal";
|
|
2115
|
+
}, {
|
|
2116
|
+
readonly id: "deepseek/deepseek-r1-0528";
|
|
2117
|
+
readonly name: "DeepSeek: R1 0528";
|
|
2118
|
+
readonly size: "normal";
|
|
2119
|
+
}, {
|
|
2120
|
+
readonly id: "deepseek/deepseek-r1-distill-llama-70b";
|
|
2121
|
+
readonly name: "DeepSeek: R1 Distill Llama 70B";
|
|
2122
|
+
readonly size: "normal";
|
|
2123
|
+
}, {
|
|
2124
|
+
readonly id: "kwaipilot/kat-coder-pro";
|
|
2125
|
+
readonly name: "Kwaipilot: KAT-Coder-Pro V1";
|
|
2126
|
+
readonly size: "normal";
|
|
2127
|
+
}, {
|
|
2128
|
+
readonly id: "minimax/minimax-m1";
|
|
2129
|
+
readonly name: "MiniMax: MiniMax M1";
|
|
2130
|
+
readonly size: "normal";
|
|
2131
|
+
}, {
|
|
2132
|
+
readonly id: "openai/o1";
|
|
2133
|
+
readonly name: "OpenAI: o1";
|
|
2134
|
+
readonly size: "normal";
|
|
2135
|
+
}, {
|
|
2136
|
+
readonly id: "tngtech/deepseek-r1t2-chimera";
|
|
2137
|
+
readonly name: "TNG: DeepSeek R1T2 Chimera";
|
|
2138
|
+
readonly size: "normal";
|
|
2139
|
+
}, {
|
|
2140
|
+
readonly id: "tngtech/tng-r1t-chimera";
|
|
2141
|
+
readonly name: "TNG: R1T Chimera";
|
|
2142
|
+
readonly size: "normal";
|
|
2143
|
+
}, {
|
|
2144
|
+
readonly id: "tngtech/tng-r1t-chimera:free";
|
|
2145
|
+
readonly name: "TNG: R1T Chimera (free)";
|
|
2146
|
+
readonly size: "normal";
|
|
2147
|
+
}, {
|
|
2148
|
+
readonly id: "x-ai/grok-code-fast-1";
|
|
2149
|
+
readonly name: "xAI: Grok Code Fast 1";
|
|
2150
|
+
readonly size: "normal";
|
|
2151
|
+
}, {
|
|
2152
|
+
readonly id: "arcee-ai/trinity-large-preview:free";
|
|
2153
|
+
readonly name: "Arcee AI: Trinity Large Preview (free)";
|
|
2154
|
+
readonly size: "normal";
|
|
2155
|
+
}, {
|
|
2156
|
+
readonly id: "arcee-ai/trinity-mini";
|
|
2157
|
+
readonly name: "Arcee AI: Trinity Mini";
|
|
2158
|
+
readonly size: "normal";
|
|
2159
|
+
}, {
|
|
2160
|
+
readonly id: "arcee-ai/trinity-mini:free";
|
|
2161
|
+
readonly name: "Arcee AI: Trinity Mini (free)";
|
|
2162
|
+
readonly size: "normal";
|
|
2163
|
+
}, {
|
|
2164
|
+
readonly id: "arcee-ai/virtuoso-large";
|
|
2165
|
+
readonly name: "Arcee AI: Virtuoso Large";
|
|
2166
|
+
readonly size: "normal";
|
|
2167
|
+
}, {
|
|
2168
|
+
readonly id: "inception/mercury";
|
|
2169
|
+
readonly name: "Inception: Mercury";
|
|
2170
|
+
readonly size: "normal";
|
|
2171
|
+
}, {
|
|
2172
|
+
readonly id: "inception/mercury-coder";
|
|
2173
|
+
readonly name: "Inception: Mercury Coder";
|
|
2174
|
+
readonly size: "normal";
|
|
2175
|
+
}, {
|
|
2176
|
+
readonly id: "mistralai/mistral-large";
|
|
2177
|
+
readonly name: "Mistral Large";
|
|
2178
|
+
readonly size: "normal";
|
|
2179
|
+
}, {
|
|
2180
|
+
readonly id: "mistralai/mistral-tiny";
|
|
2181
|
+
readonly name: "Mistral Tiny";
|
|
2182
|
+
readonly size: "normal";
|
|
2183
|
+
}, {
|
|
2184
|
+
readonly id: "mistralai/devstral-medium";
|
|
2185
|
+
readonly name: "Mistral: Devstral Medium";
|
|
2186
|
+
readonly size: "normal";
|
|
2187
|
+
}, {
|
|
2188
|
+
readonly id: "mistralai/ministral-3b";
|
|
2189
|
+
readonly name: "Mistral: Ministral 3B";
|
|
2190
|
+
readonly size: "normal";
|
|
2191
|
+
readonly deprecated: true;
|
|
2192
|
+
}, {
|
|
2193
|
+
readonly id: "mistralai/ministral-8b";
|
|
2194
|
+
readonly name: "Mistral: Ministral 8B";
|
|
2195
|
+
readonly size: "normal";
|
|
2196
|
+
readonly deprecated: true;
|
|
2197
|
+
}, {
|
|
2198
|
+
readonly id: "mistralai/mistral-nemo";
|
|
2199
|
+
readonly name: "Mistral: Mistral Nemo";
|
|
2200
|
+
readonly size: "normal";
|
|
2201
|
+
}, {
|
|
2202
|
+
readonly id: "mistralai/mistral-small-creative";
|
|
2203
|
+
readonly name: "Mistral: Mistral Small Creative";
|
|
2204
|
+
readonly size: "normal";
|
|
2205
|
+
}, {
|
|
2206
|
+
readonly id: "mistralai/pixtral-12b";
|
|
2207
|
+
readonly name: "Mistral: Pixtral 12B";
|
|
2208
|
+
readonly size: "normal";
|
|
2209
|
+
}, {
|
|
2210
|
+
readonly id: "mistralai/mistral-saba";
|
|
2211
|
+
readonly name: "Mistral: Saba";
|
|
2212
|
+
readonly size: "normal";
|
|
2213
|
+
}, {
|
|
2214
|
+
readonly id: "openai/gpt-oss-20b";
|
|
2215
|
+
readonly name: "OpenAI: gpt-oss-20b";
|
|
2216
|
+
readonly size: "normal";
|
|
2217
|
+
}, {
|
|
2218
|
+
readonly id: "openai/gpt-oss-20b:free";
|
|
2219
|
+
readonly name: "OpenAI: gpt-oss-20b (free)";
|
|
2220
|
+
readonly size: "normal";
|
|
2221
|
+
}, {
|
|
2222
|
+
readonly id: "openai/gpt-oss-safeguard-20b";
|
|
2223
|
+
readonly name: "OpenAI: gpt-oss-safeguard-20b";
|
|
2224
|
+
readonly size: "normal";
|
|
2225
|
+
}, {
|
|
2226
|
+
readonly id: "openrouter/auto";
|
|
2227
|
+
readonly name: "OpenRouter: Auto Router";
|
|
2228
|
+
readonly size: "normal";
|
|
2229
|
+
}, {
|
|
2230
|
+
readonly id: "qwen/qwq-32b";
|
|
2231
|
+
readonly name: "Qwen: QwQ 32B";
|
|
2232
|
+
readonly size: "normal";
|
|
2233
|
+
}, {
|
|
2234
|
+
readonly id: "qwen/qwen-vl-max";
|
|
2235
|
+
readonly name: "Qwen: Qwen VL Max";
|
|
2236
|
+
readonly size: "normal";
|
|
2237
|
+
}, {
|
|
2238
|
+
readonly id: "qwen/qwen-max";
|
|
2239
|
+
readonly name: "Qwen: Qwen-Max ";
|
|
2240
|
+
readonly size: "normal";
|
|
2241
|
+
}, {
|
|
2242
|
+
readonly id: "qwen/qwen-plus";
|
|
2243
|
+
readonly name: "Qwen: Qwen-Plus";
|
|
2244
|
+
readonly size: "normal";
|
|
2245
|
+
}, {
|
|
2246
|
+
readonly id: "qwen/qwen-turbo";
|
|
2247
|
+
readonly name: "Qwen: Qwen-Turbo";
|
|
2248
|
+
readonly size: "normal";
|
|
2249
|
+
}, {
|
|
2250
|
+
readonly id: "relace/relace-search";
|
|
2251
|
+
readonly name: "Relace: Relace Search";
|
|
2252
|
+
readonly size: "normal";
|
|
2253
|
+
}, {
|
|
2254
|
+
readonly id: "thedrummer/rocinante-12b";
|
|
2255
|
+
readonly name: "TheDrummer: Rocinante 12B";
|
|
2256
|
+
readonly size: "normal";
|
|
2257
|
+
}, {
|
|
2258
|
+
readonly id: "thedrummer/unslopnemo-12b";
|
|
2259
|
+
readonly name: "TheDrummer: UnslopNemo 12B";
|
|
2260
|
+
readonly size: "normal";
|
|
2261
|
+
}, {
|
|
2262
|
+
readonly id: "alibaba/tongyi-deepresearch-30b-a3b";
|
|
2263
|
+
readonly name: "Tongyi DeepResearch 30B A3B";
|
|
2264
|
+
readonly size: "normal";
|
|
2265
|
+
}];
|
|
2266
|
+
readonly "vercel-ai-gateway": [{
|
|
2267
|
+
readonly id: "alibaba/qwen3-235b-a22b-thinking";
|
|
2268
|
+
readonly name: "Qwen3 235B A22B Thinking 2507";
|
|
2269
|
+
readonly size: "normal";
|
|
2270
|
+
}, {
|
|
2271
|
+
readonly id: "alibaba/qwen-3-235b";
|
|
2272
|
+
readonly name: "Qwen3 235B A22b Instruct 2507";
|
|
2273
|
+
readonly size: "normal";
|
|
2274
|
+
}, {
|
|
2275
|
+
readonly id: "mistral/pixtral-12b";
|
|
2276
|
+
readonly name: "Pixtral 12B 2409";
|
|
2277
|
+
readonly size: "normal";
|
|
2278
|
+
}, {
|
|
2279
|
+
readonly id: "anthropic/claude-3.5-sonnet-20240620";
|
|
2280
|
+
readonly name: "Claude 3.5 Sonnet (2024-06-20)";
|
|
2281
|
+
readonly size: "normal";
|
|
2282
|
+
readonly deprecated: true;
|
|
2283
|
+
}, {
|
|
2284
|
+
readonly id: "openai/gpt-oss-120b";
|
|
2285
|
+
readonly name: "gpt-oss-120b";
|
|
2286
|
+
readonly size: "normal";
|
|
2287
|
+
}, {
|
|
2288
|
+
readonly id: "openai/gpt-5.2-pro";
|
|
2289
|
+
readonly name: "GPT 5.2 ";
|
|
2290
|
+
readonly size: "normal";
|
|
2291
|
+
}, {
|
|
2292
|
+
readonly id: "openai/gpt-5.2";
|
|
2293
|
+
readonly name: "GPT-5.2";
|
|
2294
|
+
readonly size: "normal";
|
|
2295
|
+
}, {
|
|
2296
|
+
readonly id: "openai/gpt-5.2-chat";
|
|
2297
|
+
readonly name: "GPT-5.2 Chat";
|
|
2298
|
+
readonly size: "normal";
|
|
2299
|
+
}, {
|
|
2300
|
+
readonly id: "openai/gpt-5.2-codex";
|
|
2301
|
+
readonly name: "GPT-5.2-Codex";
|
|
2302
|
+
readonly size: "normal";
|
|
2303
|
+
}, {
|
|
2304
|
+
readonly id: "openai/gpt-5.1-codex-max";
|
|
2305
|
+
readonly name: "GPT 5.1 Codex Max";
|
|
2306
|
+
readonly size: "normal";
|
|
2307
|
+
}, {
|
|
2308
|
+
readonly id: "openai/gpt-5.1-thinking";
|
|
2309
|
+
readonly name: "GPT 5.1 Thinking";
|
|
2310
|
+
readonly size: "normal";
|
|
2311
|
+
}, {
|
|
2312
|
+
readonly id: "openai/gpt-5.1-codex-mini";
|
|
2313
|
+
readonly name: "GPT-5.1 Codex mini";
|
|
2314
|
+
readonly size: "normal";
|
|
2315
|
+
}, {
|
|
2316
|
+
readonly id: "openai/gpt-5.1-instant";
|
|
2317
|
+
readonly name: "GPT-5.1 Instant";
|
|
2318
|
+
readonly size: "normal";
|
|
2319
|
+
}, {
|
|
2320
|
+
readonly id: "openai/gpt-5.1-codex";
|
|
2321
|
+
readonly name: "GPT-5.1-Codex";
|
|
2322
|
+
readonly size: "normal";
|
|
2323
|
+
readonly deprecated: true;
|
|
2324
|
+
}, {
|
|
2325
|
+
readonly id: "openai/gpt-5";
|
|
2326
|
+
readonly name: "GPT-5";
|
|
2327
|
+
readonly size: "normal";
|
|
2328
|
+
readonly deprecated: true;
|
|
2329
|
+
}, {
|
|
2330
|
+
readonly id: "openai/gpt-5-chat";
|
|
2331
|
+
readonly name: "GPT-5 Chat";
|
|
2332
|
+
readonly size: "normal";
|
|
2333
|
+
readonly deprecated: true;
|
|
2334
|
+
}, {
|
|
2335
|
+
readonly id: "openai/gpt-5-mini";
|
|
2336
|
+
readonly name: "GPT-5 mini";
|
|
2337
|
+
readonly size: "normal";
|
|
2338
|
+
}, {
|
|
2339
|
+
readonly id: "openai/gpt-5-nano";
|
|
2340
|
+
readonly name: "GPT-5 nano";
|
|
2341
|
+
readonly size: "normal";
|
|
2342
|
+
}, {
|
|
2343
|
+
readonly id: "openai/gpt-5-pro";
|
|
2344
|
+
readonly name: "GPT-5 pro";
|
|
2345
|
+
readonly size: "normal";
|
|
2346
|
+
}, {
|
|
2347
|
+
readonly id: "openai/gpt-5-codex";
|
|
2348
|
+
readonly name: "GPT-5-Codex";
|
|
2349
|
+
readonly size: "normal";
|
|
2350
|
+
readonly deprecated: true;
|
|
2351
|
+
}, {
|
|
2352
|
+
readonly id: "zai/glm-4.7";
|
|
2353
|
+
readonly name: "GLM 4.7";
|
|
2354
|
+
readonly size: "normal";
|
|
2355
|
+
}, {
|
|
2356
|
+
readonly id: "zai/glm-4.7-flashx";
|
|
2357
|
+
readonly name: "GLM 4.7 FlashX";
|
|
2358
|
+
readonly size: "normal";
|
|
2359
|
+
}, {
|
|
2360
|
+
readonly id: "zai/glm-4.6";
|
|
2361
|
+
readonly name: "GLM 4.6";
|
|
2362
|
+
readonly size: "normal";
|
|
2363
|
+
readonly deprecated: true;
|
|
2364
|
+
}, {
|
|
2365
|
+
readonly id: "zai/glm-4.6v";
|
|
2366
|
+
readonly name: "GLM-4.6V";
|
|
2367
|
+
readonly size: "normal";
|
|
2368
|
+
}, {
|
|
2369
|
+
readonly id: "zai/glm-4.6v-flash";
|
|
2370
|
+
readonly name: "GLM-4.6V-Flash";
|
|
2371
|
+
readonly size: "normal";
|
|
2372
|
+
}, {
|
|
2373
|
+
readonly id: "anthropic/claude-opus-4.5";
|
|
2374
|
+
readonly name: "Claude Opus 4.5";
|
|
2375
|
+
readonly size: "large";
|
|
2376
|
+
}, {
|
|
2377
|
+
readonly id: "anthropic/claude-sonnet-4.5";
|
|
2378
|
+
readonly name: "Claude Sonnet 4.5";
|
|
2379
|
+
readonly size: "normal";
|
|
2380
|
+
}, {
|
|
2381
|
+
readonly id: "zai/glm-4.5-air";
|
|
2382
|
+
readonly name: "GLM 4.5 Air";
|
|
2383
|
+
readonly size: "normal";
|
|
2384
|
+
}, {
|
|
2385
|
+
readonly id: "zai/glm-4.5v";
|
|
2386
|
+
readonly name: "GLM 4.5V";
|
|
2387
|
+
readonly size: "normal";
|
|
2388
|
+
}, {
|
|
2389
|
+
readonly id: "zai/glm-4.5";
|
|
2390
|
+
readonly name: "GLM-4.5";
|
|
2391
|
+
readonly size: "normal";
|
|
2392
|
+
readonly deprecated: true;
|
|
2393
|
+
}, {
|
|
2394
|
+
readonly id: "anthropic/claude-haiku-4.5";
|
|
2395
|
+
readonly name: "Claude Haiku 4.5";
|
|
2396
|
+
readonly size: "small";
|
|
2397
|
+
}, {
|
|
2398
|
+
readonly id: "anthropic/claude-opus-4.1";
|
|
2399
|
+
readonly name: "Claude Opus 4.1";
|
|
2400
|
+
readonly size: "large";
|
|
2401
|
+
readonly deprecated: true;
|
|
2402
|
+
}, {
|
|
2403
|
+
readonly id: "openai/gpt-4.1";
|
|
2404
|
+
readonly name: "GPT-4.1";
|
|
2405
|
+
readonly size: "normal";
|
|
2406
|
+
readonly deprecated: true;
|
|
2407
|
+
}, {
|
|
2408
|
+
readonly id: "openai/gpt-4.1-mini";
|
|
2409
|
+
readonly name: "GPT-4.1 mini";
|
|
2410
|
+
readonly size: "normal";
|
|
2411
|
+
readonly deprecated: true;
|
|
2412
|
+
}, {
|
|
2413
|
+
readonly id: "openai/gpt-4.1-nano";
|
|
2414
|
+
readonly name: "GPT-4.1 nano";
|
|
2415
|
+
readonly size: "normal";
|
|
2416
|
+
readonly deprecated: true;
|
|
2417
|
+
}, {
|
|
2418
|
+
readonly id: "xai/grok-4.1-fast-non-reasoning";
|
|
2419
|
+
readonly name: "Grok 4.1 Fast Non-Reasoning";
|
|
2420
|
+
readonly size: "normal";
|
|
2421
|
+
}, {
|
|
2422
|
+
readonly id: "xai/grok-4.1-fast-reasoning";
|
|
2423
|
+
readonly name: "Grok 4.1 Fast Reasoning";
|
|
2424
|
+
readonly size: "normal";
|
|
2425
|
+
}, {
|
|
2426
|
+
readonly id: "anthropic/claude-opus-4";
|
|
2427
|
+
readonly name: "Claude Opus 4";
|
|
2428
|
+
readonly size: "large";
|
|
2429
|
+
readonly deprecated: true;
|
|
2430
|
+
}, {
|
|
2431
|
+
readonly id: "anthropic/claude-sonnet-4";
|
|
2432
|
+
readonly name: "Claude Sonnet 4";
|
|
2433
|
+
readonly size: "normal";
|
|
2434
|
+
readonly deprecated: true;
|
|
2435
|
+
}, {
|
|
2436
|
+
readonly id: "openai/gpt-4-turbo";
|
|
2437
|
+
readonly name: "GPT-4 Turbo";
|
|
2438
|
+
readonly size: "normal";
|
|
2439
|
+
}, {
|
|
2440
|
+
readonly id: "openai/gpt-4o";
|
|
2441
|
+
readonly name: "GPT-4o";
|
|
2442
|
+
readonly size: "normal";
|
|
2443
|
+
}, {
|
|
2444
|
+
readonly id: "openai/gpt-4o-mini";
|
|
2445
|
+
readonly name: "GPT-4o mini";
|
|
2446
|
+
readonly size: "normal";
|
|
2447
|
+
}, {
|
|
2448
|
+
readonly id: "xai/grok-4";
|
|
2449
|
+
readonly name: "Grok 4";
|
|
2450
|
+
readonly size: "normal";
|
|
2451
|
+
}, {
|
|
2452
|
+
readonly id: "xai/grok-4-fast-non-reasoning";
|
|
2453
|
+
readonly name: "Grok 4 Fast Non-Reasoning";
|
|
2454
|
+
readonly size: "normal";
|
|
2455
|
+
readonly deprecated: true;
|
|
2456
|
+
}, {
|
|
2457
|
+
readonly id: "xai/grok-4-fast-reasoning";
|
|
2458
|
+
readonly name: "Grok 4 Fast Reasoning";
|
|
2459
|
+
readonly size: "normal";
|
|
2460
|
+
readonly deprecated: true;
|
|
2461
|
+
}, {
|
|
2462
|
+
readonly id: "meta/llama-4-maverick";
|
|
2463
|
+
readonly name: "Llama 4 Maverick 17B Instruct";
|
|
2464
|
+
readonly size: "normal";
|
|
2465
|
+
}, {
|
|
2466
|
+
readonly id: "meta/llama-4-scout";
|
|
2467
|
+
readonly name: "Llama 4 Scout 17B Instruct";
|
|
2468
|
+
readonly size: "normal";
|
|
2469
|
+
}, {
|
|
2470
|
+
readonly id: "openai/o4-mini";
|
|
2471
|
+
readonly name: "o4-mini";
|
|
2472
|
+
readonly size: "normal";
|
|
2473
|
+
}, {
|
|
2474
|
+
readonly id: "alibaba/qwen-3-32b";
|
|
2475
|
+
readonly name: "Qwen 3.32B";
|
|
2476
|
+
readonly size: "normal";
|
|
2477
|
+
}, {
|
|
2478
|
+
readonly id: "alibaba/qwen-3-30b";
|
|
2479
|
+
readonly name: "Qwen3-30B-A3B";
|
|
2480
|
+
readonly size: "normal";
|
|
2481
|
+
}, {
|
|
2482
|
+
readonly id: "alibaba/qwen-3-14b";
|
|
2483
|
+
readonly name: "Qwen3-14B";
|
|
2484
|
+
readonly size: "normal";
|
|
2485
|
+
}, {
|
|
2486
|
+
readonly id: "anthropic/claude-3.7-sonnet";
|
|
2487
|
+
readonly name: "Claude 3.7 Sonnet";
|
|
2488
|
+
readonly size: "normal";
|
|
2489
|
+
readonly deprecated: true;
|
|
2490
|
+
}, {
|
|
2491
|
+
readonly id: "anthropic/claude-3.5-sonnet";
|
|
2492
|
+
readonly name: "Claude 3.5 Sonnet";
|
|
2493
|
+
readonly size: "normal";
|
|
2494
|
+
readonly deprecated: true;
|
|
2495
|
+
}, {
|
|
2496
|
+
readonly id: "anthropic/claude-3.5-haiku";
|
|
2497
|
+
readonly name: "Claude 3.5 Haiku";
|
|
2498
|
+
readonly size: "small";
|
|
2499
|
+
readonly deprecated: true;
|
|
2500
|
+
}, {
|
|
2501
|
+
readonly id: "meta/llama-3.3-70b";
|
|
2502
|
+
readonly name: "Llama 3.3 70B Instruct";
|
|
2503
|
+
readonly size: "normal";
|
|
2504
|
+
}, {
|
|
2505
|
+
readonly id: "meta/llama-3.2-90b";
|
|
2506
|
+
readonly name: "Llama 3.2 90B Vision Instruct";
|
|
2507
|
+
readonly size: "normal";
|
|
2508
|
+
}, {
|
|
2509
|
+
readonly id: "meta/llama-3.2-11b";
|
|
2510
|
+
readonly name: "Llama 3.2 11B Vision Instruct";
|
|
2511
|
+
readonly size: "normal";
|
|
2512
|
+
}, {
|
|
2513
|
+
readonly id: "deepseek/deepseek-v3.2-exp";
|
|
2514
|
+
readonly name: "DeepSeek V3.2 Exp";
|
|
2515
|
+
readonly size: "normal";
|
|
2516
|
+
}, {
|
|
2517
|
+
readonly id: "deepseek/deepseek-v3.2-thinking";
|
|
2518
|
+
readonly name: "DeepSeek V3.2 Thinking";
|
|
2519
|
+
readonly size: "normal";
|
|
2520
|
+
}, {
|
|
2521
|
+
readonly id: "meta/llama-3.1-70b";
|
|
2522
|
+
readonly name: "Llama 3.1 70B Instruct";
|
|
2523
|
+
readonly size: "normal";
|
|
2524
|
+
readonly deprecated: true;
|
|
2525
|
+
}, {
|
|
2526
|
+
readonly id: "meta/llama-3.1-8b";
|
|
2527
|
+
readonly name: "Llama 3.1 8B Instruct";
|
|
2528
|
+
readonly size: "normal";
|
|
2529
|
+
}, {
|
|
2530
|
+
readonly id: "deepseek/deepseek-v3.1-terminus";
|
|
2531
|
+
readonly name: "DeepSeek V3.1 Terminus";
|
|
2532
|
+
readonly size: "normal";
|
|
2533
|
+
}, {
|
|
2534
|
+
readonly id: "deepseek/deepseek-v3.1";
|
|
2535
|
+
readonly name: "DeepSeek-V3.1";
|
|
2536
|
+
readonly size: "normal";
|
|
2537
|
+
}, {
|
|
2538
|
+
readonly id: "mistral/mistral-medium";
|
|
2539
|
+
readonly name: "Mistral Medium 3.1";
|
|
2540
|
+
readonly size: "normal";
|
|
2541
|
+
}, {
|
|
2542
|
+
readonly id: "deepseek/deepseek-v3";
|
|
2543
|
+
readonly name: "DeepSeek V3 0324";
|
|
2544
|
+
readonly size: "normal";
|
|
2545
|
+
readonly deprecated: true;
|
|
2546
|
+
}, {
|
|
2547
|
+
readonly id: "google/gemini-3-pro-preview";
|
|
2548
|
+
readonly name: "Gemini 3 Pro Preview";
|
|
2549
|
+
readonly size: "normal";
|
|
2550
|
+
}, {
|
|
2551
|
+
readonly id: "xai/grok-3";
|
|
2552
|
+
readonly name: "Grok 3 Beta";
|
|
2553
|
+
readonly size: "normal";
|
|
2554
|
+
}, {
|
|
2555
|
+
readonly id: "xai/grok-3-fast";
|
|
2556
|
+
readonly name: "Grok 3 Fast Beta";
|
|
2557
|
+
readonly size: "normal";
|
|
2558
|
+
}, {
|
|
2559
|
+
readonly id: "xai/grok-3-mini";
|
|
2560
|
+
readonly name: "Grok 3 Mini Beta";
|
|
2561
|
+
readonly size: "normal";
|
|
2562
|
+
}, {
|
|
2563
|
+
readonly id: "xai/grok-3-mini-fast";
|
|
2564
|
+
readonly name: "Grok 3 Mini Fast Beta";
|
|
2565
|
+
readonly size: "normal";
|
|
2566
|
+
}, {
|
|
2567
|
+
readonly id: "prime-intellect/intellect-3";
|
|
2568
|
+
readonly name: "INTELLECT 3";
|
|
2569
|
+
readonly size: "normal";
|
|
2570
|
+
}, {
|
|
2571
|
+
readonly id: "alibaba/qwen3-coder-30b-a3b";
|
|
2572
|
+
readonly name: "Qwen 3 Coder 30B A3B Instruct";
|
|
2573
|
+
readonly size: "normal";
|
|
2574
|
+
}, {
|
|
2575
|
+
readonly id: "alibaba/qwen3-max-thinking";
|
|
2576
|
+
readonly name: "Qwen 3 Max Thinking";
|
|
2577
|
+
readonly size: "normal";
|
|
2578
|
+
}, {
|
|
2579
|
+
readonly id: "alibaba/qwen3-coder";
|
|
2580
|
+
readonly name: "Qwen3 Coder 480B A35B Instruct";
|
|
2581
|
+
readonly size: "normal";
|
|
2582
|
+
}, {
|
|
2583
|
+
readonly id: "alibaba/qwen3-coder-plus";
|
|
2584
|
+
readonly name: "Qwen3 Coder Plus";
|
|
2585
|
+
readonly size: "normal";
|
|
2586
|
+
}, {
|
|
2587
|
+
readonly id: "alibaba/qwen3-max";
|
|
2588
|
+
readonly name: "Qwen3 Max";
|
|
2589
|
+
readonly size: "normal";
|
|
2590
|
+
}, {
|
|
2591
|
+
readonly id: "alibaba/qwen3-max-preview";
|
|
2592
|
+
readonly name: "Qwen3 Max Preview";
|
|
2593
|
+
readonly size: "normal";
|
|
2594
|
+
}, {
|
|
2595
|
+
readonly id: "openai/o3";
|
|
2596
|
+
readonly name: "o3";
|
|
2597
|
+
readonly size: "normal";
|
|
2598
|
+
}, {
|
|
2599
|
+
readonly id: "openai/o3-pro";
|
|
2600
|
+
readonly name: "o3 Pro";
|
|
2601
|
+
readonly size: "normal";
|
|
2602
|
+
}, {
|
|
2603
|
+
readonly id: "openai/o3-deep-research";
|
|
2604
|
+
readonly name: "o3-deep-research";
|
|
2605
|
+
readonly size: "normal";
|
|
2606
|
+
}, {
|
|
2607
|
+
readonly id: "openai/o3-mini";
|
|
2608
|
+
readonly name: "o3-mini";
|
|
2609
|
+
readonly size: "normal";
|
|
2610
|
+
}, {
|
|
2611
|
+
readonly id: "anthropic/claude-3-haiku";
|
|
2612
|
+
readonly name: "Claude 3 Haiku";
|
|
2613
|
+
readonly size: "small";
|
|
2614
|
+
readonly deprecated: true;
|
|
2615
|
+
}, {
|
|
2616
|
+
readonly id: "google/gemini-3-flash";
|
|
2617
|
+
readonly name: "Gemini 3 Flash";
|
|
2618
|
+
readonly size: "small";
|
|
2619
|
+
}, {
|
|
2620
|
+
readonly id: "google/gemini-2.5-pro";
|
|
2621
|
+
readonly name: "Gemini 2.5 Pro";
|
|
2622
|
+
readonly size: "normal";
|
|
2623
|
+
}, {
|
|
2624
|
+
readonly id: "moonshotai/kimi-k2.5";
|
|
2625
|
+
readonly name: "Kimi K2.5";
|
|
2626
|
+
readonly size: "normal";
|
|
2627
|
+
}, {
|
|
2628
|
+
readonly id: "google/gemini-2.5-flash";
|
|
2629
|
+
readonly name: "Gemini 2.5 Flash";
|
|
2630
|
+
readonly size: "small";
|
|
2631
|
+
readonly deprecated: true;
|
|
2632
|
+
}, {
|
|
2633
|
+
readonly id: "google/gemini-2.5-flash-lite";
|
|
2634
|
+
readonly name: "Gemini 2.5 Flash Lite";
|
|
2635
|
+
readonly size: "small";
|
|
2636
|
+
}, {
|
|
2637
|
+
readonly id: "google/gemini-2.5-flash-lite-preview-09-2025";
|
|
2638
|
+
readonly name: "Gemini 2.5 Flash Lite Preview 09-2025";
|
|
2639
|
+
readonly size: "small";
|
|
2640
|
+
}, {
|
|
2641
|
+
readonly id: "google/gemini-2.5-flash-preview-09-2025";
|
|
2642
|
+
readonly name: "Gemini 2.5 Flash Preview 09-2025";
|
|
2643
|
+
readonly size: "small";
|
|
2644
|
+
}, {
|
|
2645
|
+
readonly id: "minimax/minimax-m2.1";
|
|
2646
|
+
readonly name: "MiniMax M2.1";
|
|
2647
|
+
readonly size: "normal";
|
|
2648
|
+
}, {
|
|
2649
|
+
readonly id: "minimax/minimax-m2.1-lightning";
|
|
2650
|
+
readonly name: "MiniMax M2.1 Lightning";
|
|
2651
|
+
readonly size: "normal";
|
|
2652
|
+
}, {
|
|
2653
|
+
readonly id: "mistral/devstral-2";
|
|
2654
|
+
readonly name: "Devstral 2";
|
|
2655
|
+
readonly size: "normal";
|
|
2656
|
+
}, {
|
|
2657
|
+
readonly id: "mistral/devstral-small-2";
|
|
2658
|
+
readonly name: "Devstral Small 2";
|
|
2659
|
+
readonly size: "normal";
|
|
2660
|
+
}, {
|
|
2661
|
+
readonly id: "xai/grok-2-vision";
|
|
2662
|
+
readonly name: "Grok 2 Vision";
|
|
2663
|
+
readonly size: "normal";
|
|
2664
|
+
}, {
|
|
2665
|
+
readonly id: "moonshotai/kimi-k2";
|
|
2666
|
+
readonly name: "Kimi K2";
|
|
2667
|
+
readonly size: "normal";
|
|
2668
|
+
readonly deprecated: true;
|
|
2669
|
+
}, {
|
|
2670
|
+
readonly id: "moonshotai/kimi-k2-thinking";
|
|
2671
|
+
readonly name: "Kimi K2 Thinking";
|
|
2672
|
+
readonly size: "normal";
|
|
2673
|
+
}, {
|
|
2674
|
+
readonly id: "moonshotai/kimi-k2-thinking-turbo";
|
|
2675
|
+
readonly name: "Kimi K2 Thinking Turbo";
|
|
2676
|
+
readonly size: "normal";
|
|
2677
|
+
}, {
|
|
2678
|
+
readonly id: "moonshotai/kimi-k2-turbo";
|
|
2679
|
+
readonly name: "Kimi K2 Turbo";
|
|
2680
|
+
readonly size: "normal";
|
|
2681
|
+
}, {
|
|
2682
|
+
readonly id: "xiaomi/mimo-v2-flash";
|
|
2683
|
+
readonly name: "MiMo V2 Flash";
|
|
2684
|
+
readonly size: "normal";
|
|
2685
|
+
}, {
|
|
2686
|
+
readonly id: "minimax/minimax-m2";
|
|
2687
|
+
readonly name: "MiniMax M2";
|
|
2688
|
+
readonly size: "normal";
|
|
2689
|
+
readonly deprecated: true;
|
|
2690
|
+
}, {
|
|
2691
|
+
readonly id: "nvidia/nemotron-nano-12b-v2-vl";
|
|
2692
|
+
readonly name: "Nvidia Nemotron Nano 12B V2 VL";
|
|
2693
|
+
readonly size: "normal";
|
|
2694
|
+
}, {
|
|
2695
|
+
readonly id: "nvidia/nemotron-nano-9b-v2";
|
|
2696
|
+
readonly name: "Nvidia Nemotron Nano 9B V2";
|
|
2697
|
+
readonly size: "normal";
|
|
2698
|
+
}, {
|
|
2699
|
+
readonly id: "bytedance/seed-1.6";
|
|
2700
|
+
readonly name: "Seed 1.6";
|
|
2701
|
+
readonly size: "normal";
|
|
2702
|
+
}, {
|
|
2703
|
+
readonly id: "mistral/devstral-small";
|
|
2704
|
+
readonly name: "Devstral Small 1.1";
|
|
2705
|
+
readonly size: "normal";
|
|
2706
|
+
readonly deprecated: true;
|
|
2707
|
+
}, {
|
|
2708
|
+
readonly id: "xai/grok-code-fast-1";
|
|
2709
|
+
readonly name: "Grok Code Fast 1";
|
|
2710
|
+
readonly size: "normal";
|
|
2711
|
+
}, {
|
|
2712
|
+
readonly id: "openai/o1";
|
|
2713
|
+
readonly name: "o1";
|
|
2714
|
+
readonly size: "normal";
|
|
2715
|
+
}, {
|
|
2716
|
+
readonly id: "vercel/v0-1.5-md";
|
|
2717
|
+
readonly name: "v0-1.5-md";
|
|
2718
|
+
readonly size: "normal";
|
|
2719
|
+
}, {
|
|
2720
|
+
readonly id: "vercel/v0-1.0-md";
|
|
2721
|
+
readonly name: "v0-1.0-md";
|
|
2722
|
+
readonly size: "normal";
|
|
2723
|
+
readonly deprecated: true;
|
|
2724
|
+
}, {
|
|
2725
|
+
readonly id: "openai/codex-mini";
|
|
2726
|
+
readonly name: "Codex Mini";
|
|
2727
|
+
readonly size: "normal";
|
|
2728
|
+
}, {
|
|
2729
|
+
readonly id: "cohere/command-a";
|
|
2730
|
+
readonly name: "Command A";
|
|
2731
|
+
readonly size: "normal";
|
|
2732
|
+
}, {
|
|
2733
|
+
readonly id: "meituan/longcat-flash-chat";
|
|
2734
|
+
readonly name: "LongCat Flash Chat";
|
|
2735
|
+
readonly size: "normal";
|
|
2736
|
+
}, {
|
|
2737
|
+
readonly id: "meituan/longcat-flash-thinking";
|
|
2738
|
+
readonly name: "LongCat Flash Thinking";
|
|
2739
|
+
readonly size: "normal";
|
|
2740
|
+
}, {
|
|
2741
|
+
readonly id: "inception/mercury-coder-small";
|
|
2742
|
+
readonly name: "Mercury Coder Small Beta";
|
|
2743
|
+
readonly size: "normal";
|
|
2744
|
+
}, {
|
|
2745
|
+
readonly id: "mistral/ministral-3b";
|
|
2746
|
+
readonly name: "Ministral 3B";
|
|
2747
|
+
readonly size: "normal";
|
|
2748
|
+
}, {
|
|
2749
|
+
readonly id: "mistral/ministral-8b";
|
|
2750
|
+
readonly name: "Ministral 8B";
|
|
2751
|
+
readonly size: "normal";
|
|
2752
|
+
}, {
|
|
2753
|
+
readonly id: "mistral/codestral";
|
|
2754
|
+
readonly name: "Mistral Codestral";
|
|
2755
|
+
readonly size: "normal";
|
|
2756
|
+
}, {
|
|
2757
|
+
readonly id: "mistral/mistral-small";
|
|
2758
|
+
readonly name: "Mistral Small";
|
|
2759
|
+
readonly size: "normal";
|
|
2760
|
+
}, {
|
|
2761
|
+
readonly id: "mistral/pixtral-large";
|
|
2762
|
+
readonly name: "Pixtral Large";
|
|
2763
|
+
readonly size: "normal";
|
|
2764
|
+
}, {
|
|
2765
|
+
readonly id: "perplexity/sonar";
|
|
2766
|
+
readonly name: "Sonar";
|
|
2767
|
+
readonly size: "normal";
|
|
2768
|
+
}, {
|
|
2769
|
+
readonly id: "perplexity/sonar-pro";
|
|
2770
|
+
readonly name: "Sonar Pro";
|
|
2771
|
+
readonly size: "normal";
|
|
2772
|
+
}, {
|
|
2773
|
+
readonly id: "stealth/sonoma-dusk-alpha";
|
|
2774
|
+
readonly name: "Sonoma Dusk Alpha";
|
|
2775
|
+
readonly size: "normal";
|
|
2776
|
+
}, {
|
|
2777
|
+
readonly id: "stealth/sonoma-sky-alpha";
|
|
2778
|
+
readonly name: "Sonoma Sky Alpha";
|
|
2779
|
+
readonly size: "normal";
|
|
2780
|
+
}, {
|
|
2781
|
+
readonly id: "arcee-ai/trinity-large-preview";
|
|
2782
|
+
readonly name: "Trinity Large Preview";
|
|
2783
|
+
readonly size: "normal";
|
|
2784
|
+
}, {
|
|
2785
|
+
readonly id: "openai/gpt-oss-20b";
|
|
2786
|
+
readonly name: "gpt-oss-20b";
|
|
2787
|
+
readonly size: "normal";
|
|
2788
|
+
}, {
|
|
2789
|
+
readonly id: "openai/gpt-oss-safeguard-20b";
|
|
2790
|
+
readonly name: "gpt-oss-safeguard-20b";
|
|
2791
|
+
readonly size: "normal";
|
|
2792
|
+
}];
|
|
2793
|
+
readonly xai: [{
|
|
2794
|
+
readonly id: "grok-3-fast-latest";
|
|
2795
|
+
readonly name: "Grok 3 Fast Latest";
|
|
2796
|
+
readonly size: "normal";
|
|
2797
|
+
}, {
|
|
2798
|
+
readonly id: "grok-3-latest";
|
|
2799
|
+
readonly name: "Grok 3 Latest";
|
|
2800
|
+
readonly size: "normal";
|
|
2801
|
+
}, {
|
|
2802
|
+
readonly id: "grok-3-mini-fast-latest";
|
|
2803
|
+
readonly name: "Grok 3 Mini Fast Latest";
|
|
2804
|
+
readonly size: "normal";
|
|
2805
|
+
}, {
|
|
2806
|
+
readonly id: "grok-3-mini-latest";
|
|
2807
|
+
readonly name: "Grok 3 Mini Latest";
|
|
2808
|
+
readonly size: "normal";
|
|
2809
|
+
}, {
|
|
2810
|
+
readonly id: "grok-2-latest";
|
|
2811
|
+
readonly name: "Grok 2 Latest";
|
|
2812
|
+
readonly size: "normal";
|
|
2813
|
+
}, {
|
|
2814
|
+
readonly id: "grok-2-vision-latest";
|
|
2815
|
+
readonly name: "Grok 2 Vision Latest";
|
|
2816
|
+
readonly size: "normal";
|
|
2817
|
+
}, {
|
|
2818
|
+
readonly id: "grok-2-1212";
|
|
2819
|
+
readonly name: "Grok 2 (1212)";
|
|
2820
|
+
readonly size: "normal";
|
|
2821
|
+
readonly deprecated: true;
|
|
2822
|
+
}, {
|
|
2823
|
+
readonly id: "grok-2-vision-1212";
|
|
2824
|
+
readonly name: "Grok 2 Vision (1212)";
|
|
2825
|
+
readonly size: "normal";
|
|
2826
|
+
}, {
|
|
2827
|
+
readonly id: "grok-4-1-fast";
|
|
2828
|
+
readonly name: "Grok 4.1 Fast";
|
|
2829
|
+
readonly size: "normal";
|
|
2830
|
+
}, {
|
|
2831
|
+
readonly id: "grok-4-1-fast-non-reasoning";
|
|
2832
|
+
readonly name: "Grok 4.1 Fast (Non-Reasoning)";
|
|
2833
|
+
readonly size: "normal";
|
|
2834
|
+
}, {
|
|
2835
|
+
readonly id: "grok-4";
|
|
2836
|
+
readonly name: "Grok 4";
|
|
2837
|
+
readonly size: "normal";
|
|
2838
|
+
}, {
|
|
2839
|
+
readonly id: "grok-4-fast";
|
|
2840
|
+
readonly name: "Grok 4 Fast";
|
|
2841
|
+
readonly size: "normal";
|
|
2842
|
+
readonly deprecated: true;
|
|
2843
|
+
}, {
|
|
2844
|
+
readonly id: "grok-4-fast-non-reasoning";
|
|
2845
|
+
readonly name: "Grok 4 Fast (Non-Reasoning)";
|
|
2846
|
+
readonly size: "normal";
|
|
2847
|
+
readonly deprecated: true;
|
|
2848
|
+
}, {
|
|
2849
|
+
readonly id: "grok-3";
|
|
2850
|
+
readonly name: "Grok 3";
|
|
2851
|
+
readonly size: "normal";
|
|
2852
|
+
readonly deprecated: true;
|
|
2853
|
+
}, {
|
|
2854
|
+
readonly id: "grok-3-fast";
|
|
2855
|
+
readonly name: "Grok 3 Fast";
|
|
2856
|
+
readonly size: "normal";
|
|
2857
|
+
readonly deprecated: true;
|
|
2858
|
+
}, {
|
|
2859
|
+
readonly id: "grok-3-mini";
|
|
2860
|
+
readonly name: "Grok 3 Mini";
|
|
2861
|
+
readonly size: "normal";
|
|
2862
|
+
}, {
|
|
2863
|
+
readonly id: "grok-3-mini-fast";
|
|
2864
|
+
readonly name: "Grok 3 Mini Fast";
|
|
2865
|
+
readonly size: "normal";
|
|
2866
|
+
}, {
|
|
2867
|
+
readonly id: "grok-2";
|
|
2868
|
+
readonly name: "Grok 2";
|
|
2869
|
+
readonly size: "normal";
|
|
2870
|
+
readonly deprecated: true;
|
|
2871
|
+
}, {
|
|
2872
|
+
readonly id: "grok-2-vision";
|
|
2873
|
+
readonly name: "Grok 2 Vision";
|
|
2874
|
+
readonly size: "normal";
|
|
2875
|
+
}, {
|
|
2876
|
+
readonly id: "grok-code-fast-1";
|
|
2877
|
+
readonly name: "Grok Code Fast 1";
|
|
2878
|
+
readonly size: "normal";
|
|
2879
|
+
}, {
|
|
2880
|
+
readonly id: "grok-beta";
|
|
2881
|
+
readonly name: "Grok Beta";
|
|
2882
|
+
readonly size: "normal";
|
|
2883
|
+
}, {
|
|
2884
|
+
readonly id: "grok-vision-beta";
|
|
2885
|
+
readonly name: "Grok Vision Beta";
|
|
2886
|
+
readonly size: "normal";
|
|
2887
|
+
}];
|
|
2888
|
+
readonly zai: [{
|
|
2889
|
+
readonly id: "glm-4.7";
|
|
2890
|
+
readonly name: "GLM-4.7";
|
|
2891
|
+
readonly size: "normal";
|
|
2892
|
+
}, {
|
|
2893
|
+
readonly id: "glm-4.7-flash";
|
|
2894
|
+
readonly name: "GLM-4.7-Flash";
|
|
2895
|
+
readonly size: "normal";
|
|
2896
|
+
}, {
|
|
2897
|
+
readonly id: "glm-4.6";
|
|
2898
|
+
readonly name: "GLM-4.6";
|
|
2899
|
+
readonly size: "normal";
|
|
2900
|
+
readonly deprecated: true;
|
|
2901
|
+
}, {
|
|
2902
|
+
readonly id: "glm-4.6v";
|
|
2903
|
+
readonly name: "GLM-4.6V";
|
|
2904
|
+
readonly size: "normal";
|
|
2905
|
+
}, {
|
|
2906
|
+
readonly id: "glm-4.5";
|
|
2907
|
+
readonly name: "GLM-4.5";
|
|
2908
|
+
readonly size: "normal";
|
|
2909
|
+
readonly deprecated: true;
|
|
2910
|
+
}, {
|
|
2911
|
+
readonly id: "glm-4.5-air";
|
|
2912
|
+
readonly name: "GLM-4.5-Air";
|
|
2913
|
+
readonly size: "normal";
|
|
2914
|
+
}, {
|
|
2915
|
+
readonly id: "glm-4.5-flash";
|
|
2916
|
+
readonly name: "GLM-4.5-Flash";
|
|
2917
|
+
readonly size: "normal";
|
|
2918
|
+
readonly deprecated: true;
|
|
2919
|
+
}, {
|
|
2920
|
+
readonly id: "glm-4.5v";
|
|
2921
|
+
readonly name: "GLM-4.5V";
|
|
2922
|
+
readonly size: "normal";
|
|
2923
|
+
}];
|
|
2924
|
+
};
|
|
2925
|
+
export declare function listProviderModels(providerId: string): ProviderModelInfo[];
|
|
2926
|
+
//# sourceMappingURL=models.d.ts.map
|