Skip to content

Commit

Permalink
Remove prints
Browse files Browse the repository at this point in the history
  • Loading branch information
collindutter committed May 2, 2024
1 parent 72e975c commit 0ac5bc9
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions griptape/tasks/tool_task.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 0ac5bc9

Please sign in to comment.