-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
58 lines (47 loc) · 1.02 KB
/
.env.example
File metadata and controls
58 lines (47 loc) · 1.02 KB
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
48
49
50
51
52
53
54
55
56
57
58
# AI Orchestrator Environment Configuration
# Copy this file to .env and fill in your values
# Application Settings
APP_ENV=development
APP_DEBUG=false
LOG_LEVEL=INFO
LOG_FILE=logs/ai-orchestrator.log
# Agent Configuration
CODEX_ENABLED=true
CODEX_COMMAND=codex
CODEX_TIMEOUT=300
GEMINI_ENABLED=true
GEMINI_COMMAND=gemini
GEMINI_TIMEOUT=180
CLAUDE_ENABLED=true
CLAUDE_COMMAND=claude
CLAUDE_TIMEOUT=300
COPILOT_ENABLED=false
COPILOT_COMMAND=copilot
COPILOT_TIMEOUT=120
# Workflow Settings
DEFAULT_WORKFLOW=default
MAX_ITERATIONS=3
MAX_RETRIES=3
RETRY_DELAY=1.0
# Directories
OUTPUT_DIR=./output
WORKSPACE_DIR=./workspace
REPORTS_DIR=./reports
SESSIONS_DIR=./sessions
# Performance Settings
ENABLE_CACHING=true
CACHE_TTL=3600
MAX_CONCURRENT_AGENTS=3
REQUEST_TIMEOUT=600
# Monitoring & Metrics
ENABLE_METRICS=true
METRICS_PORT=9090
METRICS_PATH=/metrics
# Security
ENABLE_RATE_LIMITING=true
RATE_LIMIT_PER_MINUTE=60
MAX_TASK_LENGTH=10000
# Feature Flags
ENABLE_ASYNC_EXECUTION=true
ENABLE_DISTRIBUTED_TRACING=false
ENABLE_AUTO_RECOVERY=true