Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request includes several changes to improve the initialization and state management of the browser context and agent services. The changes focus on better handling of message initialization, callback registration, and browser context state management, including the use of CDP (Chrome DevTools Protocol) for more precise control over browser tabs and pages.
Improvements to message initialization:
browser_use/agent/message_manager/service.py
: Added_init_messages
method to initialize message history only if the state history is empty.Enhancements to callback registration:
browser_use/agent/service.py
: Replacedregister_external_agent_status_callback
withregister_external_agent_status_raise_error_callback
and updated related methods to handle asynchronous checks for agent status. [1] [2] [3] [4] [5] [6] [7] [8]Browser context state management improvements:
browser_use/browser/context.py
: IntroducedBrowserContextState
to manage the state of the browser context, including handling of CDP target IDs for more precise tab and page control. [1] [2] [3] [4] [5] [6] [7] [8] [9] [10] [11] [12] [13] [14]Minor improvements:
browser_use/agent/views.py
: Updated the description for theaction
field inAgentOutput
and its custom model creation method. [1] [2]browser_use/controller/service.py
: Modified element click action to useget_selector_map
andget_dom_element_by_index
for better element handling.