File tree Expand file tree Collapse file tree 1 file changed +23
-0
lines changed
docs/reference/elasticsearch/mapping-reference Expand file tree Collapse file tree 1 file changed +23
-0
lines changed Original file line number Diff line number Diff line change @@ -445,6 +445,29 @@ PUT test-index
445
445
}
446
446
```
447
447
448
+ ## Troubleshooting semantic_text fields [ troubleshooting-semantic-text-fields]
449
+
450
+ If you want to verify that your embeddings look correct, you can view the
451
+ inference data that ` semantic_text ` typically hides using ` fields ` .
452
+
453
+ ``` console
454
+ POST test-index/_search
455
+ {
456
+ "query": {
457
+ "match": {
458
+ "my_semantic_field": "Which country is Paris in?"
459
+ },
460
+ "fields": [
461
+ "_inference_fields"
462
+ ]
463
+ }
464
+ }
465
+ ```
466
+
467
+ This will return verbose chunked embeddings content that is used to perform
468
+ semantic search for ` semantic_text ` fields.
469
+
470
+
448
471
## Limitations [ limitations]
449
472
450
473
` semantic_text ` field types have the following limitations:
You can’t perform that action at this time.
0 commit comments