| 633 | } |
| 634 | |
| 635 | void 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 | |
| 649 | bool ClientInterface::isImageFile(const QString &filePath) const |
| 650 | { |
nothing calls this directly
no test coverage detected