@vscode/chat-lib 0.48.2026051206 → 0.49.2026051802
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 +1 -1
- package/dist/src/_internal/extension/byok/node/openAIEndpoint.d.ts.map +1 -1
- package/dist/src/_internal/extension/byok/node/openAIEndpoint.js +17 -7
- package/dist/src/_internal/extension/byok/node/openAIEndpoint.js.map +1 -1
- package/dist/src/_internal/extension/prompt/node/chatMLFetcher.d.ts.map +1 -1
- package/dist/src/_internal/extension/prompt/node/chatMLFetcher.js +4 -3
- package/dist/src/_internal/extension/prompt/node/chatMLFetcher.js.map +1 -1
- package/dist/src/_internal/platform/authentication/common/copilotToken.d.ts +6 -5
- package/dist/src/_internal/platform/authentication/common/copilotToken.d.ts.map +1 -1
- package/dist/src/_internal/platform/authentication/common/copilotToken.js +8 -4
- package/dist/src/_internal/platform/authentication/common/copilotToken.js.map +1 -1
- package/dist/src/_internal/platform/authentication/node/copilotTokenManager.js +1 -1
- package/dist/src/_internal/platform/authentication/node/copilotTokenManager.js.map +1 -1
- package/dist/src/_internal/platform/chat/common/chatQuotaService.d.ts +11 -0
- package/dist/src/_internal/platform/chat/common/chatQuotaService.d.ts.map +1 -1
- package/dist/src/_internal/platform/chat/common/chatQuotaService.js.map +1 -1
- package/dist/src/_internal/platform/chat/common/chatQuotaServiceImpl.d.ts +4 -1
- package/dist/src/_internal/platform/chat/common/chatQuotaServiceImpl.d.ts.map +1 -1
- package/dist/src/_internal/platform/chat/common/chatQuotaServiceImpl.js +41 -3
- package/dist/src/_internal/platform/chat/common/chatQuotaServiceImpl.js.map +1 -1
- package/dist/src/_internal/platform/chat/common/commonTypes.d.ts +2 -1
- package/dist/src/_internal/platform/chat/common/commonTypes.d.ts.map +1 -1
- package/dist/src/_internal/platform/chat/common/commonTypes.js +51 -17
- package/dist/src/_internal/platform/chat/common/commonTypes.js.map +1 -1
- package/dist/src/_internal/platform/configuration/common/configurationService.d.ts +20 -15
- package/dist/src/_internal/platform/configuration/common/configurationService.d.ts.map +1 -1
- package/dist/src/_internal/platform/configuration/common/configurationService.js +14 -14
- package/dist/src/_internal/platform/configuration/common/configurationService.js.map +1 -1
- package/dist/src/_internal/platform/configuration/common/defaultsOnlyConfigurationService.d.ts +2 -2
- package/dist/src/_internal/platform/configuration/common/defaultsOnlyConfigurationService.d.ts.map +1 -1
- package/dist/src/_internal/platform/configuration/common/defaultsOnlyConfigurationService.js +1 -1
- package/dist/src/_internal/platform/configuration/common/defaultsOnlyConfigurationService.js.map +1 -1
- package/dist/src/_internal/platform/endpoint/common/chatModelCapabilities.d.ts +3 -7
- package/dist/src/_internal/platform/endpoint/common/chatModelCapabilities.d.ts.map +1 -1
- package/dist/src/_internal/platform/endpoint/common/chatModelCapabilities.js +17 -29
- package/dist/src/_internal/platform/endpoint/common/chatModelCapabilities.js.map +1 -1
- package/dist/src/_internal/platform/endpoint/common/endpointProvider.d.ts +1 -1
- package/dist/src/_internal/platform/endpoint/common/endpointProvider.d.ts.map +1 -1
- package/dist/src/_internal/platform/endpoint/node/chatEndpoint.d.ts +3 -3
- package/dist/src/_internal/platform/endpoint/node/chatEndpoint.d.ts.map +1 -1
- package/dist/src/_internal/platform/endpoint/node/chatEndpoint.js +10 -4
- package/dist/src/_internal/platform/endpoint/node/chatEndpoint.js.map +1 -1
- package/dist/src/_internal/platform/endpoint/node/copilotChatEndpoint.d.ts +24 -0
- package/dist/src/_internal/platform/endpoint/node/copilotChatEndpoint.d.ts.map +1 -1
- package/dist/src/_internal/platform/endpoint/node/copilotChatEndpoint.js +31 -1
- package/dist/src/_internal/platform/endpoint/node/copilotChatEndpoint.js.map +1 -1
- package/dist/src/_internal/platform/endpoint/node/messagesApi.d.ts +20 -3
- package/dist/src/_internal/platform/endpoint/node/messagesApi.d.ts.map +1 -1
- package/dist/src/_internal/platform/endpoint/node/messagesApi.js +275 -74
- package/dist/src/_internal/platform/endpoint/node/messagesApi.js.map +1 -1
- package/dist/src/_internal/platform/endpoint/node/modelMetadataFetcher.d.ts +96 -0
- package/dist/src/_internal/platform/endpoint/node/modelMetadataFetcher.d.ts.map +1 -0
- package/dist/src/_internal/platform/endpoint/node/modelMetadataFetcher.js +303 -0
- package/dist/src/_internal/platform/endpoint/node/modelMetadataFetcher.js.map +1 -0
- package/dist/src/_internal/platform/endpoint/node/responsesApi.d.ts +7 -0
- package/dist/src/_internal/platform/endpoint/node/responsesApi.d.ts.map +1 -1
- package/dist/src/_internal/platform/endpoint/node/responsesApi.js +163 -5
- package/dist/src/_internal/platform/endpoint/node/responsesApi.js.map +1 -1
- package/dist/src/_internal/platform/github/common/githubService.d.ts +3 -0
- package/dist/src/_internal/platform/github/common/githubService.d.ts.map +1 -1
- package/dist/src/_internal/platform/github/common/githubService.js +42 -13
- package/dist/src/_internal/platform/github/common/githubService.js.map +1 -1
- package/dist/src/_internal/platform/networking/common/anthropic.d.ts +53 -1
- package/dist/src/_internal/platform/networking/common/anthropic.d.ts.map +1 -1
- package/dist/src/_internal/platform/networking/common/anthropic.js +76 -5
- package/dist/src/_internal/platform/networking/common/anthropic.js.map +1 -1
- package/dist/src/_internal/platform/networking/common/fetch.d.ts +1 -4
- package/dist/src/_internal/platform/networking/common/fetch.d.ts.map +1 -1
- package/dist/src/_internal/platform/networking/common/networking.d.ts +2 -2
- package/dist/src/_internal/platform/networking/common/networking.d.ts.map +1 -1
- package/dist/src/_internal/platform/networking/common/networking.js +1 -1
- package/dist/src/_internal/platform/networking/common/networking.js.map +1 -1
- package/dist/src/_internal/util/common/taskSingler.d.ts +9 -0
- package/dist/src/_internal/util/common/taskSingler.d.ts.map +1 -0
- package/dist/src/_internal/util/common/taskSingler.js +27 -0
- package/dist/src/_internal/util/common/taskSingler.js.map +1 -0
- package/dist/src/main.d.ts.map +1 -1
- package/dist/src/main.js +1 -1
- package/dist/src/main.js.map +1 -1
- package/dist/src/package.json +206 -55
- package/package.json +1 -1
package/dist/src/package.json
CHANGED
|
@@ -2,9 +2,8 @@
|
|
|
2
2
|
"name": "copilot-chat",
|
|
3
3
|
"displayName": "GitHub Copilot Chat",
|
|
4
4
|
"description": "AI chat features powered by Copilot",
|
|
5
|
-
"version": "0.
|
|
5
|
+
"version": "0.49.2026051802",
|
|
6
6
|
"build": "1",
|
|
7
|
-
"internalAIKey": "1058ec22-3c95-4951-8443-f26c1f325911",
|
|
8
7
|
"completionsCoreVersion": "1.378.1799",
|
|
9
8
|
"internalLargeStorageAriaKey": "ec712b3202c5462fb6877acae7f1f9d7-c19ad55e-3e3c-4f99-984b-827f6d95bd9e-6917",
|
|
10
9
|
"ariaKey": "0c6ae279ed8443289764825290e4f9e2-1a736e7c-1324-4338-be46-fc2a58ae4d14-7255",
|
|
@@ -23,7 +22,7 @@
|
|
|
23
22
|
"icon": "assets/copilot.png",
|
|
24
23
|
"pricing": "Trial",
|
|
25
24
|
"engines": {
|
|
26
|
-
"vscode": "^1.
|
|
25
|
+
"vscode": "^1.121.0",
|
|
27
26
|
"npm": ">=9.0.0",
|
|
28
27
|
"node": ">=22.14.0"
|
|
29
28
|
},
|
|
@@ -995,7 +994,6 @@
|
|
|
995
994
|
"icon": "$(notebook-render-output)",
|
|
996
995
|
"modelDescription": "This tool will retrieve the output for a notebook cell from its most recent execution or restored from disk. The cell may have output even when it has not been run in the current kernel session. This tool has a higher token limit for output length than the runNotebookCell tool.",
|
|
997
996
|
"userDescription": "%copilot.tools.getNotebookCellOutput.description%",
|
|
998
|
-
"when": "userHasOpenedNotebook",
|
|
999
997
|
"tags": [],
|
|
1000
998
|
"inputSchema": {
|
|
1001
999
|
"type": "object",
|
|
@@ -1162,8 +1160,7 @@
|
|
|
1162
1160
|
"displayName": "Memory",
|
|
1163
1161
|
"toolReferenceName": "memory",
|
|
1164
1162
|
"userDescription": "Manage persistent memory across conversations",
|
|
1165
|
-
"
|
|
1166
|
-
"modelDescription": "Manage a persistent memory system with three scopes for storing notes and information across conversations.\n\nMemory is organized under /memories/ with three tiers:\n- `/memories/` — User memory: persistent notes that survive across all workspaces and conversations. Store preferences, patterns, and general insights here.\n- `/memories/session/` — Session memory: notes scoped to the current conversation. Store task-specific context and in-progress notes here. Cleared after the conversation ends.\n- `/memories/repo/` — Repository memory: repository-scoped facts stored via Copilot. Only the `create` command is supported for this path.\n\nIMPORTANT: Before creating new memory files, first view the /memories/ directory to understand what already exists. This helps avoid duplicates and maintain organized notes.\n\nCommands:\n- `view`: View contents of a file or list directory contents. Can be used on files or directories (e.g., \"/memories/\" to see all top-level items).\n- `create`: Create a new file at the specified path with the given content. Fails if the file already exists.\n- `str_replace`: Replace an exact string in a file with a new string. The old_str must appear exactly once in the file.\n- `insert`: Insert text at a specific line number in a file. Line 0 inserts at the beginning.\n- `delete`: Delete a file or directory (and all its contents).\n- `rename`: Rename or move a file or directory from path to new_path. Cannot rename across scopes.",
|
|
1163
|
+
"modelDescription": "Manage a persistent memory system with three scopes for storing notes and information across conversations.\n\nMemory is organized under /memories/ with three tiers:\n- `/memories/` — User memory: persistent notes that survive across all workspaces and conversations. Store preferences, patterns, and general insights here.\n- `/memories/session/` — Session memory: notes scoped to the current conversation. Store task-specific context and in-progress notes here. Cleared after the conversation ends.\n- `/memories/repo/` — Repository memory: repository-scoped notes stored locally in the workspace. Store codebase conventions, build commands, project structure facts, and verified practices here.\n\nIMPORTANT: Before creating new memory files, first view the /memories/ directory to understand what already exists. This helps avoid duplicates and maintain organized notes.\n\nCommands:\n- `view`: View contents of a file or list directory contents. Can be used on files or directories (e.g., \"/memories/\" to see all top-level items).\n- `create`: Create a new file at the specified path with the given content. Fails if the file already exists.\n- `str_replace`: Replace an exact string in a file with a new string. The old_str must appear exactly once in the file.\n- `insert`: Insert text at a specific line number in a file. Line 0 inserts at the beginning.\n- `delete`: Delete a file or directory (and all its contents).\n- `rename`: Rename or move a file or directory from path to new_path. Cannot rename across scopes.",
|
|
1167
1164
|
"inputSchema": {
|
|
1168
1165
|
"type": "object",
|
|
1169
1166
|
"properties": {
|
|
@@ -1867,7 +1864,7 @@
|
|
|
1867
1864
|
{
|
|
1868
1865
|
"vendor": "customoai",
|
|
1869
1866
|
"when": "productQualityType != 'stable'",
|
|
1870
|
-
"displayName": "OpenAI Compatible",
|
|
1867
|
+
"displayName": "OpenAI Compatible (Deprecated)",
|
|
1871
1868
|
"configuration": {
|
|
1872
1869
|
"type": "object",
|
|
1873
1870
|
"properties": {
|
|
@@ -1875,10 +1872,12 @@
|
|
|
1875
1872
|
"type": "string",
|
|
1876
1873
|
"secret": true,
|
|
1877
1874
|
"description": "API key for the models",
|
|
1878
|
-
"title": "API Key"
|
|
1875
|
+
"title": "API Key",
|
|
1876
|
+
"markdownDeprecationMessage": "**Deprecated.** Use the `customendpoint` provider (\"Custom Endpoint\") instead. It supports the Chat Completions API, the Responses API, and the Messages API — selectable per model via the `apiType` property."
|
|
1879
1877
|
},
|
|
1880
1878
|
"models": {
|
|
1881
1879
|
"type": "array",
|
|
1880
|
+
"markdownDeprecationMessage": "**Deprecated.** Use the `customendpoint` provider (\"Custom Endpoint\") instead. It supports the Chat Completions API, the Responses API, and the Messages API — selectable per model via the `apiType` property.",
|
|
1882
1881
|
"defaultSnippets": [
|
|
1883
1882
|
{
|
|
1884
1883
|
"label": "New Model",
|
|
@@ -1992,6 +1991,162 @@
|
|
|
1992
1991
|
}
|
|
1993
1992
|
}
|
|
1994
1993
|
},
|
|
1994
|
+
{
|
|
1995
|
+
"vendor": "customendpoint",
|
|
1996
|
+
"when": "productQualityType != 'stable'",
|
|
1997
|
+
"displayName": "Custom Endpoint",
|
|
1998
|
+
"configuration": {
|
|
1999
|
+
"type": "object",
|
|
2000
|
+
"properties": {
|
|
2001
|
+
"apiKey": {
|
|
2002
|
+
"type": "string",
|
|
2003
|
+
"secret": true,
|
|
2004
|
+
"minLength": 1,
|
|
2005
|
+
"description": "API key for the models",
|
|
2006
|
+
"title": "API Key"
|
|
2007
|
+
},
|
|
2008
|
+
"apiType": {
|
|
2009
|
+
"type": "string",
|
|
2010
|
+
"enum": [
|
|
2011
|
+
"chat-completions",
|
|
2012
|
+
"responses",
|
|
2013
|
+
"messages"
|
|
2014
|
+
],
|
|
2015
|
+
"enumDescriptions": [
|
|
2016
|
+
"Chat Completions API.",
|
|
2017
|
+
"Responses API.",
|
|
2018
|
+
"Messages API."
|
|
2019
|
+
],
|
|
2020
|
+
"default": "chat-completions",
|
|
2021
|
+
"title": "API Type",
|
|
2022
|
+
"markdownDescription": "Default request/response format for models in this group. Individual models can override this with their own `apiType` property; when both are unset the type is inferred from the URL path."
|
|
2023
|
+
},
|
|
2024
|
+
"models": {
|
|
2025
|
+
"type": "array",
|
|
2026
|
+
"defaultSnippets": [
|
|
2027
|
+
{
|
|
2028
|
+
"label": "New Model",
|
|
2029
|
+
"description": "Add a new custom model configuration",
|
|
2030
|
+
"body": [
|
|
2031
|
+
{
|
|
2032
|
+
"id": "$1",
|
|
2033
|
+
"name": "$2",
|
|
2034
|
+
"url": "$3",
|
|
2035
|
+
"toolCalling": "^${4|true,false|}",
|
|
2036
|
+
"vision": "^${5|true,false|}",
|
|
2037
|
+
"maxInputTokens": "^${6:128000}",
|
|
2038
|
+
"maxOutputTokens": "^${7:16000}"
|
|
2039
|
+
}
|
|
2040
|
+
]
|
|
2041
|
+
}
|
|
2042
|
+
],
|
|
2043
|
+
"items": {
|
|
2044
|
+
"type": "object",
|
|
2045
|
+
"properties": {
|
|
2046
|
+
"id": {
|
|
2047
|
+
"type": "string",
|
|
2048
|
+
"description": "Unique identifier for the model"
|
|
2049
|
+
},
|
|
2050
|
+
"name": {
|
|
2051
|
+
"type": "string",
|
|
2052
|
+
"description": "Display name of the model"
|
|
2053
|
+
},
|
|
2054
|
+
"url": {
|
|
2055
|
+
"type": "string",
|
|
2056
|
+
"pattern": "^https?://.+",
|
|
2057
|
+
"patternErrorMessage": "URL must start with http:// or https://",
|
|
2058
|
+
"markdownDescription": "URL endpoint for the model.\n\n**Important:** Base URLs default to Chat Completions API. Explicit API paths are respected: `/chat/completions`, `/responses`, and `/v1/messages` (Anthropic-compatible). Use the `apiType` property to override the request/response format independently of the URL."
|
|
2059
|
+
},
|
|
2060
|
+
"apiType": {
|
|
2061
|
+
"type": "string",
|
|
2062
|
+
"enum": [
|
|
2063
|
+
"chat-completions",
|
|
2064
|
+
"responses",
|
|
2065
|
+
"messages"
|
|
2066
|
+
],
|
|
2067
|
+
"markdownDescription": "Request/response format used to talk to this endpoint:\n- `chat-completions`: Chat Completions API (default).\n- `responses`: Responses API.\n- `messages`: Messages API.\n\nWhen omitted, falls back to the group-level `apiType`, then to the URL path."
|
|
2068
|
+
},
|
|
2069
|
+
"toolCalling": {
|
|
2070
|
+
"type": "boolean",
|
|
2071
|
+
"description": "Whether the model supports tool calling"
|
|
2072
|
+
},
|
|
2073
|
+
"vision": {
|
|
2074
|
+
"type": "boolean",
|
|
2075
|
+
"description": "Whether the model supports vision capabilities"
|
|
2076
|
+
},
|
|
2077
|
+
"maxInputTokens": {
|
|
2078
|
+
"type": "number",
|
|
2079
|
+
"description": "Maximum number of input tokens supported by the model"
|
|
2080
|
+
},
|
|
2081
|
+
"maxOutputTokens": {
|
|
2082
|
+
"type": "number",
|
|
2083
|
+
"description": "Maximum number of output tokens supported by the model"
|
|
2084
|
+
},
|
|
2085
|
+
"editTools": {
|
|
2086
|
+
"type": "array",
|
|
2087
|
+
"description": "List of edit tools supported by the model. If this is not configured, the editor will try multiple edit tools and pick the best one.\n\n- 'find-replace': Find and replace text in a document.\n- 'multi-find-replace': Find and replace text in a document.\n- 'apply-patch': A file-oriented diff format used by some OpenAI models\n- 'code-rewrite': A general but slower editing tool that allows the model to rewrite and code snippet and provide only the replacement to the editor.",
|
|
2088
|
+
"items": {
|
|
2089
|
+
"type": "string",
|
|
2090
|
+
"enum": [
|
|
2091
|
+
"find-replace",
|
|
2092
|
+
"multi-find-replace",
|
|
2093
|
+
"apply-patch",
|
|
2094
|
+
"code-rewrite"
|
|
2095
|
+
]
|
|
2096
|
+
}
|
|
2097
|
+
},
|
|
2098
|
+
"thinking": {
|
|
2099
|
+
"type": "boolean",
|
|
2100
|
+
"default": false,
|
|
2101
|
+
"description": "Whether the model supports thinking capabilities"
|
|
2102
|
+
},
|
|
2103
|
+
"streaming": {
|
|
2104
|
+
"type": "boolean",
|
|
2105
|
+
"default": true,
|
|
2106
|
+
"description": "Whether the model supports streaming responses. Defaults to true."
|
|
2107
|
+
},
|
|
2108
|
+
"zeroDataRetentionEnabled": {
|
|
2109
|
+
"type": "boolean",
|
|
2110
|
+
"default": false,
|
|
2111
|
+
"markdownDescription": "Whether Zero Data Retention (ZDR) is enabled for this endpoint. When `true`, `previous_response_id` will not be sent in requests via Responses API."
|
|
2112
|
+
},
|
|
2113
|
+
"supportsReasoningEffort": {
|
|
2114
|
+
"type": "array",
|
|
2115
|
+
"markdownDescription": "Reasoning effort levels the model accepts (e.g. `[\"low\", \"medium\", \"high\"]`). When set, a `Thinking Effort` picker is shown in the model picker and the chosen value is forwarded to the model. Levels supported by mainstream OpenAI-compatible servers are `minimal`, `low`, `medium`, `high`.",
|
|
2116
|
+
"items": {
|
|
2117
|
+
"type": "string"
|
|
2118
|
+
}
|
|
2119
|
+
},
|
|
2120
|
+
"reasoningEffortFormat": {
|
|
2121
|
+
"type": "string",
|
|
2122
|
+
"enum": [
|
|
2123
|
+
"chat-completions",
|
|
2124
|
+
"responses"
|
|
2125
|
+
],
|
|
2126
|
+
"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."
|
|
2127
|
+
},
|
|
2128
|
+
"requestHeaders": {
|
|
2129
|
+
"type": "object",
|
|
2130
|
+
"description": "Additional HTTP headers to include with requests to this model. These reserved headers are not allowed and ignored if present: forbidden request headers (https://developer.mozilla.org/en-US/docs/Glossary/Forbidden_request_header), forwarding headers ('forwarded', 'x-forwarded-for', 'x-forwarded-host', 'x-forwarded-proto'), and others ('api-key', 'authorization', 'content-type', 'openai-intent', 'x-github-api-version', 'x-initiator', 'x-interaction-id', 'x-interaction-type', 'x-onbehalf-extension-id', 'x-request-id', 'x-vscode-user-agent-library-version'). Pattern-based forbidden headers ('proxy-*', 'sec-*', 'x-http-method*' with forbidden methods) are also blocked.",
|
|
2131
|
+
"additionalProperties": {
|
|
2132
|
+
"type": "string"
|
|
2133
|
+
}
|
|
2134
|
+
}
|
|
2135
|
+
},
|
|
2136
|
+
"required": [
|
|
2137
|
+
"id",
|
|
2138
|
+
"name",
|
|
2139
|
+
"url",
|
|
2140
|
+
"toolCalling",
|
|
2141
|
+
"vision",
|
|
2142
|
+
"maxInputTokens",
|
|
2143
|
+
"maxOutputTokens"
|
|
2144
|
+
]
|
|
2145
|
+
}
|
|
2146
|
+
}
|
|
2147
|
+
}
|
|
2148
|
+
}
|
|
2149
|
+
},
|
|
1995
2150
|
{
|
|
1996
2151
|
"vendor": "azure",
|
|
1997
2152
|
"displayName": "Azure",
|
|
@@ -2592,7 +2747,7 @@
|
|
|
2592
2747
|
"command": "github.copilot.deleteExternalIngestWorkspaceIndex",
|
|
2593
2748
|
"title": "%github.copilot.command.deleteExternalIngestWorkspaceIndex%",
|
|
2594
2749
|
"category": "Developer",
|
|
2595
|
-
"enablement": "github.copilot-chat.activated"
|
|
2750
|
+
"enablement": "github.copilot-chat.activated && !github.copilot.blackbirdExternalIndexingDisabled"
|
|
2596
2751
|
},
|
|
2597
2752
|
{
|
|
2598
2753
|
"command": "github.copilot.report",
|
|
@@ -3270,6 +3425,15 @@
|
|
|
3270
3425
|
{
|
|
3271
3426
|
"id": "preview",
|
|
3272
3427
|
"properties": {
|
|
3428
|
+
"github.copilot.chat.claudeAgent.allowAutoPermissions": {
|
|
3429
|
+
"type": "boolean",
|
|
3430
|
+
"default": false,
|
|
3431
|
+
"tags": [
|
|
3432
|
+
"preview",
|
|
3433
|
+
"onExp"
|
|
3434
|
+
],
|
|
3435
|
+
"markdownDescription": "%github.copilot.config.claudeAgent.allowAutoPermissions%"
|
|
3436
|
+
},
|
|
3273
3437
|
"github.copilot.chat.copilotDebugCommand.enabled": {
|
|
3274
3438
|
"type": "boolean",
|
|
3275
3439
|
"default": true,
|
|
@@ -3286,14 +3450,6 @@
|
|
|
3286
3450
|
],
|
|
3287
3451
|
"markdownDescription": "%github.copilot.config.codesearch.enabled%"
|
|
3288
3452
|
},
|
|
3289
|
-
"github.copilot.chat.tools.memory.enabled": {
|
|
3290
|
-
"type": "boolean",
|
|
3291
|
-
"default": true,
|
|
3292
|
-
"markdownDescription": "%github.copilot.config.tools.memory.enabled%",
|
|
3293
|
-
"tags": [
|
|
3294
|
-
"preview"
|
|
3295
|
-
]
|
|
3296
|
-
},
|
|
3297
3453
|
"github.copilot.chat.tools.viewImage.enabled": {
|
|
3298
3454
|
"type": "boolean",
|
|
3299
3455
|
"default": true,
|
|
@@ -3838,15 +3994,6 @@
|
|
|
3838
3994
|
"onExp"
|
|
3839
3995
|
]
|
|
3840
3996
|
},
|
|
3841
|
-
"github.copilot.chat.responsesApi.toolSearchTool.enabled": {
|
|
3842
|
-
"type": "boolean",
|
|
3843
|
-
"default": false,
|
|
3844
|
-
"markdownDescription": "%github.copilot.config.responsesApi.toolSearchTool.enabled%",
|
|
3845
|
-
"tags": [
|
|
3846
|
-
"experimental",
|
|
3847
|
-
"onExp"
|
|
3848
|
-
]
|
|
3849
|
-
},
|
|
3850
3997
|
"github.copilot.chat.updated53CodexPrompt.enabled": {
|
|
3851
3998
|
"type": "boolean",
|
|
3852
3999
|
"default": true,
|
|
@@ -3865,24 +4012,6 @@
|
|
|
3865
4012
|
"onExp"
|
|
3866
4013
|
]
|
|
3867
4014
|
},
|
|
3868
|
-
"github.copilot.chat.gpt54ConcisePrompt.enabled": {
|
|
3869
|
-
"type": "boolean",
|
|
3870
|
-
"default": false,
|
|
3871
|
-
"markdownDescription": "%github.copilot.config.gpt54ConcisePrompt.enabled%",
|
|
3872
|
-
"tags": [
|
|
3873
|
-
"experimental",
|
|
3874
|
-
"onExp"
|
|
3875
|
-
]
|
|
3876
|
-
},
|
|
3877
|
-
"github.copilot.chat.gpt54LargePrompt.enabled": {
|
|
3878
|
-
"type": "boolean",
|
|
3879
|
-
"default": false,
|
|
3880
|
-
"markdownDescription": "%github.copilot.config.gpt54LargePrompt.enabled%",
|
|
3881
|
-
"tags": [
|
|
3882
|
-
"experimental",
|
|
3883
|
-
"onExp"
|
|
3884
|
-
]
|
|
3885
|
-
},
|
|
3886
4015
|
"github.copilot.chat.gpt55GetChangedFilesTool.enabled": {
|
|
3887
4016
|
"type": "boolean",
|
|
3888
4017
|
"default": true,
|
|
@@ -4116,6 +4245,36 @@
|
|
|
4116
4245
|
"advanced"
|
|
4117
4246
|
]
|
|
4118
4247
|
},
|
|
4248
|
+
"github.copilot.chat.anthropic.promptCaching.extendedTtl": {
|
|
4249
|
+
"type": "boolean",
|
|
4250
|
+
"default": false,
|
|
4251
|
+
"tags": [
|
|
4252
|
+
"advanced",
|
|
4253
|
+
"experimental",
|
|
4254
|
+
"onExp"
|
|
4255
|
+
],
|
|
4256
|
+
"description": "%github.copilot.config.anthropic.promptCaching.extendedTtl%"
|
|
4257
|
+
},
|
|
4258
|
+
"github.copilot.chat.anthropic.promptCaching.extendedTtlMessages": {
|
|
4259
|
+
"type": "boolean",
|
|
4260
|
+
"default": false,
|
|
4261
|
+
"tags": [
|
|
4262
|
+
"advanced",
|
|
4263
|
+
"experimental",
|
|
4264
|
+
"onExp"
|
|
4265
|
+
],
|
|
4266
|
+
"description": "%github.copilot.config.anthropic.promptCaching.extendedTtlMessages%"
|
|
4267
|
+
},
|
|
4268
|
+
"github.copilot.chat.freezeCustomizationsIndex": {
|
|
4269
|
+
"type": "boolean",
|
|
4270
|
+
"default": true,
|
|
4271
|
+
"tags": [
|
|
4272
|
+
"advanced",
|
|
4273
|
+
"experimental",
|
|
4274
|
+
"onExp"
|
|
4275
|
+
],
|
|
4276
|
+
"description": "%github.copilot.config.freezeCustomizationsIndex%"
|
|
4277
|
+
},
|
|
4119
4278
|
"github.copilot.chat.installExtensionSkill.enabled": {
|
|
4120
4279
|
"type": "boolean",
|
|
4121
4280
|
"default": false,
|
|
@@ -4779,7 +4938,7 @@
|
|
|
4779
4938
|
},
|
|
4780
4939
|
"github.copilot.chat.cli.forkSessions.enabled": {
|
|
4781
4940
|
"type": "boolean",
|
|
4782
|
-
"default":
|
|
4941
|
+
"default": true,
|
|
4783
4942
|
"markdownDescription": "%github.copilot.config.cli.forkSessions.enabled%",
|
|
4784
4943
|
"tags": [
|
|
4785
4944
|
"advanced"
|
|
@@ -5020,7 +5179,7 @@
|
|
|
5020
5179
|
},
|
|
5021
5180
|
"github.copilot.chat.workspace.codeSearchExternalIngest.enabled": {
|
|
5022
5181
|
"type": "boolean",
|
|
5023
|
-
"default":
|
|
5182
|
+
"default": true,
|
|
5024
5183
|
"markdownDescription": "%github.copilot.config.workspace.codeSearchExternalIngest.enabled%",
|
|
5025
5184
|
"tags": [
|
|
5026
5185
|
"advanced",
|
|
@@ -5537,14 +5696,6 @@
|
|
|
5537
5696
|
"command": "github.copilot.nes.captureExpected.submit",
|
|
5538
5697
|
"when": "github.copilot.inlineEditsEnabled"
|
|
5539
5698
|
},
|
|
5540
|
-
{
|
|
5541
|
-
"command": "github.copilot.chat.tools.memory.showMemories",
|
|
5542
|
-
"when": "config.github.copilot.chat.tools.memory.enabled"
|
|
5543
|
-
},
|
|
5544
|
-
{
|
|
5545
|
-
"command": "github.copilot.chat.tools.memory.clearMemories",
|
|
5546
|
-
"when": "config.github.copilot.chat.tools.memory.enabled"
|
|
5547
|
-
},
|
|
5548
5699
|
{
|
|
5549
5700
|
"command": "github.copilot.sessions.commit",
|
|
5550
5701
|
"when": "false"
|
|
@@ -6709,7 +6860,7 @@
|
|
|
6709
6860
|
"@anthropic-ai/claude-agent-sdk": "0.2.112",
|
|
6710
6861
|
"@anthropic-ai/sdk": "^0.82.0",
|
|
6711
6862
|
"@github/blackbird-external-ingest-utils": "^0.3.0",
|
|
6712
|
-
"@github/copilot": "
|
|
6863
|
+
"@github/copilot": "1.0.39",
|
|
6713
6864
|
"@google/genai": "^1.22.0",
|
|
6714
6865
|
"@humanwhocodes/gitignore-to-minimatch": "1.0.2",
|
|
6715
6866
|
"@microsoft/tiktokenizer": "^1.0.10",
|
package/package.json
CHANGED