diff --git a/litellm/main.py b/litellm/main.py index 044fd21724..2b53c3a5fb 100644 --- a/litellm/main.py +++ b/litellm/main.py @@ -234,7 +234,7 @@ async def acompletion( } try: # Use a partial function to pass your keyword arguments - func = partial(completion, **completion_kwargs) + func = partial(completion, **completion_kwargs, **kwargs) # Add the context to the function ctx = contextvars.copy_context()