Hi there,
I would like to query a collection based on two criteria:
- nearText (already existing)
- most recent (based on a decay factor)
I would like to have weighting scores for each so it becomes ((vector search * alphaA) + (recency * alphaB)) - is this possible to do? Do we have any function that enables most recent search as well as using both searches at the same time to get a final score for each object within the collection?
Cheers!