Regarding the java-client of suguest, the prompts need to be as follows when using:
Missing required property 'TermSuggestOption.score
Below is my code
SearchResponse<com.example.elasticsearch.generator.model.Test> search = client.search(request -> request.
index("test").
suggest(suggest -> suggest.
suggesters("title_suggest", value -> value.
completion(v -> v.
field("title")))), com.example.elasticsearch.generator.model.Test.class);
Error at compile time, how to solve this or my way is wrong