v1.0.8
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)
const session = await client.createSession({
customAgents: [{
name: "planner",
prompt: "You plan tasks.",
reasoningEffort: "high",
}],
});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:
awmgmcpg
To allow these domains, add them to the
network.allowedlist in your workflow frontmatter:
network:
allowed:
- defaults
- "awmgmcpg"See Network Configuration for more information.
Generated by Release Changelog Generator · 39.1 AIC · ⌖ 5.54 AIC · ⊞ 7.2K