BotSharp/BotSharp.Core/Abstractions/IBotPlatform.cs

14 lines
254 B
C#
Raw Normal View History

2018-07-12 15:07:05 +00:00
using BotSharp.Core.Models;
using System;
2018-05-22 00:39:33 +00:00
using System.Collections.Generic;
using System.Text;
namespace BotSharp.Core.Engines
{
2018-06-13 12:23:03 +00:00
public interface IBotPlatform
2018-05-22 00:39:33 +00:00
{
2018-07-12 15:07:05 +00:00
AIResponse TextRequest(AIRequest request);
void Train();
2018-05-22 00:39:33 +00:00
}
}