multi-agent-lab / src /scenarios /__init__.py
agharsallah
Refactor code structure for improved readability and maintainability
5424fe6
Raw
History Blame Contribute Delete
345 Bytes
"""Scenario plugins — each module exposes build_scenario() -> Scenario.
Submodules are imported on demand (e.g. ``from src.scenarios import mystery_roots``)
rather than eagerly here, so the registry the scenarios delegate to can import
``src.scenarios.base`` without a circular import.
"""
__all__ = ["thousand_token_wood", "mystery_roots"]