refactor: Upgrade agent framework to latest version - #335
Merged
Conversation
NirajC3-Microsoft
requested review from
Avijit-Microsoft,
Prajwal-Microsoft,
Roopan-Microsoft,
Vinay Sharma (Vinay-Microsoft),
gpickett,
malrose07 and
Todd Herman (toherman-msft)
as code owners
August 7, 2026 08:05
Prajwal-Microsoft
approved these changes
Aug 7, 2026
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.
Purpose
This pull request removes two Python scripts (
create_assistants.pyandlist_assistants.py) related to Azure AI Foundry assistants, deletes theorders_plugin.pyandreference_plugin.pyplugins, and updates several dependencies and logging configurations. The changes primarily focus on cleaning up unused or deprecated code, updating dependencies for compatibility, and minor improvements to logging.Major removals:
create_assistants.pyandlist_assistants.pyscripts, which were used for programmatically creating and listing Azure AI Foundry assistants. [1] [2]orders_plugin.pyandreference_plugin.pyfiles, which contained plugins for order management and reference document lookup, respectively. [1] [2]Dependency and configuration updates:
azure-ai-projectsdependency to require version>=2.3.0inrequirements.txtfor compatibility with recent code changes.AzureAIProjectAgentProviderto use the new package pathagent_framework.azureinstead ofagent_framework_azure_aiinfoundry_agent_utils.py..flake8configuration to ignore warningE226in addition to previous ignores.Logging and minor code improvements:
main.pyto set the log level forazure.ai.projectsinstead of the previously used logger.chat.py.plugins/__init__.pyfile.Does this introduce a breaking change?
How to Test
What to Check
Verify that the following are valid
Other Information