Agent Maturity Compass API - v1.2.0
    Preparing search index...

    Interface AMCClientConfig

    Configuration for the AMC Bridge SDK client.

    interface AMCClientConfig {
        bridgeUrl?: string;
        fetchImpl?: {
            (input: URL | RequestInfo, init?: RequestInit): Promise<Response>;
            (input: string | URL | Request, init?: RequestInit): Promise<Response>;
        };
        token?: string;
        workspaceId?: string;
    }
    Index
    bridgeUrl?: string

    Full AMC Bridge base URL, for example http://127.0.0.1:3212. Falls back to AMC_BRIDGE_URL, then default localhost bridge.

    fetchImpl?: {
        (input: URL | RequestInfo, init?: RequestInit): Promise<Response>;
        (input: string | URL | Request, init?: RequestInit): Promise<Response>;
    }

    Type Declaration

      • (input: URL | RequestInfo, init?: RequestInit): Promise<Response>
      • Parameters

        • input: URL | RequestInfo
        • Optionalinit: RequestInit

        Returns Promise<Response>

      • (input: string | URL | Request, init?: RequestInit): Promise<Response>
      • Parameters

        • input: string | URL | Request
        • Optionalinit: RequestInit

        Returns Promise<Response>

    token?: string

    Bridge bearer token. Falls back to AMC_TOKEN.

    workspaceId?: string