Interface that describes an action that can be performed by the AutoGPT model in LangChain. It has a name property, which is a string that represents the name of the action, and an args property, which is an object that contains the arguments for the action.

interface AutoGPTAction {
    args: Record<string, any>;
    name: string;
}

Properties

Properties

args: Record<string, any>
name: string

Generated using TypeDoc