fix doc image

This commit is contained in:
zachary62 2024-12-27 23:37:27 +00:00
parent f8e3043299
commit 1e9c35e543
1 changed files with 6 additions and 6 deletions

View File

@ -8,12 +8,6 @@ nav_order: 1
A 100-line minimalist LLM framework for agents, task decomposition, RAG, etc.
<div align="center">
<img src="/assets/minillmflow.jpg" width="400"/>
</div>
## Core Abstraction
We model the LLM workflow as a **Nested Flow**:
- Each **Node** handles a simple LLM task.
- Nodes are chained together to form a **Flow** for more complex tasks.
@ -22,6 +16,12 @@ We model the LLM workflow as a **Nested Flow**:
- Both Nodes and Flows can be **Batched** for data-intensive tasks.
- Nodes and Flows can be **Async**.
<div align="center">
<img src="https://github.com/zachary62/miniLLMFlow/blob/main/assets/minillmflow.jpg?raw=true" width="400"/>
</div>
## Core Abstraction
- [Node](./node.md)
- [Flow](./flow.md)
- [Communication](./communication.md)