2024-10-10 17:55:44 +00:00
|
|
|
namespace BotSharp.Abstraction.Processors.Models;
|
|
|
|
|
|
|
|
|
|
public class LlmBaseRequest
|
|
|
|
|
{
|
2024-11-07 23:42:13 +00:00
|
|
|
[JsonPropertyName("provider")]
|
2024-10-10 17:55:44 +00:00
|
|
|
public string Provider { get; set; }
|
2024-11-07 23:42:13 +00:00
|
|
|
|
|
|
|
|
[JsonPropertyName("model")]
|
2024-10-10 17:55:44 +00:00
|
|
|
public string Model { get; set; }
|
2024-11-07 23:42:13 +00:00
|
|
|
|
|
|
|
|
[JsonPropertyName("agent_id")]
|
2024-10-10 17:55:44 +00:00
|
|
|
public string? AgentId { get; set; }
|
2024-11-07 23:42:13 +00:00
|
|
|
|
|
|
|
|
[JsonPropertyName("template_name")]
|
2024-10-10 17:55:44 +00:00
|
|
|
public string? TemplateName { get; set; }
|
|
|
|
|
}
|