Skip to content

Commit 73aaed7

Browse files
committed
Fix broken links
1 parent 71355f5 commit 73aaed7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

solutions/search/serverless-elasticsearch-get-started-semantic.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ _Semantic search_ is a type of AI-powered search that enables you to use intuiti
1212
It returns results that match the meaning of a query, as opposed to literal keyword matches.
1313
For example, if you want to search for workplace guidelines on a second income, you could search for "side hustle", which is not a term you're likely to see in a formal HR document.
1414

15-
Elastic offers an out-of-the-box Learned Sparse Encoder model ([ELSER](/explore-analyze/machine-learning/nlp/ml-nlp-elser)) that outperforms on a variety of data sets, such as financial data, weather records, and question-answer pairs.
15+
Elastic offers an out-of-the-box Learned Sparse Encoder model ([ELSER](/explore-analyze/machine-learning/nlp/ml-nlp-elser.md)) that outperforms on a variety of data sets, such as financial data, weather records, and question-answer pairs.
1616
The model is built to provide great relevance across domains, without the need for additional fine tuning.
1717
If you want to check out all the use cases and implementation paths, go to [](/solutions/search/ai-search/ai-search.md).
1818

@@ -142,7 +142,7 @@ POST /semantic-index/_search
142142
}
143143
```
144144

145-
This is a [semantic](/reference/query-languages/query-dsl/query-dsl-semantic-query.md) query that is expressed in [Query Domain Specific Language](/explore-analyze/query-filter/languages/querydsl.md) (DSL), which is the primary query language for {{es}}.
145+
This is a [semantic](elasticsearch://reference/query-languages/query-dsl/query-dsl-semantic-query.md) query that is expressed in [Query Domain Specific Language](/explore-analyze/query-filter/languages/querydsl.md) (DSL), which is the primary query language for {{es}}.
146146

147147
The query is translated automatically into a vector representation and runs against the contents of the semantic text field.
148148
The search results are sorted by a relevance score, which measures how well each document matches the query.
@@ -176,7 +176,7 @@ In this example, the document related to Rocky Mountain National park has the hi
176176
::::
177177
::::{step} Run a match query in ES|QL
178178

179-
Another way to try out semantic search is by using the [match](/query-languages/esql/functions-operators/search-functions.md#esql-match) search function in the [Elasticsearch Query Language](/explore-analyze/query-filter/languages/esql.md) (ES|QL).
179+
Another way to try out semantic search is by using the [match](elasticsearch://query-languages/esql/functions-operators/search-functions.md#esql-match) search function in the [Elasticsearch Query Language](/explore-analyze/query-filter/languages/esql.md) (ES|QL).
180180

181181
Go to **Discover** and select **Try ES|QL** from the application menu bar.
182182

@@ -195,7 +195,7 @@ FROM semantic-index METADATA _score <1>
195195
| LIMIT 1000 <5>
196196
```
197197

198-
1. The FROM source command returns a table of data. Each row in the table represents a document. The `METADATA` clause provides access to the query relevance score, which is a [metadata field](/reference/query-languages/esql/esql-metadata-fields.md).
198+
1. The FROM source command returns a table of data. Each row in the table represents a document. The `METADATA` clause provides access to the query relevance score, which is a [metadata field](elasticsearch://reference/query-languages/esql/esql-metadata-fields.md).
199199
2. A simplified syntax for the `MATCH` search function, this command performs a semantic query on the specified field.
200200
3. The KEEP processing command affects the columns and their order in the results table.
201201
4. The results are sorted in descending order based on the `_score`.

0 commit comments

Comments
 (0)