Hello,
I want to create Atlas Search Index with filter option, is it possible to do it? For example, I have a collection with metadata field and I want to do search on it only when it’s equal to “1234” for other documents it shouldn’t make any research. I will implement this for langchain similarity search.
{
name: index,
definition: {
"mappings": {
"fields": {
"embedding": [
{
"dimensions": 1536,
"similarity": "euclidean",
"type": "knnVector"
}
]
}
}
}
}