How to structure many questions intent in dialogflow
How to structure many questions intent in dialogflow
I am making a chat bot to answer questions on a particular subject(example, physics). How would you structure all the possible questions as intent in dialogflow?
I am considering the following 2 methods,
Methods:
Pros:
Cons:
2 Answers
2
I would suggest you to try Knowledge Base feature of DialogFlow.
You can give multiple web-page links from where it can gather all the questions, or you can manually prepare a list and upload it to DialogFlow.
That way you don't need to make it in separate intents, it will try to match it automatically.
Let me know if you have any confusion.
This looks like an FAQ type chatbot. You can develop the chatbot in 2 ways:
intents should be created for each question. user says phrases will be a different variation of the same question and response will be the answer.
– Abhinav Tyagi
Sep 6 '18 at 10:22
that can be done by creating empty agent as well, FAQ agent does not provide any extra functionality?
– sid8491
Sep 6 '18 at 10:27
Yes. I also didn't find it any useful. Had explored it sometime back. Not sure if there is any added functionality like Knowledge Base.
– Abhinav Tyagi
Sep 6 '18 at 10:32
Thanks for contributing an answer to Stack Overflow!
But avoid …
To learn more, see our tips on writing great answers.
Required, but never shown
Required, but never shown
By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.
i have tried to import FAQ agent (prebuilt), it created a new agent but it did not have any intent, only fallback and welcome intents. how to use that agent?
– sid8491
Sep 6 '18 at 10:06