(data: SessionData, event: Event, sessionID: string, thinking: boolean, limits: Record<string, number>)
| 33 | const SHELL_SYNTHETIC_USER_TEXT = "The following tool was executed by the user" |
| 34 | |
| 35 | function apply(data: SessionData, event: Event, sessionID: string, thinking: boolean, limits: Record<string, number>) { |
| 36 | return reduceSessionData({ |
| 37 | data, |
| 38 | event, |
| 39 | sessionID, |
| 40 | thinking, |
| 41 | limits, |
| 42 | }) |
| 43 | } |
| 44 | |
| 45 | function mergePatch(left: FooterPatch | undefined, right: FooterPatch | undefined) { |
| 46 | if (!left) { |
no test coverage detected