fix(deps): update dependency agents to ^0.17.0#96
Merged
Conversation
🚀 Preview deploys
Last updated: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
^0.16.0→^0.17.0Release Notes
cloudflare/agents (agents)
v0.17.0Compare Source
Minor Changes
#1758
6b46b04Thanks @threepointone! - Add progress signalling and durable milestones for agent-tool sub-agents(#1758, rfc-detached-agent-tools §progress, phases 4a + 4b).
A sub-agent running as an agent tool (awaited or detached/background) can now
report mid-run progress:
These signals ride the child's own turn stream as a transient
data-agent-progresspart, so they re-broadcast to the parent's connectedclients and surface on
AgentToolRunState.progressviauseAgentToolEvents— abackground-runs tray can render a live bar / phase / status line without drilling
in. Highlights:
reportProgress({ fraction?, message?, phase?, data? }, { persist? })onchat agents (
@cloudflare/think,AIChatAgent); a no-op with a dev warning onthe base
Agentand when called outside an active agent-tool run. The frameworkresolves the run id from the active turn — no threading required. Bursts are
coalesced (latest-wins; a
fraction >= 1"done" frame always flushes).datais live-only unless
{ persist: true }.onProgress(run, progress)parent hook, fired best-effort from the tailfor both awaited and detached runs.
progress_json+last_signal_aton its run row and surfaces it throughinspectAgentToolRun().progress, so a rehydrated parent reconstructs progressafter eviction.
reported at least one signal, the backbone gives up if it then goes silent for
detachedNoProgressBudgetMs(default 1h; per-run override viadetached: { noProgressBudgetMs }), surfaced asinterruptedwith theno-progressreason. A child that never reports is bounded only by the absolutedetachedMaxBudgetMsceiling — we never give up on a run merely for being slow.Configuration
📅 Schedule: (in timezone America/New_York)
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.