BotSharp/src/Infrastructure/BotSharp.Abstraction/Chart/Options/ChartCodeOptions.cs

25 lines
690 B
C#
Raw Normal View History

2025-10-15 18:24:27 +00:00
namespace BotSharp.Abstraction.Chart.Options;
2025-09-05 19:51:26 +00:00
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; }
}