mirror of
https://github.com/microsoft/autogen.git
synced 2025-07-12 19:40:40 +00:00

* Initial onboarding of WebArena * Migrate to try_get_underlying_agent_instance * Fixed some race conditions and implemented Deactivate messages.
16 lines
361 B
Python
16 lines
361 B
Python
import os
|
|
import sys
|
|
from autogenbench.tabulate_cmd import default_tabulate, default_scorer
|
|
|
|
|
|
def scorer(instance_dir, success_strings=["FINAL SCORE: 1"]):
|
|
return default_scorer(instance_dir, success_strings=success_strings)
|
|
|
|
|
|
def main(args):
|
|
default_tabulate(args, scorer=scorer)
|
|
|
|
|
|
if __name__ == "__main__" and __package__ is None:
|
|
main(sys.argv)
|