* @brief Input schema for assistant.listCheckpoints. */
| 358 | * @brief Input schema for assistant.listCheckpoints. |
| 359 | */ |
| 360 | static QJsonObject listCheckpointsInputSchema() |
| 361 | { |
| 362 | QJsonObject props; |
| 363 | props[QStringLiteral("limit")] = |
| 364 | makeProperty(QStringLiteral("integer"), |
| 365 | QStringLiteral("Cap the number of entries returned (default 20, max 50).")); |
| 366 | return makeObjectSchema(props); |
| 367 | } |
| 368 | |
| 369 | /** |
| 370 | * @brief Returns the snapshot/dataset/workspace tool schemas exposed under the assistant.* prefix. |
no test coverage detected