BotSharp/BotSharp.Core/Abstractions/INlpPipeline.cs
2018-06-14 10:03:01 -05:00

19 lines
405 B
C#

using Microsoft.Extensions.Configuration;
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; }
bool Process(String text, JObject data);
}
}