BotSharp/BotSharp.Platform.Models/AiRequest/AIRequest.cs

33 lines
688 B
C#
Raw Normal View History

2018-10-02 02:49:01 +00:00
using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.Platform.Models.AiRequest
{
public class AiRequest
{
public AiRequest()
{
Contexts = new List<string>();
}
2018-10-02 02:49:01 +00:00
public string AgentId { get; set; }
public string Text { get; set; }
public string SessionId { get; set; }
public List<String> Contexts { get; set; }
2018-10-02 02:49:01 +00:00
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; }
}
}