(chunk: Chunk)
| 521 | * @returns True if the chunk is a ContentChunk, false otherwise. |
| 522 | */ |
| 523 | export const isContent = (chunk: Chunk): chunk is ContentChunk => |
| 524 | chunk.type === 'content'; |
| 525 | |
| 526 | /** |
| 527 | * Determines if the given chunk is a ToolCallChunk. |
nothing calls this directly
no outgoing calls
no test coverage detected