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
@@ -126,14 +128,25 @@ Refer to [semantic search with semantic_text](/solutions/search/semantic-search/
126
128
127
129
[Hybrid search](/solutions/search/hybrid-search.md) combines lexical and semantic search with custom weights to leverage both exact keyword matching and semantic understanding.
128
130
129
-
#### `FORK` and `FUSE` commands
131
+
#### `FORK` and `FUSE`
130
132
131
133
The [`FORK`](elasticsearch://reference/query-languages/esql/commands/fork.md) and [`FUSE`](elasticsearch://reference/query-languages/esql/commands/fuse.md) commands work together to enable hybrid search in {{esql}}.
132
134
133
135
`FORK` creates multiple execution branches that operate on the same input data. `FUSE` then combines and scores the results from these branches. Together, these commands allow you to execute different search strategies (such as lexical and semantic searches) in parallel and merge their results with proper relevance scoring.
134
136
135
137
Refer to [hybrid search with semantic_text](hybrid-semantic-text.md) for an example or follow the [tutorial](elasticsearch://reference/query-languages/esql/esql-search-tutorial.md#step-5-semantic-search-and-hybrid-search).
136
138
139
+
### Text generation with `COMPLETION`
140
+
141
+
The [`COMPLETION` command](elasticsearch://reference/query-languages/esql/commands/completion.md) sends prompts to a Large Language Model (LLM) for text generation tasks.
142
+
143
+
Use `COMPLETION` for question answering, summarization, translation, or other AI-powered text generation.
144
+
145
+
146
+
### Semantic reranking with `RERANK`
147
+
148
+
Use the [`RERANK` command](elasticsearch://reference/query-languages/esql/commands/rerank.md) to re-score search results using inference models for improved relevance.
149
+
137
150
## Next steps [esql-for-search-next-steps]
138
151
139
152
### Tutorials and how-to guides [esql-for-search-tutorials]
0 commit comments