browser-use/browser-use โ€” GitHub Repository Preview
AI & Machine Learning โ˜… 80.9k Python

browser-use/browser-use

by @browser-use ยท

80.9k Stars
9.6k Forks
115 Issues
Python Language

Browser Use is a Python library that makes websites accessible for AI agents, enabling automated web-based task completion with ease. Integrates with multiple LLM providers including their optimized ChatBrowserUse model. Handles form-filling, shopping, research, and complex web automation through natural language instructions. With 80k+ stars, it is the most popular open-source AI browser automation framework. Supports custom tools and stealth browsing.

browser-use
@browser-use Project maintainer on GitHub
View Profile
View on GitHub
git clone https://github.com/browser-use/browser-use.git

Quick Start Example

python
from browser_use import Agent
from langchain_openai import ChatOpenAI

agent = Agent(
    task="Find cheapest flight from NYC to LA",
    llm=ChatOpenAI(model="gpt-4o")
)

result = await agent.run()
print(result)

Tags

#ai-agent#browser-automation#python#llm#web-scraping#automation

Related Projects