13 lines
445 B
C#
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!;
|
|
}
|