-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
32 lines (26 loc) · 804 Bytes
/
.env.example
File metadata and controls
32 lines (26 loc) · 804 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
# App runtime
APP_ENV=local
APP_HOST=0.0.0.0
APP_PORT=8000
APP_DB_URL=sqlite:///./aideator.db
APP_DOCS_DIR=./docs
# Privacy/network mode defaults:
# - local -> local-only (no outbound HTTP)
# - hybrid -> curated external signals with keyword-only payloads
# - cloud -> cloud-enabled (full external mode)
APP_DEFAULT_MODE=local
# Backward compatibility alias (prefer APP_DEFAULT_MODE)
DEFAULT_MODE=local-only
# External providers (empty in local-only mode)
TAVILY_API_KEY=
REDDIT_CLIENT_ID=
REDDIT_CLIENT_SECRET=
LLM_API_BASE=
LLM_API_KEY=
# Search provider: duckduckgo (free), tavily (mid), exa (high), searxng (self-hosted), builtin (offline)
SEARCH_PROVIDER=duckduckgo
# SearXNG (only needed if SEARCH_PROVIDER=searxng)
# SEARXNG_URL=http://localhost:8888
# Logging
LOG_LEVEL=info
LOG_JSON=false