-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
70 lines (61 loc) · 1.99 KB
/
.env.example
File metadata and controls
70 lines (61 loc) · 1.99 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
58
59
60
61
62
63
64
65
66
67
68
69
70
# ===========================================
# 1. API Keys (Replace with your actual keys)
# ===========================================
OPENAI_API_KEY=your_openai_api_key_here
GOOGLE_AI_API_KEY=your_google_ai_api_key_here
NAVER_API_KEY=your_naver_api_key_here
ANTHROPIC_API_KEY=your_anthropic_api_key_here
# ===========================================
# 2. Database Configuration
# ===========================================
DATABASE_URL=mysql://chatbot_user:chatbot_password@mysql:3306/chatbot_db
# MySQL 자격증명 (Docker용)
MYSQL_ROOT_PASSWORD=your_secure_root_password_here
MYSQL_DATABASE=chatbot_db
MYSQL_USER=chatbot_user
MYSQL_PASSWORD=your_secure_mysql_password_here
# ===========================================
# 3. Redis Configuration
# ===========================================
REDIS_HOST=redis
REDIS_PORT=6379
REDIS_DB=0
REDIS_PASSWORD=
# ===========================================
# 4. ChromaDB Configuration
# ===========================================
CHROMA_HOST=chroma
CHROMA_PORT=8001
CHROMA_PERSIST_DIRECTORY=./data/embeddings/chromadb
# ===========================================
# 5. Elasticsearch Configuration
# ===========================================
ELASTICSEARCH_HOST=elasticsearch
ELASTICSEARCH_PORT=9200
ELASTICSEARCH_USERNAME=
ELASTICSEARCH_PASSWORD=
# ===========================================
# 6. Application Configuration
# ===========================================
DEBUG=true
LOG_LEVEL=INFO
SESSION_TIMEOUT_HOURS=24
MAX_CONVERSATION_COUNT=50
MAX_REQUEST_SIZE=10485760
# ===========================================
# 7. Agent Configuration
# ===========================================
CONFIDENCE_THRESHOLD=0.75
MAX_AGENTS_PER_SESSION=3
ENABLE_DEBATE=true
# ===========================================
# 8. API Configuration
# ===========================================
API_HOST=0.0.0.0
API_PORT=8000
API_WORKERS=1
# ===========================================
# 9. Docker/Runtime Settings
# ===========================================
PYTHONPATH=/app
ENVIRONMENT=development