Skip to content

Commit 6778612

Browse files
author
Russ Williams
committedJun 13, 2019
Added Multiturn QnA Maker accelerator
1 parent c9a6372 commit 6778612

17 files changed

+651
-1
lines changed
 

‎.gitattributes

+63
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
###############################################################################
2+
# Set default behavior to automatically normalize line endings.
3+
###############################################################################
4+
* text=auto
5+
6+
###############################################################################
7+
# Set default behavior for command prompt diff.
8+
#
9+
# This is need for earlier builds of msysgit that does not have it on by
10+
# default for csharp files.
11+
# Note: This is only used by command line
12+
###############################################################################
13+
#*.cs diff=csharp
14+
15+
###############################################################################
16+
# Set the merge driver for project and solution files
17+
#
18+
# Merging from the command prompt will add diff markers to the files if there
19+
# are conflicts (Merging from VS is not affected by the settings below, in VS
20+
# the diff markers are never inserted). Diff markers may cause the following
21+
# file extensions to fail to load in VS. An alternative would be to treat
22+
# these files as binary and thus will always conflict and require user
23+
# intervention with every merge. To do so, just uncomment the entries below
24+
###############################################################################
25+
#*.sln merge=binary
26+
#*.csproj merge=binary
27+
#*.vbproj merge=binary
28+
#*.vcxproj merge=binary
29+
#*.vcproj merge=binary
30+
#*.dbproj merge=binary
31+
#*.fsproj merge=binary
32+
#*.lsproj merge=binary
33+
#*.wixproj merge=binary
34+
#*.modelproj merge=binary
35+
#*.sqlproj merge=binary
36+
#*.wwaproj merge=binary
37+
38+
###############################################################################
39+
# behavior for image files
40+
#
41+
# image files are treated as binary by default.
42+
###############################################################################
43+
#*.jpg binary
44+
#*.png binary
45+
#*.gif binary
46+
47+
###############################################################################
48+
# diff behavior for common document formats
49+
#
50+
# Convert binary document formats to text before diffing them. This feature
51+
# is only available from the command line. Turn it on by uncommenting the
52+
# entries below.
53+
###############################################################################
54+
#*.doc diff=astextplain
55+
#*.DOC diff=astextplain
56+
#*.docx diff=astextplain
57+
#*.DOCX diff=astextplain
58+
#*.dot diff=astextplain
59+
#*.DOT diff=astextplain
60+
#*.pdf diff=astextplain
61+
#*.PDF diff=astextplain
62+
#*.rtf diff=astextplain
63+
#*.RTF diff=astextplain

‎.gitignore

