fix folder and file save

This commit is contained in:
2026-04-02 00:03:44 -07:00
parent df97b25985
commit 1f9b05cd4b
8 changed files with 183 additions and 56 deletions

View File

@@ -70,6 +70,7 @@ class ExecutionEngine:
on_overlay: Callable[[str, str], None] | None = None,
on_value: Callable[[str, Any], None] | None = None,
on_warning: Callable[[str, str], None] | None = None,
on_file_download: Callable[[str, str], None] | None = None,
) -> dict[str, tuple]:
"""
Execute the workflow described by `prompt`.
@@ -100,6 +101,7 @@ class ExecutionEngine:
overlay=on_overlay,
value=on_value,
warning=on_warning,
file_download=on_file_download,
):
for node_id in order:
node_def = prompt[node_id]