How to implement a chatbot to human executive switch using Microsoft Bot Framework?

邮差的信 提交于 2019-11-30 16:31:21

one possible way is you can make a bridge, idea is as follow:

  1. user send something that the bot cannot reply (conv-1)
  2. make a new conversation with your human executive (conv-2)
  3. forward user message to conv-2
  4. human executive replied to the bot (conv-2)
  5. capture the message and forward back to (conv-1)

See this link on how to start a new conversation:

https://docs.botframework.com/en-us/csharp/builder/sdkreference/routing.html#sendtoconversation

Hope it helps,

Maybe you can create some APIs in a WebApplication that will be used by your bot. If the LUIS Intent "None" is called, you make a call to that API and start a new conversation with a human.

You can use this same process to manage all conversations in a WebApplication Chat Control

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!