idea10-catopt-studio-a/catopt_studio/adapters/__init__.py

13 lines
450 B
Python

"""Adapters package for CatOpt Studio MVP.
This package contains toy adapter implementations that translate device-
specific LocalProblem instances into a small canonical mapping and emit
PlanDelta objects. These are intentionally small, deterministic, and
well-tested to serve as examples for adapter development.
"""
from .rover_planner import RoverAdapter
from .habitat_module import HabitatAdapter
__all__ = ["RoverAdapter", "HabitatAdapter"]