@langwatch/scenario
    Preparing search index...

    Interface ConnectedAgentFunction

    The decorated function: callable with a ConnectedAgentCall, with a name and an environment. The call signature is left open because the SDK types the call by the parameters the agent declares.

    interface ConnectedAgentFunction {
        environment: string;
        name: string;
        (...args: never[]): unknown;
    }
    Index
    environment: string
    name: string