"""Baseline agents for the hospital-resource-allocator environment.""" from .heuristic_agent import HeuristicAgent from .random_agent import RandomAgent __all__ = ["RandomAgent", "HeuristicAgent"]