DIME / agents /__init__.py
Naseer-010's picture
added canonical evaluation harness, unified DIME index, deterministic replay guarantees
54da37b
Raw
History Blame Contribute Delete
307 Bytes
"""Baseline agents for the DIME benchmark."""
from agents.base_agent import BaseAgent
from agents.heuristic_agent import HeuristicAgent
from agents.random_agent import RandomAgent
from agents.threshold_agent import ThresholdAgent
__all__ = ["BaseAgent", "RandomAgent", "HeuristicAgent", "ThresholdAgent"]