From 288e04c0c7f78129f74bc4c2a4af2dfe5260b90f Mon Sep 17 00:00:00 2001 From: Shawn Henry Date: Thu, 2 Apr 2026 10:22:28 -0700 Subject: [PATCH] Update README.md Co-authored-by: westey <164392973+westey-m@users.noreply.github.com> --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 5ab75e1ac3..643485e9ea 100644 --- a/README.md +++ b/README.md @@ -128,7 +128,9 @@ Create a simple Agent, using Microsoft Foundry with token-based auth, that write // Use `az login` to authenticate with Azure CLI using Azure.AI.Projects; using Azure.Identity; -using Microsoft.Agents.AI; +using System; +using Azure.AI.Projects; +using Azure.Identity; 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.4-mini";