27 lines
977 B
Plaintext
27 lines
977 B
Plaintext
# Copy this file to .env and adjust values as needed.
|
|
# Never commit .env — it is gitignored.
|
|
|
|
# Host port the app is exposed on. Must match the container-internal port (right side of ports mapping).
|
|
APP_PORT=3023
|
|
|
|
# Host port the frontend dev server is exposed on.
|
|
FRONTEND_PORT=5173
|
|
|
|
NODE_ENV=development
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# LLM resolver — only active when running: docker compose --profile llm up
|
|
# ---------------------------------------------------------------------------
|
|
|
|
# URL of the Ollama-compatible backend (default points to the compose ollama service).
|
|
LLM_RESOLVER_URL=http://ollama:11434
|
|
|
|
# Model to pull and use. Must be available on the Ollama instance.
|
|
LLM_RESOLVER_MODEL=llama3.2:3b
|
|
|
|
# Request timeout in milliseconds. Increase for larger/slower models.
|
|
LLM_RESOLVER_TIMEOUT_MS=15000
|
|
|
|
# Resolver mode: hybrid (llm with deterministic fallback) | llm | deterministic
|
|
INTENT_RESOLVER_MODE=hybrid
|