2025-07-01 20:47:18 +00:00
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
|
|
|
|
|
|
namespace BotSharp.Plugin.ChartHandler.LlmContext;
|
|
|
|
|
|
|
|
|
|
public class LlmContextOut
|
|
|
|
|
{
|
|
|
|
|
[JsonPropertyName("greeting_message")]
|
|
|
|
|
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
|
|
|
|
|
public string? GreetingMessage { get; set; }
|
|
|
|
|
|
2025-09-04 22:59:29 +00:00
|
|
|
[JsonPropertyName("report_summary")]
|
|
|
|
|
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
|
|
|
|
|
public string? ReportSummary { get; set; }
|
|
|
|
|
|
2025-07-01 20:47:18 +00:00
|
|
|
[JsonPropertyName("js_code")]
|
|
|
|
|
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
|
|
|
|
|
public string? JsCode { get; set; }
|
|
|
|
|
}
|