Skip to content

Commit f7f3d01

Browse files
committed
tighten wordiage
1 parent bd41f11 commit f7f3d01

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

solutions/search/esql-search-tutorial.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -206,11 +206,11 @@ This query searches the title field to match at least 2 of the 3 terms: "fluffy"
206206

207207
## Step 4: Semantic search and hybrid search
208208

209-
### Index semantic content using `semantic_text` field
209+
### Index semantic content
210210

211-
{{es}} provides a powerful [semantic search](/solutions/search/semantic-search.md) capability that allows you to search for documents based on the meaning of the text, rather than just the presence of specific keywords. This is particularly useful when you want to find documents that are conceptually similar to a given query, even if they don't contain the exact search terms.
211+
{{es}} allows you to semantically search for documents based on the meaning of the text, rather than just the presence of specific keywords. This is useful when you want to find documents that are conceptually similar to a given query, even if they don't contain the exact search terms.
212212

213-
ES|QL also supports semantic search when your mappings include fields of the [`semantic_text`](elasticsearch://reference/elasticsearch/mapping-reference/semantic-text.md) type. This example mapping update adds a new field called `semantic_description` with the type `semantic_text`:
213+
ES|QL supports semantic search when your mappings include fields of the [`semantic_text`](elasticsearch://reference/elasticsearch/mapping-reference/semantic-text.md) type. This example mapping update adds a new field called `semantic_description` with the type `semantic_text`:
214214

215215
```console
216216
PUT /cooking_blog/_mapping

0 commit comments

Comments
 (0)