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 @@ -408,11 +408,12 @@ export class ChatWidget extends Disposable implements IChatWidget {
408
408
if ( result ) {
409
409
this . inputPart . acceptInput ( query ) ;
410
410
result . responseCompletePromise . then ( async ( ) => {
411
-
412
411
const responses = this . viewModel ?. getItems ( ) . filter ( isResponseVM ) ;
413
412
const lastResponse = responses ?. [ responses . length - 1 ] ;
414
413
this . _chatAccessibilityService . acceptResponse ( lastResponse ) ;
415
414
} ) ;
415
+ } else {
416
+ this . _chatAccessibilityService . acceptResponse ( ) ;
416
417
}
417
418
}
418
419
}
@@ -519,7 +520,7 @@ export class ChatWidgetService implements IChatWidgetService {
519
520
}
520
521
521
522
522
- const CHAT_RESPONSE_PENDING_AUDIO_CUE_LOOP_MS = 7000 ;
523
+ const CHAT_RESPONSE_PENDING_AUDIO_CUE_LOOP_MS = 5000 ;
523
524
export class ChatAccessibilityService extends Disposable implements IChatAccessibilityService {
524
525
525
526
declare readonly _serviceBrand : undefined ;
You can’t perform that action at this time.
0 commit comments