"""Adaptive prompt selection via FOCUS-inspired multi-armed bandit.""" try: from .cell_bandit import CellBandit from .adaptive_prompt import adaptive_prompt_selection, run_baseline, setup_cell_arms except ImportError: from cell_bandit import CellBandit from adaptive_prompt import adaptive_prompt_selection, run_baseline, setup_cell_arms __all__ = ["CellBandit", "adaptive_prompt_selection", "run_baseline", "setup_cell_arms"]