Interface for the parameters required to initialize a RemoteRetriever instance.

interface RemoteRetrieverParams {
    auth: RemoteRetrieverAuth;
    url: string;
}

Hierarchy (view full)

Implemented by

Properties

Properties

The authentication method to use, currently implemented is

  • false: no authentication
  • { bearer: string }: Bearer token authentication
url: string

The URL of the remote retriever server

Generated using TypeDoc