* @brief Input schema for fs.delete. */
| 508 | * @brief Input schema for fs.delete. |
| 509 | */ |
| 510 | static QJsonObject fsDeleteInputSchema() |
| 511 | { |
| 512 | QJsonObject props; |
| 513 | props[QStringLiteral("path")] = |
| 514 | makeProperty(QStringLiteral("string"), |
| 515 | QStringLiteral("File or empty directory under the 'AI/' subfolder to delete.")); |
| 516 | return makeObjectSchema(props, QJsonArray{QStringLiteral("path")}); |
| 517 | } |
| 518 | |
| 519 | /** |
| 520 | * @brief Returns the fs.* virtual-tool catalog exposed to assistant providers. |
no test coverage detected