Table of Contents

Property Count

Namespace
LMKit.Agents.Tools
Assembly
LM-Kit.NET.dll

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.");
}