@hbbio/nanoagent
    Preparing search index...

    Type Alias RegisteredTool<In, Out, Memory>

    Runtime structure combining a Tool description with its handler.

    type RegisteredTool<In, Out, Memory extends ChatMemory> = {
        handler: ToolHandler<In, Out, Memory>;
        tool: Tool;
        type: ToolType;
    }

    Type Parameters

    Index

    Properties

    Properties

    handler: ToolHandler<In, Out, Memory>
    tool: Tool
    type: ToolType