fugee / .env.example
helmo's picture
[assess] Remove web search entirely (prompt, code, module, test, env)
79d3fac
Raw
History Blame Contribute Delete
861 Bytes
# Fugee — environment configuration. Copy to `.env` (gitignored) and edit.
# These are read at startup by app/config.py (no python-dotenv dependency).
# Ollama server base URL. Leave unset for a local daemon (http://127.0.0.1:11434).
OLLAMA_HOST=http://127.0.0.1:11434
# The single ≤32B, tool-calling-capable instruct model used for the whole app.
# Pick what your Ollama host actually has (e.g. lfm2.5:8b, qwen2.5:7b, gemma2:9b).
MODEL_ID=lfm2.5:8b
# LLM provider: "ollama" (default) or a litellm provider name.
MODEL_PROVIDER=ollama
# Embedding model for the UNHCR-guidelines RAG index (build_guidelines_index.py).
EMBED_MODEL=nomic-embed-text
# NOTE: There is NO web search. The assessment is grounded only in sources we
# control — the curated country data and the UNHCR guidelines (local RAG) — so no
# Tavily / external search key is needed.