BotSharp/src/Infrastructure/BotSharp.Abstraction/Instructs/Models/InstructResponseModel.cs
2025-03-05 17:22:46 -06:00

13 lines
445 B
C#

namespace BotSharp.Abstraction.Instructs.Models;
public class InstructResponseModel
{
public string? AgentId { get; set; }
public string Provider { get; set; } = default!;
public string Model { get; set; } = default!;
public string? TemplateName { get; set; }
public string UserMessage { get; set; } = default!;
public string? SystemInstruction { get; set; }
public string CompletionText { get; set; } = default!;
}