From e35f389e80abb494001ae71cfb4c1d33cf3066fc Mon Sep 17 00:00:00 2001 From: Ishaan Jaffer Date: Thu, 8 Jan 2026 15:17:46 +0530 Subject: [PATCH] add MANUSConfig --- litellm/utils.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/litellm/utils.py b/litellm/utils.py index fbbaa94f7a1..2260b2c7ba5 100644 --- a/litellm/utils.py +++ b/litellm/utils.py @@ -7871,6 +7871,8 @@ class ProviderConfigManager: return litellm.GithubCopilotResponsesAPIConfig() elif litellm.LlmProviders.LITELLM_PROXY == provider: return litellm.LiteLLMProxyResponsesAPIConfig() + elif litellm.LlmProviders.MANUS == provider: + return litellm.ManusResponsesAPIConfig() return None @staticmethod