You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
| 12345678910111213 |
- 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;
- }
|