> ## Documentation Index
> Fetch the complete documentation index at: https://praison.ai/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# browser • AI Agents Framework

> Browser automation package for PraisonAI.

# browser

<Badge color="purple">AI Agents Framework</Badge>

Browser automation package for PraisonAI.

Provides a bridge server for Chrome Extension ↔ PraisonAI Agent communication.

Example:

# Start the browser server

praisonai browser start --port 8765

# Or programmatically

from praisonai.browser import BrowserServer
server = BrowserServer(port=8765)
server.start()

# Or use CDP agent directly

from praisonai.browser import CDPBrowserAgent, run\_hybrid
result = await run\_hybrid("Search for AI on Google")

## Import

```python theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
from praisonai import browser
```

***

## Related Documentation

<CardGroup cols={2}>
  <Card title="Browser Agent" icon="globe" href="/docs/features/browser-agent" />

  <Card title="Browser Deep Dive" icon="magnifying-glass" href="/docs/features/browser-agent-deep-dive" />
</CardGroup>
