| 103 | } |
| 104 | |
| 105 | void ChatCompressor::onPartialResponseReceived(const QString &requestId, const QString &partialText) |
| 106 | { |
| 107 | if (!m_isCompressing || requestId != m_currentRequestId) |
| 108 | return; |
| 109 | |
| 110 | m_accumulatedSummary += partialText; |
| 111 | } |
| 112 | |
| 113 | void ChatCompressor::onFullResponseReceived(const QString &requestId, const QString &fullText) |
| 114 | { |
nothing calls this directly
no outgoing calls
no test coverage detected