fix: reset is_background (#644)
This commit is contained in:
parent
724c24933c
commit
56808ac210
2 changed files with 5 additions and 1 deletions
|
|
@ -419,6 +419,11 @@ export class ShellTool extends BaseDeclarativeTool<
|
|||
type: 'string',
|
||||
description: getCommandDescription(),
|
||||
},
|
||||
is_background: {
|
||||
type: 'boolean',
|
||||
description:
|
||||
'Whether to run the command in background. Default is false. Set to true for long-running processes like development servers, watchers, or daemons that should continue running without blocking further commands.',
|
||||
},
|
||||
description: {
|
||||
type: 'string',
|
||||
description:
|
||||
|
|
|
|||
|
|
@ -14,7 +14,6 @@ const ajValidator = new AjvClass({ coerceTypes: true });
|
|||
const addFormatsFunc = (addFormats as any).default || addFormats;
|
||||
addFormatsFunc(ajValidator);
|
||||
|
||||
|
||||
/**
|
||||
* Simple utility to validate objects against JSON Schemas
|
||||
*/
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue