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

14 lines
333 B
C#

namespace BotSharp.Abstraction.Evaluations.Models;
public class SimulationResult
{
[JsonPropertyName("generated_message")]
public string GeneratedMessage { get; set; }
[JsonPropertyName("stop_conversation")]
public bool Stop { get; set; }
[JsonPropertyName("reason")]
public string? Reason { get; set; }
}