Class BuiltInProfiles
Predefined built-in tool profiles.
public static class BuiltInProfiles
- Inheritance
-
BuiltInProfiles
- Inherited Members
Examples
Registering the full built-in tool catalog:
using LMKit.Agents;
using LMKit.Agents.Tools.BuiltIn;
var agent = Agent.CreateBuilder(model)
.WithTools(tools => tools.AddBuiltInProfile(BuiltInProfiles.All))
.Build();
Properties
- All
Registers all built-in tools available through default constructors.
- SafeOnly
Registers tools that are read-only and have no side effects.