BotSharp/src/Plugins/BotSharp.Plugin.FileHandler/LlmContexts/LlmContextOut.cs
Jicheng Lu bc76a49f52 refine json format
refine file select prompt
2024-07-24 17:54:49 -05:00

11 lines
265 B
C#

using System.Text.Json.Serialization;
namespace BotSharp.Plugin.FileHandler.LlmContexts;
public class LlmContextOut
{
[JsonPropertyName("selected_id")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
public int? Selected { get; set; }
}