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
201 changes: 97 additions & 104 deletions dotnet/src/Generated/Rpc.cs

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions dotnet/src/Generated/SessionEvents.cs

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

87 changes: 72 additions & 15 deletions go/rpc/zrpc.go

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

17 changes: 17 additions & 0 deletions go/rpc/zrpc_encoding.go

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

2 changes: 2 additions & 0 deletions go/rpc/zsession_events.go

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

2 changes: 1 addition & 1 deletion java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
DO NOT EDIT MANUALLY. Updated by the update-copilot-dependency
workflow.
-->
<readonly-copilot-sdk-ref-impl-version-from-lastmerge-file-updated-by-reference-impl-sync>^1.0.79-6</readonly-copilot-sdk-ref-impl-version-from-lastmerge-file-updated-by-reference-impl-sync>
<readonly-copilot-sdk-ref-impl-version-from-lastmerge-file-updated-by-reference-impl-sync>^1.0.79-9</readonly-copilot-sdk-ref-impl-version-from-lastmerge-file-updated-by-reference-impl-sync>

</properties>

Expand Down
72 changes: 36 additions & 36 deletions java/scripts/codegen/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 java/scripts/codegen/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"generate:java": "tsx java.ts"
},
"dependencies": {
"@github/copilot": "^1.0.79-6",
"@github/copilot": "^1.0.79-9",
"json-schema": "^0.4.0",
"tsx": "^4.23.1"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,9 @@ public record SubagentCompletedEventData(
/** Total tokens (input + output) consumed by the sub-agent */
@JsonProperty("totalTokens") Long totalTokens,
/** Wall-clock duration of the sub-agent execution in milliseconds */
@JsonProperty("durationMs") Long durationMs
@JsonProperty("durationMs") Long durationMs,
/** Whether the sub-agent was torn down by cancellation - its own abort, or an ancestor being killed - instead of finishing its work. Cancellation is not a failure, so the run still reports completion; this distinguishes a torn-down sub-agent from one that ran to the end. */
@JsonProperty("cancelled") Boolean cancelled
) {
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,12 @@ public record FactoryAgentOptions(
/** Optional JSON Schema for structured agent output. */
@JsonProperty("schema") Object schema,
/** Optional model identifier for the subagent. */
@JsonProperty("model") String model
@JsonProperty("model") String model,
/** Optional reasoning effort for the subagent. This field is accepted but not yet honored. */
@JsonProperty("reasoningEffort") String reasoningEffort,
/** Optional context tier for the subagent. This field is accepted but not yet honored. */
@JsonProperty("contextTier") ContextTier contextTier,
/** Optional custom agent name for the subagent. This field is accepted but not yet honored. */
@JsonProperty("agent") String agent
) {
}
Loading
Loading