-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
34 lines (29 loc) · 1.08 KB
/
Copy path.env.example
File metadata and controls
34 lines (29 loc) · 1.08 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
# ===================================================================
# SECRET HITLER LLM GAME ENGINE - ENVIRONMENT CONFIGURATION
# ===================================================================
#
# SECURITY NOTICE:
# - NEVER commit real API keys to version control!
# - Copy this file to .env and add your real keys
# - The .env file is in .gitignore for security
#
# ===================================================================
# OpenRouter API Configuration
# Get your API key from: https://openrouter.ai/keys
# Required for LLM API calls
OPENROUTER_API_KEY=your_openrouter_api_key_here
# Game Configuration
DEFAULT_PLAYER_COUNT=5
DEFAULT_MODEL=grok-4-fast-free
LOG_LEVEL=INFO
# Cost Management (important for controlling spending)
MAX_COST_PER_GAME=5.00
MAX_DAILY_COST=200.00
COST_ALERT_THRESHOLD=1.00
# Optional: Override default models for different decision types
# Use these to customize which models handle which types of decisions
# CRITICAL_MODEL=claude-3-opus
# STRATEGIC_MODEL=claude-3-sonnet
# ROUTINE_MODEL=grok-4-fast-free
# Development Settings
ENABLE_DEBUG_LOGGING=false