Function
getCriticalSystemReminderAttachment
(
toolUseContext: ToolUseContext,
)
Source from the content-addressed store, hash-verified
| 1585 | } |
| 1586 | |
| 1587 | function getCriticalSystemReminderAttachment( |
| 1588 | toolUseContext: ToolUseContext, |
| 1589 | ): Attachment[] { |
| 1590 | const reminder = toolUseContext.criticalSystemReminder_EXPERIMENTAL |
| 1591 | if (!reminder) { |
| 1592 | return [] |
| 1593 | } |
| 1594 | return [{ type: 'critical_system_reminder', content: reminder }] |
| 1595 | } |
| 1596 | |
| 1597 | function getOutputStyleAttachment(): Attachment[] { |
| 1598 | const settings = getSettings_DEPRECATED() |
Tested by
no test coverage detected