mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-04-25 00:51:20 +00:00
13 lines
410 B
Python
13 lines
410 B
Python
"""Hermes execution environment backends.
|
|
|
|
Each backend provides the same interface (BaseEnvironment ABC) for running
|
|
shell commands in a specific execution context: local, Docker, Singularity,
|
|
SSH, or Modal.
|
|
|
|
The terminal_tool.py factory (_create_environment) selects the backend
|
|
based on the TERMINAL_ENV configuration.
|
|
"""
|
|
|
|
from tools.environments.base import BaseEnvironment
|
|
|
|
__all__ = ["BaseEnvironment"]
|