MCPcopy Create free account
hub / github.com/Palm1r/QodeAssist / handleFullResponse

Method handleFullResponse

LLMClientInterface.cpp:54–65  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

52}
53
54void LLMClientInterface::handleFullResponse(const QString &requestId, const QString &fullText)
55{
56 auto it = m_activeRequests.find(requestId);
57 if (it == m_activeRequests.end())
58 return;
59
60 const RequestContext &ctx = it.value();
61 sendCompletionToClient(fullText, ctx.originalRequest, true);
62
63 m_activeRequests.erase(it);
64 m_performanceLogger.endTimeMeasurement(requestId);
65}
66
67void LLMClientInterface::handleRequestFinalized(
68 const ::LLMQore::RequestID &requestId, const ::LLMQore::CompletionInfo &info)

Callers

nothing calls this directly

Calls 2

valueMethod · 0.80
endTimeMeasurementMethod · 0.80

Tested by

no test coverage detected