From 9569b98366248942940cd3e800fcb500976c40cb Mon Sep 17 00:00:00 2001 From: Ishaan Jaffer Date: Sat, 27 Sep 2025 15:43:08 -0700 Subject: [PATCH] openai types --- litellm/types/llms/openai.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litellm/types/llms/openai.py b/litellm/types/llms/openai.py index 33607ad933..9341041081 100644 --- a/litellm/types/llms/openai.py +++ b/litellm/types/llms/openai.py @@ -44,7 +44,7 @@ from openai.types.responses.response import ( # Handle OpenAI SDK version compatibility for Text type try: from openai.types.responses.response_create_params import ( - Text as ResponseText, # type: ignore + Text as ResponseText, # type: ignore[attr-defined] ) except (ImportError, AttributeError): # Fall back to the concrete config type available in all SDK versions