-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
57 lines (41 loc) · 1.13 KB
/
Copy path.env.example
File metadata and controls
57 lines (41 loc) · 1.13 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
50
51
52
53
54
55
56
57
# Environment Variables for Agentic Search Platform
# Copy this file to .env and fill in your values
# ===================
# API Keys
# ===================
# Anthropic API Key (required)
# Get yours at: https://console.anthropic.com/
ANTHROPIC_API_KEY=sk-ant-api03-xxxxx
# ===================
# Services
# ===================
# SearXNG URL (local Docker instance)
SEARXNG_URL=http://localhost:8080
# Redis URL (local Docker instance)
REDIS_URL=redis://localhost:6379
# ===================
# Application Settings
# ===================
# Log level: debug, info, warn, error
LOG_LEVEL=info
# Maximum search iterations before forcing synthesis
MAX_ITERATIONS=3
# Request timeout in milliseconds
REQUEST_TIMEOUT_MS=30000
# Claude model to use
# Options: claude-sonnet-4-20250514, claude-opus-4-20250514
CLAUDE_MODEL=claude-sonnet-4-20250514
# ===================
# Memory Settings
# ===================
# Enable episodic memory (Redis)
ENABLE_EPISODIC_MEMORY=true
# Session TTL in seconds (24 hours)
SESSION_TTL_SECONDS=86400
# ===================
# Development
# ===================
# Node environment
NODE_ENV=development
# Server port
PORT=3000