fix(deps): restore compatible agent framework stack#16
Open
OgeonX-Ai wants to merge 1 commit into
Open
Conversation
Current autogen main pinned the 1.10 Agent Framework stack and a FastAPI range that the codebase and DevUI package do not support together.\n\nThis restores the last verified compatible framework/devui/orchestrations versions and keeps FastAPI/Uvicorn within the matching runtime contract, which returns local CI to green and removes the install-time blocker affecting PRs rebased on main.
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.
Summary
Restore the last verified Agent Framework dependency stack for autogen so the repo matches the APIs its code and tests actually use.
Changes
Why
Current �utogen/main had an internally inconsistent dependency set:
equirements.txt pinned astapi>=0.139.0,<1.0
After fixing that resolver conflict, local CI still showed a broader API drift problem: the 1.10 Agent Framework stack changed interfaces used by the current codebase and tests (Message(..., text=...), OpenAIChatClient(model_id=...)). The codebase is still aligned to the older framework contract, so the durable fix is to restore the last compatible stack rather than leave main in a permanently broken state.
Validation
ode --check autogen_dashboard/static/app.js
Risks
Related
Reviewer notes
Start with
equirements.txt. The key question is whether the repo should run on the tested pre-1.10 Agent Framework contract now, or whether the team wants a larger migration branch instead.