Skip to content

Commit 566b2bc

Browse files
Update @github/copilot to 1.0.56
- Updated nodejs and test harness dependencies - Re-ran code generators - Formatted generated code
1 parent 13abec9 commit 566b2bc

10 files changed

Lines changed: 100 additions & 108 deletions

File tree

dotnet/src/Generated/Rpc.cs

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

go/rpc/zrpc.go

Lines changed: 6 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

nodejs/package-lock.json

Lines changed: 36 additions & 48 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

nodejs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
"author": "GitHub",
5757
"license": "MIT",
5858
"dependencies": {
59-
"@github/copilot": "^1.0.56-2",
59+
"@github/copilot": "^1.0.56",
6060
"vscode-jsonrpc": "^8.2.1",
6161
"zod": "^4.3.6"
6262
},

nodejs/samples/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

nodejs/src/generated/rpc.ts

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

python/copilot/generated/rpc.py

Lines changed: 8 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

rust/src/generated/api_types.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3510,7 +3510,7 @@ pub struct MetadataContextInfoResultContextInfo {
35103510
pub compaction_threshold: i64,
35113511
/// Tokens consumed by user/assistant/tool messages
35123512
pub conversation_tokens: i64,
3513-
/// Total context limit for /context display. promptTokenLimit + min(32k or 64k, outputTokenLimit) depending on model.
3513+
/// Total context limit for /context display: promptTokenLimit + outputTokenLimit (the model's full max_output_tokens reserved on top of the prompt budget).
35143514
pub limit: i64,
35153515
/// Tokens consumed by MCP tool definitions (subset of toolDefinitionsTokens, excludes deferred tools)
35163516
pub mcp_tools_tokens: i64,
@@ -3733,7 +3733,7 @@ pub struct ModelBillingTokenPricesLongContext {
37333733
/// AI Credits cost per billing batch of cached tokens
37343734
#[serde(skip_serializing_if = "Option::is_none")]
37353735
pub cache_price: Option<f64>,
3736-
/// Maximum context window tokens for the long context tier
3736+
/// Prompt token budget (max_prompt_tokens) for the long context tier. The total context window is this value plus the model's max_output_tokens.
37373737
#[serde(skip_serializing_if = "Option::is_none")]
37383738
pub context_max: Option<i64>,
37393739
/// AI Credits cost per billing batch of input tokens
@@ -3754,7 +3754,7 @@ pub struct ModelBillingTokenPrices {
37543754
/// AI Credits cost per billing batch of cached tokens
37553755
#[serde(skip_serializing_if = "Option::is_none")]
37563756
pub cache_price: Option<f64>,
3757-
/// Maximum context window tokens for the default tier
3757+
/// Prompt token budget (max_prompt_tokens) for the default tier. The total context window is this value plus the model's max_output_tokens.
37583758
#[serde(skip_serializing_if = "Option::is_none")]
37593759
pub context_max: Option<i64>,
37603760
/// AI Credits cost per billing batch of input tokens
@@ -6347,7 +6347,7 @@ pub struct SessionContextInfo {
63476347
pub compaction_threshold: i64,
63486348
/// Tokens consumed by user/assistant/tool messages
63496349
pub conversation_tokens: i64,
6350-
/// Total context limit for /context display. promptTokenLimit + min(32k or 64k, outputTokenLimit) depending on model.
6350+
/// Total context limit for /context display: promptTokenLimit + outputTokenLimit (the model's full max_output_tokens reserved on top of the prompt budget).
63516351
pub limit: i64,
63526352
/// Tokens consumed by MCP tool definitions (subset of toolDefinitionsTokens, excludes deferred tools)
63536353
pub mcp_tools_tokens: i64,
@@ -12084,7 +12084,7 @@ pub struct SessionMetadataContextInfoResultContextInfo {
1208412084
pub compaction_threshold: i64,
1208512085
/// Tokens consumed by user/assistant/tool messages
1208612086
pub conversation_tokens: i64,
12087-
/// Total context limit for /context display. promptTokenLimit + min(32k or 64k, outputTokenLimit) depending on model.
12087+
/// Total context limit for /context display: promptTokenLimit + outputTokenLimit (the model's full max_output_tokens reserved on top of the prompt budget).
1208812088
pub limit: i64,
1208912089
/// Tokens consumed by MCP tool definitions (subset of toolDefinitionsTokens, excludes deferred tools)
1209012090
pub mcp_tools_tokens: i64,

0 commit comments

Comments
 (0)