File size: 274 Bytes
21cf732
 
 
 
 
 
ebf2bde
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
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;
}