-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
28 lines (21 loc) · 836 Bytes
/
.env.example
File metadata and controls
28 lines (21 loc) · 836 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
# SnailHunter Configuration
# Copy this file to .env and fill in your values
# LLM Provider: anthropic, openai, or ollama
SNAILHUNTER_LLM_PROVIDER=anthropic
# API Keys (set the one for your chosen provider)
SNAILHUNTER_ANTHROPIC_API_KEY=your-anthropic-api-key
SNAILHUNTER_OPENAI_API_KEY=your-openai-api-key
# Ollama settings (if using local models)
SNAILHUNTER_OLLAMA_BASE_URL=http://localhost:11434
# LLM Model (provider-specific)
# Anthropic: claude-sonnet-4-20250514, claude-opus-4-20250514
# OpenAI: gpt-4-turbo-preview, gpt-4o
# Ollama: llama3, mistral, etc.
SNAILHUNTER_LLM_MODEL=claude-sonnet-4-20250514
# Rate limiting (requests per second per target)
SNAILHUNTER_RATE_LIMIT_REQUESTS_PER_SECOND=10
# Database path
SNAILHUNTER_DB_PATH=./data/snailhunter.db
# Logging
SNAILHUNTER_LOG_LEVEL=INFO
SNAILHUNTER_LOG_FORMAT=json