Skip to content

Commit

Permalink
added overlays to utilities
Browse files Browse the repository at this point in the history
  • Loading branch information
dillonalaird committed May 29, 2024
1 parent ed60afe commit b7fb5c2
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion vision_agent/tools/tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -734,5 +734,12 @@ def get_tools_df(funcs: List[Callable[..., Any]]) -> pd.DataFrame:
TOOL_DESCRIPTIONS = get_tool_descriptions(TOOLS) # type: ignore
TOOL_DOCSTRING = get_tool_documentation(TOOLS) # type: ignore
UTILITIES_DOCSTRING = get_tool_documentation(
[save_json, load_image, save_image, overlay_bounding_boxes]
[
save_json,
load_image,
save_image,
overlay_bounding_boxes,
overlay_segmentation_masks,
overlay_heat_map,
]
)

0 comments on commit b7fb5c2

Please sign in to comment.