using BotSharp.Abstraction.Chart.Models; namespace BotSharp.Abstraction.Chart; public interface IBotSharpChartService { public string Provider { get; } Task GetConversationChartData(string conversationId, string messageId, ChartDataOptions options) => throw new NotImplementedException(); Task GetConversationChartCode(string conversationId, string messageId, ChartCodeOptions options) => throw new NotImplementedException(); }