namespace BotSharp.Abstraction.Functions; public interface IFunctionCallback { string Name { get; } /// /// Indicator message used to provide UI feedback for function execution /// string Indication => string.Empty; Task Execute(RoleDialogModel message); }