using System.ComponentModel; namespace Svrnty.Sample.AI.Tools; public class MathTool { [Description("Add two numbers together")] public int Add(int a, int b) => a + b; [Description("Multiply two numbers together")] public int Multiply(int a, int b) => a * b; }