Milvus search with ids #4666
Unanswered
ufuk23
asked this question in
Q&A and General discussion
Replies: 1 comment 3 replies
-
Can you explain why there is a need for this? What does it look like in an actual business scenario? |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Is it possible to search with given ids as well as vectors using rest api?
For example:
POST
http://localhost:19121/collections/art/vectors
{
"search": {
"topk": 3,
"vectors": [[0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.01,0,0,0,0,0,0,0.2,0,0,0,0,0,0,0,0.3,0,0,0,0,0,0,0,0,0,0,0]],
"params": {"nprobe": 16},
"ids":["5", "23", "123", "1234", "334"]
}
}
Beta Was this translation helpful? Give feedback.
All reactions