Reputation: 364
I am exploring recommend points to build a recommendation system. I am looking for few examples around these endpoint and secondly when we are providing positive and negative examples vectors, how can we provide multiple positive and negative examples. I am referring following document: https://api.qdrant.tech/api-reference/search/recommend-points . Thanks in advance.
Lastly, Is there any framework which helps to build recommendation system.
Upvotes: 0
Views: 33
Reputation: 26
POST /collections/{collection_name}/points/query
{
"query": {
"recommend": {
"positive": [vector1, vector2],
"negative": [vector3, vector4],
"strategy": "average_vector"
}
}
}
Upvotes: 0