What's Changed
🐛 Bug Fix — Conversation Agent Selectable Again (HA 2026.6+)
PR #31 fixes a regression where the Hermes conversation agent was greyed out and unselectable in the Assist pipeline dropdown on Home Assistant 2026.6.x.
Root cause: supported_languages in conversation.py was returning ["*"] (a list), but Home Assistant 2026.6+ requires the wildcard language marker to be the plain string "*". The list form caused the agent to appear greyed out.
Fix: Changed supported_languages to return "*" (plain string) instead of ["*"] (list).
How to Update
- HACS → Updates → Hermes Voice Assistant → Update to v0.0.9
- Restart Home Assistant
- Go to Settings → Voice assistants → Assist → select Hermes in the Conversation agent dropdown
Full Changelog: v0.0.8...v0.0.9