Hi Folks,
I perform hybrid search by providing both the knn and a query, like the example in the Elasticsearch Guide:
POST image-index/_search
{
"query": {
"match": {
"title": {
"query": "mountain lake",
"boost": 0.9
}
}
},
"knn": {
"field": "image-vector",
"query_vector": [54, 10, -2],
"k": 5,
"num_candidates": 50,
"boost": 0.1
},
"size": 10
}
Is there any way (other than running the search with explain: true) to distinguish the results according to which search (query, knn or both) found it?
Thanks&Regards,