Update README.md

This commit is contained in:
Zachary Huang 2025-01-02 22:49:32 -05:00 committed by GitHub
parent 267d8e47da
commit 0f7e2b0d66
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 2 deletions

View File

@ -31,9 +31,11 @@ Mini LLM Flow is also a *learning resource*, as current frameworks abstract too
<img src="/assets/minillmflow.jpg" width="400"/>
</div>
## Tutorial
## How Does it Work?
- Please check out documentation: https://minillmflow.github.io/miniLLMFlow/
The [100 lines](minillmflow/__init__.py) capture what we see as the core abstraction of most LLM frameworks: a **nested directed graph** that breaks down tasks into multiple (LLM) steps, with branching and recursion for agent-like decision-making. From there, its easy to layer on more complex features.
- To learn more details, please check out documentation: https://minillmflow.github.io/miniLLMFlow/
- Beginner Tutorial: [Text summarization for Paul Graham Essay + QA agent](https://colab.research.google.com/github/zachary62/miniLLMFlow/blob/main/cookbook/demo.ipynb)