BotSharp/src/Infrastructure/BotSharp.Abstraction/Instructs/Models/InstructResponseModel.cs

13 lines
445 B
C#
Raw Normal View History

2025-03-04 23:25:35 +00:00
namespace BotSharp.Abstraction.Instructs.Models;
public class InstructResponseModel
{
public string? AgentId { get; set; }
2025-03-05 23:22:46 +00:00
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!;
2025-03-04 23:25:35 +00:00
}