Qdrant
Estimated reading: 1 minute
The Qdrant component reads and writes to Qdrant vector stores using an instance of QdrantVectorStore.
For more information, see the following:
1. Hidden parameters
2. Search results output
3. Vector store instances
4. Qdrant documentation
Qdrant parameters
| Name | Type | Description |
|---|---|---|
| collection_name | String | Input parameter. The name of the Qdrant collection. |
| host | String | Input parameter. The Qdrant server host. |
| port | Integer | Input parameter. The Qdrant server port. |
| grpc_port | Integer | Input parameter. The Qdrant gRPC port. |
| api_key | SecretString | Input parameter. The API key for Qdrant. |
| prefix | String | Input parameter. The prefix for Qdrant. |
| timeout | Integer | Input parameter. The timeout for Qdrant operations. |
| path | String | Input parameter. The path for Qdrant. |
| url | String | Input parameter. The URL for Qdrant. |
| distance_func | String | Input parameter. The distance function for vector similarity. |
| content_payload_key | String | Input parameter. The content payload key. |
| metadata_payload_key | String | Input parameter. The metadata payload key. |
| search_query | String | Input parameter. The query for similarity search. |
| ingest_data | Data | Input parameter. The data to be ingested into the vector store. |
| embedding | Embeddings | Input parameter. The embedding function to use. |
| number_of_results | Integer | Input parameter. The number of results to return in search. |