BotSharp/BotSharp.Core/Abstractions/INlpPredict.cs

16 lines
384 B
C#
Raw Normal View History

2018-10-03 06:00:07 +00:00
using BotSharp.Core.Engines;
using BotSharp.Platform.Models;
2018-10-03 17:21:19 +00:00
using BotSharp.Platform.Models.MachineLearning;
using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
namespace BotSharp.Core.Abstractions
{
public interface INlpPredict : INlpPipeline
{
2018-10-03 06:00:07 +00:00
Task<bool> Predict(AgentBase agent, NlpDoc doc, PipeModel meta);
}
}