bolt.diy / app /types /model.ts
Oliver Jägle
Lint-fix all files in app
2327de3 unverified
raw
history blame
248 Bytes
import type { ModelInfo } from '~/utils/types';
export type ProviderInfo = {
staticModels: ModelInfo[];
name: string;
getDynamicModels?: () => Promise<ModelInfo[]>;
getApiKeyLink?: string;
labelForGetApiKey?: string;
icon?: string;
};