(sid: string)
| 84 | } |
| 85 | |
| 86 | function toolCallSetFor(sid: string): Set<string> { |
| 87 | let s = seenToolCallIds.get(sid); |
| 88 | if (!s) { s = new Set<string>(); seenToolCallIds.set(sid, s); } |
| 89 | return s; |
| 90 | } |
| 91 | |
| 92 | function pruneSessionMaps(sid: string): void { |
| 93 | stashedFiles.delete(sid); |
no test coverage detected