@vscode/chat-lib 0.57.2026070903 → 0.57.2026071301
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/byok/node/openAIEndpoint.d.ts +2 -1
- package/dist/src/_internal/extension/byok/node/openAIEndpoint.d.ts.map +1 -1
- package/dist/src/_internal/extension/byok/node/openAIEndpoint.js +15 -4
- package/dist/src/_internal/extension/byok/node/openAIEndpoint.js.map +1 -1
- package/dist/src/_internal/extension/completions-core/vscode-node/prompt/src/snippetInclusion/selectRelevance.d.ts.map +1 -1
- package/dist/src/_internal/extension/completions-core/vscode-node/prompt/src/snippetInclusion/selectRelevance.js +2 -19
- package/dist/src/_internal/extension/completions-core/vscode-node/prompt/src/snippetInclusion/selectRelevance.js.map +1 -1
- package/dist/src/_internal/extension/prompt/node/chatMLFetcher.js +2 -2
- package/dist/src/_internal/extension/prompt/node/chatMLFetcher.js.map +1 -1
- package/dist/src/_internal/extension/xtab/common/promptCrafting.js +1 -1
- package/dist/src/_internal/extension/xtab/common/promptCrafting.js.map +1 -1
- package/dist/src/_internal/extension/xtab/common/recentFilesForPrompt.d.ts +2 -1
- package/dist/src/_internal/extension/xtab/common/recentFilesForPrompt.d.ts.map +1 -1
- package/dist/src/_internal/extension/xtab/common/recentFilesForPrompt.js +8 -3
- package/dist/src/_internal/extension/xtab/common/recentFilesForPrompt.js.map +1 -1
- package/dist/src/_internal/platform/endpoint/common/endpointProvider.d.ts +9 -2
- package/dist/src/_internal/platform/endpoint/common/endpointProvider.d.ts.map +1 -1
- package/dist/src/_internal/platform/endpoint/common/endpointProvider.js.map +1 -1
- package/dist/src/_internal/platform/endpoint/node/chatEndpoint.d.ts +6 -0
- package/dist/src/_internal/platform/endpoint/node/chatEndpoint.d.ts.map +1 -1
- package/dist/src/_internal/platform/endpoint/node/chatEndpoint.js +7 -1
- package/dist/src/_internal/platform/endpoint/node/chatEndpoint.js.map +1 -1
- package/dist/src/_internal/platform/networking/common/networking.d.ts +6 -0
- package/dist/src/_internal/platform/networking/common/networking.d.ts.map +1 -1
- package/dist/src/_internal/platform/networking/common/networking.js.map +1 -1
- package/dist/src/package.json +20 -8
- package/package.json +1 -1
package/dist/src/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "copilot-chat",
|
|
3
3
|
"displayName": "GitHub Copilot",
|
|
4
4
|
"description": "AI chat features powered by Copilot",
|
|
5
|
-
"version": "0.57.
|
|
5
|
+
"version": "0.57.2026071301",
|
|
6
6
|
"build": "1",
|
|
7
7
|
"completionsCoreVersion": "1.378.1799",
|
|
8
8
|
"internalLargeStorageAriaKey": "ec712b3202c5462fb6877acae7f1f9d7-c19ad55e-3e3c-4f99-984b-827f6d95bd9e-6917",
|
|
@@ -1967,9 +1967,10 @@
|
|
|
1967
1967
|
"type": "string",
|
|
1968
1968
|
"enum": [
|
|
1969
1969
|
"chat-completions",
|
|
1970
|
-
"responses"
|
|
1970
|
+
"responses",
|
|
1971
|
+
"messages"
|
|
1971
1972
|
],
|
|
1972
|
-
"markdownDescription": "Body shape used to forward the reasoning effort to the model. `chat-completions` sends a top-level `reasoning_effort` string. `responses` sends a nested `reasoning.effort` object. When unset the format follows the URL: `/responses` → nested, otherwise top-level."
|
|
1973
|
+
"markdownDescription": "Body shape used to forward the reasoning effort to the model. `chat-completions` sends a top-level `reasoning_effort` string. `responses` sends a nested `reasoning.effort` object. `messages` sends the Anthropic Messages `output_config.effort` field. When unset the format follows the URL: `/responses` → nested, `/messages` → `output_config.effort`, otherwise top-level."
|
|
1973
1974
|
},
|
|
1974
1975
|
"requestHeaders": {
|
|
1975
1976
|
"type": "object",
|
|
@@ -2153,9 +2154,10 @@
|
|
|
2153
2154
|
"type": "string",
|
|
2154
2155
|
"enum": [
|
|
2155
2156
|
"chat-completions",
|
|
2156
|
-
"responses"
|
|
2157
|
+
"responses",
|
|
2158
|
+
"messages"
|
|
2157
2159
|
],
|
|
2158
|
-
"markdownDescription": "Body shape used to forward the reasoning effort to the model. `chat-completions` sends a top-level `reasoning_effort` string. `responses` sends a nested `reasoning.effort` object. When unset the format follows the URL: `/responses` → nested, otherwise top-level."
|
|
2160
|
+
"markdownDescription": "Body shape used to forward the reasoning effort to the model. `chat-completions` sends a top-level `reasoning_effort` string. `responses` sends a nested `reasoning.effort` object. `messages` sends the Anthropic Messages `output_config.effort` field. When unset the format follows the URL: `/responses` → nested, `/messages` → `output_config.effort`, otherwise top-level."
|
|
2159
2161
|
},
|
|
2160
2162
|
"requestHeaders": {
|
|
2161
2163
|
"type": "object",
|
|
@@ -2306,9 +2308,10 @@
|
|
|
2306
2308
|
"type": "string",
|
|
2307
2309
|
"enum": [
|
|
2308
2310
|
"chat-completions",
|
|
2309
|
-
"responses"
|
|
2311
|
+
"responses",
|
|
2312
|
+
"messages"
|
|
2310
2313
|
],
|
|
2311
|
-
"markdownDescription": "Body shape used to forward the reasoning effort to the model. `chat-completions` sends a top-level `reasoning_effort` string. `responses` sends a nested `reasoning.effort` object. When unset the format follows the URL: `/responses` → nested, otherwise top-level."
|
|
2314
|
+
"markdownDescription": "Body shape used to forward the reasoning effort to the model. `chat-completions` sends a top-level `reasoning_effort` string. `responses` sends a nested `reasoning.effort` object. `messages` sends the Anthropic Messages `output_config.effort` field. When unset the format follows the URL: `/responses` → nested, `/messages` → `output_config.effort`, otherwise top-level."
|
|
2312
2315
|
},
|
|
2313
2316
|
"requestHeaders": {
|
|
2314
2317
|
"type": "object",
|
|
@@ -7258,7 +7261,7 @@
|
|
|
7258
7261
|
"@anthropic-ai/claude-agent-sdk": "0.2.112",
|
|
7259
7262
|
"@anthropic-ai/sdk": "^0.82.0",
|
|
7260
7263
|
"@github/blackbird-external-ingest-utils": "^0.3.0",
|
|
7261
|
-
"@github/copilot": "^1.0.
|
|
7264
|
+
"@github/copilot": "^1.0.70-0",
|
|
7262
7265
|
"@google/genai": "^1.22.0",
|
|
7263
7266
|
"@humanwhocodes/gitignore-to-minimatch": "1.0.2",
|
|
7264
7267
|
"@microsoft/tiktokenizer": "^1.0.10",
|
|
@@ -7317,5 +7320,14 @@
|
|
|
7317
7320
|
"flags": "verified"
|
|
7318
7321
|
},
|
|
7319
7322
|
"publisherDisplayName": "GitHub"
|
|
7323
|
+
},
|
|
7324
|
+
"allowScripts": {
|
|
7325
|
+
"esbuild@0.28.1": true,
|
|
7326
|
+
"keytar@7.9.0": true,
|
|
7327
|
+
"@playwright/browser-chromium@1.61.1": true,
|
|
7328
|
+
"@vscode/vsce-sign@2.0.5": true,
|
|
7329
|
+
"protobufjs": false,
|
|
7330
|
+
"fsevents@2.3.3": true,
|
|
7331
|
+
"fsevents@2.3.2": true
|
|
7320
7332
|
}
|
|
7321
7333
|
}
|
package/package.json
CHANGED