Trilha – Internet das Coisas · Globalcode – Open4education Trilha – Internet das Coisas...

20
Globalcode – Open4education Trilha – Internet das Coisas Daniel Olsson @dcolsson Introdução ao ASK (Alexa Skills Kit)

Transcript of Trilha – Internet das Coisas · Globalcode – Open4education Trilha – Internet das Coisas...

Page 1: Trilha – Internet das Coisas · Globalcode – Open4education Trilha – Internet das Coisas Daniel Olsson @dcolsson Introdução ao ASK (Alexa Skills Kit)

Globalcode – Open4education

Trilha – Internet das Coisas

Daniel Olsson@dcolsson

Introdução ao ASK (Alexa Skills Kit)

Page 2: Trilha – Internet das Coisas · Globalcode – Open4education Trilha – Internet das Coisas Daniel Olsson @dcolsson Introdução ao ASK (Alexa Skills Kit)

Globalcode – Open4education

Agenda● Voice User Interfaces

○ Interfaces Evolution○ What are VUIs?

● Amazon Alexa ○ Type of Alexa Skills○ Skill Invocation Phrase

● Alexa Skill Development Overview○ Voice Interaction Model○ Configure Alexa Skill○ Code in Amazon Lambda○ Test Alexa Skill

Page 3: Trilha – Internet das Coisas · Globalcode – Open4education Trilha – Internet das Coisas Daniel Olsson @dcolsson Introdução ao ASK (Alexa Skills Kit)

Globalcode – Open4education

Interfaces Evolution

1970s 1980s 1990s 2000s Present

WebText

GUIs Mobile

Voice & Conversation

(VUIs)

Page 4: Trilha – Internet das Coisas · Globalcode – Open4education Trilha – Internet das Coisas Daniel Olsson @dcolsson Introdução ao ASK (Alexa Skills Kit)

Globalcode – Open4education

Interfaces Evolution

Conversational platforms will drive the next big paradigm shift in how humans interact

with digital world.

”Gartner Top 10 Strategic Technology Trends for 2018

Page 5: Trilha – Internet das Coisas · Globalcode – Open4education Trilha – Internet das Coisas Daniel Olsson @dcolsson Introdução ao ASK (Alexa Skills Kit)

Globalcode – Open4education

What are VUIs?

Voice Activated Conversational Interface:

► Natural Language Understanding (NLU)

► Automatic Speech Recognition (ASR)

► Text To Speech Conversion (TTS)

Page 6: Trilha – Internet das Coisas · Globalcode – Open4education Trilha – Internet das Coisas Daniel Olsson @dcolsson Introdução ao ASK (Alexa Skills Kit)

Globalcode – Open4education

Companies building VUIs

2009 2010 2011 2012 2013 2014 2015 2016 2017 2018

AppleSiri

Google Now

Microsoft Cortana

AmazonAlexa

SamsungBixby

Page 7: Trilha – Internet das Coisas · Globalcode – Open4education Trilha – Internet das Coisas Daniel Olsson @dcolsson Introdução ao ASK (Alexa Skills Kit)

Globalcode – Open4education

How do VUIs work?

Voice Input

VoiceResponse

Voice Recognition

Your Service

Machine Learning

Natural Language Understanding

Text To Speech

Page 8: Trilha – Internet das Coisas · Globalcode – Open4education Trilha – Internet das Coisas Daniel Olsson @dcolsson Introdução ao ASK (Alexa Skills Kit)

Globalcode – Open4education

Page 9: Trilha – Internet das Coisas · Globalcode – Open4education Trilha – Internet das Coisas Daniel Olsson @dcolsson Introdução ao ASK (Alexa Skills Kit)

Globalcode – Open4education

Alexa Skills

Skills for the Workplace

Echo Show/Echo Spot Skills

Flash Briefing Skills

Game & Trivia Skills

Smart Home SkillsKid Skills

Custom Skills

Video Skills

