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: docs/explanation/concepts/react-pattern.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -38,11 +38,11 @@ This temperature modulation creates a natural rhythm that alternates between exp
38
38
39
39
## Comparing ReAct with Traditional Approaches
40
40
41
-
To understand ReAct's value, consider how it differs from the [`StressingToolUser`](https://github.com/xpressai/xaibo/blob/main/src/xaibo/primitives/modules/orchestrator/stressing_tool_user.py) pattern, which represents a more traditional approach.
41
+
To understand ReAct's value, consider how it differs from the [`SimpleToolOrchestrator`](https://github.com/xpressai/xaibo/blob/main/src/xaibo/primitives/modules/orchestrator/simple_tool_orchestrator.py) pattern, which represents a more traditional approach.
42
42
43
-
StressingToolUser follows a simpler model where the agent generates responses and uses tools in a fluid way, increasing temperature when tool execution fails to simulate cognitive stress. This reactive approach works well for straightforward tasks but lacks the systematic structure that makes ReAct powerful for complex problems.
43
+
SimpleToolOrchestrator follows a simpler model where the agent generates responses and uses tools in a fluid way, increasing temperature when tool execution fails to simulate cognitive stress. This reactive approach works well for straightforward tasks but lacks the systematic structure that makes ReAct powerful for complex problems.
44
44
45
-
ReAct is proactive rather than reactive. By forcing explicit reasoning before action, it helps prevent many errors that would trigger stress responses in simpler patterns. The structured approach also makes it easier to identify and correct problems when they occur.
45
+
ReAct is proactive rather than reactive. By forcing explicit reasoning before action, it helps prevent many errors that would trigger temperature increases in simpler patterns. The structured approach also makes it easier to identify and correct problems when they occur.
Copy file name to clipboardExpand all lines: docs/how-to/orchestrator/switch-to-react-pattern.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,14 +1,14 @@
1
1
# How to switch from other orchestrators to ReAct pattern
2
2
3
-
This guide shows you how to migrate from [`StressingToolUser`](../../reference/modules/orchestrator.md#stressingtooluser) or other orchestrators to the [`ReActOrchestrator`](../../reference/modules/orchestrator.md#reactorchestrator) for more structured reasoning and better debugging capabilities.
3
+
This guide shows you how to migrate from [`SimpleToolOrchestrator`](../../reference/modules/orchestrator.md#simpletoolorchestrator) or other orchestrators to the [`ReActOrchestrator`](../../reference/modules/orchestrator.md#reactorchestrator) for more structured reasoning and better debugging capabilities.
4
4
5
5
## Prerequisites
6
6
7
7
- Existing agent configuration with an orchestrator module
8
8
- Basic understanding of YAML configuration
9
9
- Familiarity with your current orchestrator's behavior
10
10
11
-
## Replace StressingToolUser with ReActOrchestrator
11
+
## Replace SimpleToolOrchestrator with ReActOrchestrator
12
12
13
13
Update your agent configuration to use the ReAct pattern:
Copy file name to clipboardExpand all lines: docs/tutorial/advanced-orchestration.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -682,7 +682,7 @@ You now have powerful ReAct agents that can handle complex research tasks. Consi
682
682
683
683
The ReAct pattern provides a foundation for building transparent, reliable AI agents that users can understand and trust. Your research assistant demonstrates how structured reasoning leads to better outcomes in complex problem-solving scenarios.
684
684
685
-
Ready to build more sophisticated agents? Explore the [How-to Guides](../how-to/orchestrator/index.md) for advanced ReAct techniques and customization options.
685
+
Ready to build more sophisticated agents? Explore the [How-to Guides](../how-to/index.md#orchestratorconfiguration) for advanced ReAct techniques and customization options.
0 commit comments