Add .env.example for Ollama LLM provider config
Browse filesCo-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
- .env.example +6 -13
.env.example
CHANGED
|
@@ -1,14 +1,7 @@
|
|
| 1 |
-
# LLM Provider:
|
| 2 |
-
|
|
|
|
| 3 |
|
| 4 |
-
#
|
| 5 |
-
#
|
| 6 |
-
|
| 7 |
-
# For Groq (fast cloud, free tier 30 req/min):
|
| 8 |
-
# Sign up: https://console.groq.com
|
| 9 |
-
# GROQ_API_KEY=gsk_your-key-here
|
| 10 |
-
|
| 11 |
-
# For Ollama (free, local):
|
| 12 |
-
# Install: https://ollama.com
|
| 13 |
-
# Then: ollama pull llama3.1
|
| 14 |
-
# No API key needed!
|
|
|
|
| 1 |
+
# LLM Provider: anthropic, ollama, groq
|
| 2 |
+
LLM_PROVIDER=ollama
|
| 3 |
+
OLLAMA_MODEL=llama3.1
|
| 4 |
|
| 5 |
+
# Uncomment for Groq:
|
| 6 |
+
# LLM_PROVIDER=groq
|
| 7 |
+
# GROQ_API_KEY=your_groq_api_key_here
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|