From 444abe8136e2a5abeb67571ad1bf549b54cc95a8 Mon Sep 17 00:00:00 2001 From: Peder Holdgaard Pedersen <127606677+PederHP@users.noreply.github.com> Date: Thu, 30 Oct 2025 16:07:46 +0100 Subject: [PATCH] Update ModelId in ChatOptions to new version --- samples/QuickstartClient/Program.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/samples/QuickstartClient/Program.cs b/samples/QuickstartClient/Program.cs index cd1c4c60a..598f883ab 100644 --- a/samples/QuickstartClient/Program.cs +++ b/samples/QuickstartClient/Program.cs @@ -50,7 +50,7 @@ var options = new ChatOptions { MaxOutputTokens = 1000, - ModelId = "claude-3-5-sonnet-20241022", + ModelId = "claude-haiku-4-5-20251001", Tools = [.. tools] }; @@ -121,4 +121,4 @@ static string GetCurrentSourceDirectory([CallerFilePath] string? currentFile = n { Debug.Assert(!string.IsNullOrWhiteSpace(currentFile)); return Path.GetDirectoryName(currentFile) ?? throw new InvalidOperationException("Unable to determine source directory."); -} \ No newline at end of file +}