agent-ecosystem/src/shared/utils/providerModelSelection.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

5 lines
222 B
TypeScript

export const DEFAULT_PROVIDER_MODEL_SELECTION = '__provider_default__';
export function isDefaultProviderModelSelection(value: string | undefined): boolean {
return value?.trim() === DEFAULT_PROVIDER_MODEL_SELECTION;
}