BotSharp/BotSharp.Core/Abstractions/INlpProvider.cs

15 lines
314 B
C#
Raw Normal View History

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<bool> Load(Agent agent, PipeModel meta);
}
}