File tree Expand file tree Collapse file tree 1 file changed +22
-0
lines changed
docs/reference/elasticsearch/mapping-reference Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Original file line number Diff line number Diff line change @@ -256,6 +256,28 @@ PUT test-index
256
256
}
257
257
```
258
258
259
+ ## Troubleshooting semantic_text fields [ troubleshooting-semantic-text-fields]
260
+
261
+ If you want to verify that your embeddings look correct, you can view the
262
+ inference data that ` semantic_text ` typically hides using ` fields ` .
263
+
264
+ ``` console
265
+ POST test-index/_search
266
+ {
267
+ "query": {
268
+ "match": {
269
+ "my_semantic_field": "Which country is Paris in?"
270
+ },
271
+ "fields": [
272
+ "_inference_fields"
273
+ ]
274
+ }
275
+ }
276
+ ```
277
+
278
+ This will return verbose chunked embeddings content that is used to perform
279
+ semantic search for ` semantic_text ` fields.
280
+
259
281
260
282
## Limitations [ limitations]
261
283
You can’t perform that action at this time.
0 commit comments