ScriptsApr 2, 2026·2 min read
Browser Use — AI Agent Browser Automation
Make any website accessible to AI agents. Automate browser tasks with LLMs — click, type, navigate, extract data. 70K+ stars, MIT licensed.
TO
TokRepo精选 · Community
Quick Use
Use it first, then decide how deep to go
This block should tell both the user and the agent what to copy, install, and apply first.
```bash
pip install browser-use
playwright install chromium
```
```python
from browser_use import Agent
from langchain_openai import ChatOpenAI
agent = Agent(
task="Go to reddit.com/r/python, find the top post today, and summarize it",
llm=ChatOpenAI(model="gpt-4o"),
)
result = await agent.run()
print(result)
```
Set your API key: `export OPENAI_API_KEY=sk-...` (or use Anthropic, Gemini, etc.)
🙏
Source & Thanks
- GitHub: [browser-use/browser-use](https://github.com/browser-use/browser-use)
- License: MIT
- Stars: 70,000+
- Maintainer: Browser Use team
Thanks to the Browser Use team for creating the most popular open-source browser automation framework for AI agents, making the web programmable through natural language.
Discussion
Sign in to join the discussion.
No comments yet. Be the first to share your thoughts.
Related Assets
bolt.diy — AI Full-Stack App Builder, Any LLM
Community fork of Bolt.new. Prompt, edit, and deploy full-stack web apps with any LLM provider. 19K+ GitHub stars.
TokRepo精选
Daytona — Secure Sandboxes for AI Code Execution
Elastic infrastructure for running AI-generated code safely. SDKs for Python, TypeScript, Go. By Daytona. 71K+ GitHub stars.
TokRepo精选
Puter — Open-Source Cloud Desktop in Your Browser
Self-hostable internet OS with file system, app ecosystem, and developer APIs. Privacy-first cloud desktop. 40K+ GitHub stars.
TokRepo精选