15 lines
345 B
Plaintext
15 lines
345 B
Plaintext
// This file is autogenerated, DO NOT EDIT
|
|
// Use `node scripts/generate-docs-examples.js` to generate the docs examples
|
|
|
|
[source, js]
|
|
----
|
|
const response = await client.indices.analyze({
|
|
tokenizer: {
|
|
type: "char_group",
|
|
tokenize_on_chars: ["whitespace", "-", "\n"],
|
|
},
|
|
text: "The QUICK brown-fox",
|
|
});
|
|
console.log(response);
|
|
----
|