12 lines
345 B
Bash
12 lines
345 B
Bash
# LLM Provider Configuration
|
|
# Options: "ollama" or "gemini"
|
|
LLM_PROVIDER=ollama
|
|
|
|
# Default model to use
|
|
# For Ollama: "gemma3:4b", "qwen3:4b", "mistral:7b", etc.
|
|
# For Gemini: "gemini-2.5-pro", "gemini-2.5-flash", etc.
|
|
DEFAULT_MODEL=gemma3:4b
|
|
|
|
# Google Gemini API Key (required if using Gemini provider)
|
|
GEMINI_API_KEY=your_gemini_api_key_here
|