fix(deps): restore compatible agent framework stack - #16
Closed
OgeonX-Ai wants to merge 1 commit into
Closed
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.
OgeonX-Ai
enabled auto-merge (squash)
July 8, 2026 17:00
Contributor
Author
|
Superseded by #17, which consolidated the surviving work onto current main without reintroducing the stale dependency stack. |
auto-merge was automatically disabled
July 8, 2026 18:32
Pull request was closed
OgeonX-Ai
added a commit
that referenced
this pull request
Jul 11, 2026
The reusable workflow was pinned to f288e5e3b67b29a2c08880b76da7b852f4a132d0, a pre-squash-merge branch-tip commit in Coding-Autopilot-System/.github that became unreachable when .github PR #16 squash-merged and the source branch was deleted. Every push-triggered release-please run has since failed with 'workflow was not found'. Repin to 64c1673088ff7802f1270a44f03bc4d7a10631f2, which is the merged commit on .github's main branch containing .github/workflows/release-please-reusable.yml. Co-authored-by: Kim Harjamäki <kim.harjamaki@prosimo.fi>
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.