Skip to content

Commit 742694f

Browse files
committed
simplifications
1 parent cb735fd commit 742694f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/search/search-agentic-retrieval-concept.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,10 @@ Query expansion and parallel execution, plus the retrieval response, are the key
4545
Agentic retrieval adds latency to query processing, but it makes up for it by adding these capabilities:
4646

4747
+ Reads in chat history as an input to the retrieval pipeline.
48-
+ Rewrites an original query into multiple subqueries using synonym maps (optional) and LLM-generated paraphrasing.
4948
+ Deconstructs a complex query that contains multiple "asks" into component parts. For example: "find me a hotel near the beach, with airport transportation, and that's within walking distance of vegetarian restaurants."
49+
+ Rewrites an original query into multiple subqueries using synonym maps (optional) and LLM-generated paraphrasing.
5050
+ Corrects spelling mistakes.
51-
+ Executes all subqueries simultaneously.
51+
+ Executes all subqueries simultaneously.
5252
+ Outputs a unified result as a single string. Alternatively, you can extract parts of the response for your solution. Metadata about query execution and reference data is included in the response.
5353

5454
Agentic retrieval invokes the entire query processing pipeline multiple times for each subquery, but it does so in parallel, preserving the efficiency and performance necessary for a reasonable user experience.

0 commit comments

Comments
 (0)