Actions on Google
using Assistant API
Google Assistant
What’s the nearest gas station?
How does it work?
ML magic Assistant does for you
Intent Matching & Entity Recognition
Google Assistant | Action Examples
Google Assistant | Action Examples
Google Assistant Custom Actions
full list of actions: assistant.google.com/explore
Dialogflow
An end-to-end developer platform for building natural and rich conversational experiences
Basically, this platform is the place where you code response-returning fulfilments and control your conversation logic
Let’s get to work!
Great Job!
Now what can we do with Assistant API?
19 languages
80 countries
1M+
Actions
1B+ devices
supported
1. Make your content discoverable
Search engines are using structured data to visualize main results prior to list of links. Google Assistant is doing the same thing, but won’t show average links after. So by providing structured data to your web pages you can make your sites appear in Assistant Search.
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Party Coffee Cake",
"url": "http://www.example.com",
"name": "Unlimited Ball Bearings Corp.",
"contactPoint": {
"@type": "ContactPoint",
"telephone": "+1-401-555-1212",
"contactType": "Customer service"
}
}
</script>
2. Extend your Android app to be invoked from Google Assistant
App Actions are similar to those we build in the codelab, but instead of answers it provides fulfilment inside the app.
Deep links - fulfilment has some steps pre-done for you.
3. Google Assistant for IoT
more codelabs - https://developers.google.com/assistant/codelabs
documentation - https://developers.google.com/assistant
responses - https://developers.google.com/assistant/conversational/responses
assistant talks on Google I/O 2019 - https://youtu.be/dpNrq_wiqGs
Useful resources
Thank You!