Skip to content

Commit e72a401

Browse files
committed
Add LUIS sample
1 parent 8daf9b1 commit e72a401

40 files changed

+12586
-0
lines changed

Luis/bot-builder-v4/BotStateInfo.cs

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Linq;
4+
using System.Threading.Tasks;
5+
6+
namespace ConferenceConciergeBot
7+
{
8+
public class BotStateInfo
9+
{
10+
public bool FeedbackTopicStarted { get; set; }
11+
public bool FoodAndDrinksTopicStarted { get; set; }
12+
public bool CancelTopicStarted { get; set; }
13+
}
14+
}

Luis/bot-builder-v4/CCBot.cs

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
using Microsoft.Bot;
2+
using Microsoft.Bot.Builder;
3+
using Microsoft.Bot.Builder.Ai.LUIS;
4+
using Microsoft.Bot.Builder.Core.Extensions;
5+
using Microsoft.Bot.Schema;
6+
using System.Threading.Tasks;
7+
8+
namespace ConferenceConciergeBot
9+
{
10+
public class CCBot : IBot
11+
{
12+
public async Task OnTurn(ITurnContext context)
13+
{
14+
if (context.Activity.Type == ActivityTypes.Message)
15+
{
16+
17+
var result = context.Services.Get<RecognizerResult>(LuisRecognizerMiddleware.LuisRecognizerResultKey);
18+
var topIntent = result?.GetTopScoringIntent();
19+
await context.SendActivity($"Intent: {topIntent.Value.intent} ({topIntent.Value.score}).");
20+
}
21+
}
22+
}
23+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<Project Sdk="Microsoft.NET.Sdk.Web">
2+
3+
<PropertyGroup>
4+
<TargetFramework>netcoreapp2.0</TargetFramework>
5+
</PropertyGroup>
6+
7+
<ItemGroup>
8+
<PackageReference Include="Microsoft.AspNetCore.All" Version="2.0.8" />
9+
<PackageReference Include="Microsoft.Bot.Builder.Ai.LUIS" Version="4.0.1-preview" />
10+
<PackageReference Include="Microsoft.Bot.Builder.Integration.AspNet.Core" Version="4.0.1-preview" />
11+
</ItemGroup>
12+
13+
</Project>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio 15
4+
VisualStudioVersion = 15.0.27729.1
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ConferenceConciergeBot", "ConferenceConciergeBot.csproj", "{C02C697F-9602-48BD-82F1-35E24066C976}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{C02C697F-9602-48BD-82F1-35E24066C976}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{C02C697F-9602-48BD-82F1-35E24066C976}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{C02C697F-9602-48BD-82F1-35E24066C976}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{C02C697F-9602-48BD-82F1-35E24066C976}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
GlobalSection(ExtensibilityGlobals) = postSolution
23+
SolutionGuid = {AE0EC92D-B07C-43BC-A38B-677F928F5B24}
24+
EndGlobalSection
25+
EndGlobal

Luis/bot-builder-v4/Program.cs

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.IO;
4+
using System.Linq;
5+
using System.Threading.Tasks;
6+
using Microsoft.AspNetCore;
7+
using Microsoft.AspNetCore.Hosting;
8+
using Microsoft.Extensions.Configuration;
9+
using Microsoft.Extensions.Logging;
10+
11+
namespace ConferenceConciergeBot
12+
{
13+
public class Program
14+
{
15+
public static void Main(string[] args)
16+
{
17+
BuildWebHost(args).Run();
18+
}
19+
20+
public static IWebHost BuildWebHost(string[] args) =>
21+
WebHost.CreateDefaultBuilder(args)
22+
.UseStartup<Startup>()
23+
.Build();
24+
}
25+
}

Luis/bot-builder-v4/Startup.cs

+73
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
using Microsoft.AspNetCore.Builder;
2+
using Microsoft.AspNetCore.Hosting;
3+
using Microsoft.Bot.Builder.BotFramework;
4+
using Microsoft.Bot.Builder.Integration.AspNet.Core;
5+
using Microsoft.Extensions.Configuration;
6+
using Microsoft.Extensions.DependencyInjection;
7+
using Microsoft.Bot.Builder.Ai.LUIS;
8+
using Microsoft.Extensions.Logging;
9+
using System;
10+
using Microsoft.Bot.Builder.Core.Extensions;
11+
using Microsoft.Bot.Builder.TraceExtensions;
12+
13+
namespace ConferenceConciergeBot
14+
{
15+
public class Startup
16+
{
17+
public Startup(IHostingEnvironment env)
18+
{
19+
var builder = new ConfigurationBuilder()
20+
.SetBasePath(env.ContentRootPath)
21+
.AddJsonFile("appsettings.json", optional: true, reloadOnChange: true)
22+
.AddJsonFile($"appsettings.{env.EnvironmentName}.json", optional: true)
23+
.AddEnvironmentVariables();
24+
configuration = builder.Build();
25+
}
26+
27+
// This method gets called by the runtime. Use this method to add services to the container.
28+
// For more information on how to configure your application, visit https://go.microsoft.com/fwlink/?LinkID=398940
29+
// This method gets called by the runtime. Use this method to add services to the container.
30+
public void ConfigureServices(IServiceCollection services)
31+
{
32+
services.AddBot<CCBot>(options =>
33+
{
34+
options.CredentialProvider = new ConfigurationCredentialProvider(configuration);
35+
36+
options.Middleware.Add(new CatchExceptionMiddleware<Exception>(async (context, exception) =>
37+
{
38+
await context.TraceActivity("EchoBot Exception", exception);
39+
await context.SendActivity("Sorry, it looks like something went wrong!");
40+
}));
41+
42+
// The Memory Storage used here is for local bot debugging only. When the bot
43+
// is restarted, anything stored in memory will be gone.
44+
IStorage dataStore = new MemoryStorage();
45+
46+
options.Middleware.Add(new ConversationState<BotStateInfo>(dataStore));
47+
48+
// Add LUIS recognizer as middleware
49+
options.Middleware.Add(
50+
new LuisRecognizerMiddleware(
51+
new LuisModel(
52+
"290e750c-8f15-4f17-a65c-4d4f4347373b",
53+
"7c01ac34fbc54eee99cf592d77e7704e",
54+
new Uri("https://westeurope.api.cognitive.microsoft.com/luis/v2.0/apps/"))));
55+
});
56+
}
57+
58+
private IConfiguration configuration;
59+
60+
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
61+
public void Configure(IApplicationBuilder app, IHostingEnvironment env)
62+
{
63+
if (env.IsDevelopment())
64+
{
65+
app.UseDeveloperExceptionPage();
66+
}
67+
68+
app.UseDefaultFiles();
69+
app.UseStaticFiles();
70+
app.UseBotFramework();
71+
}
72+
}
73+
}

Luis/bot-builder-v4/libman.json

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"version": "1.0",
3+
"defaultProvider": "cdnjs",
4+
"libraries": []
5+
}
+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8" />
5+
<title>Your Bot Name Here</title>
6+
</head>
7+
<body>
8+
<p>
9+
<p>Welcome to your Bot.</p>
10+
<p>
11+
You can access your bot locally via
12+
<pre><b>http://localhost:your port/api/messages</b></pre>
13+
</p>
14+
</p>
15+
</body>
16+
</html>

0 commit comments

Comments
 (0)