Page 10: Trilha – Internet das Coisas · Globalcode – Open4education Trilha – Internet das Coisas Daniel Olsson @dcolsson Introdução ao ASK (Alexa Skills Kit)

Globalcode – Open4education

Alexa Custom SkillsAlexa

Skills Kit (ASK)

● Self Service APIs● Tools● Documentation● Code Samples

● Easy to create

● Define you own

interaction model

● Requires a Invocation

Name

Page 11: Trilha – Internet das Coisas · Globalcode – Open4education Trilha – Internet das Coisas Daniel Olsson @dcolsson Introdução ao ASK (Alexa Skills Kit)

Globalcode – Open4education

Alexa, ask Spotify to play Money by Pink FloydWake word

Launch phrase

Invocation name

Utterance

Money Pink FloydSlot Slot

Skill Invocation Phrase

Page 12: Trilha – Internet das Coisas · Globalcode – Open4education Trilha – Internet das Coisas Daniel Olsson @dcolsson Introdução ao ASK (Alexa Skills Kit)

Globalcode – Open4education

Utterances

“Volume up”

“Louder”

“Make it louder”

“Set level to 7”

“Turn up the volume” Intent

Utterances

Page 13: Trilha – Internet das Coisas · Globalcode – Open4education Trilha – Internet das Coisas Daniel Olsson @dcolsson Introdução ao ASK (Alexa Skills Kit)

Globalcode – Open4education

Slots

Play Money by Pink Floyd

Play Money by The Beatles

Play Money

Play The Beatles

Play {song} by {artist}

Page 14: Trilha – Internet das Coisas · Globalcode – Open4education Trilha – Internet das Coisas Daniel Olsson @dcolsson Introdução ao ASK (Alexa Skills Kit)

Globalcode – Open4education

Alexa Skill Development Overview

Design Voice Interaction

Model

Configure Alexa Skill

Code in Amazon Lambda

TestAlexa Skill

Page 15: Trilha – Internet das Coisas · Globalcode – Open4education Trilha – Internet das Coisas Daniel Olsson @dcolsson Introdução ao ASK (Alexa Skills Kit)

Globalcode – Open4education

Is action provide?

Default Speech

Response

Is action handled?

Skill Initialisation

No

Did user provide response?

Yes

Error Speech

Response

No

Reprompt Speech

Response

No

Send data to Lambda

Funcion

Service’s Speech

ResponseEnd

YesYes

Voice Interaction Model

“Open Handy”“Ask Handy”

Hello, I am Handy! I am glad to meet you. I can show you

gestures or numbers.

Sorry, I’m unable to understand what you said.

You can ask me to show you the peace and love gesture.

Sorry, I did not receive any command. Thank

you and goodbye.

OK. Showing {gesture}.

Page 16: Trilha – Internet das Coisas · Globalcode – Open4education Trilha – Internet das Coisas Daniel Olsson @dcolsson Introdução ao ASK (Alexa Skills Kit)

Globalcode – Open4education

alexa developer console

Configure Alexa Skill

Page 17: Trilha – Internet das Coisas · Globalcode – Open4education Trilha – Internet das Coisas Daniel Olsson @dcolsson Introdução ao ASK (Alexa Skills Kit)

Globalcode – Open4education

Amazon Lambda

Code in Amazon Lambda

Page 18: Trilha – Internet das Coisas · Globalcode – Open4education Trilha – Internet das Coisas Daniel Olsson @dcolsson Introdução ao ASK (Alexa Skills Kit)

Globalcode – Open4education

Test Alexa Skill

Page 19: Trilha – Internet das Coisas · Globalcode – Open4education Trilha – Internet das Coisas Daniel Olsson @dcolsson Introdução ao ASK (Alexa Skills Kit)

Globalcode – Open4education

Final Thoughts

www.twitch.tv/amazonalexa

Page 20: Trilha – Internet das Coisas · Globalcode – Open4education Trilha – Internet das Coisas Daniel Olsson @dcolsson Introdução ao ASK (Alexa Skills Kit)

Globalcode – Open4education

Thank You!Daniel Olsson