-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
22 lines (18 loc) · 1.07 KB
/
Copy path.env.example
File metadata and controls
22 lines (18 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Copy to .env and fill in. NEVER commit a real .env (it's gitignored).
# All ${VAR} refs in config/qa-loop.yaml are resolved from the environment by run.py.
# ---- LLM access (loop-engine --no-dry-run) ----
# A relay/gateway speaking the Anthropic messages API with x-api-key auth.
# Used by run.py make_llm_call_fn for every agent in agent_models that points here.
RELAY_API_KEY=
# ---- Experiment reproduction (loop-engine/experiment/) ----
# These use urllib + x-api-key directly (see experiment/llm_call.py, experiment/REPRODUCE.md).
ANTHROPIC_BASE_URL=
ANTHROPIC_AUTH_TOKEN=
ANTHROPIC_DEFAULT_SONNET_MODEL= # strong/reasoning model for review + fix
ANTHROPIC_DEFAULT_HAIKU_MODEL= # cheaper model for the LLM-judge
# ---- Optional test-data sources (test_data.data_sources in qa-loop.yaml) ----
TEST_DB_DSN= # DB anonymize strategy
TEST_KAFKA= # testcontainers Kafka bootstrap (empty = auto-spawn)
SCHEMA_REGISTRY= # avro/protobuf contract registry
# ---- Windows: Chinese output/config ----
PYTHONIOENCODING=utf-8