From 0f13a19fefbd2cf549bbc63d741594d50614ecc0 Mon Sep 17 00:00:00 2001 From: Shawn Henry Date: Thu, 2 Apr 2026 10:21:14 -0700 Subject: [PATCH] Update README.md Co-authored-by: westey <164392973+westey-m@users.noreply.github.com> --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f8604a2051..4f07a38369 100644 --- a/README.md +++ b/README.md @@ -131,7 +131,7 @@ using Azure.Identity; using Microsoft.Agents.AI; var endpoint = Environment.GetEnvironmentVariable("AZURE_AI_PROJECT_ENDPOINT") ?? throw new InvalidOperationException("AZURE_AI_PROJECT_ENDPOINT is not set."); -var deploymentName = Environment.GetEnvironmentVariable("AZURE_AI_MODEL_DEPLOYMENT_NAME") ?? "gpt-5.3-mini"; +var deploymentName = Environment.GetEnvironmentVariable("AZURE_AI_MODEL_DEPLOYMENT_NAME") ?? "gpt-5.4-mini"; var agent = new AIProjectClient(new Uri(endpoint), new DefaultAzureCredential()) .AsAIAgent(model: deploymentName, name: "HaikuBot", instructions: "You are an upbeat assistant that writes beautifully.");