using BotSharp.Core.Agents; using BotSharp.Core.Engines; using System; using System.Collections.Generic; using System.Text; using System.Threading.Tasks; namespace BotSharp.Core.Abstractions { public interface INlpProvider : INlpPipeline { Task Load(Agent agent, PipeModel meta); } }