Added a feature to switch API service providers to the project. Introduced an input field for API providers in the settings interface and included the OPENAI_URL parameter in the config file.
14 lines
539 B
TOML
14 lines
539 B
TOML
[GENERAL]
|
|
PORT = 3001 # Port to run the server on
|
|
SIMILARITY_MEASURE = "cosine" # "cosine" or "dot"
|
|
CHAT_MODEL_PROVIDER = "openai" # "openai" or "ollama" or "groq"
|
|
CHAT_MODEL = "gpt-3.5-turbo" # Name of the model to use
|
|
|
|
[API_KEYS]
|
|
OPENAI = "" # OpenAI API key - sk-1234567890abcdef1234567890abcdef
|
|
GROQ = "" # Groq API key - gsk_1234567890abcdef1234567890abcdef
|
|
OPENAI_URL = "https://api.openai.com/v1"
|
|
|
|
[API_ENDPOINTS]
|
|
SEARXNG = "http://localhost:32768" # SearxNG API URL
|
|
OLLAMA = "" # Ollama API URL - http://host.docker.internal:11434
|