mirror of
https://github.com/microsoft/autogen.git
synced 2025-08-10 01:32:03 +00:00

* Add isort * Apply isort on py files * Fix circular import * Fix format for notebooks * Fix format --------- Co-authored-by: Chi Wang <wang.chi@microsoft.com>
13 lines
194 B
Python
13 lines
194 B
Python
import os
|
|
import sys
|
|
|
|
from autogenbench.tabulate_cmd import default_tabulate
|
|
|
|
|
|
def main(args):
|
|
default_tabulate(args)
|
|
|
|
|
|
if __name__ == "__main__" and __package__ is None:
|
|
main(sys.argv)
|