actions-on-google / assistant-conversation-nodejs

A developer friendly way to fulfill Actions SDK handlers for the Google Assistant
https://actions-on-google.github.io/assistant-conversation-nodejs
Apache License 2.0
104 stars 38 forks source link

Exit/Close conversation from Webhook #36

Closed cbothra closed 3 years ago

cbothra commented 3 years ago

Hi,

I am building an action and using webhook. There is a use case in the intent handler when after giving prompt to user I would like to close the conversation from webhook itself. I went through the @assistant/conversation api documentation but couldn't find any way to do that.

Any help?

Thanks-in-advance

Fleker commented 3 years ago

You can use scene transitions to transition to the built-in scene actions.scene.END_CONVERSATION.

cbothra commented 3 years ago

Hi @Fleker, Thanks and I confirm that this works as intended.