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 handling of paused or stopped states in the
browser_use
module. The main focus is on refactoring the code to centralize the check for paused or stopped states and ensuring this check is consistently applied throughout the relevant methods.Refactoring and state check improvements:
_check_if_stopped_or_paused
to theAgent
class inbrowser_use/agent/service.py
to centralize the logic for checking if the agent is paused or stopped._stopped
or_paused
with calls to the new_check_if_stopped_or_paused
method in thestep
method ofbrowser_use/agent/service.py
. [1] [2] [3]run
method inbrowser_use/agent/service.py
to include the new_check_if_stopped_or_paused
method.multi_act
method inbrowser_use/controller/service.py
to accept acheck_break_if_paused
parameter and call this function at various points to ensure the paused state is checked. [1] [2] [3]Other changes:
browser_use/controller/service.py
to include theCallable
type.AgentController
class inexamples/features/pause_agent.py
to open multiple websites in one action.