File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
agentic-patterns/parallelization-worflow/src/main/java/com/example/agentic Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ public CommandLineRunner commandLineRunner(ChatClient.Builder chatClientBuilder)
38
38
// PARALLEL WORKFLOW
39
39
// ------------------------------------------------------------
40
40
41
- List <String > parallelResponse = new ParallelizationlWorkflow (chatClientBuilder .build ())
41
+ List <String > parallelResponse = new ParallelizationWorkflow (chatClientBuilder .build ())
42
42
.parallel ("""
43
43
Analyze how market changes will impact this stakeholder group.
44
44
Provide specific impacts and recommended actions.
Original file line number Diff line number Diff line change 72
72
* "https://www.anthropic.com/research/building-effective-agents">Building
73
73
* Effective Agents</a>
74
74
*/
75
- public class ParallelizationlWorkflow {
75
+ public class ParallelizationWorkflow {
76
76
77
77
private final ChatClient chatClient ;
78
78
79
- public ParallelizationlWorkflow (ChatClient chatClient ) {
79
+ public ParallelizationWorkflow (ChatClient chatClient ) {
80
80
this .chatClient = chatClient ;
81
81
}
82
82
You can’t perform that action at this time.
0 commit comments