| 125 | } |
| 126 | |
| 127 | QJsonObject GetIssuesListTool::parametersSchema() const |
| 128 | { |
| 129 | QJsonObject definition; |
| 130 | definition["type"] = "object"; |
| 131 | |
| 132 | QJsonObject properties; |
| 133 | properties["severity"] = QJsonObject{ |
| 134 | {"type", "string"}, |
| 135 | {"description", "Filter by severity: 'error', 'warning', or 'all'"}, |
| 136 | {"enum", QJsonArray{"error", "warning", "all"}}}; |
| 137 | |
| 138 | definition["properties"] = properties; |
| 139 | definition["required"] = QJsonArray(); |
| 140 | |
| 141 | return definition; |
| 142 | } |
| 143 | |
| 144 | QFuture<LLMQore::ToolResult> GetIssuesListTool::executeAsync(const QJsonObject &input) |
| 145 | { |
nothing calls this directly
no outgoing calls
no test coverage detected