Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Chore/Enhancement: Improve 'Require Approval' Description to Indicate MemoryAgent Dependency #3680

Merged
7 changes: 6 additions & 1 deletion packages/components/nodes/sequentialagents/Agent/Agent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,12 @@ class Agent_SeqAgents implements INode {
{
label: 'Require Approval',
name: 'interrupt',
description: 'Require approval before executing tools. Will proceed when tools are not called',
description:
'Pause execution and request user approval before running tools.\n' +
'If enabled, the agent will prompt the user with customizable approve/reject options\n' +
'and will proceed only after approval. This requires a configured agent memory to manage\n' +
'the state and handle approval requests.\n' +
'If no tools are invoked, the agent proceeds without interruption.',
type: 'boolean',
optional: true
},
Expand Down
Loading