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

Method handleToolExecutionCompleted

ChatView/ClientInterface.cpp:635–647  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

633}
634
635void ClientInterface::handleToolExecutionCompleted(
636 const QString &requestId,
637 const QString &toolId,
638 const QString &toolName,
639 const QString &toolOutput)
640{
641 if (!m_activeRequests.contains(requestId)) {
642 LOG_MESSAGE(QString("Ignoring tool execution result for non-chat request: %1").arg(requestId));
643 return;
644 }
645
646 m_chatModel->updateToolResult(requestId, toolId, toolName, toolOutput);
647}
648
649bool ClientInterface::isImageFile(const QString &filePath) const
650{

Callers

nothing calls this directly

Calls 1

updateToolResultMethod · 0.80

Tested by

no test coverage detected