( content: NonNullable<ToolResultBlockParam['content']>, )
| 505 | } |
| 506 | |
| 507 | function hasImageBlock( |
| 508 | content: NonNullable<ToolResultBlockParam['content']>, |
| 509 | ): boolean { |
| 510 | return ( |
| 511 | Array.isArray(content) && |
| 512 | content.some( |
| 513 | b => typeof b === 'object' && 'type' in b && b.type === 'image', |
| 514 | ) |
| 515 | ) |
| 516 | } |
| 517 | |
| 518 | function contentSize( |
| 519 | content: NonNullable<ToolResultBlockParam['content']>, |
no outgoing calls
no test coverage detected