2024-04-20 04:02:19 +00:00
|
|
|
[GENERAL]
|
|
|
|
PORT = 3001 # Port to run the server on
|
|
|
|
SIMILARITY_MEASURE = "cosine" # "cosine" or "dot"
|
2024-04-20 05:48:52 +00:00
|
|
|
CHAT_MODEL_PROVIDER = "openai" # "openai" or "ollama"
|
|
|
|
CHAT_MODEL = "gpt-3.5-turbo" # Name of the model to use
|
2024-04-20 04:02:19 +00:00
|
|
|
|
|
|
|
[API_KEYS]
|
2024-04-20 16:42:49 +00:00
|
|
|
OPENAI = "" # OpenAI API key - sk-1234567890abcdef1234567890abcdef
|
2024-04-20 04:02:19 +00:00
|
|
|
|
|
|
|
[API_ENDPOINTS]
|
2024-04-20 12:56:54 +00:00
|
|
|
SEARXNG = "http://localhost:32768" # SearxNG API URL
|
2024-04-28 14:22:31 +00:00
|
|
|
OLLAMA = "" # Ollama API URL - http://host.docker.internal:11434
|