Hello @67050851,
Yes, you're correct Microsoft is transitioning from Azure AI Hub–based projects to Azure AI Foundry–based projects, and the latest SDK versions now support only the Foundry-based setup. If you have agents built under AI Hub, migration to Foundry requires a manual but straightforward process, as there is no automated migration path at this time.
Here's are some steps to consider doing:
Before migrating, make sure you've set up a new Azure AI Foundry project. You can follow the quickstart guide to create it.
You will need to switch your code to use the updated SDK methods for Azure AI Foundry. As outlined in the migration guides, the way you create clients, agents, and upload files has changed. Ensure that you refer to the .NET Migration Guide or the Python Migration Guide to adjust the code you’re using.
Since a direct migration path is not available, you’ll need to manually recreate the agents in the new Azure AI Foundry project. Be sure to document any associated vector stores or files from the original setup, and re-upload them using the updated SDK methods.
After completing the migration, review your existing codebase to ensure compatibility. Since endpoint URLs and authentication methods differ in Azure AI Foundry, make sure to update all relevant connection settings accordingly.
Foundry projects use different endpoints and authentication mechanisms. Update your environment configuration and code to reflect these new details for smooth integration.
I hope this helps, do let me know if you have further queries.
Thank you!