dashboard/.env.example

18 lines
693 B
Text

# Dashboard configuration — copy to .env and adjust. All vars use the DASH_ prefix.
# Bind address and port. Keep 127.0.0.1 unless you know what you are doing:
# the app has NO authentication.
DASH_HOST=127.0.0.1
DASH_PORT=8501
# Sampling and history (in-memory only, lost on restart).
# retention_minutes * 60 / sample_interval = number of stored samples per series.
DASH_SAMPLE_INTERVAL=2.0
DASH_RETENTION_MINUTES=60
# llama.cpp plugin: point at your llama-server (router mode) instance.
DASH_LLAMA_BASE_URL=http://127.0.0.1:8080
# Only needed if llama-server runs with --api-key.
DASH_LLAMA_API_KEY=
# Timeout in seconds for /v1/models and load/unload requests.
DASH_LLAMA_TIMEOUT=4.0