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.

llm.ts 316B

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