-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
31 lines (23 loc) · 745 Bytes
/
Copy path.env.example
File metadata and controls
31 lines (23 loc) · 745 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
# Environment Configuration Template for CAG (Cache Augmentation Generation) System
# Copy this file to .env and fill in your actual values
# Gemini API Configuration
GEMINI_API_KEY=your_gemini_api_key_here
# Cache Configuration
CACHE_TYPE=memory
CACHE_TTL=3600
MAX_CACHE_SIZE=1000
# Embedding Model Configuration
EMBEDDING_MODEL=all-MiniLM-L6-v2
# Document Processing Configuration
CHUNK_SIZE=1000
CHUNK_OVERLAP=200
# Optional: Database Configuration (if using persistent storage)
# DATABASE_URL=sqlite:///./cag.db
# Optional: Redis Configuration (if using Redis cache)
# REDIS_URL=redis://localhost:6379/0
# Optional: Logging Configuration
# LOG_LEVEL=INFO
# LOG_FILE=cag.log
# Optional: Server Configuration
# HOST=0.0.0.0
# PORT=8000