bolt.diy / app /types /model.ts
Eduards's picture
More type fixes
df91d0e
raw
history blame
247 Bytes
import type { ModelInfo } from '~/utils/types';
export type ProviderInfo = {
staticModels: ModelInfo[],
name: string,
getDynamicModels?: () => Promise<ModelInfo[]>,
getApiKeyLink?: string,
labelForGetApiKey?: string,
icon?:string,
};