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/ai-search/ai-search.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# AI-powered search
2
2
3
-
Sometimes [full-text search](full-text.md) alone isn't enough. Machine learning techniques are powerful tools for helping users find data based on intent and contextual meaning. Natural language understanding and information retrieval go hand in hand in modern search systems.
3
+
Sometimes [full-text search](../full-text.md) alone isn't enough. Machine learning techniques are powerful tools for helping users find data based on intent and contextual meaning. Natural language understanding and information retrieval go hand in hand in modern search systems.
4
4
5
5
Depending on your team's technical expertise and requirements, you can choose from two main paths to implement AI-powered search in Elasticsearch. You can use managed workflows that abstract away much of the complexity, or you can work directly with the underlying vector search technology.
6
6
@@ -21,18 +21,18 @@ AI-powered search enables a wide range of applications:
21
21
AI-powered search in Elasticsearch is built on vector search technology, which uses machine learning models to capture meaning in content. These vector representations come in two forms: dense vectors that capture overall meaning, and sparse vectors that focus on key terms and their relationships.
22
22
23
23
:::{tip}
24
-
New to AI-powered search? Start with the `semantic_text`field type, which provides an easy-to-use abstraction over these capabilities with sensible defaults. [Learn more about semantic_text](semantic-search/semantic-search-semantic-text.md).
24
+
New to AI-powered search? Start with the `semantic_text`workflow, which provides an easy-to-use abstraction over these capabilities with sensible defaults. Learn more [in this hands-on tutorial](../semantic-search/semantic-search-semantic-text.md).
25
25
:::
26
26
27
27
## Implementation paths
28
28
29
29
Elasticsearch uses vector search as the foundation for AI-powered search capabilities. You can work with this technology in two ways:
30
30
31
-
1.[**Semantic search**](semantic-search.md) provides managed workflows that use vector search under the hood:
31
+
1.[**Semantic search**](../semantic-search.md) provides managed workflows that use vector search under the hood:
32
32
- The `semantic_text` field type offers the simplest path with automatic embedding generation and model management
33
33
- Additional implementation options available for more complex needs
34
34
35
-
2.[**Vector search**](vector.md) gives you direct access to the underlying technology:
35
+
2.[**Vector search**](../vector.md) gives you direct access to the underlying technology:
36
36
- Manual configuration of dense or sparse vectors
37
37
- Flexibility to bring your own embeddings
38
38
- Direct implementation of vector similarity matching
0 commit comments