-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.dist
More file actions
32 lines (23 loc) · 987 Bytes
/
.env.dist
File metadata and controls
32 lines (23 loc) · 987 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
# UK Macro Crew Environment Configuration
# Copy this file to .env and fill in your actual API keys
# Required: OpenAI API Key for LLM agents (GPT-4o-mini)
# Get your key from: https://platform.openai.com/api-keys
OPENAI_API_KEY=your_openai_api_key_here
# Required: Exa API Key for web search and data retrieval
# Get your key from: https://exa.ai/
EXA_API_KEY=your_exa_api_key_here
# Optional: Model selection (default: gpt-4o-mini)
MODEL=gpt-4o-mini
# Error Handling & Timeout Configuration
# Maximum iterations per agent before stopping (default: 8)
AGENT_MAX_ITERATIONS=8
# Maximum retries per agent on failure (default: 2)
AGENT_MAX_RETRIES=2
# Maximum execution time per agent in seconds (default: 900 = 15 minutes)
AGENT_MAX_EXECUTION_TIME=900
# Maximum requests per minute per agent (default: 150)
AGENT_MAX_RPM=150
# Stop execution immediately on first error (default: true)
CREW_FAIL_FAST=true
# Maximum requests per minute for the crew (default: 100)
CREW_MAX_RPM=100