""" BrowserTool - Production-ready browser automation for AI agents Fully self-hosted, open-source, privacy-by-default PRIMARY: browser-use (https://github.com/browser-use/browser-use) FALLBACK: Playwright + patchright (stealth) Features: - Natural language browser automation - Built-in stealth (user-agent, canvas, webdriver masking) - Proxy support - Encrypted session storage (Second Me HMM-memory) - PII protection and audit logging """ from .browser_tool import ( BrowserTool, BrowserConfig, BrowserError, RateLimitError, register_tools ) __all__ = [ "BrowserTool", "BrowserConfig", "BrowserError", "RateLimitError", "register_tools" ] __version__ = "2.0.0"