16 lines
411 B
C#
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;
|
|
}
|