BotSharp/BotSharp.Platform.Abstraction/IBotEngine.cs
2018-10-03 09:13:32 -05:00

21 lines
485 B
C#

using BotSharp.Platform.Models;
using BotSharp.Platform.Models.AiRequest;
using BotSharp.Platform.Models.AiResponse;
using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
namespace BotSharp.Platform.Abstraction
{
/// <summary>
/// BotEngine is the NLU of bot platform
/// </summary>
public interface IBotEngine
{
AiResponse TextRequest(AiRequest request);
Task Train(BotTrainOptions options);
}
}