35 lines
918 B
YAML
35 lines
918 B
YAML
# Frontend Configuration
|
||
frontend:
|
||
url: "http://localhost:8000"
|
||
|
||
# Backend Configuration
|
||
backend:
|
||
url: "http://localhost:5005"
|
||
api: "/api/chat"
|
||
|
||
# Ollama Server Configuration
|
||
ollama:
|
||
url: "http://localhost:11434"
|
||
api_key: "${OLLAMA_API_KEY}" # Refer to environment variable
|
||
model: "phi3:mini" # Select a model supported by the Ollama server
|
||
# model: "llama3:70b" # Select a model supported by the Ollama server
|
||
# model: "llama3:latest" # Select a model supported by the Ollama server
|
||
|
||
# Logging – comment out the whole section for default level which is INFO
|
||
logging:
|
||
level: DEBUG # Set log level (DEBUG, INFO, WARNING, ERROR, CRITICAL)
|
||
|
||
# Additional Configuration Options (Optional – ignored for now)
|
||
|
||
# Cache Settings (Optional)
|
||
cache:
|
||
enabled: true
|
||
timeout: 60 # Seconds
|
||
|
||
test:
|
||
test_key_1: "ett"
|
||
test_key_2: "ett"
|
||
test_key_3: "${THIS_IS_A_DUMMY_VAR}"
|
||
|
||
another_test: "Syns detta?"
|