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

16 lines
377 B
C#
Raw Normal View History

2024-05-20 21:50:45 +00:00
using System.Text.Json.Serialization;
namespace BotSharp.Plugin.HttpHandler.LlmContexts;
public class LlmContextIn
{
[JsonPropertyName("request_url")]
public string? RequestUrl { get; set; }
[JsonPropertyName("http_method")]
public string? HttpMethod { get; set; }
[JsonPropertyName("request_content")]
public string? RequestContent { get; set; }
}