From 8febd8cafb8be9278c026fa32ad12fc454146238 Mon Sep 17 00:00:00 2001 From: mateo-berri <277851410+mateo-berri@users.noreply.github.com> Date: Mon, 10 Aug 2026 07:17:06 -0700 Subject: [PATCH] chore(typing): restore one-line ToolParam comment --- litellm/responses/mcp/litellm_proxy_mcp_handler.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/litellm/responses/mcp/litellm_proxy_mcp_handler.py b/litellm/responses/mcp/litellm_proxy_mcp_handler.py index 695a6890b73..c6e17502e5d 100644 --- a/litellm/responses/mcp/litellm_proxy_mcp_handler.py +++ b/litellm/responses/mcp/litellm_proxy_mcp_handler.py @@ -39,9 +39,7 @@ if TYPE_CHECKING: else: MCPTool = Any -# NOTE: We intentionally keep ToolParam as a broad Mapping type here to avoid tight -# coupling to the OpenAI SDK's tool union types while still allowing dict-style -# access at runtime. +# NOTE: We intentionally keep ToolParam as a broad type here to avoid tight coupling ToolParam: TypeAlias = Mapping[str, object]