From 904e17473fe383d0ed4f13d3fc5d3798aba75f4d Mon Sep 17 00:00:00 2001
From: Chris <66376200+crickman@users.noreply.github.com>
Date: Wed, 22 Oct 2025 13:53:27 -0700
Subject: [PATCH] Fixed build errors (#1638)
Comment and nullable type alignment
---
.../New/PersistentAgentsClientExtensions.cs | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/dotnet/src/Microsoft.Agents.AI.AzureAI/New/PersistentAgentsClientExtensions.cs b/dotnet/src/Microsoft.Agents.AI.AzureAI/New/PersistentAgentsClientExtensions.cs
index 800324e66f..a08d5badce 100644
--- a/dotnet/src/Microsoft.Agents.AI.AzureAI/New/PersistentAgentsClientExtensions.cs
+++ b/dotnet/src/Microsoft.Agents.AI.AzureAI/New/PersistentAgentsClientExtensions.cs
@@ -282,7 +282,10 @@ public static class AgentsClientExtensions
/// The tools to be used by the agent.
/// The temperature setting for the agent.
/// The top-p setting for the agent.
- /// The response format for the agent.
+ /// The responsible AI config
+ /// The reasoning options for the agent.
+ /// The text options for the agent.
+ /// The structured inputs for the agent.
/// The metadata for the agent.
/// Provides a way to customize the creation of the underlying used by the agent.
/// The to monitor for cancellation requests. The default is .
@@ -295,7 +298,7 @@ public static class AgentsClientExtensions
IEnumerable? tools = null,
float? temperature = null,
float? topP = null,
- RaiConfig raiConfig = null,
+ RaiConfig? raiConfig = null,
ResponseReasoningOptions? reasoningOptions = null,
ResponseTextOptions? textOptions = null,
IDictionary? structuredInputs = null,