mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-24 18:49:00 +01:00
make sure errors are recreated when making LM requests (#216807)
* add integration tests for LanguageModelChat#sendRequest * make sure errors are recreated when making LM requests * disable test with a note for later * fix remote integration tests
This commit is contained in:
@@ -7,13 +7,14 @@
|
||||
"enabledApiProposals": [
|
||||
"activeComment",
|
||||
"authSession",
|
||||
"defaultChatParticipant",
|
||||
"chatParticipantPrivate",
|
||||
"chatProvider",
|
||||
"chatVariableResolver",
|
||||
"contribViewsRemote",
|
||||
"contribStatusBarItems",
|
||||
"contribViewsRemote",
|
||||
"createFileSystemWatcher",
|
||||
"customEditorMove",
|
||||
"defaultChatParticipant",
|
||||
"diffCommand",
|
||||
"documentFiltersExclusive",
|
||||
"documentPaste",
|
||||
@@ -27,6 +28,8 @@
|
||||
"findTextInFiles",
|
||||
"fsChunks",
|
||||
"interactive",
|
||||
"languageStatusText",
|
||||
"lmTools",
|
||||
"mappedEditsProvider",
|
||||
"notebookCellExecutionState",
|
||||
"notebookDeprecated",
|
||||
@@ -35,26 +38,24 @@
|
||||
"notebookMime",
|
||||
"portsAttributes",
|
||||
"quickPickSortByLabel",
|
||||
"languageStatusText",
|
||||
"resolvers",
|
||||
"scmActionButton",
|
||||
"scmSelectedProvider",
|
||||
"scmTextDocument",
|
||||
"scmValidation",
|
||||
"taskPresentationGroup",
|
||||
"telemetry",
|
||||
"terminalDataWriteEvent",
|
||||
"terminalDimensions",
|
||||
"terminalShellIntegration",
|
||||
"tunnels",
|
||||
"testObserver",
|
||||
"textSearchProvider",
|
||||
"timeline",
|
||||
"tokenInformation",
|
||||
"treeViewActiveItem",
|
||||
"treeViewReveal",
|
||||
"workspaceTrust",
|
||||
"telemetry",
|
||||
"lmTools"
|
||||
"tunnels",
|
||||
"workspaceTrust"
|
||||
],
|
||||
"private": true,
|
||||
"activationEvents": [],
|
||||
@@ -64,6 +65,11 @@
|
||||
},
|
||||
"icon": "media/icon.png",
|
||||
"contributes": {
|
||||
"languageModels": [
|
||||
{
|
||||
"vendor": "test-lm-vendor"
|
||||
}
|
||||
],
|
||||
"chatParticipants": [
|
||||
{
|
||||
"id": "api-test.participant",
|
||||
|
||||
Reference in New Issue
Block a user