How to collect user input without follow up intents in Dialogflow ES
First published: Nov 2017 | Last updated: May 2022
Sometimes I see questions like these in the Dialogflow forum.
So, I got one intent working. How can I now “move” the conversation to the next intent?
Answer
In Intent1, declare an output contextContexts are used in Dialogflow ES to manage the state of th... More called contextA. In the next intent you want to fire, use contextA as the input context. You have now chained Intent1 and Intent2 using contextA.
Is that all?
There is quite a bit more. But that’s the basic idea for every intent you are trying to chain into the conversation.
An example
Let us take the example of the follow up intent tutorial, and use it as an example.
You cannot use follow up intents in all scenarios. Learning this technique will help you in such situations. Under the hood, what I am describing here uses the same idea. Also, this technique usually makes it easier to maintain your chatbot.
Add a new intent called addwebsitechatbot and add the following details. Set the output context as await_name and change the lifespan to 1
Now add another intent called userprovidesname and add await_name as the input context and await_email as the output context. The training phrase will be an example name, such as John Smith. You have now “chained” the two intentsBoth Dialogflow ES and Dialogflow CX have the concept of int... More together as I have described.
Note: This is my old website and is in maintenance mode. I am publishing new articles only on my new website.
If you are not sure where to start on my new website, I recommend the following article:
Is Dialogflow still relevant in the era of Large Language Models?
Thanks, how could we got entity “name” from the first intent and use it in response in last intent? in other words, how to move entity values from one intent to another?
Best Regards.
You can use the concept of session variables.
Hi,
I have 2 intents. “Category” and “Licensing”. In the first intent Category, it will prompt enter “Licensing”, “Sales”, “Tech-Support”. I entered “Licensing”. User prompted saying, “you will be redirected to Licensing soon..” . How I can redirect to “Licensing” intent without user intervention?
Thanks,
Anil
https://learn.miningbusinessdata.com/courses/dialogflow-example-bots/lectures/9868108
Great! Thanks for sharing knowledge. What about if my first intent it is using the main console and my second intent it is working with fullfilment, how can I jump in to that?
That shouldn’t matter. If for some reason it doesn’t work for you, can you give me an example?
Thanks. I do have the context as indicated. But the las intent I want to call in or jump in it is constructed on the fulfillment shell. First one is from console, but the flow it is not working.
Can you use the followup event in that case?