parent page

This commit is contained in:
zachary62
2024-12-28 19:12:20 +00:00
parent 21dd0ac81b
commit d2017a05e2
4 changed files with 15 additions and 16 deletions
+2 -10
View File
@@ -1,14 +1,6 @@
--- ---
layout: default layout: default
title: "Core Abstraction" title: "Core Abstraction"
nav_order: 3 nav_order: 2
has_children: true has_children: true
--- ---
## Core Abstraction
- [Node](./node.md)
- [Flow](./flow.md)
- [Communication](./communication.md)
- [Batch](./batch.md)
- [Async](./async.md)
+5 -5
View File
@@ -20,11 +20,6 @@ We model the LLM workflow as a **Nested Flow**:
<img src="https://github.com/zachary62/miniLLMFlow/blob/main/assets/minillmflow.jpg?raw=true" width="400"/> <img src="https://github.com/zachary62/miniLLMFlow/blob/main/assets/minillmflow.jpg?raw=true" width="400"/>
</div> </div>
## Preparation
- [LLM Integration](./llm.md)
- [Tools](./tool.md)
## Core Abstraction ## Core Abstraction
- [Node](./node.md) - [Node](./node.md)
@@ -33,6 +28,11 @@ We model the LLM workflow as a **Nested Flow**:
- [Batch](./batch.md) - [Batch](./batch.md)
- [Async](./async.md) - [Async](./async.md)
## Preparation
- [LLM Integration](./llm.md)
- Tools
## Paradigm Implementation ## Paradigm Implementation
- Task Decomposition - Task Decomposition
+2 -1
View File
@@ -1,7 +1,8 @@
--- ---
layout: default layout: default
title: "LLM Integration" title: "LLM Integration"
nav_order: 2 parent: "Preparation"
nav_order: 1
--- ---
# LLM Wrappers # LLM Wrappers
+6
View File
@@ -0,0 +1,6 @@
---
layout: default
title: "Preparation"
nav_order: 3
has_children: true
---