From 9b52e8e3813c993e1af2364ee15f8a68b49693d9 Mon Sep 17 00:00:00 2001 From: Jason Schleifer Date: Fri, 1 Nov 2024 13:19:52 +1300 Subject: [PATCH 1/2] fixed CodeExecutionTask --- nodes/tasks/gtUIParallelImageQueryTask.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nodes/tasks/gtUIParallelImageQueryTask.py b/nodes/tasks/gtUIParallelImageQueryTask.py index c41697a..49cc091 100644 --- a/nodes/tasks/gtUIParallelImageQueryTask.py +++ b/nodes/tasks/gtUIParallelImageQueryTask.py @@ -57,7 +57,7 @@ def run(self, **kwargs): prompt_text = "Describe this image" structure = Workflow(rulesets=rulesets) - start_task = CodeExecutionTask("Start", run_fn=do_start_task, id="START") + start_task = CodeExecutionTask("Start", on_run=do_start_task, id="START") end_task = PromptTask( "Concatenate just the output values of the tasks, separated by two newlines: {{ parent_outputs }}", id="END", From 3b0cf75c3f291088999c43d6c83f6e649382ff6f Mon Sep 17 00:00:00 2001 From: Jason Schleifer Date: Fri, 1 Nov 2024 13:20:23 +1300 Subject: [PATCH 2/2] udpated version --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 53a77e1..b1855c6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "comfyui-griptape" -version = "1.0.15" +version = "1.0.16" description = "Griptape LLM(Large Language Model) Nodes for ComfyUI." authors = ["Jason Schleifer "] readme = "README.md" @@ -26,7 +26,7 @@ priority = "explicit" [project] name = "comfyui-griptape" description = "Griptape LLM(Large Language Model) Nodes for ComfyUI." -version = "1.0.15" +version = "1.0.16" license = {file = "LICENSE"} dependencies = ["griptape[all]==0.34.0", "python-dotenv"]