BotSharp/BotSharp.Core/Abstractions/IBotPlatform.cs

20 lines
453 B
C#
Raw Normal View History

using BotSharp.Core.Agents;
2018-10-01 17:15:17 +00:00
using BotSharp.Platform.Models;
2018-10-03 01:44:11 +00:00
using BotSharp.Platform.Models.AiRequest;
using BotSharp.Platform.Models.AiResponse;
using Newtonsoft.Json.Linq;
2018-07-12 15:07:05 +00:00
using System;
2018-05-22 00:39:33 +00:00
using System.Collections.Generic;
using System.Text;
2018-08-08 21:39:00 +00:00
using System.Threading.Tasks;
2018-05-22 00:39:33 +00:00
namespace BotSharp.Core.Engines
{
2018-06-13 12:23:03 +00:00
public interface IBotPlatform
2018-05-22 00:39:33 +00:00
{
2018-10-03 01:44:11 +00:00
AiResponse TextRequest(AiRequest request);
2018-08-28 14:58:35 +00:00
Task Train(BotTrainOptions options);
2018-05-22 00:39:33 +00:00
}
}