+340
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,340 @@
1+
## Ignore Visual Studio temporary files, build results, and
2+
## files generated by popular Visual Studio add-ons.
3+
##
4+
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
5+
6+
# User-specific files
7+
*.rsuser
8+
*.suo
9+
*.user
10+
*.userosscache
11+
*.sln.docstates
12+
13+
# User-specific files (MonoDevelop/Xamarin Studio)
14+
*.userprefs
15+
16+
# Build results
17+
[Dd]ebug/
18+
[Dd]ebugPublic/
19+
[Rr]elease/
20+
[Rr]eleases/
21+
x64/
22+
x86/
23+
[Aa][Rr][Mm]/
24+
[Aa][Rr][Mm]64/
25+
bld/
26+
[Bb]in/
27+
[Oo]bj/
28+
[Ll]og/
29+
30+
# Visual Studio 2015/2017 cache/options directory
31+
.vs/
32+
# Uncomment if you have tasks that create the project's static files in wwwroot
33+
#wwwroot/
34+
35+
# Visual Studio 2017 auto generated files
36+
Generated\ Files/
37+
38+
# MSTest test Results
39+
[Tt]est[Rr]esult*/
40+
[Bb]uild[Ll]og.*
41+
42+
# NUNIT
43+
*.VisualState.xml
44+
TestResult.xml
45+
46+
# Build Results of an ATL Project
47+
[Dd]ebugPS/
48+
[Rr]eleasePS/
49+
dlldata.c
50+
51+
# Benchmark Results
52+
BenchmarkDotNet.Artifacts/
53+
54+
# .NET Core
55+
project.lock.json
56+
project.fragment.lock.json
57+
artifacts/
58+
59+
# StyleCop
60+
StyleCopReport.xml
61+
62+
# Files built by Visual Studio
63+
*_i.c
64+
*_p.c
65+
*_h.h
66+
*.ilk
67+
*.meta
68+
*.obj
69+
*.iobj
70+
*.pch
71+
*.pdb
72+
*.ipdb
73+
*.pgc
74+
*.pgd
75+
*.rsp
76+
*.sbr
77+
*.tlb
78+
*.tli
79+
*.tlh
80+
*.tmp
81+
*.tmp_proj
82+
*_wpftmp.csproj
83+
*.log
84+
*.vspscc
85+
*.vssscc
86+
.builds
87+
*.pidb
88+
*.svclog
89+
*.scc
90+
91+
# Chutzpah Test files
92+
_Chutzpah*
93+
94+
# Visual C++ cache files
95+
ipch/
96+
*.aps
97+
*.ncb
98+
*.opendb
99+
*.opensdf
100+
*.sdf
101+
*.cachefile
102+
*.VC.db
103+
*.VC.VC.opendb
104+
105+
# Visual Studio profiler
106+
*.psess
107+
*.vsp
108+
*.vspx
109+
*.sap
110+
111+
# Visual Studio Trace Files
112+
*.e2e
113+
114+
# TFS 2012 Local Workspace
115+
$tf/
116+
117+
# Guidance Automation Toolkit
118+
*.gpState
119+
120+
# ReSharper is a .NET coding add-in
121+
_ReSharper*/
122+
*.[Rr]e[Ss]harper
123+
*.DotSettings.user
124+
125+
# JustCode is a .NET coding add-in
126+
.JustCode
127+
128+
# TeamCity is a build add-in
129+
_TeamCity*
130+
131+
# DotCover is a Code Coverage Tool
132+
*.dotCover
133+
134+
# AxoCover is a Code Coverage Tool
135+
.axoCover/*
136+
!.axoCover/settings.json
137+
138+
# Visual Studio code coverage results
139+
*.coverage
140+
*.coveragexml
141+
142+
# NCrunch
143+
_NCrunch_*
144+
.*crunch*.local.xml
145+
nCrunchTemp_*
146+
147+
# MightyMoose
148+
*.mm.*
149+
AutoTest.Net/
150+
151+
# Web workbench (sass)
152+
.sass-cache/
153+
154+
# Installshield output folder
155+
[Ee]xpress/
156+
157+
# DocProject is a documentation generator add-in
158+
DocProject/buildhelp/
159+
DocProject/Help/*.HxT
160+
DocProject/Help/*.HxC
161+
DocProject/Help/*.hhc
162+
DocProject/Help/*.hhk
163+
DocProject/Help/*.hhp
164+
DocProject/Help/Html2
165+
DocProject/Help/html
166+
167+
# Click-Once directory
168+
publish/
169+
170+
# Publish Web Output
171+
*.[Pp]ublish.xml
172+
*.azurePubxml
173+
# Note: Comment the next line if you want to checkin your web deploy settings,
174+
# but database connection strings (with potential passwords) will be unencrypted
175+
*.pubxml
176+
*.publishproj
177+
178+
# Microsoft Azure Web App publish settings. Comment the next line if you want to
179+
# checkin your Azure Web App publish settings, but sensitive information contained
180+
# in these scripts will be unencrypted
181+
PublishScripts/
182+
183+
# NuGet Packages
184+
*.nupkg
185+
# The packages folder can be ignored because of Package Restore
186+
**/[Pp]ackages/*
187+
# except build/, which is used as an MSBuild target.
188+
!**/[Pp]ackages/build/
189+
# Uncomment if necessary however generally it will be regenerated when needed
190+
#!**/[Pp]ackages/repositories.config
191+
# NuGet v3's project.json files produces more ignorable files
192+
*.nuget.props
193+
*.nuget.targets
194+
195+
# Microsoft Azure Build Output
196+
csx/
197+
*.build.csdef
198+
199+
# Microsoft Azure Emulator
200+
ecf/
201+
rcf/
202+
203+
# Windows Store app package directories and files
204+
AppPackages/
205+
BundleArtifacts/
206+
Package.StoreAssociation.xml
207+
_pkginfo.txt
208+
*.appx
209+
210+
# Visual Studio cache files
211+
# files ending in .cache can be ignored
212+
*.[Cc]ache
213+
# but keep track of directories ending in .cache
214+
!?*.[Cc]ache/
215+
216+
# Others
217+
ClientBin/
218+
~$*
219+
*~
220+
*.dbmdl
221+
*.dbproj.schemaview
222+
*.jfm
223+
*.pfx
224+
*.publishsettings
225+
orleans.codegen.cs
226+
227+
# Including strong name files can present a security risk
228+
# (https://github.com/github/gitignore/pull/2483#issue-259490424)
229+
#*.snk
230+
231+
# Since there are multiple workflows, uncomment next line to ignore bower_components
232+
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
233+
#bower_components/
234+
235+
# RIA/Silverlight projects
236+
Generated_Code/
237+
238+
# Backup & report files from converting an old project file
239+
# to a newer Visual Studio version. Backup files are not needed,
240+
# because we have git ;-)
241+
_UpgradeReport_Files/
242+
Backup*/
243+
UpgradeLog*.XML
244+
UpgradeLog*.htm
245+
ServiceFabricBackup/
246+
*.rptproj.bak
247+
248+
# SQL Server files
249+
*.mdf
250+
*.ldf
251+
*.ndf
252+
253+
# Business Intelligence projects
254+
*.rdl.data
255+
*.bim.layout
256+
*.bim_*.settings
257+
*.rptproj.rsuser
258+
*- Backup*.rdl
259+
260+
# Microsoft Fakes
261+
FakesAssemblies/
262+
263+
# GhostDoc plugin setting file
264+
*.GhostDoc.xml
265+
266+
# Node.js Tools for Visual Studio
267+
.ntvs_analysis.dat
268+
node_modules/
269+
270+
# Visual Studio 6 build log
271+
*.plg
272+
273+
# Visual Studio 6 workspace options file
274+
*.opt
275+
276+
# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
277+
*.vbw
278+
279+
# Visual Studio LightSwitch build output
280+
**/*.HTMLClient/GeneratedArtifacts
281+
**/*.DesktopClient/GeneratedArtifacts
282+
**/*.DesktopClient/ModelManifest.xml
283+
**/*.Server/GeneratedArtifacts
284+
**/*.Server/ModelManifest.xml
285+
_Pvt_Extensions
286+
287+
# Paket dependency manager
288+
.paket/paket.exe
289+
paket-files/
290+
291+
# FAKE - F# Make
292+
.fake/
293+
294+
# JetBrains Rider
295+
.idea/
296+
*.sln.iml
297+
298+
# CodeRush personal settings
299+
.cr/personal
300+
301+
# Python Tools for Visual Studio (PTVS)
302+
__pycache__/
303+
*.pyc
304+
305+
# Cake - Uncomment if you are using it
306+
# tools/**
307+
# !tools/packages.config
308+
309+
# Tabs Studio
310+
*.tss
311+
312+
# Telerik's JustMock configuration file
313+
*.jmconfig
314+
315+
# BizTalk build output
316+
*.btp.cs
317+
*.btm.cs
318+
*.odx.cs
319+
*.xsd.cs
320+
321+
# OpenCover UI analysis results
322+
OpenCover/
323+
324+
# Azure Stream Analytics local run output
325+
ASALocalRun/
326+
327+
# MSBuild Binary and Structured Log
328+
*.binlog
329+
330+
# NVidia Nsight GPU debugger configuration file
331+
*.nvuser
332+
333+
# MFractors (Xamarin productivity tool) working folder
334+
.mfractor/
335+
336+
# Local History for Visual Studio
337+
.localhistory/
338+
339+
# BeatPulse healthcheck temp database
340+
healthchecksdb

‎.vs/BotFrameworkAccelerators/v16/.suo

-3 KB
Binary file not shown.

‎.vs/VSWorkspaceState.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
"\\SecuredWebChatControl\\Controllers",
66
"\\SecuredWebChatControl\\wwwroot"
77
],
8-
"SelectedNode": "\\SecuredWebChatControl\\README.md",
8+
"SelectedNode": "\\README.md",
99
"PreviewInSolutionExplorer": false
1010
}

‎.vs/slnx.sqlite

0 Bytes
Binary file not shown.
385 KB
Binary file not shown.
Binary file not shown.
+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT License.
3+
4+
using System.Collections.Generic;
5+
using System.Linq;
6+
using Microsoft.Bot.Schema;
7+
using QnA.MultiturnQnAMaker;
8+
9+
namespace QnAPrompting.Helpers
10+
{
11+
public class CardHelper
12+
{
13+
/// <summary>
14+
/// Get Hero card
15+
/// </summary>
16+
/// <param name="cardTitle">Title of the card</param>
17+
/// <param name="prompts">List of suggested prompts</param>
18+
/// <returns>Message activity</returns>
19+
public static Activity GetHeroCard(string cardTitle, QnAPrompts[] prompts)
20+
{
21+
var chatActivity = Activity.CreateMessageActivity();
22+
var buttons = new List<CardAction>();
23+
24+
var sortedPrompts = prompts.OrderBy(r => r.DisplayOrder);
25+
foreach (var prompt in sortedPrompts)
26+
{
27+
buttons.Add(
28+
new CardAction()
29+
{
30+
Value = prompt.DisplayText,
31+
Type = ActionTypes.ImBack,
32+
Title = prompt.DisplayText,
33+
});
34+
}
35+
36+
var plCard = new HeroCard()
37+
{
38+
Title = cardTitle,
39+
Subtitle = string.Empty,
40+
Buttons = buttons
41+
};
42+
43+
var attachment = plCard.ToAttachment();
44+
45+
chatActivity.Attachments.Add(attachment);
46+
47+
return (Activity)chatActivity;
48+
}
49+
}
50+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT License.
3+
4+
namespace QnA.MultiturnQnAMaker
5+
{
6+
public class MultiturnQnAContext
7+
{
8+
public MultiturnQnAPrompts[] Prompts { get; set; }
9+
}
10+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT License.
3+
4+
namespace QnA.MultiturnQnAMaker
5+
{
6+
public class MultiturnQnAMetadata
7+
{
8+
public string Name { get; set; }
9+
10+
public string Value { get; set; }
11+
}
12+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT License.
3+
4+
namespace QnA.MultiturnQnAMaker
5+
{
6+
public class MultiturnQnAPrompts
7+
{
8+
public int DisplayOrder { get; set; }
9+
10+
public int QnaId { get; set; }
11+
12+
public string DisplayText { get; set; }
13+
}
14+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT License.
3+
4+
namespace QnA.MultiturnQnAMaker
5+
{
6+
public class MultiturnQnAResult
7+
{
8+
public string[] Questions { get; set; }
9+
10+
public string Answer { get; set; }
11+
12+
public double Score { get; set; }
13+
14+
public int Id { get; set; }
15+
16+
public string Source { get; set; }
17+
18+
public MultiturnQnAMetadata[] Metadata { get; }
19+
20+
public MultiturnQnAContext Context { get; set; }
21+
}
22+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT License.
3+
4+
namespace QnA.MultiturnQnAMaker
5+
{
6+
public class MultiturnQnAResultList
7+
{
8+
public MultiturnQnAResult[] Answers { get; set; }
9+
}
10+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Linq;
4+
using System.Threading.Tasks;
5+
6+
namespace QnA.MultiturnQnAMaker
7+
{
8+
/// <summary>
9+
/// This is passed as the context in the body of the call to generateanswer API in the QnA service
10+
/// </summary>
11+
public class MultiturnQnAState
12+
{
13+
public int PreviousQnaId { get; set; }
14+
15+
public string PreviousUserQuery { get; set; }
16+
}
17+
}

‎MultiturnQnAMaker/README.md

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Multiturn QnA Maker
2+
This accelerator shows how to add the ability to show the new follow-on prompts you can now add to
3+
QnA Maker knowledgebases.
4+
5+
You can find an overview of this new multiturn QnA capability
6+
[here](https://docs.microsoft.com/en-us/azure/cognitive-services/qnamaker/how-to/multiturn-conversation)
7+
along with how to add follow-on prompts in the portal (see **Add new QnA pair as follow-up prompt** section
8+
for quick way to manually add 1 or 2 to get started)
9+
10+
## To Use
11+
1. Create, build and deploy a Virtual Assistant bot as described [here](https://github.com/microsoft/botframework-solutions/blob/master/docs/tutorials/csharp/virtualassistant.md)
12+
2. Copy the **Helpers** folder to root project folder of your assistant (i.e. where the .csproj file is)
13+
3. Copy the files from the **Models** folder into the **Models** folder of your assistant
14+
4. Copy **Services\MultiturnQnAMaker.cs** to the **Services** folder of your assistant
15+
5. Edit your assistant's **Dialogs\MainDialog.cs** as outlined in **Dialogs\Changes to MainDialog.cs.pdf**
16+
6. Edit your assistant's **Services\BotServices.cs** as outlined in **Services\Changes to BotServices.cs.pdf**
17+
7. Edit your assistant's **Startup.cs** as outlined in **Changes to Startup.cs.pdf**
18+
8. Browse to [https://www.qnamaker.ai/](https://www.qnamaker.ai/) and find the **faq** for the assistant
19+
you deployed in step 1 and add a few QnAs with follow-on prompts as descrived [here](https://docs.microsoft.com/en-us/azure/cognitive-services/qnamaker/how-to/multiturn-conversation)
20+
(see **Add new QnA pair as follow-up prompt** section specifically)
21+
9. Sync the new QnA changes with your assistant as described [here](https://github.com/microsoft/botframework-solutions/blob/master/docs/tutorials/csharp/customizeassistant.md#update-your-local-lu-files-for-luis-and-qnamaker)
22+
10. Run the bot and test it with the bot emulator by typing in the multiturn QnA questions you added
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT License.
3+
4+
using System.Collections;
5+
using System.Collections.Generic;
6+
using System.Net.Http;
7+
using System.Threading;
8+
using System.Threading.Tasks;
9+
using Microsoft.Bot.Builder;
10+
using Microsoft.Bot.Builder.AI.QnA;
11+
using Microsoft.Bot.Builder.Dialogs;
12+
using Microsoft.Bot.Schema;
13+
using Microsoft.Extensions.Configuration;
14+
using Newtonsoft.Json;
15+
using QnAPrompting.Helpers;
16+
17+
namespace QnA.MultiturnQnAMaker
18+
{
19+
public class MultiturnQnAMaker : QnAMaker
20+
{
21+
public const string FunctionStateName = "functionState";
22+
private readonly HttpClient _httpClient;
23+
private readonly QnAMakerEndpoint _endpoint;
24+
private readonly QnAMakerOptions _options;
25+
26+
public MultiturnQnAMaker(QnAMakerEndpoint endpoint, HttpClient httpClient, IBotTelemetryClient telemetryClient, bool logPersonalInformation = false) : base(endpoint, null, httpClient, telemetryClient, logPersonalInformation)
27+
{
28+
_httpClient = httpClient;
29+
_endpoint = endpoint;
30+
_options = new QnAMakerOptions { Top = 3 };
31+
}
32+
33+
public async Task<(MultiturnQnAState newState, IEnumerable<Activity> output)> GetAnswersAsync(MultiturnQnAState oldState, ITurnContext turnContext, QnAMakerOptions options, Dictionary<string, string> telemetryProperties, Dictionary<string, double> telemetryMetrics = null)
34+
{
35+
Activity outputActivity = null;
36+
MultiturnQnAState newState = null;
37+
38+
var query = turnContext.Activity.Text;
39+
var qnaResult = await QueryQnAServiceAsync(query, oldState);
40+
var qnaAnswer = qnaResult[0].Answer;
41+
var prompts = qnaResult[0].Context?.Prompts;
42+
43+
if (prompts == null || prompts.Length < 1)
44+
{
45+
outputActivity = MessageFactory.Text(qnaAnswer);
46+
}
47+
else
48+
{
49+
// Set bot state only if prompts are found in QnA result
50+
newState = new MultiturnQnAState
51+
{
52+
PreviousQnaId = qnaResult[0].Id,
53+
PreviousUserQuery = query
54+
};
55+
56+
outputActivity = CardHelper.GetHeroCard(qnaAnswer, prompts);
57+
}
58+
59+
return (newState, new Activity[] { outputActivity });
60+
}
61+
62+
public async Task<MultiturnQnAResult[]> QueryQnAServiceAsync(string query, MultiturnQnAState oldState)
63+
{
64+
var requestUrl = $"{_endpoint.Host}/knowledgebases/{_endpoint.KnowledgeBaseId}/generateanswer";
65+
var request = new HttpRequestMessage(HttpMethod.Post, requestUrl);
66+
var jsonRequest = JsonConvert.SerializeObject(
67+
new
68+
{
69+
question = query,
70+
top = _options.Top,
71+
context = oldState,
72+
strictFilters = _options.StrictFilters,
73+
metadataBoost = _options.MetadataBoost,
74+
scoreThreshold = _options.ScoreThreshold,
75+
}, Formatting.None);
76+
77+
request.Headers.Add("Authorization", $"EndpointKey {_endpoint.EndpointKey}");
78+
request.Content = new StringContent(jsonRequest, System.Text.Encoding.UTF8, "application/json");
79+
80+
var response = await _httpClient.SendAsync(request);
81+
response.EnsureSuccessStatusCode();
82+
83+
var contentString = await response.Content.ReadAsStringAsync();
84+
85+
var result = JsonConvert.DeserializeObject<MultiturnQnAResultList>(contentString);
86+
87+
return result.Answers;
88+
}
89+
}
90+
}

0 commit comments

Comments
 (0)
Please sign in to comment.