BotSharp/src/Infrastructure/BotSharp.Abstraction/Processors/Models/LlmBaseRequest.cs

10 lines
249 B
C#
Raw Normal View History

2024-10-10 17:55:44 +00:00
namespace BotSharp.Abstraction.Processors.Models;
public class LlmBaseRequest
{
public string Provider { get; set; }
public string Model { get; set; }
public string? AgentId { get; set; }
public string? TemplateName { get; set; }
}