langchain.js
    Preparing search index...

    Interface ActionRequest

    Represents an action request with a name, arguments, and description.

    interface ActionRequest {
        args: Record<string, any>;
        description?: string;
        name: string;
    }
    Index

    Properties

    args: Record<string, any>

    Key-value pairs of arguments needed for the action (e.g., {"a": 1, "b": 2}).

    description?: string

    The description of the action to be reviewed.

    name: string

    The name of the action being requested.