Update .env.example: NN model as default provider
Browse filesCo-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
- .env.example +10 -5
.env.example
CHANGED
|
@@ -1,7 +1,12 @@
|
|
| 1 |
-
# LLM Provider: anthropic, ollama, groq
|
| 2 |
-
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
|
| 5 |
# Uncomment for Groq:
|
| 6 |
-
#
|
| 7 |
-
#
|
|
|
|
| 1 |
+
# LLM Provider: nn (default), anthropic, ollama, groq, gemini
|
| 2 |
+
# NN is the default — free, fast, no API key needed.
|
| 3 |
+
# Leave LLM_PROVIDER unset or set to "nn" to use the local ONNX model.
|
| 4 |
+
#LLM_PROVIDER=nn
|
| 5 |
+
|
| 6 |
+
# Uncomment for Ollama:
|
| 7 |
+
#LLM_PROVIDER=ollama
|
| 8 |
+
#OLLAMA_MODEL=llama3.1
|
| 9 |
|
| 10 |
# Uncomment for Groq:
|
| 11 |
+
#LLM_PROVIDER=groq
|
| 12 |
+
#GROQ_API_KEY=your_groq_api_key_here
|