From 4cb0e3f924efd87d3fa384f5db55aa37827c7c5b Mon Sep 17 00:00:00 2001 From: Your Name Date: Sat, 12 Oct 2024 09:14:17 -0400 Subject: [PATCH] [CLEANUP] --- README.md | 6 ------ 1 file changed, 6 deletions(-) diff --git a/README.md b/README.md index 4d12fb8c..069475fe 100644 --- a/README.md +++ b/README.md @@ -698,12 +698,6 @@ graph LR C --> D[Agent 4] D --> E[Max Loops] E --> F[End] - style A fill:#f9f,stroke:#333,stroke-width:4px - style B fill:#f9f,stroke:#333,stroke-width:4px - style C fill:#f9f,stroke:#333,stroke-width:4px - style D fill:#f9f,stroke:#333,stroke-width:4px - style E fill:#f9f,stroke:#333,stroke-width:4px - style F fill:#f9f,stroke:#333,stroke-width:4px ``` In this example, each `Agent` represents a task that is executed sequentially. The output of each agent is passed to the next agent in the sequence until the maximum number of loops is reached. This workflow is particularly useful for tasks that require a series of steps to be executed in a specific order, such as data processing pipelines or complex calculations that rely on the output of previous steps.