20 lines
824 B
Bash
20 lines
824 B
Bash
# Local Ollama server address
|
|
OLLAMA_BASE_URL=http://192.168.x.x:11434
|
|
|
|
# Model name (e.g., llama3, mistral, codellama, etc.)
|
|
OLLAMA_MODEL=replace-with-model-name
|
|
|
|
# ── Mock / Demo Mode (UI development only) ──────────────────
|
|
# Set to "true" to use pre-recorded scenario fixtures instead of Ollama.
|
|
NEXT_PUBLIC_CONFIDENCE_ENGINE_MOCKS=true
|
|
|
|
# Mock delay mode: "instant" | "normal" (default, 700ms) | "slow" (2500ms)
|
|
NEXT_PUBLIC_CONFIDENCE_MOCK_DELAY=normal
|
|
|
|
# Scenario to replay: "complete" (jump to end after start) | "error" | "" (default sequential turns)
|
|
NEXT_PUBLIC_CONFIDENCE_ENGINE_MOCK_SCENARIO=complete
|
|
|
|
# Supabase Auth (public browser configuration only)
|
|
NEXT_PUBLIC_SUPABASE_URL=https://supabase.rdbcloud.co.uk
|
|
NEXT_PUBLIC_SUPABASE_ANON_KEY=replace-with-supabase-anon-key
|