utils.ts
tools/utils.ts
41
Lines
1105
Bytes
2
Exports
1
Imports
10
Keywords
What this is
This page documents one file from the repository and includes its full source so you can read it without leaving the docs site.
Beginner explanation
This file is part of the tool layer, which means it describes actions the system can perform for the user or model.
How it is used
Start from the exports list and related files. Those are the easiest clues for where this file fits into the system.
Expert explanation
Architecturally, this file intersects with tool-system. It contains 41 lines, 1 detected imports, and 2 detected exports.
Important relationships
Detected exports
tagMessagesWithToolUseIDgetToolUseIDFromParentMessage
Keywords
messagemessagestooluseblockattachmentmessagesystemmessageusermessagetooltooluseidblockassistantmessage
Detected imports
src/types/message.js
Source notes
This page embeds the full file contents. Small or leaf files are still indexed honestly instead of being over-explained.
Full source
import type {
AssistantMessage,
AttachmentMessage,
SystemMessage,
UserMessage,
} from 'src/types/message.js'
/**
* Tags user messages with a sourceToolUseID so they stay transient until the tool resolves.
* This prevents the "is running" message from being duplicated in the UI.
*/
export function tagMessagesWithToolUseID(
messages: (UserMessage | AttachmentMessage | SystemMessage)[],
toolUseID: string | undefined,
): (UserMessage | AttachmentMessage | SystemMessage)[] {
if (!toolUseID) {
return messages
}
return messages.map(m => {
if (m.type === 'user') {
return { ...m, sourceToolUseID: toolUseID }
}
return m
})
}
/**
* Extracts the tool use ID from a parent message for a given tool name.
*/
export function getToolUseIDFromParentMessage(
parentMessage: AssistantMessage,
toolName: string,
): string | undefined {
const toolUseBlock = parentMessage.message.content.find(
block => block.type === 'tool_use' && block.name === toolName,
)
return toolUseBlock && toolUseBlock.type === 'tool_use'
? toolUseBlock.id
: undefined
}