(input: string | null)
| 1444 | } |
| 1445 | |
| 1446 | function getUltrathinkEffortAttachment(input: string | null): Attachment[] { |
| 1447 | if (!isUltrathinkEnabled() || !input || !hasUltrathinkKeyword(input)) { |
| 1448 | return [] |
| 1449 | } |
| 1450 | logEvent('tengu_ultrathink', {}) |
| 1451 | return [{ type: 'ultrathink_effort', level: 'high' }] |
| 1452 | } |
| 1453 | |
| 1454 | // Exported for compact.ts — the gate must be identical at both call sites. |
| 1455 | export function getDeferredToolsDeltaAttachment( |
no test coverage detected