ailoy-node
    Preparing search index...

    Interface ToolDescription

    interface ToolDescription {
        description: string;
        name: string;
        parameters: {
            properties: {
                [key: string]: {
                    description?: string;
                    type: "string" | "number" | "boolean" | "object" | "array" | "null";
                    [key: string]: any;
                };
            };
            required?: string[];
            type: "object";
        };
        return?: {
            description?: string;
            type: "string"
            | "number"
            | "boolean"
            | "object"
            | "array"
            | "null";
            [key: string]: any;
        };
    }
    Index

    Properties

    description: string
    name: string
    parameters: {
        properties: {
            [key: string]: {
                description?: string;
                type: "string" | "number" | "boolean" | "object" | "array" | "null";
                [key: string]: any;
            };
        };
        required?: string[];
        type: "object";
    }
    return?: {
        description?: string;
        type: "string" | "number" | "boolean" | "object" | "array" | "null";
        [key: string]: any;
    }