fix exception

This commit is contained in:
Krrish Dholakia 2023-09-09 11:24:10 -07:00
parent a9cab12a47
commit 263704e942
3 changed files with 1 additions and 1 deletions

View file

@ -518,7 +518,7 @@ def client(original_function):
result = None
litellm_call_id = str(uuid.uuid4())
kwargs["litellm_call_id"] = litellm_call_id
check_args()
check_args(*args, **kwargs)
try:
logging_obj = function_setup(start_time, *args, **kwargs)
kwargs["litellm_logging_obj"] = logging_obj