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 @@ -486,6 +486,29 @@ PUT test-index
486
486
}
487
487
```
488
488
489
+ ## Troubleshooting semantic_text fields [ troubleshooting-semantic-text-fields]
490
+
491
+ If you want to verify that your embeddings look correct, you can view the
492
+ inference data that ` semantic_text ` typically hides using ` fields ` .
493
+
494
+ ``` console
495
+ POST test-index/_search
496
+ {
497
+ "query": {
498
+ "match": {
499
+ "my_semantic_field": "Which country is Paris in?"
500
+ },
501
+ "fields": [
502
+ "_inference_fields"
503
+ ]
504
+ }
505
+ }
506
+ ```
507
+
508
+ This will return verbose chunked embeddings content that is used to perform
509
+ semantic search for ` semantic_text ` fields.
510
+
511
+
489
512
## Limitations [ limitations]
490
513
491
514
` semantic_text ` field types have the following limitations:
You can’t perform that action at this time.
0 commit comments