BotSharp/BotSharp.Core/Abstractions/INlpPipeline.cs

20 lines
433 B
C#
Raw Normal View History

2018-06-15 17:39:24 +00:00
using BotSharp.Core.Agents;
using Microsoft.Extensions.Configuration;
2018-06-14 15:03:01 +00:00
using Newtonsoft.Json.Linq;
using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.Core.Abstractions
{
/// <summary>
/// NLP process pipeline interface
/// </summary>
public interface INlpPipeline
{
IConfiguration Configuration { get; set; }
2018-06-15 17:39:24 +00:00
bool Process(Agent agent, JObject data);
2018-06-14 15:03:01 +00:00
}
}