File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
src/vs/workbench/contrib/chat/browser Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -407,11 +407,12 @@ export class ChatWidget extends Disposable implements IChatWidget {
407
407
if ( result ) {
408
408
this . inputPart . acceptInput ( query ) ;
409
409
result . responseCompletePromise . then ( async ( ) => {
410
-
411
410
const responses = this . viewModel ?. getItems ( ) . filter ( isResponseVM ) ;
412
411
const lastResponse = responses ?. [ responses . length - 1 ] ;
413
412
this . _chatAccessibilityService . acceptResponse ( lastResponse ) ;
414
413
} ) ;
414
+ } else {
415
+ this . _chatAccessibilityService . acceptResponse ( ) ;
415
416
}
416
417
}
417
418
}
@@ -518,7 +519,7 @@ export class ChatWidgetService implements IChatWidgetService {
518
519
}
519
520
520
521
521
- const CHAT_RESPONSE_PENDING_AUDIO_CUE_LOOP_MS = 7000 ;
522
+ const CHAT_RESPONSE_PENDING_AUDIO_CUE_LOOP_MS = 5000 ;
522
523
export class ChatAccessibilityService extends Disposable implements IChatAccessibilityService {
523
524
524
525
declare readonly _serviceBrand : undefined ;
You can’t perform that action at this time.
0 commit comments