In chatbot conversational flow how and where to define the dependency flow.
should that be handled at the coding level or can we define in the intents.json file itself.
I have the following intents file
intents.json
{
"tag": "movie_genure",
"patterns": [
"list of available movie genures",
"different genures available"
],
"responses": [
"action movies",
"adventure movies",
"mystery movies"]
}
i want the chatbot flow in the following way
user: provide the list of available movie genures
bot: action movies
adventure movies
mystery movies
user: list of action movies
bot : movie A
movie B
...
movie Z
Example 1: conversational flow structure

