Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Qdrant vector store #356

Open
wants to merge 23 commits into
base: main
Choose a base branch
from
Open

Add Qdrant vector store #356

wants to merge 23 commits into from

Conversation

Anush008
Copy link

@Anush008 Anush008 commented Jul 4, 2024

Description

This PR adds support for Qdrant - https://qdrant.tech to be used as a vector storage.

Notes

To run Qdrant

docker run -p 6333:6333 qdrant/qdrant

To use the vector store,

store = QdrantVectorStore(collection_name="some-name")

store.connect(url="http://localhost:6333") # Accepts all the Qdrant client options

store.load_documents(...) # Auto-creates a collection

store.similarity_search_by_vector(...)

store.similarity_search_by_text(...)

@Anush008 Anush008 requested a review from a team as a code owner July 4, 2024 06:26
@jgbradley1
Copy link
Collaborator

Thank you for this contribution. Please give us just a little time to decide on an appropriate approach to take for community contributions, to make it easy without too much coupling.

@Anush008 Anush008 requested a review from a team as a code owner July 24, 2024 15:41
@Anush008
Copy link
Author

Anush008 commented Sep 9, 2024

Hey @jgbradley1. Just bumping this PR. Is there any progress on the decision?

@jgbradley1 jgbradley1 changed the title feat: Qdrant vector storage Add Qdrant vector store Oct 15, 2024
@Anush008
Copy link
Author

Hey @jgbradley1. Just bumping this PR. Please take a look when possible.
Thanks.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants