Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.neum.ai/llms.txt

Use this file to discover all available pages before exploring further.

The QdrantSink class provides functionality for storing and querying vector data within the Qdrant vector search engine, which is known for its performance in handling large-scale vector datasets.

Properties

Required properties:
  • url: The connection URL to the Qdrant service.
  • api_key: The API key for authenticating with the Qdrant API.
  • collection_name: The name of the collection within Qdrant where the data will be stored. You can define the collection name to any string you want.
Optional properties:
from neumai.SinkConnectors import QdrantSink

# Configure the QdrantSink with the necessary connection information
qdrant_sink = QdrantSink(
    url = "your-qdrant-url",
    api_key = "your-api-key",
    collection_name = "collection-name"
)