* @brief Input schema for fs.list. */
| 442 | * @brief Input schema for fs.list. |
| 443 | */ |
| 444 | static QJsonObject fsListInputSchema() |
| 445 | { |
| 446 | QJsonObject props; |
| 447 | props[QStringLiteral("path")] = makeProperty( |
| 448 | QStringLiteral("string"), |
| 449 | QStringLiteral("Directory path relative to the workspace folder (default '.'), or an " |
| 450 | "absolute path the user dragged into the chat.")); |
| 451 | props[QStringLiteral("recursive")] = makeProperty( |
| 452 | QStringLiteral("boolean"), QStringLiteral("Recurse into subdirectories (bounded depth).")); |
| 453 | return makeObjectSchema(props); |
| 454 | } |
| 455 | |
| 456 | /** |
| 457 | * @brief Input schema for fs.read. |
no test coverage detected