MacroLens / code /experiments /__main__.py
itouchz's picture
Upload experiments/ (runner, predictions, results, paper artifacts)
029e02e verified
Raw
History Blame Contribute Delete
384 Bytes
"""CLI entry: ``python -m projects.agent_builder.scripts.whatif_bench.experiments``.
Thin wrapper over :func:`experiments.run_all.main` so the package can be
launched with ``-m experiments``. Argument surface is documented in
:mod:`experiments.run_all`.
"""
from __future__ import annotations
import sys
from .run_all import main
if __name__ == "__main__":
sys.exit(main())