(
aiChatId: string,
content: string,
meta: { bufferBoundaryTimestamp: number; compressedMessageCount: number }
)
| 141 | } |
| 142 | |
| 143 | export function addSummaryMessage( |
| 144 | aiChatId: string, |
| 145 | content: string, |
| 146 | meta: { bufferBoundaryTimestamp: number; compressedMessageCount: number } |
| 147 | ) { |
| 148 | return getManager().addSummaryMessage(aiChatId, content, meta) |
| 149 | } |
| 150 | |
| 151 | export function getLatestSummary(aiChatId: string) { |
| 152 | return getManager().getLatestSummary(aiChatId) |
nothing calls this directly
no test coverage detected