-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy path.env.example
More file actions
39 lines (32 loc) · 961 Bytes
/
Copy path.env.example
File metadata and controls
39 lines (32 loc) · 961 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
32
33
34
35
36
37
38
39
# Auth persistence
AUTH_STORAGE_PATH=.storage/auth.json
# Scraping behavior
WAIT_MODE=static
RATE_LIMIT_MS=3000
PARALLEL_WORKERS=2
CHECKPOINT_SAVE_INTERVAL=10
# Vector search
ENABLE_VECTOR_SEARCH=true
# AI services
GEMINI_API_KEY=
OLLAMA_URL=http://localhost:11435
OLLAMA_MODEL=deepseek-r1
OLLAMA_EMBED_MODEL=nomic-embed-text
# Paths
EXPORT_DIR=exports
CHECKPOINT_PATH=.storage/checkpoint.json
VECTOR_INDEX_PATH=.storage/vector-index
# Browser behavior
# HEADLESS can be 'true', 'false', or 'new'
HEADLESS=false
# Debugging
# Set to 'true' to enable detailed API diagnostic logging in debug/api-diagnostics.jsonl
DEBUG=false
# HyDE (Hypothetical Document Embeddings)
# HYDE_MODE: 'off' | 'fusion' | 'supplement'
# - off: No HyDE is used.
# - fusion: Always use HyDE and fuse with original results (old default).
# - supplement: Only use HyDE if initial results are weak (new default).
HYDE_MODE=supplement
HYDE_THRESHOLD_SCORE=0.7
HYDE_THRESHOLD_COUNT=5