Download Latest Version GitHub Copilot SDK for Java 1.0.8 source code.zip (5.9 MB)
Email in envelope

Get an email when there's a new version of GitHub Copilot SDK

Home / v1.0.8
Name Modified Size InfoDownloads / Week
Parent folder
README.md 2026-07-22 2.1 kB
v1.0.8 source code.tar.gz 2026-07-22 4.3 MB
v1.0.8 source code.zip 2026-07-22 5.9 MB
Totals: 3 Items   10.2 MB 0

Feature: per-agent reasoning effort

Custom sub-agents can now have their own reasoning effort level, independent of the parent session. When reasoningEffort is omitted on a custom agent, the backend applies its own default — the session-level setting is not inherited. (#1981)

:::ts
const session = await client.createSession({
    customAgents: [{
        name: "planner",
        prompt: "You plan tasks.",
        reasoningEffort: "high",
    }],
});

:::cs
var session = await client.CreateSessionAsync(new SessionOptions {
    CustomAgents = [new CustomAgentConfig {
        Name = "planner",
        Prompt = "You plan tasks.",
        ReasoningEffort = ReasoningEffort.High,
    }],
});

Other changes

  • improvement: strongly type expAssignments session config field across all SDKs (#2033)
  • bugfix: [Rust] fix ask_user starving the per-session event loop (#2034)

New contributors

  • @lukewar made their first contribution in #1880

[!WARNING]

Firewall blocked 1 domain

The following domain was blocked by the firewall during workflow execution:

  • awmgmcpg

    To allow these domains, add them to the network.allowed list in your workflow frontmatter:

yaml network: allowed: - defaults - "awmgmcpg"

See Network Configuration for more information.

Generated by Release Changelog Generator · 39.1 AIC · ⌖ 5.54 AIC · ⊞ 7.2K

Source: README.md, updated 2026-07-22