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:03:06 +00:00
|
|
|
Task<CodeInterpretResult> RunCode(string code, IEnumerable<KeyValue>? arguments = null, CodeInterpretOptions? options = null);
|
2025-09-30 17:10:02 +00:00
|
|
|
}
|