CoolFace
Apppublic

legends810/testingnew

sourceHugging Faceupdated 1y agoView on Hugging Face
0likes
types.ts22 linesDownload Raw Back to utils
1interface OllamaModelDetails {2  parent_model: string;3  format: string;4  family: string;5  families: string[];6  parameter_size: string;7  quantization_level: string;8}9 10export interface OllamaModel {11  name: string;12  model: string;13  modified_at: string;14  size: number;15  digest: string;16  details: OllamaModelDetails;17}18 19export interface OllamaApiResponse {20  models: OllamaModel[];21}22