-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
72 lines (51 loc) · 2.24 KB
/
Copy path.env.example
File metadata and controls
72 lines (51 loc) · 2.24 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
# CrewAI Research Team - Environment Configuration
# Copy this file to .env and fill in your values
# =============================================================================
# LLM Configuration
# =============================================================================
# OpenAI API Key (required for GPT models)
OPENAI_API_KEY=sk-your-openai-api-key-here
# Model selection (optional, defaults shown)
OPENAI_MODEL_NAME=gpt-4-turbo-preview
# =============================================================================
# MeshGuard Configuration
# =============================================================================
# MeshGuard API Key for governance
MESHGUARD_API_KEY=mg-your-meshguard-api-key-here
# MeshGuard endpoint URL
MESHGUARD_ENDPOINT=https://api.meshguard.dev
# Policy file path (relative to project root)
MESHGUARD_POLICY_PATH=policies/research-team.yaml
# Enable/disable governance enforcement
MESHGUARD_ENFORCE=true
# =============================================================================
# Web Search Configuration
# =============================================================================
# Serper API for Google search (optional, falls back to DuckDuckGo)
SERPER_API_KEY=your-serper-api-key-here
# Search result limit
SEARCH_MAX_RESULTS=10
# =============================================================================
# Output Configuration
# =============================================================================
# Output directory for research reports
OUTPUT_DIR=outputs
# Output format (markdown, json, html)
OUTPUT_FORMAT=markdown
# =============================================================================
# Logging Configuration
# =============================================================================
# Log level: DEBUG, INFO, WARNING, ERROR
LOG_LEVEL=INFO
# Enable audit logging to file
AUDIT_LOG_ENABLED=true
AUDIT_LOG_PATH=outputs/audit.log
# =============================================================================
# Agent Configuration
# =============================================================================
# Maximum iterations per agent (prevents infinite loops)
MAX_ITERATIONS=25
# Agent verbosity (for debugging)
AGENT_VERBOSE=true
# Enable memory between tasks
AGENT_MEMORY=true