mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-07-23 17:06:42 +08:00
7 lines
177 B
TypeScript
7 lines
177 B
TypeScript
|
|
export interface IAddLlmRequestBody {
|
||
|
|
llm_factory: string; // Ollama
|
||
|
|
llm_name: string;
|
||
|
|
model_type: string;
|
||
|
|
api_base?: string; // chat|embedding|speech2text|image2text
|
||
|
|
}
|