File size: 628 Bytes
bbef364 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
export interface OllamaModel {
name: string;
modified_at: Date;
size: number;
}
export interface OllamaModelDetail {
license: string,
modelfile: string,
parameters: string,
template: string,
system: string,
}
export enum OllamaModelID {
DEFAULTMODEL = 'mistral:latest'
}
// in case the `DEFAULT_MODEL` environment variable is not set or set to an unsupported model
export const fallbackModelID = OllamaModelID.DEFAULTMODEL;
export const OllamaModels: Record<OllamaModelID, OllamaModel> = {
[OllamaModelID.DEFAULTMODEL]: {
name: 'mistral:latest',
modified_at: new Date(),
size: 16384,
},
};
|