mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-07-11 13:41:53 +00:00
7 lines
273 B
Python
7 lines
273 B
Python
"""Bridge module — delegates plugin registration to hermes_agent_matrix."""
|
|
|
|
|
|
def register(ctx):
|
|
"""Plugin entry point — delegates to the inner hermes_agent_matrix package."""
|
|
from hermes_agent_matrix import register as _inner_register
|
|
_inner_register(ctx)
|