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
0から始めるAlexa入門
Search
ysak.y
January 23, 2017
0
810
0から始めるAlexa入門
1/24日に開催したAlexa勉強会でした話です。
ysak.y
January 23, 2017
Tweet
Share
More Decks by ysak.y
See All by ysak.y
Introduce VUI to Make Everyday Cooking Fun
ysak
0
1.9k
Cookpad Summer Internship 2021 Git/GitHub
ysak
0
3.8k
AOSP から_自分好みの Android OSを_ビルドする
ysak
0
360
designship2019 キッチンでの日常が変わるVUIデザイン
ysak
1
180
スマートスピーカー向けサービス開発者のお仕事
ysak
0
4.3k
Voice UI Workshop Tokyo@朝日メディアラボ
ysak
0
210
VUI LT! IoTLTスピンオフ企画@LINE
ysak
1
780
Tech Kitchen #13
ysak
0
5.8k
Decide with Assistant
ysak
0
56
Featured
See All Featured
Fantastic passwords and where to find them - at NoRuKo
philnash
52
3.4k
Exploring the Power of Turbo Streams & Action Cable | RailsConf2023
kevinliebholz
34
6k
BBQ
matthewcrist
89
9.8k
Side Projects
sachag
455
43k
Large-scale JavaScript Application Architecture
addyosmani
513
110k
Rebuilding a faster, lazier Slack
samanthasiow
83
9.2k
Git: the NoSQL Database
bkeepers
PRO
431
66k
Imperfection Machines: The Place of Print at Facebook
scottboms
268
13k
Automating Front-end Workflow
addyosmani
1370
200k
VelocityConf: Rendering Performance Case Studies
addyosmani
332
24k
Statistics for Hackers
jakevdp
799
220k
RailsConf 2023
tenderlove
30
1.2k
Transcript
0 から始めるAlexa 入門 Yoshiaki Yamada(@y_am_a_da)
誰 Yoshiaki Yamada(@y_am_a_da) 16 卒Cookpad 研究開発部エンジニア Alexa とかGoogle Assistant とか気になってます
この猫が目印です
Alexa とは?
CES2017 で話題になりましたね 自動車、 絵本読み上げ、 スマホ、 冷蔵庫、 洗濯機、 ロボット、 テレビ、 ランプなど約700
種類の製品が Alexa を搭載
こんな事件もありました
まず最初に 公式リファレンス( めっちゃまとまってる) https://developer.amazon.com/public/solutions/alexa /alexa-skills-kit/getting-started-guide 作るもの Alexa Skill ( 認識する文章の定義)
Lambda function ( 実際に行う処理の定義)
おおまかな流れ
おおまかな流れ 1.Amazon echo に話しかける 2. 内容をAlexaSkill に送ってテキストに変換する 3. テキストの内容から呼び出す関数を見つけ出す 4.Lambda
に関数の実行を依頼するリクエストを送る 5.Lambda から返ってきたレスポンスをAmazon echo に送る
Alexa Skill の作成 ユー ザー からの呼びかけに対してどの関数を 呼び出すかを定義する
定義するもの name アプリケー ションの名前。Skill Store での表示名 invocation name アプリケー ションを呼び出す時の名前
Lambda function のARN 呼び出すLambda 関数のARN( リー ジョンはusEast1)
intent いわゆる関数名、 必要に応じてslot( いわゆる引数) も 定義する e.g. WeatherIntent slot いわゆる引数、
あらかじめ単語を登録しておくとそれ に重み付けをして認識してくれる。 e.g. City -> Tokyo, Osaka, Nagoya, Yokohama sample utterance ユー ザー からの呼びかけに対して呼び出す関数を定義 する
WeatherIntent How is the weather in {City} How is the
weather in Tokyo と話しかけると、WeaterIntent にTokyo を変数とし て渡して実行する
Lambda function の作成 Alexa Skill から送信されたリクエストに 対して処理を行いレスポンスを返す関数を作る
実装方法 送られてくるRequest に沿って適切なResponse を 返せばOK https://developer.amazon.com/public/solutions/alexa /alexa-skills-kit/docs/alexa-skills-kit-interface- reference Con gure
Triger はAlexa Skill Kit を選択してくださ い
実装にオススメのライブラリ JavaScript の方は https://github.com/alexa/skill-sample-nodejs- calendar-reader Python の方は https://github.com/anjishnu/ask-alexa-pykit Java の方は
すみません...
試してみるぞ!
Amazon echo のシミュレー タ: https://echosim.io/ Alexa の管理ツー ル http://alexa.amazon.com/spa/index.html
None