diff --git a/src/frontend/src/content/docs/integrations/cloud/azure/azure-openai/azure-openai-get-started.mdx b/src/frontend/src/content/docs/integrations/cloud/azure/azure-openai/azure-openai-get-started.mdx index 2dd57054a..2d2df565d 100644 --- a/src/frontend/src/content/docs/integrations/cloud/azure/azure-openai/azure-openai-get-started.mdx +++ b/src/frontend/src/content/docs/integrations/cloud/azure/azure-openai/azure-openai-get-started.mdx @@ -43,9 +43,9 @@ var builder = DistributedApplication.CreateBuilder(args); var openai = builder.AddAzureOpenAI("openai"); openai.AddDeployment( - name: "preview", - modelName: "gpt-4.5-preview", - modelVersion: "2025-02-27"); + name: "", + modelName: "", + modelVersion: ""); builder.AddProject() .WithReference(openai) @@ -56,7 +56,7 @@ builder.AddProject() builder.Build().Run(); ``` -The preceding code adds an Azure OpenAI resource named `openai` to the AppHost project, configures a deployment with a specific model, and passes the connection information to the `ExampleProject` project. +The preceding code adds an Azure OpenAI resource named `openai` to the AppHost project, configures a deployment with a specific model, and passes the connection information to the `ExampleProject` project. Replace the ``, ``, and `` placeholders with values from the [Azure OpenAI available models](https://learn.microsoft.com/azure/ai-services/openai/concepts/models) documentation.