From 3b7881168b617f50fc7202651a558be5509d4af4 Mon Sep 17 00:00:00 2001 From: Dillon Laird Date: Thu, 5 Sep 2024 10:26:01 -0700 Subject: [PATCH] add extract frames to util docs --- vision_agent/tools/tools.py | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/vision_agent/tools/tools.py b/vision_agent/tools/tools.py index 7840ba40..cdd47966 100644 --- a/vision_agent/tools/tools.py +++ b/vision_agent/tools/tools.py @@ -1856,15 +1856,5 @@ def overlay_counting_results( TOOL_DESCRIPTIONS = get_tool_descriptions(TOOLS) # type: ignore TOOL_DOCSTRING = get_tool_documentation(TOOLS) # type: ignore TOOLS_INFO = get_tools_info(FUNCTION_TOOLS) # type: ignore -UTILITIES_DOCSTRING = get_tool_documentation( - [ - save_json, - load_image, - save_image, - save_video, - overlay_bounding_boxes, - overlay_segmentation_masks, - overlay_heat_map, - overlay_counting_results, - ] -) +TOOLS_INFO = get_tools_info(TOOLS) # type: ignore +UTILITIES_DOCSTRING = get_tool_documentation(UTIL_TOOLS) # type: ignore