We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae3622a commit b99b22cCopy full SHA for b99b22c
src/steamship/agents/service/agent_service.py
@@ -29,7 +29,7 @@ def run_action(self, action: Action, context: AgentContext):
29
"Please use synchronous Tasks (Tools that return List[Block] for now."
30
)
31
else:
32
- outputs = ",".join([f"{b.as_llm_input()}" for b in action.output])
+ outputs = ",".join([f"{b.as_llm_input()}" for b in blocks_or_task])
33
logging.info(
34
f"Tool {action.tool.name} Completed ({outputs})",
35
extra={
0 commit comments