Table of Contents

Class BuiltInProfile

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

Represents a reusable built-in tool registration profile.

public sealed class BuiltInProfile
Inheritance
BuiltInProfile
Inherited Members

Examples

Registering only the read-only built-in tools on an agent:

using LMKit.Agents;
using LMKit.Agents.Tools.BuiltIn;

var agent = Agent.CreateBuilder(model) .WithTools(tools => tools.AddBuiltInProfile(BuiltInProfiles.SafeOnly)) .Build();

Properties

Name

Gets the display name of this profile (for example, "all" or "safe_only").

Share