Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding callback causes agent to break #1100

Closed
ellispinsky opened this issue Mar 21, 2025 · 2 comments · Fixed by #1109
Closed

Adding callback causes agent to break #1100

ellispinsky opened this issue Mar 21, 2025 · 2 comments · Fixed by #1109
Labels
bug Something isn't working

Comments

@ellispinsky
Copy link

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

  1. Config agent normally
  2. Config agent with a simple callback with function signature def new_step_callback(state: BrowserState, model_output: AgentOutput, steps: int)

Code Sample

async def main():
    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 = await agent.run()

Version

0.1.40

LLM Model

GPT-4o

Operating System

Mac os

Relevant Log Output

@ellispinsky ellispinsky added the bug Something isn't working label Mar 21, 2025
@taijusanagi
Copy link

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")
    async def new_step_callback(state: BrowserState, model_output: AgentOutput, steps: int):
        print("this works")

@sthitap0
Copy link

I see a problem where if I call a large function inside the callback, the controller doesn't take the action.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants