Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
164 views
in Technique[技术] by (71.8m points)

c# - Modelling dialog in web ui with LUIS AI

Imagine having a business process where 3 inputs are required. In the worst case the bot has to ask 3 questions and in the best case the user gives us all required information in his/her first message.

Is it possible to build those kind of conversation flows in the luis.ai interface (similar to Amazon Lex) or does it have to be hard coded?

question from:https://stackoverflow.com/questions/66059536/modelling-dialog-in-web-ui-with-luis-ai

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

No, this is not possible in LUIS if you are using Bot Framework proper. LUIS simply does the intent and entity recognition and cannot, on its own, drive a dialog flow.

I don't have a lot of personal experience with it, but Power Virtual Agents may be able to do what you want. There is some information here. It is certainly possible to code it as well, though I know that isn't what you were asking. You just check on the step if entity exists, if so go to the next step, if not prompt the user. Managing your variables at each step can get a bit tricky this way though, as you do not want to assign stepContext.value to something if you skipped the prompt.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...