#Assist - similar sounding words

1 messages · Page 1 of 1 (latest)

feral basalt
#

I tried adding a new phrase for the middle of the night : "night pee", I want the lights to turn on dim all the way to the bathroom.

But it recognizes that sentence in so many different ways
Knight P
night pea
night pee
Knight pea

Is there anything that can be setup to allow the voice assist to look for sound-alike words, or try to match what it detected against the sentences I've put in to trigger the automation? It seems like that's a logical part of the processing to look at potential matches against known phrases.

lethal thunder
#

[ knight | night | nite ] [ pea | p | pee | poo ]

feral basin
#

I did something like this when I wanted an easy trigger for my kids to play a TV show. Every time it was a false negative I looked at what it heard and added that.

#

I’ve talked with Mike about using some kind of phonetic distance ranking for sentence matching, but someone will need to find the time to do it.

feral basalt
#

I didn't realize the sentence could be written with the brackets, that makes things a TON easier, thanks!

feral basalt
#

From the docs, putting something in brackes means it's optional, does that change when the pipe is added [ pea | pee ] only matches two words? Or does it match nothing as well? Can we use full on regexp? Because then I can have some real fun.

feral basalt
#

oh, round are needed, square are optional?

vagrant cairn
#

round parantheses define a "group" in which you could use other separators, e.g. the pipe (|) for delimiting alternative phrases. having it all in square brackets means that the entire thing is optional. which might be a good thing, but not when you make everything optional, thus matching empty strings 😅