Skip to content

Commit

Permalink
Update System Architecture graph to include SAAsWorkers
Browse files Browse the repository at this point in the history
  • Loading branch information
jeblister committed Jul 5, 2024
1 parent 2111f06 commit a5e8fdc
Showing 1 changed file with 14 additions and 10 deletions.
24 changes: 14 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,20 +130,24 @@ graph TD
A[User Input] --> B[main.py]
B --> C[Orchestrator]
C --> D[MainAssistant]
C --> E[SubAssistant]
C --> F[RefinerAssistant]
C --> E[SAAsWorkers]
E --> F[SubAssistant 1]
E --> G[SubAssistant 2]
E --> H[SubAssistant 3]
C --> I[RefinerAssistant]
D --> C
E --> C
F --> C
C --> G[File Operations]
G --> H[Output Directory]
C --> I[Exchange Log]
I --> H
J[config.py] --> C
K[assistants.py] --> C
I --> C
C --> J[File Operations]
J --> K[Output Directory]
C --> L[Exchange Log]
L --> K
M[config.py] --> C
N[assistants.py] --> C
O[workers.py] --> E
```

This architecture allows for a flexible and extensible system that can handle complex, multi-step tasks by leveraging the strengths of multiple AI assistants.
This architecture allows for a flexible and extensible system that can handle complex, multi-step tasks by leveraging the strengths of multiple AI assistants and parallel processing capabilities.

## Contributing

Expand Down

0 comments on commit a5e8fdc

Please sign in to comment.