You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I put data in the db, I store embeddings and metadata like filename, ext, size and modification date.
In some cases, I want old files or new files close to a query embedding.
When I search documents with python sdk, I use embeddings and some other criteria like the modification date.
Today the filter support only meta_contains.
It could be nice to support comparison like meta["date"] <= ... or meta["date"]> ...
For now, I use this workaround :
generate a big meta_contains dict
The text was updated successfully, but these errors were encountered:
Hello,
When I put data in the db, I store embeddings and metadata like filename, ext, size and modification date.
In some cases, I want old files or new files close to a query embedding.
When I search documents with python sdk, I use embeddings and some other criteria like the modification date.
Today the filter support only meta_contains.
It could be nice to support comparison like meta["date"] <= ... or meta["date"]> ...
For now, I use this workaround :
generate a big meta_contains dict
The text was updated successfully, but these errors were encountered: