File size: 353 Bytes
1e4e81b 301a57d 69efa77 1e4e81b | 1 2 3 4 5 6 7 8 9 10 11 12 13 | # LLM Provider: nn (default), anthropic, ollama, groq, gemini
# NN is the default — free, fast, no API key needed.
# Leave LLM_PROVIDER unset or set to "nn" to use the local ONNX model.
#LLM_PROVIDER=nn
# Uncomment for Ollama:
#LLM_PROVIDER=ollama
#OLLAMA_MODEL=llama3.1
# Uncomment for Groq:
#LLM_PROVIDER=groq
#GROQ_API_KEY=your_groq_api_key_here
|