@adcp/client API Reference - v3.3.3
    Preparing search index...

    Variable testAgentNoAuthA2AConst

    testAgentNoAuthA2A: AgentClient = ...

    Pre-configured test agent client WITHOUT authentication (A2A protocol). Demonstrates what happens when calling authenticated endpoints without auth. Useful for testing error handling and showing auth vs no-auth differences.

    import { testAgentNoAuthA2A } from '@adcp/client/testing';

    // Compare authenticated vs unauthenticated
    import { testAgentA2A } from '@adcp/client/testing';

    // This works (has auth)
    const authResult = await testAgentA2A.getProducts({ brief: 'Test' });

    // This fails (no auth)
    const noAuthResult = await testAgentNoAuthA2A.getProducts({ brief: 'Test' });

    This agent intentionally does NOT include authentication. Use it to demonstrate authentication requirements and error handling.