Skip to main content

Using AI Coding Assistants

  1. Copy all content 🔗 from here (~32k tokens)
  2. Paste it into your favorite coding agent (Cursor, Claude, ChatGPT…).

Alternative Methods

Point your AI assistant to the OpenBrowser documentation:
https://openbrowser.mintlify.app

Option 2: GitHub Repository

Share the repository for full context:
https://github.com/billy-enrizky/openbrowser-ai

Option 3: Quick Reference

Copy this quick reference for your AI assistant:
# OpenBrowser Quick Reference

## Installation
pip install openbrowser-ai

## Basic Usage
from openbrowser import Agent, Browser, ChatGoogle

agent = Agent(
    task="Your task here",
    llm=ChatGoogle(),  # or ChatOpenAI(), ChatAnthropic()
)
await agent.run()

## Key Classes
- Agent: Main automation agent
- Browser: Browser instance wrapper  
- BrowserSession: Low-level browser control
- BrowserProfile: Browser configuration

## Supported LLMs
- ChatGoogle (Gemini)
- ChatOpenAI (GPT-4)
- ChatAnthropic (Claude)
- ChatGroq, ChatOllama, ChatAWSBedrock, ChatAzureOpenAI
Then ask your AI assistant questions like:
  • “How do I configure a proxy in OpenBrowser?”
  • “Show me how to extract data from a webpage”
  • “How do I use vision mode?”