Skip to content

Commit a90111b

Browse files
committed
Fixes per review, formatting
1 parent cb9b7a0 commit a90111b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

solutions/search/hybrid-semantic-text.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ After reindexing the data into the `semantic-embeddings` index, you can perform
110110
:::{tab-item} Retrievers
111111
:sync: retrievers
112112

113-
This example uses retrievers with [reciprocal rank fusion (RRF)](elasticsearch://reference/elasticsearch/rest-apis/reciprocal-rank-fusion.md). RRF is a technique that merges the rankings from both semantic and lexical queries, giving more weight to results that rank high in either search. This ensures that the final results are balanced and relevant.
113+
This example uses [retrievers syntax](retrievers-overview.md) with [reciprocal rank fusion (RRF)](elasticsearch://reference/elasticsearch/rest-apis/reciprocal-rank-fusion.md). RRF is a technique that merges the rankings from both semantic and lexical queries, giving more weight to results that rank high in either search. This ensures that the final results are balanced and relevant.
114114

115115
```console
116116
GET semantic-embeddings/_search
@@ -217,7 +217,7 @@ After performing the hybrid search, the query will return the top 10 documents t
217217

218218
The ES|QL approach uses a combination of the match operator `:` and the match function `match()` to perform hybrid search.
219219

220-
```esql
220+
```console
221221
POST /_query?format=txt
222222
{
223223
"query": """

solutions/search/semantic-search/semantic-search-semantic-text.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ GET semantic-embeddings/_search
133133
The ES|QL approach uses the [match (`:`) operator](elasticsearch://reference/query-languages/esql/esql-functions-operators.md#esql-search-operators), which automatically detects the `semantic_text` field and performs the search on it. The query uses `METADATA _score` to sort by `_score` in descending order.
134134

135135

136-
```esql
136+
```console
137137
POST /_query?format=txt
138138
{
139139
"query": """

0 commit comments

Comments
 (0)