From 1e9c35e54332d620312f3a04c1ed6cf60843d2ea Mon Sep 17 00:00:00 2001 From: zachary62 Date: Fri, 27 Dec 2024 23:37:27 +0000 Subject: [PATCH] fix doc image --- docs/index.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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)