* Checks if a message is "streaming" - i.e., its content may still be changing. * Exported for testing.
(c)
| 291 | * Exported for testing. |
| 292 | */ |
| 293 | function _temp(c) { |
| 294 | return c.type === "text"; |
| 295 | } |
| 296 | export function isMessageStreaming(msg: RenderableMessage, streamingToolUseIDs: Set<string>): boolean { |
| 297 | if (msg.type === 'grouped_tool_use') { |
| 298 | return msg.messages.some(m => { |
nothing calls this directly
no outgoing calls
no test coverage detected