chore: remove extra debugging print (#6005)

This commit is contained in:
Xingyao Wang 2025-01-03 11:02:48 -05:00 committed by GitHub
parent 3b26678a77
commit dd10f37f66
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -537,9 +537,7 @@ class AgentController:
self.update_state_before_step()
action: Action = NullAction()
try:
print('STEP AGENT')
action = self.agent.step(self.state)
print('GOT ACTION', action)
if action is None:
raise LLMNoActionError('No action was returned')
except (