Interface ChatGPTPluginRetrieverParams

Interface for the parameters required to initialize a RemoteRetriever instance.

Hierarchy

Implemented by

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

callbacks?: Callbacks

The filter to use when querying the ChatGPTRetrievalPlugin server

maxConcurrency?: number

The maximum number of concurrent calls that can be made. Defaults to Infinity, which means no limit.

maxRetries?: number

The maximum number of retries that can be made for a single call, with an exponential backoff between each attempt. Defaults to 6.

metadata?: Record<string, unknown>
onFailedAttempt?: FailedAttemptHandler

Custom handler to handle failed attempts. Takes the originally thrown error object as input, and should itself throw an error if the input error is not retryable.

tags?: string[]
topK?: number

The number of results to request from the ChatGPTRetrievalPlugin server

verbose?: boolean

Generated using TypeDoc