Files
browser-use/browser_use/__init__.py

27 lines
710 B
Python

from browser_use.logging_config import setup_logging
setup_logging()
from browser_use.agent.prompts import SystemPrompt
from browser_use.agent.service import Agent
from browser_use.agent.views import ActionModel, ActionResult, AgentHistoryList
from browser_use.browser import Browser, BrowserConfig, BrowserContext, BrowserContextConfig, BrowserProfile, BrowserSession
from browser_use.controller.service import Controller
from browser_use.dom.service import DomService
__all__ = [
'Agent',
'Browser',
'BrowserConfig',
'BrowserSession',
'BrowserProfile',
'Controller',
'DomService',
'SystemPrompt',
'ActionResult',
'ActionModel',
'AgentHistoryList',
'BrowserContext',
'BrowserContextConfig',
]