Spaces:
Sleeping
Sleeping
File size: 581 Bytes
3be03dd | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | """
eval_agent.py — thin entry point for the evaluation suite.
Usage:
python eval_agent.py # all non-LLM tests (fast, ~30s)
python eval_agent.py --full # includes LLM agent run (~3 min)
python eval_agent.py --ticker NVDA # use a different test ticker
python eval_agent.py --suite tools # run only one suite
python eval_agent.py --list # list all test names
Implementation lives in eval/ (runner, suites_core, suites_advanced).
"""
from eval.suites_advanced import main
if __name__ == "__main__":
main()
|