[AI Chat] [Conversation API V2] Don't show tool use UI for server search tools (#33653)

* [AI Chat] Do not display tool use event for server search tools
This commit is contained in:
Jocelyn Liu
2026-02-10 13:08:56 -08:00
committed by GitHub
parent d8fa248aad
commit 58acc058f3
@@ -62,6 +62,11 @@ export function getToolLabel(toolName: string, toolInput: any) {
return getLocale(S.CHAT_UI_TOOL_LABEL_WAIT)
case Mojom.CODE_EXECUTION_TOOL_NAME:
return getLocale(S.CHAT_UI_TOOL_LABEL_CODE_EXECUTION)
case Mojom.BRAVE_NEWS_SEARCH_TOOL_NAME:
case Mojom.BRAVE_WEB_SEARCH_TOOL_NAME:
// Tool use events for server search tools are not displayed here but
// through existing WebSourcesEvent and SearchQueriesEvent.
return null
default:
return toolName
}