MCPcopy Create free account
hub / github.com/sourcebot-dev/sourcebot / isSBChatToolPart

Function isSBChatToolPart

packages/web/src/features/chat/utils.ts:24–26  ·  view source on GitHub ↗
(part: SBChatMessagePart)

Source from the content-addressed store, hash-verified

22export type SBChatToolPart = (ToolUIPart<SBChatMessageToolTypes> | DynamicToolUIPart) & SBChatMessagePart;
23
24export const isSBChatToolPart = (part: SBChatMessagePart): part is SBChatToolPart => {
25 return isToolUIPart(part);
26};
27
28export const insertMention = (editor: CustomEditor, data: MentionData, target?: Range | null) => {
29 const mention: MentionElement = {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected