weaviate-client
    Preparing search index...

    Type Alias ConnectToCustomOptions

    type ConnectToCustomOptions = {
        authCredentials?: AuthCredentials;
        grpcHost?: string;
        grpcPort?: number;
        grpcSecure?: boolean;
        headers?: Record<string, string>;
        httpHost?: string;
        httpPath?: string;
        httpPort?: number;
        httpSecure?: boolean;
        proxies?: ProxiesParams;
        skipInitChecks?: boolean;
        timeout?: TimeoutParams;
    }
    Index

    Properties

    authCredentials?: AuthCredentials

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

    grpcHost?: string

    The hostname of the HTTP/2 server

    grpcPort?: number

    The port of the HTTP/2 server

    grpcSecure?: boolean

    Whether to use a secure connection to the HTTP/2 server

    headers?: Record<string, string>

    Additional headers to include in the request

    httpHost?: string

    The hostname of the HTTP/1.1 server

    httpPath?: string

    An additional path of the HTTP/1.1 server, e.g. http://proxy.net/weaviate

    httpPort?: number

    The port of the HTTP/1.1 server

    httpSecure?: boolean

    Whether to use a secure connection to the HTTP/1.1 server

    proxies?: ProxiesParams

    The proxy configuration to use

    skipInitChecks?: boolean

    Whether to skip the initialization checks

    timeout?: TimeoutParams

    The timeouts to use when making requests to Weaviate