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
Yoichiro Tanaka
May 31, 2018
Technology
480
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.5k
スマートスピーカーとは
yoichiro
2
1.1k
CM06 既存サービスを AI アシスタント対応する際の勘所
yoichiro
1
660
Assistant - Google I/O 2019 Extended
yoichiro
2
2.2k
VUIが作る未来 〜 NEM9
yoichiro
0
580
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
900
Other Decks in Technology
See All in Technology
トヨタ⽣産⽅式(TPS)⼊⾨
recruitengineers
PRO
3
740
変化の早いClaude Codeを 書籍に落とし込む
oikon48
7
1.4k
今こそ聞きたいソフトウェア設計 ドメイン駆動設計再入門
masuda220
PRO
17
7.2k
モノリス Rails でも日中に rails db:migrate を走らせたい! / Daytime rails db:migrate on Monolithic Rails!
euglena1215
4
580
FDEの心得
noriakioji
4
4.8k
取引先から届く 「セキュリティチェックシート」の読み解き方
kamadamakoto
0
140
Pavlokで始める電撃駆動開発
sgrsn
0
190
Genie Codeハンズオン基礎編
taka_aki
1
110
研究開発部の紹介 / Sansan R&D Profile
sansan33
PRO
4
24k
カートの信頼性を担保するWireMockを使ったe2eテスト
ykagano
0
210
SO-101×VLAによる3色キューブのピック&プレース
abeja
0
190
AIエージェントを前提としたプラットフォーム エンジニアリング:GKEで作るAgent-Ready Golden Path
legalontechnologies
PRO
2
220
Featured
See All Featured
Building Experiences: Design Systems, User Experience, and Full Site Editing
marktimemedia
0
570
Tips & Tricks on How to Get Your First Job In Tech
honzajavorek
1
690
KATA
mclloyd
PRO
35
15k
Building a A Zero-Code AI SEO Workflow
portentint
PRO
0
660
How to audit for AI Accessibility on your Front & Back End
davetheseo
0
490
SEO in 2025: How to Prepare for the Future of Search
ipullrank
3
3.7k
Self-Hosted WebAssembly Runtime for Runtime-Neutral Checkpoint/Restore in Edge–Cloud Continuum
chikuwait
0
700
Rebuilding a faster, lazier Slack
samanthasiow
85
9.6k
Future Trends and Review - Lecture 12 - Web Technologies (1019888BNR)
signer
PRO
0
3.7k
The MySQL Ecosystem @ GitHub 2015
samlambert
251
13k
The Cost Of JavaScript in 2023
addyosmani
55
10k
Distributed Sagas: A Protocol for Coordinating Microservices
caitiem20
333
23k
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