-
Notifications
You must be signed in to change notification settings - Fork 66
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bot Framework V4 Human Handoff Middlewareset Issue #42
Comments
@tompaana can you please help me |
@chinnivyshnavi did you find a solution for this? I have a bot on .NET core that is using LUIS and QnA Maker. The last thing I want to add is to implement bot to human handoff by opening a channel in MSTeams. @tompaana implementation works great with the hand off I want to do but I want to integrate this in my code. I wonder if you have used his classes and could point me in the right direction. |
@chinnivyshnavi, @hshahbaz did you manage to integrate the Agent HandOff with your code?
Would appreciate if you could share whether, you could manage to integrate your code with the IntermediatorBot? |
Hello,
Please help me
I am a beginner for the Human Handover in the V4 bot framework. I am following the approach of the middleware. Also, I have the LUIS as well added as a service to my bot.
I added the middleware in my Startup.cs file as follows.
services.AddBot(options =>
{
options.CredentialProvider = new SimpleCredentialProvider(endpointService.AppId, endpointService.AppPassword);
I am using the Microsoft.Bot.Builder version 4.1.5
My Middleware code is
public async Task OnTurnAsync(ITurnContext context, NextDelegate next, CancellationToken cancellationToken)
{
Activity activity = context.Activity;
When I run the solution in the emulator, the create connection is assigned to "NotSetup" even i connected in two seperate instances in the emlator and during debug I get the following error
Please help me here
The text was updated successfully, but these errors were encountered: