Browser Use
Development↓ 0
OPEN-Charlie
Other
ai-agentsai-toolsbrowser-automationbrowser-usellmplaywright
Description
Give AI the ability to control a real web browser. Tell it to search Google, fill out forms, compare prices, or navigate any website — and it actually does it, just like a person would. One of the most popular AI browser automation tools with 85,000+ GitHub stars.
Setup Guide
1. pip install browser-use playwright
2. playwright install chromium
3. from browser_use import Agent
4. from langchain_anthropic import ChatAnthropic
5. agent = Agent(task="Go to google.com and search for AI news", llm=ChatAnthropic(model="claude-opus-4-6"))
6. asyncio.run(agent.run())