using System; using System.Collections.Generic; using System.Text; namespace BotSharp.Platform.Models.AiRequest { public class AiRequest { public AiRequest() { Contexts = new List(); } public string AgentId { get; set; } public string Text { get; set; } public string SessionId { get; set; } public List Contexts { get; set; } public bool ResetContexts { get; set; } /// /// What model is used to predict. /// It's optional. /// public string Model { get; set; } public string AgentDir { get; set; } } }