namespace BotSharp.Abstraction.Functions; public interface IFunctionCallback { string Name { get; } Task Execute(string args); }