Files
ragflow_python/web/src/interfaces/request/llm.ts

7 lines
177 B
TypeScript
Raw Normal View History

export interface IAddLlmRequestBody {
llm_factory: string; // Ollama
llm_name: string;
model_type: string;
api_base?: string; // chat|embedding|speech2text|image2text
}