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

fix: Move HTTPX client cleanup from agent to browser close #1122

Merged

Conversation

lynnzc
Copy link
Contributor

@lynnzc lynnzc commented Mar 24, 2025

The original original PR (#895) addressed the resource warnings and potential memory leaks by adding HTTPX client cleanup to the agent's closing procedure, it introduced a new issue in multi-agent scenarios.
When one agent closes, it cleans up ALL HTTPX clients in memory, including those being used by other agents in the same context.

Reference Demo

test.py

import os
import sys
import asyncio

sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))

from langchain_openai import ChatOpenAI
from dotenv import load_dotenv

from browser_use import Agent, Browser

# Load environment variables
load_dotenv()
if not os.getenv('OPENAI_API_KEY'):
    raise ValueError('OPENAI_API_KEY is not set. Please add it to your environment variables.')

async def main():
    browser = Browser()
    async with await browser.new_context() as context:
        model = ChatOpenAI(model='gpt-4o')

        # Initialize browser agent
        agent1 = Agent(
            task='search iphone 17 news on google and pick 3 sources.',
            llm=model,
            browser_context=context,
        )
        agent2 = Agent(
            task='compare all the content found and summarize the key information about iPhone 17.',
            llm=model,
            browser_context=context,
        )
        await agent1.run()
        await agent2.run()

if __name__ == "__main__":
    asyncio.run(main())

Fix

This PR moves HTTPX cleanup from agent to browser level to:

  • Avoid breaking the multi-agent tasks, only cleans connections when browser fully closes.
  • Respects the _force_keep_browser_alive flag.

@pirate
Copy link
Member

pirate commented Mar 25, 2025

thanks!

@pirate pirate merged commit 82c6b57 into browser-use:main Mar 25, 2025
1 check passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants