У меня есть существующий бот QnA (C #, SDK-v4), и теперь я хочу добавить в него LUIS без создания нового бота с шаблоном LUIS.
мой файл QnABot.cs -
public class QnABot : ActivityHandler
{
private readonly IConfiguration _configuration;
private readonly ILogger<QnABot> _logger;
private readonly IHttpClientFactory _httpClientFactory;
public QnABot(IConfiguration configuration, ILogger<QnABot> logger, IHttpClientFactory httpClientFactory)
{
_configuration = configuration;
_logger = logger;
_httpClientFactory = httpClientFactory;
}
protected override async Task OnMessageActivityAsync(ITurnContext<IMessageActivity> turnContext, CancellationToken cancellationToken)
{
var httpClient = _httpClientFactory.CreateClient();
var qnaMaker = new QnAMaker(new QnAMakerEndpoint
{
KnowledgeBaseId = _configuration["QnAKnowledgebaseId"],
EndpointKey = _configuration["QnAAuthKey"],
Host = GetHostname()
},
null,
httpClient);
_logger.LogInformation("Calling QnA Maker");
// The actual call to the QnA Maker service.
var response = await qnaMaker.GetAnswersAsync(turnContext);
if (response != null && response.Length > 0)
{
awaitturnContext.SendActivityAsync(
MessageFactory.Text(response[0].Answer), cancellationToken);
}
else
{
await turnContext.SendActivityAsync(MessageFactory.Text("No QnA Maker answers were found."), cancellationToken);
}
}
private string GetHostname()
{
var hostname = _configuration["QnAEndpointHostName"];
if (!hostname.StartsWith("https://"))
{
hostname = string.Concat("https://", hostname);
}
if (!hostname.EndsWith("/qnamaker"))
{
hostname = string.Concat(hostname, "/qnamaker");
}
return hostname;
}
}
Я знаю об инструменте диспетчеризации, который может отправить приложение LUIS с базой знаний, но я не знаю, как обращаться с намерениями Луиса в этом боте.Как я могу интегрировать LUIS в этот бот?