From e27bcfb381b7368ca5e9e94798de3c3ab4693e6f Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Sat, 3 May 2025 02:30:01 +0000 Subject: [PATCH] Fix type annotation for images variable Co-Authored-By: Joe Moura --- src/crewai/patches/litellm_patch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/crewai/patches/litellm_patch.py b/src/crewai/patches/litellm_patch.py index e65615e75..60eb805af 100644 --- a/src/crewai/patches/litellm_patch.py +++ b/src/crewai/patches/litellm_patch.py @@ -65,7 +65,7 @@ def patch_litellm_ollama_pt(): """ user_message_types = {"user", "tool", "function"} msg_i = 0 - images = [] + images: List[str] = [] prompt = "" # Handle empty messages list