From 3fdb612ed69a2edad5e15b0c8508e99a60c8667f Mon Sep 17 00:00:00 2001 From: Ishaan Jaffer Date: Thu, 7 May 2026 13:48:30 -0700 Subject: [PATCH] feat(v2 managed agents): add ManagedAgents httpxSpecialProvider --- litellm/types/llms/custom_http.py | 1 + 1 file changed, 1 insertion(+) diff --git a/litellm/types/llms/custom_http.py b/litellm/types/llms/custom_http.py index 792adb4182d..4e9223d8b86 100644 --- a/litellm/types/llms/custom_http.py +++ b/litellm/types/llms/custom_http.py @@ -29,6 +29,7 @@ class httpxSpecialProvider(str, Enum): A2A = "a2a" PromptManagement = "prompt_management" UI = "ui" + ManagedAgents = "managed_agents" VerifyTypes = Union[str, bool, ssl.SSLContext]