From 18f7316b0873b02adb92a05db06ae8b90d08ffd6 Mon Sep 17 00:00:00 2001 From: Adnan Alkattan Date: Wed, 28 May 2025 20:55:41 +0300 Subject: [PATCH] Add missing request_kwargs to function call (#11202) --- litellm/router.py | 1 + 1 file changed, 1 insertion(+) diff --git a/litellm/router.py b/litellm/router.py index 5e341bf789..b8db060381 100644 --- a/litellm/router.py +++ b/litellm/router.py @@ -857,6 +857,7 @@ class Router: model=model, messages=messages, specific_deployment=kwargs.pop("specific_deployment", None), + request_kwargs=kwargs, ) self._update_kwargs_with_deployment(deployment=deployment, kwargs=kwargs)