I am developing a Dialogflow project and I need a way to tell
or ask
the user without waiting for a voice command but I also need the session to stay open.
I can't use tell
because it basically kills the session right away.
Ask
is always wait for the user's voice command. If it can't get any voice command then it just ends the conversation.
Imagine that the user has multiple options in that state and the user can say one of the available commands like next
or previous
anytime and flow will continue to work.
For example, we get the state we want and then:
user: next
google-home: got it! (Do not kill the session here and do not expect user voice command)
after 10 minutes...
user: previous
google-home: got it! (Do not kill the session here and do not expect user voice command)
Is there any build in a way to achieve this in DialogFlow.
Thanks.