liuhua
Add api for sessions and add max_tokens for tenant_llm (#3472)
99ac12c
raw
history blame contribute delete
316 Bytes
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;
}