-
Notifications
You must be signed in to change notification settings - Fork 3.7k
This issue was moved to a discussion.
You can continue the conversation there. Go to discussion →
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Voice assistant example - the "command" tool #171
Comments
This is now fully functional: command-0.mp4Code is in examples/command Web version: examples/command.wasm |
This comment was marked as resolved.
This comment was marked as resolved.
I think you haven't updated to latest master: |
Yep I must be fresh on your heels as it was a new install this morning and thought it was latest apols. Works great |
Same as the command-line tool "command", but runs in the browser Also, added helper script "extra/deploy-wasm.sh" and fixed some timing constants for the WASM examples.
This issue was moved to a discussion.
You can continue the conversation there. Go to discussion →
There seems to be significant interest for a voice assistant application of Whisper, similar to "Ok, Google", "Hey Siri", "Alexa", etc. The existing stream tool is not very applicable for this use case, because the voice assistant commands are usually short (i.e.
play some music
,turn on the TV
,kill all humans
,feed the baby
, etc), whilestream
expects a continuous stream of speech.Therefore, implement a basic command-line tool called
command
that does the following:[key phrase][command]
, so by knowing the key phrase we can extract only the[command]
This should work in Web and Raspberry Pi and thanks to the VAD, it will be energy efficient.
Should be a good starting example for creating a voice assistant.
The text was updated successfully, but these errors were encountered: