BotSharp/BotSharp.Core/Abstractions/IBotPlatform.cs
2018-07-12 10:07:05 -05:00

14 lines
254 B
C#

using BotSharp.Core.Models;
using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.Core.Engines
{
public interface IBotPlatform
{
AIResponse TextRequest(AIRequest request);
void Train();
}
}