(blockType?: string)
| 50 | * Checks if a block type should be tokenized |
| 51 | */ |
| 52 | export function isTokenizableBlockType(blockType?: string): boolean { |
| 53 | if (!blockType) return false |
| 54 | return LLM_BLOCK_TYPES.includes(blockType as any) |
| 55 | } |
| 56 | |
| 57 | /** |
| 58 | * Checks if tokens/cost data is meaningful (non-zero) |
no outgoing calls
no test coverage detected