🚀 Immich Power Tools v1.3.0
✨ What's New
You can now plug in any OpenAI-compatible endpoint.
🆕 Environment Variables
# .env.example
# ...existing config...
# ──────────────────────────────────────────
# 🤖 AI / Query Parsing Configuration
# ──────────────────────────────────────────
AI_API_KEY="" # API key for your OpenAI-compatible provider
AI_BASE_URL="https://api.openai.com/v1" # Base URL for OpenAI-compatible API
AI_MODEL="gpt-4o-mini" # Model used for parsing search queries
🌐 Popular Provider Endpoints
| Provider | OPENAI_BASE_URL |
|---|---|
| OpenAI | https://api.openai.com/v1 |
| Groq | https://api.groq.com/openai/v1 |
| Ollama (local) | http://localhost:11434/v1 |
| OpenRouter | https://openrouter.ai/api/v1 |
| Gemini | https://generativelanguage.googleapis.com/v1beta/openai/ |
🔄 Migration Guide
If you're upgrading from v1.2.x, simply add the new env variables to your .env file. The old Gemini configuration is no longer needed.
- GEMINI_API_KEY=your-gemini-key
+ OPENAI_BASE_URL=https://api.openai.com/v1
+ OPENAI_API_KEY=your-api-key
+ OPENAI_MODEL=gpt-4o-mini