欣淇
发布于 2026-05-28 / 0 阅读
0
0

🔥 browser-use:96,005 stars · 🌐 Make websites accessible for AI agents. Automate tasks ...

🔥 browser-use:96,005 stars · 🌐 Make websites accessible for AI agents. Automate tasks ...

项目地址: browser-use/browser-use | ⭐ 96,005 Stars | 🛠️ Python | 作者:browser-use

联网搜索、文件分析、代码生成……现在的 AI 应用越来越复杂,但底层都在调用同一个东西——browser-use。

这个项目目前 96,005 个 Star,用 Python 开发,🌐 Make websites accessible for AI agents. Automate tasks online with ease.。

核心能力

主要聚焦在 ai-agents, ai-tools, browser-automation 方向,有几个关键特性值得关注:

快速上手

安装很简单,几行命令搞定:

uv init && uv add browser-use && uv sync
# uvx browser-use install  # Run if you don't have Chromium installed
uvx browser-use init --template default
git clone https://github.com/browser-use/browser-use.git
cd browser-use
pip install -r requirements.txt
from browser_use import Agent, Browser, ChatBrowserUse
# from browser_use import ChatGoogle  # ChatGoogle(model='gemini-3-flash-preview')
# from browser_use import ChatAnthropic  # ChatAnthropic(model='claude-sonnet-4-6')
import asyncio

async def main():
    browser = Browser(
        # use_cloud=True,  # Use a stealth browser on Browser Use Cloud
    )

    agent = Agent(
        task="Find the 

实际用起来怎么样

你可以把 browser-use 集成到自己的工作流里。比如配合日常开发流程,做自动化处理。Python 生态下,安装依赖后就能跑起来。

注意事项

  • 确认你的 Python 版本在 3.9 以上,不然有些依赖装不上
  • browser-use 对 GPU 有依赖,如果只是测试可以用 CPU 模式
  • 首次运行会下载模型文件,大概几百 MB,确保网络通畅
  • API key 建议用环境变量传,别硬编码在代码里

要点总结

  • browser-use ⭐ 96,005,Python 开发,作者 browser-use
  • 🌐 Make websites accessible for AI agents. Automate tasks online with ease.
  • 安装简单,依赖清晰,文档齐全
  • 开源免费,社区活跃,适合二次开发

评论