2026-02-21 22:31:43 -08:00
|
|
|
"""Hermes execution environment backends.
|
|
|
|
|
|
|
|
|
|
Each backend provides the same interface (BaseEnvironment ABC) for running
|
|
|
|
|
shell commands in a specific execution context: local, Docker, Singularity,
|
2026-03-05 00:40:34 -08:00
|
|
|
SSH, Modal, or Daytona.
|
2026-02-21 22:31:43 -08:00
|
|
|
|
|
|
|
|
The terminal_tool.py factory (_create_environment) selects the backend
|
|
|
|
|
based on the TERMINAL_ENV configuration.
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
from tools.environments.base import BaseEnvironment
|
|
|
|
|
|
|
|
|
|
__all__ = ["BaseEnvironment"]
|