balibabu
feat: delete the added model #503 and display an error message when the requested file fails to parse #684 (#708)
ebf2bde
export interface IAddLlmRequestBody { | |
llm_factory: string; // Ollama | |
llm_name: string; | |
model_type: string; | |
api_base?: string; // chat|embedding|speech2text|image2text | |
} | |
export interface IDeleteLlmRequestBody { | |
llm_factory: string; // Ollama | |
llm_name: string; | |
} | |