Clean up old unused chat API (#194857)

This commit is contained in:
Rob Lourens
2023-10-05 00:48:34 -07:00
committed by GitHub
parent 7d4027b62b
commit 3ab789159e
7 changed files with 1 additions and 79 deletions

View File

@@ -1305,10 +1305,6 @@ export function createApiFactoryAndRegisterActors(accessor: ServicesAccessor): I
checkProposedApiEnabled(extension, 'interactive');
return extHostChat.registerChatProvider(extension, id, provider);
},
addInteractiveRequest(context: vscode.InteractiveSessionRequestArgs) {
checkProposedApiEnabled(extension, 'interactive');
return extHostChat.addChatRequest(context);
},
sendInteractiveRequestToProvider(providerId: string, message: vscode.InteractiveSessionDynamicRequest) {
checkProposedApiEnabled(extension, 'interactive');
return extHostChat.sendInteractiveRequestToProvider(providerId, message);