honcho/sandbox/real.env.example

22 lines
917 B
Plaintext

# Copy to sandbox/real.env and fill in. real.env is gitignored; this file is not.
#
# cp sandbox/real.env.example sandbox/real.env
# sandbox/sandbox.sh up --provider real
#
# Only needed for real mode. Mock mode needs nothing here.
# One provider key. Honcho tests it for truthiness before building the client.
LLM_OPENAI_API_KEY=sk-replace-me
# LLM_ANTHROPIC_API_KEY=
# LLM_GEMINI_API_KEY=
# Optional: a cheaper model than the gpt-5.4-mini default. The sandbox derives on
# every seed, so this is the knob that decides what a seed costs.
# DERIVER_MODEL_CONFIG__TRANSPORT=openai
# DERIVER_MODEL_CONFIG__MODEL=gpt-5.4-mini
# Deliberately absent: EMBEDDING_MODEL_CONFIG__OVERRIDES__BASE_URL.
# Leaving it unset is what sends embeddings to the real provider — which is the
# entire reason to run real mode, since mock embeddings carry no semantic
# similarity and cannot support a vector-recall assertion.