File size: 875 Bytes
8a682b5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
# Multi-Agent Platform Environment Configuration

# Redis Configuration
REDIS_URL=redis://redis:6379
REDIS_PASSWORD=
REDIS_DB=0

# API Configuration
API_TOKEN=your_secure_token_here
LOG_LEVEL=INFO
DEBUG=false

# Server Configuration
HOST=0.0.0.0
PORT=8080
WORKERS=4

# Security
CORS_ORIGINS=["*"]
RATE_LIMIT_REQUESTS=100
RATE_LIMIT_WINDOW=60

# Monitoring
PROMETHEUS_ENABLED=true
METRICS_PORT=9090

# Database (if using external database)
DATABASE_URL=postgresql://user:password@localhost:5432/multiagent

# External Services
OPENAI_API_KEY=your_openai_key_here
TAVILY_API_KEY=your_tavily_key_here

# Platform Configuration
MAX_AGENTS=1000
MAX_TASKS_PER_AGENT=100
TASK_TIMEOUT_SECONDS=300
AGENT_HEARTBEAT_INTERVAL=30

# Marketplace Configuration
MARKETPLACE_ENABLED=true
MARKETPLACE_FEE_PERCENT=5.0

# Resource Management
MAX_CPU_CORES=16
MAX_MEMORY_MB=32768
MAX_GPU_COUNT=4