From 616aff3515adaae702e8605b3bb55f3aef4fe7ed Mon Sep 17 00:00:00 2001 From: pablodanswer Date: Tue, 28 Jan 2025 21:58:19 -0800 Subject: [PATCH] clarification --- web/src/app/chat/tools/constants.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/web/src/app/chat/tools/constants.ts b/web/src/app/chat/tools/constants.ts index f07af41924c..5f970b6f16d 100644 --- a/web/src/app/chat/tools/constants.ts +++ b/web/src/app/chat/tools/constants.ts @@ -1,7 +1,9 @@ +// Tool names as referenced by tool results / tool calls export const SEARCH_TOOL_NAME = "run_search"; export const INTERNET_SEARCH_TOOL_NAME = "run_internet_search"; export const IMAGE_GENERATION_TOOL_NAME = "run_image_generation"; +// In-code tool IDs that also correspond to the tool's name when associated with a persona export const SEARCH_TOOL_ID = "SearchTool"; export const IIMAGE_GENERATION_TOOL_ID = "ImageGenerationTool"; export const INTERNET_SEARCH_TOOL_ID = "InternetSearchTool";