(chunk: Chunk)
| 530 | * @returns True if the chunk is of type 'toolCall', otherwise false. |
| 531 | */ |
| 532 | export const isToolCall = (chunk: Chunk): chunk is ToolCallChunk => |
| 533 | chunk.type === 'toolCall'; |
| 534 | |
| 535 | /** |
| 536 | * Checks if the given chunk is of type 'unknown'. |
nothing calls this directly
no outgoing calls
no test coverage detected