(block: ContentBlockParam)
| 53 | } |
| 54 | |
| 55 | function isImageBlock(block: ContentBlockParam): block is ImageBlockParam { |
| 56 | return block.type === 'image' |
| 57 | } |
| 58 | |
| 59 | export function getContentSizeEstimate(content: MCPToolResult): number { |
| 60 | if (!content) return 0 |
no outgoing calls
no test coverage detected