()
| 189 | : 'Image was too large. Double press esc to go back and try again with a smaller image.' |
| 190 | } |
| 191 | export function getRequestTooLargeErrorMessage(): string { |
| 192 | const limits = `max ${formatFileSize(PDF_TARGET_RAW_SIZE)}` |
| 193 | return getIsNonInteractiveSession() |
| 194 | ? `Request too large (${limits}). Try with a smaller file.` |
| 195 | : `Request too large (${limits}). Double press esc to go back and try with a smaller file.` |
| 196 | } |
| 197 | export const OAUTH_ORG_NOT_ALLOWED_ERROR_MESSAGE = |
| 198 | 'Your account does not have access to Claude Code. Please run /login.' |
| 199 |
no test coverage detected