如何从通用对话框和luis dialog中调用luis dialog
How to call luis dialog from general dialog and luis dialog
我正在使用节点 js,我想从中调用 luis dialog("morningUpdate")
通用对话框("work")
dialog.matches('morningUpdate',[
function (session, args, next) {
}
]);
bot.dialog('/work', [
function (session, args) {
//how to call here "morningUpdate" dialog
}
]);
我们如何才能做到这一点。
我正在使用节点 js,我想从中调用 luis dialog("morningUpdate") 通用对话框("work")
dialog.matches('morningUpdate',[
function (session, args, next) {
}
]);
bot.dialog('/work', [
function (session, args) {
//how to call here "morningUpdate" dialog
}
]);
我们如何才能做到这一点。