Agentic-zork / evaluation /__init__.py
nathanael-fijalkow's picture
Major refactoring
450ea3f
raw
history blame contribute delete
312 Bytes
"""
Evaluation package for Text Adventure Agents.
"""
from evaluation.metrics import EvaluationResult, TrialResult
from evaluation.runner import RunConfig, RunResult, run_agent_with_server
__all__ = [
"EvaluationResult",
"TrialResult",
"RunConfig",
"RunResult",
"run_agent_with_server",
]