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
790
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.7k
AOSP から_自分好みの Android OSを_ビルドする
ysak
0
340
designship2019 キッチンでの日常が変わるVUIデザイン
ysak
1
180
スマートスピーカー向けサービス開発者のお仕事
ysak
0
4.2k
Voice UI Workshop Tokyo@朝日メディアラボ
ysak
0
200
VUI LT! IoTLTスピンオフ企画@LINE
ysak
1
770
Tech Kitchen #13
ysak
0
5.8k
Decide with Assistant
ysak
0
56
Featured
See All Featured
Done Done
chrislema
184
16k
Designing Dashboards & Data Visualisations in Web Apps
destraynor
231
53k
Six Lessons from altMBA
skipperchong
28
3.8k
CSS Pre-Processors: Stylus, Less & Sass
bermonpainter
357
30k
Automating Front-end Workflow
addyosmani
1370
200k
Side Projects
sachag
454
42k
[Rails World 2023 - Day 1 Closing Keynote] - The Magic of Rails
eileencodes
35
2.3k
Making the Leap to Tech Lead
cromwellryan
134
9.3k
The Cult of Friendly URLs
andyhume
79
6.4k
Fireside Chat
paigeccino
37
3.5k
How to Think Like a Performance Engineer
csswizardry
24
1.7k
Refactoring Trust on Your Teams (GOTO; Chicago 2020)
rmw
34
3k
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