diff --git a/docs/index.md b/docs/index.md index 0a65aa4..9ace43d 100644 --- a/docs/index.md +++ b/docs/index.md @@ -8,12 +8,6 @@ nav_order: 1 A 100-line minimalist LLM framework for agents, task decomposition, RAG, etc. -
- -
- -## 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**. +
+ +
+ +## Core Abstraction + - [Node](./node.md) - [Flow](./flow.md) - [Communication](./communication.md)