()
| 33 | const GENAI_MESSAGE_ATTR_MAX_BYTES = 60 * 1024 |
| 34 | |
| 35 | function isGenAIMessageCaptureEnabled(): boolean { |
| 36 | const raw = (process.env[GENAI_CAPTURE_ENV] || '').toLowerCase().trim() |
| 37 | return raw === 'true' || raw === '1' || raw === 'yes' |
| 38 | } |
| 39 | |
| 40 | // True iff `err` represents the user explicitly clicking Stop — the |
| 41 | // only cancellation we treat as expected (non-error). |
no outgoing calls
no test coverage detected