The deployed container sets OLLAMA_MODEL=nomic-embed-text for embeddings, which shadowed the generation-model setting and broke Phase 0 keyword extraction and Phase 4 LLM re-ranking on every request. The setting is now ollama_llm_model (env: OLLAMA_LLM_MODEL, default gemma4:e2b), startup logs the resolved generation model, and Phase 0/Phase 4 LLM calls are wrapped in a 12s asyncio.wait_for with graceful fallback so a hung call cannot gate retrieval for the full 120s client timeout. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
26 lines
758 B
Bash
26 lines
758 B
Bash
# Service URLs for local dev (pointing to your server)
|
|
TEST_HOST=192.168.86.149
|
|
WIKIJS_URL=http://192.168.86.149:8088
|
|
NEO4J_URI=bolt://192.168.86.149:7687
|
|
QDRANT_HOST=192.168.86.149
|
|
QDRANT_PORT=6333
|
|
OLLAMA_URL=http://192.168.86.149:11434
|
|
SEARXNG_URL=http://192.168.86.149:8080
|
|
REDIS_HOST=192.168.86.149
|
|
PAPERLESS_URL=http://192.168.86.149:8091
|
|
|
|
OLLAMA_LLM_MODEL=gemma4:e2b
|
|
OLLAMA_EMBEDDING_MODEL=nomic-embed-text
|
|
|
|
# Wiki.js auth
|
|
WIKIJS_USERNAME=librarian@schweitz.net
|
|
WIKIJS_PASSWORD=key_here
|
|
# Wiki.js GraphQL API token (generate from Admin → API Access)
|
|
WIKI_GRAPHQL_API=your_jwt_token_here
|
|
|
|
LIBRARY_API_KEY=key_here
|
|
NEO4J_PASSWORD=key_here
|
|
WIKIJS_DB_PASSWORD=key_here
|
|
SCHEDULER_API_KEY=key_here
|
|
PAPERLESS_TOKEN=key_here
|
|
SYSTEM_SETTINGS_PASSWORD=key_here |