-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Comparing changes
Open a pull request
base repository: microsoft/agent-framework
base: python-1.0.0b251223
head repository: microsoft/agent-framework
compare: python-1.0.0b260106
- 13 commits
- 87 files changed
- 11 contributors
Commits on Dec 30, 2025
-
.NET: [Breaking] Introduce RunCoreAsync/RunCoreStreamingAsync delegat…
…ion pattern in AIAgent (#2749) * Initial plan * Refactor AIAgent: Make RunAsync and RunStreamingAsync non-abstract, add RunCoreAsync and RunCoreStreamingAsync Co-authored-by: SergeyMenshykh <68852919+SergeyMenshykh@users.noreply.github.com> * Fix infinite recursion in test implementations Co-authored-by: SergeyMenshykh <68852919+SergeyMenshykh@users.noreply.github.com> * Make RunAsync and RunStreamingAsync non-virtual as requested Co-authored-by: SergeyMenshykh <68852919+SergeyMenshykh@users.noreply.github.com> * Fix DelegatingAIAgent subclasses to use RunCoreAsync/RunCoreStreamingAsync Co-authored-by: SergeyMenshykh <68852919+SergeyMenshykh@users.noreply.github.com> * Fix XML documentation references in AnonymousDelegatingAIAgent Co-authored-by: SergeyMenshykh <68852919+SergeyMenshykh@users.noreply.github.com> * Restore <see cref> tags with proper qualified signatures in AnonymousDelegatingAIAgent Co-authored-by: SergeyMenshykh <68852919+SergeyMenshykh@users.noreply.github.com> * Rollback unnecessary XML documentation changes in AnonymousDelegatingAIAgent Co-authored-by: SergeyMenshykh <68852919+SergeyMenshykh@users.noreply.github.com> * Remove pragma and update crefs to RunCoreAsync/RunCoreStreamingAsync Co-authored-by: SergeyMenshykh <68852919+SergeyMenshykh@users.noreply.github.com> * Fix EntityAgentWrapper to call base.RunCoreAsync/RunCoreStreamingAsync Co-authored-by: SergeyMenshykh <68852919+SergeyMenshykh@users.noreply.github.com> * fix compilation issues * fix compilatio issue * fix tests * fix unit tests * fix unit test --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: SergeyMenshykh <68852919+SergeyMenshykh@users.noreply.github.com> Co-authored-by: SergeyMenshykh <sergemenshikh@gmail.com> Co-authored-by: Chris <66376200+crickman@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 8b4f7d5 - Browse repository at this point
Copy the full SHA 8b4f7d5View commit details
Commits on Jan 5, 2026
-
Configuration menu - View commit details
-
Copy full SHA for 577ad4b - Browse repository at this point
Copy the full SHA 577ad4bView commit details -
Configuration menu - View commit details
-
Copy full SHA for deea844 - Browse repository at this point
Copy the full SHA deea844View commit details -
.NET: [BREAKING] Refactor ChatMessageStore methods to be similar to A…
…IContextProvider and add filtering support (#2604) * Refactor ChatMessageStore methods to be similar to AIContextProvider * Fix file encoding * Ensure that AIContextProvider messages area also persisted. * Update formatting and seal context classes * Improve formatting * Remove optional messages from constructor and add unit test * Add ChatMessageStore filtering via a decorator * Update sample and cosmos message store to store AIContextProvider messages in right order. Fix unit tests. * Update Workflowmessage store to use aicontext provider messages. * Apply suggestions from code review Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Apply suggestions from code review Co-authored-by: SergeyMenshykh <68852919+SergeyMenshykh@users.noreply.github.com> * Improve xml docs messaging * Address code review comments. * Also notify message store on failure --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: SergeyMenshykh <68852919+SergeyMenshykh@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 3ef67ef - Browse repository at this point
Copy the full SHA 3ef67efView commit details -
[BREAKING] Remove unused AgentThreadMetadata (#3067)
* Remove unused AgentThreadMetadata * Update DurableTask Changelog
Configuration menu - View commit details
-
Copy full SHA for 0aba02c - Browse repository at this point
Copy the full SHA 0aba02cView commit details -
Python: Fix AzureAIClient failure when conversation history contains …
…assistant messages (#3076) * Fix AzureAIClient failure when conversation history contains assistant messages * Address PR review feedback: improve docstring and test assertions * Remove redundant cast
Configuration menu - View commit details
-
Copy full SHA for 928c9d5 - Browse repository at this point
Copy the full SHA 928c9d5View commit details
Commits on Jan 6, 2026
-
Configuration menu - View commit details
-
Copy full SHA for ed5278c - Browse repository at this point
Copy the full SHA ed5278cView commit details -
Python: Fix ExecutorInvokedEvent and ExecutorCompletedEvent observabi…
…lity data (#3090) * Fix ExecutorInvokedEvent.data mutation bug * Fix bug related to not yielding output type
Configuration menu - View commit details
-
Copy full SHA for 844d345 - Browse repository at this point
Copy the full SHA 844d345View commit details -
.NET: Seal ChatClientAgentThread (#2842)
* Initial plan * Seal ChatClientAgentThread class Co-authored-by: SergeyMenshykh <68852919+SergeyMenshykh@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: SergeyMenshykh <68852919+SergeyMenshykh@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 0aa0579 - Browse repository at this point
Copy the full SHA 0aa0579View commit details -
Fix broken strands urls. (#3102)
* Fix broken strands urls. * Fix typos
Configuration menu - View commit details
-
Copy full SHA for 7a05849 - Browse repository at this point
Copy the full SHA 7a05849View commit details -
.NET: Fix message ordering inconsistency when using AIContextProvider (…
…#2659) * Initial plan * Fix message ordering inconsistency when using AIContextProvider Co-authored-by: westey-m <164392973+westey-m@users.noreply.github.com> * Revert to original message ordering: Input, AIContextProvider, Response Co-authored-by: westey-m <164392973+westey-m@users.noreply.github.com> * Reorder messages to ChatClient to match MessageStore order: Existing, Input, AIContextProvider Co-authored-by: westey-m <164392973+westey-m@users.noreply.github.com> * Remove redundant test methods as existing tests already verify the behavior Co-authored-by: westey-m <164392973+westey-m@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: westey-m <164392973+westey-m@users.noreply.github.com> Co-authored-by: Mark Wallace <127216156+markwallace-microsoft@users.noreply.github.com> Co-authored-by: Chris <66376200+crickman@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 953fde6 - Browse repository at this point
Copy the full SHA 953fde6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 24c8225 - Browse repository at this point
Copy the full SHA 24c8225View commit details -
Configuration menu - View commit details
-
Copy full SHA for ea370f8 - Browse repository at this point
Copy the full SHA ea370f8View commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff python-1.0.0b251223...python-1.0.0b260106