Description
Is your feature request related to a problem? Please describe.
Use-case: Get the top K recent documents relevant to a query. Recency is a factor that contributes to the overall document score.
Describe the solution you'd like
Ideally, a way to specify how the resulting document score is modified based on a set of factors, some of which may depend on the document's fields. For example, a way to adjust the final document score based on the created_at
timestamp document field.
Describe alternatives you've considered
One solution is to query many documents from the DB and then manually sort them by the weighted score. I don't know if any Qdrant APIs can do this automatically. If there are, could you let me know?
Additional context
A similar functionality from ElasticSearch would satisfy the use case.