fix(deps): update dependency @openai/agents-extensions to ^0.11.0#111
Open
renovate[bot] wants to merge 1 commit into
Open
fix(deps): update dependency @openai/agents-extensions to ^0.11.0#111renovate[bot] wants to merge 1 commit into
renovate[bot] wants to merge 1 commit into
Conversation
85191bd to
dafb5da
Compare
dafb5da to
caad4c3
Compare
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.8.0→^0.11.0Release Notes
openai/openai-agents-js (@openai/agents-extensions)
v0.11.4Compare Source
What's Changed
Documentation & Other Changes
Full Changelog: openai/openai-agents-js@v0.11.3...v0.11.4
v0.11.3Compare Source
What's Changed
Documentation & Other Changes
Full Changelog: openai/openai-agents-js@v0.11.2...v0.11.3
v0.11.2Compare Source
What's Changed
Documentation & Other Changes
New Contributors
Full Changelog: openai/openai-agents-js@v0.11.1...v0.11.2
v0.11.1Compare Source
What's Changed
Documentation & Other Changes
New Contributors
Full Changelog: openai/openai-agents-js@v0.11.0...v0.11.1
v0.11.0Compare Source
Key Changes
RealtimeAgent's default is now gpt-realtime-2
Since this version, the default model for RealtimeAgents is gpt-realtime-2: https://developers.openai.com/api/docs/models/gpt-realtime-2
Sandbox local source materialization change
In this version, sandbox local source materialization keeps
LocalFile.srcandLocalDir.srcwithin the materializationbaseDirunless the source path is covered byManifest.extraPathGrants. ThebaseDiris the SDK process current working directory when the manifest is applied; relative local sources are resolved from that directory, while absolute local sources must already be inside it or under an explicit grant. This closes a local artifact boundary issue, but it can affect applications that intentionally copy trusted host files or directories from outside that base directory into a sandbox workspace.What's Changed
Documentation & Other Changes
Full Changelog: openai/openai-agents-js@v0.10.1...v0.11.0
v0.10.1Compare Source
What's Changed
Documentation & Other Changes
Full Changelog: openai/openai-agents-js@v0.10.0...v0.10.1
v0.10.0Compare Source
Key Changes
Default model change
In this version, the SDK default model is now
gpt-5.4-miniinstead ofgpt-4.1. This could affect agents and runs that do not explicitly set a model. Because the new default is a GPT-5 model, implicit default model settings now include GPT-5 defaults such asreasoning.effort="none"andverbosity="low".The new default model should work better for most use cases (see the report at #1248), but if you need to keep the previous default model behavior for some reasons, set a model explicitly on the agent or run config or set the
OPENAI_DEFAULT_MODELenvironment variable.maxTurns configuration
This version adds a new option
maxTurns=nullto disable the Agents SDK run turn limit while preserving the existing default ofDEFAULT_MAX_TURNS(10) whenmaxTurnsis omitted.Tool execution concurrency
This version adds a new SDK-side runtime configuration for local function tool execution concurrency:
toolExecution.maxFunctionToolConcurrencyonRunConfig, preserves default behavior when unset. The change keeps provider-sideModelSettings.parallelToolCallsseparate from SDK-side local execution scheduling.Server-prefixed MCP tool naming
This version adds a new option
MCPConfiginAgentto align with the Python SDK. When ItsincludeServerInToolNamesis set to true, the SDK includes the MCP server name in the tool name to prevent tool name conflicts with other MCP servers.What's Changed
Documentation & Other Changes
Full Changelog: openai/openai-agents-js@v0.9.1...v0.10.0
v0.9.1Compare Source
What's Changed
Documentation & Other Changes
Full Changelog: openai/openai-agents-js@v0.9.0...v0.9.1
v0.9.0Compare Source
What's Changed
Sandbox Agents
This release adds Sandbox Agents, a beta SDK surface for running agents with persistent workspaces and sandbox-backed capabilities in JavaScript.
Sandbox agents build on the existing
Agent,Runner, andrunflow, while adding workspace manifests, sandbox sessions, capabilities, snapshots, memory, and resume support. They let agents inspect files, run commands, edit repositories, apply patches, generate artifacts, and continue work across runs.Refer to the Sandbox Agents guide and
examples/sandbox/for more details.Key additions include:
SandboxAgent, exported from@openai/agents/sandbox, with sandbox defaults such asdefaultManifest,baseInstructions, capabilities, andrunAs.Manifest, a workspace contract for synthetic files and directories, local files and directories, Git repositories, environment, users, groups, permissions, and mounts.SandboxRunConfig, which wires sandbox clients, live sessions, serialized session resume, manifest overrides, snapshots, and materialization limits into each run.RunStateserialization for resuming runner-managed sandbox sessions.Sandbox Clients and Hosted Providers
Sandbox agents support local, containerized, and hosted execution backends:
UnixLocalSandboxClientfor local development.DockerSandboxClientfor container isolation and image parity.@openai/agents-extensions/sandbox/*subpath exports.Provider-specific examples are available under
examples/sandbox/extensions/.Workspaces, Snapshots, Resume, and Memory
This release adds a workspace model for sandbox sessions, including synthetic files and directories, local files and directories, Git repositories, local bind mounts, Docker volume strategies, and typed remote mounts where supported by the selected backend.
It also adds local and remote snapshot store interfaces for carrying workspace contents across runs, plus runner-managed resume through serialized sandbox session state.
Sandbox memory lets future sandbox-agent runs learn from prior runs by storing extracted lessons in the workspace, injecting concise summaries into later runs, and supporting progressive disclosure through deeper rollout summaries. Memory supports read-only and generate-enabled modes, live updates, automatic generation when sessions are flushed, multi-turn grouping, separate memory layouts, and pluggable
MemoryStoreimplementations.Examples
A new
examples/sandbox/suite demonstrates:SandboxAgentexecution with a manifest.Runtime, Tracing, and Model Plumbing
The release includes the runtime plumbing needed for sandbox agents to work naturally inside the JavaScript SDK:
runAssupport for compatible shell and filesystem operations.What's Changed
Documentation & Other Changes
Full Changelog: openai/openai-agents-js@v0.8.5...v0.9.0
v0.8.5Compare Source
What's Changed
Documentation & Other Changes
New Contributors
Full Changelog: openai/openai-agents-js@v0.8.4...v0.8.5
v0.8.4Compare Source
What's Changed
Documentation & Other Changes
New Contributors
Full Changelog: openai/openai-agents-js@v0.8.3...v0.8.4
v0.8.3Compare Source
What's Changed
Documentation & Other Changes
Full Changelog: openai/openai-agents-js@v0.8.2...v0.8.3
Configuration
📅 Schedule: (in timezone America/New_York)
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, 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.