forked from microsoft/BotBuilder-Samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BotServices.cs
58 lines (47 loc) · 2.06 KB
/
BotServices.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
using Microsoft.Bot.Builder.AI.QnA;
using Microsoft.Extensions.Configuration;
namespace Microsoft.BotBuilderSamples
{
public class BotServices : IBotServices
{
public BotServices(IConfiguration configuration)
{
QnAMakerService = new QnAMaker(new QnAMakerEndpoint
{
KnowledgeBaseId = configuration["QnAKnowledgebaseId"],
Host = GetHostname(configuration["QnAEndpointHostName"]),
EndpointKey = GetEndpointKey(configuration)
});
}
public QnAMaker QnAMakerService { get; private set; }
private static string GetHostname(string hostname)
{
if (!hostname.StartsWith("https://"))
{
hostname = string.Concat("https://", hostname);
}
if (!hostname.Contains("/v5.0") && !hostname.EndsWith("/qnamaker"))
{
hostname = string.Concat(hostname, "/qnamaker");
}
return hostname;
}
private static string GetEndpointKey(IConfiguration configuration)
{
var endpointKey = configuration["QnAEndpointKey"];
if(string.IsNullOrWhiteSpace(endpointKey))
{
// This features sample is copied as is for "azure bot service" default "createbot" template.
// Post this sample change merged into "azure bot service" template repo, "Azure Bot Service"
// will make the web app config change to use "QnAEndpointKey".But, the the old "QnAAuthkey"
// required for backward compact. This is a requirement from docs to keep app setting name
// consistent with "QnAEndpointKey". This is tracked in Github issue:
// https://github.com/microsoft/BotBuilder-Samples/issues/2532
endpointKey = configuration["QnAAuthKey"];
}
return endpointKey;
}
}
}