AI-powered browser automation adapted from browser-use on the Cogents stack.
pip install -e ".[dev]"from cogents_bu import Agent, BrowserProfile
agent = Agent(
task="Your task description here",
max_steps=50,
browser_profile=BrowserProfile(headless=False)
)
await agent.run()See examples/ for more usage examples.
make install # Install dependencies
make test # Run tests
make format # Format code
make lint # Run lintersMIT License - see LICENSE file for details.