-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
community[minor]: feat: QdrantTranslator for self-query retrieval #5163
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
langchain/package.json
Outdated
@@ -1232,6 +1236,7 @@ | |||
"@langchain/scripts": "~0.0", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hey there! I noticed that this PR adds a new regular dependency, "@qdrant/js-client-rest", to the project. I've flagged this for your review to ensure it aligns with our dependency management strategy. Keep up the great work!
@@ -0,0 +1,406 @@ | |||
import { test } from "@jest/globals"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hey team, just a heads up that I've flagged a new external HTTP request being made using the QdrantClient
in this PR. It's important for maintainers to review this change to ensure it aligns with the project's requirements and best practices.
Seems fine overall - could you add some docs? |
docs: Qdrant self-query retriever
Pushed the docs to this PR as suggested. |
Thank you! |
…qdrant_translator
Thank you! We are moving all of these translators to |
Description
This PR adds a new
QdrantTranslator
class for usingSelfQueryRetriever
with the Qdrant vector store.P.S. It's 400 lines of test code, 200 lines of doc. The implementation is about 200 lines. Please do take a look.