perplexica/sample.config.toml

12 lines
406 B
TOML
Raw Normal View History

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]
OPENAI = "sk-1234567890abcdef1234567890abcdef" # OpenAI API key
[API_ENDPOINTS]
2024-04-20 05:48:52 +00:00
SEARXNG = "http://localhost:32768" # SearxNG API ULR
OLLAMA = "http://localhost:11434" # Ollama API URL