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

12 lines
317 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-10-01 01:45:32 +00:00
Task<CodeInterpretResult> RunCode(string codeScript, CodeInterpretOptions? options = null)
=> throw new NotImplementedException();
2025-09-30 17:10:02 +00:00
}