BotSharp/src/Infrastructure/BotSharp.Abstraction/Chart/IBotSharpChartService.cs
2025-09-05 14:51:26 -05:00

15 lines
496 B
C#

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