BotSharp/BotSharp.Core/Abstractions/IBotPlatform.cs

16 lines
283 B
C#

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