Is there interface for Human agent in Microsoft Bot Framework?

前端 未结 2 1885
攒了一身酷
攒了一身酷 2021-01-17 05:48

Good day!

Does any one know if there is interface for Human agent in Microsoft Bot Framework?

I need to forward dialog to real agent in case if visitor can\'

相关标签:
2条回答
  • 2021-01-17 06:23

    No, there isn't anything built-in for a human to reply as your bot in Bot Framework.

    You could make your own interface and hook it up to the Bot Connector via Direct Line

    https://docs.botframework.com/en-us/restapi/directline3/

    0 讨论(0)
  • 2021-01-17 06:32

    There are samples that solve this specific problem:

    • For Node.js: https://github.com/palindromed/Bot-HandOff
    • For C#: https://github.com/tompaana/intermediator-bot-sample

    I have plans to publish the C# solution as a Nuget package as soon as it gets mature enough, but at the moment you can just copy the code (and modify to suit your needs) from the repo to your project.

    Hope this helps!

    Cheers, Tomi

    0 讨论(0)
提交回复
热议问题