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;
    customPayload?: Record<string, any>[];
    url?: string;
}

Properties

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

Type declaration

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

    Generated using TypeDoc