import type { ModelInfo } from '~/utils/types'; export type ProviderInfo = { staticModels: ModelInfo[]; name: string; getDynamicModels?: (apiKeys?: Record) => Promise; getApiKeyLink?: string; labelForGetApiKey?: string; icon?: string; isEnabled?: boolean; };