⚠️ Deprecated ⚠️

Install and import from @langchain/qdrant instead.

This feature is deprecated and will be removed in the future.

It is not recommended for use.

Interface for the arguments that can be passed to the QdrantVectorStore constructor. It includes options for specifying a QdrantClient instance, the URL and API key for a Qdrant database, and the name and configuration for a collection.

interface QdrantLibArgs {
    apiKey?: string;
    client?: QdrantClient;
    collectionConfig?: {};
    collectionName?: string;
    contentPayloadKey?: string;
    customPayload?: Record<string, any>[];
    metadataPayloadKey?: string;
    url?: string;
}

Properties

apiKey?: string
client?: QdrantClient
collectionConfig?: {}

Type declaration

    collectionName?: string
    contentPayloadKey?: string
    customPayload?: Record<string, any>[]
    metadataPayloadKey?: string
    url?: string

    Generated using TypeDoc