Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Voice User Interface LT vol.2
Search
Sponsored
·
Ship Features Fearlessly
Turn features on and off without deploys. Used by thousands of Ruby developers.
→
Yoichiro Tanaka
May 31, 2018
Technology
490
0
Share
Embed
Copy iframe code
Copy JS code
Copy link
Start on current slide
Voice User Interface LT vol.2
Yoichiro Tanaka
May 31, 2018
More Decks by Yoichiro Tanaka
See All by Yoichiro Tanaka
世界中の開発者と共に モノづくりをするために必要な6つのこと
yoichiro
19
6.6k
スマートスピーカーとは
yoichiro
2
1.1k
CM06 既存サービスを AI アシスタント対応する際の勘所
yoichiro
1
670
Assistant - Google I/O 2019 Extended
yoichiro
2
2.2k
VUIが作る未来 〜 NEM9
yoichiro
0
590
Google Assistant & Actions on Google Latest Updates
yoichiro
1
1.4k
Actions on Google Overview
yoichiro
0
620
Actions on Google Latest Updates
yoichiro
1
160
Actions on Google Latest Updates
yoichiro
1
910
Other Decks in Technology
See All in Technology
推論の観測、できていますか? 〜 Google Cloud Gemini Enterprise Agent Platformで 3つの Gemini モデルを実測して踏んだ、評価の罠 〜
shukob
PRO
0
180
AI 駆動 Terraform 開発/SRE_BizReach_MIXI_2
visional_engineering_and_design
3
1.9k
Multica × 長期記憶:40個のミニプロジェクト管理
eiei114
1
210
Podは生きているのにGoだけが落ちる:GOGCとGOMEMLIMITで追うInvisible OOM Killの謎
tkc66buzz
0
180
AI-DLCって実際どう? 〜聞きたいこと全部聞いてみる〜
news_it_enj
0
240
Where Is JetBrains AI Heading- — Central CLI, Air Alpha, and the Agentic Development Stack
x5gtrn
PRO
0
150
Snowflakeのコスト最適化を支えるアーキテクチャ設計
ktatsuya
0
790
AI時代に、プロダクトの数だけ積み上がる所有コストをどうエンジニアリングするか / Engineering the Cost of Ownership
kzkmaeda
1
1.1k
多摩川(.dev)ランニング入門 / Tamagawa.dev#3
fujiwara3
3
410
Adaptive Warehouse を今すぐ導入すべき理由と迷ったときの判断基準
__allllllllez__
0
120
Nav2、Nav3 ... はたまた自作?〜 作って理解する Nav3 の設計意図 〜 / Nav2, Nav3 ... or Build Your Own? — Understanding Nav3's design intent by building it from scratch
yanzm
0
260
Azure Cost Management の FOCUS コストデータを迷わず読むための“3つの軸”
tetsuyaooooo
0
160
Featured
See All Featured
Rails Girls Zürich Keynote
gr2m
96
14k
Faster Mobile Websites
deanohume
310
32k
How to Build an AI Search Optimization Roadmap - Criteria and Steps to Take #SEOIRL
aleyda
1
2.2k
Agile Actions for Facilitating Distributed Teams - ADO2019
mkilby
0
280
A better future with KSS
kneath
240
18k
Lessons Learnt from Crawling 1000+ Websites
charlesmeaden
PRO
1
1.6k
Ruling the World: When Life Gets Gamed
codingconduct
0
330
Practical Tips for Bootstrapping Information Extraction Pipelines
honnibal
25
2.1k
WCS-LA-2024
lcolladotor
0
820
JavaScript: Past, Present, and Future - NDC Porto 2020
reverentgeek
52
6.1k
svc-hook: hooking system calls on ARM64 by binary rewriting
retrage
2
560
16th Malabo Montpellier Forum Presentation
akademiya2063
PRO
0
370
Transcript
Sponsor LT 2 - Google Assistant is... Voice User Interface
Lightning Talk vol.2, Yoichiro Tanaka
Yoichiro Tanaka Software Engineer / IT Architect Google Developers Expert
(Assistant, Web) twitter.com/yoichiro google.com/+YoichiroTanaka
Google Assistant is in many devices including Android, iOS, PCs,
TVs, Cars, Headphones, Watches and Speakers. devices where Google Assistant lives. 500M
People ask Google Assistant something on driving.
People ask Google Assistant with voice, and see the rich
visual response.
Smart-earphones will become a next important device, I believe. http://www.nain.jp/ja/news/zeeny/
People are walking smartphone watching… But,
People will be walking not looking down with smart-earphone.
Android and Web are on the internet so far. Internet
GUI
Android and Web based on Google Assistant, and not only
GUI, but VUI also will become main interface. Internet GUI VUI
Google Assistant is Internet.
All developers need to use the Actions on Google. Google
Cloud Platform, Dialogflow Android, Google Play, Web, etc. Actions on Google Smart-(phones | watches | speakers | earphones | tvs), PCs, Cars
The Actions on Google is an entry point of all
developments for the Google Assistant.
Developers can create a new action with already-preset templates.
Developers set many configurations on the Actions on Google Console.
Developers can build two actions: Conversational Actions and Smart Home
Actions. Conversational Actions Smart Home Actions
Developers can test the app with the Actions on Google
simulator.
There are many valuable information in the Actions on Google
documentation page.
Most developers should take these codelabs (already translated into ja!)
to start developing. https://codelabs.developers.google.com/lang-ja?cat=Assistant
Developers need to build Fulfillment to handle webhooks to fulfill
Action.
actions-on-google-nodejs SDK v2 - used on Cloud/Firebase Functions and so
on.
Developers can write a test code with the testing library.
'use strict'; const { dialogflow } = require('actions-on-google'); const functions = require('firebase-functions'); const app = dialogflow({ debug: true }); app.intent('Default Welcome Intent', conv => { conv.close('Hello, world.'); }); export.fulfillment = functions.https.onRequest(app);
Finally, the auto testing library has been released!
Developers can write a test code with the testing library.
'use strict'; const { ActionsOnGoogleAva } = require('actions-on-google-testing'); const { expect } = require('chai'); const action = new ActionsOnGoogleAva(require('./test-credentials.json')); action.startTest('Facts about Google - direct cat path', action => { return action.startConversation() .then(({ textToSpeech }) => { return action.send('cats'); }) .then(({ ssml }) => { expect(ssml[0]).to.have.string("Alright, here's a cat fact.") return action.endTest(); }) });
Actions on Google supports Draft / Alpha / Beta /
Production environments.
Developers can release apps for limited users with Alpha/Beta Release
feature.
Monetization is so important feature.
Account Linking OAuth 2.0 (Authz code & Implicit grant), Google
Sign-in Transactions API Understanding Transactions API Monetization
Dialogflow provides developers Natural Language Processing.
All developers need to use the Actions on Google. Google
Cloud Platform, Dialogflow Android, Google Play, Web, etc. Actions on Google Smart-(phones | watches | speakers | earphones | tvs), PCs, Cars
Assistant Developer Community Japan Community page (Google Groups) http://bit.ly/assistant-dev-japan Slack
http://bit.ly/assistant-dev-slack Voice User Interface LT vol.2
All preparations are complete. Let's get started. Voice User Interface
LT vol.2