You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -27458,6 +27460,10 @@ let checkFinalThoughtsPrompt = `Action: {"command":{"name":"thought","args":{"me
27458
27460
{
27459
27461
localsettings.agentHideCOT = true
27460
27462
}
27463
+
if (localsettings?.agentStopOnRequestForInput == undefined)
27464
+
{
27465
+
localsettings.agentStopOnRequestForInput = true
27466
+
}
27461
27467
if (localsettings?.agentCOTMax == undefined)
27462
27468
{
27463
27469
localsettings.agentCOTMax = 5
@@ -27569,6 +27575,9 @@ let checkFinalThoughtsPrompt = `Action: {"command":{"name":"thought","args":{"me
27569
27575
settingLabelElem = createSettingElemRange("agentCOTMax", "Maximum agent actions", "Defines the maximum number of actions the agent can take without a user input", 1, 20, 1, 5)
27570
27576
lastSettingContainer.append(settingLabelElem)
27571
27577
27578
+
settingLabelElem = createSettingElemBool("agentStopOnRequestForInput", "Stop on request for input from agent", "Stops the current agent processing if it asks for user input")
27579
+
lastSettingContainer.append(settingLabelElem)
27580
+
27572
27581
// Hidden as this is no longer is in use for now
27573
27582
settingLabelElem = createSettingElemRange("agentCOTRepeatsMax", "Maximum repeated agent actions of a type", "Defines the maximum number of actions the agent can take of the same type without a user input", 1, 20, 1, 1)
0 commit comments