* @brief Input schema for assistant.checkpoint. */
| 330 | * @brief Input schema for assistant.checkpoint. |
| 331 | */ |
| 332 | static QJsonObject checkpointInputSchema() |
| 333 | { |
| 334 | QJsonObject props; |
| 335 | props[QStringLiteral("label")] = makeProperty( |
| 336 | QStringLiteral("string"), QStringLiteral("Optional human-readable tag for the checkpoint.")); |
| 337 | return makeObjectSchema(props); |
| 338 | } |
| 339 | |
| 340 | /** |
| 341 | * @brief Input schema for assistant.restore. |
no test coverage detected