BotSharp/src/Infrastructure/BotSharp.Abstraction/Evaluations/Models/EvaluationRequest.cs
2024-11-07 20:31:05 -06:00

16 lines
411 B
C#

using BotSharp.Abstraction.Processors.Models;
namespace BotSharp.Abstraction.Evaluations.Models;
public class EvaluationRequest : LlmBaseRequest
{
[JsonPropertyName("agent_id")]
public new string AgentId { get; set; }
[JsonPropertyName("states")]
public IEnumerable<MessageState> States { get; set; } = [];
[JsonPropertyName("max_rounds")]
public int MaxRounds { get; set; } = 20;
}