Table of Contents

Class IniReadTool

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

A built-in tool for reading and parsing INI configuration data.

Get values, list sections, or parse entire INI content.

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

Examples

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

// Agent can now: parse INI content, get specific values, list sections

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