diff --git a/docs/intent_firing.md b/docs/intent_firing.md index d397b798..bec92f25 100644 --- a/docs/intent_firing.md +++ b/docs/intent_firing.md @@ -33,6 +33,7 @@ The intent response is an instance of `homeassistant.helpers.intent.IntentRespon | ---- | ---- | ----------- | | `intent` | Intent | Instance of intent that triggered response. | | `speech` | Dictionary | Speech responses. Each key is a type. Allowed types are `plain` and `ssml`. | +| `reprompt` | Dictionary | Reprompt responses. Each key is a type. Allowed types are `plain` and `ssml`.
This is used to keep the session open when a response is required from the user. In these cases, `speech` usually is a question. | | `card` | Dictionary | Card responses. Each key is a type. | Speech dictionary values: @@ -42,6 +43,13 @@ Speech dictionary values: | `speech` | String | The text to say | `extra_data` | Any | Extra information related to this speech. +Reprompt dictionary values: + +| Name | Type | Description | +| ---- | ---- | ----------- | +| `reprompt` | String | The text to say when user takes too long to respond +| `extra_data` | Any | Extra information related to this speech. + Card dictionary values: | Name | Type | Description |