(raw: string)
| 131 | * caller short-circuits), not a false negative. |
| 132 | */ |
| 133 | export function isMediaSizeError(raw: string): boolean { |
| 134 | return ( |
| 135 | (raw.includes('image exceeds') && raw.includes('maximum')) || |
| 136 | (raw.includes('image dimensions exceed') && raw.includes('many-image')) || |
| 137 | /maximum of \d+ PDF pages/.test(raw) |
| 138 | ) |
| 139 | } |
| 140 | |
| 141 | /** |
| 142 | * Message-level predicate: is this assistant message a media-size rejection? |
no outgoing calls
no test coverage detected