15 lines
314 B
C#
15 lines
314 B
C#
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);
|
|
}
|
|
}
|