diff --git a/aggentic-patterns/orchestrator-workers-workflow/README.md b/aggentic-patterns/orchestrator-workers-workflow/README.md index 89f9c91..1f1b9cd 100644 --- a/aggentic-patterns/orchestrator-workers-workflow/README.md +++ b/aggentic-patterns/orchestrator-workers-workflow/README.md @@ -12,24 +12,6 @@ The Orchestrator-Workers pattern is a flexible approach for handling complex tas - **Workers**: Specialized LLMs that execute specific subtasks - **Synthesizer**: Component that combines worker outputs into a final result -## How It Works - -1. The orchestrator receives a task and analyzes it to determine necessary subtasks -2. Each subtask is delegated to worker LLMs that specialize in specific types of processing -3. The synthesizer combines the workers' outputs into a cohesive final result - -```mermaid -graph LR - In[Input] --> O[Orchestrator] - O --> W1[Worker 1] - O --> W2[Worker 2] - O --> W3[Worker 3] - W1 --> S[Synthesizer] - W2 --> S - W3 --> S - S --> Out[Output] -``` - ## When to Use This pattern is particularly effective for: diff --git a/aggentic-patterns/parallelization-worflow/README.md b/aggentic-patterns/parallelization-worflow/README.md index d0244ce..3695c9c 100644 --- a/aggentic-patterns/parallelization-worflow/README.md +++ b/aggentic-patterns/parallelization-worflow/README.md @@ -32,17 +32,6 @@ The Parallelization Workflow pattern manifests in two key variations: mvn clean install ``` -## Configuration - -The project uses Spring AI's Ollama integration. The application is configured to use the Ollama model by default through the Spring AI starter dependency: - -```xml - - org.springframework.ai - spring-ai-ollama-spring-boot-starter - -``` - ## Usage Example Here's a basic example of using the Parallelization Workflow: