mirror of
https://github.com/browser-use/browser-use.git
synced 2025-02-18 01:18:20 +03:00
* add force context and browser alive tags * removed unnecesary comment, better import for BrowserContextConfig
28 lines
893 B
Python
28 lines
893 B
Python
from browser_use.logging_config import setup_logging
|
|
|
|
setup_logging()
|
|
|
|
from browser_use.agent.prompts import SystemPrompt as SystemPrompt
|
|
from browser_use.agent.service import Agent as Agent
|
|
from browser_use.agent.views import ActionModel as ActionModel
|
|
from browser_use.agent.views import ActionResult as ActionResult
|
|
from browser_use.agent.views import AgentHistoryList as AgentHistoryList
|
|
from browser_use.browser.browser import Browser as Browser
|
|
from browser_use.browser.browser import BrowserConfig as BrowserConfig
|
|
from browser_use.browser.context import BrowserContextConfig
|
|
from browser_use.controller.service import Controller as Controller
|
|
from browser_use.dom.service import DomService as DomService
|
|
|
|
__all__ = [
|
|
'Agent',
|
|
'Browser',
|
|
'BrowserConfig',
|
|
'Controller',
|
|
'DomService',
|
|
'SystemPrompt',
|
|
'ActionResult',
|
|
'ActionModel',
|
|
'AgentHistoryList',
|
|
'BrowserContextConfig',
|
|
]
|