build-small-hackathon/the-apprentice
1
1# Copy to .env.local and fill in. Without these, the app runs in mock mode.2 3# Modal-hosted OpenAI-compatible endpoint (vLLM serving Qwen2.5-14B + LoRA).4# Leave empty to force mock mode for the LLM calls.5MODAL_URL=6 7# Modal proxy auth (Modal-Key and Modal-Secret headers).8MODAL_KEY=9MODAL_SECRET=10 11# Force mock mode for the LLM even if MODAL_URL is set.12ORACLES_FORCE_MOCK=013 14# Override the served-model alias. Defaults to "oracle-wizard-lora" which15# the deployed vLLM serves as Qwen2.5-14B + the custom humor LoRA. Set16# to "llm" to request the bare base model.17# ORACLES_LLM_MODEL=oracle-wizard-lora18 19# Disable LLM-call trace recording. Tracing is default-on; remove or set20# to 0 to keep it on. Set to 1 to opt out.21# ORACLES_TRACE_DISABLE=022 23# Visual mode: "lean" (default; minimal PNGs for fast load) or "full"24# (parallax banner, scene landscapes, all decorative assets).25# ORACLES_VISUAL_MODE=lean26 