Files
spring-ai/vector-stores/spring-ai-qdrant-store
Ilayaperumal Gopinathan 48fb663c31 Fix qdrant vector store value factory (#3173)
- Fix the QdrantValueFactory to handle "java.util.List" type
 - Update the integration test to use List type values

Resolves #3164

Signed-off-by: Ilayaperumal Gopinathan <ilayaperumal.gopinathan@broadcom.com>
2025-05-15 11:26:23 -04:00
..
2025-05-13 19:06:16 +01:00
2024-10-21 10:24:28 +02:00

Qdrant Vector Store

Reference Documentation

Run locally

Accessing the Web UI

First, run the Docker container:

docker run -p 6333:6333 -p 6334:6334 \
    -v $(pwd)/qdrant_storage:/qdrant/storage:z \
    qdrant/qdrant

Security: Adding API Key to Qdrant Container

To enhance security, you can add an API key to your Qdrant container using the environment variable.

-e QDRANT__SERVICE__API_KEY=<your_generated_api_key_here>

This ensures that only authorized users with the correct API key can access the Qdrant service.

The GUI is available at http://localhost:6333/dashboard

Qdrant references