From cbeaf5ad15697852d598165d090f4aad5c7a6c60 Mon Sep 17 00:00:00 2001 From: zachary62 Date: Sat, 4 Jan 2025 23:59:59 +0000 Subject: [PATCH] update doc example and desc --- docs/node.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/node.md b/docs/node.md index 47a46b0..965a529 100644 --- a/docs/node.md +++ b/docs/node.md @@ -20,7 +20,7 @@ A **Node** is the smallest building block of Mini LLM Flow. Each Node has 3 step - ⚠️ If retries enabled, ensure idempotent implementation. - Returns `exec_res`, which is passed to `post()`. -3.`post(shared, prep_res, exec_res)` +3. `post(shared, prep_res, exec_res)` - A reliable postprocessing step to write results back to the `shared` store and decide the next Action. - Examples: *update DB, change states, log results, decide next Action*. - Returns a **string** specifying the next Action (`"default"` if none).