Skip to content

Commit 7674d22

Browse files
committed
Merge origin/main into mackinnonbuck/per-agent-tool-visibility
2 parents f834830 + 922959f commit 7674d22

33 files changed

Lines changed: 6680 additions & 3685 deletions

dotnet/src/Client.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -497,6 +497,7 @@ public async Task<CopilotSession> CreateSessionAsync(SessionConfig config, Cance
497497
hasHooks ? true : null,
498498
config.WorkingDirectory,
499499
config.Streaming is true ? true : null,
500+
config.IncludeSubAgentStreamingEvents,
500501
config.McpServers,
501502
"direct",
502503
config.CustomAgents,
@@ -623,6 +624,7 @@ public async Task<CopilotSession> ResumeSessionAsync(string sessionId, ResumeSes
623624
config.EnableConfigDiscovery,
624625
config.DisableResume is true ? true : null,
625626
config.Streaming is true ? true : null,
627+
config.IncludeSubAgentStreamingEvents,
626628
config.McpServers,
627629
"direct",
628630
config.CustomAgents,
@@ -1638,6 +1640,7 @@ internal record CreateSessionRequest(
16381640
bool? Hooks,
16391641
string? WorkingDirectory,
16401642
bool? Streaming,
1643+
bool? IncludeSubAgentStreamingEvents,
16411644
IDictionary<string, McpServerConfig>? McpServers,
16421645
string? EnvValueMode,
16431646
IList<CustomAgentConfig>? CustomAgents,
@@ -1694,6 +1697,7 @@ internal record ResumeSessionRequest(
16941697
bool? EnableConfigDiscovery,
16951698
bool? DisableResume,
16961699
bool? Streaming,
1700+
bool? IncludeSubAgentStreamingEvents,
16971701
IDictionary<string, McpServerConfig>? McpServers,
16981702
string? EnvValueMode,
16991703
IList<CustomAgentConfig>? CustomAgents,

dotnet/src/Generated/Rpc.cs

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

0 commit comments

Comments
 (0)