update logging for task auto restart (#751)

This commit is contained in:
Kerem Yilmaz
2024-08-29 00:14:33 +03:00
committed by GitHub
parent b5d743d6eb
commit 3dfef04b1e

View File

@@ -71,6 +71,7 @@ class DetailedAgentStepOutput(BaseModel):
actions_and_results=None
if self.actions_and_results is None
else [(action, result) for action, result in self.actions_and_results if result],
step_exception=self.step_exception,
)
def to_agent_step_output(self) -> AgentStepOutput: