AI现在可以像你一样使用网页#
想让AI自动填写表单、提取数据或在网页上比较产品?Browser Use 让AI Agent像人类一样使用浏览器——打开页面、点击按钮、输入、填写表单。
[!TIP] Browser Use在Odysseys排行榜上以87.4%的平均分排名第一,超过OpenAI、Anthropic、Google和Microsoft的computer-use agents。
快速开始#
安装
uv add browser-usebash第一个Agent
import asyncio
from browser_use import Agent, ChatBrowserUse
async def main():
agent = Agent(
task="查找browser-use仓库的星标数",
llm=ChatBrowserUse(model='openai/gpt-5.5'),
)
history = await agent.run()
asyncio.run(main())python