11 lines
298 B
C#
11 lines
298 B
C#
|
|
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);
|
||
|
|
}
|