-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
25 lines (20 loc) · 1.03 KB
/
.env.example
File metadata and controls
25 lines (20 loc) · 1.03 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
# =============================================================================
# LLM API Keys Configuration
# =============================================================================
# Copy this file to .env and fill in your API keys
# NEVER commit .env to version control!
# =============================================================================
# OpenAI (https://platform.openai.com/api-keys)
OPENAI_API_KEY=your-openai-api-key-here
# Anthropic (https://console.anthropic.com/settings/keys)
ANTHROPIC_API_KEY=your-anthropic-api-key-here
# Google Gemini (https://aistudio.google.com/apikey)
GOOGLE_API_KEY=your-google-api-key-here
# Groq (https://console.groq.com/keys)
GROQ_API_KEY=your-groq-api-key-here
# =============================================================================
# Ollama Configuration (Optional - for local LLMs)
# =============================================================================
# Ollama runs locally, no API key needed
# Default host is http://localhost:11434
# OLLAMA_HOST=http://localhost:11434