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

11 lines
311 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; }
2025-09-30 20:26:32 +00:00
Task<CodeInterpretResult> RunCode(string codeScript, IEnumerable<KeyValue>? arguments = null, CodeInterpretOptions? options = null);
2025-09-30 17:10:02 +00:00
}