[docs] Update Foundry model families documentation for Aspire 13.5#1297
Merged
sebastienros merged 1 commit intoJun 25, 2026
Merged
Conversation
Documents the available FoundryModel provider families including Cohere and MistralAI, which gained new model descriptors (CohereCommandAPlus052026 and MistralMedium35) in Aspire 13.5. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Contributor
Author
Frontend HTML artifact readyThe latest frontend build uploaded the This comment updates automatically when a new frontend build artifact is uploaded. |
sebastienros
approved these changes
Jun 25, 2026
Contributor
There was a problem hiding this comment.
Pull request overview
Updates the Azure AI Foundry hosting integration documentation to better explain how to choose a FoundryModel descriptor by enumerating available provider families, aligning the docs with newer model namespaces added to Aspire.Hosting.Foundry.
Changes:
- Expanded the “different generated model descriptor” guidance to mention provider-family namespaces (Microsoft, OpenAI, Cohere, MistralAI, etc.).
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| - Adds a Foundry deployment resource named `chat` using the generated `FoundryModel.OpenAI.Gpt5Mini` descriptor. | ||
|
|
||
| If you need a different generated model descriptor, use the corresponding nested type, such as `FoundryModel.Microsoft.Phi4Reasoning`: | ||
| If you need a different generated model descriptor, use the corresponding nested type. The `FoundryModel` class organizes models by provider family: `FoundryModel.Microsoft`, `FoundryModel.OpenAI`, `FoundryModel.Cohere`, `FoundryModel.MistralAI`, and others. For example, to use `FoundryModel.Microsoft.Phi4Reasoning`: |
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.
Documents changes from microsoft/aspire#18491 by
@aspire-repo-bot.Target branch
Targeting
release/13.5based on the source PR milestone13.5(exact match).Why this PR is needed
PR microsoft/aspire#18491 added two new
FoundryModeldescriptors to theAspire.Hosting.Foundrypackage:FoundryModel.Cohere.CohereCommandAPlus052026— Cohere Command A Plus 05-2026, an efficient generative model for agentic and multilingual use cases.FoundryModel.MistralAI.MistralMedium35— Mistral Medium 3.5, with enhanced code and agentic capabilities.The existing Azure AI Foundry host docs described only two model provider families (
OpenAIandMicrosoft) as examples, leaving users unaware thatCohere,MistralAI, and other provider namespaces exist within theFoundryModelclass.Documentation changes
Updated the "Add a Foundry deployment resource" section in
azure-ai-foundry-host.mdxto enumerate the availableFoundryModelprovider families (Microsoft,OpenAI,Cohere,MistralAI, and others), helping users discover which namespaces are available when selecting a model descriptor.Files modified
src/frontend/src/content/docs/integrations/cloud/azure/azure-ai-foundry/azure-ai-foundry-host.mdx— updated (existing page)