mirror of
https://github.com/microsoft/autogen.git
synced 2025-07-09 01:51:16 +00:00

* Initial check-in of agbench * Moved agbench to intended directory. * Removed pyautogen dependency * moved to using process_until_idle * Added TeamOne template. * User TeamOne agent classes. * migrate to hatch, move benchmarks out, add CI (#166) * Resolve type issues (#168) Thanks for fixing types. * Fixed import. --------- Co-authored-by: Jack Gerrits <jackgerrits@users.noreply.github.com>
13 lines
189 B
Python
13 lines
189 B
Python
import os
|
|
import sys
|
|
|
|
from agbench.tabulate_cmd import default_tabulate
|
|
|
|
|
|
def main(args):
|
|
default_tabulate(args)
|
|
|
|
|
|
if __name__ == "__main__" and __package__ is None:
|
|
main(sys.argv)
|