| 20 | } |
| 21 | |
| 22 | bool Message::hasToolUse() const |
| 23 | { |
| 24 | for (const auto &block : m_blocks) { |
| 25 | if (dynamic_cast<LLMQore::ToolUseContent *>(block.get())) |
| 26 | return true; |
| 27 | } |
| 28 | return false; |
| 29 | } |
| 30 | |
| 31 | } // namespace QodeAssist |
nothing calls this directly
no outgoing calls
no test coverage detected