Skip to content

Commit 263704e

Browse files
fix exception
1 parent a9cab12 commit 263704e

File tree

3 files changed

+1
-1
lines changed

3 files changed

+1
-1
lines changed
0 Bytes
Binary file not shown.
6 Bytes
Binary file not shown.

litellm/utils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -518,7 +518,7 @@ def wrapper(*args, **kwargs):
518518
result = None
519519
litellm_call_id = str(uuid.uuid4())
520520
kwargs["litellm_call_id"] = litellm_call_id
521-
check_args()
521+
check_args(*args, **kwargs)
522522
try:
523523
logging_obj = function_setup(start_time, *args, **kwargs)
524524
kwargs["litellm_logging_obj"] = logging_obj

0 commit comments

Comments
 (0)