mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-04-28 15:01:34 +08:00
11 lines
240 B
Python
11 lines
240 B
Python
|
|
"""Cloud browser provider abstraction.
|
||
|
|
|
||
|
|
Import the ABC so callers can do::
|
||
|
|
|
||
|
|
from tools.browser_providers import CloudBrowserProvider
|
||
|
|
"""
|
||
|
|
|
||
|
|
from tools.browser_providers.base import CloudBrowserProvider
|
||
|
|
|
||
|
|
__all__ = ["CloudBrowserProvider"]
|