| Name | Modified | Size | Downloads / 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
expAssignmentssession config field across all SDKs (#2033) - bugfix: [Rust] fix
ask_userstarving the per-session event loop (#2034)
New contributors
@lukewarmade their first contribution in #1880
[!WARNING]
Firewall blocked 1 domain
The following domain was blocked by the firewall during workflow execution:
awmgmcpgTo allow these domains, add them to the
network.allowedlist 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