Adrián López 4a698b1c59 Fix download link. Previous one is broken (#2069)
* Fix download link. Previous one is broken

* Moved zip to github repo
2017-02-23 11:50:35 +01:00

5.6 KiB

layout, title, description, date, sidebar, comments, sharing, footer, logo, ha_category, featured, ha_release
layout title description date sidebar comments sharing footer logo ha_category featured ha_release
page Api.AI Instructions how integrate api.ai with Home Assistant. 2017-01-27 11:28 true false true true apiai.png Voice false 0.38

This component is designed to be used with the "webhook" integration in api.ai. When a conversation ends with an user, api.ai sends an action and parameters to the webhook.

api.ai requires a public endpoint (HTTPS recommended), so your Home Assistant should be exposed to Internet. api.ai will return fallback answers if your server do not answer, or takes too long (more than 5 seconds).

api.ai could be integrated with many popular messaging, virtual assistant and IoT platforms, eg.: Google Assistant (Google Actions), Skype, Messenger. See here the complete list.

Using Api.ai will be easy to create conversations like:

User: Which is the temperature at home?

Bot: The temperature is 34 degrees

User: Turn on the light

Bot: In which room?

User: In the kitchen

Bot: Turning on kitchen light

To use this integration you should define a conversation (intent) in Api.ai, configure Home Assistant with the speech to return and, optionally, the action to execute.

{% linkable_title Configuring your api.ai account %}

  • Login with your Google account.
  • Click on "Create Agent"
  • Select name, language (if you are planning to use it with Google Actions check here supported languages) and time zone
  • Click "Save"
  • Go to "Fullfiment" (in the left menu)
  • Enable Webhook and set your HA url with the apiai endpoint. Eg.: https://myhome.duckdns.org/api/apiai?api_password=HA_PASSWORD
  • Click "Save"
  • Create a new intent
  • Below "User says" write one phrase that you, the user, will tell Api.ai. Eg.: Which is the temperature at home?
  • In "Action" set some key (this will be the bind with HA config), eg.: GetTemperature
  • In "Response" set "Cannot connect to HA or it is taking to long" (fall back response)
  • At the end of the page, click on "Fulfillment" and check "Use webhook"
  • Click "Save"
  • On the top right, where is written "Try it now...", write, or say, the phrase you have previously defined and hit enter
  • Api.ai has send a request to your HA server

Take a look to "Integrations", in the left menu, to configure third parties.

{% linkable_title Configuring Home Assistant %}

Out of the box, the component will do nothing. You have to teach it about all intents you want it to answer to. The way it works is that the answer for each intent is based on templates that you define. Each template will have access to the existing states via the states variable but will also have access to all variables defined in the intent.

You can use templates for setting speech.

Actions are using the Home Assistant Script Syntax and also have access to the variables from the intent.

Example of an Api.ai for the above configuration:

{% raw %}# Example configuration.yaml entry
apiai:
  intents:
    GetTemperature:
      speech: We have {{ states.sensor.temperature }} degrees
      async_action: False
      action:
        service: notify.notify
        data_template:
          message: Api.ai has send a request
{% endraw %}

Inside an intent we can define this variables:

  • speech (Optional): Text or template to return to Api.ai
  • action (Optional): Script definition
  • async_action (Optional): If HA should execute the action asynchronously (returning response to Api.ai without waiting the action to finish). Should be set to True if Api.ai is returning the "Cannot connect to HA or it is taking to long" message, but then you will not be able to use values based on the result of the action. Defaults to False.

{% linkable_title Examples %}

Download this zip and load it in your Api.ai agent (Settings -> Export and Import) for examples intents to use with this configuration:

{% raw %}# Example configuration.yaml entry
apiai:
  intents:
    Temperature:
      speech: The temperature at home is {{ states('sensor.home_temp') }} degrees
    LocateIntent:
      speech: >
        {%- for state in states.device_tracker -%}
          {%- if state.name.lower() == User.lower() -%}
            {{ state.name }} is at {{ state.state }}
          {%- elif loop.last -%}
            I am sorry, I do not know where {{ User }} is.
          {%- endif -%}
        {%- else -%}
          Sorry, I don't have any trackers registered.
        {%- endfor -%}
    WhereAreWeIntent:
      speech: >
        {%- if is_state('device_tracker.adri', 'home') and
               is_state('device_tracker.bea', 'home') -%}
          You are both home, you silly
        {%- else -%}
          Bea is at {{ states("device_tracker.bea") }}
          and Adri is at {{ states("device_tracker.adri") }}
        {% endif %}
    TurnLights:
      speech: Turning {{ Room }} lights {{ OnOff }}
      action:
        - service: notify.pushbullet
          data_template:
            message: Someone asked via apiai to turn {{ Room }} lights {{ OnOff }}
        - service_template: >
            {%- if OnOff == "on" -%}
              switch.turn_on
            {%- else -%}
              switch.turn_off
            {%- endif -%}
          data_template:
            entity_id: "switch.light_{{ Room | replace(' ', '_') }}"
{% endraw %}