diff --git a/vision_agent/tools/tools.py b/vision_agent/tools/tools.py index f0a6bc29..8bb86aca 100644 --- a/vision_agent/tools/tools.py +++ b/vision_agent/tools/tools.py @@ -1857,15 +1857,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