-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
31 lines (25 loc) · 761 Bytes
/
.env.example
File metadata and controls
31 lines (25 loc) · 761 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Server
DOMAIN=forum-search.example.com
# PostgreSQL
DATABASE_URL=postgresql://mm:changeme@localhost:5433/mm_forum
POSTGRES_PASSWORD=changeme
# Qdrant
QDRANT_URL=http://localhost:6333
QDRANT_COLLECTION=mm_forum_posts
# Embeddings: "local" or "openai"
EMBEDDING_MODEL=local
LOCAL_MODEL_NAME=all-MiniLM-L6-v2
# OpenAI (optional, only needed when EMBEDDING_MODEL=openai or LLM_PROVIDER=openai)
OPENAI_API_KEY=
# LLM / RAG answer generation
# Provider: anthropic | openai | ollama
LLM_PROVIDER=anthropic
LLM_MODEL=claude-opus-4-6
ANTHROPIC_API_KEY=
# Ollama only (ignored for anthropic/openai):
LLM_BASE_URL=http://ollama:11434
RAG_CONTEXT_POSTS=8
# Scraper behaviour
SCRAPE_DELAY_SECONDS=1.0
SCRAPE_CONCURRENCY=3
FORUM_BASE_URL=https://forum.mattermost.com