8f7821c
1
2
3
4
5
6
7
8
9
10
11
import type { ModelInfo } from '~/utils/types'; export type ProviderInfo = { staticModels: ModelInfo[]; name: string; getDynamicModels?: () => Promise<ModelInfo[]>; getApiKeyLink?: string; labelForGetApiKey?: string; icon?: string; };