Hybrid Vector and Traditional Search #619
KSemenenko
started this conversation in
2. Feature requests
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Context / Scenario
I want a new feature that lets us use date filters for searching documents. For example, if I search for "documents before 2021 with information on LLM," the system should first filter out documents from before 2021, then search these documents for 'LLM'. This mix of vector and regular search would help us find exactly what we need much faster.
The problem
Right now, our system only lets us filter documents by tags. We can't search documents by date for example, which makes it hard to find older documents quickly.
Proposed solution
Document Model Update:
{ "documentId": "doc123", "content": "Here's the content", "publishDate": "2020-12-01" }
Data Indexing:
Query Processing:
Search Execution:
Result Handling:
Importance
would be great to have
Beta Was this translation helpful? Give feedback.
All reactions