mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-25 10:44:24 +00:00
fix(proxy_cli.py): fix circular import issue
This commit is contained in:
parent
c1f8d346b8
commit
b204f0c01c
1 changed files with 2 additions and 1 deletions
|
@ -7,7 +7,6 @@ import importlib
|
|||
from dotenv import load_dotenv
|
||||
import urllib.parse as urlparse
|
||||
|
||||
|
||||
sys.path.append(os.getcwd())
|
||||
|
||||
config_filename = "litellm.secrets"
|
||||
|
@ -22,6 +21,8 @@ telemetry = None
|
|||
def append_query_params(url, params):
|
||||
from litellm._logging import verbose_proxy_logger
|
||||
|
||||
from litellm._logging import verbose_proxy_logger
|
||||
|
||||
verbose_proxy_logger.debug(f"url: {url}")
|
||||
verbose_proxy_logger.debug(f"params: {params}")
|
||||
parsed_url = urlparse.urlparse(url)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue