past tense for optimizing tool selection (#313989)

This commit is contained in:
Justin Chen
2026-05-03 23:50:02 +02:00
committed by GitHub
parent bedd833d89
commit 8419cd4700
@@ -794,8 +794,9 @@ class DefaultToolCallingLoop extends ToolCallingLoop<IDefaultToolLoopOptions> {
const computePromise = this.toolGrouping.compute(this.options.request.prompt, token); // Show progress if this takes a moment...
const timeout = setTimeout(() => {
outputStream?.progress(l10n.t('Optimizing tool selection...'), async () => {
outputStream?.progress(l10n.t('Optimizing tool selection'), async () => {
await computePromise;
return l10n.t('Optimized tool selection');
});
}, 1000);