Get Slot Value Alexa

I want to build custom commands to use with Echo

The built-in Alexa integration allows you to integrate Home Assistant into Alexa/Amazon Echo. This integration will allow you to query information and call services within Home Assistant by using your voice. Home Assistant offers no built-in sentences but offers a framework for you to define your own.

Alexa Skill Get Slot Value, g casino drinks menu, iligan city casino, the poker hand values. T&C's apply: Royal Panda Casino - Bamboo Bonus. The odds are much better if you play blackjack. The reason for this is that its RTP percentage is 99% and with the correct betting strategies you can get the house edge to be 1% Alexa Skill Get Slot Value Python or lower. In the new Alexa Skills Kit, you can also create synonyms for slot type values, which can be used in place of the base value in utterances. Synonyms will be replaced with their associated slot value in the intent request sent to the Alexa API endpoint, but only if there are not multiple synonym matches. この記事は一人Alexa Skills Kit for Node.js Advent Calendar 2017の15日目の記事です。 Alexa Skillでは、ユーザー発話の変数部分をSlotという形で処理します。. The Alexa skills kit comes with a lot of built in slot types that help us when there are several different distinct values a user might say, such as cities, states, numbers. Think of the slot as a variable that can have as a possible value any one of all available numbers.

Requirements

  • Amazon Developer Account. You can sign on here.
  • An AWS account is need if you want to use Alexa Custom Skill API. Part of your Alexa Custom Skill will be hosted on AWS Lambda. However you don’t need worry the cost, AWS Lambda allow free to use up to 1 millions requests and 1GB outbound data transfer per month.
  • The Alexa Custom Skill API also needs your Home Assistant instance to be accessible from the internet via HTTPS on port 443 using a certificate signed by an Amazon approved certificate authority, this is so account linking can take place. Read more on our blog about how to set up encryption for Home Assistant. When running Home Assistant using the Duck DNS add-on is the easiest method.

Create Your Amazon Alexa Custom Skill

  • Log in to the Amazon developer console
  • Click the Alexa button at the top of the console
  • Click the yellow “Add a new skill” button in the top right
    • Skill Type: Custom Interaction Model (default)
    • Name: Home Assistant
    • Invocation name: home assistant (or be creative, up to you)
    • Version: 1.0
    • Endpoint: This will be the ARN for the Lambda Function you will create next.

You can use this specially sized Home Assistant logo as the large icon and this one as the small one.

Create Your Lambda Function

Get

The Alexa Custom skill will trigger a AWS Lambda function to process the request, we will write a small piece of code hosted as a Lambda function to basically redirect the request to your Home Assistant instance, then the Alexa integration in Home Assistant will process the request and send back the response. Your Lambda function will deliver the response back to Alexa.

OK, let’s go. You first need sign in your AWS console, if you don’t have an AWS account yet, you can create a new user here with 12-month free tier benefit. You don’t need worry the cost if your account has already passed the first 12 months, AWS provides up to 1 million Lambda requests, 1GB of outbound data and unlimited inbound data for free every month for all users. See Lambda pricing for details.

Create an IAM Role for Lambda

The first thing you need to do after you sign in to the AWS console is to create an IAM Role for Lambda execution. AWS has very strict access control, you have to explicitly define and assign the permissions.

  • Click Service in top navigation bar, expand the menu to display all AWS services, click IAM under Security, Identity, & Compliance section to navigate to IAM console. Or you may use this link
  • Click Roles in the left panel, then click Create role, select AWS Service -> Lambda in the first page of the wizard, then click Next: Permissions
  • Select AWSLambdaBasicExecutionRole policy, then click Next: Tags. (Tips: you can use the search box to filter the policy)
  • You can skip Add tags page, click Next: Review.
  • Give your new role a name, such as AWSLambdaBasicExecutionRole-Intents, then click Create role button. You should be able to find your new role in the roles list now.

Create a Lambda function and add code

Next you need to create a Lambda function.

  • Click Service in top navigation bar, expand the menu to display all AWS services, click Lambda under Compute section to navigate to Lambda console. Or you may use this link
  • IMPORTANT Your current region will be displayed in the top right corner. Make sure you select the right region based on your Amazon account’s country:
    • US East (N.Virginia) region for English (US) or English (CA) skills
    • EU (Ireland) region for English (UK), English (IN), German (DE), Spanish (ES) or French (FR) skills
    • US West (Oregon) region for Japanese and English (AU) skills.
  • Click Functions in the left navigation bar, display list of your Lambda functions.
  • Click Create function, select Author from scratch, then input a Function name.
  • Select Python 3.6 or Python 3.7 as Runtime.
  • Select Use an existing role as Execution role, then select the role you just created from the Existing role list.
  • Click Create function, then you can configuration detail of Lambda function.
  • Under Configuration tab, expand Designer, then click Alexa Skills Kit in the left part of the panel to add a Alexa Skills Kit trigger to your Lambda function.
  • Scroll down a little bit, you need to input the Skill ID from the skill you created in the previous step. (You may need to switch back to the Alexa Developer Console to copy the Skill ID).
  • Click your Lambda Function icon in the middle of the diagram and scroll down, you will see a Function code window.
  • Clear the example code and copy the Python script from this GitHub Gist.
  • Click the Deploy button of the Function code window.
  • Scroll down again and you will find Environment variables, click on Edit button and add the following environment variables as needed:
    • BASE_URL (required): your Home Assistant instance’s Internet accessible URL with port if needed. Do not include the trailing /.
    • NOT_VERIFY_SSL (optional): set to True to ignore the SSL issue, if you don’t have a valid SSL certificate or you are using self-signed certificate.
    • DEBUG (optional): set to True to log debugging messages.
    • LONG_LIVED_ACCESS_TOKEN (optional, not recommended): you will connect your Alexa Custom skill with your Home Assistant user account in the later steps, so that you don’t need to use long-lived access token here. However, the access token you got from login flow is only valid for 30 minutes. It will be hard for you to test lambda function with the access token in test data. So for your convinces, you can remove the access token from the test data, generate a long-lived access token put here, then the function will fall back to reading the token from environment variables. (tips: You did not enable the security storage for your environment variables, so your token saved here is not that safe. You should only use it for debugging and testing purpose. You should remove and delete the long-lived access token after you finish the debugging.)
  • Save your environmental variables by clicking the Save button.
  • Next, copy the ARN displayed in the top of the page, which is the identify of this Lambda function. Set the end point of the custom Alexa Skill you created earlier to this value.

