
    `gj                         d Z d ZdgZy)a  Tools package namespace.

Keep package import side effects minimal. Importing ``tools`` should not
eagerly import the full tool stack, because several subsystems load tools while
``hermes_cli.config`` is still initializing.

Callers should import concrete submodules directly, for example:

    import tools.web_tools
    from tools import browser_tool

Python will resolve those submodules via the package path without needing them
to be re-exported here.
c                      ddl m}   |        S )z6File tools only require terminal backend availability.   check_terminal_requirements)terminal_toolr   r   s    A/root/.hermes/venv/lib/python3.12/site-packages/tools/__init__.pycheck_file_requirementsr      s    :&((    r   N)__doc__r   __all__ r	   r   <module>r      s    ) %
%r	   