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,