diff --git a/src/frontend/config/sidebar/integrations.topics.ts b/src/frontend/config/sidebar/integrations.topics.ts index 58e1c3df4..03a9a2bb4 100644 --- a/src/frontend/config/sidebar/integrations.topics.ts +++ b/src/frontend/config/sidebar/integrations.topics.ts @@ -346,7 +346,7 @@ export const integrationTopics: StarlightSidebarTopicsUserConfig = { slug: 'integrations/cloud/azure/ai-compatibility-matrix', }, { - label: 'Azure AI Foundry', + label: 'Microsoft Foundry', collapsed: true, items: [ { diff --git a/src/frontend/src/components/IntegrationGrid.astro b/src/frontend/src/components/IntegrationGrid.astro index 949a359a0..fc629e311 100644 --- a/src/frontend/src/components/IntegrationGrid.astro +++ b/src/frontend/src/components/IntegrationGrid.astro @@ -109,7 +109,7 @@ const icons = [ }, { meta: adminerIcon, alt: 'Adminer', search: 'adminer' }, { meta: awsIcon, alt: 'AWS', search: 'aws', light: awsLightIcon }, - { meta: azureAiFoundryIcon, alt: 'Azure AI Foundry', search: 'aifoundry' }, + { meta: azureAiFoundryIcon, alt: 'Microsoft Foundry', search: 'foundry' }, { meta: azureAppconfigIcon, alt: 'Azure App Configuration', diff --git a/src/frontend/src/content/docs/integrations/cloud/azure/ai-compatibility-matrix.mdx b/src/frontend/src/content/docs/integrations/cloud/azure/ai-compatibility-matrix.mdx index 02d3811c8..20622c294 100644 --- a/src/frontend/src/content/docs/integrations/cloud/azure/ai-compatibility-matrix.mdx +++ b/src/frontend/src/content/docs/integrations/cloud/azure/ai-compatibility-matrix.mdx @@ -13,7 +13,7 @@ The following table shows the compatibility between Aspire AI hosting and client | **Hosting Integration** | **Aspire.OpenAI** | **Aspire.Azure.AI.OpenAI** | **Aspire.Azure.AI.Inference** | |--|--|--|--| -| `Aspire.Hosting.Azure.AIFoundry` | ❌ No | ⚠️ Partial | ✅ Yes (preferred) | +| `Aspire.Hosting.Foundry` | ❌ No | ⚠️ Partial | ✅ Yes (preferred) | | `Aspire.Hosting.Azure.CognitiveServices` | ❌ No | ✅ Yes (preferred) | ❌ No | | `Aspire.Hosting.OpenAI` | ✅ Yes (preferred) | ✅ Yes | ❌ No | | `Aspire.Hosting.GitHub.Models` | ⚠️ Partial | ❌ No | ✅ Yes (preferred) | @@ -31,18 +31,18 @@ The following table shows the compatibility between Aspire AI hosting and client In general, use **Aspire.Azure.AI.Inference** to connect to Azure hosted models, or **Aspire.OpenAI** to connect directly to OpenAI. -### Azure AI Foundry +### Microsoft Foundry -For Azure AI Foundry resources, use the **Aspire.Azure.AI.Inference** client integration. This provides the best compatibility with the diverse range of models available through Azure AI Foundry. For more information, see [Azure AI Foundry integration](/integrations/cloud/azure/azure-ai-foundry/azure-ai-foundry-get-started/). +For Microsoft Foundry resources, use the **Aspire.Azure.AI.Inference** client integration. This provides the best compatibility with the diverse range of models available through Microsoft Foundry. For more information, see [Microsoft Foundry integration](/integrations/cloud/azure/azure-ai-foundry/azure-ai-foundry-get-started/). #### Hosting integration -The [Aspire.Hosting.Azure.AIFoundry](https://www.nuget.org/packages/Aspire.Hosting.Azure.AIFoundry) package provides the hosting integration. In your app host project: +The [Aspire.Hosting.Foundry](https://www.nuget.org/packages/Aspire.Hosting.Foundry) package provides the hosting integration. In your app host project: ```csharp title="C# — AppHost.cs" var builder = DistributedApplication.CreateBuilder(args); -var foundry = builder.AddAzureAIFoundry("foundry"); +var foundry = builder.AddFoundry("foundry"); builder.AddProject() .WithReference(foundry); @@ -139,15 +139,15 @@ Each hosting integration generates connection strings in different formats that ### Hosting integration connection strings -#### Aspire.Hosting.Azure.AIFoundry +#### Aspire.Hosting.Foundry **Azure:** ``` -Endpoint={Endpoint};EndpointAIInference={AIFoundryApiEndpoint}models +Endpoint={Endpoint};EndpointAIInference={EndpointAIInference}models ``` -**Foundry local:** +**Foundry Local:** ``` Endpoint={EmulatorServiceUri};Key={ApiKey} @@ -219,6 +219,6 @@ Uses `EndpointAIInference` if available, otherwise `Endpoint`. - [Azure OpenAI integration](/integrations/cloud/azure/azure-openai/azure-openai-get-started/) - [Azure AI Inference integration](/integrations/cloud/azure/azure-ai-inference/azure-ai-inference-get-started/) -- [Azure AI Foundry integration](/integrations/cloud/azure/azure-ai-foundry/azure-ai-foundry-get-started/) +- [Microsoft Foundry integration](/integrations/cloud/azure/azure-ai-foundry/azure-ai-foundry-get-started/) - [Azure AI Search integration](/integrations/cloud/azure/azure-ai-search/azure-ai-search-get-started/) - [Microsoft.Extensions.AI documentation](https://learn.microsoft.com/dotnet/ai/ai-extensions) diff --git a/src/frontend/src/content/docs/integrations/cloud/azure/azure-ai-foundry/azure-ai-foundry-client.mdx b/src/frontend/src/content/docs/integrations/cloud/azure/azure-ai-foundry/azure-ai-foundry-client.mdx index b167c6b2b..68493bcc6 100644 --- a/src/frontend/src/content/docs/integrations/cloud/azure/azure-ai-foundry/azure-ai-foundry-client.mdx +++ b/src/frontend/src/content/docs/integrations/cloud/azure/azure-ai-foundry/azure-ai-foundry-client.mdx @@ -1,6 +1,6 @@ --- -title: Azure AI Foundry client integration -description: Learn how to use the Aspire Azure AI Foundry client integration to connect to Azure AI Foundry services. +title: Microsoft Foundry client integration +description: Learn how to use the Aspire Microsoft Foundry client integration to connect to Microsoft Foundry services. next: false --- @@ -10,7 +10,7 @@ import aiFoundryIcon from '@assets/icons/azure-ai-foundry-icon.png'; Azure AI Foundry logo -The client integration for Azure AI Foundry is provided through the [Azure AI Inference](/integrations/cloud/azure/azure-ai-inference/azure-ai-inference-get-started/) integration. +The client integration for Microsoft Foundry is provided through the [Azure AI Inference](/integrations/cloud/azure/azure-ai-inference/azure-ai-inference-get-started/) integration. -For an introduction to working with the Azure AI Foundry client integration, see [Get started with the Azure AI Foundry integrations](/integrations/cloud/azure/azure-ai-foundry/azure-ai-foundry-get-started/). +For an introduction to working with the Microsoft Foundry client integration, see [Get started with the Microsoft Foundry integrations](/integrations/cloud/azure/azure-ai-foundry/azure-ai-foundry-get-started/). -## Using Azure AI Foundry from client applications +## Using Microsoft Foundry from client applications -To use Azure AI Foundry services from your client applications, you'll use the Azure AI Inference client integration. This integration provides a consistent way to interact with various AI models deployed in Azure AI Foundry, including chat completions, embeddings, and other AI capabilities. +To use Microsoft Foundry services from your client applications, you'll use the Azure AI Inference client integration. This integration provides a consistent way to interact with various AI models deployed in Microsoft Foundry, including chat completions, embeddings, and other AI capabilities. For detailed information on how to: @@ -45,7 +45,7 @@ See the complete [Azure AI Inference integration documentation](/integrations/cl href="/integrations/cloud/azure/azure-ai-inference/azure-ai-inference-get-started/" /> diff --git a/src/frontend/src/content/docs/integrations/cloud/azure/azure-ai-foundry/azure-ai-foundry-get-started.mdx b/src/frontend/src/content/docs/integrations/cloud/azure/azure-ai-foundry/azure-ai-foundry-get-started.mdx index b7d59b21b..91734b949 100644 --- a/src/frontend/src/content/docs/integrations/cloud/azure/azure-ai-foundry/azure-ai-foundry-get-started.mdx +++ b/src/frontend/src/content/docs/integrations/cloud/azure/azure-ai-foundry/azure-ai-foundry-get-started.mdx @@ -1,6 +1,6 @@ --- -title: Get started with the Azure AI Foundry integrations -description: Learn how to set up the Aspire Azure AI Foundry hosting and client integrations simply. +title: Get started with the Microsoft Foundry integrations +description: Learn how to set up the Aspire Microsoft Foundry hosting and client integrations simply. prev: false --- @@ -11,7 +11,7 @@ import aiFoundryIcon from '@assets/icons/azure-ai-foundry-icon.png'; Azure AI Foundry logo -[Azure AI Foundry](https://learn.microsoft.com/ai-studio) provides a unified platform for developing, testing, and deploying AI applications. The Aspire Azure AI Foundry integration enables you to connect to Azure AI Foundry services from your applications, providing access to various AI capabilities including model deployments, prompt flow, and more. +[Microsoft Foundry](https://learn.microsoft.com/ai-studio) provides a unified platform for developing, testing, and deploying AI applications. The Aspire Microsoft Foundry integration enables you to connect to Microsoft Foundry services from your applications, providing access to various AI capabilities including model deployments, prompt flow, and more. -In this introduction, you'll see how to install and use the Aspire Azure AI Foundry integrations in a simple configuration. If you already have this knowledge, see [Azure AI Foundry Hosting integration](/integrations/cloud/azure/azure-ai-foundry/azure-ai-foundry-host/) for full reference details. +In this introduction, you'll see how to install and use the Aspire Microsoft Foundry integrations in a simple configuration. If you already have this knowledge, see [Microsoft Foundry Hosting integration](/integrations/cloud/azure/azure-ai-foundry/azure-ai-foundry-host/) for full reference details.