Property Count
Count
Gets the number of tools currently registered.
public int Count { get; }
Property Value
- int
The count of registered tools.
Examples
Example: Checking registry state
using LMKit.Agents.Tools;
var registry = new ToolRegistry();
if (registry.Count == 0)
{
Console.WriteLine("No tools registered. Agent will respond without tool access.");
}