11 lines
306 B
Bash
11 lines
306 B
Bash
# Local backend (Ollama) — used by default for most calls.
|
|
LOCAL_BASE_URL=http://localhost:11434
|
|
LOCAL_MODEL=qwen2.5:7b-instruct
|
|
|
|
# Cloud backend (Anthropic Claude) — used for harder reasoning.
|
|
ANTHROPIC_API_KEY=
|
|
CLOUD_MODEL=claude-sonnet-4-6
|
|
|
|
# Where Lyra stores her memory.
|
|
LYRA_DB_PATH=data/lyra.db
|