dev / app /types /model.ts
Charan5775's picture
Add application file
8f7821c
raw
history blame contribute delete
248 Bytes
import type { ModelInfo } from '~/utils/types';
export type ProviderInfo = {
staticModels: ModelInfo[];
name: string;
getDynamicModels?: () => Promise<ModelInfo[]>;
getApiKeyLink?: string;
labelForGetApiKey?: string;
icon?: string;
};