Hello,
I’ve created a vector index on our collection with the following definition:
{
"fields": [
{
"numDimensions": 1536,
"path": "attributes.professional_background_embedding",
"similarity": "cosine",
"type": "vector"
},
{
"path": "attributes.create_at",
"type": "filter"
}
]
}
However, when I perform the following filter:
"filter": {
"attributes.created_at": { "$gte": dateNumber }
}
it throws the following error: Path ‘attributes.created_at’ needs to be indexed as number
What I’m missing in the definition of my index or what I’m doing wrong in my filter,
Thank you in advance