Table of Contents

Class CsvTool

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

A built-in tool for CSV data manipulation.

Parse, generate, query, and transform CSV data with proper escaping.

public sealed class CsvTool : ITool
Inheritance
CsvTool
Implements
Inherited Members

Examples

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

// Agent can now: parse CSV, query rows, convert to/from JSON

Constructors

CsvTool()

Initializes a new instance with default settings.

CsvTool(CsvToolOptions)

Initializes a new instance with custom options.

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.