BotSharp/src/Infrastructure/BotSharp.Abstraction/Functions/Models/FunctionCallFromLlm.cs
2023-08-27 22:50:10 -05:00

15 lines
357 B
C#

using BotSharp.Abstraction.Routing.Models;
using System.Text.Json;
using System.Text.Json.Serialization;
namespace BotSharp.Abstraction.Functions.Models;
public class FunctionCallFromLlm
{
[JsonPropertyName("function")]
public string Function { get; set; }
[JsonPropertyName("parameters")]
public RetrievalArgs Parameters { get; set; }
}