Add question feature (#289568)

* Initial commit of the question carousel

* some cleanup

* .

* .

* .

* .

* remove chat blocking on tool call

* refactor: update question carousel handling and remove blocking behavior

* feat: implement question carousel handling and response resolution

* feat: enhance question carousel with logging and auto-skip functionality

* refactor: remove question carousel data from various interfaces and implementations

* feat: enhance chat question carousel with answer restoration and default value handling

* feat: add ignore functionality to chat question carousel with appropriate handling

* yolo-mode support
This commit is contained in:
Karthik Nadig
2026-01-23 15:03:11 -08:00
committed by GitHub
parent 228e5a2f39
commit f7dc7a5d16
19 changed files with 1603 additions and 11 deletions

View File

@@ -1926,6 +1926,9 @@ export function createApiFactoryAndRegisterActors(accessor: ServicesAccessor): I
ChatResponseMarkdownWithVulnerabilitiesPart: extHostTypes.ChatResponseMarkdownWithVulnerabilitiesPart,
ChatResponseCommandButtonPart: extHostTypes.ChatResponseCommandButtonPart,
ChatResponseConfirmationPart: extHostTypes.ChatResponseConfirmationPart,
ChatQuestion: extHostTypes.ChatQuestion,
ChatQuestionType: extHostTypes.ChatQuestionType,
ChatResponseQuestionCarouselPart: extHostTypes.ChatResponseQuestionCarouselPart,
ChatResponseMovePart: extHostTypes.ChatResponseMovePart,
ChatResponseExtensionsPart: extHostTypes.ChatResponseExtensionsPart,
ChatResponseExternalEditPart: extHostTypes.ChatResponseExternalEditPart,