Table of Contents

Class AsciiArtGenerateTool

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

A built-in tool for ASCII art generation.

Generate text banners, boxes, tables, lines, progress bars, trees, and list available fonts.

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

Examples

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

// Agent can now: create ASCII art banners, draw boxes, render tables

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