BotSharp/src/Plugins/BotSharp.Plugin.FileHandler/LlmContexts/LlmContextIn.cs

11 lines
271 B
C#
Raw Normal View History

2024-07-16 19:13:29 +00:00
using System.Text.Json.Serialization;
namespace BotSharp.Plugin.FileHandler.LlmContexts;
public class LlmContextIn
{
[JsonPropertyName("user_request")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
public string? UserRequest { get; set; }
}