Table of Contents

Class CsvParseTool

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

A built-in tool for parsing CSV data and inspecting its structure.

Returns parsed rows, column metadata, or summary information about CSV content.

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

Examples

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

// Agent can now: parse CSV content, get row/column info

Constructors

CsvParseTool()

Initializes a new instance with default settings.

CsvParseTool(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.

Share