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