Spaces:
Sleeping
Sleeping
File size: 312 Bytes
116524e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | """Recursive Reflector implementation.
Config, prompts, and tools live here. The ``RecursiveReflector`` class
and the pipeline step ``RRStep`` live in ``ace.steps.rr_step``.
"""
from .config import RecursiveConfig as RRConfig
from .tools import RRDeps
__all__ = [
"RRConfig",
"RRDeps",
]
|