Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

IIntentHandler.cs 301 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
  1. using System.Threading.Tasks;
  2. using Microsoft.Bot.Builder.Dialogs;
  3. using Microsoft.Bot.Builder.Luis.Models;
  4. using Microsoft.Bot.Connector;
  5. namespace Zummer.Handlers
  6. {
  7. public interface IIntentHandler
  8. {
  9. Task Respond(IAwaitable<IMessageActivity> activity, LuisResult result);
  10. }
  11. }
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...