forked from theaiautomators/deepeval-wrapper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
32 lines (25 loc) · 735 Bytes
/
env.example
File metadata and controls
32 lines (25 loc) · 735 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
# API Configuration
SECRET_KEY=your-secret-key-change-this-in-production
DEBUG=False
HOST=0.0.0.0
PORT=8000
# JWT Configuration
ACCESS_TOKEN_EXPIRE_MINUTES=30
# Authentication
ADMIN_USERNAME=admin
ADMIN_PASSWORD=changeme123
API_KEYS=deepeval-key-1,deepeval-key-2,your-api-key-here
# DeepEval Configuration
DEEPEVAL_API_KEY=your-deepeval-api-key
# LLM Provider API Keys
OPENAI_API_KEY=your-openai-api-key
ANTHROPIC_API_KEY=your-anthropic-api-key
GOOGLE_API_KEY=your-google-api-key
COHERE_API_KEY=your-cohere-api-key
# Redis Configuration (for job queuing)
REDIS_URL=redis://localhost:6379/0
# Celery Configuration
CELERY_BROKER_URL=redis://localhost:6379/0
CELERY_RESULT_BACKEND=redis://localhost:6379/0
# Logging
LOG_LEVEL=INFO