-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
31 lines (25 loc) · 1.06 KB
/
Copy path.env.example
File metadata and controls
31 lines (25 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Cerebro environment — copy to .env and adjust. Never commit .env.
# Where artifacts (.cerebro.json) and the derived SQLite registry live.
# Defaults to ./data in dev, /data in the container.
CEREBRO_DATA_DIR=./data
# structlog filter level: DEBUG | INFO | WARNING | ERROR
CEREBRO_LOG_LEVEL=INFO
# Host ports for the containers.
UI_PORT=3000
API_PORT=8000
# ---- AI Agent ---------------------------------------------------------------
# Required only for the agent endpoint (/agent/query) and CLI (`cerebro ask`).
# When unset the rest of the app runs normally; agent returns 503.
#
# Supported providers: 'ollama' (local) or 'copilot' (GitHub Copilot Models API)
CEREBRO_LLM_PROVIDER=
# --- Ollama (local) ---
# Default base URL when CEREBRO_LLM_PROVIDER=ollama.
# Run: ollama pull llama3.2 before the first query.
OLLAMA_BASE_URL=http://localhost:11434/v1
OLLAMA_MODEL=llama3.2
# --- GitHub Copilot Models API ---
# Required when CEREBRO_LLM_PROVIDER=copilot.
# Your GitHub personal access token (needs Copilot subscription).
GITHUB_TOKEN=
GITHUB_COPILOT_MODEL=gpt-4o-mini