(part: StreamedMessagePart)
| 117 | |
| 118 | /** Check if a streamed part is a ToolCallPart (streaming argument delta). */ |
| 119 | export function isToolCallPart(part: StreamedMessagePart): part is ToolCallPart { |
| 120 | return part.type === 'tool_call_part'; |
| 121 | } |
| 122 | |
| 123 | /** |
| 124 | * Merge `source` into `target` in-place for streaming accumulation. |
no outgoing calls
no test coverage detected