| 42 | } |
| 43 | |
| 44 | QJsonObject ListProjectFilesTool::parametersSchema() const |
| 45 | { |
| 46 | QJsonObject definition; |
| 47 | definition["type"] = "object"; |
| 48 | definition["properties"] = QJsonObject(); |
| 49 | definition["required"] = QJsonArray(); |
| 50 | |
| 51 | return definition; |
| 52 | } |
| 53 | |
| 54 | QFuture<LLMQore::ToolResult> ListProjectFilesTool::executeAsync(const QJsonObject &input) |
| 55 | { |
nothing calls this directly
no test coverage detected