-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
Cleanup Code #712
Cleanup Code #712
Conversation
await asyncio.sleep(browser_context.config.wait_between_actions) | ||
# hash all elements. if it is a subset of cached_state its fine - else break (new elements on page) | ||
|
||
return results |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we should not delete multi_act
task_message = self.task_instructions(task) | ||
task_message = HumanMessage( | ||
content=f'Your ultimate task is: """{task}""". If you achieved your ultimate task, stop everything and use the done action in the next step to complete the task. If not, continue as usual.' | ||
) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i think we should keep it as a function so that we can call it from outside for new tasks
from browser_use.browser.context import BrowserContext | ||
|
||
return BrowserContext._enhanced_css_selector_for_element(self) | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i think we should keep this
This PR cleans up code by removing shallow functions and unused functions from the codebase. I've moved some stateless functions to utility files so that the linter can check whether they are dead code or still used.