-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
37 lines (32 loc) · 945 Bytes
/
Copy path.env.example
File metadata and controls
37 lines (32 loc) · 945 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
# Backend runtime
APP__DEBUG=false
APP__MOCK_LLM=false
APP__ENV=development
APP__API_PORT=8001
APP__FRONTEND_HOST=http://localhost
APP__FRONTEND_PORT=3000
# Backend LLM
LLM__API_KEY=your-provider-api-key
LLM__BASE_URL=https://api.deepseek.com
LLM__GENERATION_MODEL=deepseek-v4-pro
LLM__DECISION_MODEL=deepseek-v4-pro
LLM__ENABLE_THINKING_CONTROLS=true
LLM__GENERATION_THINKING=false
LLM__DECISION_THINKING=true
LLM__GENERATION_REASONING_EFFORT=high
LLM__DECISION_REASONING_EFFORT=high
# Checker
CHECKER__QUESTION_HISTORY_WINDOW=50
CHECKER__LITERAL_NORMALIZATION=true
CHECKER__FAIL_OPEN=true
# Storage
STORAGE__DATA_DIR=data
STORAGE__SESSIONS_DIR=data/sessions
STORAGE__SESSION_DB_PATH=data/sessions/deepquestiontree.sqlite3
STORAGE__LOGS_DIR=data/logs
# Security
SECURITY__API_TOKEN=dev-token
# Frontend: place these in src/frontend/.env.local
NEXT_PUBLIC_API_HOST=http://localhost
NEXT_PUBLIC_API_PORT=8001
NEXT_PUBLIC_API_TOKEN=dev-token