Chore/Enhancement: Improve 'Require Approval' Description to Indicate MemoryAgent Dependency (#3680)
* Update 'Require Approval' button description to clarify dependency on MemoryAgent
* Refine RequiredApproval message description
* Fix message description by removing unscaped character ('\')
* Break line
* docs: clarify and enhance the "Require Approval" description for Agent node
* chore: slight update of the description
This commit is contained in:
parent
85abd157a2
commit
d5498858ec
|
|
@ -298,7 +298,12 @@ class Agent_SeqAgents implements INode {
|
||||||
{
|
{
|
||||||
label: 'Require Approval',
|
label: 'Require Approval',
|
||||||
name: 'interrupt',
|
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',
|
type: 'boolean',
|
||||||
optional: true
|
optional: true
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue