Not sure in which category/tags it falls back.
When I trigger the conversation api ( /api/conversation/process ) I always receive an empty array, even when an intent is triggered and that intent replies some text.
conversation configuration:
conversation:
intents:
ShoppingList:
- On a quoi comme courses
- Liste de courses
- courses
intent_script configuration:
intent_script:
ShoppingList:
speech:
text: "{{ states('sensor.shopping_list') }}"
I can see in the logs when I trigger the API that the intent is called:
2020-03-25 09:01:46 INFO (MainThread) [homeassistant.helpers.intent] Triggering intent handler <ScriptIntentHandler - ShoppingList>
But I still receive []
Is there a way for me to get the intent’s response?