Skip to content

๐ŸŒ Make websites accessible for AI agents. Automate tasks online with ease.

License

OpenSourceCollection/browser-use

ย 
ย 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

Shows a black Browser Use Logo in light color mode and a white one in dark color mode.
The AI browser agent.


Demos Docs Blog Merch Github Stars Twitter Discord Browser-Use Cloud

๐Ÿค– LLM Quickstart

  1. Direct your favorite coding agent (Cursor, ClaudeS, etc) to Agents.md
  2. Prompt away!

๐Ÿ‘‹ Human Quickstart

1. Create environment with uv (Python>=3.11):

uv venv --python 3.12
source .venv/bin/activate

2. Install Browser-Use package:

#  We ship every day - use the latest version!
uv pip install browser-use

3. Get your API key from Browser Use Cloud and add it to your .env file (new signups get $10 free credits):

# .env
BROWSER_USE_API_KEY=your-key

4. Download chromium using playwright's shortcut:

uvx playwright install chromium --with-deps --no-shell

5. Run your first agent:

from browser_use import Agent, ChatBrowserUse

agent = Agent(
    task="Find the number of stars of the browser-use repo",
    llm=ChatBrowserUse(),
)
agent.run_sync()

Check out the library docs for more!


Stealth Browser Infrastructure

Want to bypass anti-bot detection or run a fleet of agents on the cloud? Use our hosted stealth browsers.

Follow steps 1-3 above, and pass in a Browser made with the use_cloud parameter.

from browser_use import Agent, Browser, ChatBrowserUse

browser = Browser(
    use_cloud=True,  # Automatically provisions a cloud browser
)
agent = Agent(
    task="Find the number of stars of the browser-use repo",
    llm=ChatBrowserUse(),
    browser=browser,
)
agent.run_sync()

Optional: Follow the link in the console to watch the remote browser.

Check out the cloud docs for more!


Demos

๐Ÿ“‹ Form-Filling

Task = "Fill in this job application with my resume and information."

Job Application Demo Example code โ†—

๐ŸŽ Grocery-Shopping

Task = "Put this list of items into my instacart."

grocery-use-large.mp4

Example code โ†—

๐Ÿ’ป Personal-Assistant.

Task = "Help me find parts for a custom PC."

pc-use-large.mp4

Example code โ†—

๐Ÿ’กSee more examples here โ†— and give us a star!


Integrations, hosting, custom tools, MCP, and more on our Docs โ†—


Tell your computer what to do, and it gets it done.

Twitter Follow โ€ƒโ€ƒโ€ƒ Twitter Follow

Made with โค๏ธ in Zurich and San Francisco

About

๐ŸŒ Make websites accessible for AI agents. Automate tasks online with ease.

Resources

License

Contributing

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 99.0%
  • Other 1.0%