mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-06-07 08:02:23 +00:00
Pure file moves, zero content changes. Every file in agent/, tools/, hermes_cli/, gateway/, acp_adapter/, cron/, and plugins/ moves into hermes_agent/. Top-level modules (run_agent.py, cli.py, etc.) move to their new homes per the restructure manifest. Git sees 100% similarity on all moves. Part of #14182, #14183
10 lines
240 B
Python
10 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"]
|