feat: Qdrant vector database support#506
Conversation
|
Hey @BRama10 |
|
Can you update the test workflows to add relevant tests for the new functionality you created, and make sure the newly added functions pass all tests? Thanks. |
|
Hey @evison. Done. |
Signed-off-by: Anush008 <anushshetty90@gmail.com>
| client = QdrantClient(host="localhost", port=6333) | ||
| client.get_collections() | ||
| except Exception as e: | ||
| raise unittest.SkipTest(f"Qdrant is not available: {e}") |
There was a problem hiding this comment.
The tests are skipped if Qdrant is not running.
docker run -p 6333:6333 qdrant/qdrant
You can view the data at http://localhost:6333/dashboard
|
Hey @evison. Just bumping this PR. |
Co-authored-by: Anush <anushshetty90@gmail.com>
|
Code is almost ready to merge, please fix the following errors in the ollama test. Once these errors are fixed the code will be ready to merge. |
Description
This PR adds support for using Qdrant as the vector database with AIOS.
Users can configure the vector DB of their choice. Defaults to Chroma as before.
I've also applied some unrelated lint fixes to pass the pre-commit checks.
You can run the integration tests with