BotSharp/src/Plugins/BotSharp.Plugin.WebDriver/LlmContexts/HtmlElementContextOut.cs

13 lines
271 B
C#
Raw Normal View History

2024-01-03 04:43:37 +00:00
using System.Text.Json.Serialization;
namespace BotSharp.Plugin.WebDriver.LlmContexts;
public class HtmlElementContextOut
{
[JsonPropertyName("tag_name")]
public string TagName { get; set; }
[JsonPropertyName("index")]
public int Index { get; set; }
}