0

I want to make a small AI speaker.

It looks like Google Home, Apple Homepod.

I installed the Google Assist SDK on my Ubuntu 16.04. I can register an action through gactions.

$ pushtotalk.py --device-model-id ~ I can use the Google assistant like this.

But the dialogue flow is only on the simulator in the actions on google web page. Can I use it like pushtotalk.py and can I use intents in the dialogue flow?

baduker
  • 19,152
  • 9
  • 33
  • 56
Jaime
  • 3
  • 1

1 Answers1

0

The Google Assistant SDK is just like using the Google Assistant. If you want, you can invoke and communicate with Dialogflow apps just like on a phone.

pushtotalk.py ... "Talk to my app"

pushtotalk.py ... "Hello"

That will go on as you want. You can also access 3P actions like Number Genie.

Nick Felker
  • 11,536
  • 1
  • 21
  • 35
  • I think part of the issue here is that their action isn't published yet, so they need to authenticate their Assistant SDK device. – Prisoner Apr 03 '18 at 22:30
  • Thank you vvvvery much ... That's exactly what I was looking for. – Jaime Apr 08 '18 at 17:13