minor README improvents

This commit is contained in:
Christian Tzolov
2025-01-20 12:18:58 +01:00
parent 648b0ac822
commit d7952ad49e
2 changed files with 0 additions and 29 deletions

View File

@@ -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:

View File

@@ -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
<dependency>
<groupId>org.springframework.ai</groupId>
<artifactId>spring-ai-ollama-spring-boot-starter</artifactId>
</dependency>
```
## Usage Example
Here's a basic example of using the Parallelization Workflow: