-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
72 lines (58 loc) · 2.38 KB
/
Copy path.env.example
File metadata and controls
72 lines (58 loc) · 2.38 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# AgentFlow v2.0 Environment Variables
# Copy this file to .env and fill in your values
# NEVER commit .env to version control
# =============================================================================
# ANTHROPIC API (REQUIRED)
# =============================================================================
# Get your API key from: https://console.anthropic.com/
ANTHROPIC_API_KEY=your_anthropic_api_key_here
# Model to use (default: claude-opus-4-5)
ANTHROPIC_MODEL=claude-opus-4-5
# Maximum tokens per response
ANTHROPIC_MAX_TOKENS=4096
# =============================================================================
# API SERVER SETTINGS
# =============================================================================
API_HOST=0.0.0.0
API_PORT=8000
API_DEBUG=false
API_RELOAD=false
# =============================================================================
# FRONTEND SETTINGS
# =============================================================================
FRONTEND_HOST=localhost
FRONTEND_PORT=8501
# =============================================================================
# AGENT SETTINGS
# =============================================================================
# Maximum retry attempts per agent
AGENT_MAX_RETRIES=3
# Agent timeout in seconds
AGENT_TIMEOUT=60
# Enable detailed agent logging
AGENT_VERBOSE_LOGGING=true
# =============================================================================
# SAFETY SETTINGS
# =============================================================================
# Minimum safety score to pass (0-100)
SAFETY_THRESHOLD=70
# Block on constitutional violations
SAFETY_BLOCK_ON_VIOLATION=true
# =============================================================================
# EVALUATION SETTINGS
# =============================================================================
# Minimum quality score to pass (0-100)
EVAL_PASSING_SCORE=75
# Enable evaluation after every workflow
EVAL_AUTO_RUN=true
# =============================================================================
# LOGGING
# =============================================================================
LOG_LEVEL=INFO
LOG_FILE=logs/agentflow.log
LOG_FORMAT=json
# =============================================================================
# DECISION LOGGING
# =============================================================================
DECISION_LOG_DIR=logs/decisions
DECISION_LOG_ENABLED=true