hospital-ed / agents /__init__.py
testingaccc's picture
Upload folder using huggingface_hub
0fe00d1 verified
Raw
History Blame Contribute Delete
198 Bytes
"""Baseline agents for the hospital-resource-allocator environment."""
from .heuristic_agent import HeuristicAgent
from .random_agent import RandomAgent
__all__ = ["RandomAgent", "HeuristicAgent"]