From 0ac5bc913e7bb05f593dc2668c36a1ab3b4bc996 Mon Sep 17 00:00:00 2001 From: Collin Dutter Date: Thu, 2 May 2024 09:13:11 -0700 Subject: [PATCH] Remove prints --- griptape/tasks/tool_task.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/griptape/tasks/tool_task.py b/griptape/tasks/tool_task.py index df9849ed0a..f875186ea6 100644 --- a/griptape/tasks/tool_task.py +++ b/griptape/tasks/tool_task.py @@ -48,9 +48,7 @@ def actions_schema(self) -> Schema: return self._actions_schema_for_tools([self.tool]) def run(self) -> BaseArtifact: - print(self.prompt_stack) prompt_output = self.prompt_driver.run(prompt_stack=self.prompt_stack).to_text() - print(prompt_output) action_matches = re.findall(self.ACTION_PATTERN, prompt_output, re.DOTALL) if action_matches: