Spaces:
Paused
Paused
File size: 293 Bytes
ab2ded1 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
export interface IAddLlmRequestBody {
llm_factory: string; // Ollama
llm_name: string;
model_type: string;
api_base?: string; // chat|embedding|speech2text|image2text
api_key: string;
}
export interface IDeleteLlmRequestBody {
llm_factory: string; // Ollama
llm_name: string;
}
|