BotSharp/BotSharp.Platform.Models/AiRequest/AIRequest.cs
2018-10-01 21:49:01 -05:00

26 lines
545 B
C#

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