Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions dotnet/src/Generated/Rpc.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 6 additions & 4 deletions go/rpc/zrpc.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

84 changes: 36 additions & 48 deletions nodejs/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion nodejs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
"author": "GitHub",
"license": "MIT",
"dependencies": {
"@github/copilot": "^1.0.56-2",
"@github/copilot": "^1.0.56",
"vscode-jsonrpc": "^8.2.1",
"zod": "^4.3.6"
},
Expand Down
2 changes: 1 addition & 1 deletion nodejs/samples/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions nodejs/src/generated/rpc.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 8 additions & 6 deletions python/copilot/generated/rpc.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions rust/src/generated/api_types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3510,7 +3510,7 @@ pub struct MetadataContextInfoResultContextInfo {
pub compaction_threshold: i64,
/// Tokens consumed by user/assistant/tool messages
pub conversation_tokens: i64,
/// Total context limit for /context display. promptTokenLimit + min(32k or 64k, outputTokenLimit) depending on model.
/// Total context limit for /context display: promptTokenLimit + outputTokenLimit (the model's full max_output_tokens reserved on top of the prompt budget).
pub limit: i64,
/// Tokens consumed by MCP tool definitions (subset of toolDefinitionsTokens, excludes deferred tools)
pub mcp_tools_tokens: i64,
Expand Down Expand Up @@ -3733,7 +3733,7 @@ pub struct ModelBillingTokenPricesLongContext {
/// AI Credits cost per billing batch of cached tokens
#[serde(skip_serializing_if = "Option::is_none")]
pub cache_price: Option<f64>,
/// Maximum context window tokens for the long context tier
/// 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.
#[serde(skip_serializing_if = "Option::is_none")]
pub context_max: Option<i64>,
/// AI Credits cost per billing batch of input tokens
Expand All @@ -3754,7 +3754,7 @@ pub struct ModelBillingTokenPrices {
/// AI Credits cost per billing batch of cached tokens
#[serde(skip_serializing_if = "Option::is_none")]
pub cache_price: Option<f64>,
/// Maximum context window tokens for the default tier
/// Prompt token budget (max_prompt_tokens) for the default tier. The total context window is this value plus the model's max_output_tokens.
#[serde(skip_serializing_if = "Option::is_none")]
pub context_max: Option<i64>,
/// AI Credits cost per billing batch of input tokens
Expand Down Expand Up @@ -6347,7 +6347,7 @@ pub struct SessionContextInfo {
pub compaction_threshold: i64,
/// Tokens consumed by user/assistant/tool messages
pub conversation_tokens: i64,
/// Total context limit for /context display. promptTokenLimit + min(32k or 64k, outputTokenLimit) depending on model.
/// Total context limit for /context display: promptTokenLimit + outputTokenLimit (the model's full max_output_tokens reserved on top of the prompt budget).
pub limit: i64,
/// Tokens consumed by MCP tool definitions (subset of toolDefinitionsTokens, excludes deferred tools)
pub mcp_tools_tokens: i64,
Expand Down Expand Up @@ -12084,7 +12084,7 @@ pub struct SessionMetadataContextInfoResultContextInfo {
pub compaction_threshold: i64,
/// Tokens consumed by user/assistant/tool messages
pub conversation_tokens: i64,
/// Total context limit for /context display. promptTokenLimit + min(32k or 64k, outputTokenLimit) depending on model.
/// Total context limit for /context display: promptTokenLimit + outputTokenLimit (the model's full max_output_tokens reserved on top of the prompt budget).
pub limit: i64,
/// Tokens consumed by MCP tool definitions (subset of toolDefinitionsTokens, excludes deferred tools)
pub mcp_tools_tokens: i64,
Expand Down
Loading
Loading