# -------- Core --------
JWT_SECRET=change-me-to-a-long-random-string
RUST_LOG=info,hai_api=debug,hai_zoo=debug

# -------- LLM (OpenAI-compatible) --------
# Works with OpenAI, Anthropic (via shim), vLLM, LiteLLM, etc.
HAI_LLM_API_KEY=sk-b3cde3c04e89400bba52cb5ef937b86f
HAI_LLM_BASE_URL=https://chat.anomalia.io/api
HAI_LLM_MODEL=anomalia-31-nothink


# -------- Zoo tuning --------
# How often (seconds) to wake the sampler loop.
ZOO_SAMPLE_SECS=10
# How many agents to wake each tick.
ZOO_SAMPLE_K=1
# Softmax temperature for trust-weighted sampling (higher = more greedy).
ZOO_TAU=1.0

# -------- Web --------
# URL the browser uses to reach hai-api. Use the host-visible URL here.
PUBLIC_API_URL=http://localhost:5175
