Mercurial
diff mrjunejune/.config.development @ 265:056790c4fb0d
add role-aware Epi assistant prompts
Add verified June knowledge, guest/member/admin Copilot profiles, profile-isolated session recovery, animated Epi greetings, and a single authoritative runtime config workflow for inference.
Co-authored-by: Copilot <[email protected]>
| author | MrJuneJune <me@mrjunejune.com> |
|---|---|
| date | Fri, 07 Aug 2026 10:50:30 -0700 |
| parents | 04fee26ecce0 |
| children |
line wrap: on
line diff
--- a/mrjunejune/.config.development Fri Aug 07 07:34:12 2026 -0700 +++ b/mrjunejune/.config.development Fri Aug 07 10:50:30 2026 -0700 @@ -19,8 +19,10 @@ S3_URL_EXPIRES=3600 # ───────────────────────────────────────────────────────────────────────────── -# Auth — all AUTH_* values may also be set as environment variables; env takes -# precedence over this file. Never commit real values here. +# This is the authoritative runtime configuration source for the server and +# inference stack. Normal Bazel workflows require no shell exports. Environment +# values are used only for tests, backwards compatibility when no config file is +# present, and internal supervisor-to-child wiring. Never commit real values. # # AUTH_COOKIE_SECRET # A cryptographically random 32-byte secret encoded as a lowercase hex string @@ -74,8 +76,19 @@ SERVER_HOST=127.0.0.1 # ───────────────────────────────────────────────────────────────────────────── -# Guest inference quota — enable guest inference at runtime via the environment: -# MRJUNEJUNE_ALLOW_GUEST_INFERENCE=1 +# Inference stack +# The local stack generates and persists LITELLM_MASTER_KEY into the ignored +# .config on the first live run if this is left empty. +LITELLM_MASTER_KEY= +LITELLM_HOST=127.0.0.1 +LITELLM_PORT=4000 +LITELLM_MODEL=jrpg-copilot +LITELLM_WIRE_API=completions +MRJUNEJUNE_ALLOW_GUEST_INFERENCE=false +# GITHUB_COPILOT_TOKEN_DIR=/absolute/path/to/litellm-copilot +# MRJUNEJUNE_INFERENCE_STATE=/absolute/path/to/inference-state +# +# Guest inference quota # These integer values control per-guest rate limits. # Malformed or out-of-range values cause startup failure. # AUTH_GUEST_DAILY_TURNS=10