langchain.js
    Preparing search index...

    Install and import from @langchain/qdrant instead.

    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;
    }
    Index

    Properties

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