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