-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
45 lines (36 loc) · 1019 Bytes
/
env.example
File metadata and controls
45 lines (36 loc) · 1019 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
33
34
35
36
37
38
39
40
41
42
43
44
# Backend Configuration
BACKEND_PORT=8000
BACKEND_HOST=0.0.0.0
# Doubao API Configuration
DOUBAO_API_KEY=your_doubao_api_key_here
DOUBAO_ENDPOINT=https://ark.cn-beijing.volces.com/api/v3
DOUBAO_MODEL=doubao-seed-1-6-thinking-250715
# Doubao Vision Model (for image evaluation)
DOUBAO_VISION_MODEL=doubao-seed-1-6-vision-250815
# SeedDream API Configuration
SEEDDREAM_API_KEY=your_seeddream_api_key_here
SEEDDREAM_ENDPOINT=https://api.seeddream.com/v1
SEEDDREAM_MODEL=doubao-seedream-4-0-250828
# Mem0 Configuration (Self-hosted)
MEM0_HOST=localhost
MEM0_PORT=6333
MEM0_VECTOR_STORE=qdrant
# Database Configuration
POSTGRES_HOST=localhost
POSTGRES_PORT=5432
POSTGRES_DB=jazz_agent
POSTGRES_USER=jazz_user
POSTGRES_PASSWORD=jazz_password
# Redis Configuration
REDIS_HOST=localhost
REDIS_PORT=6379
REDIS_DB=0
# Application Settings
DEBUG=true
LOG_LEVEL=INFO
MAX_ITERATIONS=3
QUALITY_THRESHOLD=0.75
GENERATION_TIMEOUT=120
# Frontend Configuration
VITE_API_URL=http://localhost:8000
VITE_WS_URL=ws://localhost:8000