Skip to content

Commit d219b5c

Browse files
committed
Verbiage chagnes
1 parent 349ef6e commit d219b5c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

learn-pr/wwl-data-ai/multistage-reasoning-azure-databricks/includes/02-multi-stage-reasoning-concepts.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Multi-stage reasoning systems are designed to solve complex problems by breaking them down into a series of manageable steps or stages. When you use such a system, your AI application generates more accurate responses by handling each part of a complex task systematically rather than trying to solve everything at once.
1+
Multi-stage reasoning systems are designed to solve complex problems by breaking them down into a series of manageable steps or stages. These systems generate more accurate responses than single-stage approaches.
22

33
## Understand the need for multi-stage reasoning
44

@@ -10,7 +10,7 @@ Let's explore an example to illustrate the need for multi-stage reasoning system
1010
1. You send the prompt to an LLM.
1111
1. The response is the overall sentiment.
1212

13-
When you send this complex prompt to a Large Language Model (LLM), the output can be inaccurate because the objective contains multiple intents: translation, analysis, and sentiment classification. When you have an objective with multiple intents, the LLM can get overwhelmed by the complexity and produce unreliable results.
13+
When you send this complex prompt to a Large Language Model (LLM), the output can be less accurate than breaking down the task because the objective contains multiple intents: translation, analysis, and sentiment classification. When you have an objective with multiple intents, the LLM can get overwhelmed by the complexity and produce unreliable results.
1414

1515
Instead, you can break down the problem and send a prompt to an LLM for each specific intent:
1616

@@ -40,7 +40,7 @@ When you want to build a multi-stage reasoning system, you need to:
4040

4141
The tools you need depend on the tasks you need to perform. For example, you can retrieve customer data from a SQL database to provide necessary context, search a vector store to retrieve context based on semantic similarity, or use a fine-tuned LLM to generate output in a specific tone or format.
4242

43-
By breaking up your problem and designing a multi-stage reasoning system, you create AI solutions that handle more manageable tasks. As you design individual tasks and chain them together, you create a more flexible design. Each task, or stage, can be optimized individually, and you can reuse tasks across systems to speed up development of new solutions.
43+
By breaking up your problem and designing a multi-stage reasoning system,ou create AI solutions that handle more manageable tasks than single-stage approaches. As you design individual tasks and chain them together, you create a more flexible design than in large single-stage systems. Each task, or stage, can be optimized individually, and you can reuse tasks across systems to speed up development of new solutions.
4444

4545
## Choose a library
4646

0 commit comments

Comments
 (0)