diff --git a/env.example b/env.example index d770c1e7..82643a92 100644 --- a/env.example +++ b/env.example @@ -2,6 +2,16 @@ # Get your API key from: https://makersuite.google.com/app/apikey GEMINI_API_KEY=your_gemini_api_key_here +# LLM Provider Configuration +# Choose which AI backend to use: gemini | openrouter +# Changing this requires an app restart (the provider is selected at startup). +LLM_PROVIDER=gemini +# OpenRouter API key — required only when LLM_PROVIDER=openrouter +# Get your key from: https://openrouter.ai/keys +OPENROUTER_API_KEY=your_openrouter_key_here +# Vision-capable model to use with OpenRouter (can also be set in Settings UI) +OPENROUTER_MODEL=anthropic/claude-sonnet-4 + # Speech Recognition Configuration # Choose one provider: azure or whisper SPEECH_PROVIDER=whisper diff --git a/index.html b/index.html index 31e37f5d..24c55ac9 100644 --- a/index.html +++ b/index.html @@ -382,6 +382,10 @@
+