reorder/remove plan

This commit is contained in:
lda
2026-05-19 22:55:42 +07:00 Verified
parent ce2b1a498c
commit 4e3de7b91b
2 changed files with 1381 additions and 2 deletions
+11 -2
View File
@@ -66,6 +66,7 @@ this SHOULD support both path and literal.
langgraph has 3 ways of storage, if you read tests/rewrite langgraph has 3 ways of storage, if you read tests/rewrite
lets copy that over: lets copy that over:
``` ```
According to https://docs.langchain.com/oss/python/concepts/context, there are three types: According to https://docs.langchain.com/oss/python/concepts/context, there are three types:
@@ -84,10 +85,18 @@ lets copy that over:
a lot more versatility there. a lot more versatility there.
``` ```
now we 100% has state. we kinda have store if you skim it (trace), but trace is no store. and Context is patched in through state. now we 100% has state. we kinda have store if you skim it (trace), but trace is only 50% store. and Context is patched in through input/state.
this can be done with support for async, because lowk store is going to give us superpowers. this can be done with support for async, because lowk store is going to give us superpowers.
## how this would aid adding async + foreach parallel
(probably async gather)
currently frame feels like magic + its core i dont understand. + the current serial mode impl is lowk smart.
its reasonable; it spawns how many child frames as how many loop in foreach container item. Serially, like how `for in` in python works.
complaints are only API improvements; not so much aid into adding these
## complaints come when user uses ## complaints come when user uses
not a lot from me rn. not a lot from me rn.
File diff suppressed because it is too large Load Diff