Perplexica/sample.config.toml
konvar 8e645b73c2 docs: enhance configuration template with detailed settings
- Added GENERAL section with documented configuration options
- Added descriptions for PORT, SIMILARITY_MEASURE, and KEEP_ALIVE settings
- Improved configuration template readability
2024-11-23 01:38:56 +02:00

19 lines
400 B
TOML

[GENERAL]
PORT = 3001 # Port to run the server on
SIMILARITY_MEASURE = "cosine" # "cosine" or "dot"
KEEP_ALIVE = "5m" # How long to keep Ollama models loaded into memory. (Instead of using -1 use "-1m")
[API_KEYS]
OPENAI = ""
GROQ = ""
ANTHROPIC = ""
GEMINI = ""
[API_ENDPOINTS]
OLLAMA = ""
SEARXNG = "http://localhost:32768"
[GENERAL]
PORT = 3_001
SIMILARITY_MEASURE = "cosine"
KEEP_ALIVE = "5m"