feat(core): RunService for single workflow(node) primitives #6
Loading…
Reference in a new issue
No description provided.
Delete branch "feat/engine-flat"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
@ -0,0 +1,17 @@"""Sequential workflow execution on LangGraph.Replace all head of file docstrings with 1-2 lines.
@ -0,0 +1,640 @@"""LangGraph compilation and sequential execution.docstring issue
@ -0,0 +1,93 @@"""Run file and result shapes.Header docstring issue.
@ -0,0 +1,84 @@"""Single-writer persistence for run files.Header docstring issue.
@ -0,0 +57,4 @@path = self._path(run_id)if not path.is_file():raise ConfigError(f"unknown run: {run_id}")return RunFile.from_dict(json.loads(path.read_text()))Why json when the checkpoints are sqlite?