Formerly known as Azure AI Services or Azure Cognitive Services is a unified collection of prebuilt AI capabilities within the Microsoft Foundry platform
Hi lahcene dergham,
This is a known and common confusion in Azure AI Foundry, and in most cases it is not a deployment or quota issue.
What you are seeing is mainly due to how the AI Foundry playground and the Add your data experience currently filter embedding models.
First, confirm that the model deployment itself is healthy. If text embedding 3 large shows as Succeeded in the Deployments section and works when you test it directly using the embeddings API, then the model is deployed correctly and usable. The model catalog page confirms that text embedding 3 large is a supported and active model in Azure AI Foundry. https://ai.azure.com/catalog/models/text-embedding-3-large
Second, understand why it does not appear in the Chat Playground Add your data dropdown. The Chat Playground currently shows only a limited subset of embedding models when you connect Azure AI Search as a data source. At the moment, the UI primarily exposes older or preview aligned models such as text embedding ada 002. Even though text embedding 3 large works for indexing and API calls, it may not appear in this specific dropdown due to UI capability mapping and version filtering. This behavior has been reported by multiple users and matches what you are experiencing.
Third, check how your Azure AI Search index was created. If your search index was created with 3072 dimensions using text embedding 3 large, that setup is valid. However, the Chat Playground Add your data flow can still block model selection even when the index itself is correct. This does not impact programmatic usage or ingestion pipelines, only the playground UI.
Fourth, use the model outside the playground UI. Text embedding 3 large works correctly when used through the embeddings API or for integrated vectorization during indexing, as long as the deployment name, endpoint, and API version are correct. Many users successfully use it for RAG pipelines even though it does not show up in the Chat Playground dropdown. https://learn.microsoft.com/azure/search/vector-search-integrated-vectorization-ai-studio
Finally, test and validate the setup in code. If the model generates embeddings correctly via REST or SDK calls and your Azure AI Search queries work as expected, then your environment is correctly configured. The limitation you are seeing is specific to the current portal experience and not a blocker for real usage.
In short, text embedding 3 large is supported and works, but it may not appear in the AI Foundry Chat Playground Add your data model list due to current UI limitations. Using the model directly through APIs or indexing workflows is the recommended path for now.
Hope this clears things up. Let me know if you have more questions.
Thankyou!