"""Public review interface. Keep this module deliberately small. Existing callers import ``ai_review`` directly, so the compatibility facade exposes the implementation module under the old name while the implementation is free to be split behind package seams without changing callers. """ from __future__ import annotations import importlib import sys _implementation = importlib.import_module("review._legacy") sys.modules[__name__] = _implementation