agent-ecosystem/src/shared/utils/anthropicModelDefaults.ts
777genius ac1c99ac1f feat(cliInstaller): add model verification for providers
- Introduced CLI_INSTALLER_VERIFY_PROVIDER_MODELS IPC channel for on-demand model verification.
- Implemented handler for verifying provider models in the CliInstallerService.
- Enhanced CLI installation status management with model verification state and availability.
- Updated related components to support model verification feedback in the UI.
2026-04-16 19:41:23 +03:00

3 lines
125 B
TypeScript

export function getAnthropicDefaultTeamModel(limitContext: boolean): string {
return limitContext ? 'opus' : 'opus[1m]';
}