v0.3.0-rc.3: event-driven awareness + skill pre-emption #26

Closed
halofourteen wants to merge 2 commits from v0.3.0-rc.3 into v0.3.0-rc.2
Showing only changes of commit a822236f2e - Show all commits
+19
View File
@@ -29,6 +29,25 @@ GOOGLE_API_KEY=
PI_DEFAULT_PROVIDER=openai
PI_DEFAULT_MODEL=gpt-5-mini
# --- Fast LLM tier (v0.3.0+) --------------------------------------------------
# Pi (CLI) handles slow deep analytics — post-mortem and 30-min reflection.
# A parallel "fast advisor" tier handles tactical "what to do RIGHT NOW"
# decisions when the reflex is stuck / preempted. Any OpenAI-compatible
# endpoint works: TimeWeb, OpenAI direct, Groq, OpenRouter, local Ollama.
#
# Leave blank to disable — the bot then runs without the fast tier
# (rc.1 scaffold is a safe no-op when API_KEY is unset).
#
# Example for TimeWeb (replace with your own endpoint + key + model):
# PEPA_FAST_LLM_BASE_URL=https://api.gen-api.ru/api/v1
# PEPA_FAST_LLM_API_KEY=<paste your key here>
# PEPA_FAST_LLM_MODEL=gpt-5-mini
PEPA_FAST_LLM_BASE_URL=
PEPA_FAST_LLM_API_KEY=
PEPA_FAST_LLM_MODEL=
# Optional: request timeout in ms (default 8000)
PEPA_FAST_LLM_TIMEOUT_MS=
# --- Bot behaviour ------------------------------------------------------------
# How often (seconds) the autonomous tick prompt fires. Set to 0 to disable.
TICK_INTERVAL_SECONDS=60