BotSharp/src/Infrastructure/BotSharp.Abstraction/CodeInterpreter/ICodeInterpretService.cs

11 lines
298 B
C#
Raw Normal View History

2025-09-30 17:10:02 +00:00
using BotSharp.Abstraction.CodeInterpreter.Models;
namespace BotSharp.Abstraction.CodeInterpreter;
public interface ICodeInterpretService
{
string Provider { get; }
Task<CodeInterpretResult> RunCode(string code, List<KeyValue>? arguments = null, CodeInterpretOptions? options = null);
}