UNPKG

llmatic

Version:

Use self-hosted LLMs with an OpenAI compatible API

14 lines (12 loc) 295 B
export type ListModelsOkResponse = { data: Array<any[] | boolean | number | number | null | ModelObject | string>; object: string; [property: string]: any; }; export type ModelObject = { created: number; id: string; object: string; owned_by: string; [property: string]: any; };