Table of Contents

Class UrlEncodeTool

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

A built-in tool for URL encoding and decoding.

Encode and decode full URLs or individual components.

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

Examples

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

// Agent can now: URL-encode/decode strings and components

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