You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I add register_new_step_callback=new_step_callback argument to the agent, the agent does not work and gets stuck in an endless loop.
Reproduction Steps
Config agent normally
Config agent with a simple callback with function signature def new_step_callback(state: BrowserState, model_output: AgentOutput, steps: int)
Code Sample
asyncdefmain():
agent=Agent(
task="go to the NYTimes and take a screenshot of the front page",
llm=llm,
register_new_step_callback=new_step_callback
)
result=awaitagent.run()
Version
0.1.40
LLM Model
GPT-4o
Operating System
Mac os
Relevant Log Output
The text was updated successfully, but these errors were encountered:
I'm not sure if this helps, but I ran into the exact same issue earlier. In my case, the callback needed to be asynchronous (async def). Changing it to async fixed it for me!
def new_step_callback(state: BrowserState, model_output: AgentOutput, steps: int):
print("this does not work")
Bug Description
When I add
register_new_step_callback=new_step_callback
argument to the agent, the agent does not work and gets stuck in an endless loop.Reproduction Steps
def new_step_callback(state: BrowserState, model_output: AgentOutput, steps: int)
Code Sample
Version
0.1.40
LLM Model
GPT-4o
Operating System
Mac os
Relevant Log Output
The text was updated successfully, but these errors were encountered: