Giter VIP home page Giter VIP logo

nursing-alexa-skill-workshop's Introduction

Amazon Alexa Nursing Skill Workshop

This workshop demonstrates how to develop a voice interface (Nursing Skill) for Amazon Alexa to interact with e-health applications and databases.

An example conversation would be like this:

  • You>> Open nursing skill
  • Alexa>> Welcome to Alexa Nursing Skill, please tell me your name
  • You>> My name is <>
  • Alexa>> Welcome <>, you can ask me about your health
  • You>> Blood Pressure Input
  • Alexa>> What is your sistolic pressure <>
  • My sistolic pressure is 115
  • Alexa>> What is your diastolic pressure <>
  • You>> My diastolic poressure is 75
  • Alexa>> Thanks <>

Introduction

You will learn how to build your own Alexa Skills to register your health data using voice interactions. As example we provide a complete interaction to ask your name and register your blood pressure. It can be easily customized to track Glucose, Emotional State, Weight, Blood Exam and more.

Table of Content

1.Create Alexa Nursing Skill

First, let's create, configure and test a new Alexa Skill using a pre-existing Lambda function. After this step you will have your first Healthcare Skill working and then you can create your own Lambda function to customize or extend this skill to store different types of biometric data.

logo

Step #1: Navigate to Alexa Developer Website: https://developer.amazon.com/alexa and click "Sign in"

Nursing Icon

Step 2: Click "Create your developer account" and fill the basic form

Nursing Icon

Step #2.1: Log using your account

Nursing Icon

Step #2.2: Access "Your Alexa Consoles -> Skill"

Nursing Icon

Step #2.3: You will be redirected to complete your account at developer.amazon.com

Nursing Icon

Step #2.4: Create your Alexa user at developer.amazon.com

Nursing Icon

Step #2.5: Accept the license

Nursing Icon

Step #2.6: Click "Save and continue"

Nursing Icon

Step #2.7: Click "Alexa" menu

Nursing Icon

Step #3: Navigate back to the Alexa Developer Webiste: https://developer.amazon.com/alexa and click in "Your Alexa Consoles -> Skills"

Nursing Icon

Step #4: Click "Add a new Skill"

Nursing Icon

Step #5: Configure Skill Name with "Nursing Skill" and choose "Custom"

Nursing Icon

Step #6: Select "Start from the scratch" and click "Choose"

Nursing Icon

Step #7: Configure the skill using the right side "Skill Builder CheckList". The invocation name is the one used to open the Alexa Skill, ex. "Alexa Open nursing skill". By default, the invocation name is the Skill name but you can change it.

Nursing Icon

Step #8: The invocation name is the one used to open the Alexa Skill, ex. "Alexa Open nursing skill". By default, the invocation name is the Skill name but you can change it.

Nursing Icon

Step #9: Open the code editor and paste in this json model configuration

Nursing Icon

Step #9.1: Click "Save Model" and then "Build Model", it will take some secondes to complete!

Nursing Icon

Step #10: Click "Endpoint" and choose "AWS Lambda ARN"

Nursing Icon

Step #11: Let's use our existing Lambda Function to fullfill intents in the backend. This ARN points to a pre-build Lambda function in our account.

  • Copy and paste this ARN-> arn:aws:lambda:us-east-1:977842192436:function:Nursing Nursing Icon

Step #12: Time to test! Click "Test" menu and enable this skill for testing

Nursing Icon

Step #13: Click and hold the Mic icon to start a conversation

Nursing Icon

  • You>> Open nursing skill
  • Alexa>> Welcome to Alexa Nursing Skill, please tell me your name
  • You>> My name is <>
  • Alexa>> Welcome <>, you can ask me about your health
  • You>> Blood Pressure Input
  • Alexa>> What is your sistolic pressure <>
  • My sistolic pressure is 115
  • Alexa>> What is your diastolic pressure <>
  • You>> My diastolic poressure is 75
  • Alexa>> Thanks <>

PART 2: Create your own Lambda Function to your Alexa Skill

Open your AWS Lambda Console

Now that we have our own skill using a pre-existing Lambda function that allows any skill to use it, you will learn how to create your own lambda function copying our code and then replace the Lambda ARN in your Alexa Nursing Skill.

Make sure you are using the US East (N. Virginia) AWS Region

Step #1: Create a new Lambda Function, click "Create Function"

Nursing Icon

Step #2: Choose "Author from scratch"

  • Name: NursingSkill
  • Runtime: NodeJS 8.10
  • Role: Custom Role
  • It will open IAM console to create the role

Nursing Icon

Step #3: Configure IAM role:

  • IAM Role: lambda_basic_execution
  • Policy Name: Create new Role Policy
  • Click Allow

Nursing Icon

Step #4: Configure the role in your function

Nursing Icon

Step #5: Add Alexa Skill Kit trigger

Nursing Icon

Step #6: Disable Skill ID verification

  • This way any skill can use trigger this Lambda. If you want to restrict you can pick you Alexa Nursing Skill ID and limit the execution for only one skill.

Nursing Icon

Step #7: Copy this NodeJS code and paste into the code editor

Nursing Icon

Step #8: Save your lambda function

Nursing Icon

Step #9: Now you can copy your own Lambda ARN to the clipboard

Nursing Icon

Step #10: Open your Alexa Developer Console and click "Configuration"

Nursing Icon

Step #11: Paste the new Lambda ARN

Nursing Icon

Step #12: Create a DynamoDB table to store your data

PART 3 3.Create your own DynamoDB table

Open your Amazon DynamoDB Console

To finish your Nursing Skill using youtr own Lambda Function you must create a DynamoDB table and make sure that Lambda Function has the right permissions.

Step #1: Open DynamoDB Console

Nursing Icon

Step #2: Create healthdata Table

  • Table Name: healthdata
  • Primary key: id String

Nursing Icon

Step #3: Done!

Nursing Icon

Step #4: Open IAM console to allow your Lambda to access DynamoDB, click Roles and select lambda_basic_execution

Nursing Icon

Step #5: Select Policy and Click "Attach"

Nursing Icon

Step #6: Select AmazonDynamoDBFullAccess

Nursing Icon

4.Customizing Nursing Skill

You can also create your own Alexa commands by adding new Intents and Utterances:

An Intent is a set of utterances

screenshot

Utterances may have slots where you can use as variables...

screenshot

A Lambda function will be called for each intent..

screenshot

For each intent we have a different call-back function...

screenshot

We can read the slot data this way:

screenshot

screenshot

Try to extend you Alexa Nursing Skill by creating a new Intent and call-back function!

nursing-alexa-skill-workshop's People

Contributors

julio-faerman avatar vsenger avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.