Type alias ConnectToWeaviateCloudOptions

ConnectToWeaviateCloudOptions: {
    authCredentials?: AuthCredentials;
    headers?: Record<string, string>;
    skipInitChecks?: boolean;
    timeout?: TimeoutParams;
}

The options available to the weaviate.connectToWeaviateCloud method.

Type declaration

  • Optional authCredentials?: AuthCredentials

    The authentication credentials to use when connecting to Weaviate, e.g. API key

  • Optional headers?: Record<string, string>

    Additional headers to include in the request

  • Optional skipInitChecks?: boolean

    Whether to skip the initialization checks

  • Optional timeout?: TimeoutParams

    The timeouts to use when making requests to Weaviate