An Azure service that provides access to OpenAI’s GPT-3 models with enterprise capabilities.
Hello @Hemant Krishnarao Chitale
Thanks for reaching out,
Based on your setup and the details you’ve shared, here’s a clear and complete explanation to help you verify whether your Foundry agents are using the Assistants API or the newer Foundry Agent Service.
If your agents are created and managed in Azure AI Foundry (ai.azure.com) and your endpoint looks like:
https://<resource>.services.ai.azure.com/api/projects/<project>
Then you are already using Azure AI Foundry Agent Service, You are not using the Azure OpenAI Assistants API, No migration is required for your current agents
How to verify in detail
1. Check the endpoint URL
Assistants API (retiring):
https://<resource>.openai.azure.com/openai/assistants/...
https://<resource>.openai.azure.com/openai/threads/...
https://<resource>.openai.azure.com/openai/runs/...
Foundry Agent Service (current):
https://<resource>.services.ai.azure.com/api/projects/<project>/...
Since your project uses the services.ai.azure.com endpoint, this confirms you are on the Foundry Agent Service.
2. Inspect request structure / payload
Assistants API
Uses objects like:
-
assistantId -
threads -
runs
Explicit assistant lifecycle management
Foundry Agent Service
- Uses project-based APIs
- Does not include
assistantId - Works with models, tools, and agent configurations within the project
- Check SDK or client usage
Assistants API (legacy)
- Typically uses
OpenAIClient - Includes assistants/threads/runs constructs
Foundry Agent Service
- Uses
azure-ai-projectsSDK - Uses
AIProjectClientand agent-based APIs
- Check Azure portal / resource experience
- If you are creating and managing agents via Foundry UI (Agents tab) → Foundry Agent Service
- Assistants API is not managed through this UI experience
You mentioned:
Foundry endpoint:
https://ME-ai-foundry-resource.services.ai.azure.com/api/projects/MYPROJECT
Azure OpenAI endpoint:
https://ME-ai-foundry-resource.openai.azure.com/openai/v1
This indicates:
- Agents → Foundry Agent Service (new platform)
- Model inference → Azure OpenAI (Responses/Chat APIs)
About the retirement notice
The email about Assistants API retirement (Aug 26, 2026) was sent broadly to Azure OpenAI users.
You are only impacted if:
- Your application explicitly calls:
-
/assistants-
/threads-
/runs
-
-
-
Since your implementation uses Foundry Agents, you are not impacted.
Please refer this
Foundry Agent Service overview: https://learn.microsoft.com/azure/foundry/agents/overview
Migration guide (Assistants API → Foundry Agent Service): https://learn.microsoft.com/azure/foundry/agents/how-to/migrate
Azure OpenAI Responses API (for pure inference workloads): https://learn.microsoft.com/azure/foundry/openai/how-to/responses
I Hope this helps. Do let me know if you have any further queries.
If this answers your query, please do click Accept Answer and Yes for was this answer helpful.
Thank you!