bolt.diy / app /types /model.ts
LlamaFinetuneGGUF's picture
Added a tabbed setting modal
42ebd3d
raw
history blame
303 Bytes
import type { ModelInfo } from '~/utils/types';
export type ProviderInfo = {
staticModels: ModelInfo[];
name: string;
getDynamicModels?: (apiKeys?: Record<string, string>) => Promise<ModelInfo[]>;
getApiKeyLink?: string;
labelForGetApiKey?: string;
icon?: string;
isEnabled?: boolean;
};