14 lines
333 B
C#
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; }
|
|
}
|