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 States { get; set; } = []; [JsonPropertyName("max_rounds")] public int MaxRounds { get; set; } = 20; }