Table of Contents

Class IniWriteTool

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

A built-in tool for modifying INI configuration data.

Set values, remove keys or sections, or generate new INI content from structured data.

public sealed class IniWriteTool : IBuiltInTool, ITool, IToolMetadata
Inheritance
IniWriteTool
Implements
Inherited Members

Examples

var tool = new IniWriteTool();
registry.Register(tool);

// Agent can now: set INI values, remove keys/sections, generate INI from data

Properties

Description

Gets a concise description of what the tool does.

InputSchema

Gets the JSON Schema defining the expected input arguments.

Name

Gets the stable, unique identifier for this tool.

Methods

InvokeAsync(string, CancellationToken)

Executes the tool with the specified JSON arguments.

Share