We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc3b265 commit f3bbf44Copy full SHA for f3bbf44
1 file changed
tests/snippet_tests/test_create_text_index.rs
@@ -15,7 +15,8 @@ async fn test_create_text_index() {
15
let client = Qdrant::from_url("http://localhost:6334").build()?;
16
17
let text_index_params = TextIndexParamsBuilder::new(TokenizerType::Word)
18
- .phrase_matching(true)
+ .min_token_len(2)
19
+ .max_token_len(10)
20
.lowercase(true);
21
22
client
0 commit comments