ART Framework API Docs
    Preparing search index...

    Interface IToolExecutor

    Interface for the executable logic of a tool.

    interface IToolExecutor {
        schema: ToolSchema;
        execute(input: any, context: ExecutionContext): Promise<ToolResult>;
    }

    Implemented by

    Index

    Properties

    Methods

    Properties

    schema: ToolSchema

    The schema definition for this tool.

    Methods