ChatUserActionRequired

Plays a signal - sound (audio cue) and/or announcement (alert) - when user action is required in the chat.

"accessibility.signals.chatUserActionRequired": {
        "sound": "off", // BUG 1
        "announcement": "auto"
    }, // default

Type

object

Default

{
  "sound": "off",
  "announcement": "auto"
}

Object Properties

KeyTypeDefaultRangeDescription
"sound"string"off""auto", "off", "on"Plays a sound when user action is required in the chat.
"announcement"string"auto""auto", "off"Announces when a user action is required in the chat - including information about the action and how to take it.

Description

Controls if sound and announcement signals are played when Copilot Chat is waiting for a response from you to continue.

When "sound" is set to "auto", the sound signal will only play if a screen reader is detected (attached?) or when "editor.accessibilitySupport": "on". When set to "off", the sound signal will never play even when a screen reader is attached or when "editor.accessibilitySupport": "on". When set to "on", the sound signal will always play even when a screen reader is not detected and "editor.accessibilitySupport": "on".

When "announcement" is set to "auto", the screen reader will make an announcement if it is attached. When set to "off", the screen reader will never make an announcement even when it it is attached.

NOTE:

BUGS

  1. No Default value indicator in the tooltip.