BotSharp/src/Infrastructure/BotSharp.Abstraction/Evaluations/Models/SimulationResult.cs

14 lines
333 B
C#
Raw Normal View History

2024-11-07 23:42:13 +00:00
namespace BotSharp.Abstraction.Evaluations.Models;
public class SimulationResult
{
[JsonPropertyName("generated_message")]
public string GeneratedMessage { get; set; }
2024-11-08 02:31:05 +00:00
[JsonPropertyName("stop_conversation")]
2024-11-07 23:42:13 +00:00
public bool Stop { get; set; }
[JsonPropertyName("reason")]
public string? Reason { get; set; }
}