From ffc1bbdde3f1ac67e2eefa81149e509c2d08e9b0 Mon Sep 17 00:00:00 2001 From: Dillon Laird Date: Tue, 28 May 2024 14:24:29 -0700 Subject: [PATCH] fixed type issue --- vision_agent/agent/vision_agent_v3.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vision_agent/agent/vision_agent_v3.py b/vision_agent/agent/vision_agent_v3.py index 21456251..d9fb8821 100644 --- a/vision_agent/agent/vision_agent_v3.py +++ b/vision_agent/agent/vision_agent_v3.py @@ -333,7 +333,7 @@ def chat_with_workflow( self.verbosity, ) results = write_and_test_code( - FULL_TASK.format(user_request=chat[0]["content"], subtasks=plan_i_str), # type: ignore + FULL_TASK.format(user_request=chat[0]["content"], subtasks=plan_i_str), tool_info, UTILITIES_DOCSTRING, format_memory(working_memory),