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
@@ -459,7 +460,7 @@ async function showToolsPickerTree(
459
460
if(toolLimit){
460
461
if(count>toolLimit){
461
462
treePicker.severity=Severity.Warning;
462
-
treePicker.validationMessage=localize('toolLimitExceeded',"{0} tools are enabled. You may experience degraded tool calling above {1} tools.",count,toolLimit);
463
+
treePicker.validationMessage=localize('toolLimitExceeded',"{0} tools are enabled. You may experience degraded tool calling above {1} tools.",count,markdownCommandLink({title: String(toolLimit),id: '_chat.toolPicker.closeAndOpenVirtualThreshold'}));
463
464
}else{
464
465
treePicker.severity=Severity.Ignore;
465
466
treePicker.validationMessage=undefined;
@@ -476,6 +477,15 @@ async function showToolsPickerTree(
476
477
};
477
478
collectResults();
478
479
480
+
// Temporary command to close the picker and open settings, for use in the validation message
0 commit comments