mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-05-01 16:31:56 +08:00
21 lines
443 B
Python
21 lines
443 B
Python
"""
|
|
Slot-based multiplexing for atropos-agent.
|
|
|
|
Provides:
|
|
- Slot: Isolated workspace for a single trajectory
|
|
- SlotPool: Manages slots across Nomad allocations
|
|
- SandboxExecutor: Executes tools in sandbox containers
|
|
"""
|
|
|
|
from .executor import SandboxExecutor
|
|
from .pool import SlotPool, SlotPoolConfig
|
|
from .slot import Slot, SlotState
|
|
|
|
__all__ = [
|
|
"Slot",
|
|
"SlotState",
|
|
"SlotPool",
|
|
"SlotPoolConfig",
|
|
"SandboxExecutor",
|
|
]
|