docs/versioned_docs/version-3.0.0-LTS/marketplace/plugins/qdrant.md
Qdrant is a vector database which can be integrated with ToolJet to enable efficient vector search at scale. It supports AI applications with advanced technology for finding similar vectors.
At its core, Qdrant operates with points, which are records consisting of a vector and an optional payload which allows you to store additional context or metadata alongside the vectors for more meaningful searches.
To connect with Qdrant, you will need Qdrant URL and an API key, which can be generated from Qdrant Cloud Dashboard.
Use this operation to retrieve metadata and configuration details about a specific collection in Qdrant.
Required Parameter
Use this operation to retrieve specific data points from a collection using their unique identifiers.
Required Parameters
[{
"id": 1,
"payload": {
"file_name": "text.jpeg",
"image_url": "https://storage.googleapis.com/demo-midjourney/.jpeg",
"name": "Catherine Hyde",
"url": "/styles/catherine-hyde"
},
"vector": [0.043383807, -0.06374442, -0.013710048, -0.0332631, 0.013115806, -0.018017521, -0.01306308, -0.030214038, 0.009868348, 0.02169504, -0.009813371, -0.033448037, 0.004893773, -0.009090395...]
}]
Use this operation to remove specific data points from a collection using their unique identifiers.
Required Parameters
Optional Parameter
Use this operation to search data points in a collection using a query, typically based on vector similarity or filtering conditions.
Required Parameters
Optional Parameters
[{
"id": 2589,
"version": 124,
"score": 0.1293197
}, {
"id": 2274,
"version": 111,
"score": 0.12669206
}, {
"id": 2612,
"version": 124,
"score": 0.12196793
}]
Use this operation to add new data points or update existing ones in a collection based on their unique identifiers.
Required Parameters