weaviate-client
    Preparing search index...

    Type Alias ConnectToLocalOptions

    type ConnectToLocalOptions = {
        authCredentials?: AuthCredentials;
        grpcPort?: number;
        headers?: Record<string, string>;
        host?: string;
        port?: number;
        skipInitChecks?: boolean;
        timeout?: TimeoutParams;
    }
    Index

    Properties

    authCredentials?: AuthCredentials

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

    grpcPort?: number

    The port of the HTTP/2 server

    headers?: Record<string, string>

    Additional headers to include in the request

    host?: string

    The host where Weaviate is served. Assumes that the HTTP/1.1 and HTTP/2 servers are served on the same host

    port?: number

    The port of the HTTP/1.1 server

    skipInitChecks?: boolean

    Whether to skip the initialization checks

    timeout?: TimeoutParams

    The timeouts to use when making requests to Weaviate