BotSharp/src/Infrastructure/BotSharp.Abstraction/CodeInterpreter/ICodeInterpretService.cs
Jicheng Lu 0a7dbfe44f refine
2025-09-30 20:45:32 -05:00

12 lines
317 B
C#

using BotSharp.Abstraction.CodeInterpreter.Models;
namespace BotSharp.Abstraction.CodeInterpreter;
public interface ICodeInterpretService
{
string Provider { get; }
Task<CodeInterpretResult> RunCode(string codeScript, CodeInterpretOptions? options = null)
=> throw new NotImplementedException();
}