namespace BotSharp.Abstraction.Instructs.Models;
public class InstructOptions
{
///
/// Llm provider
///
public string Provider { get; set; } = null!;
///
/// Llm model
///
public string Model { get; set; } = null!;
///
/// Conversation id. When this field is not null, it will get dialogs from conversation.
///
public string? ConversationId { get; set; }
///
/// The single message. It can be append to the whole dialogs or sent alone.
///
public string? Message { get; set; }
///
/// Data to fill in prompt
///
public Dictionary Data { get; set; } = new();
}