# 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