Scripts2026年4月2日·1 分钟阅读
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
快速使用
先拿来用,再决定要不要深挖
这里应该同时让用户和 Agent 知道第一步该复制什么、安装什么、落到哪里。
```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.)
🙏
来源与感谢
- 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.
讨论
登录后参与讨论。
还没有评论,来写第一条吧。
相关资产
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精选
PocketBase — Backend in One File for AI Apps
Open-source backend with database, auth, file storage, and admin UI in a single executable. Perfect for AI app backends. 57K+ stars.
TokRepo精选