mirror of
https://github.com/browser-use/browser-use.git
synced 2026-09-14 19:59:47 +08:00
33 lines
727 B
Python
33 lines
727 B
Python
"""Agent package exports."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from typing import TYPE_CHECKING
|
|
|
|
if TYPE_CHECKING:
|
|
from browser_use.agent.service import Agent
|
|
from browser_use.beta.service import BetaAgentError
|
|
|
|
_LAZY_IMPORTS = {
|
|
'Agent': ('browser_use.agent.service', 'Agent'),
|
|
'BetaAgentError': ('browser_use.beta.service', 'BetaAgentError'),
|
|
}
|
|
|
|
|
|
def __getattr__(name: str):
|
|
if name in _LAZY_IMPORTS:
|
|
module_path, attr_name = _LAZY_IMPORTS[name]
|
|
from importlib import import_module
|
|
|
|
module = import_module(module_path)
|
|
attr = getattr(module, attr_name)
|
|
globals()[name] = attr
|
|
return attr
|
|
raise AttributeError(f"module '{__name__}' has no attribute '{name}'")
|
|
|
|
|
|
__all__ = [
|
|
'Agent',
|
|
'BetaAgentError',
|
|
]
|