-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy path.env.example
More file actions
58 lines (45 loc) · 2.06 KB
/
.env.example
File metadata and controls
58 lines (45 loc) · 2.06 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
# .env.example - GitVoyant Configuration Template
# Copy this file to .env and configure your settings
# =============================================================================
# API KEYS - Get your keys from the respective providers
# =============================================================================
# Anthropic Claude API Key
# Get yours at: https://console.anthropic.com/
ANTHROPIC_API_KEY=your_claude_api_key_here
# =============================================================================
# CLAUDE CONFIGURATION
# =============================================================================
CLAUDE_MODEL=claude-3-5-sonnet-20241022
CLAUDE_TEMPERATURE=0.1
CLAUDE_MAX_TOKENS=4000
# =============================================================================
# GITVOYANT CORE SETTINGS
# =============================================================================
GITVOYANT_DEFAULT_WINDOW_DAYS=180
GITVOYANT_LOG_LEVEL=INFO
MIN_COMMITS_REQUIRED=5
MAX_FILES_PER_ANALYSIS=50
VERBOSE_MODE=false
# =============================================================================
# API SERVER CONFIGURATION
# =============================================================================
API_HOST=0.0.0.0
API_PORT=8000
API_RELOAD=true
# =============================================================================
# AGENT CONFIGURATION
# =============================================================================
AGENT_VERBOSE=true
AGENT_MAX_ITERATIONS=3
# =============================================================================
# PYTHONPATH for local module resolution (optional fallback)
# =============================================================================
# Uncomment if needed — Makefile already exports this
# PYTHONPATH=./src
# =============================================================================
# SETUP INSTRUCTIONS
# =============================================================================
# 1. Copy this file: cp .env.example .env
# 2. Add your API keys
# 3. Optionally uncomment PYTHONPATH
# 4. Run: make dev && make cli-complete