-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
38 lines (31 loc) · 1.21 KB
/
.env.example
File metadata and controls
38 lines (31 loc) · 1.21 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
# ===========================================
# AetherGuard Environment Configuration
# ===========================================
# Copy this file to .env and configure your API keys
# LLM Provider: openai, groq, or openrouter
# OpenRouter uses openai-compatible API
LLM_PROVIDER=openai
# For OpenRouter (recommended - many free models):
# Get your API key at: https://openrouter.ai/keys
LLM_BASE_URL=https://openrouter.ai/api/v1
LLM_API_KEY=sk-or-v1-YOUR_KEY_HERE
# OpenRouter Free Models (no credit card required):
# - google/gemma-2-9b-it:free
# - meta-llama/llama-3.2-3b-instruct:free
# - mistralai/mistral-7b-instruct:free
# - qwen/qwen-2-7b-instruct:free
LLM_MODEL_NAME=google/gemma-2-9b-it:free
# Alternative: For Groq (when not rate limited):
# LLM_BASE_URL=https://api.groq.com/openai/v1
# LLM_API_KEY=gsk_YOUR_KEY_HERE
# LLM_MODEL_NAME=llama-3.3-70b-versatile
# Alternative: For OpenAI:
# LLM_BASE_URL=https://api.openai.com/v1
# LLM_API_KEY=sk-YOUR_KEY_HERE
# LLM_MODEL_NAME=gpt-4o-mini
# Ollama (local, no API key needed):
OLLAMA_BASE_URL=http://localhost:11434
OLLAMA_MODEL_NAME=llama3
# Mock mode (for testing without LLM):
# Set to true to use mock agent without consuming API tokens
AETHERGUARD_MOCK_ENABLED=false