Interface ActionExample

Example of an action with input and output

interface ActionExample {
    explanation: string;
    input: Record<string, any>;
    output: Record<string, any>;
}

Properties

explanation: string
input: Record<string, any>
output: Record<string, any>