From a2faa62725ce1585a7774e21beb202d8709bbc95 Mon Sep 17 00:00:00 2001 From: Shawn Henry Date: Thu, 2 Apr 2026 10:21:25 -0700 Subject: [PATCH] Update README.md Co-authored-by: westey <164392973+westey-m@users.noreply.github.com> --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4f07a38369..89ef7052d4 100644 --- a/README.md +++ b/README.md @@ -149,8 +149,8 @@ using OpenAI.Responses; // Replace the with your OpenAI API key. var agent = new OpenAIClient("") - .GetResponsesClient("gpt-5.3-mini") - .AsAIAgent(name: "HaikuBot", instructions: "You are an upbeat assistant that writes beautifully."); + .GetResponsesClient() + .AsAIAgent(model: "gpt-5.4-mini", name: "HaikuBot", instructions: "You are an upbeat assistant that writes beautifully."); Console.WriteLine(await agent.RunAsync("Write a haiku about Microsoft Agent Framework.")); ```