using BotSharp.Abstraction.CodeInterpreter.Models; namespace BotSharp.Abstraction.CodeInterpreter; public interface ICodeInterpretService { string Provider { get; } Task RunCode(string codeScript, IEnumerable? arguments = null, CodeInterpretOptions? options = null); }