Google Assistant for Desktop is an cross-platform assistant powered by the Google Assistant SDK, it has support for the official HTML5 screen output.
ask(question) // Promise
or say(query)
functions to let the assistant do whatever you want.Since hotword integration is not included yet, I've included a shortcut that triggers the assistant:
You'll hear a sound when you can start speaking almost instantly.
This assistant desktop app is made for developers and hackers alike who like to play around with the SDK's and software. It will probably never be released as a stand-alone app that you can download since Google will probably never give us production API keys for a desktop client.
There's a couple of things that need to be done in order to run this application properly.
First of all you need your own Google Cloud account, since the Google Assistant SDK is still in alpha, google allows only 500 api calls everyday, the trial version will suffice since the Google Assistant SDK is still in alpha.
Follow the steps on this page; https://developers.google.com/assistant/sdk/guides/library/python/embed/config-dev-project-and-account
After you've got your client_secret_<client-id>.json
file rename it to client_secret.json
and put it in the src/renderer
folder.
# install dependencies
npm install # Install dev mode
npm start #