RobotPai / deployment /env.example
atr0p05's picture
Upload 291 files
8a682b5 verified
# 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