This is an external open-source GitHub repository imported into the WOCSOL Marketplace for discovery. The original repository owner is the primary creator.
๐ Make websites accessible for AI agents. Automate tasks online with ease.
๐ Make websites accessible for AI agents. Automate tasks online with ease.
--- ๐ค๏ธ Want to skip the setup? Use our [cloud](https://cloud.browser-use.com?utm_source=github&utm_medium=readme-skip-setup) for faster, scalable, stealth-enabled browser automation! # ๐ค LLM Quickstart 1. Direct your favorite coding agent (Cursor, Claude Code, etc) to [Agents.md](https://docs.browser-use.com/llms-full.txt) 2. Prompt away! # ๐ Human Quickstart Browser Use 0.13 introduces a new beta agent powered by a Rust core and a browser harness built for current frontier models. It gives the model a real browser/computer action space, persistent tools, and recovery loops inspired by coding agents. ```text Python API -> Rust core -> Browser harness -> Web task done ``` **1. Install Browser Use with the native core runtime (Python>=3.11):** ```bash uv add "browser-use[core]" # or: pip install "browser-use[core]" browser ``` The `[core]` extra installs the native Browser Use runtime for your platform. **2. [Optional] Get your API key from [Browser Use Cloud](https://cloud.browser-use.com/new-api-key?utm_source=github&utm_medium=readme-quickstart-api-key):** ``` # .env BROWSER_USE_API_KEY=your-key # GOOGLE_API_KEY=your-key # ANTHROPIC_API_KEY=your-key ``` **3. Run your first agent:** **Browser Use Terminal:** ```bash uv add "browser-use[core]" browser ``` **Python Script:** ```python from browser_use.beta import Agent, BrowserProfile, ChatBrowserUse # from browser_use.beta import ChatOpenAI # ChatOpenAI(model='gpt-5.5') # from browser_use.beta import ChatAnthropic # ChatAnthropic(model='claude-opus-4-8') import asyncio async def main(): agent = Agent( task="Find the number of stars of the browser-use repo", llm=ChatBrowserUse(model='openai/gpt-5.5'), # llm=ChatBrowserUse(model='bu-2-0'), # Browser Use's own optimized mo
Ask questions or discuss this product. New comments are reviewed before publishing.
Loading comments...