Account Linking

Alexa can link your Amazon account to your Home Assistant account. Therefore Home Assistant can make sure only authenticated Alexa requests are actioned. In order to link the account, you have to make sure your Home Assistant instance can be accessed from the Internet.

  • Log in to the Amazon developer console
  • Go to the Alexa Skills page.
  • Find the skill you just created and click Edit in the Actions column.
  • Click ACCOUNT LINKING in the left navigation bar of the build page
  • Input all information required. Assuming your Home Assistant can be accessed by https://[YOUR HOME ASSISTANT URL:PORT]
    • Authorization URI: https://[YOUR HOME ASSISTANT URL]/auth/authorize

    • Access Token URI: https://[YOUR HOME ASSISTANT URL]/auth/token

      • Note: you must use a valid/trusted SSL Certificate and port 443 for account linking to work
    • Client ID:

      • https://pitangui.amazon.com/ if you are in US
      • https://layla.amazon.com/ if you are in EU
      • https://alexa.amazon.co.jp/ if you are in JP or AU

      The trailing slash is important here.

    • Client Secret: input anything you like, Home Assistant does not check this field

    • Client Authentication Scheme: make sure you selected Credentials in request body. Home Assistant does not support HTTP Basic.

    • Scope: input intent. Home Assistant doesn’t use this yet, we may use it in the future when we allow more fine-grained access control.

  • You can leave Domain List and Default Access Token Expiration Time as empty.
  • Click Save button in the top right corner.
  • Next, you will use the Alexa Mobile App or Alexa web-based app to link your account.
    • Open the Alexa app, navigate to Skills -> Your Skills -> Dev Skills
    • Click the Custom skill you just created.
    • Click Enable.
    • A new window will open to direct you to your Home Assistant’s login screen.
    • After you successfully login, you will be redirected back to Alexa app.

Configuring your Amazon Alexa skill

Alexa works based on intents. Each intent has a name and variable slots. For example, a LocateIntent with a slot that contains a User. Example intent schema:

To bind these intents to sentences said by users you define utterances. Example utterances can look like this:

This means that we can now ask Alexa things like:

  • Alexa, ask Home Assistant where Paul is
  • Alexa, ask Home Assistant where we are

Configuring Home Assistant

Get

When activated, the Alexa integration will have Home Assistant’s native intent support handle the incoming intents. If you want to run actions based on intents, use the intent_script integration.

To enable Alexa, add the following entry to your configuration.yaml file:

Working With Scenes

One of the most useful applications of Alexa integrations is to call scenes directly. This is easily achieved with some simple setup on the Home Assistant side and by letting Alexa know which scenes you want to run.

First, we will configure Alexa. In the Amazon Interaction module add this to the intent schema:

Then create a custom slot type called Scenes listing every scene you want to control:

Custom slot type for scene support.

The names must exactly match the scene names (minus underscores - Amazon discards them anyway and we later map them back in with the template).

In the new Alexa Skills Kit, you can also create synonyms for slot type values, which can be used in place of the base value in utterances. Synonyms will be replaced with their associated slot value in the intent request sent to the Alexa API endpoint, but only if there are not multiple synonym matches. Otherwise, the value of the synonym that was spoken will be used.

Custom slot values with synonyms.

Add a sample utterance:

Then add the intent to your intent_script section in your HA configuration file:

Here we are using templates to take the name we gave to Alexa e.g., downstairs on and replace the space with an underscore so it becomes downstairs_on as Home Assistant expects.

Now say Alexa ask Home Assistant to activate <some scene> and Alexa will activate that scene for you.

Adding Scripts

We can easily extend the above idea to work with scripts as well. As before, add an intent for scripts:

Get Slot Value Alexa Echo Dot

Create a custom slot type called Scripts listing every script you want to run:

Custom slot type for script support.

Add a sample utterance:

Then add the intent to your intent_script section in your HA configuration file:

Now say Alexa ask Home Assistant to run <some script> and Alexa will run that script for you.

Support for Launch Requests

There may be times when you want to respond to a launch request initiated from a command such as “Alexa, Red Alert!”.

To start, you need to get the skill id:

  • Log into Amazon developer console
  • Click the Alexa button at the top of the console
  • Click the Alexa Skills Kit Get Started button
    • Locate the skill for which you would like Launch Request support
    • Click the “View Skill ID” link and copy the ID

The configuration is the same as an intent with the exception being you will use your skill ID instead of the intent name.

Alexa Skill Get Slot Value

Giving Alexa Some Personality

Alexa Get Slot Value Id

In the examples above, we told Alexa to say OK when she successfully completed the task. This is effective but a little dull! We can again use templates to spice things up a little.

First create a file called alexa_confirm.yaml with something like the following in it (go on, be creative!):

Then, wherever you would put some simple text for a response like OK, replace it with a reference to the file so that:

becomes:

Get Slot Value Alexa App

Alexa will now respond with a random phrase each time. You can use the include for as many different intents as you like so you only need to create the list once.