8 lines
188 B
Python
8 lines
188 B
Python
"""Compatibility alias for the canonical heaven agent implementation."""
|
|
|
|
import sys
|
|
|
|
from backend.features.heaven import agent as _implementation
|
|
|
|
sys.modules[__name__] = _implementation
|