-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
49 lines (40 loc) · 1.74 KB
/
.env.example
File metadata and controls
49 lines (40 loc) · 1.74 KB
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
40
41
42
43
44
45
46
47
48
49
# ==============================================================================
# DATABASE CONFIGURATION (PostgreSQL)
# ==============================================================================
POSTGRES_USER=seratonin
POSTGRES_PASSWORD=your_secure_password_here
POSTGRES_DB=seratonin_db
POSTGRES_HOST=postgres
POSTGRES_PORT=5432
# External port for host machine access
EXTERNAL_POSTGRES_PORT=5433
# ==============================================================================
# CACHE & BROKER CONFIGURATION (Redis)
# ==============================================================================
REDIS_HOST=redis
REDIS_PORT=6379
# External port for host machine access
EXTERNAL_REDIS_PORT=6380
# ==============================================================================
# VECTOR SEARCH CONFIGURATION (Qdrant)
# ==============================================================================
QDRANT_HOST=qdrant
QDRANT_PORT=6333
QDRANT_GRPC_PORT=6334
# External ports for host machine access
EXTERNAL_QDRANT_PORT=6333
EXTERNAL_QDRANT_GRPC_PORT=6334
# ==============================================================================
# AI & LLM PROVIDERS
# ==============================================================================
OPENAI_API_KEY=your_openai_api_key_here
ANTHROPIC_API_KEY=your_anthropic_api_key_here
# Routing settings for cost optimization
# Requests with prompt length > threshold will use cheaper models [cite: 3]
LLM_COST_THRESHOLD_CHARS=25000
# ==============================================================================
# EXTERNAL INTEGRATIONS
# ==============================================================================
PUBMED_API_KEY=your_pubmed_api_key_here
SLACK_BOT_TOKEN=your_slack_key_here
SLACK_SIGNING_SECRET=your_slack_here