From 1d6f7a3e78c5fff6112837f5d69b1bc8b4a0b3b0 Mon Sep 17 00:00:00 2001 From: Zachary Huang <33015448+zachary62@users.noreply.github.com> Date: Sat, 11 Jan 2025 12:42:20 -0500 Subject: [PATCH] correct link --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5cb125a..c28db79 100644 --- a/README.md +++ b/README.md @@ -66,7 +66,7 @@ Pocket Flow is also a *learning resource*, as current frameworks abstract too mu ## How Does it Work? -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, it’s easy to layer on more complex features. +The [100 lines](pocketflow/__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, it’s easy to layer on more complex features. - To learn more details, please check out documentation: https://minillmflow.github.io/PocketFlow/