mirror of
https://github.com/microsoft/autogen.git
synced 2025-09-28 17:49:35 +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>
8 lines
288 B
Python
8 lines
288 B
Python
# Add autogencap to system path in case autogencap is not pip installed
|
|
# Since this library has not been published to PyPi, it is not easy to install using pip
|
|
import os
|
|
import sys
|
|
|
|
absparent = os.path.abspath(os.path.join(os.path.dirname(__file__), "../.."))
|
|
sys.path.append(absparent)
|