BotSharp/src/Infrastructure/BotSharp.Abstraction/Chart/Options/ChartCodeOptions.cs
2025-10-15 13:24:27 -05:00

25 lines
690 B
C#

namespace BotSharp.Abstraction.Chart.Options;
public class ChartCodeOptions
{
public string? AgentId { get; set; }
public string? TemplateName { get; set; }
public string Text { get; set; } = string.Empty;
/// <summary>
/// Conversation state that can be used to fetch chart data
/// </summary>
public string? TargetStateName { get; set; }
public ChartLlmOptions? Llm { get; set; }
public List<KeyValue<object>>? States { get; set; }
}
public class ChartLlmOptions
{
public string? Provider { get; set; }
public string? Model { get; set; }
public int? MaxOutputTokens { get; set; }
public string? ReasoningEffortLevel { get; set; }
}