Hello everyone! Is it possible to create with sear...
# community-help
l
Hello everyone! Is it possible to create with search parameters a behavior analogous to exhaustive_search, but without having to return such a large number of documents? I want to consider all variations of prefixes and typo corrections of the words, but I don't need it to always necessarily return 10,000 documents, but whatever is found of all variations and prefixes
j
I want to consider all variations of prefixes and typo corrections of the words
That’s what
exhaustive_search: true
does… and that could lead to a large number of results
always necessarily return 10,000 documents
I assume you mean the 10K max_candidates value. It’s not the number of results, but the number of prefixes to consider internally. Only the matching prefixes will be returned in the results
l
soryy, it's true. what I was doing was not correct