using BotSharp.Core.Engines; using BotSharp.Platform.Models; using BotSharp.Platform.Models.MachineLearning; using System; using System.Collections.Generic; using System.Text; using System.Threading.Tasks; namespace BotSharp.Core.Abstractions { public interface INlpTrain : INlpPipeline { /// /// Process /// /// /// Intermediate result /// Meta data which is packed to model /// Task Train(AgentBase agent, NlpDoc doc, PipeModel meta); } }