You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: solutions/search/serverless-elasticsearch-get-started-semantic.md
+6-4Lines changed: 6 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,14 +1,15 @@
1
1
---
2
2
navigation_title: Semantic search
3
+
description: An introduction to semantic search in Elasticsearch.
3
4
applies_to:
4
5
serverless:
5
6
products:
6
7
- id: cloud-serverless
7
8
---
8
-
# Build an AI-powered search experience in {{es-serverless}}
9
+
# Get started with semantic search in {{es-serverless}}
9
10
10
11
<!--
11
-
As you ramp up on Elastic, you'll use the Elasticsearch Relevance Engine™ (ESRE), designed to power AI search applications. With ESRE, you can take advantage of a suite of developer tools including Elastic's textual search, vector database, and our proprietary transformer model for semantic search.
12
+
As you ramp up on Elastic, you'll use the Elasticsearch Relevance Engine (ESRE), designed to power AI search applications. With ESRE, you can take advantage of a suite of developer tools including Elastic's textual search, vector database, and our proprietary transformer model for semantic search.
12
13
-->
13
14
14
15
Elastic offers a variety of search techniques, starting with BM25, the industry standard for textual search.
@@ -42,7 +43,8 @@ To try it out, [create an {{es-serverless}} project](/solutions/search/serverles
42
43
43
44
There are some simple data sets that you can use for learning purposes.
44
45
For example, if you follow the [guided index flow](/solutions/search/serverless-elasticsearch-get-started.md#elasticsearch-follow-guided-index-flow), you can choose the semantic search option.
45
-
Follow the instructions to install an {{es}} client and define field mappings or try out the API requests in the [Console](/explore-analyze/query-filter/tools/console.md):
46
+
Follow the instructions to install an {{es}} client and define field mappings.
47
+
Alternatively, try out the API requests in the [Console](/explore-analyze/query-filter/tools/console.md):
46
48
47
49
```console
48
50
PUT /my-index/_mapping
@@ -55,7 +57,7 @@ PUT /my-index/_mapping
55
57
}
56
58
```
57
59
58
-
By default, thee[semantic_text](elasticsearch://reference/elasticsearch/mapping-reference/semantic-text.md) field type provides vector search capabilities using the ELSER model.
60
+
By default, the[semantic_text](elasticsearch://reference/elasticsearch/mapping-reference/semantic-text.md) field type provides vector search capabilities using the ELSER model.
59
61
% TBD: Confirm "Elser model" vs ".elser-2-elasticsearch, a preconfigured endpoint for the elasticsearch service".
60
62
61
63
Next, use the Elasticsearch bulk API to ingest an array of documents into the index.
0 commit comments