chane35's picture
PERMANENCE: reversibility-aware RL environment for training LLM agents
796da7c verified
Raw
History Blame
461 Bytes
"""
permanence.domains β€” concrete domain packages.
Each subpackage registers itself with the core registry at import time.
The top-level ``__init__`` imports them all so the registry is fully
populated on ``from permanence import domains`` or ``import permanence``.
"""
from . import meridian # noqa: F401 β€” side effect: registers the domain
from . import devtools # noqa: F401 β€” side effect: registers the domain
__all__ = ["meridian", "devtools"]