From 2fd2310b8efaed33cbe0541a72a13c8ea1e08036 Mon Sep 17 00:00:00 2001 From: Krrish Dholakia Date: Mon, 1 Sep 2025 18:13:31 -0700 Subject: [PATCH] refactor: update Delta --- litellm/types/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litellm/types/utils.py b/litellm/types/utils.py index 7ff02f3ad9f..1dabeee9010 100644 --- a/litellm/types/utils.py +++ b/litellm/types/utils.py @@ -745,7 +745,7 @@ class Delta(OpenAIObject): if images is not None: self.images = images else: - del self.image + del self.images if function_call is not None and isinstance(function_call, dict): self.function_call = FunctionCall(**function_call)