using BotSharp.Core.Agents; using Microsoft.Extensions.Configuration; using Newtonsoft.Json.Linq; using System; using System.Collections.Generic; using System.Text; namespace BotSharp.Core.Abstractions { /// /// NLP process pipeline interface /// public interface INlpPipeline { IConfiguration Configuration { get; set; } bool Process(Agent agent, JObject data); } }