Table of Contents

Class PdfUnlockTool

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

A built-in tool for removing password protection from PDF documents.

Enables agents to unlock a password-protected PDF by providing the known password, producing an unprotected copy that can be freely opened.

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

Examples

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

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