mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-05-03 17:27:37 +08:00
12 lines
196 B
Python
12 lines
196 B
Python
"""
|
|
Nomad integration for atropos-agent.
|
|
|
|
Provides:
|
|
- NomadClient: Client for Nomad HTTP API
|
|
- Job templates for sandbox containers
|
|
"""
|
|
|
|
from .client import NomadClient
|
|
|
|
__all__ = ["NomadClient"]
|