I have a data like:
{
_id: Unique Id,
files:[
{
fileId: unique id,
memoryVectors: [
{
embeddings: []//vector data
}
]
}
]
}
I want to implement a vector search on embeddings so only the matched files will got filtered out from files array.
I’ve gone through the documentation and it only work for the records in the mongodb but not for the particular data array.
If anyone can help me in this, It would be highly appreciated.