BotSharp/BotSharp.Core/Abstractions/INlpProvider.cs
2018-10-03 12:21:19 -05:00

16 lines
370 B
C#

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 INlpProvider : INlpPipeline
{
Task<bool> Load(AgentBase agent, PipeModel meta);
}
}