From 07afefea3472e2445cb680c61650f9e95ae353d4 Mon Sep 17 00:00:00 2001 From: ishaan-jaff Date: Thu, 15 Feb 2024 17:23:07 -0800 Subject: [PATCH] (chore) debug sys path docker error --- litellm/utils.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/litellm/utils.py b/litellm/utils.py index d42e5f655..63e5e3595 100644 --- a/litellm/utils.py +++ b/litellm/utils.py @@ -80,8 +80,11 @@ from .exceptions import ( # Import Enterprise features project_path = abspath(join(dirname(__file__), "..", "..")) # Add the "enterprise" directory to sys.path +verbose_logger.debug(f"current project_path: {project_path}") enterprise_path = abspath(join(project_path, "enterprise")) sys.path.append(enterprise_path) + +verbose_logger.debug(f"sys.path: {sys.path}") from enterprise.callbacks.generic_api_callback import GenericAPILogger