23 lines
519 B
Plaintext
23 lines
519 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.search({
|
|
index: "hugging-face-embeddings",
|
|
knn: {
|
|
field: "content_embedding",
|
|
query_vector_builder: {
|
|
text_embedding: {
|
|
model_id: "hugging_face_embeddings",
|
|
model_text: "What's margin of error?",
|
|
},
|
|
},
|
|
k: 10,
|
|
num_candidates: 100,
|
|
},
|
|
_source: ["id", "content"],
|
|
});
|
|
console.log(response);
|
|
----
|