mirror of
https://github.com/stackblitz-labs/bolt.diy
synced 2025-01-22 10:55:34 +00:00
7295352a98
* refactor: Refactoring Providers to have providers as modules * updated package and lock file * added grok model back * updated registry system
22 lines
391 B
TypeScript
22 lines
391 B
TypeScript
interface OllamaModelDetails {
|
|
parent_model: string;
|
|
format: string;
|
|
family: string;
|
|
families: string[];
|
|
parameter_size: string;
|
|
quantization_level: string;
|
|
}
|
|
|
|
export interface OllamaModel {
|
|
name: string;
|
|
model: string;
|
|
modified_at: string;
|
|
size: number;
|
|
digest: string;
|
|
details: OllamaModelDetails;
|
|
}
|
|
|
|
export interface OllamaApiResponse {
|
|
models: OllamaModel[];
|
|
}
|