From 243c0957963bd0928ae910dcd4d0b2aa7f93fd86 Mon Sep 17 00:00:00 2001 From: afourney Date: Thu, 29 Aug 2024 15:07:17 -0700 Subject: [PATCH] Updated the root path discovery in agbench to reflect latest folder structure. (#433) --- python/packages/agbench/src/agbench/run_cmd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/packages/agbench/src/agbench/run_cmd.py b/python/packages/agbench/src/agbench/run_cmd.py index cb753ae72..323d61990 100644 --- a/python/packages/agbench/src/agbench/run_cmd.py +++ b/python/packages/agbench/src/agbench/run_cmd.py @@ -596,7 +596,7 @@ def find_agnext_repo(path: str) -> Optional[str]: path = os.path.dirname(path) while True: - test_path = os.path.join(path, "python", "src", "autogen_core") # We found autogen_core + test_path = os.path.join(path, "python", "packages", "autogen-core") # We found autogen_core if os.path.isdir(test_path): return path