alexklibisz / elastiknn

Elasticsearch plugin for nearest neighbor search. Store vectors and run similarity search using exact and approximate algorithms.

Home Page:https://alexklibisz.github.io/elastiknn

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

JAVA api

ssszzzlll opened this issue · comments

Background

"elastiknn_nearest_neighbors" is a query type, but I can't find it in JAVA API, Method in QueryBuilders does not include it

Deliverables

GET /my-index/_search
{
"query": {
"elastiknn_nearest_neighbors": {
"field": "my_vec",
"vec": {
"values": [0.1, 0.2, 0.3, ...],
},
"model": "exact",
"similarity": "cosine",
...
}
}
}

Related Issues

No response