Skip to content

Commit db7968e

Browse files
committed
rename Parallelization*l*Workflow to ParallelizationWorkflow
Signed-off-by: gnl00 <[email protected]>
1 parent 0b9846b commit db7968e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

agentic-patterns/parallelization-worflow/src/main/java/com/example/agentic/Application.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public CommandLineRunner commandLineRunner(ChatClient.Builder chatClientBuilder)
3838
// PARALLEL WORKFLOW
3939
// ------------------------------------------------------------
4040

41-
List<String> parallelResponse = new ParallelizationlWorkflow(chatClientBuilder.build())
41+
List<String> parallelResponse = new ParallelizationWorkflow(chatClientBuilder.build())
4242
.parallel("""
4343
Analyze how market changes will impact this stakeholder group.
4444
Provide specific impacts and recommended actions.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,11 +72,11 @@
7272
* "https://www.anthropic.com/research/building-effective-agents">Building
7373
* Effective Agents</a>
7474
*/
75-
public class ParallelizationlWorkflow {
75+
public class ParallelizationWorkflow {
7676

7777
private final ChatClient chatClient;
7878

79-
public ParallelizationlWorkflow(ChatClient chatClient) {
79+
public ParallelizationWorkflow(ChatClient chatClient) {
8080
this.chatClient = chatClient;
8181
}
8282

0 commit comments

Comments
 (0)