[1.7.2] — 2026-03-01
✨ New Features
- Multi-Modal Provider Support — Added 6 TTS providers (ElevenLabs, Nvidia NIM, HuggingFace, Coqui, Tortoise, Qwen3), 3 STT providers, 2 image providers (SD WebUI, ComfyUI), and two new modalities:
/v1/videos/generations(Text-to-Video) and/v1/music/generations(Text-to-Music). Shared abstractions viaregistryUtils.tsandcomfyuiClient.ts(PR #167 by @ken2190) - Media Playground Page — New dashboard page at
/dashboard/mediawith tabbed interface (Image/Video/Music), model selector, prompt input, and JSON result viewer - Unit Tests for Registry Utils — 24 tests covering
parseModelFromRegistry,getAllModelsFromRegistry,buildAuthHeaders, and integration with video/music registries - WFGY 16-Problem RAG Failure Map — Added troubleshooting reference for RAG/LLM failure taxonomy in
docs/TROUBLESHOOTING.md(PR #164 by @onestardao)
🐛 Fixed
- Gemini Imported Models Return 404 — Strip
models/prefix from Gemini model IDs during import to prevent doubled paths (#163) - Pino File Transport Fails in Next.js Production — Log actual error + add sync
pino.destination()fallback (#165) - Windows Electron CI Build — Added
shell: bashto Collect installers step for Windows runners (PR #168 by @benzntech) - TypeScript Safety — Replaced
Record<string, any>withRecord<string, unknown>inregistryUtils.ts