hass-closest-intent: Fuzzy intent matcher for HomeAssistant. Garbled STT output in, actual intent out.
hass-closest-intent: Fuzzy intent matcher for HomeAssistant. Garbled STT output in, actual intent out.
GitHub - charludo/hass-closest-intent: Fuzzy intent matcher for HomeAssistant. Garbled STT output in, actual intent out.

cross-posted from: https://awful.systems/post/8238756
Basically, STT quality has kept me from switching to HomeAssistant's voice assistant features. The default matcher (Hassil) is waaaaaaay to strict, and LLMs are slow, constly, and/or a privacy nightmare, plus I don't like them.
I really thought there would be something available that just matches your STT output to the configured intents, but apparently not, so I've built in myself.
Finally convinced my GF to throw Alexa in the bin :)
Here's an excerpt from the README, and feel free to AMA:
🌲 Problem statement and solution
Speech-To-Text (STT) output, especially fast and local STT output, is often simply bad. HomeAssistant's own Hassil is incredibly picky: your STT output must match exactly to one of the configured intents.
There's two paths forward from this: Upgrade your hardware to support better STT, or try to figure out what the speaker probably meant to say from the garbled output.
This project does the latter.
With this custom integration, "Lights on in live in room" will actually turn on the lights in your living room. So will, for that matter, "lighrts on inn livainriomm".
Short demo, first with
closest-intent, then with bare Hassil: 
📜 Highlights
- Pattern expansion. Expanding
<expansion_rules>,(alternatives|to), and[optional|alternatives]all work, including on HASS-defined lists like your home's areas and entities!- Slot extraction. Both for wildcard slots (like for adding something to the shopping list, where the
{item}is a wildcard), and against slots like{timer_hours:hours}with a fixed set of possibilities.- Fuzzy slot resolution. For list-like slots and expansion rules (including your areas and entities!), fuzzy match the slot values to the available options. Allows "livikroom" to be corrected to "living room".
- Actual intent handling still done by Hassil.
closest-intentsimply corrects your STT output or typos to the closest matching intent, and then forwards a nice, canonical sentence to Hassil, who then deals with the intent just like if you had spoken/typed perfectly.- 100% LLM-free. Just uses relatively simple fuzzy matching of the input against your intents, plus some clever-ish (well... working, at least) tricks to improve the results.
- Fallback agent support. OK, I said 100% LLM-free, but if you absolutely want to, you can use one as fallback. More on this below.
- Is fast :) (as in: basically instant for a couple hundred configured custom intents).
Note:
closest-intentis completely language-agnostic. All the examples in thisREADMEare in English, but you can use it with any language you like; personally, I use it in German. 
📋 Examples
Here's some examples of things I said, what my STT (
wyoming-faster-whisper-base) understood, what HomeAssistant was able to do/answer after passing the STT output throughclosest-intent, and what the same STT output would have resulted in with just bare Hassil.Note: These are actual results I got when speaking the "what was said" sentences in my phone. I'm a native German speaker, and so I do have an accent, but this pretty closely matches my experience when using the German-language version of whisper. The "bare Hassil" responses are what I got after 1:1 pasting the STT output into the voice assist chat window with
closest-intentdisabled....you get the idea.
 
💡 How it works
closest-intentis registered in HomeAssistant as a conversation agent. On startup, it parses (by default) all user-defined intents (or optionally, also the builtins ones). In this process, it also expands all rules, like<expansion_rule>,(alternatives|to), and[optionals], and notes where{slots}are located, and whether they are wildcards or belong to some list (like areas, entities, or the numbers 1-100).When a user request comes in (via voice command or the chat box),
closest-intentfuzzy-matches that request against those expanded rules. If the rule does not contain a slot, it is picked immediately. If it does contain a slot,closest-intentperforms a sequence of fancy magic steps to find the best-fitting slot value among a range of possible positions within the top-scoring matched sentences. In practice, this often means "smallest slot-value on a word-boundary", but the extraction is not limited to that.With the best match found, we then reconstruct the "canonical form", i.e. a sentence that Hassil will actually understand. If in your configured intents, "Play some music." exists, and
closest-intentgot "Place on music" and matched that to the intent, it will simply forward "Play some music." to Hassil. If the intent contained a slot, the extracted value will be substituted.This guarantees that the sentence passed to Hassil will actually be understood, and allows us to not have to worry at all about performing actions, running scripts,...
If no matching intent could be found, we pass the exact input we got to the configured fallback agent. By default, that is simply Hassil (which again allows us to be lazy and not worry about proper error responses), or another agent, like a LLM.