With a conversation agent, I want to say "Tell Jeeves to book me a meeting for next week with Jeremy"
I want "Tell Jeeves to" to force a webhook call, with the payload being {"query":"Bob says book him a meeting for next week with Jeremy"}
As far as I can tell I need to add a "Tell Jeeves to" Intent to... somewhere?
Then in my configuration.yaml I should be able to add the action to execute on that intent, with a webhook looking like:
rest_command:
trigger_webhook1:
url: "<url>"
method: POST
headers:
Content-Type: "application/json"
payload: <the conversation payload>