@vscode/chat-lib 0.4.1-14 → 0.4.1-15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/src/_internal/extension/prompt/node/chatMLFetcher.d.ts +6 -0
- package/dist/src/_internal/extension/prompt/node/chatMLFetcher.d.ts.map +1 -1
- package/dist/src/_internal/extension/prompt/node/chatMLFetcher.js +57 -30
- package/dist/src/_internal/extension/prompt/node/chatMLFetcher.js.map +1 -1
- package/dist/src/_internal/platform/configuration/common/configurationService.d.ts +2 -0
- package/dist/src/_internal/platform/configuration/common/configurationService.d.ts.map +1 -1
- package/dist/src/_internal/platform/configuration/common/configurationService.js +3 -1
- package/dist/src/_internal/platform/configuration/common/configurationService.js.map +1 -1
- package/dist/src/_internal/platform/endpoint/common/chatModelCapabilities.js +2 -2
- package/dist/src/_internal/platform/endpoint/common/chatModelCapabilities.js.map +1 -1
- package/dist/src/_internal/platform/endpoint/node/messagesApi.d.ts.map +1 -1
- package/dist/src/_internal/platform/endpoint/node/messagesApi.js +55 -5
- package/dist/src/_internal/platform/endpoint/node/messagesApi.js.map +1 -1
- package/dist/src/_internal/platform/git/common/gitService.d.ts +4 -0
- package/dist/src/_internal/platform/git/common/gitService.d.ts.map +1 -1
- package/dist/src/_internal/platform/git/common/gitService.js.map +1 -1
- package/dist/src/_internal/platform/networking/common/anthropic.d.ts +8 -1
- package/dist/src/_internal/platform/networking/common/anthropic.d.ts.map +1 -1
- package/dist/src/_internal/platform/networking/common/anthropic.js +20 -4
- package/dist/src/_internal/platform/networking/common/anthropic.js.map +1 -1
- package/dist/src/package.json +114 -35
- package/package.json +1 -1
|
@@ -4,12 +4,13 @@
|
|
|
4
4
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
5
5
|
*--------------------------------------------------------------------------------------------*/
|
|
6
6
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
|
-
exports.
|
|
7
|
+
exports.nonDeferredToolNames = exports.CUSTOM_TOOL_SEARCH_NAME = exports.TOOL_SEARCH_TOOL_TYPE = exports.TOOL_SEARCH_TOOL_NAME = void 0;
|
|
8
8
|
exports.modelSupportsContextEditing = modelSupportsContextEditing;
|
|
9
9
|
exports.modelSupportsToolSearch = modelSupportsToolSearch;
|
|
10
10
|
exports.modelSupportsInterleavedThinking = modelSupportsInterleavedThinking;
|
|
11
11
|
exports.modelSupportsMemory = modelSupportsMemory;
|
|
12
12
|
exports.isAnthropicToolSearchEnabled = isAnthropicToolSearchEnabled;
|
|
13
|
+
exports.isAnthropicCustomToolSearchEnabled = isAnthropicCustomToolSearchEnabled;
|
|
13
14
|
exports.isAnthropicContextEditingEnabled = isAnthropicContextEditingEnabled;
|
|
14
15
|
exports.isAnthropicMemoryToolEnabled = isAnthropicMemoryToolEnabled;
|
|
15
16
|
exports.buildContextManagement = buildContextManagement;
|
|
@@ -21,6 +22,10 @@ const configurationService_1 = require("../../configuration/common/configuration
|
|
|
21
22
|
*
|
|
22
23
|
* TODO: @bhavyaus Replace these hardcoded strings with constants from ToolName enum
|
|
23
24
|
*/
|
|
25
|
+
exports.TOOL_SEARCH_TOOL_NAME = 'tool_search_tool_regex';
|
|
26
|
+
exports.TOOL_SEARCH_TOOL_TYPE = 'tool_search_tool_regex_20251119';
|
|
27
|
+
/** Name for the custom client-side embeddings-based tool search tool. Must not use copilot_/vscode_ prefix — those are reserved for static package.json declarations and will be rejected by vscode.lm.registerToolDefinition. */
|
|
28
|
+
exports.CUSTOM_TOOL_SEARCH_NAME = 'tool_search';
|
|
24
29
|
exports.nonDeferredToolNames = new Set([
|
|
25
30
|
// Read/navigate
|
|
26
31
|
'read_file',
|
|
@@ -49,10 +54,11 @@ exports.nonDeferredToolNames = new Set([
|
|
|
49
54
|
// Misc
|
|
50
55
|
'ask_questions',
|
|
51
56
|
'switch_agent',
|
|
52
|
-
'memory'
|
|
57
|
+
'memory',
|
|
58
|
+
'task_complete',
|
|
59
|
+
// Custom tool search (must always be available so the model can search for deferred tools)
|
|
60
|
+
exports.CUSTOM_TOOL_SEARCH_NAME,
|
|
53
61
|
]);
|
|
54
|
-
exports.TOOL_SEARCH_TOOL_NAME = 'tool_search_tool_regex';
|
|
55
|
-
exports.TOOL_SEARCH_TOOL_TYPE = 'tool_search_tool_regex_20251119';
|
|
56
62
|
/**
|
|
57
63
|
* Context editing is supported by:
|
|
58
64
|
* - Claude Haiku 4.5 (claude-haiku-4-5-* or claude-haiku-4.5-*)
|
|
@@ -143,6 +149,16 @@ function isAnthropicToolSearchEnabled(endpoint, configurationService) {
|
|
|
143
149
|
}
|
|
144
150
|
return configurationService.getConfig(configurationService_1.ConfigKey.AnthropicToolSearchEnabled);
|
|
145
151
|
}
|
|
152
|
+
/**
|
|
153
|
+
* Returns true when custom client-side embeddings-based tool search should be used
|
|
154
|
+
* instead of the server-side regex tool search.
|
|
155
|
+
*/
|
|
156
|
+
function isAnthropicCustomToolSearchEnabled(endpoint, configurationService, experimentationService) {
|
|
157
|
+
if (!isAnthropicToolSearchEnabled(endpoint, configurationService)) {
|
|
158
|
+
return false;
|
|
159
|
+
}
|
|
160
|
+
return configurationService.getExperimentBasedConfig(configurationService_1.ConfigKey.AnthropicToolSearchMode, experimentationService) === 'client';
|
|
161
|
+
}
|
|
146
162
|
function isAnthropicContextEditingEnabled(endpoint, configurationService, experimentationService) {
|
|
147
163
|
const effectiveModelId = typeof endpoint === 'string' ? endpoint : endpoint.model;
|
|
148
164
|
if (!modelSupportsContextEditing(effectiveModelId)) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"anthropic.js","sourceRoot":"","sources":["../../../../../../src/_internal/platform/networking/common/anthropic.ts"],"names":[],"mappings":";AAAA;;;gGAGgG;;;
|
|
1
|
+
{"version":3,"file":"anthropic.js","sourceRoot":"","sources":["../../../../../../src/_internal/platform/networking/common/anthropic.ts"],"names":[],"mappings":"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"}
|
package/dist/src/package.json
CHANGED
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"icon": "assets/copilot.png",
|
|
24
24
|
"pricing": "Trial",
|
|
25
25
|
"engines": {
|
|
26
|
-
"vscode": "^1.
|
|
26
|
+
"vscode": "^1.111.0",
|
|
27
27
|
"npm": ">=9.0.0",
|
|
28
28
|
"node": ">=22.14.0"
|
|
29
29
|
},
|
|
@@ -120,7 +120,7 @@
|
|
|
120
120
|
"authLearnMore",
|
|
121
121
|
"testObserver",
|
|
122
122
|
"aiTextSearchProvider@2",
|
|
123
|
-
"chatParticipantPrivate@
|
|
123
|
+
"chatParticipantPrivate@15",
|
|
124
124
|
"chatProvider@4",
|
|
125
125
|
"contribDebugCreateConfiguration",
|
|
126
126
|
"chatReferenceDiagnostic",
|
|
@@ -2288,6 +2288,12 @@
|
|
|
2288
2288
|
"enablement": "github.copilot.chat.reviewDiff.enabled && !github.copilot.interactiveSession.disabled",
|
|
2289
2289
|
"category": "Chat"
|
|
2290
2290
|
},
|
|
2291
|
+
{
|
|
2292
|
+
"command": "github.copilot.chat.codeReview.run",
|
|
2293
|
+
"title": "%github.copilot.command.codeReviewRun%",
|
|
2294
|
+
"enablement": "github.copilot.chat.reviewDiff.enabled && !github.copilot.interactiveSession.disabled",
|
|
2295
|
+
"category": "Chat"
|
|
2296
|
+
},
|
|
2291
2297
|
{
|
|
2292
2298
|
"command": "github.copilot.chat.review.previous",
|
|
2293
2299
|
"title": "%github.copilot.command.gotoPreviousReviewSuggestion%",
|
|
@@ -2729,6 +2735,34 @@
|
|
|
2729
2735
|
"icon": "$(git-stash-pop)",
|
|
2730
2736
|
"category": "GitHub Copilot"
|
|
2731
2737
|
},
|
|
2738
|
+
{
|
|
2739
|
+
"command": "github.copilot.chat.mergeCopilotCLIAgentSessionChanges.merge",
|
|
2740
|
+
"title": "%github.copilot.chat.mergeCopilotCLIAgentSessionChanges.merge%",
|
|
2741
|
+
"enablement": "!chatSessionRequestInProgress",
|
|
2742
|
+
"icon": "$(git-merge)",
|
|
2743
|
+
"category": "GitHub Copilot"
|
|
2744
|
+
},
|
|
2745
|
+
{
|
|
2746
|
+
"command": "github.copilot.chat.updateCopilotCLIAgentSessionChanges.update",
|
|
2747
|
+
"title": "%github.copilot.chat.updateCopilotCLIAgentSessionChanges.update%",
|
|
2748
|
+
"enablement": "!chatSessionRequestInProgress",
|
|
2749
|
+
"icon": "$(download)",
|
|
2750
|
+
"category": "GitHub Copilot"
|
|
2751
|
+
},
|
|
2752
|
+
{
|
|
2753
|
+
"command": "github.copilot.chat.createPullRequestCopilotCLIAgentSession.createPR",
|
|
2754
|
+
"title": "%github.copilot.chat.createPullRequestCopilotCLIAgentSession.createPR%",
|
|
2755
|
+
"enablement": "!chatSessionRequestInProgress",
|
|
2756
|
+
"icon": "$(git-pull-request-create)",
|
|
2757
|
+
"category": "GitHub Copilot"
|
|
2758
|
+
},
|
|
2759
|
+
{
|
|
2760
|
+
"command": "github.copilot.chat.openPullRequestCopilotCLIAgentSession.openPR",
|
|
2761
|
+
"title": "%github.copilot.chat.openPullRequestCopilotCLIAgentSession.openPR%",
|
|
2762
|
+
"enablement": "!chatSessionRequestInProgress",
|
|
2763
|
+
"icon": "$(link-external)",
|
|
2764
|
+
"category": "GitHub Copilot"
|
|
2765
|
+
},
|
|
2732
2766
|
{
|
|
2733
2767
|
"command": "github.copilot.chat.copilotCLI.addFileReference",
|
|
2734
2768
|
"title": "%github.copilot.command.chat.copilotCLI.addFileReference%",
|
|
@@ -2962,6 +2996,16 @@
|
|
|
2962
2996
|
"default": "",
|
|
2963
2997
|
"markdownDescription": "The currently selected completion model ID. To select from a list of available models, use the __\"Change Completions Model\"__ command or open the model picker (from the Copilot menu in the VS Code title bar, select __\"Configure Code Completions\"__ then __\"Change Completions Model\"__. The value must be a valid model ID. An empty value indicates that the default model will be used."
|
|
2964
2998
|
},
|
|
2999
|
+
"github.copilot.chat.claudeAgent.enabled": {
|
|
3000
|
+
"type": "boolean",
|
|
3001
|
+
"default": true,
|
|
3002
|
+
"markdownDescription": "%github.copilot.config.claudeAgent.enabled%"
|
|
3003
|
+
},
|
|
3004
|
+
"github.copilot.chat.claudeAgent.allowDangerouslySkipPermissions": {
|
|
3005
|
+
"type": "boolean",
|
|
3006
|
+
"default": false,
|
|
3007
|
+
"markdownDescription": "%github.copilot.config.claudeAgent.allowDangerouslySkipPermissions%"
|
|
3008
|
+
},
|
|
2965
3009
|
"github.copilot.chat.reviewAgent.enabled": {
|
|
2966
3010
|
"type": "boolean",
|
|
2967
3011
|
"default": true,
|
|
@@ -3039,6 +3083,14 @@
|
|
|
3039
3083
|
}
|
|
3040
3084
|
]
|
|
3041
3085
|
]
|
|
3086
|
+
},
|
|
3087
|
+
"github.copilot.chat.anthropic.useMessagesApi": {
|
|
3088
|
+
"type": "boolean",
|
|
3089
|
+
"default": true,
|
|
3090
|
+
"markdownDescription": "%github.copilot.config.useMessagesApi%",
|
|
3091
|
+
"tags": [
|
|
3092
|
+
"onExp"
|
|
3093
|
+
]
|
|
3042
3094
|
}
|
|
3043
3095
|
}
|
|
3044
3096
|
},
|
|
@@ -3061,22 +3113,6 @@
|
|
|
3061
3113
|
],
|
|
3062
3114
|
"markdownDescription": "%github.copilot.config.codesearch.enabled%"
|
|
3063
3115
|
},
|
|
3064
|
-
"github.copilot.chat.claudeAgent.enabled": {
|
|
3065
|
-
"type": "boolean",
|
|
3066
|
-
"default": true,
|
|
3067
|
-
"markdownDescription": "%github.copilot.config.claudeAgent.enabled%",
|
|
3068
|
-
"tags": [
|
|
3069
|
-
"preview"
|
|
3070
|
-
]
|
|
3071
|
-
},
|
|
3072
|
-
"github.copilot.chat.claudeAgent.allowDangerouslySkipPermissions": {
|
|
3073
|
-
"type": "boolean",
|
|
3074
|
-
"default": false,
|
|
3075
|
-
"markdownDescription": "%github.copilot.config.claudeAgent.allowDangerouslySkipPermissions%",
|
|
3076
|
-
"tags": [
|
|
3077
|
-
"preview"
|
|
3078
|
-
]
|
|
3079
|
-
},
|
|
3080
3116
|
"github.copilot.chat.copilotMemory.enabled": {
|
|
3081
3117
|
"type": "boolean",
|
|
3082
3118
|
"default": false,
|
|
@@ -3093,15 +3129,6 @@
|
|
|
3093
3129
|
"preview"
|
|
3094
3130
|
]
|
|
3095
3131
|
},
|
|
3096
|
-
"github.copilot.chat.anthropic.useMessagesApi": {
|
|
3097
|
-
"type": "boolean",
|
|
3098
|
-
"default": true,
|
|
3099
|
-
"markdownDescription": "%github.copilot.config.useMessagesApi%",
|
|
3100
|
-
"tags": [
|
|
3101
|
-
"preview",
|
|
3102
|
-
"onExp"
|
|
3103
|
-
]
|
|
3104
|
-
},
|
|
3105
3132
|
"github.copilot.chat.anthropic.thinking.budgetTokens": {
|
|
3106
3133
|
"type": "number",
|
|
3107
3134
|
"markdownDescription": "%github.copilot.config.anthropic.thinking.budgetTokens%",
|
|
@@ -3142,6 +3169,19 @@
|
|
|
3142
3169
|
"tags": [
|
|
3143
3170
|
"preview"
|
|
3144
3171
|
]
|
|
3172
|
+
},
|
|
3173
|
+
"github.copilot.chat.anthropic.toolSearchTool.mode": {
|
|
3174
|
+
"type": "string",
|
|
3175
|
+
"enum": [
|
|
3176
|
+
"server",
|
|
3177
|
+
"client"
|
|
3178
|
+
],
|
|
3179
|
+
"default": "server",
|
|
3180
|
+
"markdownDescription": "%github.copilot.config.anthropic.toolSearchTool.mode%",
|
|
3181
|
+
"tags": [
|
|
3182
|
+
"preview",
|
|
3183
|
+
"onExp"
|
|
3184
|
+
]
|
|
3145
3185
|
}
|
|
3146
3186
|
}
|
|
3147
3187
|
},
|
|
@@ -4369,7 +4409,7 @@
|
|
|
4369
4409
|
},
|
|
4370
4410
|
"github.copilot.chat.cli.isolationOption.enabled": {
|
|
4371
4411
|
"type": "boolean",
|
|
4372
|
-
"default":
|
|
4412
|
+
"default": true,
|
|
4373
4413
|
"markdownDescription": "%github.copilot.config.cli.isolationOption.enabled%",
|
|
4374
4414
|
"tags": [
|
|
4375
4415
|
"advanced"
|
|
@@ -4601,6 +4641,28 @@
|
|
|
4601
4641
|
"group": "navigation@0"
|
|
4602
4642
|
}
|
|
4603
4643
|
],
|
|
4644
|
+
"chat/input/editing/sessionApplyActions": [
|
|
4645
|
+
{
|
|
4646
|
+
"command": "github.copilot.chat.createPullRequestCopilotCLIAgentSession.createPR",
|
|
4647
|
+
"when": "chatSessionType == copilotcli && isSessionsWindow && !sessions.hasOpenPullRequest",
|
|
4648
|
+
"group": "navigation@0"
|
|
4649
|
+
},
|
|
4650
|
+
{
|
|
4651
|
+
"command": "github.copilot.chat.openPullRequestCopilotCLIAgentSession.openPR",
|
|
4652
|
+
"when": "chatSessionType == copilotcli && isSessionsWindow && sessions.hasOpenPullRequest",
|
|
4653
|
+
"group": "navigation@0"
|
|
4654
|
+
},
|
|
4655
|
+
{
|
|
4656
|
+
"command": "github.copilot.chat.mergeCopilotCLIAgentSessionChanges.merge",
|
|
4657
|
+
"when": "chatSessionType == copilotcli && isSessionsWindow",
|
|
4658
|
+
"group": "base@1"
|
|
4659
|
+
},
|
|
4660
|
+
{
|
|
4661
|
+
"command": "github.copilot.chat.updateCopilotCLIAgentSessionChanges.update",
|
|
4662
|
+
"when": "chatSessionType == copilotcli && isSessionsWindow",
|
|
4663
|
+
"group": "base@2"
|
|
4664
|
+
}
|
|
4665
|
+
],
|
|
4604
4666
|
"chat/contextUsage/actions": [
|
|
4605
4667
|
{
|
|
4606
4668
|
"command": "github.copilot.chat.compact"
|
|
@@ -4891,6 +4953,22 @@
|
|
|
4891
4953
|
"command": "github.copilot.chat.applyCopilotCLIAgentSessionChanges.apply",
|
|
4892
4954
|
"when": "false"
|
|
4893
4955
|
},
|
|
4956
|
+
{
|
|
4957
|
+
"command": "github.copilot.chat.mergeCopilotCLIAgentSessionChanges.merge",
|
|
4958
|
+
"when": "false"
|
|
4959
|
+
},
|
|
4960
|
+
{
|
|
4961
|
+
"command": "github.copilot.chat.updateCopilotCLIAgentSessionChanges.update",
|
|
4962
|
+
"when": "false"
|
|
4963
|
+
},
|
|
4964
|
+
{
|
|
4965
|
+
"command": "github.copilot.chat.createPullRequestCopilotCLIAgentSession.createPR",
|
|
4966
|
+
"when": "false"
|
|
4967
|
+
},
|
|
4968
|
+
{
|
|
4969
|
+
"command": "github.copilot.chat.openPullRequestCopilotCLIAgentSession.openPR",
|
|
4970
|
+
"when": "false"
|
|
4971
|
+
},
|
|
4894
4972
|
{
|
|
4895
4973
|
"command": "github.copilot.chat.showAsChatSession",
|
|
4896
4974
|
"when": "false"
|
|
@@ -5648,7 +5726,7 @@
|
|
|
5648
5726
|
"inputPlaceholder": "Run local tasks with Claude, type `#` for adding context",
|
|
5649
5727
|
"order": 3,
|
|
5650
5728
|
"description": "%github.copilot.session.providerDescription.claude%",
|
|
5651
|
-
"when": "config.github.copilot.chat.claudeAgent.enabled
|
|
5729
|
+
"when": "config.github.copilot.chat.claudeAgent.enabled",
|
|
5652
5730
|
"canDelegate": true,
|
|
5653
5731
|
"requiresCustomModels": true,
|
|
5654
5732
|
"capabilities": {
|
|
@@ -5693,11 +5771,11 @@
|
|
|
5693
5771
|
{
|
|
5694
5772
|
"type": "copilotcli",
|
|
5695
5773
|
"name": "cli",
|
|
5696
|
-
"displayName": "
|
|
5774
|
+
"displayName": "Copilot CLI",
|
|
5697
5775
|
"icon": "$(worktree)",
|
|
5698
|
-
"welcomeTitle": "
|
|
5699
|
-
"welcomeMessage": "Run tasks in the background",
|
|
5700
|
-
"inputPlaceholder": "Run tasks in the background, type `#` for adding context",
|
|
5776
|
+
"welcomeTitle": "Copilot CLI",
|
|
5777
|
+
"welcomeMessage": "Run tasks in the background with the Copilot CLI",
|
|
5778
|
+
"inputPlaceholder": "Run tasks in the background with the Copilot CLI, type `#` for adding context",
|
|
5701
5779
|
"order": 1,
|
|
5702
5780
|
"canDelegate": true,
|
|
5703
5781
|
"description": "%github.copilot.session.providerDescription.background%",
|
|
@@ -5925,6 +6003,7 @@
|
|
|
5925
6003
|
"@vscode/test-electron": "^2.5.2",
|
|
5926
6004
|
"@vscode/test-web": "^0.0.71",
|
|
5927
6005
|
"@vscode/vsce": "3.6.0",
|
|
6006
|
+
"agent-browser": "^0.16.3",
|
|
5928
6007
|
"copyfiles": "^2.4.1",
|
|
5929
6008
|
"csv-parse": "^6.0.0",
|
|
5930
6009
|
"dotenv": "^17.2.0",
|
|
@@ -5983,7 +6062,7 @@
|
|
|
5983
6062
|
"@anthropic-ai/claude-agent-sdk": "^0.2.63",
|
|
5984
6063
|
"@anthropic-ai/sdk": "^0.78.0",
|
|
5985
6064
|
"@github/blackbird-external-ingest-utils": "^0.3.0",
|
|
5986
|
-
"@github/copilot": "^0.0.
|
|
6065
|
+
"@github/copilot": "^0.0.421",
|
|
5987
6066
|
"@google/genai": "^1.22.0",
|
|
5988
6067
|
"@humanwhocodes/gitignore-to-minimatch": "1.0.2",
|
|
5989
6068
|
"@microsoft/tiktokenizer": "^1.0.10",
|
|
@@ -6031,5 +6110,5 @@
|
|
|
6031
6110
|
"node-gyp": "npm:node-gyp@10.3.1",
|
|
6032
6111
|
"zod": "3.25.76"
|
|
6033
6112
|
},
|
|
6034
|
-
"vscodeCommit": "
|
|
6113
|
+
"vscodeCommit": "9495e313c0eaec600ce20cd800648c99fabb52fd"
|
|
6035
6114
|
}
|