-
Notifications
You must be signed in to change notification settings - Fork 0
fix(deps): update dependency openai-agents to v0.8.3 #12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
renovate
wants to merge
1
commit into
main
Choose a base branch
from
renovate/openai-agents-0.x
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
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
8c213d3 to
e35718d
Compare
45dc158 to
0af4414
Compare
58ba571 to
9e8cd54
Compare
9e8cd54 to
ff0b700
Compare
ff0b700 to
7889e0d
Compare
7889e0d to
a58118b
Compare
a58118b to
4e8ac5d
Compare
4e8ac5d to
9a32cab
Compare
9a32cab to
5f7a73e
Compare
5f7a73e to
f31e019
Compare
f31e019 to
2ad9039
Compare
2ad9039 to
e3d078e
Compare
0ee464b to
e9d163f
Compare
e9d163f to
c29cb78
Compare
c29cb78 to
006930c
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
None yet
0 participants
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.4.2→==0.8.3Release Notes
openai/openai-agents-python (openai-agents)
v0.8.3Compare Source
What's Changed
Documents & Other Changes
Full Changelog: openai/openai-agents-python@v0.8.2...v0.8.3
v0.8.2Compare Source
What's Changed
Documents & Other Changes
New Contributors
Full Changelog: openai/openai-agents-python@v0.8.1...v0.8.2
v0.8.1Compare Source
What's Changed
Documents & Other Changes
New Contributors
Full Changelog: openai/openai-agents-python@v0.8.0...v0.8.1
v0.8.0Compare Source
Key Changes
Human-in-the-Loop (HITL)
The human-in-the-loop (HITL) flow enables your agents to pause execution until a person approves or rejects sensitive tool calls. Tools declare when they need approval, run results surface pending approvals as interruptions, and
RunStatelets you serialize and resume runs after decisions are made.Refer to the document page and examples for more details.
Migration Guide
In this version, two runtime behavior changes may require migration work:
asyncio.to_thread(...)instead of running on the event loop thread. If your tool logic depends on thread-local state or thread-affine resources, migrate to an async tool implementation or make thread affinity explicit in your tool code.mcp_config={"failure_error_function": None}. Server-levelfailure_error_functionvalues override the agent-level setting, so setfailure_error_function=Noneon each local MCP server that has an explicit handler.What's Changed
Documents & Other Changes
New Contributors
Full Changelog: openai/openai-agents-python@v0.7.0...v0.8.0
v0.7.0Compare Source
Key Changes
Nested handoff behavior is now opt-in
The nested handoffs behavior were enabled by default in v0.6.0. Now, it is now disabled by default. To enable it again, you need to set the
nest_handoff_historyoption toTrue.MCPServerManager for multiple MCP server instances
Starting with this version, there is a new, convenient way to manage multiple MCP server instances. See #2350 and examples/mcp/manager_example.
Other key changes
session_input_callbackused to be required to be provided. Now, it is optional and the default behavior is to append the new input to the session history.What's Changed
Documents & Other Changes
f5c0ca7to0861694by @dependabot[bot] in #2340e58605atod4b2f3bby @dependabot[bot] in #2342New Contributors
Full Changelog: openai/openai-agents-python@v0.6.9...v0.7.0
v0.6.9Compare Source
What's Changed
Full Changelog: openai/openai-agents-python@v0.6.8...v0.6.9
v0.6.8Compare Source
What's Changed
Documents & Others
New Contributors
Full Changelog: openai/openai-agents-python@v0.6.7...v0.6.8
v0.6.7Compare Source
What's Changed
Experimental: Codex Tool Support
Starting with this version, we have added a new experimental Codex extension (
agents.extensions.experimental.codex). This extension allows you to use Codex as a tool within your agents. Since this module is still experimental, its behavior and implementation details may change in future releases.If you run an agent with
codex_tool()on a host where Codex is installed, the agent will use Codex as a tool to answer the question. The tool simply runs the Codex CLI as a subprocess, so all existing Codex configuration, skills, and capabilities are available without any additional setup.See the example code and #2320 for more details.
Documents & Others
Full Changelog: openai/openai-agents-python@v0.6.6...v0.6.7
v0.6.6Compare Source
What's Changed
Documents & Others
New Contributors
Full Changelog: openai/openai-agents-python@v0.6.5...v0.6.6
v0.6.5Compare Source
What's Changed
Documents
forloop by @aniketmaurya in #2209New Contributors
Full Changelog: openai/openai-agents-python@v0.6.4...v0.6.5
v0.6.4Compare Source
What's Changed
Documents
examples/basic/stream_items.pyby @habema in #2174New Contributors
Full Changelog: openai/openai-agents-python@v0.6.3...v0.6.4
v0.6.3Compare Source
What's Changed
New Contributors
Full Changelog: openai/openai-agents-python@v0.6.2...v0.6.3
v0.6.2Compare Source
What's Changed
New Contributors
Full Changelog: openai/openai-agents-python@v0.6.1...v0.6.2
v0.6.1Compare Source
What's Changed
Full Changelog: openai/openai-agents-python@v0.6.0...v0.6.1
v0.6.0Compare Source
Key changes
Handoff behavior has a breaking change in this version. Specifically, the message history is now collapsed into a single message when handing off to a new agent. We have verified and evaluated this behavior and think it works better, but recommend testing with your agents before upgrading to v0.6.0 in production.
What's Changed
New Contributors
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 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.